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 # -o nospace_cache makes sure data is written to the start position of the data
41 # chunk
42 _scratch_mount -o nospace_cache,nodatasum
43
44 $XFS_IO_PROG -f -d -c "pwrite -S 0xaa -b 128K 0 128K" "$SCRATCH_MNT/foobar" |\
45         _filter_xfs_io_offset
46
47 # step 2, corrupt the first 64k of stripe #1
48 echo "step 2......corrupt file extent" >>$seqres.full
49
50 ${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar >> $seqres.full
51 logical_in_btrfs=`${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar | _filter_filefrag | cut -d '#' -f 1`
52 echo "Logical offset is $logical_in_btrfs" >>$seqres.full
53 _scratch_unmount
54
55 read -r stripe physical < <(
56 $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 "$SCRATCH_DEV" |
57         grep "$logical_in_btrfs" -A 6 |
58         $AWK_PROG '$1 == "stripe" && $3 == "devid" && $4 == 1 { print $2 " " $6; exit }')
59 echo "Physical offset of stripe $stripe is $physical on devid 1" >> $seqres.full
60
61 $XFS_IO_PROG -d -c "pwrite -S 0xbb -b 64K $physical 64K" "$SCRATCH_DEV" > /dev/null
62
63 _init_dust
64 _mount_dust
65
66 # step 3, 128k dio read (this read can repair bad copy)
67 echo "step 3......repair the bad copy" >>$seqres.full
68
69 $DMSETUP_PROG message dust-test 0 addbadblock $((physical / 512))
70 $DMSETUP_PROG message dust-test 0 enable
71 while [[ -z $( (( BASHPID % 2 == stripe )) &&
72                exec $XFS_IO_PROG -d -c "pread -b 128K 0 128K" "$SCRATCH_MNT/foobar") ]]; do
73         :
74 done
75
76 _cleanup_dust
77
78 # check if the repair works
79 $XFS_IO_PROG -c "pread -v -b 512 $physical 512" "$SCRATCH_DEV" |
80         _filter_xfs_io_offset
81
82 _scratch_dev_pool_put
83 # success, all done
84 status=0
85 exit