From: Tang Yizhou <tangyeechou@gmail.com>
To: Jun Yang <littleddfu@gmail.com>,
Miklos Szeredi <miklos@szeredi.hu>,
fuse-devel@lists.linux.dev
Cc: Zhao Chen <winters.zc@antgroup.com>,
linux-kernel@vger.kernel.org, Jun Yang <junvyyang@tencent.com>,
TencentOS Corvus AI <corvus@tencent.com>
Subject: Re: [PATCH 0/2] fuse: fix request lifetime races in the resend path
Date: Fri, 14 Aug 2026 14:19:40 +0800 [thread overview]
Message-ID: <1bc066fa-ee8c-426a-9c63-b0ee305de5a5@gmail.com> (raw)
In-Reply-To: <20260804091757.503476-1-junvyyang@tencent.com>
On 4/8/26 5:17 pm, Jun Yang wrote:
> Two fixes for races introduced together with FUSE_NOTIFY_RESEND
> (760eac73f9f6, v6.9), where fuse_chan_resend() moves in-flight requests
> from fpq->processing back onto fiq->pending.
>
> Both concern the same invariant. FR_PENDING means "queued on fiq->pending,
> protected by fiq->lock", and it is what fuse_remove_pending_req() relies on
Hi,
Currently FR_PENDING doesn't mean the request is protected by fiq->lock. It
looks like this is your solution, so you need to clearly explain why you are
doing this.
> to unlink a request and drop the queue's reference. A request on
It is unrelated to the queue's reference. I think you need to check whether the
AI's output is correct first.
> fiq->pending can therefore be released without going through
> fuse_request_end(), so anything that sets FR_PENDING, or that leaves a
> request linked elsewhere while FR_PENDING is set, has to be done under
> fiq->lock.
>
> Patch 1 sets FR_PENDING under fiq->lock. fuse_chan_resend() currently
> publishes the bit while the requests are reachable only through a
> stack-local list, so a concurrent waiter can unlink and release a request
> that fuse_chan_resend() is still iterating over.
>
> Patch 2 re-checks FR_SENT under fiq->lock in fuse_dev_queue_interrupt().
> Its callers sample FR_SENT unlocked and fuse_chan_resend() clears it under
> fiq->lock, so a request can end up queued on fiq->pending and linked on
> fiq->interrupts at the same time.
>
> Dependency between the two patches
> ==================================
>
> They are independent and neither supersedes the other, so please apply them
> together rather than picking one. Patch 2 does not affect the unlocked
> FR_PENDING publish that patch 1 fixes. Patch 1 cannot catch an intr_entry
> that is linked after its locked walk has already run, because that link
> happens once fuse_chan_resend() has released fiq->lock. Patch 1 on its own
> also makes the condition patch 2 fixes easier to hit, since requests that
> would previously have been torn out of the resend list now survive to be
> re-queued.
>
> Both were found by code audit and confirmed on v7.2-rc6 (075b74841bd0),
> where the series was built and tested; the resend and interrupt paths were
> verified to still be exercised with the series applied.
>
> A KASAN reproducer for this issue is available if requested.
Since you have a KASAN reproducer, please first describe how to trigger the
issue and what the symptoms are, as a prelude to the solution.
--
Best Regards,
Yi
>
> Reported-by: TencentOS Corvus AI <corvus@tencent.com>
> Signed-off-by: Jun Yang <junvyyang@tencent.com>
>
> Jun Yang (2):
> fuse: set FR_PENDING under fiq->lock in fuse_chan_resend()
> fuse: don't queue an interrupt for a request that is back on
> fiq->pending
>
> fs/fuse/dev.c | 29 +++++++++++++++--------------
> 1 file changed, 15 insertions(+), 14 deletions(-)
>
prev parent reply other threads:[~2026-08-14 6:19 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-04 9:17 [PATCH 0/2] fuse: fix request lifetime races in the resend path Jun Yang
2026-08-04 9:17 ` [PATCH 1/2] fuse: set FR_PENDING under fiq->lock in fuse_chan_resend() Jun Yang
2026-08-14 7:23 ` Tang Yizhou
2026-08-17 10:25 ` Jun Yang
2026-08-17 13:30 ` Tang Yizhou
2026-08-18 8:39 ` Miklos Szeredi
2026-08-18 9:55 ` Yizhou Tang
2026-08-04 9:17 ` [PATCH 2/2] fuse: don't queue an interrupt for a request that is back on fiq->pending Jun Yang
2026-08-14 8:49 ` Tang Yizhou
2026-08-14 6:19 ` Tang Yizhou [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=1bc066fa-ee8c-426a-9c63-b0ee305de5a5@gmail.com \
--to=tangyeechou@gmail.com \
--cc=corvus@tencent.com \
--cc=fuse-devel@lists.linux.dev \
--cc=junvyyang@tencent.com \
--cc=linux-kernel@vger.kernel.org \
--cc=littleddfu@gmail.com \
--cc=miklos@szeredi.hu \
--cc=winters.zc@antgroup.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.