generic/590: fix the xfs feature detection logic
[xfstests-dev.git] / tests / generic / 590
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2019 Facebook.  All Rights Reserved.
4 #
5 # FS QA Test 590
6 #
7 # Test commit 0c4da70c83d4 ("xfs: fix realtime file data space leak") and
8 # 69ffe5960df1 ("xfs: don't check for AG deadlock for realtime files in
9 # bunmapi"). On XFS without the fixes, truncate will hang forever. On other
10 # filesystems, this just tests writing into big fallocates.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19 trap "_cleanup; exit \$status" 0 1 2 3 15
20
21 _cleanup()
22 {
23         cd /
24         rm -f $tmp.*
25         test -n "$loop" && _destroy_loop_device "$loop"
26         rm -f "$TEST_DIR/$seq"
27 }
28
29 . ./common/rc
30 . ./common/filter
31
32 rm -f $seqres.full
33
34 _supported_fs generic
35 _supported_os Linux
36 _require_scratch_nocheck
37 _require_xfs_io_command "falloc"
38
39 maxextlen=$((0x1fffff))
40 bs=4096
41 rextsize=4
42 filesz=$(((maxextlen + 1) * bs))
43
44 must_disable_feature() {
45         local feat="$1"
46
47         # If mkfs doesn't know about the feature, we don't need to disable it
48         $MKFS_XFS_PROG --help 2>&1 | grep -q "${feat}=0" || return 1
49
50         # If turning the feature on works, we don't need to disable it
51         _scratch_mkfs_xfs_supported -m "${feat}=1" "${disabled_features[@]}" \
52                 > /dev/null 2>&1 && return 1
53
54         # Otherwise mkfs knows of the feature and formatting with it failed,
55         # so we do need to mask it.
56         return 0
57 }
58
59 extra_options=""
60 # If we're testing XFS, set up the realtime device to reproduce the bug.
61 if [[ $FSTYP = xfs ]]; then
62         # If we don't have a realtime device, set up a loop device on the test
63         # filesystem.
64         if [[ $USE_EXTERNAL != yes || -z $SCRATCH_RTDEV ]]; then
65                 _require_test
66                 loopsz="$((filesz + (1 << 26)))"
67                 _require_fs_space "$TEST_DIR" $((loopsz / 1024))
68                 $XFS_IO_PROG -c "truncate $loopsz" -f "$TEST_DIR/$seq"
69                 loop="$(_create_loop_device "$TEST_DIR/$seq")"
70                 USE_EXTERNAL=yes
71                 SCRATCH_RTDEV="$loop"
72                 disabled_features=()
73
74                 # disable reflink if not supported by realtime devices
75                 must_disable_feature reflink &&
76                         disabled_features=(-m reflink=0)
77
78                 # disable rmap if not supported by realtime devices
79                 must_disable_feature rmapbt &&
80                         disabled_features+=(-m rmapbt=0)
81         fi
82         extra_options="$extra_options -r extsize=$((bs * rextsize))"
83         extra_options="$extra_options -d agsize=$(((maxextlen + 1) * bs / 2)),rtinherit=1"
84
85         _scratch_mkfs $extra_options "${disabled_features[@]}" >>$seqres.full 2>&1
86         _try_scratch_mount >>$seqres.full 2>&1 || \
87                 _notrun "mount failed, kernel doesn't support realtime?"
88         _scratch_unmount
89 else
90         _scratch_mkfs $extra_options >>$seqres.full 2>&1
91 fi
92 _scratch_mount
93 _require_fs_space "$SCRATCH_MNT" $((filesz / 1024))
94
95 # Allocate maxextlen + 1 blocks. As long as the allocator does something sane,
96 # we should end up with two extents that look something like:
97 #
98 # u3.bmx[0-1] = [startoff,startblock,blockcount,extentflag]
99 # 0:[0,0,2097148,1]
100 # 1:[2097148,2097148,4,1]
101 #
102 # Extent 0 has blockcount = ALIGN_DOWN(maxextlen, rextsize). Extent 1 is
103 # adjacent and has blockcount = rextsize. Both are unwritten.
104 $XFS_IO_PROG -c "falloc 0 $filesz" -c fsync -f "$SCRATCH_MNT/file"
105
106 # Write extent 0 + one block of extent 1. Our extents should end up like so:
107 #
108 # u3.bmx[0-1] = [startoff,startblock,blockcount,extentflag]
109 # 0:[0,0,2097149,0]
110 # 1:[2097149,2097149,3,1]
111 #
112 # Extent 0 is written and has blockcount = ALIGN_DOWN(maxextlen, rextsize) + 1,
113 # Extent 1 is adjacent, unwritten, and has blockcount = rextsize - 1 and
114 # startblock % rextsize = 1.
115 #
116 # The -b is just to speed things up (doing GBs of I/O in 4k chunks kind of
117 # sucks).
118 $XFS_IO_PROG -c "pwrite -b 1M -W 0 $(((maxextlen + 2 - rextsize) * bs))" \
119         "$SCRATCH_MNT/file" >> "$seqres.full"
120
121 # Truncate the extents.
122 $XFS_IO_PROG -c "truncate 0" -c fsync "$SCRATCH_MNT/file"
123
124 # We need to do this before the loop device gets torn down.
125 _scratch_unmount
126 _check_scratch_fs
127
128 echo "Silence is golden"
129 status=0
130 exit