ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev_iouring.c
(Generate patch)

Comparing libev/ev_iouring.c (file contents):
Revision 1.8 by root, Fri Dec 27 16:08:24 2019 UTC vs.
Revision 1.25 by root, Sun May 9 18:41:06 2021 UTC

1/* 1/*
2 * libev linux io_uring fd activity backend 2 * libev linux io_uring fd activity backend
3 * 3 *
4 * Copyright (c) 2019 Marc Alexander Lehmann <libev@schmorp.de> 4 * Copyright (c) 2019-2020 Marc Alexander Lehmann <libev@schmorp.de>
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without modifica- 7 * Redistribution and use in source and binary forms, with or without modifica-
8 * tion, are permitted provided that the following conditions are met: 8 * tion, are permitted provided that the following conditions are met:
9 * 9 *
44 * b) best is not necessarily very good. 44 * b) best is not necessarily very good.
45 * c) it's better than the aio mess, doesn't suffer from the fork problems 45 * c) it's better than the aio mess, doesn't suffer from the fork problems
46 * of linux aio or epoll and so on and so on. and you could do event stuff 46 * of linux aio or epoll and so on and so on. and you could do event stuff
47 * without any syscalls. what's not to like? 47 * without any syscalls. what's not to like?
48 * d) ok, it's vastly more complex, but that's ok, really. 48 * d) ok, it's vastly more complex, but that's ok, really.
49 * e) why 3 mmaps instead of one? one would be more space-efficient, 49 * e) why two mmaps instead of one? one would be more space-efficient,
50 * and I can't see what benefit three would have (other than being 50 * and I can't see what benefit two would have (other than being
51 * somehow resizable/relocatable, but that's apparently not possible). 51 * somehow resizable/relocatable, but that's apparently not possible).
52 * (FIXME: newer kernels can use 2 mmaps only, need to look into this).
53 * f) hmm, it's practiclaly undebuggable (gdb can't access the memory, and 52 * f) hmm, it's practically undebuggable (gdb can't access the memory, and
54 * the bizarre way structure offsets are communicated makes it hard to 53 * the bizarre way structure offsets are communicated makes it hard to
55 * just print the ring buffer heads, even *iff* the memory were visible 54 * just print the ring buffer heads, even *iff* the memory were visible
56 * in gdb. but then, that's also ok, really. 55 * in gdb. but then, that's also ok, really.
57 * g) well, you cannot specify a timeout when waiting for events. no, 56 * g) well, you cannot specify a timeout when waiting for events. no,
58 * seriously, the interface doesn't support a timeout. never seen _that_ 57 * seriously, the interface doesn't support a timeout. never seen _that_
59 * before. sure, you can use a timerfd, but that's another syscall 58 * before. sure, you can use a timerfd, but that's another syscall
60 * you could have avoided. overall, this bizarre omission smells 59 * you could have avoided. overall, this bizarre omission smells
61 * like a µ-optimisation by the io_uring author for his personal 60 * like a µ-optimisation by the io_uring author for his personal
62 * applications, to the detriment of everybody else who just wants 61 * applications, to the detriment of everybody else who just wants
63 * an event loop. but, umm, ok, if that's all, it could be worse. 62 * an event loop. but, umm, ok, if that's all, it could be worse.
64 * (FIXME: jens mentioned timeout commands, need to investigate) 63 * (from what I gather from the author Jens Axboe, it simply didn't
64 * occur to him, and he made good on it by adding an unlimited number
65 * of timeouts later :).
65 * h) there is a hardcoded limit of 4096 outstanding events. okay, 66 * h) initially there was a hardcoded limit of 4096 outstanding events.
66 * at least there is no arbitrary low system-wide limit... 67 * later versions not only bump this to 32k, but also can handle
67 * (FIXME: apparently, this was increased to 32768 in later kernels( 68 * an unlimited amount of events, so this only affects the batch size.
68 * i) unlike linux aio, you *can* register more then the limit 69 * i) unlike linux aio, you *can* register more then the limit
69 * of fd events, and the kernel will "gracefully" signal an 70 * of fd events. while early verisons of io_uring signalled an overflow
70 * overflow, after which you could destroy and recreate the kernel 71 * and you ended up getting wet. 5.5+ does not do this anymore.
71 * state, a bit bigger, or fall back to e.g. poll. thats not
72 * totally insane, but kind of questions the point a high
73 * performance I/O framework when it doesn't really work
74 * under stress.
75 * (FIXME: iouring should no longer drop events, need to investigate)
76 * j) but, oh my! is has exactly the same bugs as the linux aio backend, 72 * j) but, oh my! it had exactly the same bugs as the linux aio backend,
77 * where some undocumented poll combinations just fail. 73 * where some undocumented poll combinations just fail. fortunately,
78 * so we need epoll AGAIN as a fallback. AGAIN! epoll!! and of course, 74 * after finally reaching the author, he was more than willing to fix
79 * this is completely undocumented, have I mantioned this already? 75 * this probably in 5.6+.
80 * k) overall, the *API* itself is, I dare to say, not a total trainwreck. 76 * k) overall, the *API* itself is, I dare to say, not a total trainwreck.
81 * the big isuess with it are the bugs requiring epoll, which might 77 * once the bugs ae fixed (probably in 5.6+), it will be without
82 * or might not get fixed (do I hold my breath?). 78 * competition.
83 */ 79 */
80
81/* TODO: use internal TIMEOUT */
82/* TODO: take advantage of single mmap, NODROP etc. */
83/* TODO: resize cq/sq size independently */
84 84
85#include <sys/timerfd.h> 85#include <sys/timerfd.h>
86#include <sys/mman.h> 86#include <sys/mman.h>
87#include <poll.h> 87#include <poll.h>
88#include <stdint.h>
88 89
89#define IOURING_INIT_ENTRIES 32 90#define IOURING_INIT_ENTRIES 32
90 91
91/*****************************************************************************/ 92/*****************************************************************************/
92/* syscall wrapdadoop - this section has the raw api/abi definitions */ 93/* syscall wrapdadoop - this section has the raw api/abi definitions */
117 __u32 timeout_flags; 118 __u32 timeout_flags;
118 __u32 accept_flags; 119 __u32 accept_flags;
119 __u32 cancel_flags; 120 __u32 cancel_flags;
120 __u32 open_flags; 121 __u32 open_flags;
121 __u32 statx_flags; 122 __u32 statx_flags;
123 __u32 fadvise_advice;
122 }; 124 };
123 __u64 user_data; 125 __u64 user_data;
124 union { 126 union {
125 __u16 buf_index; 127 __u16 buf_index;
128 __u16 personality;
126 __u64 __pad2[3]; 129 __u64 __pad2[3];
127 }; 130 };
128}; 131};
129 132
130struct io_uring_cqe 133struct io_uring_cqe
169 __u32 resv[4]; 172 __u32 resv[4];
170 struct io_sqring_offsets sq_off; 173 struct io_sqring_offsets sq_off;
171 struct io_cqring_offsets cq_off; 174 struct io_cqring_offsets cq_off;
172}; 175};
173 176
177#define IORING_FEAT_SINGLE_MMAP 0x00000001
178#define IORING_FEAT_NODROP 0x00000002
179#define IORING_FEAT_SUBMIT_STABLE 0x00000004
180
181#define IORING_SETUP_CQSIZE 0x00000008
182#define IORING_SETUP_CLAMP 0x00000010
183
174#define IORING_OP_POLL_ADD 6 184#define IORING_OP_POLL_ADD 6
175#define IORING_OP_POLL_REMOVE 7 185#define IORING_OP_POLL_REMOVE 7
186#define IORING_OP_TIMEOUT 11
187#define IORING_OP_TIMEOUT_REMOVE 12
188
189#define IORING_REGISTER_EVENTFD 4
190#define IORING_REGISTER_EVENTFD_ASYNC 7
191#define IORING_REGISTER_PROBE 8
192
193#define IO_URING_OP_SUPPORTED 1
194
195struct io_uring_probe_op {
196 __u8 op;
197 __u8 resv;
198 __u16 flags;
199 __u32 resv2;
200};
201
202struct io_uring_probe
203{
204 __u8 last_op;
205 __u8 ops_len;
206 __u16 resv;
207 __u32 resv2[3];
208 struct io_uring_probe_op ops[0];
209};
210
211/* relative or absolute, reference clock is CLOCK_MONOTONIC */
212struct iouring_kernel_timespec
213{
214 int64_t tv_sec;
215 long long tv_nsec;
216};
217
218#define IORING_TIMEOUT_ABS 0x00000001
176 219
177#define IORING_ENTER_GETEVENTS 0x01 220#define IORING_ENTER_GETEVENTS 0x01
178 221
179#define IORING_OFF_SQ_RING 0x00000000ULL 222#define IORING_OFF_SQ_RING 0x00000000ULL
180#define IORING_OFF_CQ_RING 0x08000000ULL
181#define IORING_OFF_SQES 0x10000000ULL 223#define IORING_OFF_SQES 0x10000000ULL
182 224
183#define IORING_FEAT_SINGLE_MMAP 0x1 225#define IORING_FEAT_SINGLE_MMAP 0x00000001
184#define IORING_FEAT_NODROP 0x2 226#define IORING_FEAT_NODROP 0x00000002
185#define IORING_FEAT_SUBMIT_STABLE 0x4 227#define IORING_FEAT_SUBMIT_STABLE 0x00000004
186 228
187inline_size 229inline_size
188int 230int
189evsys_io_uring_setup (unsigned entries, struct io_uring_params *params) 231evsys_io_uring_setup (unsigned entries, struct io_uring_params *params)
190{ 232{
196evsys_io_uring_enter (int fd, unsigned to_submit, unsigned min_complete, unsigned flags, const sigset_t *sig, size_t sigsz) 238evsys_io_uring_enter (int fd, unsigned to_submit, unsigned min_complete, unsigned flags, const sigset_t *sig, size_t sigsz)
197{ 239{
198 return ev_syscall6 (SYS_io_uring_enter, fd, to_submit, min_complete, flags, sig, sigsz); 240 return ev_syscall6 (SYS_io_uring_enter, fd, to_submit, min_complete, flags, sig, sigsz);
199} 241}
200 242
243inline_size
244int
245evsys_io_uring_register (unsigned int fd, unsigned int opcode, void *arg, unsigned int nr_args)
246{
247 return ev_syscall4 (SYS_io_uring_register, fd, opcode, arg, nr_args);
248}
249
201/*****************************************************************************/ 250/*****************************************************************************/
202/* actual backed implementation */ 251/* actual backend implementation */
203 252
204/* we hope that volatile will make the compiler access this variables only once */ 253/* we hope that volatile will make the compiler access this variables only once */
205#define EV_SQ_VAR(name) *(volatile unsigned *)((char *)iouring_sq_ring + iouring_sq_ ## name)
206#define EV_CQ_VAR(name) *(volatile unsigned *)((char *)iouring_cq_ring + iouring_cq_ ## name) 254#define EV_SQ_VAR(name) *(volatile unsigned *)((char *)iouring_ring + iouring_sq_ ## name)
255#define EV_CQ_VAR(name) *(volatile unsigned *)((char *)iouring_ring + iouring_cq_ ## name)
207 256
208/* the index array */ 257/* the index array */
209#define EV_SQ_ARRAY ((unsigned *)((char *)iouring_sq_ring + iouring_sq_array)) 258#define EV_SQ_ARRAY ((unsigned *)((char *)iouring_ring + iouring_sq_array))
210 259
211/* the submit/completion queue entries */ 260/* the submit/completion queue entries */
212#define EV_SQES ((struct io_uring_sqe *) iouring_sqes) 261#define EV_SQES ((struct io_uring_sqe *) iouring_sqes)
213#define EV_CQES ((struct io_uring_cqe *)((char *)iouring_cq_ring + iouring_cq_cqes)) 262#define EV_CQES ((struct io_uring_cqe *)((char *)iouring_ring + iouring_cq_cqes))
263
264inline_speed
265int
266iouring_enter (EV_P_ ev_tstamp timeout)
267{
268 int res;
269
270 EV_RELEASE_CB;
271
272 res = evsys_io_uring_enter (iouring_fd, iouring_to_submit, 1,
273 timeout > EV_TS_CONST (0.) ? IORING_ENTER_GETEVENTS : 0, 0, 0);
274
275 assert (("libev: io_uring_enter did not consume all sqes", (res < 0 || res == iouring_to_submit)));
276
277 iouring_to_submit = 0;
278
279 EV_ACQUIRE_CB;
280
281 return res;
282}
283
284/* TODO: can we move things around so we don't need this forward-reference? */
285static void
286iouring_poll (EV_P_ ev_tstamp timeout);
214 287
215static 288static
216struct io_uring_sqe * 289struct io_uring_sqe *
217iouring_sqe_get (EV_P) 290iouring_sqe_get (EV_P)
218{ 291{
292 unsigned tail;
293
294 for (;;)
295 {
219 unsigned tail = EV_SQ_VAR (tail); 296 tail = EV_SQ_VAR (tail);
220 297
221 if (tail + 1 - EV_SQ_VAR (head) > EV_SQ_VAR (ring_entries)) 298 if (ecb_expect_true (tail + 1 - EV_SQ_VAR (head) <= EV_SQ_VAR (ring_entries)))
299 break; /* whats the problem, we have free sqes */
300
301 /* queue full, need to flush and possibly handle some events */
302
303#if EV_FEATURE_CODE
304 /* first we ask the kernel nicely, most often this frees up some sqes */
305 int res = iouring_enter (EV_A_ EV_TS_CONST (0.));
306
307 ECB_MEMORY_FENCE_ACQUIRE; /* better safe than sorry */
308
309 if (res >= 0)
310 continue; /* yes, it worked, try again */
311#endif
312
313 /* some problem, possibly EBUSY - do the full poll and let it handle any issues */
314
315 iouring_poll (EV_A_ EV_TS_CONST (0.));
316 /* iouring_poll should have done ECB_MEMORY_FENCE_ACQUIRE for us */
222 { 317 }
223 /* queue full, flush */
224 evsys_io_uring_enter (iouring_fd, iouring_to_submit, 0, 0, 0, 0);
225 iouring_to_submit = 0;
226 }
227 318
228 assert (("libev: io_uring queue full after flush", tail + 1 - EV_SQ_VAR (head) <= EV_SQ_VAR (ring_entries))); 319 /*assert (("libev: io_uring queue full after flush", tail + 1 - EV_SQ_VAR (head) <= EV_SQ_VAR (ring_entries)));*/
229 320
230 return EV_SQES + (tail & EV_SQ_VAR (ring_mask)); 321 return EV_SQES + (tail & EV_SQ_VAR (ring_mask));
231} 322}
232 323
233inline_size 324inline_size
234struct io_uring_sqe * 325void
235iouring_sqe_submit (EV_P_ struct io_uring_sqe *sqe) 326iouring_sqe_submit (EV_P_ struct io_uring_sqe *sqe)
236{ 327{
237 unsigned idx = sqe - EV_SQES; 328 unsigned idx = sqe - EV_SQES;
238 329
239 EV_SQ_ARRAY [idx] = idx; 330 EV_SQ_ARRAY [idx] = idx;
261iouring_internal_destroy (EV_P) 352iouring_internal_destroy (EV_P)
262{ 353{
263 close (iouring_tfd); 354 close (iouring_tfd);
264 close (iouring_fd); 355 close (iouring_fd);
265 356
266 if (iouring_sq_ring != MAP_FAILED) munmap (iouring_sq_ring, iouring_sq_ring_size); 357 if (iouring_ring != MAP_FAILED) munmap (iouring_ring, iouring_ring_size);
267 if (iouring_cq_ring != MAP_FAILED) munmap (iouring_cq_ring, iouring_cq_ring_size);
268 if (iouring_sqes != MAP_FAILED) munmap (iouring_sqes , iouring_sqes_size ); 358 if (iouring_sqes != MAP_FAILED) munmap (iouring_sqes, iouring_sqes_size);
269 359
270 if (ev_is_active (&iouring_tfd_w)) 360 if (ev_is_active (&iouring_tfd_w))
271 { 361 {
272 ev_ref (EV_A); 362 ev_ref (EV_A);
273 ev_io_stop (EV_A_ &iouring_tfd_w); 363 ev_io_stop (EV_A_ &iouring_tfd_w);
277ecb_cold 367ecb_cold
278static int 368static int
279iouring_internal_init (EV_P) 369iouring_internal_init (EV_P)
280{ 370{
281 struct io_uring_params params = { 0 }; 371 struct io_uring_params params = { 0 };
372 uint32_t sq_size, cq_size;
373
374 params.flags = IORING_SETUP_CLAMP;
282 375
283 iouring_to_submit = 0; 376 iouring_to_submit = 0;
284 377
285 iouring_tfd = -1; 378 iouring_tfd = -1;
286 iouring_sq_ring = MAP_FAILED; 379 iouring_ring = MAP_FAILED;
287 iouring_cq_ring = MAP_FAILED;
288 iouring_sqes = MAP_FAILED; 380 iouring_sqes = MAP_FAILED;
289 381
290 for (;;) 382 if (!have_monotonic) /* cannot really happen, but what if11 */
291 { 383 return -1;
384
292 iouring_fd = evsys_io_uring_setup (iouring_entries, &params); 385 iouring_fd = evsys_io_uring_setup (iouring_entries, &params);
293 386
294 if (iouring_fd >= 0) 387 if (iouring_fd < 0)
295 break; /* yippie */
296
297 if (errno != EINVAL)
298 return -1; /* we failed */
299
300 /* EINVAL: lots of possible reasons, but maybe
301 * it is because we hit the unqueryable hardcoded size limit
302 */
303
304 /* we hit the limit already, give up */
305 if (iouring_max_entries)
306 return -1; 388 return -1;
307 389
308 /* first time we hit EINVAL? assume we hit the limit, so go back and retry */ 390 if ((~params.features) & (IORING_FEAT_NODROP | IORING_FEAT_SINGLE_MMAP | IORING_FEAT_SUBMIT_STABLE))
309 iouring_entries >>= 1; 391 return -1; /* we require the above features */
310 iouring_max_entries = iouring_entries;
311 }
312 392
393 /* TODO: remember somehow whether our queue size has been clamped */
394
313 iouring_sq_ring_size = params.sq_off.array + params.sq_entries * sizeof (unsigned); 395 sq_size = params.sq_off.array + params.sq_entries * sizeof (unsigned);
314 iouring_cq_ring_size = params.cq_off.cqes + params.cq_entries * sizeof (struct io_uring_cqe); 396 cq_size = params.cq_off.cqes + params.cq_entries * sizeof (struct io_uring_cqe);
397
398 iouring_ring_size = sq_size > cq_size ? sq_size : cq_size;
315 iouring_sqes_size = params.sq_entries * sizeof (struct io_uring_sqe); 399 iouring_sqes_size = params.sq_entries * sizeof (struct io_uring_sqe);
316 400
317 iouring_sq_ring = mmap (0, iouring_sq_ring_size, PROT_READ | PROT_WRITE, 401 iouring_ring = mmap (0, iouring_ring_size, PROT_READ | PROT_WRITE,
318 MAP_SHARED | MAP_POPULATE, iouring_fd, IORING_OFF_SQ_RING); 402 MAP_SHARED | MAP_POPULATE, iouring_fd, IORING_OFF_SQ_RING);
319 iouring_cq_ring = mmap (0, iouring_cq_ring_size, PROT_READ | PROT_WRITE,
320 MAP_SHARED | MAP_POPULATE, iouring_fd, IORING_OFF_CQ_RING);
321 iouring_sqes = mmap (0, iouring_sqes_size, PROT_READ | PROT_WRITE, 403 iouring_sqes = mmap (0, iouring_sqes_size, PROT_READ | PROT_WRITE,
322 MAP_SHARED | MAP_POPULATE, iouring_fd, IORING_OFF_SQES); 404 MAP_SHARED | MAP_POPULATE, iouring_fd, IORING_OFF_SQES);
323 405
324 if (iouring_sq_ring == MAP_FAILED || iouring_cq_ring == MAP_FAILED || iouring_sqes == MAP_FAILED) 406 if (iouring_ring == MAP_FAILED || iouring_sqes == MAP_FAILED)
325 return -1; 407 return -1;
326 408
327 iouring_sq_head = params.sq_off.head; 409 iouring_sq_head = params.sq_off.head;
328 iouring_sq_tail = params.sq_off.tail; 410 iouring_sq_tail = params.sq_off.tail;
329 iouring_sq_ring_mask = params.sq_off.ring_mask; 411 iouring_sq_ring_mask = params.sq_off.ring_mask;
337 iouring_cq_ring_mask = params.cq_off.ring_mask; 419 iouring_cq_ring_mask = params.cq_off.ring_mask;
338 iouring_cq_ring_entries = params.cq_off.ring_entries; 420 iouring_cq_ring_entries = params.cq_off.ring_entries;
339 iouring_cq_overflow = params.cq_off.overflow; 421 iouring_cq_overflow = params.cq_off.overflow;
340 iouring_cq_cqes = params.cq_off.cqes; 422 iouring_cq_cqes = params.cq_off.cqes;
341 423
424 iouring_tfd_to = EV_TSTAMP_HUGE;
425
342 iouring_tfd = timerfd_create (CLOCK_MONOTONIC, TFD_CLOEXEC); 426 iouring_tfd = timerfd_create (CLOCK_MONOTONIC, TFD_CLOEXEC);
343 427
344 if (iouring_tfd < 0) 428 if (iouring_tfd < 0)
345 return iouring_tfd; 429 return -1;
346
347 iouring_tfd_to = EV_TSTAMP_HUGE;
348 430
349 return 0; 431 return 0;
350} 432}
351 433
352ecb_cold 434ecb_cold
374 { 456 {
375 /* we assume the sqe's are all "properly" initialised */ 457 /* we assume the sqe's are all "properly" initialised */
376 struct io_uring_sqe *sqe = iouring_sqe_get (EV_A); 458 struct io_uring_sqe *sqe = iouring_sqe_get (EV_A);
377 sqe->opcode = IORING_OP_POLL_REMOVE; 459 sqe->opcode = IORING_OP_POLL_REMOVE;
378 sqe->fd = fd; 460 sqe->fd = fd;
461 /* Jens Axboe notified me that user_data is not what is documented, but is
462 * some kind of unique ID that has to match, otherwise the request cannot
463 * be removed. Since we don't *really* have that, we pass in the old
464 * generation counter - if that fails, too bad, it will hopefully be removed
465 * at close time and then be ignored. */
466 sqe->addr = (uint32_t)fd | ((__u64)(uint32_t)anfds [fd].egen << 32);
379 sqe->user_data = -1; 467 sqe->user_data = (uint64_t)-1;
380 iouring_sqe_submit (EV_A_ sqe); 468 iouring_sqe_submit (EV_A_ sqe);
381 469
382 /* increment generation counter to avoid handling old events */ 470 /* increment generation counter to avoid handling old events */
383 ++anfds [fd].egen; 471 ++anfds [fd].egen;
384 } 472 }
386 if (nev) 474 if (nev)
387 { 475 {
388 struct io_uring_sqe *sqe = iouring_sqe_get (EV_A); 476 struct io_uring_sqe *sqe = iouring_sqe_get (EV_A);
389 sqe->opcode = IORING_OP_POLL_ADD; 477 sqe->opcode = IORING_OP_POLL_ADD;
390 sqe->fd = fd; 478 sqe->fd = fd;
479 sqe->addr = 0;
391 sqe->user_data = (uint32_t)fd | ((__u64)(uint32_t)anfds [fd].egen << 32); 480 sqe->user_data = (uint32_t)fd | ((__u64)(uint32_t)anfds [fd].egen << 32);
392 sqe->poll_events = 481 sqe->poll_events =
393 (nev & EV_READ ? POLLIN : 0) 482 (nev & EV_READ ? POLLIN : 0)
394 | (nev & EV_WRITE ? POLLOUT : 0); 483 | (nev & EV_WRITE ? POLLOUT : 0);
395 iouring_sqe_submit (EV_A_ sqe); 484 iouring_sqe_submit (EV_A_ sqe);
425{ 514{
426 int fd = cqe->user_data & 0xffffffffU; 515 int fd = cqe->user_data & 0xffffffffU;
427 uint32_t gen = cqe->user_data >> 32; 516 uint32_t gen = cqe->user_data >> 32;
428 int res = cqe->res; 517 int res = cqe->res;
429 518
430 /* ignore fd removal events, if there are any. TODO: verify */ 519 /* user_data -1 is a remove that we are not atm. interested in */
431 if (cqe->user_data == (__u64)-1) 520 if (cqe->user_data == (uint64_t)-1)
432 abort ();//D 521 return;
433 522
434 assert (("libev: io_uring fd must be in-bounds", fd >= 0 && fd < anfdmax)); 523 assert (("libev: io_uring fd must be in-bounds", fd >= 0 && fd < anfdmax));
435 524
436 /* documentation lies, of course. the result value is NOT like 525 /* documentation lies, of course. the result value is NOT like
437 * normal syscalls, but like linux raw syscalls, i.e. negative 526 * normal syscalls, but like linux raw syscalls, i.e. negative
438 * error numbers. fortunate, as otherwise there would be no way 527 * error numbers. fortunate, as otherwise there would be no way
439 * to get error codes at all. still, why not document this? 528 * to get error codes at all. still, why not document this?
440 */ 529 */
441 530
442 /* ignore event if generation doesn't match */ 531 /* ignore event if generation doesn't match */
532 /* other than skipping removal events, */
443 /* this should actually be very rare */ 533 /* this should actually be very rare */
444 if (ecb_expect_false (gen != (uint32_t)anfds [fd].egen)) 534 if (ecb_expect_false (gen != (uint32_t)anfds [fd].egen))
445 return; 535 return;
446 536
447 if (ecb_expect_false (res < 0)) 537 if (ecb_expect_false (res < 0))
448 { 538 {
449 //TODO: EINVAL handling (was something failed with this fd) 539 /*TODO: EINVAL handling (was something failed with this fd)*/
450 //TODO: EBUSY happens when?
451 540
452 if (res == -EBADF) 541 if (res == -EBADF)
453 { 542 {
454 assert (("libev: event loop rejected bad fd", res != -EBADF)); 543 assert (("libev: event loop rejected bad fd", res != -EBADF));
455 fd_kill (EV_A_ fd); 544 fd_kill (EV_A_ fd);
483iouring_overflow (EV_P) 572iouring_overflow (EV_P)
484{ 573{
485 /* we have two options, resize the queue (by tearing down 574 /* we have two options, resize the queue (by tearing down
486 * everything and recreating it, or living with it 575 * everything and recreating it, or living with it
487 * and polling. 576 * and polling.
488 * we implement this by resizing tghe queue, and, if that fails, 577 * we implement this by resizing the queue, and, if that fails,
489 * we just recreate the state on every failure, which 578 * we just recreate the state on every failure, which
490 * kind of is a very inefficient poll. 579 * kind of is a very inefficient poll.
491 * one danger is, due to the bios toward lower fds, 580 * one danger is, due to the bios toward lower fds,
492 * we will only really get events for those, so 581 * we will only really get events for those, so
493 * maybe we need a poll() fallback, after all. 582 * maybe we need a poll() fallback, after all.
505 else 594 else
506 { 595 {
507 /* we hit the kernel limit, we should fall back to something else. 596 /* we hit the kernel limit, we should fall back to something else.
508 * we can either poll() a few times and hope for the best, 597 * we can either poll() a few times and hope for the best,
509 * poll always, or switch to epoll. 598 * poll always, or switch to epoll.
510 * since we use epoll anyways, go epoll. 599 * TODO: is this necessary with newer kernels?
511 */ 600 */
512 601
513 iouring_internal_destroy (EV_A); 602 iouring_internal_destroy (EV_A);
514 603
515 /* this should make it so that on return, we don'T call any uring functions */ 604 /* this should make it so that on return, we don't call any uring functions */
516 iouring_to_submit = 0; 605 iouring_to_submit = 0;
517 606
518 for (;;) 607 for (;;)
519 { 608 {
520 backend = epoll_init (EV_A_ 0); 609 backend = epoll_init (EV_A_ 0);
561 650
562static void 651static void
563iouring_poll (EV_P_ ev_tstamp timeout) 652iouring_poll (EV_P_ ev_tstamp timeout)
564{ 653{
565 /* if we have events, no need for extra syscalls, but we might have to queue events */ 654 /* if we have events, no need for extra syscalls, but we might have to queue events */
655 /* we also clar the timeout if there are outstanding fdchanges */
656 /* the latter should only happen if both the sq and cq are full, most likely */
657 /* because we have a lot of event sources that immediately complete */
658 /* TODO: fdchacngecnt is always 0 because fd_reify does not have two buffers yet */
566 if (iouring_handle_cq (EV_A)) 659 if (iouring_handle_cq (EV_A) || fdchangecnt)
567 timeout = EV_TS_CONST (0.); 660 timeout = EV_TS_CONST (0.);
568 else 661 else
569 /* no events, so maybe wait for some */ 662 /* no events, so maybe wait for some */
570 iouring_tfd_update (EV_A_ timeout); 663 iouring_tfd_update (EV_A_ timeout);
571 664
572 /* only enter the kernel if we have something to submit, or we need to wait */ 665 /* only enter the kernel if we have something to submit, or we need to wait */
573 if (timeout || iouring_to_submit) 666 if (timeout || iouring_to_submit)
574 { 667 {
575 int res; 668 int res = iouring_enter (EV_A_ timeout);
576
577 EV_RELEASE_CB;
578
579 res = evsys_io_uring_enter (iouring_fd, iouring_to_submit, 1,
580 timeout > EV_TS_CONST (0.) ? IORING_ENTER_GETEVENTS : 0, 0, 0);
581 iouring_to_submit = 0;
582
583 EV_ACQUIRE_CB;
584 669
585 if (ecb_expect_false (res < 0)) 670 if (ecb_expect_false (res < 0))
586 if (errno == EINTR) 671 if (errno == EINTR)
587 /* ignore */; 672 /* ignore */;
673 else if (errno == EBUSY)
674 /* cq full, cannot submit - should be rare because we flush the cq first, so simply ignore */;
588 else 675 else
589 ev_syserr ("(libev) iouring setup"); 676 ev_syserr ("(libev) iouring setup");
590 else 677 else
591 iouring_handle_cq (EV_A); 678 iouring_handle_cq (EV_A);
592 } 679 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines