Update copyright dates auto-generated for new QA scripts.
[xfstests-dev.git] / 050
1 #! /bin/sh
2 # XFS QA Test No. 050
3 #
4 # Exercises basic XFS quota functionality
5 #       MOUNT_OPTIONS env var switches the test type (uid/gid/acct/enfd)
6 #       options are:  (-o) usrquota, grpquota, uqnoenforce, gqnoenforce
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
10
11 # This program is free software; you can redistribute it and/or modify it
12 # under the terms of version 2 of the GNU General Public License as
13 # published by the Free Software Foundation.
14
15 # This program is distributed in the hope that it would be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
19 # Further, this software is distributed without any warranty that it is
20 # free of the rightful claim of any third person regarding infringement
21 # or the like.  Any license provided herein, whether implied or
22 # otherwise, applies only to this software file.  Patent licenses, if
23 # any, provided herein do not apply to combinations of this program with
24 # other software, or any other product whatsoever.
25
26 # You should have received a copy of the GNU General Public License along
27 # with this program; if not, write the Free Software Foundation, Inc., 59
28 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
29
30 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
31 # Mountain View, CA  94043, or:
32
33 # http://www.sgi.com 
34
35 # For further information regarding this notice, see: 
36
37 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
38 #-----------------------------------------------------------------------
39 #
40 # creator
41 owner=nathans@sgi.com
42
43 seq=`basename $0`
44 echo "QA output created by $seq"
45
46 here=`pwd`
47 tmp=/tmp/$$
48 status=1        # failure is the default!
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53 . ./common.quota
54
55 _cleanup()
56 {
57         echo; echo "*** unmount"
58         umount $SCRATCH_MNT 2>/dev/null
59         rm -f $tmp.*
60 }
61 trap "_cleanup; exit \$status" 0 1 2 3 15
62 rm -f $seq.out
63 cp /dev/null $seq.full
64 chmod a+rwx $seq.full   # arbitrary users will write here
65
66 _require_scratch
67 _require_quota
68
69 blksoft=100
70 blkhard=500
71 inosoft=4
72 inohard=10
73
74 # The actual point at which limit enforcement takes place for the
75 # hard block limit is variable depending on filesystem blocksize,
76 # and iosize.  What we want to test is that the limit is enforced
77 # (ie. blksize less than limit but not unduly less - ~85% is kind)
78 # nowadays we actually get much closer to the limit before EDQUOT.
79
80 _filter_and_check_blocks()
81 {
82         perl -npe '
83                 if (/^'$name'\s+([-|+]){2}\s+(\d+)/ && '$enforce') {
84                         $maximum = '$blkhard';
85                         $minimum = '$blkhard' * 85/100;
86                         if ($2 < $minimum || $2 > $maximum) {
87                                 printf(" URK - %d is out of range! [%d,%d] \n",
88                                         $2, $minimum, $maximum);
89                         }
90                         s/^('$name'\s+[-|+][-|+]\s+)(\d+)/\1 OK/g;
91                 }
92         ' | _filter_repquota $1
93 }
94
95 # real QA test starts here
96 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
97 cat $tmp.mkfs >>$seq.full
98
99 # keep the blocksize and data size for dd later
100 . $tmp.mkfs
101
102 _qmount
103
104 # setup exactly what it is we'll be testing
105 enforce=1
106 if src/feature -u $SCRATCH_DEV
107 then
108         type=u ; eval `_choose_uid`; ln $seq.usrquota $seq.out
109 elif src/feature -g $SCRATCH_DEV
110 then
111         type=g ; eval `_choose_gid`; ln $seq.grpquota $seq.out
112 elif src/feature -U $SCRATCH_DEV
113 then
114         type=u ; eval `_choose_uid`; ln $seq.uqnoenforce $seq.out
115         enforce=0
116 elif src/feature -G $SCRATCH_DEV
117 then
118         type=g ; eval `_choose_gid`; ln $seq.gqnoenforce $seq.out
119         enforce=0
120 else
121         _notrun "No quota support at mount time"
122 fi
123
124 echo "Using output from '" `ls -l $seq.out` "'" >>$seq.full
125 echo "and using type=$type id=$id" >>$seq.full
126
127 echo
128 echo "*** report no quota settings" | tee -a $seq.full
129 repquota -$type $SCRATCH_DEV | _filter_repquota 6
130
131 echo
132 echo "*** report initial settings" | tee -a $seq.full
133 _file_as_id $SCRATCH_MNT/initme $id $type 1024 0
134 setquota -$type $id $blksoft $blkhard $inosoft $inohard $SCRATCH_DEV
135 repquota -$type $SCRATCH_DEV | _filter_repquota 7
136
137 echo
138 echo "*** push past the soft inode limit" | tee -a $seq.full
139 _file_as_id $SCRATCH_MNT/softie1 $id $type 1024 0
140 _file_as_id $SCRATCH_MNT/softie2 $id $type 1024 0
141 _qmount
142 repquota -$type $SCRATCH_DEV | _filter_repquota 7
143
144 echo
145 echo "*** push past the soft block limit" | tee -a $seq.full
146 _file_as_id $SCRATCH_MNT/softie $id $type 1024 140
147 _qmount
148 repquota -$type $SCRATCH_DEV | _filter_repquota 7
149
150 echo
151 # Note: for quota accounting (not enforcement), EDQUOT is not expected
152 echo "*** push past the hard inode limit (expect EDQUOT)" | tee -a $seq.full
153 for i in 1 2 3 4 5 6 7 8 9 10 11 12
154 do
155         _file_as_id $SCRATCH_MNT/hard$i $id $type 1024 0
156 done
157 _qmount
158 repquota -$type $SCRATCH_DEV | _filter_repquota 7
159
160 echo
161 # Note: for quota accounting (not enforcement), EDQUOT is not expected
162 echo "*** push past the hard block limit (expect EDQUOT)" | tee -a $seq.full
163 _file_as_id $SCRATCH_MNT/softie $id $type 1024 540
164 _qmount
165 repquota -$type $SCRATCH_DEV | _filter_and_check_blocks 7
166
167 # success, all done
168 status=0
169 exit