btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / btrfs / 140
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Liu Bo.  All Rights Reserved.
4 #
5 # FS QA Test 140
6 #
7 # Regression test for btrfs DIO read's repair during read.
8 #
9 # Commit 2dabb3248453 ("Btrfs: Direct I/O read: Work on sectorsized blocks")
10 # introduced the regression.
11 # The upstream fix is
12 #       commit 2e949b0a5592 ("Btrfs: fix invalid dereference in btrfs_retry_endio")
13 #
14 seq=`basename $0`
15 seqres=$RESULT_DIR/$seq
16 echo "QA output created by $seq"
17
18 here=`pwd`
19 tmp=/tmp/$$
20 status=1        # failure is the default!
21 trap "_cleanup; exit \$status" 0 1 2 3 15
22
23 _cleanup()
24 {
25         cd /
26         rm -f $tmp.*
27 }
28
29 # get standard environment, filters and checks
30 . ./common/rc
31 . ./common/filter
32
33 # remove previous $seqres.full before test
34 rm -f $seqres.full
35
36 # real QA test starts here
37
38 # Modify as appropriate.
39 _supported_fs btrfs
40 _require_scratch_dev_pool 2
41
42 _require_btrfs_command inspect-internal dump-tree
43 _require_command "$FILEFRAG_PROG" filefrag
44 _require_odirect
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
96 echo " corrupt stripe #1, devid $devid devpath $devpath physical $physical" \
97         >> $seqres.full
98 $XFS_IO_PROG -d -c "pwrite -S 0xbb -b 64K $physical 64K" $devpath > /dev/null
99
100 _scratch_mount
101
102 # step 3, 128k dio read (this read can repair bad copy)
103 echo "step 3......repair the bad copy" >>$seqres.full
104
105 # since raid1 consists of two copies, and the bad copy was put on stripe #1
106 # while the good copy lies on stripe #0, the bad copy only gets access when the
107 # reader's pid % 2 == 1 is true
108 while true; do
109         $XFS_IO_PROG -d -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 -d -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