Skip to content

Commit d9ecc77

Browse files
joannekoongbrauner
authored andcommitted
fuse: fix uring race condition for null dereference of fc
There is a race condition leading to a kernel crash from a null dereference when attemping to access fc->lock in fuse_uring_create_queue(). fc may be NULL in the case where another thread is creating the uring in fuse_uring_create() and has set fc->ring but has not yet set ring->fc when fuse_uring_create_queue() reads ring->fc. There is another race condition as well where in fuse_uring_register(), ring->nr_queues may still be 0 and not yet set to the new value when we compare qid against it. This fix sets fc->ring only after ring->fc and ring->nr_queues have been set, which guarantees now that ring->fc is a proper pointer when any queues are created and ring->nr_queues reflects the right number of queues if ring is not NULL. We must use smp_store_release() and smp_load_acquire() semantics to ensure the ordering will remain correct where fc->ring is assigned only after ring->fc and ring->nr_queues have been assigned. Signed-off-by: Joanne Koong <joannelkoong@gmail.com> Link: https://lore.kernel.org/r/20250318003028.3330599-1-joannelkoong@gmail.com Fixes: 24fe962 ("fuse: {io-uring} Handle SQEs - register commands") Acked-by: Miklos Szeredi <mszeredi@redhat.com> Reviewed-by: Bernd Schubert <bschubert@ddn.com> Signed-off-by: Christian Brauner <brauner@kernel.org>
1 parent 0307d16 commit d9ecc77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fs/fuse/dev_uring.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,11 @@ static struct fuse_ring *fuse_uring_create(struct fuse_conn *fc)
208208

209209
init_waitqueue_head(&ring->stop_waitq);
210210

211-
fc->ring = ring;
212211
ring->nr_queues = nr_queues;
213212
ring->fc = fc;
214213
ring->max_payload_sz = max_payload_size;
215214
atomic_set(&ring->queue_refs, 0);
215+
smp_store_release(&fc->ring, ring);
216216

217217
spin_unlock(&fc->lock);
218218
return ring;
@@ -1041,7 +1041,7 @@ static int fuse_uring_register(struct io_uring_cmd *cmd,
10411041
unsigned int issue_flags, struct fuse_conn *fc)
10421042
{
10431043
const struct fuse_uring_cmd_req *cmd_req = io_uring_sqe_cmd(cmd->sqe);
1044-
struct fuse_ring *ring = fc->ring;
1044+
struct fuse_ring *ring = smp_load_acquire(&fc->ring);
10451045
struct fuse_ring_queue *queue;
10461046
struct fuse_ring_ent *ent;
10471047
int err;

0 commit comments

Comments
 (0)