cf5751e544a750d28146f79cc490b004fd9c8081
[xfstests-dev.git] / tests / btrfs / 140
1 #! /bin/bash
2 # FS QA Test 140
3 #
4 # Regression test for btrfs DIO read's repair during read.
5 #
6 # Commit 2dabb3248453 ("Btrfs: Direct I/O read: Work on sectorsized blocks")
7 # introduced the regression.
8 # The upstream fix is
9 #       commit 2e949b0a5592 ("Btrfs: fix invalid dereference in btrfs_retry_endio")
10 #
11 #-----------------------------------------------------------------------
12 # Copyright (c) 2017 Liu Bo.  All Rights Reserved.
13 #
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License as
16 # published by the Free Software Foundation.
17 #
18 # This program is distributed in the hope that it would be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write the Free Software Foundation,
25 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26 #-----------------------------------------------------------------------
27 #
28
29 seq=`basename $0`
30 seqres=$RESULT_DIR/$seq
31 echo "QA output created by $seq"
32
33 here=`pwd`
34 tmp=/tmp/$$
35 status=1        # failure is the default!
36 trap "_cleanup; exit \$status" 0 1 2 3 15
37
38 _cleanup()
39 {
40         cd /
41         rm -f $tmp.*
42 }
43
44 # get standard environment, filters and checks
45 . ./common/rc
46 . ./common/filter
47
48 # remove previous $seqres.full before test
49 rm -f $seqres.full
50
51 # real QA test starts here
52
53 # Modify as appropriate.
54 _supported_fs btrfs
55 _supported_os Linux
56 _require_scratch_dev_pool 2
57
58 _require_btrfs_command inspect-internal dump-tree
59 _require_command "$FILEFRAG_PROG" filefrag
60 _require_odirect
61
62 get_physical()
63 {
64         # $1 is logical address
65         # print chunk tree and find devid 2 which is $SCRATCH_DEV
66         $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 $SCRATCH_DEV | \
67         grep $1 -A 6 | awk '($1 ~ /stripe/ && $3 ~ /devid/ && $4 ~ /1/) { print $6 }'
68 }
69
70 _scratch_dev_pool_get 2
71 # step 1, create a raid1 btrfs which contains one 128k file.
72 echo "step 1......mkfs.btrfs" >>$seqres.full
73
74 mkfs_opts="-d raid1 -b 1G"
75 _scratch_pool_mkfs $mkfs_opts >>$seqres.full 2>&1
76
77 # -o nospace_cache makes sure data is written to the start position of the data
78 # chunk
79 _scratch_mount -o nospace_cache
80
81 $XFS_IO_PROG -f -d -c "pwrite -S 0xaa -b 128K 0 128K" "$SCRATCH_MNT/foobar" |\
82         _filter_xfs_io_offset
83
84 # step 2, corrupt the first 64k of one copy (on SCRATCH_DEV which is the first
85 # one in $SCRATCH_DEV_POOL
86 echo "step 2......corrupt file extent" >>$seqres.full
87
88 ${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar >> $seqres.full
89 logical_in_btrfs=`${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar | _filter_filefrag | cut -d '#' -f 1`
90 physical_on_scratch=`get_physical ${logical_in_btrfs}`
91
92 _scratch_unmount
93 $XFS_IO_PROG -d -c "pwrite -S 0xbb -b 64K $physical_on_scratch 64K" $SCRATCH_DEV |\
94         _filter_xfs_io_offset
95
96 _scratch_mount
97
98 # step 3, 128k dio read (this read can repair bad copy)
99 echo "step 3......repair the bad copy" >>$seqres.full
100
101 # since raid1 consists of two copies, and the bad copy was put on stripe #1
102 # while the good copy lies on stripe #0, the bad copy only gets access when the
103 # reader's pid % 2 == 1 is true
104 while true; do
105         $XFS_IO_PROG -d -c "pread -b 128K 0 128K" "$SCRATCH_MNT/foobar" > /dev/null &
106         pid=$!
107         wait
108         [ $((pid % 2)) == 1 ] && break
109 done
110
111 _scratch_unmount
112
113 # check if the repair works
114 $XFS_IO_PROG -d -c "pread -v -b 512 $physical_on_scratch 512" $SCRATCH_DEV |\
115         _filter_xfs_io_offset
116
117 _scratch_dev_pool_put
118 # success, all done
119 status=0
120 exit