189f4ce9a00713acbd69e677f3e7d648a8f78fe2
[xfstests-dev.git] / tests / xfs / 196
1 #! /bin/bash
2 # FS QA Test No. 196
3 #
4 # Make sure renames accross project boundaries are properly rejected
5 # and that we don't use the wrong lock flags internally.
6 #
7 # Based on a report and testcase from Arkadiusz Miskiewicz <arekm@maven.pl>
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2008 Christoph Hellwig.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
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
35 _cleanup()
36 {
37         cd /
38         umount $SCRATCH_MNT
39         rm -f $tmp.*
40 }
41 trap "_cleanup; exit \$status" 0 1 2 3 15
42
43 # get standard environment, filters and checks
44 . ./common/rc
45 . ./common/filter
46 . ./common/quota
47
48 # real QA test starts here
49 _supported_fs xfs
50 _supported_os Linux
51
52 _require_scratch
53 _require_xfs_quota
54
55 #
56 # Setup temporary replacements for /etc/projects and /etc/projid
57 #
58 cat >$tmp.projects <<EOF
59 42:$SCRATCH_MNT/t
60 EOF
61
62 cat >$tmp.projid <<EOF
63 answer:42
64 EOF
65
66 #
67 # And make sure we always use our replacements
68 #
69 quota_cmd="xfs_quota -D $tmp.projects -P $tmp.projid"
70
71 _scratch_mkfs_xfs >/dev/null 2>&1
72 _qmount_option "pquota"
73 _qmount
74
75 #
76 # Create the project root
77 #
78 mkdir $SCRATCH_MNT/t
79
80 $quota_cmd -x -c 'project -s answer' $SCRATCH_MNT >/dev/null 2>&1
81 $quota_cmd -x -c 'limit -p bhard=100m answer' $SCRATCH_MNT
82
83 touch $SCRATCH_MNT/test
84
85 #
86 # Try renaming a file into the project.  This should fail.
87 #
88 # We repeat this a couple thousand times as a single rename couldn't
89 # always trigger the wrong unlock flags bug we had in older kernels.
90 #
91 for i in `seq 1 2000`; do
92     src/rename test t/test
93 done
94
95 # success, all done
96 echo "*** done"
97 rm -f $seqres.full
98 status=0