btrfs: test that corruption counter is incremented correctly
[xfstests-dev.git] / tests / btrfs / 215
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2020 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FS QA Test 215
6 #
7 # Test that reading corrupted files would correctly increment device status
8 # counters. This is fixed by the following linux kernel commit:
9 # btrfs: Increment device corruption error in case of checksum error
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14
15 here=`pwd`
16 tmp=/tmp/$$
17 status=1        # failure is the default!
18 trap "_cleanup; exit \$status" 0 1 2 3 15
19
20 _cleanup()
21 {
22         cd /
23         rm -f $tmp.*
24 }
25
26 # get standard environment, filters and checks
27 . ./common/rc
28 . ./common/filter
29
30 # remove previous $seqres.full before test
31 rm -f $seqres.full
32
33 # real QA test starts here
34 get_physical()
35 {
36         $BTRFS_UTIL_PROG inspect-internal dump-tree -t 3 $SCRATCH_DEV | \
37                 grep $1 -A2 | \
38                 $AWK_PROG "(\$1 ~ /stripe/ && \$3 ~ /devid/ && \$2 ~ /0/) { print \$6 }"
39 }
40
41 # Modify as appropriate.
42 _supported_fs btrfs
43 _supported_os Linux
44
45 _scratch_mkfs > /dev/null
46 # disable freespace inode to ensure file is the first thing in the data
47 # blobk group
48 _scratch_mount -o nospace_cache
49
50 blocksize=$(_get_block_size $SCRATCH_MNT)
51 filesize=$((8*$blocksize))
52 uuid=$(findmnt -n -o UUID "$SCRATCH_MNT")
53
54 if [ ! -e /sys/fs/btrfs/$uuid/bdi ]; then
55         _notrun "bdi link not found"
56 fi
57
58 #create an 8 block file
59 $XFS_IO_PROG -d -f -c "pwrite -S 0xbb -b $filesize 0 $filesize" "$SCRATCH_MNT/foobar" > /dev/null
60
61 logical_extent=$($FILEFRAG_PROG -v "$SCRATCH_MNT/foobar" | _filter_filefrag | cut -d '#' -f 1)
62 physical_extent=$(get_physical $logical_extent)
63
64 echo "logical = $logical_extent physical=$physical_extent" >> $seqres.full
65
66 # corrupt first 4 blocks of file
67 _scratch_unmount
68 $XFS_IO_PROG -d -c "pwrite -S 0xaa -b $blocksize $physical_extent $((4*$blocksize))" $SCRATCH_DEV > /dev/null
69 _scratch_mount
70
71 # disable readahead to avoid skewing the counter
72 echo 0 > /sys/fs/btrfs/$uuid/bdi/read_ahead_kb
73
74 # buffered reads whould result in a single error since the read is done
75 # page by page
76 $XFS_IO_PROG -c "pread -b $filesize 0 $filesize" "$SCRATCH_MNT/foobar" > /dev/null 2>&1
77 errs=$($BTRFS_UTIL_PROG device stats $SCRATCH_DEV | awk '/corruption_errs/ { print $2 }')
78 if [ $errs -ne 1 ]; then
79         _fail "Errors: $errs expected: 1"
80 fi
81
82 # DIO does check every sector
83 $XFS_IO_PROG -d -c "pread -b $filesize 0 $filesize" "$SCRATCH_MNT/foobar" > /dev/null 2>&1
84 errs=$($BTRFS_UTIL_PROG device stats $SCRATCH_DEV | awk '/corruption_errs/ { print $2 }')
85 if [ $errs -ne 5 ]; then
86         _fail "Errors: $errs expected: 1"
87 fi
88
89 # success, all done
90 echo "Silence is golden"
91 status=0
92 exit