overlay: test for whiteout inode sharing
[xfstests-dev.git] / tests / btrfs / 142
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Liu Bo.  All Rights Reserved.
4 #
5 # FS QA Test 142
6 #
7 # Regression test for btrfs DIO read's repair during read without checksum.
8 #
9 # Commit 2dabb3248453 ("Btrfs: Direct I/O read: Work on sectorsized blocks")
10 # introduced this regression.  It'd cause 'Segmentation fault' error.
11 #
12 # The upstream fix is
13 #       commit 97bf5a5589aa ("Btrfs: fix segmentation fault when doing dio read")
14 #
15 seq=`basename $0`
16 seqres=$RESULT_DIR/$seq
17 echo "QA output created by $seq"
18
19 here=`pwd`
20 tmp=/tmp/$$
21 status=1        # failure is the default!
22 trap "_cleanup; exit \$status" 0 1 2 3 15
23
24 _cleanup()
25 {
26         cd /
27         rm -f $tmp.*
28 }
29
30 # get standard environment, filters and checks
31 . ./common/rc
32 . ./common/filter
33
34 # remove previous $seqres.full before test
35 rm -f $seqres.full
36
37 # real QA test starts here
38
39 # Modify as appropriate.
40 _supported_fs btrfs
41 _supported_os Linux
42 _require_fail_make_request
43 _require_scratch_dev_pool 2
44
45 _require_btrfs_command inspect-internal dump-tree
46 _require_command "$FILEFRAG_PROG" filefrag
47
48 get_physical()
49 {
50         local logical=$1
51         local stripe=$2
52         $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 $SCRATCH_DEV | \
53                 grep $logical -A 6 | \
54                 $AWK_PROG "(\$1 ~ /stripe/ && \$3 ~ /devid/ && \$2 ~ /$stripe/) { print \$6 }"
55 }
56
57 get_devid()
58 {
59         local logical=$1
60         local stripe=$2
61         $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 $SCRATCH_DEV | \
62                 grep $logical -A 6 | \
63                 $AWK_PROG "(\$1 ~ /stripe/ && \$3 ~ /devid/ && \$2 ~ /$stripe/) { print \$4 }"
64 }
65
66 get_device_path()
67 {
68         local devid=$1
69         echo "$SCRATCH_DEV_POOL" | $AWK_PROG "{print \$$devid}"
70 }
71
72 start_fail()
73 {
74         local sysfs_bdev="$1"
75         echo 100 > $DEBUGFS_MNT/fail_make_request/probability
76         echo 2 > $DEBUGFS_MNT/fail_make_request/times
77         echo 1 > $DEBUGFS_MNT/fail_make_request/task-filter
78         echo 0 > $DEBUGFS_MNT/fail_make_request/verbose
79         echo 1 > $sysfs_bdev/make-it-fail
80 }
81
82 stop_fail()
83 {
84         local sysfs_bdev="$1"
85         echo 0 > $DEBUGFS_MNT/fail_make_request/probability
86         echo 0 > $DEBUGFS_MNT/fail_make_request/times
87         echo 0 > $DEBUGFS_MNT/fail_make_request/task-filter
88         echo 0 > $sysfs_bdev/make-it-fail
89 }
90
91 _scratch_dev_pool_get 2
92 # step 1, create a raid1 btrfs which contains one 128k file.
93 echo "step 1......mkfs.btrfs" >>$seqres.full
94
95 mkfs_opts="-d raid1 -b 1G"
96 _scratch_pool_mkfs $mkfs_opts >>$seqres.full 2>&1
97
98 # -o nospace_cache makes sure data is written to the start position of the data
99 # chunk
100 _scratch_mount -o nospace_cache,nodatasum
101
102 $XFS_IO_PROG -f -d -c "pwrite -S 0xaa -b 128K 0 128K" "$SCRATCH_MNT/foobar" |\
103         _filter_xfs_io_offset
104
105 # step 2, corrupt the first 64k of stripe #1
106 echo "step 2......corrupt file extent" >>$seqres.full
107
108 ${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar >> $seqres.full
109 logical_in_btrfs=`${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar | _filter_filefrag | cut -d '#' -f 1`
110 physical=`get_physical ${logical_in_btrfs} 1`
111 devid=$(get_devid ${logical_in_btrfs} 1)
112 target_dev=$(get_device_path $devid)
113
114 SYSFS_BDEV=`_sysfs_dev $target_dev`
115
116 _scratch_unmount
117 $BTRFS_UTIL_PROG ins dump-tree -t 3 $SCRATCH_DEV | \
118         grep $logical_in_btrfs -A 6 >> $seqres.full
119 echo "Corrupt stripe 1 devid $devid devpath $target_dev physical $physical" \
120         >> $seqres.full
121 $XFS_IO_PROG -d -c "pwrite -S 0xbb -b 64K $physical 64K" $target_dev > /dev/null
122
123 _scratch_mount -o nospace_cache
124
125 # step 3, 128k dio read (this read can repair bad copy)
126 echo "step 3......repair the bad copy" >>$seqres.full
127
128 # since raid1 consists of two copies, and the bad copy was put on stripe #1
129 # while the good copy lies on stripe #0, the bad copy only gets access when the
130 start_fail $SYSFS_BDEV
131 while [[ -z ${result} ]]; do
132         # enable task-filter only fails the following dio read so the repair is
133         # supposed to work.
134         result=$(bash -c "
135         if [[ \$((\$\$ % 2)) -eq 1 ]]; then
136                 echo 1 > /proc/\$\$/make-it-fail
137                 exec $XFS_IO_PROG -d -c \"pread -b 128K 0 128K\" \"$SCRATCH_MNT/foobar\"
138         fi");
139 done
140 stop_fail $SYSFS_BDEV
141
142 _scratch_unmount
143
144 # check if the repair works
145 $XFS_IO_PROG -c "pread -v -b 512 $physical 512" $target_dev | \
146         _filter_xfs_io_offset
147
148 _scratch_dev_pool_put
149 # success, all done
150 status=0
151 exit