xfs: Check for extent overflow when trivally adding a new extent
[xfstests-dev.git] / tests / btrfs / 141
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Liu Bo.  All Rights Reserved.
4 #
5 # FS QA Test 141
6 #
7 # Regression test for btrfs buffered read's repair during read.
8 #
9 # Commit 20a7db8ab3f2 ("btrfs: add dummy callback for readpage_io_failed
10 # and drop checks") introduced the regression.
11 #
12 # The upstream fix is
13 #       Commit 9d0d1c8b1c9d ("Btrfs: bring back repair during 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 _require_scratch_dev_pool 2
42
43 _require_btrfs_command inspect-internal dump-tree
44 _require_command "$FILEFRAG_PROG" filefrag
45
46 get_physical()
47 {
48         local logical=$1
49         local stripe=$2
50         $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 $SCRATCH_DEV | \
51                 grep $logical -A 6 | \
52                 $AWK_PROG "(\$1 ~ /stripe/ && \$3 ~ /devid/ && \$2 ~ /$stripe/) { print \$6 }"
53 }
54
55 get_devid()
56 {
57         local logical=$1
58         local stripe=$2
59         $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 $SCRATCH_DEV | \
60                 grep $logical -A 6 | \
61                 $AWK_PROG "(\$1 ~ /stripe/ && \$3 ~ /devid/ && \$2 ~ /$stripe/) { print \$4 }"
62 }
63
64 get_device_path()
65 {
66         local devid=$1
67         echo "$SCRATCH_DEV_POOL" | $AWK_PROG "{print \$$devid}"
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=$(get_physical ${logical_in_btrfs} 1)
91 devid=$(get_devid ${logical_in_btrfs} 1)
92 devpath=$(get_device_path ${devid})
93
94 _scratch_unmount
95 echo " corrupt stripe #1, devid $devid devpath $devpath physical $physical" \
96         >> $seqres.full
97 $XFS_IO_PROG -d -c "pwrite -S 0xbb -b 64K $physical 64K" $devpath > /dev/null
98
99 _scratch_mount
100
101 # step 3, 128k buffered read (this read can repair bad copy)
102 echo "step 3......repair the bad copy" >>$seqres.full
103
104 # since raid1 consists of two copies, and the bad copy was put on stripe #1
105 # while the good copy lies on stripe #0, the bad copy only gets access when the
106 # reader's pid % 2 == 1 is true
107 while true; do
108         echo 3 > /proc/sys/vm/drop_caches
109         $XFS_IO_PROG -c "pread -b 128K 0 128K" "$SCRATCH_MNT/foobar" > /dev/null &
110         pid=$!
111         wait
112         [ $((pid % 2)) == 1 ] && break
113 done
114
115 _scratch_unmount
116
117 # check if the repair works
118 $XFS_IO_PROG -c "pread -v -b 512 $physical 512" $devpath |\
119         _filter_xfs_io_offset
120
121 _scratch_dev_pool_put
122 # success, all done
123 status=0
124 exit