]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
fuse: fix io-uring list corruption for terminated non-committed requests
authorJoanne Koong <joannelkoong@gmail.com>
Tue, 25 Nov 2025 18:13:47 +0000 (10:13 -0800)
committerMiklos Szeredi <mszeredi@redhat.com>
Wed, 26 Nov 2025 11:38:40 +0000 (12:38 +0100)
When a request is terminated before it has been committed, the request
is not removed from the queue's list. This leaves a dangling list entry
that leads to list corruption and use-after-free issues.

Remove the request from the queue's list for terminated non-committed
requests.

Signed-off-by: Joanne Koong <joannelkoong@gmail.com>
Fixes: c090c8abae4b ("fuse: Add io-uring sqe commit and fetch support")
Cc: stable@vger.kernel.org
Reviewed-by: Bernd Schubert <bschubert@ddn.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
fs/fuse/dev_uring.c

index 0066c9c0a5d52057acbbe51a358f87b9abe1f0e1..7760fe4e1f9e6269ca5a4a443587af0ab8f83352 100644 (file)
@@ -86,6 +86,7 @@ static void fuse_uring_req_end(struct fuse_ring_ent *ent, struct fuse_req *req,
        lockdep_assert_not_held(&queue->lock);
        spin_lock(&queue->lock);
        ent->fuse_req = NULL;
+       list_del_init(&req->list);
        if (test_bit(FR_BACKGROUND, &req->flags)) {
                queue->active_background--;
                spin_lock(&fc->bg_lock);