1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/* SPDX-License-Identifier: MIT */
/*
* Test 5.7 regression with task_work not being run while a task is
* waiting on another event in the kernel.
*/
#include <errno.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/eventfd.h>
#include <unistd.h>
#include <pthread.h>
#include "liburing.h"
#include "helpers.h"
static int use_sqpoll = 0;
static void notify_fd(int fd)
{
char buf[8] = {0, 0, 0, 0, 0, 0, 1};
int ret;
ret = write(fd, &buf, 8);
if (ret < 0)
perror("write");
}
static void *delay_set_fd_from_thread(void *data)
{
int fd = (intptr_t) data;
sleep(1);
notify_fd(fd);
return NULL;
}
int main(int argc, char *argv[])
{
struct io_uring_params p = {};
struct io_uring ring;
int loop_fd, other_fd;
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe = NULL;
int ret, use_fd;
char buf[8] = {0, 0, 0, 0, 0, 0, 1};
pthread_t tid;
if (argc > 1)
return T_EXIT_SKIP;
/* Create an eventfd to be registered with the loop to be
* notified of events being ready
*/
loop_fd = eventfd(0, EFD_CLOEXEC);
if (loop_fd == -1) {
fprintf(stderr, "eventfd errno=%d\n", errno);
return T_EXIT_FAIL;
}
/* Create an eventfd that can create events */
use_fd = other_fd = eventfd(0, EFD_CLOEXEC);
if (other_fd == -1) {
fprintf(stderr, "eventfd errno=%d\n", errno);
return T_EXIT_FAIL;
}
if (use_sqpoll)
p.flags = IORING_SETUP_SQPOLL;
/* Setup the ring with a registered event fd to be notified on events */
ret = t_create_ring_params(8, &ring, &p);
if (ret == T_SETUP_SKIP)
return T_EXIT_PASS;
else if (ret < 0)
return ret;
ret = io_uring_register_eventfd(&ring, loop_fd);
if (ret < 0) {
fprintf(stderr, "register_eventfd=%d\n", ret);
return T_EXIT_FAIL;
}
if (use_sqpoll) {
ret = io_uring_register_files(&ring, &other_fd, 1);
if (ret < 0) {
fprintf(stderr, "register_files=%d\n", ret);
return T_EXIT_FAIL;
}
use_fd = 0;
}
/* Submit a poll operation to wait on an event in other_fd */
sqe = io_uring_get_sqe(&ring);
io_uring_prep_poll_add(sqe, use_fd, POLLIN);
sqe->user_data = 1;
if (use_sqpoll)
sqe->flags |= IOSQE_FIXED_FILE;
ret = io_uring_submit(&ring);
if (ret != 1) {
fprintf(stderr, "submit=%d\n", ret);
return T_EXIT_FAIL;
}
/*
* CASE 3: Hangs forever in Linux 5.7.5; Works in Linux 5.6.0 When this
* code is uncommented, we don't se a notification on other_fd until
* _after_ we have started the read on loop_fd. In that case, the read() on
* loop_fd seems to hang forever.
*/
pthread_create(&tid, NULL, delay_set_fd_from_thread,
(void*) (intptr_t) other_fd);
/* Wait on the event fd for an event to be ready */
do {
ret = read(loop_fd, buf, 8);
} while (ret < 0 && errno == EINTR);
if (ret < 0) {
perror("read");
return T_EXIT_FAIL;
} else if (ret != 8) {
fprintf(stderr, "Odd-sized eventfd read: %d\n", ret);
return T_EXIT_FAIL;
}
ret = io_uring_wait_cqe(&ring, &cqe);
if (ret) {
fprintf(stderr, "wait_cqe=%d\n", ret);
return ret;
}
if (cqe->res < 0) {
fprintf(stderr, "cqe->res=%d\n", cqe->res);
return T_EXIT_FAIL;
}
io_uring_cqe_seen(&ring, cqe);
return T_EXIT_PASS;
}
|