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)
committerJens Axboe <axboe@kernel.dk>
Fri, 8 Mar 2024 00:48:03 +0000 (17:48 -0700)
commitdeaef31bc1ec7966698a427da8c161930830e1cf
tree9b5c0c57d8dac2dc7bc87afe26cf915ebba04971
parentb5311dbc2c2eefac00f12888dcd15e90238d1828
io_uring/net: correctly handle multishot recvmsg retry setup

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>
io_uring/net.c