fstests: support check for uuidgen utility
[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 #
39 # - These can be added to $HOST_CONFIG_DIR (witch default to ./config)
40 #   below or a separate local configuration file can be used (using
41 #   the HOST_OPTIONS variable).
42 # - This script is shared by the stress test system and the auto-qa
43 #   system
44 # - TEST_DEV & TEST_DIR must be assigned.
45 # - this script shouldn't make any assertions about filesystem
46 #   validity or mountedness.
47 #
48
49 # all tests should use a common language setting to prevent golden
50 # output mismatches.
51 export LANG=C
52 export LC_ALL=C
53
54 # Warning: don't put freeware before /usr/bsd on IRIX coz you'll
55 #  get the wrong hostname and set your system name to -s  :)
56 [ -d /usr/bsd ] && PATH=$PATH:/usr/bsd
57 [ -d /usr/freeware/bin ] && PATH=$PATH:/usr/freeware/bin
58 PATH=".:$PATH"
59
60 export HOST=`hostname -s`
61 export HOSTOS=`uname -s`
62 [ "$HOSTOS" = "IRIX64" ] && export HOSTOS="IRIX"
63
64 export MODULAR=0               # using XFS as a module or not
65 export BOOT="/boot"            # install target for kernels
66 export EXTRA=${EXTRA:=xfs-qa}
67
68 # general parameters (mainly for auto-qa)
69 export SOAK_PROC=3             # -p option to fsstress
70 export SOAK_STRESS=10000       # -n option to fsstress
71 export SOAK_PASSES=-1          # count of repetitions of fsstress (while soaking)
72 export EMAIL=root@localhost    # where auto-qa will send its status messages
73 export HOST_OPTIONS=${HOST_OPTIONS:=local.config}
74 export CHECK_OPTIONS=${CHECK_OPTIONS:="-g auto"}
75 export BENCH_PASSES=${BENCH_PASSES:=5}
76 export XFS_MKFS_OPTIONS=${XFS_MKFS_OPTIONS:=-bsize=4096}
77 export TIME_FACTOR=${TIME_FACTOR:=1}
78 export LOAD_FACTOR=${LOAD_FACTOR:=1}
79 export DEBUGFS_MNT=${DEBUGFS_MNT:="/sys/kernel/debug"}
80 export OVERLAY_UPPER_DIR=${OVERLAY_UPPER_DIR:="upper"}
81 export OVERLAY_LOWER_DIR=${OVERLAY_LOWER_DIR:="lower"}
82 export OVERLAY_WORK_DIR=${OVERLAY_WORK_DIR:="work"}
83
84 export PWD=`pwd`
85 #export DEBUG=${DEBUG:=...} # arbitrary CFLAGS really.
86 export MALLOCLIB=${MALLOCLIB:=/usr/lib/libefence.a}
87 export LOCAL_CONFIGURE_OPTIONS=${LOCAL_CONFIGURE_OPTIONS:=--enable-readline=yes}
88
89 export RECREATE_TEST_DEV=false
90
91 # $1 = prog to look for, $2* = default pathnames if not found in $PATH
92 set_prog_path()
93 {
94     p=`which $1 2> /dev/null`
95     if [ -n "$p" -a -x "$p" ]; then
96         echo $p
97         return 0
98     fi
99     p=$1
100
101     shift
102     for f; do
103         if [ -x $f ]; then
104             echo $f
105             return 0
106         fi
107     done
108
109     echo ""
110     return 1
111 }
112
113 # Handle mkfs.btrfs which does (or does not) require -f to overwrite
114 set_btrfs_mkfs_prog_path_with_opts()
115 {
116         p=`set_prog_path mkfs.btrfs`
117         if [ "$p" != "" ] && grep -q 'force overwrite' $p; then
118                 echo "$p -f"
119         else
120                 echo $p
121         fi
122 }
123
124 _fatal()
125 {
126     echo "$*"
127     status=1
128     exit 1
129 }
130
131 export MKFS_PROG="`set_prog_path mkfs`"
132 [ "$MKFS_PROG" = "" ] && _fatal "mkfs not found"
133
134 export MOUNT_PROG="`set_prog_path mount`"
135 [ "$MOUNT_PROG" = "" ] && _fatal "mount not found"
136
137 export UMOUNT_PROG="`set_prog_path umount`"
138 [ "$UMOUNT_PROG" = "" ] && _fatal "umount not found"
139
140 export FSSTRESS_PROG="./ltp/fsstress"
141 [ ! -x $FSSTRESS_PROG ] && _fatal "fsstress not found or executable"
142
143 export PERL_PROG="`set_prog_path perl`"
144 [ "$PERL_PROG" = "" ] && _fatal "perl not found"
145
146 export AWK_PROG="`set_prog_path awk`"
147 [ "$AWK_PROG" = "" ] && _fatal "awk not found"
148
149 export SED_PROG="`set_prog_path sed`"
150 [ "$SED_PROG" = "" ] && _fatal "sed not found"
151
152 export BC_PROG="`set_prog_path bc`"
153 [ "$BC_PROG" = "" ] && _fatal "bc not found"
154
155 export PS_ALL_FLAGS="-ef"
156
157 export DF_PROG="`set_prog_path df`"
158 [ "$DF_PROG" = "" ] && _fatal "df not found"
159 [ "$HOSTOS" = "Linux" ] && export DF_PROG="$DF_PROG -T -P"
160
161 export XFS_LOGPRINT_PROG="`set_prog_path xfs_logprint`"
162 export XFS_REPAIR_PROG="`set_prog_path xfs_repair`"
163 export XFS_DB_PROG="`set_prog_path xfs_db`"
164 export XFS_GROWFS_PROG=`set_prog_path xfs_growfs`
165 export XFS_IO_PROG="`set_prog_path xfs_io`"
166 export XFS_PARALLEL_REPAIR_PROG="`set_prog_path xfs_prepair`"
167 export XFS_PARALLEL_REPAIR64_PROG="`set_prog_path xfs_prepair64`"
168 export __XFSDUMP_PROG="`set_prog_path xfsdump`"
169 if [ -n "$__XFSDUMP_PROG" ]; then
170         export XFSDUMP_PROG="$__XFSDUMP_PROG -e"
171 else
172         export XFSDUMP_PROG=""
173 fi
174 export XFSRESTORE_PROG="`set_prog_path xfsrestore`"
175 export XFSINVUTIL_PROG="`set_prog_path xfsinvutil`"
176 export GETFATTR_PROG="`set_prog_path getfattr`"
177 export SETFATTR_PROG="`set_prog_path setfattr`"
178 export CHACL_PROG="`set_prog_path chacl`"
179 export ATTR_PROG="`set_prog_path attr`"
180 export QUOTA_PROG="`set_prog_path quota`"
181 export XFS_QUOTA_PROG="`set_prog_path xfs_quota`"
182 export KILLALL_PROG="`set_prog_path killall`"
183 export INDENT_PROG="`set_prog_path indent`"
184 export XFS_COPY_PROG="`set_prog_path xfs_copy`"
185 export FSTRIM_PROG="`set_prog_path fstrim`"
186 export DUMPE2FS_PROG="`set_prog_path dumpe2fs`"
187 export FIO_PROG="`set_prog_path fio`"
188 export FILEFRAG_PROG="`set_prog_path filefrag`"
189 export E4DEFRAG_PROG="`set_prog_path e4defrag`"
190 export LOGGER_PROG="`set_prog_path logger`"
191 export DBENCH_PROG="`set_prog_path dbench`"
192 export DMSETUP_PROG="`set_prog_path dmsetup`"
193 export WIPEFS_PROG="`set_prog_path wipefs`"
194 export DUMP_PROG="`set_prog_path dump`"
195 export RESTORE_PROG="`set_prog_path restore`"
196 export LVM_PROG="`set_prog_path lvm`"
197 export CHATTR_PROG="`set_prog_path chattr`"
198 export DEBUGFS_PROG="`set_prog_path debugfs`"
199 export UUIDGEN_PROG="`set_prog_path uuidgen`"
200
201 # use 'udevadm settle' or 'udevsettle' to wait for lv to be settled.
202 # newer systems have udevadm command but older systems like RHEL5 don't.
203 # But if neither one is available, just set it to "sleep 1" to wait for lv to
204 # be settled
205 UDEV_SETTLE_PROG="`set_prog_path udevadm`"
206 if [ "$UDEV_SETTLE_PROG" == "" ]; then
207         # try udevsettle command
208         UDEV_SETTLE_PROG="`set_prog_path udevsettle`"
209 else
210         # udevadm is available, add 'settle' as subcommand
211         UDEV_SETTLE_PROG="$UDEV_SETTLE_PROG settle"
212 fi
213 # neither command is available, use sleep 1
214 if [ "$UDEV_SETTLE_PROG" == "" ]; then
215         UDEV_SETTLE_PROG="sleep 1"
216 fi
217 export UDEV_SETTLE_PROG
218
219 # Generate a comparable xfsprogs version number in the form of
220 # major * 10000 + minor * 100 + release
221 #
222 # $ xfs_db -V
223 # xfs_db version 2.9.7
224 #
225 # so, 2.9.7 = 20907
226 _version=`$XFS_DB_PROG -V | $AWK_PROG '
227         /version/ {
228                 if (split($3,ver,".") == 3)
229                         print (ver[1] * 10000) + (ver[2] * 100) + ver[3];
230         }'`
231 [ -z "$_version" ] && _fatal "xfsprogs version cannot be found"
232 export XFSPROGS_VERSION="$_version"
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 XFS_FSR_PROG="`set_prog_path xfs_fsr`"
252         export MKFS_NFS_PROG="false"
253         export MKFS_CIFS_PROG="false"
254         export MKFS_OVERLAY_PROG="false"
255         export MKFS_REISER4_PROG="`set_prog_path mkfs.reiser4`"
256         ;;
257 esac
258
259 # SELinux adds extra xattrs which can mess up our expected output.
260 # So, mount with a context, and they won't be created
261 # # nfs_t is a "liberal" context so we can use it.
262 if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then
263         SELINUX_MOUNT_OPTIONS="-o context=system_u:object_r:nfs_t:s0"
264         export SELINUX_MOUNT_OPTIONS
265 fi
266
267 # check if mkfs.xfs supports v5 xfs
268 XFS_MKFS_HAS_NO_META_SUPPORT=""
269 touch /tmp/crc_check.img
270 $MKFS_XFS_PROG -N -d file,name=/tmp/crc_check.img,size=32m -m crc=0 \
271         >/dev/null 2>&1;
272 if [ $? -ne 0 ]; then
273         XFS_MKFS_HAS_NO_META_SUPPORT=true
274 fi
275 rm -f /tmp/crc_check.img
276 export XFS_MKFS_HAS_NO_META_SUPPORT
277
278 # new doesn't need config file parsed, we can stop here
279 if [ "$iam" == "new" ]; then
280         return 0
281 fi
282
283 _mount_opts()
284 {
285         case $FSTYP in
286         xfs)
287                 export MOUNT_OPTIONS=$XFS_MOUNT_OPTIONS
288                 ;;
289         udf)
290                 export MOUNT_OPTIONS=$UDF_MOUNT_OPTIONS
291                 ;;
292         nfs)
293                 export MOUNT_OPTIONS=$NFS_MOUNT_OPTIONS
294                 ;;
295         cifs)
296                 export MOUNT_OPTIONS=$CIFS_MOUNT_OPTIONS
297                 ;;
298         overlay)
299                 export MOUNT_OPTIONS=$OVERLAY_MOUNT_OPTIONS
300                 ;;
301         ext2|ext3|ext4|ext4dev)
302                 # acls & xattrs aren't turned on by default on ext$FOO
303                 export MOUNT_OPTIONS="-o acl,user_xattr $EXT_MOUNT_OPTIONS"
304                 ;;
305         f2fs)
306                 export MOUNT_OPTIONS="-o acl,user_xattr $F2FS_MOUNT_OPTIONS"
307                 ;;
308         reiserfs)
309                 # acls & xattrs aren't turned on by default on reiserfs
310                 export MOUNT_OPTIONS="-o acl,user_xattr $REISERFS_MOUNT_OPTIONS"
311                 ;;
312        reiser4)
313                # acls & xattrs aren't supported by reiser4
314                export MOUNT_OPTIONS=$REISER4_MOUNT_OPTIONS
315                ;;
316         gfs2)
317                 # acls aren't turned on by default on gfs2
318                 export MOUNT_OPTIONS="-o acl $GFS2_MOUNT_OPTIONS"
319                 ;;
320         tmpfs)
321                 # We need to specify the size at mount, use 1G by default
322                 export MOUNT_OPTIONS="-o size=1G $TMPFS_MOUNT_OPTIONS"
323                 ;;
324         *)
325                 ;;
326         esac
327 }
328
329 _test_mount_opts()
330 {
331         case $FSTYP in
332         cifs)
333                 export TEST_FS_MOUNT_OPTS=$CIFS_MOUNT_OPTIONS
334                 ;;
335         *)
336                 ;;
337         esac
338 }
339
340 _mkfs_opts()
341 {
342         case $FSTYP in
343         xfs)
344                 export MKFS_OPTIONS=$XFS_MKFS_OPTIONS
345                 ;;
346         udf)
347                 [ ! -z "$udf_fsize" ] && \
348                         UDF_MKFS_OPTIONS="$UDF_MKFS_OPTIONS -s $udf_fsize"
349                 export MKFS_OPTIONS=$UDF_MKFS_OPTIONS
350                 ;;
351         nfs)
352                 export MKFS_OPTIONS=$NFS_MKFS_OPTIONS
353                 ;;
354         cifs)
355                 export MKFS_OPTIONS=$CIFS_MKFS_OPTIONS
356                 ;;
357         reiserfs)
358                 export MKFS_OPTIONS="$REISERFS_MKFS_OPTIONS -q"
359                 ;;
360        reiser4)
361                 export MKFS_OPTIONS=$REISER4_MKFS_OPTIONS
362                 ;;
363         gfs2)
364                 export MKFS_OPTIONS="$GFS2_MKFS_OPTIONS -O -p lock_nolock"
365                 ;;
366         jfs)
367                 export MKFS_OPTIONS="$JFS_MKFS_OPTIONS -q"
368                 ;;
369         f2fs)
370                 export MKFS_OPTIONS="$F2FS_MKFS_OPTIONS"
371                 ;;
372         *)
373                 ;;
374         esac
375 }
376
377 _fsck_opts()
378 {
379         case $FSTYP in
380         ext2|ext3|ext4|ext4dev)
381                 export FSCK_OPTIONS="-nf"
382                 ;;
383         reiser*)
384                 export FSCK_OPTIONS="--yes"
385                 ;;
386         f2fs)
387                 export FSCK_OPTIONS=""
388                 ;;
389         *)
390                 export FSCK_OPTIONS="-n"
391                 ;;
392         esac
393 }
394
395 known_hosts()
396 {
397         [ "$HOST_CONFIG_DIR" ] || HOST_CONFIG_DIR=`pwd`/configs
398
399         [ -f /etc/xfsqa.config ]             && export HOST_OPTIONS=/etc/xfsqa.config
400         [ -f $HOST_CONFIG_DIR/$HOST ]        && export HOST_OPTIONS=$HOST_CONFIG_DIR/$HOST
401         [ -f $HOST_CONFIG_DIR/$HOST.config ] && export HOST_OPTIONS=$HOST_CONFIG_DIR/$HOST.config
402 }
403
404 # Returns a list of sections in config file
405 # Each section starts with the section name in the format
406 # [section_name1]. Only alphanumeric characters and '_' is allowed
407 # in the section name otherwise the section will not be resognised.
408 # Section name must be contained between square brackets.
409 get_config_sections() {
410         sed -n -e "s/^\[\([[:alnum:]_]*\)\]/\1/p" < $1
411 }
412
413 if [ ! -f "$HOST_OPTIONS" ]; then
414         known_hosts
415 fi
416
417 export HOST_OPTIONS_SECTIONS="-no-sections-"
418 export OPTIONS_HAVE_SECTIONS=false
419 if [ -f "$HOST_OPTIONS" ]; then
420         export HOST_OPTIONS_SECTIONS=`get_config_sections $HOST_OPTIONS`
421         if [ -z "$HOST_OPTIONS_SECTIONS" ]; then
422                 . $HOST_OPTIONS
423                 export HOST_OPTIONS_SECTIONS="-no-sections-"
424         else
425                 export OPTIONS_HAVE_SECTIONS=true
426         fi
427 fi
428
429 _check_device()
430 {
431         local name=$1
432         local dev_needed=$2
433         local dev=$3
434
435         if [ -z "$dev" ]; then
436                 if [ "$dev_needed" == "required" ]; then
437                         _fatal "common/config: $name is required but not defined!"
438                 fi
439                 return
440         fi
441
442         echo $dev | grep -qE ":|//" > /dev/null 2>&1
443         network_dev=$?
444         if [ "$FSTYP" == "overlay" ]; then
445                 if [ ! -d "$dev" ]; then
446                         _fatal "common/config: $name ($dev) is not a directory for overlay"
447                 fi
448         elif [ ! -b "$dev" -a "$network_dev" != "0" ]; then
449                 _fatal "common/config: $name ($dev) is not a block device or a network filesystem"
450         fi
451 }
452
453 # Parse config section options. This function will parse all the configuration
454 # within a single section which name is passed as an argument. For section
455 # name format see comments in get_config_sections().
456 # Empty lines and everything after '#' will be ignored.
457 # Configuration options should be defined in the format
458 #
459 # CONFIG_OPTION=value
460 #
461 # This 'CONFIG_OPTION' variable and will be exported as an environment variable.
462 parse_config_section() {
463         SECTION=$1
464         if ! $OPTIONS_HAVE_SECTIONS; then
465                 return 0
466         fi
467         eval `sed -e 's/[[:space:]]*\=[[:space:]]*/=/g' \
468                 -e 's/#.*$//' \
469                 -e 's/[[:space:]]*$//' \
470                 -e 's/^[[:space:]]*//' \
471                 -e "s/^\([^=]*\)=\"\?'\?\([^\"']*\)\"\?'\?$/export \1=\"\2\"/" \
472                 < $HOST_OPTIONS \
473                 | sed -n -e "/^\[$SECTION\]/,/^\s*\[/{/^[^#].*\=.*/p;}"`
474 }
475
476 get_next_config() {
477         if [ ! -z "$CONFIG_INCLUDED" ] && ! $OPTIONS_HAVE_SECTIONS; then
478                 return 0
479         fi
480
481         local OLD_FSTYP=$FSTYP
482         local OLD_MOUNT_OPTIONS=$MOUNT_OPTIONS
483         local OLD_TEST_FS_MOUNT_OPTS=$TEST_FS_MOUNT_OPTS
484         local OLD_MKFS_OPTIONS=$MKFS_OPTIONS
485         local OLD_FSCK_OPTIONS=$FSCK_OPTIONS
486         local OLD_USE_EXTERNAL=$USE_EXTERNAL
487
488         unset MOUNT_OPTIONS
489         unset MKFS_OPTIONS
490         unset FSCK_OPTIONS
491         unset USE_EXTERNAL
492
493         # We might have deduced SCRATCH_DEV from the SCRATCH_DEV_POOL in the previous
494         # run, so we have to unset it now.
495         if [ "$SCRATCH_DEV_NOT_SET" == "true" ]; then
496                 unset SCRATCH_DEV
497         fi
498
499         parse_config_section $1
500
501         if [ ! -z "$OLD_FSTYP" ] && [ $OLD_FSTYP != $FSTYP ]; then
502                 [ -z "$MOUNT_OPTIONS" ] && _mount_opts
503                 [ -z "$TEST_FS_MOUNT_OPTS" ] && _test_mount_opts
504                 [ -z "$MKFS_OPTIONS" ] && _mkfs_opts
505                 [ -z "$FSCK_OPTIONS" ] && _fsck_opts
506
507                 # clear the external devices if we are not using them
508                 if [ -z "$USE_EXTERNAL" ]; then
509                         unset TEST_RTDEV
510                         unset TEST_LOGDEV
511                         unset SCRATCH_RTDEV
512                         unset SCRATCH_LOGDEV
513                 fi
514         else
515                 [ -z "$MOUNT_OPTIONS" ] && export MOUNT_OPTIONS=$OLD_MOUNT_OPTIONS
516                 [ -z "$TEST_FS_MOUNT_OPTS" ] && export TEST_FS_MOUNT_OPTS=$OLD_TEST_FS_MOUNT_OPTS
517                 [ -z "$MKFS_OPTIONS" ] && export MKFS_OPTIONS=$OLD_MKFS_OPTIONS
518                 [ -z "$FSCK_OPTIONS" ] && export FSCK_OPTIONS=$OLD_FSCK_OPTIONS
519                 [ -z "$USE_EXTERNAL" ] && export USE_EXTERNAL=$OLD_USE_EXTERNAL
520         fi
521
522         # set default RESULT_BASE
523         if [ -z "$RESULT_BASE" ]; then
524                 export RESULT_BASE="$here/results/"
525         fi
526
527         #  Mandatory Config values.
528         MC=""
529         [ -z "$EMAIL" ]          && MC="$MC EMAIL"
530         [ -z "$TEST_DIR" ]       && MC="$MC TEST_DIR"
531         [ -z "$TEST_DEV" ]       && MC="$MC TEST_DEV"
532
533         if [ -n "$MC" ]; then
534                 echo "Warning: need to define parameters for host $HOST"
535                 echo "       or set variables:"
536                 echo "       $MC"
537                 exit 1
538         fi
539
540         _check_device TEST_DEV required $TEST_DEV
541         if [ ! -d "$TEST_DIR" ]; then
542                 echo "common/config: Error: \$TEST_DIR ($TEST_DIR) is not a directory"
543                 exit 1
544         fi
545
546         # a btrfs tester will set only SCRATCH_DEV_POOL, we will put first of its dev
547         # to SCRATCH_DEV and rest to SCRATCH_DEV_POOL to maintain the backward compatibility
548         if [ ! -z "$SCRATCH_DEV_POOL" ]; then
549                 if [ ! -z "$SCRATCH_DEV" ]; then
550                         echo "common/config: Error: \$SCRATCH_DEV ($SCRATCH_DEV) should be unset when \$SCRATCH_DEV_POOL ($SCRATCH_DEV_POOL) is set"
551                         exit 1
552                 fi
553                 SCRATCH_DEV=`echo $SCRATCH_DEV_POOL | awk '{print $1}'`
554                 export SCRATCH_DEV
555                 export SCRATCH_DEV_NOT_SET=true
556         fi
557
558         _check_device SCRATCH_DEV optional $SCRATCH_DEV
559         if [ ! -z "$SCRATCH_MNT" -a ! -d "$SCRATCH_MNT" ]; then
560                 echo "common/config: Error: \$SCRATCH_MNT ($SCRATCH_MNT) is not a directory"
561                 exit 1
562         fi
563
564         if [ -n "$USE_EXTERNAL" ]; then
565                 _check_device TEST_RTDEV optional $TEST_RTDEV
566                 _check_device TEST_LOGDEV optional $TEST_LOGDEV
567                 _check_device SCRATCH_RTDEV optional $SCRATCH_RTDEV
568                 _check_device SCRATCH_LOGDEV optional $SCRATCH_LOGDEV
569         fi
570 }
571
572 if [ -z "$CONFIG_INCLUDED" ]; then
573         get_next_config `echo $HOST_OPTIONS_SECTIONS | cut -f1 -d" "`
574         export CONFIG_INCLUDED=true
575
576         # Autodetect fs type based on what's on $TEST_DEV unless it's been set
577         # externally
578         if [ -z "$FSTYP" ] && \
579            [ "$HOSTOS" == "Linux" -o "$OSTYPE" == "linux-gnu" ] && \
580            [ ! -z "$TEST_DEV" ]; then
581                 FSTYP=`blkid -c /dev/null -s TYPE -o value $TEST_DEV`
582         fi
583         FSTYP=${FSTYP:=xfs}
584         export FSTYP
585         [ -z "$MOUNT_OPTIONS" ] && _mount_opts
586         [ -z "$TEST_FS_MOUNT_OPTS" ] && _test_mount_opts
587         [ -z "$MKFS_OPTIONS" ] && _mkfs_opts
588         [ -z "$FSCK_OPTIONS" ] && _fsck_opts
589 fi
590
591 # canonicalize the mount points
592 # this follows symlinks and removes all trailing "/"s
593 export TEST_DIR=`readlink -e "$TEST_DIR"`
594 export SCRATCH_MNT=`readlink -e "$SCRATCH_MNT"`
595
596 # make sure this script returns success
597 /bin/true