Skip to content

Commit 54aa7f2

Browse files
josephhzaxboe
authored andcommitted
io_uring: fix fget leak when fs don't support nowait buffered read
Heming reported a BUG when using io_uring doing link-cp on ocfs2. [1] Do the following steps can reproduce this BUG: mount -t ocfs2 /dev/vdc /mnt/ocfs2 cp testfile /mnt/ocfs2/ ./link-cp /mnt/ocfs2/testfile /mnt/ocfs2/testfile.1 umount /mnt/ocfs2 Then umount will fail, and it outputs: umount: /mnt/ocfs2: target is busy. While tracing umount, it blames mnt_get_count() not return as expected. Do a deep investigation for fget()/fput() on related code flow, I've finally found that fget() leaks since ocfs2 doesn't support nowait buffered read. io_issue_sqe |-io_assign_file // do fget() first |-io_read |-io_iter_do_read |-ocfs2_file_read_iter // return -EOPNOTSUPP |-kiocb_done |-io_rw_done |-__io_complete_rw_common // set REQ_F_REISSUE |-io_resubmit_prep |-io_req_prep_async // override req->file, leak happens This was introduced by commit a196c78 in v5.18. Fix it by don't re-assign req->file if it has already been assigned. [1] https://lore.kernel.org/ocfs2-devel/[email protected]/T/#t Fixes: a196c78 ("io_uring: assign non-fixed early for async work") Cc: <[email protected]> Reported-by: Heming Zhao <[email protected]> Signed-off-by: Joseph Qi <[email protected]> Cc: Xiaoguang Wang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jens Axboe <[email protected]>
1 parent c16bda3 commit 54aa7f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io_uring/io_uring.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@ int io_req_prep_async(struct io_kiocb *req)
17771777
const struct io_issue_def *def = &io_issue_defs[req->opcode];
17781778

17791779
/* assign early for deferred execution for non-fixed file */
1780-
if (def->needs_file && !(req->flags & REQ_F_FIXED_FILE))
1780+
if (def->needs_file && !(req->flags & REQ_F_FIXED_FILE) && !req->file)
17811781
req->file = io_file_get_normal(req, req->cqe.fd);
17821782
if (!cdef->prep_async)
17831783
return 0;

0 commit comments

Comments
 (0)