xfstests: test ext4 statfs
[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 # creator
25 owner=nathans@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33
34 _cleanup()
35 {
36     cd /
37     umount $SCRATCH_DEV 2>/dev/null
38     rm -f $tmp.*
39 }
40
41 trap "_cleanup; exit \$status" 0 1 2 3 15
42
43 # get standard environment, filters and checks
44 . ./common.rc
45 . ./common.filter
46 . ./common.repair
47
48 # link correct .out file
49 _link_out_file $seq.out
50
51 # nuke the root, rt bitmap, and rt summary inodes
52
53 _check_root_inos()
54 {
55         echo "Corrupting root inode - setting bits to $1"
56         _check_repair $1 "inode $rootino"
57         echo "Corrupting rt bitmap inode - setting bits to $1"
58         _check_repair $1 "inode $rbmino"
59         echo "Corrupting rt summary inode - setting bits to $1"
60         _check_repair $1 "inode $rsumino"
61 }
62
63 #
64 # pv#909621
65 # IRIX checks for valid user and group ids as we have a 
66 # limit of MAXID
67 # As it is unsigned on Linux, this test is not done
68 # (i.e. -1 is a valid id on Linux but not on IRIX)
69 # So we make the output the same for both OS's.
70 #
71 _filter_bad_ids()
72 {
73         egrep -v 'bad user id 0xffffffff|bad group id 0xffffffff'
74 }
75
76 # real QA test starts here
77 _supported_fs xfs
78 _supported_os IRIX Linux
79  
80 _require_nobigloopfs
81 _require_scratch
82
83 # devzero blows away 512byte blocks, so make 512byte inodes (at least)
84 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
85 . $tmp.mkfs
86 [ $isize -lt 512 ] && \
87         _scratch_mkfs_xfs -isize=512 | _filter_mkfs >/dev/null 2>&1
88
89 `xfs_db -r -c sb -c p $SCRATCH_DEV | grep 'ino = ' | \
90         sed -e 's/ //g' -e 's/^/export /'`
91
92 # check we won't get any quota inodes setup on mount
93 _scratch_mount
94 src/feature -U $SCRATCH_DEV && \
95         _notrun "UQuota are enabled, test needs controlled sb recovery"
96 src/feature -G $SCRATCH_DEV && \
97         _notrun "GQuota are enabled, test needs controlled sb recovery"
98 src/feature -P $SCRATCH_DEV && \
99         _notrun "PQuota are enabled, test needs controlled sb recovery"
100 umount $SCRATCH_DEV
101
102 # rootino, rbmino, and rsumino are now set (lets blow em away!)
103 _check_root_inos 0
104 _check_root_inos -1 | _filter_bad_ids
105
106 # success, all done
107 status=0
108 exit