7640bff3479bb2f27fabc107febd1ab4d36520b8
[xfstests-dev.git] / tests / xfs / 107
1 #! /bin/bash
2 # FS QA Test No. 107
3 #
4 # 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
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
35
36 # get standard environment, filters and checks
37 . ./common/rc
38 . ./common/filter
39 . ./common/quota
40
41 filter_xfs_quota()
42 {
43         perl -ne "
44 s,$target,[TARGET],;
45 s,$tmp.projects,[PROJECTS_FILE],;
46 s,$SCRATCH_MNT,[SCR_MNT],;
47 s,$SCRATCH_DEV,[SCR_DEV],;
48 s/Inode: \#\d+ \(0 blocks, 0 extents\)/Inode: #[INO] (0 blocks, 0 extents)/;
49 s/Inode: \#\d+ \(\d+ blocks, \d+ extents\)/Inode: #[INO] (X blocks, Y extents)/;
50         print;"
51 }
52
53 _supported_fs xfs
54 _supported_os Linux
55 _require_scratch
56 _require_xfs_quota
57
58 # real QA test starts here
59 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
60 cat $tmp.mkfs >$seqres.full
61 . $tmp.mkfs
62
63 # setup a default run
64 if [ -z "$MOUNT_OPTIONS" ]; then
65         export MOUNT_OPTIONS="-o pquota,sync"
66 else
67         export MOUNT_OPTIONS="$MOUNT_OPTIONS -o sync"
68 fi
69
70 _qmount
71 _require_prjquota $SCRATCH_DEV
72
73 echo "### create projects file"
74 rm -f $tmp.projects
75 target=$SCRATCH_MNT/project
76 echo "6:$target" | tee -a $seqres.full > $tmp.projects
77
78 echo "### populate filesystem"
79 mkdir $target           || exit
80 $FSSTRESS_PROG -z -s 65261 -m 8 -n 1000 -p 4 \
81 -f allocsp=1 \
82 -f chown=3 \
83 -f creat=4 \
84 -f dwrite=4 \
85 -f fallocate=1 \
86 -f fdatasync=1 \
87 -f fiemap=1 \
88 -f freesp=1 \
89 -f fsync=1 \
90 -f link=1 \
91 -f mkdir=2 \
92 -f punch=1 \
93 -f rename=2 \
94 -f resvsp=1 \
95 -f rmdir=1 \
96 -f setxattr=1 \
97 -f sync=1 \
98 -f truncate=2 \
99 -f unlink=1 \
100 -f unresvsp=1 \
101 -f write=4 \
102 -d $target
103
104 $FSSTRESS_PROG -z -s 47806 -m 8 -n 500 -p 4 \
105 -f chown=250 \
106 -f setxattr=250 \
107 -d $target
108
109 QARGS="-x -D $tmp.projects -P /dev/null $SCRATCH_MNT"
110
111 echo "### initial report"
112 xfs_quota -c 'quot -p' -c 'quota -ip 6' $QARGS | filter_xfs_quota
113
114 echo "### check the project, should give warnings"
115 xfs_quota -c 'project -c 6' $QARGS | LC_COLLATE=POSIX sort | filter_xfs_quota
116
117 echo "### recursively setup the project"
118 xfs_quota -c 'project -s 6' $QARGS | LC_COLLATE=POSIX sort | filter_xfs_quota
119 xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
120
121 echo "### check the project, should give no warnings now"
122 xfs_quota -c 'project -c 6' $QARGS | LC_COLLATE=POSIX sort | filter_xfs_quota
123
124 echo "### deny a hard link - wrong project ID"
125 rm -f $SCRATCH_MNT/outer $target/inner
126 $XFS_IO_PROG -f -c 'chproj 789' $SCRATCH_MNT/outer
127 ln $SCRATCH_MNT/outer $target/inner 2>/dev/null
128 if [ $? -eq 0 ]; then
129         echo hard link succeeded
130         ls -ld $SCRATCH_MNT/outer $target/inner
131 else
132         echo hard link failed
133 fi
134 xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
135
136 echo "### allow a hard link - right project ID"
137 $XFS_IO_PROG -c 'chproj 6' $SCRATCH_MNT/outer
138 ln $SCRATCH_MNT/outer $target/inner
139 if [ $? -eq 0 ]; then
140         echo hard link succeeded
141 else
142         echo hard link failed
143         ls -ld $SCRATCH_MNT/outer $target/inner
144 fi
145 xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
146
147 echo "### recursively clear the project"
148 xfs_quota -c 'project -C 6' $QARGS | LC_COLLATE=POSIX sort | filter_xfs_quota
149 #no output...
150 xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
151
152 status=0
153 exit