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