common: kill _supported_os
[xfstests-dev.git] / tests / xfs / 288
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 288
6 #
7 # When an attribute leaf block count is 0, xfs_repair should junk
8 # that leaf directly (as xfsprogs commit f714016).
9 #
10 seq=`basename $0`
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
13
14 here=`pwd`
15 tmp=/tmp/$$
16 status=1        # failure is the default!
17 trap "_cleanup; exit \$status" 0 1 2 3 15
18
19 _cleanup()
20 {
21         cd /
22         rm -f $tmp.*
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28 . ./common/attr
29
30 # remove previous $seqres.full before test
31 rm -f $seqres.full
32
33 # Modify as appropriate.
34 _supported_fs xfs
35 _require_scratch
36 _require_attrs
37
38 # get block size ($dbsize) from the mkfs output
39 _scratch_mkfs_xfs 2>/dev/null | _filter_mkfs 2>$tmp.mkfs >/dev/null
40 . $tmp.mkfs
41
42 _scratch_mount
43
44 touch $SCRATCH_MNT/$seq.attrfile
45 inum=$(stat -c '%i' $SCRATCH_MNT/$seq.attrfile)
46
47 # To get an attr block leaf, we need to extend attr format to extent
48 # or btree format at least, and the max inode size is half of filesystem
49 # block size, so write half of block size attr to make sure attr
50 # out of local format.
51 maxisize=$((dbsize/2))
52 $SETFATTR_PROG -n "user.testattr${seq}" \
53                -v "$(perl -e "print 'v' x ${maxisize};")" \
54                $SCRATCH_MNT/$seq.attrfile
55
56 _scratch_unmount
57 # manually corrupt the XFS, by set the header count of attr to 0
58 _scratch_xfs_set_metadata_field "hdr.count" "0" \
59                                 "inode $inum" "ablock 0" >> $seqres.full
60
61 # verify current xfs_db write command can set hdr.count to 0. Old xfsprogs
62 # can't do that on v5 filesystems.
63 count=$(_scratch_xfs_get_metadata_field "hdr.count" \
64                                         "inode $inum" "ablock 0" 2> /dev/null)
65 if [ "$count" != "0" ]; then
66         _notrun "xfs_db can't set attr hdr.count to 0"
67 fi
68
69 # make sure xfs_repair can find above corruption. If it can't, that
70 # means we need to fix this bug on current xfs_repair
71 _scratch_xfs_repair -n >> $seqres.full 2>&1
72 if [ $? -eq 0 ];then
73         _fail "xfs_repair can't find the corruption"
74 else
75         # If xfs_repair can find this corruption, then this repair
76         # should junk above leaf attribute and fix this XFS.
77         _scratch_xfs_repair >> $seqres.full 2>&1
78
79         # Old xfs_repair maybe find and fix this corruption by
80         # reset the first used heap value and the usedbytes cnt
81         # in ablock 0. That's not what we want. So check if
82         # xfs_repair has junked the whole ablock 0 by xfs_db.
83         _scratch_xfs_db -x -c "inode $inum" -c "ablock 0" | \
84                 grep -q "no attribute data"
85         if [ $? -ne 0 ]; then
86                 _fail "xfs_repair didn't junk the empty attr leaf"
87         fi
88 fi
89
90 echo "Silence is golden"
91
92 # success, all done
93 status=0
94 exit