generic: test MADV_POPULATE_READ with IO errors
[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 . ./common/preamble
16 _begin_fstest auto quick
17
18 # Import common functions.
19 . ./common/filter
20 . ./common/dmdust
21
22 # real QA test starts here
23
24 # Modify as appropriate.
25 _supported_fs btrfs
26 _require_scratch_dev_pool 2
27 _require_dm_target dust
28
29 _require_btrfs_command inspect-internal dump-tree
30 _require_command "$FILEFRAG_PROG" filefrag
31
32 _scratch_dev_pool_get 2
33 # step 1, create a raid1 btrfs which contains one 128k file.
34 echo "step 1......mkfs.btrfs" >>$seqres.full
35
36 _check_minimal_fs_size $(( 1024 * 1024 * 1024 ))
37 mkfs_opts="-d raid1 -b 1G"
38 _scratch_pool_mkfs $mkfs_opts >>$seqres.full 2>&1
39
40 # make sure data is written to the start position of the data chunk
41 _scratch_mount -o nodatasum $(_btrfs_no_v1_cache_opt)
42
43 $XFS_IO_PROG -f -d -c "pwrite -S 0xaa -b 128K 0 128K" "$SCRATCH_MNT/foobar" |\
44         _filter_xfs_io_offset
45
46 # step 2, corrupt the first 64k of stripe #1
47 echo "step 2......corrupt file extent" >>$seqres.full
48
49 ${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar >> $seqres.full
50 logical_in_btrfs=`${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar | _filter_filefrag | cut -d '#' -f 1`
51 echo "Logical offset is $logical_in_btrfs" >>$seqres.full
52 _scratch_unmount
53
54 read -r stripe physical < <(
55 $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 "$SCRATCH_DEV" |
56         grep "$logical_in_btrfs" -A 6 |
57         $AWK_PROG '$1 == "stripe" && $3 == "devid" && $4 == 1 { print $2 " " $6; exit }')
58 echo "Physical offset of stripe $stripe is $physical on devid 1" >> $seqres.full
59
60 $XFS_IO_PROG -d -c "pwrite -S 0xbb -b 64K $physical 64K" "$SCRATCH_DEV" > /dev/null
61
62 _init_dust
63 _mount_dust
64
65 # step 3, 128k dio read (this read can repair bad copy)
66 echo "step 3......repair the bad copy" >>$seqres.full
67
68 $DMSETUP_PROG message dust-test 0 addbadblock $((physical / 512))
69 $DMSETUP_PROG message dust-test 0 enable
70 while [[ -z $( (( BASHPID % 2 == stripe )) &&
71                exec $XFS_IO_PROG -d -c "pread -b 128K 0 128K" "$SCRATCH_MNT/foobar") ]]; do
72         :
73 done
74
75 _cleanup_dust
76
77 # check if the repair works
78 $XFS_IO_PROG -c "pread -v -b 512 $physical 512" "$SCRATCH_DEV" |
79         _filter_xfs_io_offset
80
81 _scratch_dev_pool_put
82 # success, all done
83 status=0
84 exit