Extra filtering as part of IRIX/Linux xfstests reconciliation for dump.
[xfstests-dev.git] / 016
1 #! /bin/sh
2 # XFS QA Test No. 016
3 # $Id: 1.1 $
4 #
5 # test end of log overwrite bug #796141
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=dxm@sgi.com
41
42 #
43 # pv 796141
44 #
45 # create a new FS, mostly fill the log. Then wrap the log back to the
46 # start bit by bit to force wiping of stale blocks near the end of the
47 # log. Check the block after the log ends to check for corruption
48 #
49 # assumptions : 
50 #    - given we're only touching a single inode, the block after the
51 #      log which is in the middle ag should never be touched.
52 #      if it changes, we assume the log is writing over it
53 #
54
55 seq=`basename $0`
56 echo "QA output created by $seq"
57
58 here=`pwd`
59 tmp=/tmp/$$
60 status=1
61
62 trap "_cleanup; exit \$status" 0 1 2 3 15
63
64 _cleanup()
65 {
66     echo "*** unmount"
67     umount $SCRATCH_MNT 2>/dev/null
68 }
69
70 _block_filter()
71 {
72     sed -e 's/[0-9][0-9]*\.\.[0-9][0-9]*/BLOCKRANGE/g'
73 }
74
75 _init()
76 {
77     echo "*** reset partition"
78     $here/src/devzero -b 2048 -n 50 -v 198 $SCRATCH_DEV
79     echo "*** mkfs"
80     if ! mkfs -t xfs -f -d size=50m -l size=512b $SCRATCH_DEV >$tmp.out 2>&1
81     then
82         cat $tmp.out
83         echo "failed to mkfs $SCRATCH_DEV"
84         exit 1
85     fi
86 }
87
88 _log_traffic()
89 {
90     count=$1
91     echo "*** generate log traffic"
92     
93     out=$SCRATCH_MNT/$$.tmp
94     
95     echo "   *** mount"
96     if ! mount $SCRATCH_DEV $SCRATCH_MNT -t xfs
97     then
98         echo "failed to mount $SCRATCH_DEV"
99         exit 1
100     fi
101
102     # having any quota enabled (acct/enfd) means extra log traffic - evil!
103     $here/src/feature -U $SCRATCH_DEV && \
104                 _notrun "Quota are enabled, test needs controlled log traffic"
105     $here/src/feature -G $SCRATCH_DEV && \
106                 _notrun "Quota are enabled, test needs controlled log traffic"
107  
108     echo "   *** fiddle"
109     while [ $count -ge 0 ]
110     do
111         touch $out 
112         rm $out
113         let "count = count - 1"
114     done
115     
116     echo "   *** unmount"
117     if ! umount $SCRATCH_DEV
118     then
119         echo "failed to unmount $SCRATCH_DEV"
120         exit 1
121     fi
122 }
123
124 _log_size()
125 {
126     xfs_logprint -tb $SCRATCH_DEV | $AWK_PROG '
127         /log device/ {  print $7}
128     '
129 }
130
131 _log_head()
132 {
133     xfs_logprint -tb $SCRATCH_DEV | $AWK_PROG '
134         /head:/ { print $5 }
135     '
136 }
137
138 _after_log()
139 {
140     xfs_db -r $1 -c "sb" -c "print" | $AWK_PROG '
141         /logstart/  { logstart = $3 }
142         /logblocks/ { logblocks = $3 }
143         END {
144             print logstart + logblocks
145         }
146     '
147 }
148
149 _check_corrupt()
150 {
151     f="c6c6c6c6"
152     echo "*** check for corruption"
153     echo "expect $f..." >>$seq.full
154     xfs_db -r $1 -c "fsblock $2" -c "print" | head | tee -a $seq.full | \
155         grep -q -v "$f $f $f $f $f $f $f $f" && \
156             _fail "!!! block $2 corrupted!"
157 }
158
159 # get standard environment, filters and checks
160 . ./common.rc
161 . ./common.filter
162
163 # real QA test starts here
164
165 rm -f $seq.full
166
167 _require_scratch
168 _init
169
170 block=`_after_log $SCRATCH_DEV`
171 echo "fsblock after log = $block"               >>$seq.full
172 _check_corrupt $SCRATCH_DEV $block
173
174 size=`_log_size`
175 echo "log size = $size BB"                      >>$seq.full
176 head=`_log_head`
177 echo "log position = $head"                     >>$seq.full
178
179 [ $size -eq 4096 ] || \
180     _fail "!!! unexpected log size $size"
181 [ $head -eq 2 ] || \
182     _fail "!!! unexpected initial log position $head"
183
184 echo "    lots of traffic"                      >>$seq.full
185 _log_traffic 850
186 head=`_log_head`
187 echo "log position = $head"                     >>$seq.full
188
189 [ $head -gt 3850 -a $head -lt 4050 ] || \
190     _fail "!!! unexpected log position $head"
191
192 for c in 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
193 do
194     echo "   little traffic"            >>$seq.full
195     _log_traffic 2
196     head=`_log_head`
197     echo "log position = $head"         >>$seq.full
198     _check_corrupt $SCRATCH_DEV $block
199 done
200
201 [ $head -lt 1000 ] || \
202     _fail "!!! unexpected log position $head"
203
204
205 # happy exit
206 rm $seq.full
207 status=0
208 exit 0