xfs: force file creation to the data device for certain layout tests
[xfstests-dev.git] / tests / xfs / 490
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 Red Hat Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 490
6 #
7 # Test a corruption when the directory structure and the inobt thinks the inode
8 # is free, but the inode on disk thinks it is still in use.
9 #
10 # This case test same bug (upstream linux commit ee457001ed6c) as xfs/132, but
11 # through different code path.
12 #
13 seq=`basename $0`
14 seqres=$RESULT_DIR/$seq
15 echo "QA output created by $seq"
16
17 here=`pwd`
18 tmp=/tmp/$$
19 status=1        # failure is the default!
20 trap "_cleanup; exit \$status" 0 1 2 3 15
21
22 _cleanup()
23 {
24         cd /
25         rm -f $tmp.*
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/filter
31
32 # remove previous $seqres.full before test
33 rm -f $seqres.full
34
35 # real QA test starts here
36
37 # Modify as appropriate.
38 _supported_fs xfs
39 _require_scratch_nocheck
40 _require_xfs_mkfs_finobt
41
42 # Skip the verifier "xfs_check_agi_freecount()" which verify the number of free
43 # inodes in the AGI is correct, when XFS_DEBUG is enabled
44 _require_no_xfs_debug
45
46 filter_dmesg()
47 {
48         local warn1="Internal error xfs_trans_cancel.*fs/xfs/xfs_trans\.c.*"
49
50         sed -e "s#$warn1#Intentional error in xfs_trans_cancel#"
51 }
52
53 # If enable free inode B+tree, this case will fail on xfs_dialloc_ag_update_inobt,
54 # that's not what we want to test. Due to finobt feature is not necessary for this
55 # test, so disable it directly.
56 _scratch_mkfs_xfs -m finobt=0 | _filter_mkfs 2>$tmp.mkfs >> $seqres.full
57
58 # On V5 filesystem, this case can't trigger bug because it doesn't read inodes
59 # we are allocating from disk - it simply overwrites them with new inode
60 # information. So use ikeep mount option to stop that.
61 source $tmp.mkfs
62 mount_opt=""
63 if [ $_fs_has_crcs -eq 1 ]; then
64         mount_opt="-o ikeep"
65 fi
66
67 blksz=$(_scratch_xfs_get_sb_field blocksize)
68 agcount=$(_scratch_xfs_get_sb_field agcount)
69
70 _scratch_mount $mount_opt
71 # Create a directory for later allocation in same AG (AG 0, due to this's an
72 # empty XFS for now)
73 mkdir $SCRATCH_MNT/dir
74
75 # Allocate 1 block for testfile
76 $XFS_IO_PROG -fc "pwrite 0 $blksz" -c fsync $SCRATCH_MNT/dir/testfile >> $seqres.full
77 inum=`stat -c %i $SCRATCH_MNT/dir/testfile`
78 _scratch_unmount
79
80 # Find the AG which contains testfile
81 agi=`_scratch_xfs_db -c "convert inode $inum agno" | sed -e 's/^.*(\([0-9]*\).*$/\1/g'`
82
83 # Due to we only allocate 1 block for testfile, and this's the only one data
84 # block we use. So we use single level inobt, So the ${agi}->root->recs[1]
85 # should be the only one record points the chunk which contains testfile's
86 # inode.
87 # An exmaple of inode record is as below:
88 #   recs[1] = [startino,freecount,free] 1:[1024,59,0xffffffffffffffe0]
89 freecount=$(_scratch_xfs_get_metadata_field "recs[1].freecount" \
90                                             "agi $agi" "addr root")
91 fmask=$(_scratch_xfs_get_metadata_field "recs[1].free" "agi $agi" "addr root")
92
93 # fmask shift right 1 bit, and freecount++, to mark testfile inode as free in
94 # inobt. (But the inode itself isn't freed, it still has allocated block)
95 freecount="$((freecount + 1))"
96 fmask="$((fmask / 2))"
97 _scratch_xfs_set_metadata_field "recs[1].freecount" "$freecount" \
98                                 "agi $agi" "addr root" >/dev/null
99 _scratch_xfs_set_metadata_field "recs[1].free" "$fmask" \
100                                 "agi $agi" "addr root" >/dev/null
101
102 # Mount again and create a new inode cover that inode we just 'freed' from inobt
103 _scratch_mount $mount_opt
104 $XFS_IO_PROG -fc "pwrite 0 $blksz" -c fsync $SCRATCH_MNT/dir/newfile 2>&1 | \
105         grep -i "Structure needs cleaning" | _filter_scratch
106
107 # filter a intentional internal errors
108 _check_dmesg filter_dmesg
109
110 # success, all done
111 status=0
112 exit