btrfs: check qgroup doesn't crash when beyond limit
[xfstests-dev.git] / tests / btrfs / 080
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2014 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FSQA Test No. 080
6 #
7 # Regression test for a btrfs issue where if right after the snapshot creation
8 # ioctl started, a file write followed by a file truncate happened, with both
9 # operations increasing the file's size, the created snapshot would capture an
10 # inconsistent state of the file system tree. That state reflected the file
11 # truncation but it didn't reflect the write operation, and left a gap between
12 # two file extent items (and that gap corresponded to the total or a partial
13 # area of the write operation's range).
14 #
15 # This issue was fixed by the following linux kernel patch:
16 #
17 #     Btrfs: fix snapshot inconsistency after a file write followed by truncate
18 #
19 seq=`basename $0`
20 seqres=$RESULT_DIR/$seq
21 echo "QA output created by $seq"
22 tmp=/tmp/$$
23 status=1        # failure is the default!
24 trap "_cleanup; exit \$status" 0 1 2 3 15
25
26 _cleanup()
27 {
28         for p in ${cpu_stress_pids[*]}; do
29                 kill $p &> /dev/null
30         done
31         rm -f $tmp.*
32 }
33
34 # get standard environment, filters and checks
35 . ./common/rc
36 . ./common/filter
37
38 # real QA test starts here
39 _supported_fs btrfs
40 _require_scratch_nocheck
41
42 rm -f $seqres.full
43
44 create_snapshot()
45 {
46         local ts=`date +'%H_%M_%S_%N'`
47
48         _run_btrfs_util_prog subvolume snapshot -r \
49                 $SCRATCH_MNT $SCRATCH_MNT/"${ts}_snap"
50 }
51
52 create_file()
53 {
54         local name=$1
55
56         run_check $XFS_IO_PROG -f \
57                 -c "pwrite -S 0xaa -b 32K 0 32K" \
58                 -c "fsync" \
59                 -c "pwrite -S 0xbb -b 32770 16K 32770" \
60                 -c "truncate 90123" \
61                 $SCRATCH_MNT/$name
62 }
63
64 workout()
65 {
66         local name=$1
67
68         create_file $name &
69         fpid=$!
70         create_snapshot &
71         spid=$!
72         wait $fpid
73         create_ret=$?
74         wait $spid
75         snap_ret=$?
76         if [ $create_ret != 0 -o $snap_ret != 0 ]; then
77                 _fail "Failure creating file or snapshot, check $seqres.full for details"
78         fi
79 }
80
81 # If the installed btrfs mkfs supports the no-holes feature, make sure the
82 # created fs doesn't get that feature enabled. With it enabled, the below fsck
83 # call wouldn't fail. This feature hasn't been enabled by default since it was
84 # introduced, but be safe and explicitly disable it.
85 _scratch_mkfs -O list-all 2>&1 | grep -q '\bno\-holes\b'
86 if [ $? -eq 0 ]; then
87         mkfs_options="-O ^no-holes"
88 fi
89 _scratch_mkfs "$mkfs_options" >>$seqres.full 2>&1
90
91 _scratch_mount
92
93 # Run some background load in order to make the issue easier to trigger.
94 # Specially needed when testing with non-debug kernels and there isn't
95 # any other significant load on the test machine other than this test.
96 num_cpus=`$here/src/feature -o`
97 num_procs=$(($num_cpus * 20))
98 for ((i = 0; i < $num_procs; i++)); do
99         while true; do
100                 true
101         done &
102         cpu_stress_pids[$i]=$!
103 done
104
105 for ((i = 1; i <= 100; i++)); do
106         workout "foobar_$i"
107 done
108
109 for ((i = 0; i < $num_procs; i++)); do
110         kill ${cpu_stress_pids[$i]} &> /dev/null
111         unset cpu_stress_pids[$i]
112 done
113
114 for f in $(find $SCRATCH_MNT -type f -name 'foobar_*'); do
115         digest=`md5sum $f | cut -d ' ' -f 1`
116         case $digest in
117         "d41d8cd98f00b204e9800998ecf8427e")
118                 # ok, empty file
119                 ;;
120         "c28418534a020122aca59fd3ff9581b5")
121                 # ok, only first write captured
122                 ;;
123         "cd0032da89254cdc498fda396e6a9b54")
124                 # ok, only 2 first writes captured
125                 ;;
126         "a1963f914baf4d2579d643425f4e54bc")
127                 # ok, the 2 writes and the truncate were captured
128                 ;;
129         *)
130                 # not ok, truncate captured but not one or both writes
131                 _fail "Unexpected digest for file $f"
132         esac
133 done
134
135 # Check the filesystem for inconsistencies.
136 # Before the btrfs kernel fix mentioned above, we would very often get fsck
137 # error messages like: "root 306 inode 338 errors 100, file extent discount".
138 #
139 # This was because if right after the snapshot creation ioctl started, a file
140 # write followed by a file truncate, with both operations increasing the file's
141 # size, we would get a snapshot that reflected a state where the file truncation
142 # was visible but the previous file write was not visible, breaking expected
143 # total ordering of operations and causing a gap between 2 file extents, where a
144 # file extent item representing the range [32K .. ALIGN(16K + 32770, 4096)] was
145 # missing in the snapshot's btree.
146 _check_scratch_fs
147
148 echo "Silence is golden"
149 status=0
150 exit