From: Joanne Koong <joannelkoong@gmail.com>
To: miklos@szeredi.hu
Cc: fuse-devel@lists.linux.dev, bernd@bsbernd.com, ali@ddn.com,
horst@birthelmer.de
Subject: [PATCH v3 2/3] fuse: check connection abort during ring creation
Date: Mon, 8 Jun 2026 12:21:48 -0700 [thread overview]
Message-ID: <20260608192149.23294-3-joannelkoong@gmail.com> (raw)
In-Reply-To: <20260608192149.23294-1-joannelkoong@gmail.com>
Check fch->connected under fch->lock in fuse_uring_create() before
attaching a new ring. Without this, a race between fuse_uring_create()
and fuse_chan_abort() can result in the ring, queue, and fpq.processing
table being created after fuse_uring_abort() has already run, leading
to unnecessary allocation and teardown. These are eventually cleaned up
by fuse_uring_destruct() but will linger until the process exits, even
with the connection aborted.
Reviewed-by: Bernd Schubert <bernd@bsbernd.com>
Signed-off-by: Joanne Koong <joannelkoong@gmail.com>
---
fs/fuse/dev_uring.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/fs/fuse/dev_uring.c b/fs/fuse/dev_uring.c
index 99ebb7c9cc61..d9108b5b5db8 100644
--- a/fs/fuse/dev_uring.c
+++ b/fs/fuse/dev_uring.c
@@ -244,6 +244,10 @@ static struct fuse_ring *fuse_uring_create(struct fuse_chan *fch)
max_payload_size = max(max_payload_size, fch->max_pages * PAGE_SIZE);
spin_lock(&fch->lock);
+ if (!fch->connected) {
+ spin_unlock(&fch->lock);
+ goto out_err;
+ }
if (fch->ring) {
/* race, another thread created the ring in the meantime */
spin_unlock(&fch->lock);
--
2.52.0
next prev parent reply other threads:[~2026-06-08 19:22 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-08 19:21 [PATCH v3 0/3] fuse: fix io-uring abort races and cancel null deref Joanne Koong
2026-06-08 19:21 ` [PATCH v3 1/3] fuse: fix race between registration and connection abortion Joanne Koong
2026-06-08 19:21 ` Joanne Koong [this message]
2026-06-08 19:21 ` [PATCH v3 3/3] fuse: fix moving cancelled entry to ent_in_userspace list Joanne Koong
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=20260608192149.23294-3-joannelkoong@gmail.com \
--to=joannelkoong@gmail.com \
--cc=ali@ddn.com \
--cc=bernd@bsbernd.com \
--cc=fuse-devel@lists.linux.dev \
--cc=horst@birthelmer.de \
--cc=miklos@szeredi.hu \
/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