btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / generic / 229
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 229
6 #
7 # See what happens if we CoW blocks 2-4 of a page's worth of blocks when the
8 # surrounding blocks vary between unwritten/regular/delalloc/hole.
9 #
10 # This test is dependent on the system page size, so we cannot use md5 in
11 # the golden output; we can only compare to a check file.
12 #
13 seq=`basename $0`
14 seqres=$RESULT_DIR/$seq
15 echo "QA output created by $seq"
16
17 here=`pwd`
18 tmp=/tmp/$$
19 status=1    # failure is the default!
20 trap "_cleanup; exit \$status" 0 1 2 3 15
21
22 _cleanup()
23 {
24     cd /
25     rm -rf $tmp.* $testdir
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/filter
31 . ./common/reflink
32
33 # real QA test starts here
34 _require_scratch_reflink
35 _require_xfs_io_command "falloc"
36
37 rm -f $seqres.full
38
39 pagesz=$(getconf PAGE_SIZE)
40 blksz=$((pagesz / 4))
41
42 echo "Format and mount"
43 _scratch_mkfs_blocksized $blksz > $seqres.full 2>&1
44 _scratch_mount >> $seqres.full 2>&1
45
46 testdir=$SCRATCH_MNT/test-$seq
47 mkdir $testdir
48
49 real_blksz=$(_get_file_block_size $testdir)
50 test $real_blksz != $blksz && _notrun "Failed to format with small blocksize."
51
52 runtest() {
53         echo "runtest $1 $2"
54         b2=$1
55         b4=$2
56         dir=$3
57
58         echo "Create the original files"
59         mkdir -p $dir
60         _pwrite_byte 0x61 0 $pagesz $dir/file1 >> $seqres.full
61
62         $XFS_IO_PROG -f -c "truncate $pagesz" $dir/file2 >> $seqres.full
63         $XFS_IO_PROG -f -c "truncate $pagesz" $dir/file2.chk >> $seqres.full
64
65         case $b2 in
66         "regular")
67                 _pwrite_byte 0x61 $blksz $blksz $dir/file2 >> $seqres.full
68                 _pwrite_byte 0x61 $blksz $blksz $dir/file2.chk >> $seqres.full
69                 ;;
70         "unwritten")
71                 $XFS_IO_PROG -f -c "falloc -k $blksz $blksz" $dir/file2 >> $seqres.full
72                 _pwrite_byte 0x00 $blksz $blksz $dir/file2.chk >> $seqres.full
73                 ;;
74         "hole")
75                 ;;
76         esac
77
78
79
80         case $b4 in
81         "regular")
82                 _pwrite_byte 0x61 $((blksz * 3)) $blksz $dir/file2 >> $seqres.full
83                 _pwrite_byte 0x61 $((blksz * 3)) $blksz $dir/file2.chk >> $seqres.full
84                 ;;
85         "unwritten")
86                 $XFS_IO_PROG -f -c "falloc -k $((blksz * 3)) $blksz" $dir/file2 >> $seqres.full
87                 _pwrite_byte 0x00 $((blksz * 3)) $blksz $dir/file2.chk >> $seqres.full
88                 ;;
89         "hole")
90                 ;;
91         esac
92
93         _reflink_range $dir/file1 $blksz $dir/file2 $((blksz * 2)) $blksz >> $seqres.full
94         _pwrite_byte 0x61 $((blksz * 2)) $blksz $dir/file2.chk >> $seqres.full
95         _scratch_cycle_mount
96
97         echo "Compare files"
98         ! cmp -s $dir/file1 $dir/file2 || _fail "file1 and file2 don't match."
99         cmp -s $dir/file2 $dir/file2.chk || _fail "file2 and file2.chk don't match."
100
101         echo "CoW and unmount"
102         if [ $b2 = "delalloc" ]; then
103                 _pwrite_byte 0x61 $blksz $blksz $dir/file2 >> $seqres.full
104                 _pwrite_byte 0x61 $blksz $blksz $dir/file2.chk >> $seqres.full
105         fi
106
107         if [ $b4 = "delalloc" ]; then
108                 _pwrite_byte 0x61 $((blksz * 3)) $blksz $dir/file2 >> $seqres.full
109                 _pwrite_byte 0x61 $((blksz * 3)) $blksz $dir/file2.chk >> $seqres.full
110         fi
111
112         $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) $((blksz * 3 - 34))" $dir/file2 >> $seqres.full
113         $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) $((blksz * 3 - 34))" $dir/file2.chk >> $seqres.full
114         _scratch_cycle_mount
115
116         echo "Compare files"
117         ! cmp -s $dir/file1 $dir/file2 || _fail "file1 and file2 don't match."
118         cmp -s $dir/file2 $dir/file2.chk || _fail "file2 and file2.chk don't match."
119 }
120
121 runtest regular delalloc "$testdir/r-d"
122 runtest regular unwritten "$testdir/r-u"
123 runtest regular hole "$testdir/r-h"
124 runtest regular regular "$testdir/r-r"
125
126 runtest hole delalloc "$testdir/h-d"
127 runtest hole unwritten "$testdir/h-u"
128 runtest hole hole "$testdir/h-h"
129 runtest hole regular "$testdir/h-r"
130
131 runtest unwritten delalloc "$testdir/u-d"
132 runtest unwritten unwritten "$testdir/u-u"
133 runtest unwritten hole "$testdir/u-h"
134 runtest unwritten regular "$testdir/u-r"
135
136 runtest delalloc delalloc "$testdir/d-d"
137 runtest delalloc unwritten "$testdir/d-u"
138 runtest delalloc hole "$testdir/d-h"
139 runtest delalloc regular "$testdir/d-r"
140
141 # success, all done
142 status=0
143 exit