xfstests: test ext4 statfs
[xfstests-dev.git] / 187
1 #! /bin/bash
2 # FS QA Test No. 187
3 #
4 # To test out the noattr2 flag which is broken in pv#980021
5 # Given an existing attr2 filesystem, we should be able to mount
6 # as noattr2 and go back to an attr1 filesystem.
7 #
8 # Test the case where there are no more features2 bits on and
9 # so the morebitsbit should be off.
10 #
11 #-----------------------------------------------------------------------
12 # Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
13 #
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License as
16 # published by the Free Software Foundation.
17 #
18 # This program is distributed in the hope that it would be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write the Free Software Foundation,
25 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26 #
27 #-----------------------------------------------------------------------
28 #
29 # creator
30 owner=tes@emu.melbourne.sgi.com
31
32 seq=`basename $0`
33 echo "QA output created by $seq"
34
35 here=`pwd`
36 tmp=/tmp/$$
37 status=1        # failure is the default!
38 trap "_cleanup; exit \$status" 0 1 2 3 15
39
40 _cleanup()
41 {
42     cd /
43     rm -f $tmp.*
44 }
45
46 _filter_version()
47 {
48         tee -a $seq.full | tr ',' '\n' | egrep 'ATTR|MORE|LAZY'
49 }
50
51 # get standard environment, filters and checks
52 . ./common.rc
53 . ./common.filter
54 . ./common.attr
55
56 # real QA test starts here
57 _supported_fs xfs
58 _supported_os Linux
59
60 _require_scratch
61 _require_attrs
62
63 rm -f $seq.full
64
65 # lazysb and attr2 are in features2 and will require morebitsbit on
66 # So test with lazysb and without it to see if the morebitsbit is
67 # okay etc....
68 # Reset the options so that we can control what is going on here
69 export MKFS_OPTIONS=""
70 export MOUNT_OPTIONS=""
71
72 # Make sure that when we think we are testing with morebits off
73 # that we really are.
74 # Trying to future-proof in case mkfs defaults change.
75 _scratch_mkfs -i attr=1 -l lazy-count=0 >/dev/null 2>&1
76 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 >$tmp.db
77 if grep -i morebits $tmp.db
78 then
79         echo ""
80         echo "Need to update test $seq so that initial subtests do not use features2"
81         echo ""
82         exit
83 fi
84
85 echo ""
86 echo "*** 1. test attr2 mkfs and then noattr2 mount ***"
87 echo ""
88 echo "attr2 fs"
89 echo ""
90 _scratch_mkfs -i attr=2 -l lazy-count=0 >/dev/null 2>&1
91 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
92 echo ""
93 echo "noattr2 fs"
94 echo ""
95 _scratch_mount -o noattr2
96 $UMOUNT_PROG $SCRATCH_MNT
97 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
98
99 # adding an EA will ensure the ATTR1 flag is turned on
100 echo ""
101 echo "*** 2. test attr2 mkfs and then noattr2 mount with 1 EA ***"
102 echo ""
103 echo "attr2 fs"
104 echo ""
105 _scratch_mkfs -i attr=2 -l lazy-count=0 >/dev/null 2>&1
106 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
107 echo ""
108 echo "noattr2 fs"
109 echo ""
110 _scratch_mount -o noattr2
111 cd $SCRATCH_MNT
112 touch testfile
113 $SETFATTR_PROG -n user.test -v 0xbabe testfile
114 $GETFATTR_PROG testfile
115 cd $here
116 $UMOUNT_PROG $SCRATCH_MNT
117 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
118
119 echo ""
120 echo "*** 3. test noattr2 mount and lazy sb ***"
121 echo ""
122 echo ""
123 echo "attr2 fs"
124 echo ""
125 _scratch_mkfs -i attr=2 -l lazy-count=1 >/dev/null 2>&1
126 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
127 echo ""
128 echo "noattr2 fs"
129 echo ""
130 _scratch_mount -o noattr2
131 cd $SCRATCH_MNT
132 touch testfile
133 cd $here
134 $UMOUNT_PROG $SCRATCH_MNT
135 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
136
137 # success, all done
138 status=0
139 exit