xfstests: move generic tests out of top level dir
[xfstests-dev.git] / 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 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
38 . ./common.quota
39
40 filter_xfs_quota()
41 {
42         perl -ne "
43 s,$target,[TARGET],;
44 s,$tmp.projects,[PROJECTS_FILE],;
45 s,$SCRATCH_MNT,[SCR_MNT],;
46 s,$SCRATCH_DEV,[SCR_DEV],;
47 s/Inode: \#\d+ \(0 blocks, 0 extents\)/Inode: #[INO] (0 blocks, 0 extents)/;
48 s/Inode: \#\d+ \(\d+ blocks, \d+ extents\)/Inode: #[INO] (X blocks, Y extents)/;
49         print;"
50 }
51
52 _supported_fs xfs
53 _supported_os Linux #IRIX
54 _require_scratch
55 _require_xfs_quota
56
57 # real QA test starts here
58 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
59 cat $tmp.mkfs >$seq.full
60 . $tmp.mkfs
61
62 # setup a default run
63 if [ -z "$MOUNT_OPTIONS" ]; then
64         export MOUNT_OPTIONS="-o pquota,sync"
65 else
66         export MOUNT_OPTIONS="$MOUNT_OPTIONS -o sync"
67 fi
68
69 _qmount
70 _require_prjquota $SCRATCH_DEV
71
72 echo "### create projects file"
73 rm -f $tmp.projects
74 target=$SCRATCH_MNT/project
75 echo "6:$target" | tee -a $seq.full > $tmp.projects
76
77 echo "### populate filesystem"
78 mkdir $target           || exit
79 $FSSTRESS_PROG -z -s 65261 -m 8 -n 1000 -p 4 \
80 -f allocsp=1 \
81 -f chown=3 \
82 -f creat=4 \
83 -f dwrite=4 \
84 -f fallocate=1 \
85 -f fdatasync=1 \
86 -f fiemap=1 \
87 -f freesp=1 \
88 -f fsync=1 \
89 -f link=1 \
90 -f mkdir=2 \
91 -f punch=1 \
92 -f rename=2 \
93 -f resvsp=1 \
94 -f rmdir=1 \
95 -f setxattr=1 \
96 -f sync=1 \
97 -f truncate=2 \
98 -f unlink=1 \
99 -f unresvsp=1 \
100 -f write=4 \
101 -d $target
102
103 $FSSTRESS_PROG -z -s 47806 -m 8 -n 500 -p 4 \
104 -f chown=250 \
105 -f setxattr=250 \
106 -d $target
107
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