Abort tests if a failure is encountered while creating/writing test files.
[xfstests-dev.git] / 016
1 #! /bin/sh
2 # FS QA Test No. 016
3 #
4 # test end of log overwrite bug #796141
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
8 #-----------------------------------------------------------------------
9 #
10 # creator
11 owner=dxm@sgi.com
12
13 #
14 # pv 796141
15 #
16 # create a new FS, mostly fill the log. Then wrap the log back to the
17 # start bit by bit to force wiping of stale blocks near the end of the
18 # log. Check the block after the log ends to check for corruption
19 #
20 # assumptions :
21 #    - given we're only touching a single inode, the block after the
22 #      log which is in the middle ag should never be touched.
23 #      if it changes, we assume the log is writing over it
24 #
25
26 seq=`basename $0`
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1
32
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39     echo "*** unmount"
40     umount $SCRATCH_MNT 2>/dev/null
41 }
42
43 _block_filter()
44 {
45     sed -e 's/[0-9][0-9]*\.\.[0-9][0-9]*/BLOCKRANGE/g'
46 }
47
48 _init()
49 {
50     echo "*** reset partition"
51     $here/src/devzero -b 2048 -n 50 -v 198 $SCRATCH_DEV
52     echo "*** mkfs"
53     force_opts="-dsize=50m -lsize=2097152"
54     echo mkfs_xfs $force_opts $SCRATCH_DEV >>$seq.full
55     _scratch_mkfs_xfs $force_opts >$tmp.mkfs0 2>&1
56     [ $? -ne 0 ] && \
57         _notrun "Cannot mkfs for this test using MKFS_OPTIONS specified"
58     _filter_mkfs <$tmp.mkfs0 >/dev/null 2>$tmp.mkfs
59     . $tmp.mkfs
60     [ $logsunit -ne 0 ] && \
61         _notrun "Cannot run this test using log MKFS_OPTIONS specified"
62 }
63
64 _log_traffic()
65 {
66     count=$1
67     echo "*** generate log traffic"
68
69     out=$SCRATCH_MNT/$$.tmp
70
71     echo "   *** mount"
72     if ! _scratch_mount
73     then
74         echo "failed to mount $SCRATCH_DEV"
75         exit 1
76     fi
77
78     # having any quota enabled (acct/enfd) means extra log traffic - evil!
79     $here/src/feature -U $SCRATCH_DEV && \
80                 _notrun "UQuota are enabled, test needs controlled log traffic"
81     $here/src/feature -G $SCRATCH_DEV && \
82                 _notrun "GQuota are enabled, test needs controlled log traffic"
83     $here/src/feature -P $SCRATCH_DEV && \
84                 _notrun "PQuota are enabled, test needs controlled log traffic"
85
86     echo "   *** fiddle"
87     while [ $count -ge 0 ]
88     do
89         touch $out
90         rm $out
91         let "count = count - 1"
92     done
93
94     echo "   *** unmount"
95     if ! umount $SCRATCH_DEV
96     then
97         echo "failed to unmount $SCRATCH_DEV"
98         exit 1
99     fi
100 }
101
102 _log_size()
103 {
104     _scratch_xfs_logprint -tb | $AWK_PROG '
105         /log file: / || /log device: / { print $7}
106     '
107 }
108
109 _log_head()
110 {
111     _scratch_xfs_logprint -tb | $AWK_PROG '
112         /head:/ { print $5 }
113     '
114 }
115
116 # Get log stripe unit for v2 logs; if none specified,
117 # (or v1 log) just return "1" block
118
119 _log_sunit()
120 {
121     if [ ${lsunit:-0} -eq 0 ]; then
122         echo $dbsize
123     else
124         expr $lsunit \* $dbsize
125     fi
126 }
127
128 _after_log()
129 {
130     xfs_db -r $1 -c "sb" -c "print" | $AWK_PROG '
131         /logstart/  { logstart = $3 }
132         /logblocks/ { logblocks = $3 }
133         END {
134             print logstart + logblocks
135         }
136     '
137 }
138
139 _check_corrupt()
140 {
141     f="c6c6c6c6"
142     echo "*** check for corruption"
143     echo "expect $f..." >>$seq.full
144     xfs_db -r -c "fsblock $2" -c "print" $1 | head | tee -a $seq.full | \
145         grep -q -v "$f $f $f $f $f $f $f $f" && \
146             _fail "!!! block $2 corrupted!"
147 }
148
149 # get standard environment, filters and checks
150 . ./common.rc
151 . ./common.filter
152
153 # real QA test starts here
154 _supported_fs xfs
155 _supported_os Linux
156
157 rm -f $seq.full
158
159 _require_scratch
160 _init
161
162 block=`_after_log $SCRATCH_DEV`
163 echo "fsblock after log = $block"               >>$seq.full
164 _check_corrupt $SCRATCH_DEV $block
165
166 size=`_log_size`
167 echo "log size = $size BB"                      >>$seq.full
168 head=`_log_head`
169 echo "log position = $head"                     >>$seq.full
170 lsunit=`_log_sunit`
171 echo "log sunit = $lsunit"                      >>$seq.full
172
173 [ $size -eq 4096 ] || \
174     _fail "!!! unexpected log size $size"
175 [ $head -eq 2 -o $head -eq $((lsunit/512)) ] || \
176     _fail "!!! unexpected initial log position $head vs. $((lsunit/512))"
177
178 echo "    lots of traffic"                      >>$seq.full
179 _log_traffic 850
180 head=`_log_head`
181 echo "log position = $head"                     >>$seq.full
182
183 [ $head -gt 3850 -a $head -lt 4050 ] || \
184     _fail "!!! unexpected log position $head"
185
186 for c in 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
187 do
188     echo "   little traffic"            >>$seq.full
189     _log_traffic 2
190     head=`_log_head`
191     echo "log position = $head"         >>$seq.full
192     _check_corrupt $SCRATCH_DEV $block
193 done
194
195 [ $head -lt 1000 ] || \
196     _fail "!!! unexpected log position $head"
197
198 # success, all done
199 status=0
200 exit