generic/405: test mkfs against thin provision device
[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 _require_user
53
54 rm -f $seqres.full
55
56 echo "Format and mount"
57 _scratch_mkfs > $seqres.full 2>&1
58 export MOUNT_OPTIONS="-o usrquota,grpquota $MOUNT_OPTIONS"
59 _scratch_mount >> $seqres.full 2>&1
60 quotacheck -u -g $SCRATCH_MNT 2> /dev/null
61 quotaon $SCRATCH_MNT 2> /dev/null
62
63 testdir=$SCRATCH_MNT/test-$seq
64 mkdir $testdir
65
66 sz=1048576
67 echo "Create the original files"
68 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $sz 0 $sz" $testdir/file1 >> $seqres.full
69 chown $qa_user $testdir/file1
70 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
71 _cp_reflink $testdir/file1 $testdir/file3 >> $seqres.full
72 _report_quota_blocks $SCRATCH_MNT
73 _scratch_cycle_mount
74 quotaon $SCRATCH_MNT 2> /dev/null
75
76 echo "Set hard quota to prevent rewrite"
77 setquota -u $qa_user 0 1024 0 0 $SCRATCH_MNT
78 _report_quota_blocks $SCRATCH_MNT
79
80 echo "Try to dio write the whole file"
81 su $qa_user -c '$XFS_IO_PROG -d -c "pwrite 0 '$((sz+65536))'" '$testdir'/file1' 2>&1 >> $seqres.full | \
82         _filter_xfs_io_error
83 _report_quota_blocks $SCRATCH_MNT
84
85 echo "Try to write the whole file"
86 su $qa_user -c '$XFS_IO_PROG -c "pwrite 0 '$((sz+65536))'" '$testdir'/file1' 2>&1 >> $seqres.full | \
87         _filter_xfs_io_error
88 _report_quota_blocks $SCRATCH_MNT
89
90 echo "Set hard quota to allow rewrite"
91 setquota -u $qa_user 0 8192 0 0 $SCRATCH_MNT
92 _report_quota_blocks $SCRATCH_MNT
93
94 echo "Try to dio write the whole file"
95 _pwrite_byte 0x62 0 $sz $testdir/file1 -d >> $seqres.full
96 sync
97 _report_quota_blocks $SCRATCH_MNT
98
99 echo "Try to write the whole file"
100 _pwrite_byte 0x62 0 $sz $testdir/file3 >> $seqres.full
101 sync
102 _report_quota_blocks $SCRATCH_MNT
103
104 # success, all done
105 status=0
106 exit