btrfs: test incremental send after removing a directory and all its files
[xfstests-dev.git] / tests / btrfs / 206
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2020 Facebook.  All Rights Reserved.
4 #
5 # FS QA Test 206
6 #
7 # Validate that without no-holes we do not get a i_size that is after a gap in
8 # the file extents on disk when punching a hole past i_size.  This is fixed by
9 # the following patches
10 #
11 #       btrfs: use the file extent tree infrastructure
12 #       btrfs: replace all uses of btrfs_ordered_update_i_size
13 #
14 seq=`basename $0`
15 seqres=$RESULT_DIR/$seq
16 echo "QA output created by $seq"
17
18 here=`pwd`
19 tmp=/tmp/$$
20 status=1        # failure is the default!
21 trap "_cleanup; exit \$status" 0 1 2 3 15
22
23 _cleanup()
24 {
25         cd /
26         rm -f $tmp.*
27 }
28
29 # get standard environment, filters and checks
30 . ./common/rc
31 . ./common/filter
32 . ./common/dmlogwrites
33
34 # remove previous $seqres.full before test
35 rm -f $seqres.full
36
37 # real QA test starts here
38 _supported_fs btrfs
39 _require_test
40 _require_scratch
41 _require_log_writes
42 _require_xfs_io_command "falloc" "-k"
43 _require_xfs_io_command "fpunch"
44
45 _log_writes_init $SCRATCH_DEV
46 _log_writes_mkfs "-O ^no-holes" >> $seqres.full 2>&1
47
48 # There's not a straightforward way to commit the transaction without also
49 # flushing dirty pages, so shorten the commit interval to 1 so we're sure to get
50 # a commit with our broken file
51 _log_writes_mount -o commit=1
52
53 # This creates a gap extent because fpunch doesn't insert hole extents past
54 # i_size
55 $XFS_IO_PROG -f -c "falloc -k 4k 8k" $SCRATCH_MNT/file
56 $XFS_IO_PROG -f -c "fpunch 4k 4k" $SCRATCH_MNT/file
57
58 # The pwrite extends the i_size to cover the gap extent, and then the truncate
59 # sets the disk_i_size to 12k because it assumes everything was a-ok.
60 $XFS_IO_PROG -f -c "pwrite 0 4k" $SCRATCH_MNT/file | _filter_xfs_io
61 $XFS_IO_PROG -f -c "pwrite 0 8k" $SCRATCH_MNT/file | _filter_xfs_io
62 $XFS_IO_PROG -f -c "truncate 12k" $SCRATCH_MNT/file
63
64 # Wait for a transaction commit
65 sleep 2
66
67 _log_writes_unmount
68 _log_writes_remove
69
70 cur=$(_log_writes_find_next_fua 0)
71 echo "cur=$cur" >> $seqres.full
72 while [ ! -z "$cur" ]; do
73         _log_writes_replay_log_range $cur $SCRATCH_DEV >> $seqres.full
74
75         # We only care about the fs consistency, so just run fsck, we don't have
76         # to mount the fs to validate it
77         _check_scratch_fs
78
79         cur=$(_log_writes_find_next_fua $(($cur + 1)))
80 done
81
82 # success, all done
83 status=0
84 exit