From: Qu Wenruo <quwenruo.btrfs@gmx.com>
To: ethanlien <ethanlien@synology.com>, linux-btrfs@vger.kernel.org
Subject: Re: [PATCH] btrfs: fix qgroup reserve overflow break the qgroup limit
Date: Mon, 7 Mar 2022 19:08:42 +0800 [thread overview]
Message-ID: <d1b153bc-7d76-805b-e666-6527e6250d03@gmx.com> (raw)
In-Reply-To: <20220307100004.24759-1-ethanlien@synology.com>
On 2022/3/7 18:00, ethanlien wrote:
> We use extent_changeset->bytes_changed in qgroup_reserve_data() to record
> how many bytes we set for EXTENT_QGROUP_RESERVED state. Currently the
> bytes_changed is set as "unsigned int", and it will overflow if we try to
> fallocate a range larger than 4GiB. The result is we reserve less bytes
> and eventually break the qgroup limit.
>
> The following example test script reproduces the problem:
>
> $ cat qgroup-overflow.sh
> #!/bin/bash
>
> DEV=/dev/sdj
> MNT=/mnt/sdj
>
> mkfs.btrfs -f $DEV
> mount $DEV $MNT
>
> # Set qgroup limit to 2GiB.
> btrfs quota enable $MNT
> btrfs qgroup limit 2G $MNT
>
> # Try to fallocate a 3GiB file. This should fail.
> echo
> echo "Try to fallocate a 3GiB file..."
> fallocate -l 3G $MNT/3G.file
>
> # Try to fallocate a 5GiB file.
> echo
> echo "Try to fallocate a 5GiB file..."
> fallocate -l 5G $MNT/5G.file
>
> # See we break the qgroup limit.
> echo
> sync
> btrfs qgroup show -r $MNT
>
> umount $MNT
>
> When running the test:
>
> $ ./qgroup-overflow.sh
> (...)
>
> Try to fallocate a 3GiB file...
> fallocate: fallocate failed: Disk quota exceeded
>
> Try to fallocate a 5GiB file...
>
> qgroupid rfer excl max_rfer
> -------- ---- ---- --------
> 0/5 5.00GiB 5.00GiB 2.00GiB
>
> Since we have no control of how bytes_changed is used, it's better to
> set it to u64.
>
> Signed-off-by: ethanlien <ethanlien@synology.com>
> ---
> fs/btrfs/extent_io.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h
> index 0399cf8e3c32..151e9da5da2d 100644
> --- a/fs/btrfs/extent_io.h
> +++ b/fs/btrfs/extent_io.h
> @@ -118,7 +118,7 @@ struct btrfs_bio_ctrl {
> */
> struct extent_changeset {
> /* How many bytes are set/cleared in this operation */
> - unsigned int bytes_changed;
> + u64 bytes_changed;
Oh, falloc...
Unlike regular buffered/direct write, which we use one changeset for
each ordered extent, which can never be larger than 256M.
For fallocate, we use one changeset for the whole range, thus it no
longer respects the 256M per extent limit, and caused the problem.
Nice fix and reproducer.
Feel free to submit the reproducer as a test case in xfstests.
Reviewed-by: Qu Wenruo <wqu@suse.com>
Thanks,
Qu
>
> /* Changed ranges */
> struct ulist range_changed;
next prev parent reply other threads:[~2022-03-07 11:28 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-07 10:00 [PATCH] btrfs: fix qgroup reserve overflow break the qgroup limit ethanlien
2022-03-07 11:08 ` Qu Wenruo [this message]
2022-03-07 14:47 ` David Sterba
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d1b153bc-7d76-805b-e666-6527e6250d03@gmx.com \
--to=quwenruo.btrfs@gmx.com \
--cc=ethanlien@synology.com \
--cc=linux-btrfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox