Add GPL license plate to SGI's files.
[xfstests-dev.git] / 050
1 #! /bin/sh
2 # FS QA Test No. 050
3 #
4 # Exercises basic XFS quota functionality
5 #       uquota, gquota, uqnoenforce, gqnoenforce, pquota, pqnoenforce
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25 # creator
26 owner=nathans@sgi.com
27
28 seq=`basename $0`
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
38 . ./common.quota
39
40 _cleanup()
41 {
42         cd /
43         umount $SCRATCH_MNT 2>/dev/null
44         rm -f $tmp.*
45 }
46 trap "_cleanup; exit \$status" 0 1 2 3 15
47
48
49 # real QA test starts here
50 _supported_fs xfs
51 _supported_os Linux IRIX
52
53
54 cp /dev/null $seq.full
55 chmod a+rwx $seq.full   # arbitrary users will write here
56
57 _require_scratch
58 _require_quota
59
60 bsoft=100
61 bhard=500
62 isoft=4
63 ihard=10
64
65
66 _filter_report()
67 {
68         tr -s '[:space:]' | \
69         perl -npe '
70                 s/^\#'$id' /[NAME] /g;
71                 s/^\#0 \d+ /[ROOT] 0 /g;
72                 s/6 days/7 days/g'
73 }
74
75 # The actual point at which limit enforcement takes place for the
76 # hard block limit is variable depending on filesystem blocksize,
77 # and iosize.  What we want to test is that the limit is enforced
78 # (ie. blksize less than limit but not unduly less - ~85% is kind)
79 # nowadays we actually get much closer to the limit before EDQUOT.
80 #
81 _filter_and_check_blks()
82 {
83         perl -npe '
84                 if (/^\#'$id'\s+(\d+)/ && '$enforce') {
85                         $maximum = '$bhard';
86                         $minimum = '$bhard' * 85/100;
87                         if (($1 < $minimum || $1 > $maximum) && '$noextsz') {
88                                 printf(" URK %d: %d is out of range! [%d,%d]\n",
89                                         '$id', $1, $minimum, $maximum);
90                         }
91                         s/^(\#'$id'\s+)(\d+)/\1 =OK=/g;
92                 }
93         ' | _filter_report
94 }
95
96 _exercise()
97 {
98         _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
99         cat $tmp.mkfs >>$seq.full
100
101         # keep the blocksize and data size for dd later
102         . $tmp.mkfs
103
104         _qmount
105
106         # Figure out whether we're doing large allocations
107         # (bail out if they're so large they stuff the test up)
108         _test_inode_flag extsz-inherit $SCRATCH_MNT
109         noextsz=$?
110         extsize=`_test_inode_extsz $SCRATCH_MNT`
111         [ $extsize -ge 512000 ] && \
112                 _notrun "Extent size hint is too large ($extsize bytes)"
113
114         _qsetup
115
116         echo "Using output from '" `ls -l $seq.out` "'" >>$seq.full
117         echo "and using type=$type id=$id" >>$seq.full
118
119         echo
120         echo "*** report no quota settings" | tee -a $seq.full
121         xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report | LC_COLLATE=POSIX sort -r
122
123         echo
124         echo "*** report initial settings" | tee -a $seq.full
125         _file_as_id $SCRATCH_MNT/initme $id $type 1024 0
126         echo "ls -l $SCRATCH_MNT" >>$seq.full
127         ls -l $SCRATCH_MNT >>$seq.full
128         xfs_quota -D $tmp.projects -P $temp.projid -x \
129                 -c "limit -$type bsoft=${bsoft}k bhard=${bhard}k $id" \
130                 -c "limit -$type isoft=$isoft ihard=$ihard $id" \
131                 $SCRATCH_DEV
132         xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report | LC_COLLATE=POSIX sort -r
133
134         echo
135         echo "*** push past the soft inode limit" | tee -a $seq.full
136         _file_as_id $SCRATCH_MNT/softie1 $id $type 1024 0
137         _file_as_id $SCRATCH_MNT/softie2 $id $type 1024 0
138         _qmount
139         xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report | LC_COLLATE=POSIX sort -r
140
141         echo
142         echo "*** push past the soft block limit" | tee -a $seq.full
143         _file_as_id $SCRATCH_MNT/softie $id $type 1024 140
144         _qmount
145         xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report | LC_COLLATE=POSIX sort -r
146
147         echo
148         # Note: for quota accounting (not enforcement), EDQUOT is not expected
149         echo "*** push past the hard inode limit (expect EDQUOT)" | tee -a $seq.full
150         for i in 1 2 3 4 5 6 7 8 9 10 11 12
151         do
152                 _file_as_id $SCRATCH_MNT/hard$i $id $type 1024 0
153         done
154         _qmount
155         xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report | LC_COLLATE=POSIX sort -r
156
157         echo
158         # Note: for quota accounting (not enforcement), EDQUOT is not expected
159         echo "*** push past the hard block limit (expect EDQUOT)" | tee -a $seq.full
160         _file_as_id $SCRATCH_MNT/softie $id $type 1024 540
161         echo "ls -l $SCRATCH_MNT" >>$seq.full
162         ls -l $SCRATCH_MNT >>$seq.full
163         _qmount
164         xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_and_check_blks | LC_COLLATE=POSIX sort -r
165
166         echo
167         echo "*** unmount"
168         umount $SCRATCH_MNT
169
170 }
171
172 cat >$tmp.projects <<EOF
173 1:$SCRATCH_MNT
174 EOF
175
176 cat >$tmp.projid <<EOF
177 root:0
178 scrach:1
179 EOF
180
181 projid_file="$tmp.projid"
182
183 echo "*** user"
184 if [ "$HOSTOS" == "IRIX" ]
185 then
186         _qmount_option "quota"
187 else
188         _qmount_option "uquota"
189 fi
190 _exercise
191
192 echo "*** group"
193 _qmount_option "gquota"
194 _exercise
195
196 echo "*** uqnoenforce"
197 if [ "$HOSTOS" == "IRIX" ]
198 then
199         _qmount_option "qnoenforce"
200 else
201         _qmount_option "uqnoenforce"
202 fi
203 _exercise
204
205 echo "*** gqnoenforce"
206 _qmount_option "gqnoenforce"
207 _exercise
208
209 echo "*** pquota"
210 _qmount_option "pquota"
211 _exercise
212
213 echo "*** pqnoenforce"
214 _qmount_option "pqnoenforce"
215 _exercise
216
217 # success, all done
218 status=0
219 exit