xfs: force file creation to the data device for certain layout tests
[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 _require_scratch_nocheck
36 _require_xfs_io_command "falloc"
37
38 maxextlen=$((0x1fffff))
39 bs=4096
40 rextsize=4
41 filesz=$(((maxextlen + 1) * bs))
42
43 must_disable_feature() {
44         local feat="$1"
45
46         # If mkfs doesn't know about the feature, we don't need to disable it
47         $MKFS_XFS_PROG --help 2>&1 | grep -q "${feat}=0" || return 1
48
49         # If turning the feature on works, we don't need to disable it
50         _scratch_mkfs_xfs_supported -m "${feat}=1" "${disabled_features[@]}" \
51                 > /dev/null 2>&1 && return 1
52
53         # Otherwise mkfs knows of the feature and formatting with it failed,
54         # so we do need to mask it.
55         return 0
56 }
57
58 extra_options=""
59 # If we're testing XFS, set up the realtime device to reproduce the bug.
60 if [[ $FSTYP = xfs ]]; then
61         # If we don't have a realtime device, set up a loop device on the test
62         # filesystem.
63         if [[ $USE_EXTERNAL != yes || -z $SCRATCH_RTDEV ]]; then
64                 _require_test
65                 loopsz="$((filesz + (1 << 26)))"
66                 _require_fs_space "$TEST_DIR" $((loopsz / 1024))
67                 $XFS_IO_PROG -c "truncate $loopsz" -f "$TEST_DIR/$seq"
68                 loop="$(_create_loop_device "$TEST_DIR/$seq")"
69                 USE_EXTERNAL=yes
70                 SCRATCH_RTDEV="$loop"
71                 disabled_features=()
72
73                 # disable reflink if not supported by realtime devices
74                 must_disable_feature reflink &&
75                         disabled_features=(-m reflink=0)
76
77                 # disable rmap if not supported by realtime devices
78                 must_disable_feature rmapbt &&
79                         disabled_features+=(-m rmapbt=0)
80         fi
81         extra_options="$extra_options -r extsize=$((bs * rextsize))"
82         extra_options="$extra_options -d agsize=$(((maxextlen + 1) * bs / 2)),rtinherit=1"
83
84         _scratch_mkfs $extra_options "${disabled_features[@]}" >>$seqres.full 2>&1
85         _try_scratch_mount >>$seqres.full 2>&1 || \
86                 _notrun "mount failed, kernel doesn't support realtime?"
87         _scratch_unmount
88 else
89         _scratch_mkfs $extra_options >>$seqres.full 2>&1
90 fi
91 _scratch_mount
92 _require_fs_space "$SCRATCH_MNT" $((filesz / 1024))
93
94 # Allocate maxextlen + 1 blocks. As long as the allocator does something sane,
95 # we should end up with two extents that look something like:
96 #
97 # u3.bmx[0-1] = [startoff,startblock,blockcount,extentflag]
98 # 0:[0,0,2097148,1]
99 # 1:[2097148,2097148,4,1]
100 #
101 # Extent 0 has blockcount = ALIGN_DOWN(maxextlen, rextsize). Extent 1 is
102 # adjacent and has blockcount = rextsize. Both are unwritten.
103 $XFS_IO_PROG -c "falloc 0 $filesz" -c fsync -f "$SCRATCH_MNT/file"
104
105 # Write extent 0 + one block of extent 1. Our extents should end up like so:
106 #
107 # u3.bmx[0-1] = [startoff,startblock,blockcount,extentflag]
108 # 0:[0,0,2097149,0]
109 # 1:[2097149,2097149,3,1]
110 #
111 # Extent 0 is written and has blockcount = ALIGN_DOWN(maxextlen, rextsize) + 1,
112 # Extent 1 is adjacent, unwritten, and has blockcount = rextsize - 1 and
113 # startblock % rextsize = 1.
114 #
115 # The -b is just to speed things up (doing GBs of I/O in 4k chunks kind of
116 # sucks).
117 $XFS_IO_PROG -c "pwrite -b 1M -W 0 $(((maxextlen + 2 - rextsize) * bs))" \
118         "$SCRATCH_MNT/file" >> "$seqres.full"
119
120 # Truncate the extents.
121 $XFS_IO_PROG -c "truncate 0" -c fsync "$SCRATCH_MNT/file"
122
123 # We need to do this before the loop device gets torn down.
124 _scratch_unmount
125 _check_scratch_fs
126
127 echo "Silence is golden"
128 status=0
129 exit