generic: shutdown fs after log recovery
[xfstests-dev.git] / tests / generic / 385
1 #! /bin/bash
2 # FS QA Test No. 385
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         _scratch_unmount
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 generic
50 _supported_os Linux
51
52 _require_scratch
53 _require_quota
54 _require_xfs_quota_foreign
55
56 #
57 # Setup temporary replacements for /etc/projects and /etc/projid
58 #
59 cat >$tmp.projects <<EOF
60 42:$SCRATCH_MNT/t
61 EOF
62
63 cat >$tmp.projid <<EOF
64 answer:42
65 EOF
66
67 #
68 # And make sure we always use our replacements
69 #
70 quota_cmd="$XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid"
71
72 _scratch_mkfs >/dev/null 2>&1
73 _scratch_enable_pquota
74 _qmount_option "prjquota"
75 _qmount
76 _require_prjquota $SCRATCH_DEV
77
78 #
79 # Create the project root
80 #
81 mkdir $SCRATCH_MNT/t
82
83 $quota_cmd -x -c 'project -s answer' $SCRATCH_MNT >/dev/null 2>&1
84 $quota_cmd -x -c 'limit -p bhard=100m answer' $SCRATCH_MNT
85
86 touch $SCRATCH_MNT/test
87
88 #
89 # Try renaming a file into the project.  This should fail.
90 #
91 # We repeat this a couple thousand times as a single rename couldn't
92 # always trigger the wrong unlock flags bug we had in older kernels.
93 #
94 for i in `seq 1 2000`; do
95     src/rename test t/test
96 done
97
98 # success, all done
99 echo "*** done"
100 rm -f $seqres.full
101 status=0