generic: copy_file_range swapfile test
[xfstests-dev.git] / tests / generic / 541
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0+
3 # Copyright (c) 2019, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 541
6 #
7 # Ensuring that reflinking works when the source range covers multiple
8 # extents, some unwritten, some not:
9 #
10 #   - Create a file with the following repeating sequence of blocks:
11 #     1. reflinked
12 #     2. unwritten
13 #     3. hole
14 #     4. regular block
15 #     5. delalloc
16 #   - reflink across the halfway mark, starting with the unwritten extent.
17 #   - Check that the files are now different where we say they're different.
18 #
19 seq=`basename $0`
20 seqres=$RESULT_DIR/$seq
21 echo "QA output created by $seq"
22
23 here=`pwd`
24 tmp=/tmp/$$
25 status=1    # failure is the default!
26 trap "_cleanup; exit \$status" 0 1 2 3 15
27
28 _cleanup()
29 {
30         cd /
31         rm -rf $tmp.*
32 }
33
34 # get standard environment, filters and checks
35 . ./common/rc
36 . ./common/filter
37 . ./common/reflink
38
39 # real QA test starts here
40 _supported_os Linux
41 _supported_fs generic
42 _require_scratch_reflink
43 _require_xfs_io_command "falloc"
44
45 rm -f $seqres.full
46
47 echo "Format and mount"
48 _scratch_mkfs > $seqres.full 2>&1
49 _scratch_mount >> $seqres.full 2>&1
50
51 testdir=$SCRATCH_MNT/test-$seq
52 mkdir $testdir
53
54 echo "Create the original files"
55 blksz=65536
56 nr=64
57 filesize=$((blksz * nr))
58 _pwrite_byte 0x64 0 $((blksz * nr)) $testdir/file2 >> $seqres.full
59 _pwrite_byte 0x64 0 $((blksz * nr)) $testdir/file2.chk >> $seqres.full
60 _weave_reflink_rainbow $blksz $nr $testdir/file1 $testdir/file3 >> $seqres.full
61 _scratch_cycle_mount
62
63 echo "Compare files"
64 md5sum $testdir/file1 | _filter_scratch
65 md5sum $testdir/file2 | _filter_scratch
66 md5sum $testdir/file2.chk | _filter_scratch
67 md5sum $testdir/file3 | _filter_scratch
68 md5sum $testdir/file3.chk | _filter_scratch
69
70 echo "reflink across the transition"
71 roff=$((filesize / 4))
72 rsz=$((filesize / 2))
73 _weave_reflink_rainbow_delalloc $blksz $nr $testdir/file3 >> $seqres.full
74
75 # now reflink the rainbow
76 echo "before reflink" >> $seqres.full
77 $FILEFRAG_PROG -v $testdir/file2 >> $seqres.full 2>&1
78 $FILEFRAG_PROG -v $testdir/file3 >> $seqres.full 2>&1
79 $XFS_IO_PROG -f -c "reflink $testdir/file3 $roff $roff $rsz" $testdir/file2 >> $seqres.full
80 cp $testdir/file3.chk $testdir/file2.chk
81 _pwrite_byte 0x64 0 $roff $testdir/file2.chk >> $seqres.full
82 _pwrite_byte 0x64 $((roff + rsz)) $((filesize - (roff + rsz) )) $testdir/file2.chk >> $seqres.full
83 _scratch_cycle_mount
84
85 echo "Compare files"
86 echo "after reflink" >> $seqres.full
87 $FILEFRAG_PROG -v $testdir/file2 >> $seqres.full 2>&1
88 $FILEFRAG_PROG -v $testdir/file3 >> $seqres.full 2>&1
89 md5sum $testdir/file1 | _filter_scratch
90 md5sum $testdir/file2 | _filter_scratch
91 md5sum $testdir/file2.chk | _filter_scratch
92 md5sum $testdir/file3 | _filter_scratch
93 md5sum $testdir/file3.chk | _filter_scratch
94
95 # success, all done
96 status=0
97 exit