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.14 by root, Sat Dec 28 05:20:17 2019 UTC

80 * k) overall, the *API* itself is, I dare to say, not a total trainwreck. 80 * 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 81 * the big isuess with it are the bugs requiring epoll, which might
82 * or might not get fixed (do I hold my breath?). 82 * or might not get fixed (do I hold my breath?).
83 */ 83 */
84 84
85/* TODO: use internal TIMEOUT */
86/* TODO: take advantage of single mmap, NODROP etc. */
87/* TODO: resize cq/sq size independently */
88
85#include <sys/timerfd.h> 89#include <sys/timerfd.h>
86#include <sys/mman.h> 90#include <sys/mman.h>
87#include <poll.h> 91#include <poll.h>
92#include <stdint.h>
88 93
89#define IOURING_INIT_ENTRIES 32 94#define IOURING_INIT_ENTRIES 32
90 95
91/*****************************************************************************/ 96/*****************************************************************************/
92/* syscall wrapdadoop - this section has the raw api/abi definitions */ 97/* syscall wrapdadoop - this section has the raw api/abi definitions */
169 __u32 resv[4]; 174 __u32 resv[4];
170 struct io_sqring_offsets sq_off; 175 struct io_sqring_offsets sq_off;
171 struct io_cqring_offsets cq_off; 176 struct io_cqring_offsets cq_off;
172}; 177};
173 178
179#define IORING_SETUP_CQSIZE 0x00000008
180
174#define IORING_OP_POLL_ADD 6 181#define IORING_OP_POLL_ADD 6
175#define IORING_OP_POLL_REMOVE 7 182#define IORING_OP_POLL_REMOVE 7
183#define IORING_OP_TIMEOUT 11
184#define IORING_OP_TIMEOUT_REMOVE 12
185
186/* relative or absolute, reference clock is CLOCK_MONOTONIC */
187struct iouring_kernel_timespec
188{
189 int64_t tv_sec;
190 long long tv_nsec;
191};
192
193#define IORING_TIMEOUT_ABS 0x00000001
176 194
177#define IORING_ENTER_GETEVENTS 0x01 195#define IORING_ENTER_GETEVENTS 0x01
178 196
179#define IORING_OFF_SQ_RING 0x00000000ULL 197#define IORING_OFF_SQ_RING 0x00000000ULL
180#define IORING_OFF_CQ_RING 0x08000000ULL 198#define IORING_OFF_CQ_RING 0x08000000ULL
181#define IORING_OFF_SQES 0x10000000ULL 199#define IORING_OFF_SQES 0x10000000ULL
182 200
183#define IORING_FEAT_SINGLE_MMAP 0x1 201#define IORING_FEAT_SINGLE_MMAP 0x00000001
184#define IORING_FEAT_NODROP 0x2 202#define IORING_FEAT_NODROP 0x00000002
185#define IORING_FEAT_SUBMIT_STABLE 0x4 203#define IORING_FEAT_SUBMIT_STABLE 0x00000004
186 204
187inline_size 205inline_size
188int 206int
189evsys_io_uring_setup (unsigned entries, struct io_uring_params *params) 207evsys_io_uring_setup (unsigned entries, struct io_uring_params *params)
190{ 208{
210 228
211/* the submit/completion queue entries */ 229/* the submit/completion queue entries */
212#define EV_SQES ((struct io_uring_sqe *) iouring_sqes) 230#define EV_SQES ((struct io_uring_sqe *) iouring_sqes)
213#define EV_CQES ((struct io_uring_cqe *)((char *)iouring_cq_ring + iouring_cq_cqes)) 231#define EV_CQES ((struct io_uring_cqe *)((char *)iouring_cq_ring + iouring_cq_cqes))
214 232
233/* TODO: this is not enough, we might have to reap events */
234/* TODO: but we can't, as that will re-arm events, causing */
235/* TODO: an endless loop in fd_reify */
236static int
237iouring_enter (EV_P_ ev_tstamp timeout)
238{
239 int res;
240
241 EV_RELEASE_CB;
242
243 res = evsys_io_uring_enter (iouring_fd, iouring_to_submit, 1,
244 timeout > EV_TS_CONST (0.) ? IORING_ENTER_GETEVENTS : 0, 0, 0);
245
246 assert (("libev: io_uring_enter did not consume all sqes", (res < 0 || res == iouring_to_submit)));
247
248 iouring_to_submit = 0;
249
250 EV_ACQUIRE_CB;
251
252 return res;
253}
254
215static 255static
216struct io_uring_sqe * 256struct io_uring_sqe *
217iouring_sqe_get (EV_P) 257iouring_sqe_get (EV_P)
218{ 258{
219 unsigned tail = EV_SQ_VAR (tail); 259 unsigned tail = EV_SQ_VAR (tail);
220 260
221 if (tail + 1 - EV_SQ_VAR (head) > EV_SQ_VAR (ring_entries)) 261 while (ecb_expect_false (tail + 1 - EV_SQ_VAR (head) > EV_SQ_VAR (ring_entries)))
222 { 262 {
223 /* queue full, flush */ 263 /* queue full, need to flush */
224 evsys_io_uring_enter (iouring_fd, iouring_to_submit, 0, 0, 0, 0);
225 iouring_to_submit = 0;
226 }
227 264
265 int res = iouring_enter (EV_A_ EV_TS_CONST (0.));
266
267 /* io_uring_enter might fail with EBUSY and won't submit anything */
268 /* unfortunately, we can't handle this at the moment */
269
270 if (res < 0 && errno == EBUSY)
271 //TODO
272 ev_syserr ("(libev) io_uring_enter could not clear sq");
273 else
274 break;
275
276 /* iouring_poll should have done ECB_MEMORY_FENCE_ACQUIRE */
277 }
278
228 assert (("libev: io_uring queue full after flush", tail + 1 - EV_SQ_VAR (head) <= EV_SQ_VAR (ring_entries))); 279 /*assert (("libev: io_uring queue full after flush", tail + 1 - EV_SQ_VAR (head) <= EV_SQ_VAR (ring_entries)));*/
229 280
230 return EV_SQES + (tail & EV_SQ_VAR (ring_mask)); 281 return EV_SQES + (tail & EV_SQ_VAR (ring_mask));
231} 282}
232 283
233inline_size 284inline_size
285 iouring_tfd = -1; 336 iouring_tfd = -1;
286 iouring_sq_ring = MAP_FAILED; 337 iouring_sq_ring = MAP_FAILED;
287 iouring_cq_ring = MAP_FAILED; 338 iouring_cq_ring = MAP_FAILED;
288 iouring_sqes = MAP_FAILED; 339 iouring_sqes = MAP_FAILED;
289 340
341 if (!have_monotonic) /* cannot really happen, but what if11 */
342 return -1;
343
290 for (;;) 344 for (;;)
291 { 345 {
292 iouring_fd = evsys_io_uring_setup (iouring_entries, &params); 346 iouring_fd = evsys_io_uring_setup (iouring_entries, &params);
293 347
294 if (iouring_fd >= 0) 348 if (iouring_fd >= 0)
295 break; /* yippie */ 349 break; /* yippie */
296 350
297 if (errno != EINVAL) 351 if (errno != EINVAL)
298 return -1; /* we failed */ 352 return -1; /* we failed */
353
354#if TODO
355 if ((~params.features) & (IORING_FEAT_NODROP | IORING_FEATURE_SINGLE_MMAP))
356 return -1; /* we require the above features */
357#endif
299 358
300 /* EINVAL: lots of possible reasons, but maybe 359 /* EINVAL: lots of possible reasons, but maybe
301 * it is because we hit the unqueryable hardcoded size limit 360 * it is because we hit the unqueryable hardcoded size limit
302 */ 361 */
303 362
374 { 433 {
375 /* we assume the sqe's are all "properly" initialised */ 434 /* we assume the sqe's are all "properly" initialised */
376 struct io_uring_sqe *sqe = iouring_sqe_get (EV_A); 435 struct io_uring_sqe *sqe = iouring_sqe_get (EV_A);
377 sqe->opcode = IORING_OP_POLL_REMOVE; 436 sqe->opcode = IORING_OP_POLL_REMOVE;
378 sqe->fd = fd; 437 sqe->fd = fd;
379 sqe->user_data = -1; 438 /* Jens Axboe notified me that user_data is not what is documented, but is
439 * some kind of unique ID that has to match, otherwise the request cannot
440 * be removed. Since we don't *really* have that, we pass in the old
441 * generation counter - if that fails, too bad, it will hopefully be removed
442 * at close time and then be ignored. */
443 sqe->user_data = (uint32_t)fd | ((__u64)(uint32_t)anfds [fd].egen << 32);
380 iouring_sqe_submit (EV_A_ sqe); 444 iouring_sqe_submit (EV_A_ sqe);
381 445
382 /* increment generation counter to avoid handling old events */ 446 /* increment generation counter to avoid handling old events */
383 ++anfds [fd].egen; 447 ++anfds [fd].egen;
384 } 448 }
425{ 489{
426 int fd = cqe->user_data & 0xffffffffU; 490 int fd = cqe->user_data & 0xffffffffU;
427 uint32_t gen = cqe->user_data >> 32; 491 uint32_t gen = cqe->user_data >> 32;
428 int res = cqe->res; 492 int res = cqe->res;
429 493
430 /* ignore fd removal events, if there are any. TODO: verify */
431 if (cqe->user_data == (__u64)-1)
432 abort ();//D
433
434 assert (("libev: io_uring fd must be in-bounds", fd >= 0 && fd < anfdmax)); 494 assert (("libev: io_uring fd must be in-bounds", fd >= 0 && fd < anfdmax));
435 495
436 /* documentation lies, of course. the result value is NOT like 496 /* documentation lies, of course. the result value is NOT like
437 * normal syscalls, but like linux raw syscalls, i.e. negative 497 * normal syscalls, but like linux raw syscalls, i.e. negative
438 * error numbers. fortunate, as otherwise there would be no way 498 * error numbers. fortunate, as otherwise there would be no way
439 * to get error codes at all. still, why not document this? 499 * to get error codes at all. still, why not document this?
440 */ 500 */
441 501
442 /* ignore event if generation doesn't match */ 502 /* ignore event if generation doesn't match */
503 /* other than skipping removal events, */
443 /* this should actually be very rare */ 504 /* this should actually be very rare */
444 if (ecb_expect_false (gen != (uint32_t)anfds [fd].egen)) 505 if (ecb_expect_false (gen != (uint32_t)anfds [fd].egen))
445 return; 506 return;
446 507
447 if (ecb_expect_false (res < 0)) 508 if (ecb_expect_false (res < 0))
448 { 509 {
449 //TODO: EINVAL handling (was something failed with this fd) 510 /*TODO: EINVAL handling (was something failed with this fd)*/
450 //TODO: EBUSY happens when? 511 /*TODO: EBUSY happens when?*/
451 512
452 if (res == -EBADF) 513 if (res == -EBADF)
453 { 514 {
454 assert (("libev: event loop rejected bad fd", res != -EBADF)); 515 assert (("libev: event loop rejected bad fd", res != -EBADF));
455 fd_kill (EV_A_ fd); 516 fd_kill (EV_A_ fd);
483iouring_overflow (EV_P) 544iouring_overflow (EV_P)
484{ 545{
485 /* we have two options, resize the queue (by tearing down 546 /* we have two options, resize the queue (by tearing down
486 * everything and recreating it, or living with it 547 * everything and recreating it, or living with it
487 * and polling. 548 * and polling.
488 * we implement this by resizing tghe queue, and, if that fails, 549 * we implement this by resizing the queue, and, if that fails,
489 * we just recreate the state on every failure, which 550 * we just recreate the state on every failure, which
490 * kind of is a very inefficient poll. 551 * kind of is a very inefficient poll.
491 * one danger is, due to the bios toward lower fds, 552 * one danger is, due to the bios toward lower fds,
492 * we will only really get events for those, so 553 * we will only really get events for those, so
493 * maybe we need a poll() fallback, after all. 554 * maybe we need a poll() fallback, after all.
505 else 566 else
506 { 567 {
507 /* we hit the kernel limit, we should fall back to something else. 568 /* 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, 569 * we can either poll() a few times and hope for the best,
509 * poll always, or switch to epoll. 570 * poll always, or switch to epoll.
510 * since we use epoll anyways, go epoll. 571 * TODO: is this necessary with newer kernels?
511 */ 572 */
512 573
513 iouring_internal_destroy (EV_A); 574 iouring_internal_destroy (EV_A);
514 575
515 /* this should make it so that on return, we don'T call any uring functions */ 576 /* this should make it so that on return, we don't call any uring functions */
516 iouring_to_submit = 0; 577 iouring_to_submit = 0;
517 578
518 for (;;) 579 for (;;)
519 { 580 {
520 backend = epoll_init (EV_A_ 0); 581 backend = epoll_init (EV_A_ 0);
570 iouring_tfd_update (EV_A_ timeout); 631 iouring_tfd_update (EV_A_ timeout);
571 632
572 /* only enter the kernel if we have something to submit, or we need to wait */ 633 /* only enter the kernel if we have something to submit, or we need to wait */
573 if (timeout || iouring_to_submit) 634 if (timeout || iouring_to_submit)
574 { 635 {
575 int res; 636 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 637
585 if (ecb_expect_false (res < 0)) 638 if (ecb_expect_false (res < 0))
586 if (errno == EINTR) 639 if (errno == EINTR)
587 /* ignore */; 640 /* ignore */;
641 else if (errno == EBUSY)
642 /* cq full, cannot submit - should be rare because we flush the cq first, so simply ignore */;
588 else 643 else
589 ev_syserr ("(libev) iouring setup"); 644 ev_syserr ("(libev) iouring setup");
590 else 645 else
591 iouring_handle_cq (EV_A); 646 iouring_handle_cq (EV_A);
592 } 647 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines