generic: test for non-zero used blocks while writing into a file
[xfstests-dev.git] / tests / generic / 485
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 Google, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 485
6 #
7 # Regression test for:
8 #    349fa7d6e193 ("ext4: prevent right-shifting extents beyond EXT_MAX_BLOCKS")
9 #    7d83fb14258b ("xfs: prevent creating negative-sized file via INSERT_RANGE")
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14
15 status=1        # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         cd /
21         rm -f $testfile
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27
28 # remove previous $seqres.full before test
29 rm -f $seqres.full
30
31 # real QA test starts here
32 _supported_fs generic
33 _require_test
34 _require_math
35 _require_xfs_io_command "falloc" "-k"
36 _require_xfs_io_command "finsert"
37 _require_xfs_io_command "truncate"
38
39 block_size=$(_get_file_block_size $TEST_DIR)
40 max_file_size=$(_get_max_file_size)
41 max_blocks=$((max_file_size / block_size))
42 testfile=$TEST_DIR/testfile.$seq
43
44 echo "# With KEEP_SIZE"
45 rm -f "$testfile"
46
47 # Add an extent at the beginning of the file.  With ext4, this is needed to
48 # reproduce the bug where the extents appear out of order later.
49 $XFS_IO_PROG -f -c "falloc 0 $((2 * block_size))" "$testfile"
50
51 # Add an extent just below s_maxbytes, without changing i_size (i.e. with -k).
52 # The out-of-order extents bug can't be reproduced if i_size is changed, because
53 # then the range insertion fails due to the new i_size being > s_maxbytes.
54 $XFS_IO_PROG -c "falloc -k $(( (max_blocks - 1) * $block_size )) $block_size" \
55         "$testfile"
56
57 # Insert an extent at the beginning of the file.  With the ext4 bug, this caused
58 # the logical block number of the extent just below s_maxbytes to wrap around,
59 # causing the extents to get out of order, causing corruption detected by
60 # e2fsck.  With the fix, the range insertion fails with EINVAL.  Though, with
61 # xfs and f2fs the insertion succeeds, resulting in extents beyond s_maxbytes,
62 # but there is no wraparound -- which is arguably okay.  So we allow either
63 # behavior and just rely on fsck detecting if something went wrong.
64 $XFS_IO_PROG -c "finsert 0 $((2 * block_size))" "$testfile" &>>$seqres.full
65
66 # Also do the same test, but with changing i_size (i.e. without -k).  The
67 # insertion should fail with EFBIG.  This exposed an XFS bug where i_size + len
68 # underwent signed overflow, resulting in a negative-sized file.
69 echo "# Without KEEP_SIZE"
70 rm -f "$testfile"
71 $XFS_IO_PROG -f -c "falloc 0 $((2 * block_size))" "$testfile"
72 $XFS_IO_PROG -c "falloc $(( (max_blocks - 1) * $block_size )) $block_size" \
73         "$testfile"
74 $XFS_IO_PROG -c "finsert 0 $((2 * block_size))" "$testfile"
75
76 status=0
77 exit