public inbox for linux-btrfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] btrfs: fix qgroup reserve overflow break the qgroup limit
@ 2022-03-07 10:00 ethanlien
  2022-03-07 11:08 ` Qu Wenruo
  2022-03-07 14:47 ` David Sterba
  0 siblings, 2 replies; 3+ messages in thread
From: ethanlien @ 2022-03-07 10:00 UTC (permalink / raw)
  To: linux-btrfs; +Cc: ethanlien

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;
 
 	/* Changed ranges */
 	struct ulist range_changed;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] btrfs: fix qgroup reserve overflow break the qgroup limit
  2022-03-07 10:00 [PATCH] btrfs: fix qgroup reserve overflow break the qgroup limit ethanlien
@ 2022-03-07 11:08 ` Qu Wenruo
  2022-03-07 14:47 ` David Sterba
  1 sibling, 0 replies; 3+ messages in thread
From: Qu Wenruo @ 2022-03-07 11:08 UTC (permalink / raw)
  To: ethanlien, linux-btrfs



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;

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] btrfs: fix qgroup reserve overflow break the qgroup limit
  2022-03-07 10:00 [PATCH] btrfs: fix qgroup reserve overflow break the qgroup limit ethanlien
  2022-03-07 11:08 ` Qu Wenruo
@ 2022-03-07 14:47 ` David Sterba
  1 sibling, 0 replies; 3+ messages in thread
From: David Sterba @ 2022-03-07 14:47 UTC (permalink / raw)
  To: ethanlien; +Cc: linux-btrfs

On Mon, Mar 07, 2022 at 06:00:04PM +0800, 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>

Added to misc-next, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-03-07 14:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-07 10:00 [PATCH] btrfs: fix qgroup reserve overflow break the qgroup limit ethanlien
2022-03-07 11:08 ` Qu Wenruo
2022-03-07 14:47 ` David Sterba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox