From: "Darrick J. Wong" <djwong@kernel.org>
To: Yousef Alhouseen <alhouseenyousef@gmail.com>
Cc: Carlos Maiolino <cem@kernel.org>,
linux-xfs@vger.kernel.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org,
syzbot+97f2c05378c5d68dcb8c@syzkaller.appspotmail.com
Subject: Re: [PATCH] xfs: zero newly allocated btree root space
Date: Mon, 29 Jun 2026 13:39:59 -0700 [thread overview]
Message-ID: <20260629203959.GD6078@frogsfrogsfrogs> (raw)
In-Reply-To: <20260628094748.46578-1-alhouseenyousef@gmail.com>
On Sun, Jun 28, 2026 at 11:47:48AM +0200, Yousef Alhouseen wrote:
> xfs_broot_realloc() preserves the existing in-inode btree root while
> growing its allocation, but leaves the added bytes uninitialized. The
> inode log formatter copies if_broot_bytes bytes into the journal, so those
> bytes reach the log record and its CRC calculation before every location
> has necessarily been overwritten by btree updates.
>
> Clear the newly allocated tail immediately after a successful growth to
> keep stale heap contents out of the filesystem log.
>
> Fixes: 6c1c55ac3c05 ("xfs: refactor the inode fork memory allocation functions")
> Reported-by: syzbot+97f2c05378c5d68dcb8c@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=97f2c05378c5d68dcb8c
> Cc: stable@vger.kernel.org
> Signed-off-by: Yousef Alhouseen <alhouseenyousef@gmail.com>
> ---
> fs/xfs/libxfs/xfs_inode_fork.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/fs/xfs/libxfs/xfs_inode_fork.c b/fs/xfs/libxfs/xfs_inode_fork.c
> index 606a36526ce2..0d81c78f5afe 100644
> --- a/fs/xfs/libxfs/xfs_inode_fork.c
> +++ b/fs/xfs/libxfs/xfs_inode_fork.c
> @@ -398,6 +398,8 @@ xfs_broot_realloc(
> struct xfs_ifork *ifp,
> size_t new_size)
> {
> + size_t old_size = ifp->if_broot_bytes;
> +
> /* No size change? No action needed. */
> if (new_size == ifp->if_broot_bytes)
> return ifp->if_broot;
> @@ -430,6 +432,7 @@ xfs_broot_realloc(
> */
> ifp->if_broot = krealloc(ifp->if_broot, new_size,
> GFP_KERNEL | __GFP_NOFAIL);
> + memset((char *)ifp->if_broot + old_size, 0, new_size - old_size);
Why doesn't GFP_ZERO work to clear the new memory?
--D
> ifp->if_broot_bytes = new_size;
> return ifp->if_broot;
> }
> --
> 2.54.0
>
>
next prev parent reply other threads:[~2026-06-29 20:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-28 9:47 [PATCH] xfs: zero newly allocated btree root space Yousef Alhouseen
2026-06-29 20:39 ` Darrick J. Wong [this message]
2026-06-30 10:01 ` Yousef Alhouseen
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=20260629203959.GD6078@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=alhouseenyousef@gmail.com \
--cc=cem@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=syzbot+97f2c05378c5d68dcb8c@syzkaller.appspotmail.com \
/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