xfstests: unify apostrophes in output files
[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
81 export PWD=`pwd`
82 #export DEBUG=${DEBUG:=...} # arbitrary CFLAGS really.
83 export MALLOCLIB=${MALLOCLIB:=/usr/lib/libefence.a}
84 export LOCAL_CONFIGURE_OPTIONS=${LOCAL_CONFIGURE_OPTIONS:=--enable-readline=yes}
85
86 # $1 = prog to look for, $2* = default pathnames if not found in $PATH
87 set_prog_path()
88 {
89     p=`which $1 2> /dev/null`
90     if [ -n "$p" -a -x "$p" ]; then
91         echo $p
92         return 0
93     fi
94     p=$1
95
96     shift
97     for f; do
98         if [ -x $f ]; then
99             echo $f
100             return 0
101         fi
102     done
103
104     echo ""
105     return 1
106 }
107
108 # Handle mkfs.btrfs which does (or does not) require -f to overwrite
109 set_btrfs_mkfs_prog_path_with_opts()
110 {
111         p=`set_prog_path mkfs.btrfs`
112         if [ "$p" != "" ] && grep -q 'force overwrite' $p; then
113                 echo "$p -f"
114         else
115                 echo $p
116         fi
117 }
118
119 _fatal()
120 {
121     echo "$*"
122     status=1
123     exit 1
124 }
125
126 export MKFS_PROG="`set_prog_path mkfs`"
127 [ "$MKFS_PROG" = "" ] && _fatal "mkfs not found"
128
129 export MOUNT_PROG="`set_prog_path mount`"
130 [ "$MOUNT_PROG" = "" ] && _fatal "mount not found"
131
132 export UMOUNT_PROG="`set_prog_path umount`"
133 [ "$UMOUNT_PROG" = "" ] && _fatal "umount not found"
134
135 export FSSTRESS_PROG="`set_prog_path fsstress $PWD/ltp/fsstress`"
136 [ "$FSSTRESS_PROG" = "" ] && _fatal "fsstress not found"
137
138 export PERL_PROG="`set_prog_path perl`"
139 [ "$PERL_PROG" = "" ] && _fatal "perl not found"
140
141 export AWK_PROG="`set_prog_path awk`"
142 [ "$AWK_PROG" = "" ] && _fatal "awk not found"
143
144 export SED_PROG="`set_prog_path sed`"
145 [ "$SED_PROG" = "" ] && _fatal "sed not found"
146
147 export BC_PROG="`set_prog_path bc`"
148 [ "$BC_PROG" = "" ] && _fatal "bc not found"
149
150 export PS_ALL_FLAGS="-ef"
151
152 export DF_PROG="`set_prog_path df`"
153 [ "$DF_PROG" = "" ] && _fatal "df not found"
154 [ "$HOSTOS" = "Linux" ] && export DF_PROG="$DF_PROG -T"
155
156 export XFS_LOGPRINT_PROG="`set_prog_path xfs_logprint`"
157 export XFS_REPAIR_PROG="`set_prog_path xfs_repair`"
158 export XFS_DB_PROG="`set_prog_path xfs_db`"
159 export XFS_GROWFS_PROG=`set_prog_path xfs_growfs`
160 export XFS_IO_PROG="`set_prog_path xfs_io`"
161 export XFS_PARALLEL_REPAIR_PROG="`set_prog_path xfs_prepair`"
162 export XFS_PARALLEL_REPAIR64_PROG="`set_prog_path xfs_prepair64`"
163 export __XFSDUMP_PROG="`set_prog_path xfsdump`"
164 export XFSDUMP_PROG="$__XFSDUMP_PROG -e"
165 export XFSRESTORE_PROG="`set_prog_path xfsrestore`"
166 export XFSINVUTIL_PROG="`set_prog_path xfsinvutil`"
167 export GETFATTR_PROG="`set_prog_path getfattr`"
168 export SETFATTR_PROG="`set_prog_path setfattr`"
169 export ATTR_PROG="`set_prog_path attr`"
170 export QUOTA_PROG="`set_prog_path quota`"
171 export XFS_QUOTA_PROG="`set_prog_path xfs_quota`"
172 export KILLALL_PROG="`set_prog_path killall`"
173 export INDENT_PROG="`set_prog_path indent`"
174 export XFS_COPY_PROG="`set_prog_path xfs_copy`"
175 export FSTRIM_PROG="`set_prog_path fstrim`"
176 export DUMPE2FS_PROG="`set_prog_path dumpe2fs`"
177 export FIO_PROG="`set_prog_path fio`"
178 export FILEFRAG_PROG="`set_prog_path filefrag`"
179 export E4DEFRAG_PROG="`set_prog_path e4defrag`"
180 export LOGGER_PROG="`set_prog_path logger`"
181 export DBENCH_PROG="`set_prog_path dbench`"
182 export DMSETUP_PROG="`set_prog_path dmsetup`"
183
184 # Generate a comparable xfsprogs version number in the form of
185 # major * 10000 + minor * 100 + release
186 #
187 # $ xfs_db -V
188 # xfs_db version 2.9.7
189 #
190 # so, 2.9.7 = 20907
191 _version=`$XFS_DB_PROG -V | $AWK_PROG '
192         /version/ {
193                 if (split($3,ver,".") == 3)
194                         print (ver[1] * 10000) + (ver[2] * 100) + ver[3];
195         }'`
196 [ -z "$_version" ] && _fatal "xfsprogs version cannot be found"
197 export XFSPROGS_VERSION="$_version"
198
199 case "$HOSTOS" in
200     IRIX*)
201         export MKFS_XFS_PROG="`set_prog_path mkfs_xfs`"
202         export MKFS_UDF_PROG="`set_prog_path mkfs_udf`"
203         export XFS_FSR_PROG="`set_prog_path /usr/etc/fsr_xfs`"
204         export MKFS_NFS_PROG="false"
205         ;;
206     Linux)
207         export MKFS_XFS_PROG="`set_prog_path mkfs.xfs`"
208         export MKFS_UDF_PROG="`set_prog_path mkudffs`"
209         export MKFS_BTRFS_PROG="`set_btrfs_mkfs_prog_path_with_opts`"
210         export BTRFS_UTIL_PROG="`set_prog_path btrfs`"
211         export BTRFS_SHOW_SUPER_PROG="`set_prog_path btrfs-show-super`"
212         export XFS_FSR_PROG="`set_prog_path xfs_fsr`"
213         export MKFS_NFS_PROG="false"
214         ;;
215 esac
216
217 known_hosts()
218 {
219         [ "$HOST_CONFIG_DIR" ] || HOST_CONFIG_DIR=`pwd`/configs
220
221         [ -f /etc/xfsqa.config ]             && export HOST_OPTIONS=/etc/xfsqa.config
222         [ -f $HOST_CONFIG_DIR/$HOST ]        && export HOST_OPTIONS=$HOST_CONFIG_DIR/$HOST
223         [ -f $HOST_CONFIG_DIR/$HOST.config ] && export HOST_OPTIONS=$HOST_CONFIG_DIR/$HOST.config
224 }
225
226 if [ ! -f "$HOST_OPTIONS" ]; then
227         known_hosts
228 fi
229
230 if [ -f "$HOST_OPTIONS" ]; then
231         . $HOST_OPTIONS
232 fi
233
234 get_next_config() {
235         # set default RESULT_BASE
236         if [ -z "$RESULT_BASE" ]; then
237                 export RESULT_BASE="$here/results/"
238         fi
239
240         #  Mandatory Config values.
241         MC=""
242         [ -z "$EMAIL" ]          && MC="$MC EMAIL"
243         [ -z "$TEST_DIR" ]       && MC="$MC TEST_DIR"
244         [ -z "$TEST_DEV" ]       && MC="$MC TEST_DEV"
245
246         if [ -n "$MC" ]; then
247                 echo "Warning: need to define parameters for host $HOST"
248                 echo "       or set variables:"
249                 echo "       $MC"
250                 exit 1
251         fi
252
253         echo $TEST_DEV | grep -q ":" > /dev/null 2>&1
254         if [ ! -b "$TEST_DEV" -a "$?" != "0" ]; then
255                 echo "common/config: Error: \$TEST_DEV ($TEST_DEV) is not a block device or a NFS filesystem"
256                 exit 1
257         fi
258
259         if [ ! -d "$TEST_DIR" ]; then
260                 echo "common/config: Error: \$TEST_DIR ($TEST_DIR) is not a directory"
261                 exit 1
262         fi
263
264         # a btrfs tester will set only SCRATCH_DEV_POOL, we will put first of its dev
265         # to SCRATCH_DEV and rest to SCRATCH_DEV_POOL to maintain the backward compatibility
266         if [ ! -z "$SCRATCH_DEV_POOL" ]; then
267                 if [ ! -z "$SCRATCH_DEV" ]; then
268                         echo "common/config: Error: \$SCRATCH_DEV should be unset when \$SCRATCH_DEV_POOL is set"
269                         exit 1
270                 fi
271                 SCRATCH_DEV=`echo $SCRATCH_DEV_POOL | awk '{print $1}'`
272         fi
273
274         echo $SCRATCH_DEV | grep -q ":" > /dev/null 2>&1
275         if [ ! -z "$SCRATCH_DEV" -a ! -b "$SCRATCH_DEV" -a "$?" != "0" ]; then
276                 echo "common/config: Error: \$SCRATCH_DEV ($SCRATCH_DEV) is not a block device or a NFS filesystem"
277                 exit 1
278         fi
279
280         if [ ! -z "$SCRATCH_MNT" -a ! -d "$SCRATCH_MNT" ]; then
281                 echo "common/config: Error: \$SCRATCH_MNT ($SCRATCH_MNT) is not a directory"
282                 exit 1
283         fi
284 }
285
286 get_next_config
287
288 # make sure this script returns success
289 /bin/true