btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / btrfs / 111
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2015 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FS QA Test No. btrfs/111
6 #
7 # Test that resending snapshots from a different filesystem is possible for
8 # both full and incremental send operations.
9 #
10 seq=`basename $0`
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
13
14 tmp=/tmp/$$
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 -fr $send_files_dir
22         rm -f $tmp.*
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28
29 # real QA test starts here
30 _supported_fs btrfs
31 _require_scratch
32
33 send_files_dir=$TEST_DIR/btrfs-test-$seq
34
35 rm -f $seqres.full
36 rm -fr $send_files_dir
37 mkdir $send_files_dir
38
39 _scratch_mkfs >>$seqres.full 2>&1
40 _scratch_mount
41
42 # Create a test file
43 $XFS_IO_PROG -f -c "pwrite -S 0xaa 0K 32K" $SCRATCH_MNT/foo | _filter_xfs_io
44
45 # Create the first snapshot.
46 _run_btrfs_util_prog subvolume snapshot -r $SCRATCH_MNT $SCRATCH_MNT/snap1
47
48 # Modify our file and create the second snapshot, used later for an incremental
49 # send operation.
50 $XFS_IO_PROG -c "pwrite -S 0xbb 4K 4K" $SCRATCH_MNT/foo | _filter_xfs_io
51
52 _run_btrfs_util_prog subvolume snapshot -r $SCRATCH_MNT $SCRATCH_MNT/snap2
53
54 echo "File digests in the first filesystem:"
55 md5sum $SCRATCH_MNT/snap1/foo | _filter_scratch
56 md5sum $SCRATCH_MNT/snap2/foo | _filter_scratch
57
58 # Save send streams for the snapshots. For the first one we use a full send
59 # operation and the for the second snapshot we use an incremental send.
60 _run_btrfs_util_prog send -f $send_files_dir/1.snap $SCRATCH_MNT/snap1
61 _run_btrfs_util_prog send -p $SCRATCH_MNT/snap1 -f $send_files_dir/2.snap \
62         $SCRATCH_MNT/snap2
63
64 # Create a new filesystem and receive the snapshots.
65 _scratch_unmount
66 _scratch_mkfs >>$seqres.full 2>&1
67 _scratch_mount
68
69 _run_btrfs_util_prog receive -vv -f $send_files_dir/1.snap $SCRATCH_MNT
70 _run_btrfs_util_prog receive -vv -f $send_files_dir/2.snap $SCRATCH_MNT
71
72 echo "File digests in the second filesystem:"
73 # Must match the digests we got in the first filesystem.
74 md5sum $SCRATCH_MNT/snap1/foo | _filter_scratch
75 md5sum $SCRATCH_MNT/snap2/foo | _filter_scratch
76
77 # Call sync to flush all delalloc data that the receiver processes created.
78 # Although 'btrfs receive' at the end calls a btrfs specific ioctl to change
79 # the snapshot from RW mode to RO mode, which commits the current btrfs
80 # transaction, the dealalloc data is not flushed, as the transaction commit
81 # intentionally does not do it unless the fs is mounted with '-o flushoncommit'.
82 # This is a detail that should probably be addressed either in the btrfs ioctls
83 # called by 'btrfs receive' or in the tools - our test has a different purpose,
84 # so we get around this by calling 'sync' to make sure all delalloc data is
85 # durably persisted and the respective file extent items are added to the
86 # snapshot's btree.
87 sync
88
89 # Now create send streams for the snapshots from this new filesystem. For the
90 # first snapshot we do a full send while for the second snapshot we do an
91 # incremental send.
92 _run_btrfs_util_prog send -f $send_files_dir/1_2.snap $SCRATCH_MNT/snap1
93 _run_btrfs_util_prog send -p $SCRATCH_MNT/snap1 -f $send_files_dir/2_2.snap \
94         $SCRATCH_MNT/snap2
95
96 # Create a new filesystem and receive the send streams we just created from the
97 # second filesystem. This worked until the linux kernel 4.2, where a regression
98 # was introduced. The problem was that the send stream included an incorrect
99 # value for the uuid field, which matched a snapshot's uuid (which is different
100 # on each filesystem) instead of the snapshot's received_uuid value (which is
101 # preserved across different filesystems).
102 _scratch_unmount
103 _scratch_mkfs >>$seqres.full 2>&1
104 _scratch_mount
105
106 _run_btrfs_util_prog receive -vv -f $send_files_dir/1_2.snap $SCRATCH_MNT
107 _run_btrfs_util_prog receive -vv -f $send_files_dir/2_2.snap $SCRATCH_MNT
108
109 echo "File digests in the third filesystem:"
110 # Must match the digests we got in the first and second filesystems.
111 md5sum $SCRATCH_MNT/snap1/foo | _filter_scratch
112 md5sum $SCRATCH_MNT/snap2/foo | _filter_scratch
113
114 status=0
115 exit