75b44f38df1e3b0ca12e95b6b7e836b4101b31fa
[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 . ./common/quota
32
33 # nuke the root, rt bitmap, and rt summary inodes
34
35 _check_root_inos()
36 {
37         echo "Corrupting root inode - setting bits to $1"
38         _check_repair $1 "inode $rootino"
39         echo "Corrupting rt bitmap inode - setting bits to $1"
40         _check_repair $1 "inode $rbmino"
41         echo "Corrupting rt summary inode - setting bits to $1"
42         _check_repair $1 "inode $rsumino"
43 }
44
45 #
46 # pv#909621
47 # IRIX checks for valid user and group ids as we have a 
48 # limit of MAXID
49 # As it is unsigned on Linux, this test is not done
50 # (i.e. -1 is a valid id on Linux but not on IRIX)
51 # So we make the output the same for both OS's.
52 #
53 _filter_bad_ids()
54 {
55         egrep -v 'bad user id 0xffffffff|bad group id 0xffffffff'
56 }
57
58 # real QA test starts here
59 _supported_fs xfs
60 _supported_os Linux
61
62 _require_scratch
63 _require_no_large_scratch_dev
64
65 # devzero blows away 512byte blocks, so make 512byte inodes (at least)
66 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs >/dev/null
67 . $tmp.mkfs
68 if [ $isize -lt 512 ]; then
69         _scratch_mkfs_xfs -isize=512 | _filter_mkfs 2>$tmp.mkfs >/dev/null
70         . $tmp.mkfs
71 fi
72
73 # link correct .out file
74 FEATURES=
75 if [ $_fs_has_crcs -eq 1 ]; then
76         FEATURES=crc
77 fi
78 _link_out_file_named $seqfull.out "$FEATURES"
79
80 `xfs_db -r -c sb -c p $SCRATCH_DEV | grep 'ino = ' | \
81         sed -e 's/ //g' -e 's/^/export /'`
82
83 # check we won't get any quota inodes setup on mount
84 _qmount_option noquota
85 _scratch_mount
86 src/feature -U $SCRATCH_DEV && \
87         _notrun "UQuota are enabled, test needs controlled sb recovery"
88 src/feature -G $SCRATCH_DEV && \
89         _notrun "GQuota are enabled, test needs controlled sb recovery"
90 src/feature -P $SCRATCH_DEV && \
91         _notrun "PQuota are enabled, test needs controlled sb recovery"
92 _scratch_unmount
93
94 # rootino, rbmino, and rsumino are now set (lets blow em away!)
95 _check_root_inos 0
96 _check_root_inos -1 | _filter_bad_ids
97
98 # success, all done
99 status=0
100 exit