fsx was calling vfprintf twice without resetting the va_list argument
[xfstests-dev.git] / 052
1 #! /bin/sh
2 # FS QA Test No. 052
3 #
4 # Ensure that quota(1) displays blocksizes matching ondisk dquots.
5 #
6 # MOUNT_OPTIONS can be set to gquota to test group quota,
7 # defaults to uquota if MOUNT_OPTIONS is not set.
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
11 #-----------------------------------------------------------------------
12 #
13 # creator
14 owner=nathans@sgi.com
15
16 seq=`basename $0`
17 echo "QA output created by $seq"
18
19 here=`pwd`
20 tmp=/tmp/$$
21 status=1        # failure is the default!
22
23 # get standard environment, filters and checks
24 . ./common.rc
25 . ./common.filter
26 . ./common.quota
27
28 _cleanup()
29 {
30         cd /
31         umount $SCRATCH_MNT 2>/dev/null
32         rm -f $tmp.*
33 }
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 # real QA test starts here
37 _supported_fs xfs
38 _supported_os IRIX Linux
39
40 rm -f $seq.full
41
42 _require_scratch
43 _require_quota
44 _require_nobody
45
46 # setup a default run
47 if [ -z "$MOUNT_OPTIONS" ]; then
48         export MOUNT_OPTIONS="-o uquota"
49 fi
50
51 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
52 cat $tmp.mkfs >>$seq.full
53 chmod a+w $seq.full     # arbitrary users will write here
54
55 # keep the blocksize from mkfs ($dbsize)
56 . $tmp.mkfs
57
58 _qmount
59
60 # setup user/group to test
61 if src/feature -U $SCRATCH_DEV ; then
62         type=u; eval `_choose_uid`
63 elif src/feature -G $SCRATCH_DEV ; then
64         type=g; eval `_choose_gid`
65 elif src/feature -P $SCRATCH_DEV ; then
66         type=p; eval `_choose_prid`
67 else
68         _notrun "No quota support at mount time"
69 fi
70
71 # create 100 (fs-blocksize) blocks
72 _file_as_id $SCRATCH_MNT/foo $id $type $dbsize 220
73 sync
74
75 # set limit at 1001 (1k) blocks
76 bsoft=1001
77 bhard=1001
78 isoft=10
79 ihard=10
80 xfs_quota -x \
81         -c "limit -$type bsoft=${bsoft}k bhard=${bhard}k $id" \
82         -c "limit -$type isoft=$isoft ihard=$ihard $id" \
83         $SCRATCH_DEV
84
85 # cross check blks, softblks, hardblks <-> quota, xfs_db
86 xfs_quota -c "quota -$type -birnN $id" $SCRATCH_DEV |
87                         tr -s '[:space:]' | tee -a $seq.full | perl -ne '
88         if (m[^\s*'$SCRATCH_DEV'\s+(\d+)\s+(\d+)\s+(\d+)]) {
89                 print "used_blocks=", $1, "\n";
90                 print "soft_blocks=", $2, "\n";
91                 print "hard_blocks=", $3, "\n";
92                 $next = 0;
93         }' | LC_COLLATE=POSIX sort >$tmp.quota
94
95 echo ===quota output >> $seq.full
96 cat $tmp.quota >> $seq.full
97 [ ! -s $tmp.quota ] && echo "warning: quota output file is empty"
98
99 umount $SCRATCH_MNT
100
101 # note - does (insitu) conversion from fs blocks to 1K blocks
102 xfs_db -rc "dquot -$type $id" -c p $SCRATCH_DEV | tee -a $seq.full | perl -ne '
103         if (/^diskdq.bcount = (\d+)$/) {
104                  print "used_blocks=", $1 * '$dbsize' / 1024, "\n";
105         }
106         elsif (/^diskdq.blk_hardlimit = (\d+)$/) {
107                  print "hard_blocks=", $1 * '$dbsize' / 1024, "\n";
108         }
109         elsif (/^diskdq.blk_softlimit = (\d+)$/) {
110                 print "soft_blocks=", $1 * '$dbsize' / 1024, "\n";
111         }' | LC_COLLATE=POSIX sort >$tmp.xfs_db
112
113 echo ===xfs_db output >> $seq.full
114 cat $tmp.xfs_db >> $seq.full
115 [ ! -s $tmp.xfs_db ] && echo "warning: xfs_db output file is empty"
116
117 echo Comparing out of xfs_quota and xfs_db
118 diff $tmp.quota $tmp.xfs_db
119 [ $? -eq 0 ] && echo OK.
120
121 # success, all done
122 status=0
123 exit