io_uring: fix assign file locking issue
authorPavel Begunkov <asml.silence@gmail.com>
Tue, 12 Apr 2022 14:24:43 +0000 (15:24 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 12 Apr 2022 14:39:49 +0000 (08:39 -0600)
io-wq work cancellation path can't take uring_lock as how it's done on
file assignment, we have to handle IO_WQ_WORK_CANCEL first, this fixes
encountered hangs.

Fixes: 6bf9c47a3989 ("io_uring: defer file assignment")
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/0d9b9f37841645518503f6a207e509d14a286aba.1649773463.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c

index 38e62b1c62971bf826e2738cc8db063ddf5b1367..8a931eb8a3a62920d87be96cdc9780c820186e1f 100644 (file)
@@ -7277,16 +7277,18 @@ static void io_wq_submit_work(struct io_wq_work *work)
        if (timeout)
                io_queue_linked_timeout(timeout);
 
-       if (!io_assign_file(req, issue_flags)) {
-               err = -EBADF;
-               work->flags |= IO_WQ_WORK_CANCEL;
-       }
 
        /* either cancelled or io-wq is dying, so don't touch tctx->iowq */
        if (work->flags & IO_WQ_WORK_CANCEL) {
+fail:
                io_req_task_queue_fail(req, err);
                return;
        }
+       if (!io_assign_file(req, issue_flags)) {
+               err = -EBADF;
+               work->flags |= IO_WQ_WORK_CANCEL;
+               goto fail;
+       }
 
        if (req->flags & REQ_F_FORCE_ASYNC) {
                bool opcode_poll = def->pollin || def->pollout;