5af0aefc1d3bb21da22c9292c1abc18423955ea9
[xfstests-dev.git] / tests / xfs / 033
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 033
6 #
7 # exercise xfs_repair repairing broken filesystems (root inodes)
8 #
9 seqfull=$0
10 seq=`basename $0`
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
13
14 here=`pwd`
15 tmp=/tmp/$$
16 status=1        # failure is the default!
17
18 _cleanup()
19 {
20     cd /
21     _scratch_unmount 2>/dev/null
22     rm -f $tmp.*
23 }
24
25 trap "_cleanup; exit \$status" 0 1 2 3 15
26
27 # get standard environment, filters and checks
28 . ./common/rc
29 . ./common/filter
30 . ./common/repair
31
32 # nuke the root, rt bitmap, and rt summary inodes
33
34 _check_root_inos()
35 {
36         echo "Corrupting root inode - setting bits to $1"
37         _check_repair $1 "inode $rootino"
38         echo "Corrupting rt bitmap inode - setting bits to $1"
39         _check_repair $1 "inode $rbmino"
40         echo "Corrupting rt summary inode - setting bits to $1"
41         _check_repair $1 "inode $rsumino"
42 }
43
44 #
45 # pv#909621
46 # IRIX checks for valid user and group ids as we have a 
47 # limit of MAXID
48 # As it is unsigned on Linux, this test is not done
49 # (i.e. -1 is a valid id on Linux but not on IRIX)
50 # So we make the output the same for both OS's.
51 #
52 _filter_bad_ids()
53 {
54         egrep -v 'bad user id 0xffffffff|bad group id 0xffffffff'
55 }
56
57 # real QA test starts here
58 _supported_fs xfs
59 _supported_os Linux
60
61 _require_scratch
62 _require_no_large_scratch_dev
63
64 # devzero blows away 512byte blocks, so make 512byte inodes (at least)
65 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs >/dev/null
66 . $tmp.mkfs
67 if [ $isize -lt 512 ]; then
68         _scratch_mkfs_xfs -isize=512 | _filter_mkfs 2>$tmp.mkfs >/dev/null
69         . $tmp.mkfs
70 fi
71
72 # link correct .out file
73 FEATURES=
74 if [ $_fs_has_crcs -eq 1 ]; then
75         FEATURES=crc
76 fi
77 _link_out_file_named $seqfull.out "$FEATURES"
78
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 _scratch_mount
84 src/feature -U $SCRATCH_DEV && \
85         _notrun "UQuota are enabled, test needs controlled sb recovery"
86 src/feature -G $SCRATCH_DEV && \
87         _notrun "GQuota are enabled, test needs controlled sb recovery"
88 src/feature -P $SCRATCH_DEV && \
89         _notrun "PQuota are enabled, test needs controlled sb recovery"
90 _scratch_unmount
91
92 # rootino, rbmino, and rsumino are now set (lets blow em away!)
93 _check_root_inos 0
94 _check_root_inos -1 | _filter_bad_ids
95
96 # success, all done
97 status=0
98 exit