btrfs: Verify falloc on multiple holes won't leak qgroup reserved data space
[xfstests-dev.git] / tests / btrfs / 107
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015 Fujitsu. All Rights Reserved.
4 #
5 # FS QA Test 107
6 #
7 # Test that calling fallocate against a range which is already
8 # allocated does not truncate beyond EOF
9 #
10 seq=`basename $0`
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
13
14 here=`pwd`
15 tmp=/tmp/$$
16 status=1        # failure is the default!
17 trap "_cleanup; exit \$status" 0 1 2 3 15
18
19 _cleanup()
20 {
21         cd /
22         rm -f $tmp.*
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28 . ./common/defrag
29
30 # remove previous $seqres.full before test
31 rm -f $seqres.full
32
33 # real QA test starts here
34
35 _supported_fs btrfs
36 _supported_os Linux
37 _require_scratch
38
39 # Use 64K file size to match any sectorsize
40 # And with a unaligned tailing range to ensure it will be at least 2 pages
41 filesize=$(( 64 * 1024 + 1024 ))
42
43 # Fallocate a range that will not cover the tailing page
44 fallocrange=$(( 64 * 1024 ))
45
46 _scratch_mkfs > /dev/null 2>&1
47 _scratch_mount
48 $XFS_IO_PROG -f -c "pwrite 0 $filesize" $SCRATCH_MNT/foo | _filter_xfs_io
49 sync
50 orig_extent_nr=`_extent_count $SCRATCH_MNT/foo`
51
52 # As all space are allocated and even written to disk, this falloc
53 # should do nothing with extent modification.
54 $XFS_IO_PROG -f -c "falloc 0 $fallocrange" $SCRATCH_MNT/foo
55 sync
56 new_extent_nr=`_extent_count $SCRATCH_MNT/foo`
57
58 echo "orig: $orig_extent_nr, new: $new_extent_nr" >> $seqres.full
59
60 if [ "x$orig_extent_nr" != "x$new_extent_nr" ]; then
61         echo "Extent beyond EOF is re-truncated"
62         echo "orig_extent_nr: $orig_extent_nr new_extent_nr: $new_extent_nr"
63 fi
64
65 # success, all done
66 status=0
67 exit