* [PATCH liburing] test invalid sendmsg and recvmsg
@ 2022-09-23 15:18 Dylan Yudaken
2022-09-23 21:01 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Dylan Yudaken @ 2022-09-23 15:18 UTC (permalink / raw)
To: axboe, asml.silence
Cc: io-uring, Kernel-team, Dylan Yudaken, syzbot+4c597a574a3f5a251bda
Syzbot found a double free bug due to failure in sendmsg.
This test exposes the bug.
Reported-by: [email protected]
Signed-off-by: Dylan Yudaken <[email protected]>
---
test/send_recv.c | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/test/send_recv.c b/test/send_recv.c
index a7b001aa0d6e..3eb31afa0e63 100644
--- a/test/send_recv.c
+++ b/test/send_recv.c
@@ -257,6 +257,47 @@ static int test(int use_sqthread, int regfiles)
return (intptr_t)retval;
}
+static int test_invalid(void)
+{
+ struct io_uring ring;
+ int ret, i;
+ int fds[2];
+ struct io_uring_cqe *cqe;
+ struct io_uring_sqe *sqe;
+
+ ret = t_create_ring(8, &ring, 0);
+ if (ret)
+ return ret;
+
+ ret = t_create_socket_pair(fds, true);
+ if (ret)
+ return ret;
+
+ sqe = io_uring_get_sqe(&ring);
+ io_uring_prep_sendmsg(sqe, fds[0], NULL, MSG_WAITALL);
+ sqe->flags |= IOSQE_ASYNC;
+
+ sqe = io_uring_get_sqe(&ring);
+ io_uring_prep_recvmsg(sqe, fds[1], NULL, 0);
+ sqe->flags |= IOSQE_ASYNC;
+
+ ret = io_uring_submit_and_wait(&ring, 2);
+ if (ret != 2)
+ return ret;
+
+ for (i = 0; i < 2; i++) {
+ ret = io_uring_peek_cqe(&ring, &cqe);
+ if (ret || cqe->res != -EFAULT)
+ return -1;
+ io_uring_cqe_seen(&ring, cqe);
+ }
+
+ io_uring_queue_exit(&ring);
+ close(fds[0]);
+ close(fds[1]);
+ return 0;
+}
+
int main(int argc, char *argv[])
{
int ret;
@@ -264,6 +305,12 @@ int main(int argc, char *argv[])
if (argc > 1)
return 0;
+ ret = test_invalid();
+ if (ret) {
+ fprintf(stderr, "test_invalid failed\n");
+ return ret;
+ }
+
ret = test(0, 0);
if (ret) {
fprintf(stderr, "test sqthread=0 failed\n");
base-commit: d251ed9d6c8acc5037e1c4e124d03c1f95a9ca6d
--
2.30.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH liburing] test invalid sendmsg and recvmsg
2022-09-23 15:18 [PATCH liburing] test invalid sendmsg and recvmsg Dylan Yudaken
@ 2022-09-23 21:01 ` Jens Axboe
0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2022-09-23 21:01 UTC (permalink / raw)
To: Dylan Yudaken, asml.silence
Cc: io-uring, syzbot+4c597a574a3f5a251bda, Kernel-team
On Fri, 23 Sep 2022 08:18:58 -0700, Dylan Yudaken wrote:
> Syzbot found a double free bug due to failure in sendmsg.
> This test exposes the bug.
>
>
Applied, thanks!
[1/1] test invalid sendmsg and recvmsg
(no commit info)
Best regards,
--
Jens Axboe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-09-23 21:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-23 15:18 [PATCH liburing] test invalid sendmsg and recvmsg Dylan Yudaken
2022-09-23 21:01 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox