overlay: use OVL_BASE_SCRATCH_MNT instead of SCRATCH_DEV
[xfstests-dev.git] / tests / overlay / 002
1 #! /bin/bash
2 # FS QA Test 002
3 #
4 # Test that calling fsync against a file using the merged directory does not
5 # result in a crash nor fails unexpectedly.
6 #
7 # This is motivated by a change in overlayfs that resulted in a crash (invalid
8 # memory access) when the lower or upper directory belonged to a btrfs file
9 # system.
10 #
11 #-----------------------------------------------------------------------
12 #
13 # Copyright (C) 2016 SUSE Linux Products GmbH. All Rights Reserved.
14 # Author: Filipe Manana <fdmanana@suse.com>
15 #
16 # This program is free software; you can redistribute it and/or
17 # modify it under the terms of the GNU General Public License as
18 # published by the Free Software Foundation.
19 #
20 # This program is distributed in the hope that it would be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 # GNU General Public License for more details.
24 #
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write the Free Software Foundation,
27 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
28 #-----------------------------------------------------------------------
29 #
30
31 seq=`basename $0`
32 seqres=$RESULT_DIR/$seq
33 echo "QA output created by $seq"
34
35 here=`pwd`
36 tmp=/tmp/$$
37 status=1        # failure is the default!
38 trap "_cleanup; exit \$status" 0 1 2 3 15
39
40 _cleanup()
41 {
42         cd /
43         rm -f $tmp.*
44 }
45
46 # get standard environment, filters and checks
47 . ./common/rc
48 . ./common/filter
49
50 # remove previous $seqres.full before test
51 rm -f $seqres.full
52
53 # real QA test starts here
54 _supported_fs overlay
55 _supported_os Linux
56 _require_scratch
57
58 # Remove all files from previous tests
59 _scratch_mkfs
60
61 # Create our test file.
62 lowerdir=$OVL_BASE_SCRATCH_MNT/$OVL_LOWER
63 mkdir -p $lowerdir
64 touch $lowerdir/foobar
65
66 _scratch_mount
67
68 # Write some data to our file and fsync it, using the merged directory path.
69 # This should work and not result in a crash.
70 $XFS_IO_PROG -c "pwrite 0 64k" -c "fsync" $SCRATCH_MNT/foobar | _filter_xfs_io
71
72 # success, all done
73 status=0
74 exit