]> git.itanic.dy.fi Git - linux-stable/commit
io_uring/net: correctly handle multishot recvmsg retry setup
authorJens Axboe <axboe@kernel.dk>
Fri, 8 Mar 2024 00:48:03 +0000 (17:48 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Apr 2024 13:32:17 +0000 (15:32 +0200)
commit847937bb9f19c1f53a24991d06e5e2a6c0c09517
treee28fa9ace473ad53bd18b34eee89250405024a1e
parent1f8f95955a4770ccafab8db97a8d5bf83feb90ad
io_uring/net: correctly handle multishot recvmsg retry setup

[ Upstream commit deaef31bc1ec7966698a427da8c161930830e1cf ]

If we loop for multishot receive on the initial attempt, and then abort
later on to wait for more, we miss a case where we should be copying the
io_async_msghdr from the stack to stable storage. This leads to the next
retry potentially failing, if the application had the msghdr on the
stack.

Cc: stable@vger.kernel.org
Fixes: 9bb66906f23e ("io_uring: support multishot in recvmsg")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
io_uring/net.c