xfstests: Fix some file permission.
[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
55 # real QA test starts here
56 _require_scratch
57 _supported_fs xfs
58 _supported_os Linux
59 rm -f $seq.full
60
61 # lazysb and attr2 are in features2 and will require morebitsbit on
62 # So test with lazysb and without it to see if the morebitsbit is
63 # okay etc....
64 # Reset the options so that we can control what is going on here
65 export MKFS_OPTIONS=""
66 export MOUNT_OPTIONS=""
67
68 # Make sure that when we think we are testing with morebits off
69 # that we really are.
70 # Trying to future-proof in case mkfs defaults change.
71 _scratch_mkfs -i attr=1 -l lazy-count=0 >/dev/null 2>&1
72 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 >$tmp.db
73 if grep -i morebits $tmp.db
74 then
75         echo ""
76         echo "Need to update test $seq so that initial subtests do not use features2"
77         echo ""
78         exit
79 fi
80
81 echo ""
82 echo "*** 1. test attr2 mkfs and then noattr2 mount ***"
83 echo ""
84 echo "attr2 fs"
85 echo ""
86 _scratch_mkfs -i attr=2 -l lazy-count=0 >/dev/null 2>&1
87 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
88 echo ""
89 echo "noattr2 fs"
90 echo ""
91 _scratch_mount -o noattr2
92 $UMOUNT_PROG $SCRATCH_MNT
93 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
94
95 # adding an EA will ensure the ATTR1 flag is turned on
96 echo ""
97 echo "*** 2. test attr2 mkfs and then noattr2 mount with 1 EA ***"
98 echo ""
99 echo "attr2 fs"
100 echo ""
101 _scratch_mkfs -i attr=2 -l lazy-count=0 >/dev/null 2>&1
102 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
103 echo ""
104 echo "noattr2 fs"
105 echo ""
106 _scratch_mount -o noattr2
107 cd $SCRATCH_MNT
108 touch testfile
109 $SETFATTR_PROG -n user.test -v 0xbabe testfile
110 $GETFATTR_PROG testfile
111 cd $here
112 $UMOUNT_PROG $SCRATCH_MNT
113 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
114
115 echo ""
116 echo "*** 3. test noattr2 mount and lazy sb ***"
117 echo ""
118 echo ""
119 echo "attr2 fs"
120 echo ""
121 _scratch_mkfs -i attr=2 -l lazy-count=1 >/dev/null 2>&1
122 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
123 echo ""
124 echo "noattr2 fs"
125 echo ""
126 _scratch_mount -o noattr2
127 cd $SCRATCH_MNT
128 touch testfile
129 cd $here
130 $UMOUNT_PROG $SCRATCH_MNT
131 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 | _filter_version
132
133 # success, all done
134 status=0
135 exit