4 # Exercises basic XFS quota functionality
5 # uquota, gquota, uqnoenforce, gqnoenforce, pquota, pqnoenforce
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
9 #-----------------------------------------------------------------------
15 echo "QA output created by $seq"
19 status=1 # failure is the default!
21 # get standard environment, filters and checks
29 umount $SCRATCH_MNT 2>/dev/null
32 trap "_cleanup; exit \$status" 0 1 2 3 15
35 # real QA test starts here
37 _supported_os Linux IRIX
40 cp /dev/null $seq.full
41 chmod a+rwx $seq.full # arbitrary users will write here
54 tr -s '[:space:]' | sed -e "s/^\#$id /[NAME] /g" -e "s/^#0 /[ROOT] /g"
57 # The actual point at which limit enforcement takes place for the
58 # hard block limit is variable depending on filesystem blocksize,
59 # and iosize. What we want to test is that the limit is enforced
60 # (ie. blksize less than limit but not unduly less - ~85% is kind)
61 # nowadays we actually get much closer to the limit before EDQUOT.
63 _filter_and_check_blks()
66 if (/^\#'$id'\s+(\d+)/ && '$enforce') {
68 $minimum = '$bhard' * 85/100;
69 if (($1 < $minimum || $1 > $maximum) && '$noextsz') {
70 printf(" URK %d: %d is out of range! [%d,%d]\n",
71 '$id', $1, $minimum, $maximum);
73 s/^(\#'$id'\s+)(\d+)/\1 =OK=/g;
80 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
81 cat $tmp.mkfs >>$seq.full
83 # keep the blocksize and data size for dd later
90 # Figure out whether we're doing large allocations
91 # (bail out if they're so large they stuff the test up)
92 _test_inode_flag extsz-inherit $SCRATCH_MNT
94 extsize=`_test_inode_extsz $SCRATCH_MNT`
95 [ $extsize -ge 512000 ] && \
96 _notrun "Extent size hint is too large ($extsize bytes)"
100 echo "Using output from '" `ls -l $seq.out` "'" >>$seq.full
101 echo "and using type=$type id=$id" >>$seq.full
104 echo "*** report no quota settings" | tee -a $seq.full
105 xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report
108 echo "*** report initial settings" | tee -a $seq.full
109 _file_as_id $SCRATCH_MNT/initme $id $type 1024 0
110 echo "ls -l $SCRATCH_MNT" >>$seq.full
111 ls -l $SCRATCH_MNT >>$seq.full
112 xfs_quota -D $tmp.projects -P $temp.projid -x \
113 -c "limit -$type bsoft=${bsoft}k bhard=${bhard}k $id" \
114 -c "limit -$type isoft=$isoft ihard=$ihard $id" \
116 xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report
119 echo "*** push past the soft inode limit" | tee -a $seq.full
120 _file_as_id $SCRATCH_MNT/softie1 $id $type 1024 0
121 _file_as_id $SCRATCH_MNT/softie2 $id $type 1024 0
123 xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report
126 echo "*** push past the soft block limit" | tee -a $seq.full
127 _file_as_id $SCRATCH_MNT/softie $id $type 1024 140
129 xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report
132 # Note: for quota accounting (not enforcement), EDQUOT is not expected
133 echo "*** push past the hard inode limit (expect EDQUOT)" | tee -a $seq.full
134 for i in 1 2 3 4 5 6 7 8 9 10 11 12
136 _file_as_id $SCRATCH_MNT/hard$i $id $type 1024 0
139 xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_report
142 # Note: for quota accounting (not enforcement), EDQUOT is not expected
143 echo "*** push past the hard block limit (expect EDQUOT)" | tee -a $seq.full
144 _file_as_id $SCRATCH_MNT/softie $id $type 1024 540
145 echo "ls -l $SCRATCH_MNT" >>$seq.full
146 ls -l $SCRATCH_MNT >>$seq.full
148 xfs_quota -D $tmp.projects -P $tmp.projid -x -c "repquota -birnN -$type" $SCRATCH_DEV | _filter_and_check_blks
157 #ensures only one quota mount option is specified
160 #replace any user defined quota options
161 export MOUNT_OPTIONS=`echo $MOUNT_OPTIONS \
162 | sed -e 's/uquota/$q_opt/g' \
163 -e 's/gquota/$q_opt/g' \
164 -e 's/pquota/$q_opt/g' \
165 -e 's/quota/$q_opt/g' \
166 -e 's/uqnoenforce/$q_opt/g' \
167 -e 's/gqnoenforce/$q_opt/g' \
168 -e 's/pqnoenforce/$q_opt/g' \
169 -e 's/qnoenforce/$q_opt/g' \
170 | sed 's/$q_opt/'$1'/g'`
172 #check $q_opt is in new mount options
173 echo $MOUNT_OPTIONS | grep "$1" > /dev/null 2>&1
174 [ "$?" -eq 0 ] || export MOUNT_OPTIONS="$MOUNT_OPTIONS -o $1"
177 cat >$tmp.projects <<EOF
181 cat >$tmp.projid <<EOF
186 projid_file="$tmp.projid"
189 if [ "$HOSTOS" == "IRIX" ]
191 _qmount_option "quota"
193 _qmount_option "uquota"
198 _qmount_option "gquota"
201 echo "*** uqnoenforce"
202 if [ "$HOSTOS" == "IRIX" ]
204 _qmount_option "qnoenforce"
206 _qmount_option "uqnoenforce"
210 echo "*** gqnoenforce"
211 _qmount_option "gqnoenforce"
215 _qmount_option "pquota"
218 echo "*** pqnoenforce"
219 _qmount_option "pqnoenforce"