ef515a1e006249a0df608da04b75f65a95f68b21
[xfstests-dev.git] / tests / btrfs / 056
1 #! /bin/bash
2 # FS QA Test No. btrfs/056
3 #
4 # Regression test for btrfs ioctl clone operation + fsync + log recovery.
5 # The issue was that doing an fsync after cloning into a file didn't gave any
6 # persistence guarantees as it should. What happened was that the in memory
7 # metadata (extent maps) weren't updated, which made the fsync code not able
8 # to detect that file data has been changed.
9 #
10 # This issue is fixed by the following linux kernel btrfs patch:
11 #
12 #    Btrfs: make fsync work after cloning into a file
13 #
14 #-----------------------------------------------------------------------
15 # Copyright (c) 2014 Filipe Manana.  All Rights Reserved.
16 #
17 # This program is free software; you can redistribute it and/or
18 # modify it under the terms of the GNU General Public License as
19 # published by the Free Software Foundation.
20 #
21 # This program is distributed in the hope that it would be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 #
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write the Free Software Foundation,
28 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
29 #-----------------------------------------------------------------------
30 #
31
32 seq=`basename $0`
33 seqres=$RESULT_DIR/$seq
34 echo "QA output created by $seq"
35
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         _cleanup_flakey
43         rm -fr $tmp
44 }
45
46 # get standard environment, filters and checks
47 . ./common/rc
48 . ./common/filter
49 . ./common/dmflakey
50
51 # real QA test starts here
52 _supported_fs btrfs
53 _supported_os Linux
54 _require_scratch
55 _require_cloner
56 _require_btrfs_fs_feature "no_holes"
57 _require_btrfs_mkfs_feature "no-holes"
58 _require_dm_target flakey
59
60 rm -f $seqres.full
61
62 test_btrfs_clone_fsync_log_recover()
63 {
64         _scratch_mkfs "$1" >/dev/null 2>&1
65         _init_flakey
66         SAVE_MOUNT_OPTIONS="$MOUNT_OPTIONS"
67         MOUNT_OPTIONS="$MOUNT_OPTIONS $2"
68         _mount_flakey
69
70         BLOCK_SIZE=$(get_block_size $SCRATCH_MNT)
71
72         EXTENT_SIZE=$((2 * $BLOCK_SIZE))
73
74         # Create a file with 4 extents and 1 hole, all with a size of
75         # 2 blocks each.
76         # The hole is in the block range [4, 5].
77         $XFS_IO_PROG -s -f -c "pwrite -S 0x01 -b $EXTENT_SIZE 0 $EXTENT_SIZE" \
78                         -c "pwrite -S 0x02 -b $EXTENT_SIZE $((2 * $BLOCK_SIZE)) $EXTENT_SIZE" \
79                         -c "pwrite -S 0x04 -b $EXTENT_SIZE $((6 * $BLOCK_SIZE)) $EXTENT_SIZE" \
80                         -c "pwrite -S 0x05 -b $EXTENT_SIZE $((8 * $BLOCK_SIZE)) $EXTENT_SIZE" \
81                 $SCRATCH_MNT/foo | _filter_xfs_io_blocks_modified
82
83         # Clone destination file, 1 extent of 24 blocks.
84         $XFS_IO_PROG -f -c "pwrite -S 0xff -b $((24 * $BLOCK_SIZE)) 0 $((24 * $BLOCK_SIZE))" \
85                      -c "fsync" $SCRATCH_MNT/bar | _filter_xfs_io_blocks_modified
86
87         # Clone second half of the 2nd extent, the 2 block hole, the 3rd extent
88         # and the first half of the 4th extent into file bar.
89         $CLONER_PROG -s $((3 * $BLOCK_SIZE)) -d 0 -l $((6 * $BLOCK_SIZE)) \
90                      $SCRATCH_MNT/foo $SCRATCH_MNT/bar
91         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
92
93         # Test small files too consisting of 1 inline extent
94         EXTENT_SIZE=$(($BLOCK_SIZE - 48))
95         $XFS_IO_PROG -f -c "pwrite -S 0x00 -b $EXTENT_SIZE 0 $EXTENT_SIZE" -c "fsync" \
96                 $SCRATCH_MNT/foo2 | _filter_xfs_io_blocks_modified
97
98         EXTENT_SIZE=$(($BLOCK_SIZE - 1048))
99         $XFS_IO_PROG -f -c "pwrite -S 0xcc -b $EXTENT_SIZE 0 $EXTENT_SIZE" -c "fsync" \
100                 $SCRATCH_MNT/bar2 | _filter_xfs_io_blocks_modified
101
102         # Clone the entire foo2 file into bar2, overwriting all data in bar2
103         # and increasing its size.
104         EXTENT_SIZE=$(($BLOCK_SIZE - 48))
105         $CLONER_PROG -s 0 -d 0 -l $EXTENT_SIZE $SCRATCH_MNT/foo2 $SCRATCH_MNT/bar2
106         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar2
107
108         _flakey_drop_and_remount yes
109
110         # Verify the cloned range was persisted by fsync and the log recovery
111         # code did its work well.
112         echo "Verifying file bar content"
113         od -t x1 $SCRATCH_MNT/bar | _filter_od
114
115         echo "Verifying file bar2 content"
116         od -t x1 $SCRATCH_MNT/bar2 | _filter_od
117
118         _unmount_flakey
119
120         # Verify that there are no consistency errors.
121         _check_scratch_fs $FLAKEY_DEV
122
123         _cleanup_flakey
124         MOUNT_OPTIONS="$SAVE_MOUNT_OPTIONS"
125 }
126
127 # Regardless of the NO_HOLES feature being enabled or not, the test results
128 # should be exactly the same for both cases.
129
130 echo "Testing without the NO_HOLES feature"
131 # As of btrfs-progs 3.14.x, the no-holes feature isn't enabled by default.
132 # But explicitly disable it at mkfs time as it might be enabled by default
133 # in future versions.
134 test_btrfs_clone_fsync_log_recover "-O ^no-holes"
135
136 echo "Testing without the NO_HOLES feature and compression (lzo)"
137 test_btrfs_clone_fsync_log_recover "-O ^no-holes" "-o compress-force=lzo"
138
139 echo "Testing with the NO_HOLES feature enabled"
140 test_btrfs_clone_fsync_log_recover "-O no-holes"
141
142 echo "Testing with the NO_HOLES feature enabled and compression (lzo)"
143 test_btrfs_clone_fsync_log_recover "-O no-holes" "-o compress-force=lzo"
144
145 status=0
146 exit