btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / generic / 543
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. 543
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_fs generic
41 _require_scratch_reflink
42 _require_xfs_io_command "falloc"
43
44 rm -f $seqres.full
45
46 echo "Format and mount"
47 _scratch_mkfs > $seqres.full 2>&1
48 _scratch_mount >> $seqres.full 2>&1
49
50 testdir=$SCRATCH_MNT/test-$seq
51 mkdir $testdir
52
53 echo "Create the original files"
54 blksz=65536
55 nr=64
56 filesize=$((blksz * nr))
57 _pwrite_byte 0x64 0 $((blksz * nr)) $testdir/file2 >> $seqres.full
58 _pwrite_byte 0x64 0 $((blksz * nr)) $testdir/file2.chk >> $seqres.full
59 _weave_reflink_rainbow $blksz $nr $testdir/file1 $testdir/file3 >> $seqres.full
60 _scratch_cycle_mount
61
62 echo "Compare files"
63 md5sum $testdir/file1 | _filter_scratch
64 md5sum $testdir/file2 | _filter_scratch
65 md5sum $testdir/file2.chk | _filter_scratch
66 md5sum $testdir/file3 | _filter_scratch
67 md5sum $testdir/file3.chk | _filter_scratch
68
69 echo "reflink across the transition"
70 soff=$((filesize / 4))
71 doff=$((filesize / 2))
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 $soff $doff $rsz" $testdir/file2 >> $seqres.full
80 $XFS_IO_PROG -c "truncate $doff" $testdir/file2.chk
81 dd if=$testdir/file3.chk skip=$((soff / blksz)) count=$((rsz / blksz)) bs=$blksz >> $testdir/file2.chk 2> /dev/null
82 _scratch_cycle_mount
83
84 echo "Compare files"
85 echo "after reflink" >> $seqres.full
86 $FILEFRAG_PROG -v $testdir/file2 >> $seqres.full 2>&1
87 $FILEFRAG_PROG -v $testdir/file3 >> $seqres.full 2>&1
88 md5sum $testdir/file1 | _filter_scratch
89 md5sum $testdir/file2 | _filter_scratch
90 md5sum $testdir/file2.chk | _filter_scratch
91 md5sum $testdir/file3 | _filter_scratch
92 md5sum $testdir/file3.chk | _filter_scratch
93
94 # success, all done
95 status=0
96 exit