btrfs: Verify falloc on multiple holes won't leak qgroup reserved data space
[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 _supported_os Linux
42 _require_scratch_dev_pool 2
43
44 _require_btrfs_command inspect-internal dump-tree
45 _require_command "$FILEFRAG_PROG" filefrag
46
47 get_physical()
48 {
49         # $1 is logical address
50         # print chunk tree and find devid 2 which is $SCRATCH_DEV
51         $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 $SCRATCH_DEV | \
52         grep $1 -A 6 | awk '($1 ~ /stripe/ && $3 ~ /devid/ && $4 ~ /1/) { print $6 }'
53 }
54
55 _scratch_dev_pool_get 2
56 # step 1, create a raid1 btrfs which contains one 128k file.
57 echo "step 1......mkfs.btrfs" >>$seqres.full
58
59 mkfs_opts="-d raid1 -b 1G"
60 _scratch_pool_mkfs $mkfs_opts >>$seqres.full 2>&1
61
62 # -o nospace_cache makes sure data is written to the start position of the data
63 # chunk
64 _scratch_mount -o nospace_cache
65
66 $XFS_IO_PROG -f -d -c "pwrite -S 0xaa -b 128K 0 128K" "$SCRATCH_MNT/foobar" |\
67         _filter_xfs_io_offset
68
69 # step 2, corrupt the first 64k of one copy (on SCRATCH_DEV which is the first
70 # one in $SCRATCH_DEV_POOL
71 echo "step 2......corrupt file extent" >>$seqres.full
72
73 ${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar >> $seqres.full
74 logical_in_btrfs=`${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar | _filter_filefrag | cut -d '#' -f 1`
75 physical_on_scratch=`get_physical ${logical_in_btrfs}`
76
77 _scratch_unmount
78 $XFS_IO_PROG -d -c "pwrite -S 0xbb -b 64K $physical_on_scratch 64K" $SCRATCH_DEV |\
79         _filter_xfs_io_offset
80
81 _scratch_mount
82
83 # step 3, 128k buffered read (this read can repair bad copy)
84 echo "step 3......repair the bad copy" >>$seqres.full
85
86 # since raid1 consists of two copies, and the bad copy was put on stripe #1
87 # while the good copy lies on stripe #0, the bad copy only gets access when the
88 # reader's pid % 2 == 1 is true
89 while true; do
90         echo 3 > /proc/sys/vm/drop_caches
91         $XFS_IO_PROG -c "pread -b 128K 0 128K" "$SCRATCH_MNT/foobar" > /dev/null &
92         pid=$!
93         wait
94         [ $((pid % 2)) == 1 ] && break
95 done
96
97 _scratch_unmount
98
99 # check if the repair works
100 $XFS_IO_PROG -c "pread -v -b 512 $physical_on_scratch 512" $SCRATCH_DEV |\
101         _filter_xfs_io_offset
102
103 _scratch_dev_pool_put
104 # success, all done
105 status=0
106 exit