generic: test for file loss after mix of rename, fsync and inode eviction
[xfstests-dev.git] / tests / generic / 326
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 326
6 #
7 # Ensure that quota charges us for reflinking a file and that we're not
8 # charged for directio copy on write.
9 #
10 . ./common/preamble
11 _begin_fstest auto quick clone
12
13 # Import common functions.
14 . ./common/filter
15 . ./common/reflink
16 . ./common/quota
17
18 # real QA test starts here
19 _require_scratch_reflink
20 _require_cp_reflink
21 _require_xfs_io_command "fiemap"
22 _require_quota
23 _require_nobody
24 _require_odirect
25 _require_user
26
27 echo "Format and mount"
28 _scratch_mkfs > $seqres.full 2>&1
29 export MOUNT_OPTIONS="-o usrquota,grpquota $MOUNT_OPTIONS"
30 _scratch_mount >> $seqres.full 2>&1
31 quotacheck -u -g $SCRATCH_MNT 2> /dev/null
32 quotaon $SCRATCH_MNT 2> /dev/null
33
34 testdir=$SCRATCH_MNT/test-$seq
35 mkdir $testdir
36
37 sz=1048576
38 echo "Create the original files"
39 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $sz 0 $sz" $testdir/file1 >> $seqres.full
40 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
41 _cp_reflink $testdir/file1 $testdir/file3 >> $seqres.full
42 touch $testdir/urk
43 chown nobody $testdir/urk
44 touch $testdir/erk
45 chown $qa_user $testdir/erk
46 _report_quota_blocks $SCRATCH_MNT
47 _scratch_cycle_mount
48
49 echo "Change file ownership"
50 chown $qa_user $testdir/file1
51 chown $qa_user $testdir/file2
52 chown $qa_user $testdir/file3
53 _report_quota_blocks $SCRATCH_MNT
54
55 echo "CoW one of the files"
56 $XFS_IO_PROG -d -f -c "pwrite -S 0x63 -b $((sz/2)) 0 $((sz/2))" -c "fsync" $testdir/file2 >> $seqres.full
57 _report_quota_blocks $SCRATCH_MNT
58
59 echo "Remount the FS to see if accounting changes"
60 _scratch_cycle_mount
61 _report_quota_blocks $SCRATCH_MNT
62
63 echo "Chown one of the files"
64 chown nobody $testdir/file3
65 _report_quota_blocks $SCRATCH_MNT
66
67 # success, all done
68 status=0
69 exit