Rename _scratch_mount to _scratch_cycle_mount
[xfstests-dev.git] / tests / generic / 328
1 #! /bin/bash
2 # FS QA Test No. 328
3 #
4 # Ensure that we can't go over the hard block limit when CoWing a file.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #-----------------------------------------------------------------------
22
23 seq=`basename $0`
24 seqres=$RESULT_DIR/$seq
25 echo "QA output created by $seq"
26
27 here=`pwd`
28 tmp=/tmp/$$
29 status=1    # failure is the default!
30 trap "_cleanup; exit \$status" 0 1 2 3 15
31
32 _cleanup()
33 {
34     cd /
35     rm -rf $tmp.*
36 }
37
38 # get standard environment, filters and checks
39 . ./common/rc
40 . ./common/filter
41 . ./common/reflink
42 . ./common/quota
43
44 # real QA test starts here
45 _supported_os Linux
46 _require_scratch_reflink
47 _require_cp_reflink
48 _require_fiemap
49 _require_quota
50 _require_nobody
51 _require_odirect
52
53 _repquota() {
54         repquota $SCRATCH_MNT | egrep '^(fsgqa|root|nobody)'
55 }
56 rm -f $seqres.full
57
58 echo "Format and mount"
59 _scratch_mkfs > $seqres.full 2>&1
60 export MOUNT_OPTIONS="-o usrquota,grpquota $MOUNT_OPTIONS"
61 _scratch_mount >> $seqres.full 2>&1
62 quotacheck -u -g $SCRATCH_MNT 2> /dev/null
63 quotaon $SCRATCH_MNT 2> /dev/null
64
65 testdir=$SCRATCH_MNT/test-$seq
66 mkdir $testdir
67
68 sz=1048576
69 echo "Create the original files"
70 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $sz 0 $sz" $testdir/file1 >> $seqres.full
71 chown fsgqa $testdir/file1
72 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
73 _cp_reflink $testdir/file1 $testdir/file3 >> $seqres.full
74 _repquota
75 _scratch_cycle_mount
76
77 echo "Set hard quota to prevent rewrite"
78 setquota -u fsgqa 0 1024 0 0 $SCRATCH_MNT
79 _repquota
80
81 echo "Try to dio write the whole file"
82 _pwrite_byte 0x62 0 $sz $testdir/file1 -d >> $seqres.full
83 _repquota
84
85 echo "Try to write the whole file"
86 _pwrite_byte 0x62 0 $sz $testdir/file1 >> $seqres.full
87 _repquota
88
89 echo "Set hard quota to allow rewrite"
90 setquota -u fsgqa 0 8192 0 0 $SCRATCH_MNT
91 _repquota
92
93 echo "Try to dio write the whole file"
94 _pwrite_byte 0x62 0 $sz $testdir/file1 -d >> $seqres.full
95 sync
96 _repquota
97
98 echo "Try to write the whole file"
99 _pwrite_byte 0x62 0 $sz $testdir/file3 >> $seqres.full
100 sync
101 _repquota
102
103 # success, all done
104 status=0
105 exit