From: "Colin Walters" <walters@verbum.org>
To: "Gao Xiang" <hsiangkao@linux.alibaba.com>, linux-erofs@lists.ozlabs.org
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] erofs: fix incorrect symlink detection in fast symlink
Date: Mon, 09 Sep 2024 08:48:52 -0400 [thread overview]
Message-ID: <bb2dd430-7de0-47da-ae5b-82ab2dd4d945@app.fastmail.com> (raw)
In-Reply-To: <20240909031911.1174718-1-hsiangkao@linux.alibaba.com>
On Sun, Sep 8, 2024, at 11:19 PM, Gao Xiang wrote:
> Fast symlink can be used if the on-disk symlink data is stored
> in the same block as the on-disk inode, so we don’t need to trigger
> another I/O for symlink data. However, correctly fs correction could be
> reported _incorrectly_ if inode xattrs are too large.
>
> In fact, these should be valid images although they cannot be handled as
> fast symlinks.
>
> Many thanks to Colin for reporting this!
Yes, though feel free to also add
Reported-by: https://honggfuzz.dev/
or so...not totally sure how to credit it "kernel style" bit honggfuzz very much helped me find this bug (indirectly).
>
> Reported-by: Colin Walters <walters@verbum.org>
> Fixes: 431339ba9042 ("staging: erofs: add inode operations")
> Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
> ---
> v2:
> - sent out a wrong version (`m_pofs += vi->xattr_isize` was missed).
>
> fs/erofs/inode.c | 20 ++++++--------------
> 1 file changed, 6 insertions(+), 14 deletions(-)
>
> diff --git a/fs/erofs/inode.c b/fs/erofs/inode.c
> index 5f6439a63af7..f2cab9e4f3bc 100644
> --- a/fs/erofs/inode.c
> +++ b/fs/erofs/inode.c
> @@ -178,12 +178,14 @@ static int erofs_fill_symlink(struct inode
> *inode, void *kaddr,
> unsigned int m_pofs)
> {
> struct erofs_inode *vi = EROFS_I(inode);
> - unsigned int bsz = i_blocksize(inode);
> + loff_t off;
> char *lnk;
>
> - /* if it cannot be handled with fast symlink scheme */
> - if (vi->datalayout != EROFS_INODE_FLAT_INLINE ||
> - inode->i_size >= bsz || inode->i_size < 0) {
> + m_pofs += vi->xattr_isize;
> + /* check if it cannot be handled with fast symlink scheme */
> + if (vi->datalayout != EROFS_INODE_FLAT_INLINE || inode->i_size < 0 ||
> + check_add_overflow(m_pofs, inode->i_size, &off) ||
> + off > i_blocksize(inode)) {
> inode->i_op = &erofs_symlink_iops;
> return 0;
> }
This change LGTM.
> @@ -192,16 +194,6 @@ static int erofs_fill_symlink(struct inode *inode,
> void *kaddr,
> if (!lnk)
> return -ENOMEM;
>
> - m_pofs += vi->xattr_isize;
> - /* inline symlink data shouldn't cross block boundary */
> - if (m_pofs + inode->i_size > bsz) {
It can cross a boundary but it still can't be *bigger* right? IOW do we still need to check here for inode->i_size > bsz or is that handled by something else generic?
next prev parent reply other threads:[~2024-09-09 12:49 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-09 2:28 [PATCH] " Gao Xiang
2024-09-09 2:37 ` Gao Xiang
2024-09-09 3:19 ` [PATCH v2] " Gao Xiang
2024-09-09 12:48 ` Colin Walters [this message]
2024-09-09 13:21 ` Gao Xiang
2024-09-09 13:58 ` Colin Walters
2024-09-09 14:14 ` Gao Xiang
2024-09-09 14:46 ` Colin Walters
2024-09-09 15:40 ` Gao Xiang
2024-09-10 0:12 ` Colin Walters
2024-09-10 2:18 ` Gao Xiang
2024-09-10 20:51 ` Colin Walters
2024-09-11 2:27 ` Gao Xiang
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=bb2dd430-7de0-47da-ae5b-82ab2dd4d945@app.fastmail.com \
--to=walters@verbum.org \
--cc=hsiangkao@linux.alibaba.com \
--cc=linux-erofs@lists.ozlabs.org \
--cc=linux-kernel@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
all inboxes | Powered by JetHome®