Merge of xfs-cmds-2.4.18:slinx:112403a by nathans.
[xfstests-dev.git] / 033
1 #! /bin/sh
2 # XFS QA Test No. 033
3 # $Id: 1.1 $
4 #
5 # exercise xfs_repair repairing broken filesystems (root inodes)
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
49 _cleanup()
50 {
51         umount $SCRATCH_DEV 2>/dev/null
52         rm -f $tmp.*
53 }
54
55 trap "_cleanup; exit \$status" 0 1 2 3 15
56
57 # get standard environment, filters and checks
58 . ./common.rc
59 . ./common.filter
60 . ./common.repair
61
62 # nuke the root, rt bitmap, and rt summary inodes
63
64 _check_root_inos()
65 {
66         echo "Corrupting root inode - setting bits to $1"
67         _check_repair $1 "inode $rootino"
68         echo "Corrupting rt bitmap inode - setting bits to $1"
69         _check_repair $1 "inode $rbmino"
70         echo "Corrupting rt summary inode - setting bits to $1"
71         _check_repair $1 "inode $rsumino"
72 }
73
74 # real QA test starts here
75 _require_scratch
76
77 # devzero blows away 512byte blocks, so make 512byte inodes
78 mkfs_xfs -f -i size=512 $SCRATCH_DEV | _filter_mkfs 2>/dev/null
79 `xfs_db -r -c sb -c p $SCRATCH_DEV | grep 'ino = ' | \
80         sed -e 's/ //g' -e 's/^/export /'`
81
82 # check we won't get any quota inodes setup on mount
83 mount -t xfs $SCRATCH_DEV $SCRATCH_MNT
84 src/feature -U $SCRATCH_DEV && \
85         _notrun "Quota are enabled, test needs controlled sb recovery"
86 src/feature -G $SCRATCH_DEV && \
87         _notrun "Quota are enabled, test needs controlled sb recovery"
88 umount $SCRATCH_DEV
89
90 # rootino, rbmino, and rsumino are now set (lets blow em away!)
91 _check_root_inos 0
92 _check_root_inos -1
93
94 # success, all done
95 status=0
96 exit