From: Viacheslav Dubeyko <slava@dubeyko.com>
To: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Cc: linux-nilfs <linux-nilfs@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
syzbot+c37bed40868932d790e9@syzkaller.appspotmail.com,
syzkaller-bugs@googlegroups.com,
wuyankun <wuyankun@uniontech.com>
Subject: Re: [PATCH] nilfs2: reject invalid block index in GC ioctl
Date: Thu, 02 Jul 2026 16:09:22 -0700 [thread overview]
Message-ID: <3fd92e0979538d5b36fdfb37d30583268b6fbf74.camel@dubeyko.com> (raw)
In-Reply-To: <20260702161045.27555-1-konishi.ryusuke@gmail.com>
On Fri, 2026-07-03 at 01:07 +0900, Ryusuke Konishi wrote:
> Syzbot reported list corruption caused by a double list_add_tail()
> call on
> bh->b_assoc_buffers within nilfs_lookup_dirty_data_buffers().
>
> Analysis revealed that the root cause was the insertion of a
> page/folio
> with a page index of ULONG_MAX into the page cache via the GC ioctl.
> filemap_get_folios_tag(), called by
> nilfs_lookup_dirty_data_buffers(),
> repeatedly detects a dirty folio with a page index of ULONG_MAX due
> to
> index wrap-around, leading to duplicate processing of dirty buffers.
>
> As a preparatory step, the GC ioctl loads the page/folio of the block
> to
> be moved during GC and inserts it into the page cache based on
> information
> in the nilfs_vdesc structure passed as an argument. Normally, this
> does
> not cause issues because the user-space GC library configures the
> nilfs_vdesc structure properly. However, since there is no range
> check on
> the parameters determining the page index, a request with
> artificially
> crafted parameters -- such as those generated by Syzbot -- can result
> in a
> page/folio being inserted with a page index of ULONG_MAX, triggering
> the
> above problem.
>
> This resolves the issue by checking the ranges of 'vd_offset' and
> 'vd_vblocknr' in the nilfs_vdesc structure that determine the page
> index,
> thereby preventing the invalid page/folio insertions.
>
> Reported-by: syzbot+c37bed40868932d790e9@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=c37bed40868932d790e9
> Fixes: 7942b919f732 ("nilfs2: ioctl operations")
> Cc: wuyankun <wuyankun@uniontech.com>
> Cc: stable@vger.kernel.org
> Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
> ---
> Hi Viacheslav,
>
> Please apply this one.
>
> This fixes the list corruption issue recently detected by syzbot,
> that
> can occur when out-of-range values are intentionally passed to
> certain
> GC ioctl parameters.
>
> Thanks,
> Ryusuke Konishi
>
> fs/nilfs2/ioctl.c | 20 ++++++++++++++++++--
> 1 file changed, 18 insertions(+), 2 deletions(-)
>
> diff --git a/fs/nilfs2/ioctl.c b/fs/nilfs2/ioctl.c
> index b73f2c5d10f0..0957316e58b8 100644
> --- a/fs/nilfs2/ioctl.c
> +++ b/fs/nilfs2/ioctl.c
> @@ -527,6 +527,7 @@ static int nilfs_ioctl_get_bdescs(struct inode
> *inode, struct file *filp,
> * Return: 0 on success, or one of the following negative error
> codes on
> * failure:
> * * %-EEXIST - Block conflict detected.
> + * * %-EINVAL - Invalid virtual block descriptor.
> * * %-EIO - I/O error.
> * * %-ENOENT - Requested block doesn't exist.
> * * %-ENOMEM - Insufficient memory available.
> @@ -536,15 +537,30 @@ static int nilfs_ioctl_move_inode_block(struct
> inode *inode,
> struct list_head *buffers)
> {
> struct buffer_head *bh;
> + __u64 limit_blkidx = (__u64)inode->i_sb->s_maxbytes >>
> inode->i_blkbits;
> int ret;
>
> - if (vdesc->vd_flags == 0)
> + /*
> + * vblocknr 0 is reserved as an invalid pointer. Also,
> limit_blkidx
> + * ensures that the page index converted from vd_vblocknr
> never
> + * overflows the page cache limit and respects the
> architecture's bmap
> + * key width.
> + */
> + if (unlikely(vdesc->vd_vblocknr == 0 ||
> + vdesc->vd_vblocknr >= limit_blkidx))
> + return -EINVAL;
> +
> + if (vdesc->vd_flags == 0) {
> + if (unlikely(vdesc->vd_offset >= limit_blkidx))
> + return -EINVAL;
> +
> ret = nilfs_gccache_submit_read_data(
> inode, vdesc->vd_offset, vdesc->vd_blocknr,
> vdesc->vd_vblocknr, &bh);
> - else
> + } else {
> ret = nilfs_gccache_submit_read_node(
> inode, vdesc->vd_blocknr, vdesc-
> >vd_vblocknr, &bh);
> + }
>
> if (unlikely(ret < 0)) {
> if (ret == -ENOENT)
Applied.
Thanks,
Slava.
prev parent reply other threads:[~2026-07-02 23:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-02 16:07 Ryusuke Konishi
2026-07-02 23:09 ` Viacheslav Dubeyko [this message]
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=3fd92e0979538d5b36fdfb37d30583268b6fbf74.camel@dubeyko.com \
--to=slava@dubeyko.com \
--cc=konishi.ryusuke@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nilfs@vger.kernel.org \
--cc=syzbot+c37bed40868932d790e9@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.com \
--cc=wuyankun@uniontech.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