common: kill _supported_os
[xfstests-dev.git] / tests / xfs / 442
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 Oracle, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 442
6 #
7 # Force enable all XFS quotas, run fsstress until the fs runs out of
8 # space, and make sure the quotas are still correct when we're done.
9 # This is a general regression/stress test for numerous quota bugs with
10 # reflink and copy on write.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19 trap "_cleanup; exit \$status" 0 1 2 3 15
20
21 _cleanup()
22 {
23         cd /
24         rm -f $tmp.*
25         $KILLALL_PROG -9 fsstress > /dev/null 2>&1
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/quota
31 . ./common/filter
32 . ./common/reflink
33
34 # Modify as appropriate.
35 _supported_fs xfs
36
37 _require_scratch_reflink
38 _require_quota
39 _require_command "$KILLALL_PROG" "killall"
40
41 rm -f $seqres.full
42
43 report_quota_blocks() {
44         $XFS_QUOTA_PROG -x -c "report $1" $SCRATCH_MNT | \
45                         awk '{x += $2;} END { print(x); }'
46 }
47
48 compare_quota_to_du() {
49         test $1 -eq $2 || echo "$3 quota $2 blocks does not match du $1 blocks?"
50 }
51
52 # Make sure the user/group/project quota block counts match the du output.
53 # This ensures that we did the quota accounting correctly and that we're
54 # accurately reporting cow preallocation blocks in stat.
55 check_quota_du_blocks() {
56         sync
57         #$XFS_QUOTA_PROG -x -c 'report' $SCRATCH_MNT >> $seqres.full
58         du_rep=$(du -ks $SCRATCH_MNT | awk '{print $1}')
59         u_rep=$(report_quota_blocks -u)
60         g_rep=$(report_quota_blocks -g)
61         p_rep=$(report_quota_blocks -p)
62
63         compare_quota_to_du $du_rep $u_rep "user"
64         compare_quota_to_du $du_rep $g_rep "group"
65         compare_quota_to_du $du_rep $p_rep "project"
66 }
67
68 echo "Format and fsstress"
69
70 _qmount_option "usrquota,grpquota,prjquota"
71 # We use a small volume so that we hit ENOSPC.  This is critical for
72 # regression testing a bug in the directio write code that could result in fs
73 # corruption ("xfs: check reflink allocation mappings").
74 #
75 # This started as a test for quota accounting problems ("xfs: treat CoW fork
76 # operations as delalloc for quota accounting") and ("xfs: call
77 # xfs_qm_dqattach before performing reflink operations") though each of those
78 # tests now have separate faster-running regression tests.
79 _scratch_mkfs_sized $((1600 * 1048576)) > $seqres.full 2>&1
80 _scratch_mount >> $seqres.full 2>&1
81
82 nr_cpus=$((LOAD_FACTOR * 4))
83 nr_ops=$((25000 * nr_cpus * TIME_FACTOR))
84 $FSSTRESS_PROG $FSSTRESS_AVOID -w -d $SCRATCH_MNT -n $nr_ops -p $nr_cpus >> $seqres.full
85
86 echo "Check quota before remount"
87 check_quota_du_blocks
88
89 # Clear out all the preallocations before we quotacheck.
90 # The count comparison in _check_quota_usage will be unhappy if we don't
91 # manage to clean out all the cow preallocations before the remount.
92 _scratch_unmount
93 _scratch_mount
94
95 # Make sure the usage doesn't change after quotacheck.
96 echo "Check quota after remount"
97 _check_quota_usage
98
99 check_quota_du_blocks
100
101 # success, all done
102 status=0
103 exit