xfstests: cleanup duplicates in all tests
[xfstests-dev.git] / tests / xfs / 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
36 seq=`basename $0`
37 seqres=$RESULT_DIR/$seq
38 echo "QA output created by $seq"
39
40 here=`pwd`
41 tmp=/tmp/$$
42 status=1        # failure is the default!
43 trap "_cleanup; exit \$status" 0 1 2 3 15
44
45 _cleanup()
46 {
47     cd /
48     rm -f $tmp.*
49 }
50
51 _create_dirents()
52 {
53         start_num=$1
54         end_num=$2
55         cd $fork_dir
56         for i in `seq $start_num $end_num`; do
57                 touch file.$i
58         done
59 }
60
61 _create_eas()
62 {
63         start_num=$1
64         end_num=$2
65         for i in `seq $start_num $end_num`; do
66                 $SETFATTR_PROG -n user.$i -v 0xbabe $fork_dir
67         done
68 }
69
70 _rmv_eas()
71 {
72         start_num=$1
73         end_num=$2
74         for i in `seq $start_num $end_num`; do
75                 $SETFATTR_PROG -x user.$i $fork_dir
76         done
77 }
78
79 _filter_inode()
80 {
81         tee -a $seqres.full | \
82                 sed -e "s/core.forkoff/forkoff/g" | \
83                 egrep '^u.sfdir2|^a.sfattr|forkoff' | \
84                 egrep -v 'inumber|parent'
85 }
86
87 _filter_version()
88 {
89         tee -a $seqres.full | tr ',' '\n' | grep ATTR
90 }
91
92 _print_inode()
93 {
94         echo ""
95         echo "================================="
96         $XFS_DB_PROG -c "version" $SCRATCH_DEV 2>&1 | _filter_version
97         $XFS_DB_PROG -c "inode $inum" -c p $SCRATCH_DEV 2>&1 | _filter_inode
98         echo "================================="
99 }
100
101 _do_eas()
102 {
103         echo ""
104         _scratch_mount
105         if [ $1 = "-r" ]; then 
106                 echo "*** remove EAs start $2 end $3 ***"
107                 _rmv_eas $2 $3
108         else
109                 echo "*** create EAs start $2 end $3 ***"
110                 _create_eas $2 $3
111         fi
112         echo ""
113         cd /; $UMOUNT_PROG $SCRATCH_MNT
114         _print_inode
115 }
116
117 _do_dirents()
118 {
119         num=`expr $2 - $1 + 1`
120         echo ""
121         echo "*** create $num dirents ***"
122         echo ""
123         _scratch_mount
124         _create_dirents $1 $2
125         cd /; $UMOUNT_PROG $SCRATCH_MNT
126         _print_inode
127 }
128
129 _changeto_attr1()
130 {
131         echo ""
132         echo "Try setting attr1 by db"
133         echo ""
134         $XFS_DB_PROG -x -c "version attr1" $SCRATCH_DEV | _filter_version
135 }
136
137 # get standard environment, filters and checks
138 . ./common/rc
139 . ./common/filter
140 . ./common/attr
141
142 # real QA test starts here
143
144 # Modify as appropriate.
145 _supported_fs xfs
146 _supported_os Linux
147
148 _require_scratch
149 _require_attrs
150
151 rm -f $seqres.full
152
153 _scratch_mkfs -i attr=2,size=512 -l lazy-count=1 >/dev/null 2>&1
154
155 # set inum to root dir ino
156 # we'll add in dirents and EAs into the root directory
157 eval `$XFS_DB_PROG -r -c 'sb 0' -c 'p rootino' $SCRATCH_DEV | $SED_PROG 's/ //g'`
158 inum=$rootino
159 fork_dir=$SCRATCH_MNT
160 _print_inode
161
162 # add enough dirents to be inline but more
163 # than will fit for m_attroffset for 512b inodes
164 # for attr2 this is not a problem
165 _do_dirents 1 25 
166
167 # add 1 ea so we get our forkoff happening 
168 _do_eas -c 1 1
169
170 # now change back to attr1 where forkoff is constant now
171 _changeto_attr1
172
173 # now add another EA
174 # for a bug in xfs_add_shortform_bytesfit
175 # where it resets the forkoff to m_attroffset>>3 instead of 
176 # leaving as di_forkoff
177 # If it resets to m_attroffset which is in the middle of
178 # the dirents then they will get corrupted
179 _do_eas -c 2 2
180
181 # success, all done
182 status=0
183 exit