xfstests: move GPL boilerplates to fix lsqa.pl
[xfstests-dev.git] / 106
1 #! /bin/sh
2 # FS QA Test No. 106
3 #
4 # Exercise basic xfs_quota functionality (user/group/project quota)
5 # Use of "sync" mount option here is an attempt to get deterministic
6 # allocator behaviour.
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2005 Silicon Graphics, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms 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,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 #-----------------------------------------------------------------------
25 #
26 # creator
27 owner=nathans@sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
36
37 # get standard environment, filters and checks
38 . ./common.rc
39 . ./common.filter
40 . ./common.quota
41
42 _supported_fs xfs
43 _supported_os Linux #IRIX
44 _require_scratch
45 _require_quota
46 _require_prjquota
47
48 # real QA test starts here
49 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
50 cat $tmp.mkfs >$seq.full
51 . $tmp.mkfs
52
53 # setup a default run
54 if [ -z "$MOUNT_OPTIONS" ]; then
55         export MOUNT_OPTIONS="-o pquota,sync"
56 else
57         export MOUNT_OPTIONS="$MOUNT_OPTIONS -o sync"
58 fi
59
60 # initial populate
61 _qmount
62 target=$SCRATCH_MNT/target
63 $FSSTRESS_PROG -s 0xdeed -m8 -w -p4 -n1000 $FSSTRESS_AVOID -d $target
64 $FSSTRESS_PROG -s 0xdeed -m8 -z -p4 -n1000 -fsetxattr=500 -fchown=500 -d $target
65
66 # also use space, to be able to go over/under limits easily
67 uid=255
68 gid=254
69 prid=253
70 rm -f $SCRATCH_MNT/resv
71 $XFS_IO_PROG -fc "resvsp 0 200m" -c "chproj $prid" $SCRATCH_MNT/resv
72 chown $uid $SCRATCH_MNT/resv
73 chgrp $gid $SCRATCH_MNT/resv
74
75 _qmount
76
77 filter_xfs_quota()
78 {
79         perl -ne "
80 s,$SCRATCH_MNT,[SCR_MNT],;
81 s,$SCRATCH_DEV,[SCR_DEV],;
82 s/Inode: \#\d+ \(0 blocks, 0 extents\)/Inode: #[INO] (0 blocks, 0 extents)/;
83 s/Inode: \#\d+ \(\d+ blocks, \d+ extents\)/Inode: #[INO] (X blocks, Y extents)/;
84         print;"
85 }
86
87 test_quot()
88 {
89         echo "checking quot command (type=$type)"  # not deterministic on blks
90         xfs_quota -x -c "quot -n -$type" $SCRATCH_MNT >>$seq.full 2>&1
91 }
92
93 test_report()
94 {
95         echo "checking report command (type=$type)"
96         xfs_quota -x -c "report -h -$type -U 256" $SCRATCH_MNT
97 }
98
99 test_limit1()
100 {
101         echo "checking limit command, pass 1 (type=$type)"
102         xfs_quota -x -c "limit -$type bsoft=100m bhard=100m ihard=2 $id" \
103                 $SCRATCH_MNT
104         xfs_quota -x -c "limit -$type isoft=1 rtbsoft=100m rtbhard=110m $id"\
105                 $SCRATCH_MNT
106         sleep 2         # let the timer day transition happen
107         xfs_quota -x -c "quota -$type -b -hnv $id" $SCRATCH_MNT
108         xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT
109         #xfs_quota -x -c "quota -$type -r -hnv $id" $SCRATCH_MNT
110 }
111
112 test_limit2()
113 {
114         # push limits up high, so that timers are cleared, etc. (for later)
115         echo "checking limit command, pass2 (type=$type)"
116         xfs_quota -x -c "limit -$type bsoft=300m bhard=400m ihard=8800 $id" \
117                 $SCRATCH_MNT
118         xfs_quota -x -c "limit -$type isoft=8000 rtbsoft=310m rtbhard=410m $id"\
119                 $SCRATCH_MNT
120         xfs_quota -x -c "quota -$type -b -hnv $id" $SCRATCH_MNT
121         xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT
122         #xfs_quota -x -c "quota -$type -r -hnv $id" $SCRATCH_MNT
123 }
124
125 test_warn()
126 {
127         echo "checking warn command (type=$type)"
128         xfs_quota -x -c "warn -$type -b 4 $id" $SCRATCH_MNT
129         xfs_quota -x -c "warn -$type -i 3 $id" $SCRATCH_MNT
130         #xfs_quota -x -c "warn -$type -r 2 $id" $SCRATCH_MNT
131         xfs_quota -x -c "quota -$type -b -hnv $id" $SCRATCH_MNT
132         xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT
133         #xfs_quota -x -c "quota -$type -r -hnv $id" $SCRATCH_MNT
134 }
135
136 test_timer()
137 {
138         echo "checking timer command (type=$type)"
139         xfs_quota -x -c "timer -$type -b 3days" $SCRATCH_MNT
140         xfs_quota -x -c "timer -$type -i 2days" $SCRATCH_MNT
141         #xfs_quota -x -c "timer -$type -r 1day" $SCRATCH_MNT
142 }
143
144 test_state()
145 {
146         echo "checking state command (type=$type)"
147         xfs_quota -x -c "state -$type" $SCRATCH_MNT
148         # not yet working properly?
149         #echo "checking disable command (type=$type)"
150         #xfs_quota -x -c "disable -$type -v" $SCRATCH_MNT
151         #echo "checking enable command (type=$type)"
152         #xfs_quota -x -c "enable -$type -v" $SCRATCH_MNT
153         #echo "checking off command (type=$type)"
154         #xfs_quota -x -c "off -$type -v" $SCRATCH_MNT
155         #echo "checking remove command (type=$type)"
156         #xfs_quota -x -c "remove -$type -v" $SCRATCH_MNT
157 }
158
159 test_backup()
160 {
161         echo "checking dump command (type=$type)"
162         rm -f $tmp.backup
163         xfs_quota -x -c "dump -$type -f $tmp.backup -U 256" $SCRATCH_MNT
164         cat $tmp.backup
165
166         echo "changing limits (type=$type)"
167         xfs_quota -x -c "limit -$type isoft=1000 ihard=1100 $id" $SCRATCH_MNT
168         xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT
169
170         echo "checking restore command (type=$type)"
171         xfs_quota -x -c "restore -$type -f $tmp.backup" $SCRATCH_MNT
172         xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT
173         rm -f $tmp.backup
174 }
175
176 test_xfs_quota()
177 {
178         test_quot       ; echo
179         test_report     ; echo
180         test_timer      ; echo
181         test_limit1     ; echo
182         test_warn       ; echo
183         test_limit2     ; echo
184         test_backup     ; echo
185         test_state      ; echo
186         echo            ; echo
187 }
188
189 # real QA test starts here
190 export MOUNT_OPTIONS="-ouquota,sync"
191 _qmount
192 type=u
193 id=$uid
194 test_xfs_quota | filter_xfs_quota
195
196 export MOUNT_OPTIONS="-ogquota,sync"
197 _qmount
198 type=g
199 id=$gid
200 test_xfs_quota | filter_xfs_quota
201
202 export MOUNT_OPTIONS="-opquota,sync"
203 _qmount
204 type=p
205 id=$prid
206 test_xfs_quota | filter_xfs_quota
207
208 umount $SCRATCH_DEV
209 status=0
210 exit