xfstests 241: run longer
[xfstests-dev.git] / 186
1 #! /bin/bash
2 # FS QA Test No. 186
3 #
4 # Test out:
5 # pv#979606: xfs bug in going from attr2 back to attr1
6 #
7 # Test bug in going from attr2 back to attr1 where xfs
8 # (due to xfs_attr_shortform_bytesfit)
9 # would reset the di_forkoff to the m_offset instead of
10 # leaving the di_forkoff alone as was intended.
11 #
12 # We create enough dirents to push us past m_attroffset,
13 # and create an EA so we have a fork offset
14 # and then turn on attr1 and add one more EA which
15 # will write over the shortform dirents.
16 #
17 #-----------------------------------------------------------------------
18 # Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
19 #
20 # This program is free software; you can redistribute it and/or
21 # modify it under the terms of the GNU General Public License as
22 # published by the Free Software Foundation.
23 #
24 # This program is distributed in the hope that it would be useful,
25 # but WITHOUT ANY WARRANTY; without even the implied warranty of
26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27 # GNU General Public License for more details.
28 #
29 # You should have received a copy of the GNU General Public License
30 # along with this program; if not, write the Free Software Foundation,
31 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
32 #
33 #-----------------------------------------------------------------------
34 #
35 # creator
36 owner=tes@emu.melbourne.sgi.com
37
38 seq=`basename $0`
39 echo "QA output created by $seq"
40
41 here=`pwd`
42 tmp=/tmp/$$
43 status=1        # failure is the default!
44 trap "_cleanup; exit \$status" 0 1 2 3 15
45
46 _cleanup()
47 {
48     cd /
49     rm -f $tmp.*
50 }
51
52 _create_dirents()
53 {
54         start_num=$1
55         end_num=$2
56         cd $fork_dir
57         for i in `seq $start_num $end_num`; do
58                 touch file.$i
59         done
60 }
61
62 _create_eas()
63 {
64         start_num=$1
65         end_num=$2
66         for i in `seq $start_num $end_num`; do
67                 $SETFATTR_PROG -n user.$i -v 0xbabe $fork_dir
68         done
69 }
70
71 _rmv_eas()
72 {
73         start_num=$1
74         end_num=$2
75         for i in `seq $start_num $end_num`; do
76                 $SETFATTR_PROG -x user.$i $fork_dir
77         done
78 }
79
80 _filter_inode()
81 {
82         tee -a $here/$seq.full | \
83                 sed -e "s/core.forkoff/forkoff/g" | \
84                 egrep '^u.sfdir2|^a.sfattr|forkoff' | \
85                 egrep -v 'inumber|parent'
86 }
87
88 _filter_version()
89 {
90         tee -a $here/$seq.full | tr ',' '\n' | grep ATTR
91 }
92
93 _print_inode()
94 {
95         echo ""
96         echo "================================="
97         $XFS_DB_PROG -c "version" $SCRATCH_DEV 2>&1 | _filter_version
98         $XFS_DB_PROG -c "inode $inum" -c p $SCRATCH_DEV 2>&1 | _filter_inode
99         echo "================================="
100 }
101
102 _do_eas()
103 {
104         echo ""
105         _scratch_mount
106         if [ $1 = "-r" ]; then 
107                 echo "*** remove EAs start $2 end $3 ***"
108                 _rmv_eas $2 $3
109         else
110                 echo "*** create EAs start $2 end $3 ***"
111                 _create_eas $2 $3
112         fi
113         echo ""
114         cd /; $UMOUNT_PROG $SCRATCH_MNT
115         _print_inode
116 }
117
118 _do_dirents()
119 {
120         num=`expr $2 - $1 + 1`
121         echo ""
122         echo "*** create $num dirents ***"
123         echo ""
124         _scratch_mount
125         _create_dirents $1 $2
126         cd /; $UMOUNT_PROG $SCRATCH_MNT
127         _print_inode
128 }
129
130 _changeto_attr1()
131 {
132         echo ""
133         echo "Try setting attr1 by db"
134         echo ""
135         $XFS_DB_PROG -x -c "version attr1" $SCRATCH_DEV | _filter_version
136 }
137
138
139 # get standard environment, filters and checks
140 . ./common.rc
141 . ./common.filter
142 . ./common.attr
143
144 # real QA test starts here
145
146 # Modify as appropriate.
147 _supported_fs xfs
148 _supported_os Linux
149
150 _require_scratch
151 _require_attrs
152
153 rm -f $seq.full
154
155 _scratch_mkfs -i attr=2,size=512 -l lazy-count=1 >/dev/null 2>&1
156
157 # set inum to root dir ino
158 # we'll add in dirents and EAs into the root directory
159 eval `$XFS_DB_PROG -r -c 'sb 0' -c 'p rootino' $SCRATCH_DEV | $SED_PROG 's/ //g'`
160 inum=$rootino
161 fork_dir=$SCRATCH_MNT
162 _print_inode
163
164 # add enough dirents to be inline but more
165 # than will fit for m_attroffset for 512b inodes
166 # for attr2 this is not a problem
167 _do_dirents 1 25 
168
169 # add 1 ea so we get our forkoff happening 
170 _do_eas -c 1 1
171
172 # now change back to attr1 where forkoff is constant now
173 _changeto_attr1
174
175 # now add another EA
176 # for a bug in xfs_add_shortform_bytesfit
177 # where it resets the forkoff to m_attroffset>>3 instead of 
178 # leaving as di_forkoff
179 # If it resets to m_attroffset which is in the middle of
180 # the dirents then they will get corrupted
181 _do_eas -c 2 2
182
183 # success, all done
184 status=0
185 exit