_choose_id function has changed slightly, run setquota once user is inited.
[xfstests-dev.git] / 030
1 #! /bin/sh
2 # XFS QA Test No. 030
3 # $Id: 1.3 $
4 #
5 # exercise xfs_repair repairing broken filesystems
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=nathans@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=1        # failure is the default!
48 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53 . ./common.repair
54
55 # nuke the superblock, AGI, AGF, AGFL; then try repair the damage
56
57 _check_ag()
58 {
59         for structure in 'sb 0' 'agf 0' 'agi 0' 'agfl 0'
60         do
61                 echo "Corrupting $structure - setting bits to $1"
62                 _check_repair $1 "$structure"
63         done
64 }
65
66 # real QA test starts here
67 _require_scratch
68
69 # first we need to ensure there are no bogus secondary
70 # superblocks between the primary and first secondary
71 # superblock (hanging around from earlier tests)...
72
73 size="-d size=100m"
74 mkfs -t xfs -f $size $SCRATCH_DEV >/dev/null 2>&1
75 if [ $? -ne 0 ]         # probably don't have a big enough scratch
76 then
77         size=""
78         src/devzero -v -1 $SCRATCH_DEV >/dev/null
79 else
80         clear=""
81         eval `xfs_db -r -c "sb 1" -c stack $SCRATCH_DEV | perl -ne '
82                 if (/byte offset (\d+), length (\d+)/) {
83                         print "clear=", $1 / 512, "\n"; exit
84                 }'`
85         [ -z "$clear" ] && echo "Cannot calculate length to clear"
86         src/devzero -v -1 -n "$clear" $SCRATCH_DEV >/dev/null
87 fi
88
89 # now kick off the real repair test...
90
91 mkfs -t xfs -f $size $SCRATCH_DEV | _filter_mkfs 2>$tmp.mkfs
92 source $tmp.mkfs
93 _check_ag 0
94 _check_ag -1
95
96
97 # success, all done
98 status=0
99 exit