btrfs: fsync after hole punching with no-holes mode
[xfstests-dev.git] / tests / btrfs / 111
1 #! /bin/bash
2 # FS QA Test No. btrfs/111
3 #
4 # Test that resending snapshots from a different filesystem is possible for
5 # both full and incremental send operations.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (C) 2015 SUSE Linux Products GmbH. All Rights Reserved.
9 # Author: Filipe Manana <fdmanana@suse.com>
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33
34 _cleanup()
35 {
36         cd /
37         rm -fr $send_files_dir
38         rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44
45 # real QA test starts here
46 _supported_fs btrfs
47 _supported_os Linux
48 _require_scratch
49
50 send_files_dir=$TEST_DIR/btrfs-test-$seq
51
52 rm -f $seqres.full
53 rm -fr $send_files_dir
54 mkdir $send_files_dir
55
56 _scratch_mkfs >>$seqres.full 2>&1
57 _scratch_mount
58
59 # Create a test file
60 $XFS_IO_PROG -f -c "pwrite -S 0xaa 0K 32K" $SCRATCH_MNT/foo | _filter_xfs_io
61
62 # Create the first snapshot.
63 _run_btrfs_util_prog subvolume snapshot -r $SCRATCH_MNT $SCRATCH_MNT/snap1
64
65 # Modify our file and create the second snapshot, used later for an incremental
66 # send operation.
67 $XFS_IO_PROG -c "pwrite -S 0xbb 4K 4K" $SCRATCH_MNT/foo | _filter_xfs_io
68
69 _run_btrfs_util_prog subvolume snapshot -r $SCRATCH_MNT $SCRATCH_MNT/snap2
70
71 echo "File digests in the first filesystem:"
72 md5sum $SCRATCH_MNT/snap1/foo | _filter_scratch
73 md5sum $SCRATCH_MNT/snap2/foo | _filter_scratch
74
75 # Save send streams for the snapshots. For the first one we use a full send
76 # operation and the for the second snapshot we use an incremental send.
77 _run_btrfs_util_prog send -f $send_files_dir/1.snap $SCRATCH_MNT/snap1
78 _run_btrfs_util_prog send -p $SCRATCH_MNT/snap1 -f $send_files_dir/2.snap \
79         $SCRATCH_MNT/snap2
80
81 # Create a new filesystem and receive the snapshots.
82 _scratch_unmount
83 _scratch_mkfs >>$seqres.full 2>&1
84 _scratch_mount
85
86 _run_btrfs_util_prog receive -vv -f $send_files_dir/1.snap $SCRATCH_MNT
87 _run_btrfs_util_prog receive -vv -f $send_files_dir/2.snap $SCRATCH_MNT
88
89 echo "File digests in the second filesystem:"
90 # Must match the digests we got in the first filesystem.
91 md5sum $SCRATCH_MNT/snap1/foo | _filter_scratch
92 md5sum $SCRATCH_MNT/snap2/foo | _filter_scratch
93
94 # Call sync to flush all delalloc data that the receiver processes created.
95 # Although 'btrfs receive' at the end calls a btrfs specific ioctl to change
96 # the snapshot from RW mode to RO mode, which commits the current btrfs
97 # transaction, the dealalloc data is not flushed, as the transaction commit
98 # intentionally does not do it unless the fs is mounted with '-o flushoncommit'.
99 # This is a detail that should probably be addressed either in the btrfs ioctls
100 # called by 'btrfs receive' or in the tools - our test has a different purpose,
101 # so we get around this by calling 'sync' to make sure all delalloc data is
102 # durably persisted and the respective file extent items are added to the
103 # snapshot's btree.
104 sync
105
106 # Now create send streams for the snapshots from this new filesystem. For the
107 # first snapshot we do a full send while for the second snapshot we do an
108 # incremental send.
109 _run_btrfs_util_prog send -f $send_files_dir/1_2.snap $SCRATCH_MNT/snap1
110 _run_btrfs_util_prog send -p $SCRATCH_MNT/snap1 -f $send_files_dir/2_2.snap \
111         $SCRATCH_MNT/snap2
112
113 # Create a new filesystem and receive the send streams we just created from the
114 # second filesystem. This worked until the linux kernel 4.2, where a regression
115 # was introduced. The problem was that the send stream included an incorrect
116 # value for the uuid field, which matched a snapshot's uuid (which is different
117 # on each filesystem) instead of the snapshot's received_uuid value (which is
118 # preserved across different filesystems).
119 _scratch_unmount
120 _scratch_mkfs >>$seqres.full 2>&1
121 _scratch_mount
122
123 _run_btrfs_util_prog receive -vv -f $send_files_dir/1_2.snap $SCRATCH_MNT
124 _run_btrfs_util_prog receive -vv -f $send_files_dir/2_2.snap $SCRATCH_MNT
125
126 echo "File digests in the third filesystem:"
127 # Must match the digests we got in the first and second filesystems.
128 md5sum $SCRATCH_MNT/snap1/foo | _filter_scratch
129 md5sum $SCRATCH_MNT/snap2/foo | _filter_scratch
130
131 status=0
132 exit