xfs: test what happens when we reset the root dir and it has xattrs
[xfstests-dev.git] / tests / xfs / 424
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Red Hat, Inc.  All Rights Reserved.
4 #
5 # FS QA Test 424
6 #
7 # This case checks if setting type causes error.
8 #
9 # On crc filesystems, xfs_db doesn't take sector size into account
10 # when setting type, and this can result in an errant crc.
11 # This issue has been fixed in xfsprogs-dev:
12 # '55f224b ("xfs_db: update buffer size when new type is set")'
13 #
14 # On crc filesystems, when setting the type to "inode" the verifier
15 # validates multiple inodes in the current fs block, so setting the
16 # buffer size to that of just one inode is not sufficient and it'll
17 # emit spurious verifier errors for all but the first.
18 # This issue has been fixed in xfsprogs-dev:
19 # '533d1d2 ("xfs_db: properly set inode type")'
20 seq=`basename $0`
21 seqres=$RESULT_DIR/$seq
22 echo "QA output created by $seq"
23
24 here=`pwd`
25 tmp=/tmp/$$
26 status=1        # failure is the default!
27 trap "_cleanup; exit \$status" 0 1 2 3 15
28
29 _cleanup()
30 {
31         cd /
32         rm -f $tmp.*
33 }
34
35 filter_dbval()
36 {
37         awk '{ print $4 }'
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43
44 # remove previous $seqres.full before test
45 rm -f $seqres.full
46
47 # Modify as appropriate
48 _supported_fs xfs
49
50 # Since we have an open-coded mkfs call, disable the external devices and
51 # don't let the post-check fsck actually run since it'll trip over us not
52 # using the external devices.
53 _require_scratch_nocheck
54 export SCRATCH_LOGDEV=
55 export SCRATCH_RTDEV=
56
57 echo "Silence is golden."
58
59 # real QA test starts here
60
61 # for different sector sizes, ensure no CRC errors are falsely reported.
62
63 # Supported types include: agf, agfl, agi, attr3, bmapbta,
64 # bmapbtd, bnobt, cntbt, data, dir3, dqblk, inobt, inodata,
65 # inode, log, rtbitmap, rtsummary, sb, symlink, text, finobt.
66 # For various sector sizes, test some types that involve type size.
67 #
68 # NOTE: skip attr3, bmapbta, bmapbtd, dir3, dqblk, inodata, symlink
69 # rtbitmap, rtsummary, log
70 #
71 sec_sz=`_min_dio_alignment $SCRATCH_DEV`
72 while [ $sec_sz -le 4096 ]; do
73         sector_sizes="$sector_sizes $sec_sz"
74         sec_sz=$((sec_sz * 2))
75 done
76
77 for SECTOR_SIZE in $sector_sizes; do
78         finobt_enabled=0
79         $MKFS_XFS_PROG -f -s size=$SECTOR_SIZE $SCRATCH_DEV | \
80                 grep -q 'finobt=1' && finobt_enabled=1
81
82         for TYPE in agf agi agfl sb; do
83                 DADDR=`_scratch_xfs_db -c "$TYPE" -c "daddr" | filter_dbval`
84                 _scratch_xfs_db -c "daddr $DADDR" -c "type $TYPE"
85         done
86
87         DADDR=`_scratch_xfs_db -c "sb" -c "addr rootino" -c "daddr" |
88                 filter_dbval`
89         _scratch_xfs_db -c "daddr $DADDR" -c "type inode"
90         DADDR=`_scratch_xfs_db -c "agf" -c "addr bnoroot" -c "daddr" |
91                 filter_dbval`
92         _scratch_xfs_db -c "daddr $DADDR" -c "type bnobt"
93         DADDR=`_scratch_xfs_db -c "agf" -c "addr cntroot" -c "daddr" |
94                 filter_dbval`
95         _scratch_xfs_db -c "daddr $DADDR" -c "type cntbt"
96         DADDR=`_scratch_xfs_db -c "agi" -c "addr root" -c "daddr" |
97                 filter_dbval`
98         _scratch_xfs_db -c "daddr $DADDR" -c "type inobt"
99         if [ $finobt_enabled -eq 1 ]; then
100                 DADDR=`_scratch_xfs_db -c "agi" -c "addr free_root" -c "daddr" |
101                         filter_dbval`
102                 _scratch_xfs_db -c "daddr $DADDR" -c "type finobt"
103         fi
104
105         _scratch_xfs_db -c "daddr $DADDR" -c "type text"
106         _scratch_xfs_db -c "daddr $DADDR" -c "type data"
107 done
108
109 # success, all done
110 status=0
111 exit