ls -l reports different file size depending on platform and user. Replaced with ls...
[xfstests-dev.git] / 050
1 #! /bin/sh
2 # FS 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) uquota, gquota, 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         cd /
58         echo; echo "*** unmount"
59         umount $SCRATCH_MNT 2>/dev/null
60         rm -f $tmp.*
61 }
62 trap "_cleanup; exit \$status" 0 1 2 3 15
63
64
65 # real QA test starts here
66 _supported_fs xfs
67 _supported_os Linux IRIX
68
69 rm -f $seq.out
70 cp /dev/null $seq.full
71 chmod a+rwx $seq.full   # arbitrary users will write here
72
73 _require_scratch
74 _require_quota
75
76 # setup a default run
77 if [ -z "$MOUNT_OPTIONS" ]; then
78         export MOUNT_OPTIONS="-o uquota"
79 fi
80
81 blksoft=100
82 blkhard=500
83 inosoft=4
84 inohard=10
85
86 # The actual point at which limit enforcement takes place for the
87 # hard block limit is variable depending on filesystem blocksize,
88 # and iosize.  What we want to test is that the limit is enforced
89 # (ie. blksize less than limit but not unduly less - ~85% is kind)
90 # nowadays we actually get much closer to the limit before EDQUOT.
91
92 _filter_and_check_blocks()
93 {
94         perl -npe '
95                 if (/^'$name'\s+([-|+]){2}\s+(\d+)/ && '$enforce') {
96                         $maximum = '$blkhard';
97                         $minimum = '$blkhard' * 85/100;
98                         if ($2 < $minimum || $2 > $maximum) {
99                                 printf(" URK - %d is out of range! [%d,%d] \n",
100                                         $2, $minimum, $maximum);
101                         }
102                         s/^('$name'\s+[-|+][-|+]\s+)(\d+)/\1 OK/g;
103                 }
104         ' | _filter_repquota
105 }
106
107 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
108 cat $tmp.mkfs >>$seq.full
109
110 # keep the blocksize and data size for dd later
111 . $tmp.mkfs
112
113 _qmount
114
115 # Irix uses filesystem name and Linux uses device of filesystem
116 if [ $HOSTOS = "Linux" ]; then
117     QUOTA_FS=$SCRATCH_DEV
118 else
119     QUOTA_FS=$SCRATCH_MNT
120 fi
121
122 # setup exactly what it is we'll be testing
123 enforce=1
124 if src/feature -u $SCRATCH_DEV
125 then
126         type=u ; eval `_choose_uid`; ln -s $seq.usrquota $seq.out
127 elif src/feature -g $SCRATCH_DEV
128 then
129         type=g ; eval `_choose_gid`; ln -s $seq.grpquota $seq.out
130 elif src/feature -U $SCRATCH_DEV
131 then
132         type=u ; eval `_choose_uid`; ln -s $seq.uqnoenforce $seq.out
133         enforce=0
134 elif src/feature -G $SCRATCH_DEV
135 then
136         type=g ; eval `_choose_gid`; ln -s $seq.gqnoenforce $seq.out
137         enforce=0
138 else
139         _notrun "No quota support at mount time"
140 fi
141
142 echo "Using output from '" `ls -l $seq.out` "'" >>$seq.full
143 echo "and using type=$type id=$id" >>$seq.full
144
145 echo
146 echo "*** report no quota settings" | tee -a $seq.full
147 _repquota -$type $QUOTA_FS | _filter_repquota
148
149 echo
150 echo "*** report initial settings" | tee -a $seq.full
151 _file_as_id $SCRATCH_MNT/initme $id $type 1024 0
152 echo "ls -l $SCRATCH_MNT" >>$seq.full
153 ls -l $SCRATCH_MNT >>$seq.full
154 _setquota -$type $id $blksoft $blkhard $inosoft $inohard $QUOTA_FS
155 _repquota -$type $QUOTA_FS | _filter_repquota
156
157 echo
158 echo "*** push past the soft inode limit" | tee -a $seq.full
159 _file_as_id $SCRATCH_MNT/softie1 $id $type 1024 0
160 _file_as_id $SCRATCH_MNT/softie2 $id $type 1024 0
161 _qmount
162 _repquota -$type $QUOTA_FS | _filter_repquota
163
164 echo
165 echo "*** push past the soft block limit" | tee -a $seq.full
166 _file_as_id $SCRATCH_MNT/softie $id $type 1024 140
167 _qmount
168 _repquota -$type $QUOTA_FS | _filter_repquota
169
170 echo
171 # Note: for quota accounting (not enforcement), EDQUOT is not expected
172 echo "*** push past the hard inode limit (expect EDQUOT)" | tee -a $seq.full
173 for i in 1 2 3 4 5 6 7 8 9 10 11 12
174 do
175         _file_as_id $SCRATCH_MNT/hard$i $id $type 1024 0
176 done
177 _qmount
178 _repquota -$type $QUOTA_FS | _filter_repquota
179
180 echo
181 # Note: for quota accounting (not enforcement), EDQUOT is not expected
182 echo "*** push past the hard block limit (expect EDQUOT)" | tee -a $seq.full
183 _file_as_id $SCRATCH_MNT/softie $id $type 1024 540
184 echo "ls -l $SCRATCH_MNT" >>$seq.full
185 ls -l $SCRATCH_MNT >>$seq.full
186 _qmount
187 _repquota -$type $QUOTA_FS | _filter_and_check_blocks
188
189
190 # success, all done
191 status=0
192 exit