xfs: test what happens when we reset the root dir and it has xattrs
[xfstests-dev.git] / tests / xfs / 214
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. 214
6 #
7 # Ensure that quota charges us for reflnking a file and that we're not
8 # charged for directio copy on write.  Same as g/326, but we get to play
9 # with cowextsz.
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14
15 here=`pwd`
16 tmp=/tmp/$$
17 status=1    # failure is the default!
18 trap "_cleanup; exit \$status" 0 1 2 3 15
19
20 _cleanup()
21 {
22     cd /
23     rm -rf $tmp.*
24 }
25
26 # get standard environment, filters and checks
27 . ./common/rc
28 . ./common/filter
29 . ./common/reflink
30 . ./common/quota
31
32 # real QA test starts here
33 _supported_fs xfs
34 _require_scratch_reflink
35 _require_cp_reflink
36 _require_xfs_io_command "fiemap"
37 _require_quota
38 _require_nobody
39 _require_xfs_io_command "cowextsize"
40 _require_odirect
41 _require_user
42
43 rm -f $seqres.full
44
45 echo "Format and mount"
46 _scratch_mkfs > $seqres.full 2>&1
47 export MOUNT_OPTIONS="-o usrquota,grpquota $MOUNT_OPTIONS"
48 _scratch_mount >> $seqres.full 2>&1
49 quotacheck -u -g $SCRATCH_MNT 2> /dev/null
50 quotaon $SCRATCH_MNT 2> /dev/null
51
52 testdir=$SCRATCH_MNT/test-$seq
53 mkdir $testdir
54
55 sz=1048576
56 blksz=65536
57 echo "Create the original files"
58 $XFS_IO_PROG -c "cowextsize $((sz/2))" $testdir >> $seqres.full
59 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $sz 0 $sz" $testdir/file1 >> $seqres.full
60 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
61 _cp_reflink $testdir/file1 $testdir/file3 >> $seqres.full
62 touch $testdir/urk
63 chown nobody $testdir/urk
64 touch $testdir/erk
65 chown $qa_user $testdir/erk
66 _report_quota_blocks $SCRATCH_MNT
67 _scratch_cycle_mount
68
69 echo "Change file ownership"
70 chown $qa_user $testdir/file1
71 chown $qa_user $testdir/file2
72 chown $qa_user $testdir/file3
73 _report_quota_blocks $SCRATCH_MNT
74
75 echo "CoW one of the files"
76 $XFS_IO_PROG -d -f -c "pwrite -S 0x63 -b $blksz $((sz - blksz)) $blksz" -c "fsync" $testdir/file2 >> $seqres.full
77 _report_quota_blocks $SCRATCH_MNT
78
79 echo "Remount the FS to see if accounting changes"
80 _scratch_cycle_mount
81 _report_quota_blocks $SCRATCH_MNT
82
83 echo "Chown one of the files"
84 chown nobody $testdir/file3
85 _report_quota_blocks $SCRATCH_MNT
86
87 # success, all done
88 status=0
89 exit