xfs/{263,106}: erase max warnings printout
[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 . ./common/dmdust
34
35 # remove previous $seqres.full before test
36 rm -f $seqres.full
37
38 # real QA test starts here
39
40 # Modify as appropriate.
41 _supported_fs btrfs
42 _supported_os Linux
43 _require_scratch_dev_pool 2
44 _require_dm_target dust
45
46 _require_btrfs_command inspect-internal dump-tree
47 _require_command "$FILEFRAG_PROG" filefrag
48
49 _scratch_dev_pool_get 2
50 # step 1, create a raid1 btrfs which contains one 128k file.
51 echo "step 1......mkfs.btrfs" >>$seqres.full
52
53 mkfs_opts="-d raid1 -b 1G"
54 _scratch_pool_mkfs $mkfs_opts >>$seqres.full 2>&1
55
56 # -o nospace_cache makes sure data is written to the start position of the data
57 # chunk
58 _scratch_mount -o nospace_cache,nodatasum
59
60 $XFS_IO_PROG -f -d -c "pwrite -S 0xaa -b 128K 0 128K" "$SCRATCH_MNT/foobar" |\
61         _filter_xfs_io_offset
62
63 # step 2, corrupt the first 64k of stripe #1
64 echo "step 2......corrupt file extent" >>$seqres.full
65
66 ${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar >> $seqres.full
67 logical_in_btrfs=`${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar | _filter_filefrag | cut -d '#' -f 1`
68 echo "Logical offset is $logical_in_btrfs" >>$seqres.full
69 _scratch_unmount
70
71 read -r stripe physical < <(
72 $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 "$SCRATCH_DEV" |
73         grep "$logical_in_btrfs" -A 6 |
74         $AWK_PROG '$1 == "stripe" && $3 == "devid" && $4 == 1 { print $2 " " $6; exit }')
75 echo "Physical offset of stripe $stripe is $physical on devid 1" >> $seqres.full
76
77 $XFS_IO_PROG -d -c "pwrite -S 0xbb -b 64K $physical 64K" "$SCRATCH_DEV" > /dev/null
78
79 _init_dust
80 _mount_dust
81
82 # step 3, 128k dio read (this read can repair bad copy)
83 echo "step 3......repair the bad copy" >>$seqres.full
84
85 $DMSETUP_PROG message dust-test 0 addbadblock $((physical / 512))
86 $DMSETUP_PROG message dust-test 0 enable
87 while [[ -z $( (( BASHPID % 2 == stripe )) &&
88                exec $XFS_IO_PROG -d -c "pread -b 128K 0 128K" "$SCRATCH_MNT/foobar") ]]; do
89         :
90 done
91
92 _cleanup_dust
93
94 # check if the repair works
95 $XFS_IO_PROG -c "pread -v -b 512 $physical 512" "$SCRATCH_DEV" |
96         _filter_xfs_io_offset
97
98 _scratch_dev_pool_put
99 # success, all done
100 status=0
101 exit