generic: test for non-zero used blocks while writing into a file
[xfstests-dev.git] / tests / btrfs / 222
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2020 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FS QA Test No. btrfs/222
6 #
7 # Test an incremental send operation after doing a series of changes in a tree
8 # such that one inode gets two hardlinks with names and locations swapped with
9 # two other inodes that correspond to different directories, and one of these
10 # directories is the parent of the other directory.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 tmp=/tmp/$$
17 status=1        # failure is the default!
18 trap "_cleanup; exit \$status" 0 1 2 3 15
19
20 _cleanup()
21 {
22         cd /
23         rm -fr $send_files_dir
24         rm -f $tmp.*
25 }
26
27 # get standard environment, filters and checks
28 . ./common/rc
29 . ./common/filter
30
31 # real QA test starts here
32 _supported_fs btrfs
33 _require_test
34 _require_scratch
35 _require_fssum
36
37 send_files_dir=$TEST_DIR/btrfs-test-$seq
38
39 rm -f $seqres.full
40 rm -fr $send_files_dir
41 mkdir $send_files_dir
42
43 _scratch_mkfs >>$seqres.full 2>&1
44 _scratch_mount
45
46 touch $SCRATCH_MNT/f1
47 touch $SCRATCH_MNT/f2
48 mkdir $SCRATCH_MNT/d1
49 mkdir $SCRATCH_MNT/d1/d2
50
51 # Filesystem looks like:
52 #
53 # .                                     (ino 256)
54 # |----- f1                             (ino 257)
55 # |----- f2                             (ino 258)
56 # |----- d1/                            (ino 259)
57 #        |----- d2/                     (ino 260)
58 #
59 $BTRFS_UTIL_PROG subvolume snapshot -r $SCRATCH_MNT \
60         $SCRATCH_MNT/mysnap1 > /dev/null
61
62 $BTRFS_UTIL_PROG send -f $send_files_dir/1.snap \
63         $SCRATCH_MNT/mysnap1 2>&1 1>/dev/null | _filter_scratch
64
65 # Now do a series of changes such that:
66 #
67 # *) inode 258 has one new hardlink and the previous name changed
68 #
69 # *) both names conflict with the old names of two other inodes:
70 #
71 #    1) the new name "d1" conflicts with the old name of inode 259, under
72 #       directory inode 256 (root)
73 #
74 #    2) the new name "d2" conflicts with the old name of inode 260 under
75 #       directory inode 259
76 #
77 # *) inodes 259 and 260 now have the old names of inode 258
78 #
79 # *) inode 257 is now located under inode 260 - an inode with a number
80 #    smaller than the inode (258) for which we created a second hard link
81 #    and swapped its names with inodes 259 and 260
82 #
83 ln $SCRATCH_MNT/f2 $SCRATCH_MNT/d1/f2_link
84 mv $SCRATCH_MNT/f1 $SCRATCH_MNT/d1/d2/f1
85
86 # Swap d1 and f2.
87 mv $SCRATCH_MNT/d1 $SCRATCH_MNT/tmp
88 mv $SCRATCH_MNT/f2 $SCRATCH_MNT/d1
89 mv $SCRATCH_MNT/tmp $SCRATCH_MNT/f2
90
91 # Swap d2 and f2_link
92 mv $SCRATCH_MNT/f2/d2 $SCRATCH_MNT/tmp
93 mv $SCRATCH_MNT/f2/f2_link $SCRATCH_MNT/f2/d2
94 mv $SCRATCH_MNT/tmp $SCRATCH_MNT/f2/f2_link
95
96 # Filesystem now looks like:
97 #
98 # .                                     (ino 256)
99 # |----- d1                             (ino 258)
100 # |----- f2/                            (ino 259)
101 #        |----- f2_link/                (ino 260)
102 #        |       |----- f1              (ino 257)
103 #        |
104 #        |----- d2                      (ino 258)
105 #
106
107 $BTRFS_UTIL_PROG subvolume snapshot -r $SCRATCH_MNT \
108                  $SCRATCH_MNT/mysnap2 > /dev/null
109 $BTRFS_UTIL_PROG send -p $SCRATCH_MNT/mysnap1 -f $send_files_dir/2.snap \
110                  $SCRATCH_MNT/mysnap2 2>&1 1>/dev/null | _filter_scratch
111
112 $FSSUM_PROG -A -f -w $send_files_dir/1.fssum $SCRATCH_MNT/mysnap1
113 $FSSUM_PROG -A -f -w $send_files_dir/2.fssum \
114         -x $SCRATCH_MNT/mysnap2/mysnap1 $SCRATCH_MNT/mysnap2
115
116 # Now recreate the filesystem by receiving both send streams and verify we get
117 # the same content that the original filesystem had.
118 _scratch_unmount
119 _scratch_mkfs >>$seqres.full 2>&1
120 _scratch_mount
121
122 $BTRFS_UTIL_PROG receive -f $send_files_dir/1.snap $SCRATCH_MNT > /dev/null
123
124 # The receive operation below used to fail with the following error:
125 #
126 #    ERROR: rename d1/d2 -> o260-6-0 failed: No such file or directory
127 #
128 # Because when processing inode 258, the kernel orphanized first inode 259,
129 # renaming it from "d1" to "o259-6-0", since it the new reference named "d1"
130 # for inode 258 conflicts with the old one of inode 259, which was not yet
131 # processed. After that, because the new reference named "d2" for inode 258
132 # conflicts with the old reference of the not yet processed inode 260, it
133 # tried to orphanize inode 260 - however the corresponding rename operation
134 # used a source path of "d1/d2", instead of "o259-6-0/d2".
135 #
136 $BTRFS_UTIL_PROG receive -f $send_files_dir/2.snap $SCRATCH_MNT > /dev/null
137
138 $FSSUM_PROG -r $send_files_dir/1.fssum $SCRATCH_MNT/mysnap1
139 $FSSUM_PROG -r $send_files_dir/2.fssum $SCRATCH_MNT/mysnap2
140
141 status=0
142 exit