reflink: ensure that we can handle reflinking a lot of extents
[xfstests-dev.git] / tests / generic / 167
1 #! /bin/bash
2 # FS QA Test No. 167
3 #
4 # Test for races or FS corruption when writing to a file that's also
5 # the source of a reflink operation.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2015 Oracle, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 7 15
33
34 _cleanup()
35 {
36     cd /
37     rm -rf $tmp.*
38     wait
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44 . ./common/reflink
45
46 # real QA test starts here
47 _supported_os Linux
48 _require_scratch_reflink
49 _require_cp_reflink
50
51 echo "Format and mount"
52 _scratch_mkfs > $seqres.full 2>&1
53 _scratch_mount >> $seqres.full 2>&1
54
55 testdir=$SCRATCH_MNT/test-$seq
56 mkdir $testdir
57
58 loops=1024
59 nr_loops=$((loops - 1))
60 blksz=65536
61
62 echo "Initialize file"
63 echo > $seqres.full
64 _pwrite_byte 0x61 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
65 _scratch_remount
66
67 # Snapshot creator...
68 snappy() {
69         n=0
70         while [ ! -e $testdir/finished ]; do
71                 _cp_reflink $testdir/file1 $testdir/snap_$n || break
72                 n=$((n + 1))
73         done
74 }
75
76 echo "Snapshot a file undergoing buffered rewrite"
77 snappy &
78 seq $nr_loops -1 0 | while read i; do
79         _pwrite_byte 0x63 $((i * blksz)) $blksz $testdir/file1 >> $seqres.full
80 done
81 touch $testdir/finished
82 wait
83
84 # success, all done
85 status=0
86 exit