generic/405: test mkfs against thin provision device
[xfstests-dev.git] / tests / generic / 164
1 #! /bin/bash
2 # FS QA Test No. 164
3 #
4 # Test for races or FS corruption between reflink and buffered I/O reading the
5 # target file.
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.* $finished_file
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 finished_file=/tmp/finished
57 rm -rf $finished_file
58 mkdir $testdir
59
60 loops=512
61 nr_loops=$((loops - 1))
62 blksz=65536
63
64 echo "Initialize files"
65 echo >> $seqres.full
66 _pwrite_byte 0x61 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
67 _pwrite_byte 0x62 0 $((loops * blksz)) $testdir/file2 >> $seqres.full
68 _cp_reflink $testdir/file1 $testdir/file3
69 _scratch_cycle_mount
70
71 fbytes() {
72         egrep -v '(61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61|62 62 62 62 62 62 62 62 62 62 62 62 62 62 62 62)'
73 }
74
75 reader() {
76         while [ ! -e $finished_file ]; do
77                 _read_range $testdir/file3 0 $((loops * blksz)) | fbytes
78         done
79 }
80
81 echo "Reflink and reread the files!"
82 reader &
83 for i in `seq 1 2`; do
84         seq $nr_loops -1 0 | while read i; do
85                 _reflink_range  $testdir/file1 $((i * blksz)) \
86                                 $testdir/file3 $((i * blksz)) $blksz >> $seqres.full
87                 [ $? -ne 0 ] && break
88         done
89         seq $nr_loops -1 0 | while read i; do
90                 _reflink_range  $testdir/file2 $((i * blksz)) \
91                                 $testdir/file3 $((i * blksz)) $blksz >> $seqres.full
92                 [ $? -ne 0 ] && break
93         done
94 done
95 echo "Finished reflinking"
96 touch $finished_file
97 wait
98
99 # success, all done
100 status=0
101 exit