80a665c6b0014800e54203e8432e6522a18a3b52
[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
38 maxextlen=$((0x1fffff))
39 bs=4096
40 rextsize=4
41 filesz=$(((maxextlen + 1) * bs))
42
43 extra_options=""
44 # If we're testing XFS, set up the realtime device to reproduce the bug.
45 if [[ $FSTYP = xfs ]]; then
46         # If we don't have a realtime device, set up a loop device on the test
47         # filesystem.
48         if [[ $USE_EXTERNAL != yes || -z $SCRATCH_RTDEV ]]; then
49                 _require_test
50                 loopsz="$((filesz + (1 << 26)))"
51                 _require_fs_space "$TEST_DIR" $((loopsz / 1024))
52                 $XFS_IO_PROG -c "truncate $loopsz" -f "$TEST_DIR/$seq"
53                 loop="$(_create_loop_device "$TEST_DIR/$seq")"
54                 USE_EXTERNAL=yes
55                 SCRATCH_RTDEV="$loop"
56         fi
57         extra_options="$extra_options -bsize=$bs"
58         extra_options="$extra_options -r extsize=$((bs * rextsize))"
59         extra_options="$extra_options -d agsize=$(((maxextlen + 1) * bs / 2)),rtinherit=1"
60         # disable reflink as reflink not supported with realtime devices
61         if _scratch_mkfs_xfs_supported -m reflink=0 >/dev/null 2>&1; then
62                 extra_options="$extra_options -m reflink=0"
63         fi
64 fi
65 _scratch_mkfs $extra_options >>$seqres.full 2>&1
66 _scratch_mount
67 _require_fs_space "$SCRATCH_MNT" $((filesz / 1024))
68
69 # Allocate maxextlen + 1 blocks. As long as the allocator does something sane,
70 # we should end up with two extents that look something like:
71 #
72 # u3.bmx[0-1] = [startoff,startblock,blockcount,extentflag]
73 # 0:[0,0,2097148,1]
74 # 1:[2097148,2097148,4,1]
75 #
76 # Extent 0 has blockcount = ALIGN_DOWN(maxextlen, rextsize). Extent 1 is
77 # adjacent and has blockcount = rextsize. Both are unwritten.
78 $XFS_IO_PROG -c "falloc 0 $filesz" -c fsync -f "$SCRATCH_MNT/file"
79
80 # Write extent 0 + one block of extent 1. Our extents should end up like so:
81 #
82 # u3.bmx[0-1] = [startoff,startblock,blockcount,extentflag]
83 # 0:[0,0,2097149,0]
84 # 1:[2097149,2097149,3,1]
85 #
86 # Extent 0 is written and has blockcount = ALIGN_DOWN(maxextlen, rextsize) + 1,
87 # Extent 1 is adjacent, unwritten, and has blockcount = rextsize - 1 and
88 # startblock % rextsize = 1.
89 #
90 # The -b is just to speed things up (doing GBs of I/O in 4k chunks kind of
91 # sucks).
92 $XFS_IO_PROG -c "pwrite -b 1M -W 0 $(((maxextlen + 2 - rextsize) * bs))" \
93         "$SCRATCH_MNT/file" >> "$seqres.full"
94
95 # Truncate the extents.
96 $XFS_IO_PROG -c "truncate 0" -c fsync "$SCRATCH_MNT/file"
97
98 # We need to do this before the loop device gets torn down.
99 _scratch_unmount
100 _check_scratch_fs
101
102 echo "Silence is golden"
103 status=0
104 exit