public inbox for [email protected]
 help / color / mirror / Atom feed
* [PATCH 1/1] io_uring: check if iowq is kileed before queuing
@ 2024-12-19 19:52 Pavel Begunkov
  2024-12-19 20:32 ` Jens Axboe
  0 siblings, 1 reply; 2+ messages in thread
From: Pavel Begunkov @ 2024-12-19 19:52 UTC (permalink / raw)
  To: io-uring; +Cc: asml.silence, Will

task works can be executed after the task has gone through io_uring
termination, whether it's the final task_work run or the fallback path.
In this case, task work will fined ->io_wq being already killed and
null'ed, which is a problem if it then tries to forward the request to
io_queue_iowq(). Make io_queue_iowq() to fail requests in this case.

Note that it also checks PF_KTHREAD, because the user can first close
a DEFER_TASKRUN ring and shortly after kill the task, in which case
->iowq check would race.

Cc: [email protected]
Fixes: 50c52250e2d74 ("block: implement async io_uring discard cmd")
Fixes: 773af69121ecc ("io_uring: always reissue from task_work context")
Reported-by: Will <[email protected]>
Signed-off-by: Pavel Begunkov <[email protected]>
---
 io_uring/io_uring.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c
index 5535a72b0ce1..8353a113bcc0 100644
--- a/io_uring/io_uring.c
+++ b/io_uring/io_uring.c
@@ -514,7 +514,11 @@ static void io_queue_iowq(struct io_kiocb *req)
 	struct io_uring_task *tctx = req->tctx;
 
 	BUG_ON(!tctx);
-	BUG_ON(!tctx->io_wq);
+
+	if ((current->flags & PF_KTHREAD) || !tctx->io_wq) {
+		io_req_task_queue_fail(req, -ECANCELED);
+		return;
+	}
 
 	/* init ->work of the whole link before punting */
 	io_prep_async_link(req);
-- 
2.47.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] io_uring: check if iowq is kileed before queuing
  2024-12-19 19:52 [PATCH 1/1] io_uring: check if iowq is kileed before queuing Pavel Begunkov
@ 2024-12-19 20:32 ` Jens Axboe
  0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2024-12-19 20:32 UTC (permalink / raw)
  To: io-uring, Pavel Begunkov; +Cc: Will


On Thu, 19 Dec 2024 19:52:58 +0000, Pavel Begunkov wrote:
> task works can be executed after the task has gone through io_uring
> termination, whether it's the final task_work run or the fallback path.
> In this case, task work will fined ->io_wq being already killed and
> null'ed, which is a problem if it then tries to forward the request to
> io_queue_iowq(). Make io_queue_iowq() to fail requests in this case.
> 
> Note that it also checks PF_KTHREAD, because the user can first close
> a DEFER_TASKRUN ring and shortly after kill the task, in which case
> ->iowq check would race.
> 
> [...]

Applied, thanks!

[1/1] io_uring: check if iowq is kileed before queuing
      commit: dbd2ca9367eb19bc5e269b8c58b0b1514ada9156

Best regards,
-- 
Jens Axboe




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-12-19 20:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-19 19:52 [PATCH 1/1] io_uring: check if iowq is kileed before queuing Pavel Begunkov
2024-12-19 20:32 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox