Merge branch 'ioring_add_sync_file_range' of https://github.com/anarazel/fio
[fio.git] / engines / io_uring.c
... / ...
CommitLineData
1/*
2 * io_uring engine
3 *
4 * IO engine using the new native Linux aio io_uring interface. See:
5 *
6 * http://git.kernel.dk/cgit/linux-block/log/?h=io_uring
7 *
8 */
9#include <stdlib.h>
10#include <unistd.h>
11#include <errno.h>
12#include <sys/time.h>
13#include <sys/resource.h>
14
15#include "../fio.h"
16#include "../lib/pow2.h"
17#include "../optgroup.h"
18#include "../lib/memalign.h"
19#include "../lib/fls.h"
20
21#ifdef ARCH_HAVE_IOURING
22
23#include "../lib/types.h"
24#include "../os/linux/io_uring.h"
25
26struct io_sq_ring {
27 unsigned *head;
28 unsigned *tail;
29 unsigned *ring_mask;
30 unsigned *ring_entries;
31 unsigned *flags;
32 unsigned *array;
33};
34
35struct io_cq_ring {
36 unsigned *head;
37 unsigned *tail;
38 unsigned *ring_mask;
39 unsigned *ring_entries;
40 struct io_uring_cqe *cqes;
41};
42
43struct ioring_mmap {
44 void *ptr;
45 size_t len;
46};
47
48struct ioring_data {
49 int ring_fd;
50
51 struct io_u **io_u_index;
52
53 int *fds;
54
55 struct io_sq_ring sq_ring;
56 struct io_uring_sqe *sqes;
57 struct iovec *iovecs;
58 unsigned sq_ring_mask;
59
60 struct io_cq_ring cq_ring;
61 unsigned cq_ring_mask;
62
63 int queued;
64 int cq_ring_off;
65 unsigned iodepth;
66
67 struct ioring_mmap mmap[3];
68};
69
70struct ioring_options {
71 void *pad;
72 unsigned int hipri;
73 unsigned int fixedbufs;
74 unsigned int registerfiles;
75 unsigned int sqpoll_thread;
76 unsigned int sqpoll_set;
77 unsigned int sqpoll_cpu;
78};
79
80static int fio_ioring_sqpoll_cb(void *data, unsigned long long *val)
81{
82 struct ioring_options *o = data;
83
84 o->sqpoll_cpu = *val;
85 o->sqpoll_set = 1;
86 return 0;
87}
88
89static struct fio_option options[] = {
90 {
91 .name = "hipri",
92 .lname = "High Priority",
93 .type = FIO_OPT_STR_SET,
94 .off1 = offsetof(struct ioring_options, hipri),
95 .help = "Use polled IO completions",
96 .category = FIO_OPT_C_ENGINE,
97 .group = FIO_OPT_G_IOURING,
98 },
99 {
100 .name = "fixedbufs",
101 .lname = "Fixed (pre-mapped) IO buffers",
102 .type = FIO_OPT_STR_SET,
103 .off1 = offsetof(struct ioring_options, fixedbufs),
104 .help = "Pre map IO buffers",
105 .category = FIO_OPT_C_ENGINE,
106 .group = FIO_OPT_G_IOURING,
107 },
108 {
109 .name = "registerfiles",
110 .lname = "Register file set",
111 .type = FIO_OPT_STR_SET,
112 .off1 = offsetof(struct ioring_options, registerfiles),
113 .help = "Pre-open/register files",
114 .category = FIO_OPT_C_ENGINE,
115 .group = FIO_OPT_G_IOURING,
116 },
117 {
118 .name = "sqthread_poll",
119 .lname = "Kernel SQ thread polling",
120 .type = FIO_OPT_INT,
121 .off1 = offsetof(struct ioring_options, sqpoll_thread),
122 .help = "Offload submission/completion to kernel thread",
123 .category = FIO_OPT_C_ENGINE,
124 .group = FIO_OPT_G_IOURING,
125 },
126 {
127 .name = "sqthread_poll_cpu",
128 .lname = "SQ Thread Poll CPU",
129 .type = FIO_OPT_INT,
130 .cb = fio_ioring_sqpoll_cb,
131 .help = "What CPU to run SQ thread polling on",
132 .category = FIO_OPT_C_ENGINE,
133 .group = FIO_OPT_G_IOURING,
134 },
135 {
136 .name = NULL,
137 },
138};
139
140static int io_uring_enter(struct ioring_data *ld, unsigned int to_submit,
141 unsigned int min_complete, unsigned int flags)
142{
143 return syscall(__NR_sys_io_uring_enter, ld->ring_fd, to_submit,
144 min_complete, flags, NULL, 0);
145}
146
147static int fio_ioring_prep(struct thread_data *td, struct io_u *io_u)
148{
149 struct ioring_data *ld = td->io_ops_data;
150 struct ioring_options *o = td->eo;
151 struct fio_file *f = io_u->file;
152 struct io_uring_sqe *sqe;
153
154 sqe = &ld->sqes[io_u->index];
155 if (o->registerfiles) {
156 sqe->fd = f->engine_pos;
157 sqe->flags = IOSQE_FIXED_FILE;
158 } else {
159 sqe->fd = f->fd;
160 sqe->flags = 0;
161 }
162 sqe->ioprio = 0;
163 sqe->buf_index = 0;
164
165 if (io_u->ddir == DDIR_READ || io_u->ddir == DDIR_WRITE) {
166 if (o->fixedbufs) {
167 if (io_u->ddir == DDIR_READ)
168 sqe->opcode = IORING_OP_READ_FIXED;
169 else
170 sqe->opcode = IORING_OP_WRITE_FIXED;
171 sqe->addr = (unsigned long) io_u->xfer_buf;
172 sqe->len = io_u->xfer_buflen;
173 sqe->buf_index = io_u->index;
174 } else {
175 if (io_u->ddir == DDIR_READ)
176 sqe->opcode = IORING_OP_READV;
177 else
178 sqe->opcode = IORING_OP_WRITEV;
179 sqe->addr = (unsigned long) &ld->iovecs[io_u->index];
180 sqe->len = 1;
181 }
182 sqe->off = io_u->offset;
183 } else if (ddir_sync(io_u->ddir)) {
184 if (io_u->ddir == DDIR_SYNC_FILE_RANGE) {
185 sqe->off = f->first_write;
186 sqe->len = f->last_write - f->first_write;
187 sqe->sync_range_flags = td->o.sync_file_range;
188 sqe->opcode = IORING_OP_SYNC_FILE_RANGE;
189 } else {
190 sqe->fsync_flags = 0;
191 if (io_u->ddir == DDIR_DATASYNC)
192 sqe->fsync_flags |= IORING_FSYNC_DATASYNC;
193 sqe->opcode = IORING_OP_FSYNC;
194 }
195 }
196
197 sqe->user_data = (unsigned long) io_u;
198 return 0;
199}
200
201static struct io_u *fio_ioring_event(struct thread_data *td, int event)
202{
203 struct ioring_data *ld = td->io_ops_data;
204 struct io_uring_cqe *cqe;
205 struct io_u *io_u;
206 unsigned index;
207
208 index = (event + ld->cq_ring_off) & ld->cq_ring_mask;
209
210 cqe = &ld->cq_ring.cqes[index];
211 io_u = (struct io_u *) (uintptr_t) cqe->user_data;
212
213 if (cqe->res != io_u->xfer_buflen) {
214 if (cqe->res > io_u->xfer_buflen)
215 io_u->error = -cqe->res;
216 else
217 io_u->resid = io_u->xfer_buflen - cqe->res;
218 } else
219 io_u->error = 0;
220
221 return io_u;
222}
223
224static int fio_ioring_cqring_reap(struct thread_data *td, unsigned int events,
225 unsigned int max)
226{
227 struct ioring_data *ld = td->io_ops_data;
228 struct io_cq_ring *ring = &ld->cq_ring;
229 unsigned head, reaped = 0;
230
231 head = *ring->head;
232 do {
233 read_barrier();
234 if (head == *ring->tail)
235 break;
236 reaped++;
237 head++;
238 } while (reaped + events < max);
239
240 *ring->head = head;
241 write_barrier();
242 return reaped;
243}
244
245static int fio_ioring_getevents(struct thread_data *td, unsigned int min,
246 unsigned int max, const struct timespec *t)
247{
248 struct ioring_data *ld = td->io_ops_data;
249 unsigned actual_min = td->o.iodepth_batch_complete_min == 0 ? 0 : min;
250 struct ioring_options *o = td->eo;
251 struct io_cq_ring *ring = &ld->cq_ring;
252 unsigned events = 0;
253 int r;
254
255 ld->cq_ring_off = *ring->head;
256 do {
257 r = fio_ioring_cqring_reap(td, events, max);
258 if (r) {
259 events += r;
260 if (actual_min != 0)
261 actual_min -= r;
262 continue;
263 }
264
265 if (!o->sqpoll_thread) {
266 r = io_uring_enter(ld, 0, actual_min,
267 IORING_ENTER_GETEVENTS);
268 if (r < 0) {
269 if (errno == EAGAIN || errno == EINTR)
270 continue;
271 td_verror(td, errno, "io_uring_enter");
272 break;
273 }
274 }
275 } while (events < min);
276
277 return r < 0 ? r : events;
278}
279
280static enum fio_q_status fio_ioring_queue(struct thread_data *td,
281 struct io_u *io_u)
282{
283 struct ioring_data *ld = td->io_ops_data;
284 struct io_sq_ring *ring = &ld->sq_ring;
285 unsigned tail, next_tail;
286
287 fio_ro_check(td, io_u);
288
289 if (ld->queued == ld->iodepth)
290 return FIO_Q_BUSY;
291
292 if (io_u->ddir == DDIR_TRIM) {
293 if (ld->queued)
294 return FIO_Q_BUSY;
295
296 do_io_u_trim(td, io_u);
297 io_u_mark_submit(td, 1);
298 io_u_mark_complete(td, 1);
299 return FIO_Q_COMPLETED;
300 }
301
302 tail = *ring->tail;
303 next_tail = tail + 1;
304 read_barrier();
305 if (next_tail == *ring->head)
306 return FIO_Q_BUSY;
307
308 /* ensure sqe stores are ordered with tail update */
309 write_barrier();
310 ring->array[tail & ld->sq_ring_mask] = io_u->index;
311 *ring->tail = next_tail;
312 write_barrier();
313
314 ld->queued++;
315 return FIO_Q_QUEUED;
316}
317
318static void fio_ioring_queued(struct thread_data *td, int start, int nr)
319{
320 struct ioring_data *ld = td->io_ops_data;
321 struct timespec now;
322
323 if (!fio_fill_issue_time(td))
324 return;
325
326 fio_gettime(&now, NULL);
327
328 while (nr--) {
329 struct io_sq_ring *ring = &ld->sq_ring;
330 int index = ring->array[start & ld->sq_ring_mask];
331 struct io_u *io_u = ld->io_u_index[index];
332
333 memcpy(&io_u->issue_time, &now, sizeof(now));
334 io_u_queued(td, io_u);
335
336 start++;
337 }
338}
339
340static int fio_ioring_commit(struct thread_data *td)
341{
342 struct ioring_data *ld = td->io_ops_data;
343 struct ioring_options *o = td->eo;
344 int ret;
345
346 if (!ld->queued)
347 return 0;
348
349 /*
350 * Kernel side does submission. just need to check if the ring is
351 * flagged as needing a kick, if so, call io_uring_enter(). This
352 * only happens if we've been idle too long.
353 */
354 if (o->sqpoll_thread) {
355 struct io_sq_ring *ring = &ld->sq_ring;
356
357 read_barrier();
358 if (*ring->flags & IORING_SQ_NEED_WAKEUP)
359 io_uring_enter(ld, ld->queued, 0,
360 IORING_ENTER_SQ_WAKEUP);
361 ld->queued = 0;
362 return 0;
363 }
364
365 do {
366 unsigned start = *ld->sq_ring.head;
367 long nr = ld->queued;
368
369 ret = io_uring_enter(ld, nr, 0, IORING_ENTER_GETEVENTS);
370 if (ret > 0) {
371 fio_ioring_queued(td, start, ret);
372 io_u_mark_submit(td, ret);
373
374 ld->queued -= ret;
375 ret = 0;
376 } else if (!ret) {
377 io_u_mark_submit(td, ret);
378 continue;
379 } else {
380 if (errno == EAGAIN || errno == EINTR) {
381 ret = fio_ioring_cqring_reap(td, 0, ld->queued);
382 if (ret)
383 continue;
384 /* Shouldn't happen */
385 usleep(1);
386 continue;
387 }
388 td_verror(td, errno, "io_uring_enter submit");
389 break;
390 }
391 } while (ld->queued);
392
393 return ret;
394}
395
396static void fio_ioring_unmap(struct ioring_data *ld)
397{
398 int i;
399
400 for (i = 0; i < ARRAY_SIZE(ld->mmap); i++)
401 munmap(ld->mmap[i].ptr, ld->mmap[i].len);
402 close(ld->ring_fd);
403}
404
405static void fio_ioring_cleanup(struct thread_data *td)
406{
407 struct ioring_data *ld = td->io_ops_data;
408
409 if (ld) {
410 if (!(td->flags & TD_F_CHILD))
411 fio_ioring_unmap(ld);
412
413 free(ld->io_u_index);
414 free(ld->iovecs);
415 free(ld->fds);
416 free(ld);
417 }
418}
419
420static int fio_ioring_mmap(struct ioring_data *ld, struct io_uring_params *p)
421{
422 struct io_sq_ring *sring = &ld->sq_ring;
423 struct io_cq_ring *cring = &ld->cq_ring;
424 void *ptr;
425
426 ld->mmap[0].len = p->sq_off.array + p->sq_entries * sizeof(__u32);
427 ptr = mmap(0, ld->mmap[0].len, PROT_READ | PROT_WRITE,
428 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
429 IORING_OFF_SQ_RING);
430 ld->mmap[0].ptr = ptr;
431 sring->head = ptr + p->sq_off.head;
432 sring->tail = ptr + p->sq_off.tail;
433 sring->ring_mask = ptr + p->sq_off.ring_mask;
434 sring->ring_entries = ptr + p->sq_off.ring_entries;
435 sring->flags = ptr + p->sq_off.flags;
436 sring->array = ptr + p->sq_off.array;
437 ld->sq_ring_mask = *sring->ring_mask;
438
439 ld->mmap[1].len = p->sq_entries * sizeof(struct io_uring_sqe);
440 ld->sqes = mmap(0, ld->mmap[1].len, PROT_READ | PROT_WRITE,
441 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
442 IORING_OFF_SQES);
443 ld->mmap[1].ptr = ld->sqes;
444
445 ld->mmap[2].len = p->cq_off.cqes +
446 p->cq_entries * sizeof(struct io_uring_cqe);
447 ptr = mmap(0, ld->mmap[2].len, PROT_READ | PROT_WRITE,
448 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
449 IORING_OFF_CQ_RING);
450 ld->mmap[2].ptr = ptr;
451 cring->head = ptr + p->cq_off.head;
452 cring->tail = ptr + p->cq_off.tail;
453 cring->ring_mask = ptr + p->cq_off.ring_mask;
454 cring->ring_entries = ptr + p->cq_off.ring_entries;
455 cring->cqes = ptr + p->cq_off.cqes;
456 ld->cq_ring_mask = *cring->ring_mask;
457 return 0;
458}
459
460static int fio_ioring_queue_init(struct thread_data *td)
461{
462 struct ioring_data *ld = td->io_ops_data;
463 struct ioring_options *o = td->eo;
464 int depth = td->o.iodepth;
465 struct io_uring_params p;
466 int ret;
467
468 memset(&p, 0, sizeof(p));
469
470 if (o->hipri)
471 p.flags |= IORING_SETUP_IOPOLL;
472 if (o->sqpoll_thread) {
473 p.flags |= IORING_SETUP_SQPOLL;
474 if (o->sqpoll_set) {
475 p.flags |= IORING_SETUP_SQ_AFF;
476 p.sq_thread_cpu = o->sqpoll_cpu;
477 }
478 }
479
480 ret = syscall(__NR_sys_io_uring_setup, depth, &p);
481 if (ret < 0)
482 return ret;
483
484 ld->ring_fd = ret;
485
486 if (o->fixedbufs) {
487 struct rlimit rlim = {
488 .rlim_cur = RLIM_INFINITY,
489 .rlim_max = RLIM_INFINITY,
490 };
491
492 if (setrlimit(RLIMIT_MEMLOCK, &rlim) < 0)
493 return -1;
494
495 ret = syscall(__NR_sys_io_uring_register, ld->ring_fd,
496 IORING_REGISTER_BUFFERS, ld->iovecs, depth);
497 if (ret < 0)
498 return ret;
499 }
500
501 return fio_ioring_mmap(ld, &p);
502}
503
504static int fio_ioring_register_files(struct thread_data *td)
505{
506 struct ioring_data *ld = td->io_ops_data;
507 struct fio_file *f;
508 unsigned int i;
509 int ret;
510
511 ld->fds = calloc(td->o.nr_files, sizeof(int));
512
513 for_each_file(td, f, i) {
514 ret = generic_open_file(td, f);
515 if (ret)
516 goto err;
517 ld->fds[i] = f->fd;
518 f->engine_pos = i;
519 }
520
521 ret = syscall(__NR_sys_io_uring_register, ld->ring_fd,
522 IORING_REGISTER_FILES, ld->fds, td->o.nr_files);
523 if (ret) {
524err:
525 free(ld->fds);
526 ld->fds = NULL;
527 }
528
529 /*
530 * Pretend the file is closed again, and really close it if we hit
531 * an error.
532 */
533 for_each_file(td, f, i) {
534 if (ret) {
535 int fio_unused ret2;
536 ret2 = generic_close_file(td, f);
537 } else
538 f->fd = -1;
539 }
540
541 return ret;
542}
543
544static int fio_ioring_post_init(struct thread_data *td)
545{
546 struct ioring_data *ld = td->io_ops_data;
547 struct ioring_options *o = td->eo;
548 struct io_u *io_u;
549 int err, i;
550
551 for (i = 0; i < td->o.iodepth; i++) {
552 struct iovec *iov = &ld->iovecs[i];
553
554 io_u = ld->io_u_index[i];
555 iov->iov_base = io_u->buf;
556 iov->iov_len = td_max_bs(td);
557 }
558
559 err = fio_ioring_queue_init(td);
560 if (err) {
561 td_verror(td, errno, "io_queue_init");
562 return 1;
563 }
564
565 printf("files=%d\n", o->registerfiles);
566 if (o->registerfiles) {
567 err = fio_ioring_register_files(td);
568 if (err) {
569 td_verror(td, errno, "ioring_register_files");
570 return 1;
571 }
572 }
573
574 return 0;
575}
576
577static unsigned roundup_pow2(unsigned depth)
578{
579 return 1UL << __fls(depth - 1);
580}
581
582static int fio_ioring_init(struct thread_data *td)
583{
584 struct ioring_options *o = td->eo;
585 struct ioring_data *ld;
586
587 /* sqthread submission requires registered files */
588 if (o->sqpoll_thread)
589 o->registerfiles = 1;
590
591 if (o->registerfiles && td->o.nr_files != td->o.open_files) {
592 log_err("fio: io_uring registered files require nr_files to "
593 "be identical to open_files\n");
594 return 1;
595 }
596
597 ld = calloc(1, sizeof(*ld));
598
599 /* ring depth must be a power-of-2 */
600 ld->iodepth = td->o.iodepth;
601 td->o.iodepth = roundup_pow2(td->o.iodepth);
602
603 /* io_u index */
604 ld->io_u_index = calloc(td->o.iodepth, sizeof(struct io_u *));
605 ld->iovecs = calloc(td->o.iodepth, sizeof(struct iovec));
606
607 td->io_ops_data = ld;
608 return 0;
609}
610
611static int fio_ioring_io_u_init(struct thread_data *td, struct io_u *io_u)
612{
613 struct ioring_data *ld = td->io_ops_data;
614
615 ld->io_u_index[io_u->index] = io_u;
616 return 0;
617}
618
619static int fio_ioring_open_file(struct thread_data *td, struct fio_file *f)
620{
621 struct ioring_data *ld = td->io_ops_data;
622 struct ioring_options *o = td->eo;
623
624 if (!ld || !o->registerfiles)
625 return generic_open_file(td, f);
626
627 f->fd = ld->fds[f->engine_pos];
628 return 0;
629}
630
631static int fio_ioring_close_file(struct thread_data *td, struct fio_file *f)
632{
633 struct ioring_data *ld = td->io_ops_data;
634 struct ioring_options *o = td->eo;
635
636 if (!ld || !o->registerfiles)
637 return generic_close_file(td, f);
638
639 f->fd = -1;
640 return 0;
641}
642
643static struct ioengine_ops ioengine = {
644 .name = "io_uring",
645 .version = FIO_IOOPS_VERSION,
646 .flags = FIO_ASYNCIO_SYNC_TRIM,
647 .init = fio_ioring_init,
648 .post_init = fio_ioring_post_init,
649 .io_u_init = fio_ioring_io_u_init,
650 .prep = fio_ioring_prep,
651 .queue = fio_ioring_queue,
652 .commit = fio_ioring_commit,
653 .getevents = fio_ioring_getevents,
654 .event = fio_ioring_event,
655 .cleanup = fio_ioring_cleanup,
656 .open_file = fio_ioring_open_file,
657 .close_file = fio_ioring_close_file,
658 .get_file_size = generic_get_file_size,
659 .options = options,
660 .option_struct_size = sizeof(struct ioring_options),
661};
662
663static void fio_init fio_ioring_register(void)
664{
665 register_ioengine(&ioengine);
666}
667
668static void fio_exit fio_ioring_unregister(void)
669{
670 unregister_ioengine(&ioengine);
671}
672#endif