xfstests: include test subdirectory support
[xfstests-dev.git] / 033
1 #! /bin/bash
2 # FS QA Test No. 033
3 #
4 # exercise xfs_repair repairing broken filesystems (root inodes)
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31
32 _cleanup()
33 {
34     cd /
35     umount $SCRATCH_DEV 2>/dev/null
36     rm -f $tmp.*
37 }
38
39 trap "_cleanup; exit \$status" 0 1 2 3 15
40
41 # get standard environment, filters and checks
42 . ./common.rc
43 . ./common.filter
44 . ./common.repair
45
46 # link correct .out file
47 _link_out_file $seq.out
48
49 # nuke the root, rt bitmap, and rt summary inodes
50
51 _check_root_inos()
52 {
53         echo "Corrupting root inode - setting bits to $1"
54         _check_repair $1 "inode $rootino"
55         echo "Corrupting rt bitmap inode - setting bits to $1"
56         _check_repair $1 "inode $rbmino"
57         echo "Corrupting rt summary inode - setting bits to $1"
58         _check_repair $1 "inode $rsumino"
59 }
60
61 #
62 # pv#909621
63 # IRIX checks for valid user and group ids as we have a 
64 # limit of MAXID
65 # As it is unsigned on Linux, this test is not done
66 # (i.e. -1 is a valid id on Linux but not on IRIX)
67 # So we make the output the same for both OS's.
68 #
69 _filter_bad_ids()
70 {
71         egrep -v 'bad user id 0xffffffff|bad group id 0xffffffff'
72 }
73
74 # real QA test starts here
75 _supported_fs xfs
76 _supported_os IRIX Linux
77
78 _require_scratch
79 _require_no_large_scratch_dev
80
81 # devzero blows away 512byte blocks, so make 512byte inodes (at least)
82 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
83 . $tmp.mkfs
84 [ $isize -lt 512 ] && \
85         _scratch_mkfs_xfs -isize=512 | _filter_mkfs >/dev/null 2>&1
86
87 `xfs_db -r -c sb -c p $SCRATCH_DEV | grep 'ino = ' | \
88         sed -e 's/ //g' -e 's/^/export /'`
89
90 # check we won't get any quota inodes setup on mount
91 _scratch_mount
92 src/feature -U $SCRATCH_DEV && \
93         _notrun "UQuota are enabled, test needs controlled sb recovery"
94 src/feature -G $SCRATCH_DEV && \
95         _notrun "GQuota are enabled, test needs controlled sb recovery"
96 src/feature -P $SCRATCH_DEV && \
97         _notrun "PQuota are enabled, test needs controlled sb recovery"
98 umount $SCRATCH_DEV
99
100 # rootino, rbmino, and rsumino are now set (lets blow em away!)
101 _check_root_inos 0
102 _check_root_inos -1 | _filter_bad_ids
103
104 # success, all done
105 status=0
106 exit