engines/io_uring: don't attempt to set RLIMITs
[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"
6d975f2c 20#include "../lib/roundup.h"
52885fa2 21
bffad86f 22#ifdef ARCH_HAVE_IOURING
52885fa2 23
57fa61f0 24#include "../lib/types.h"
f3e769a4 25#include "../os/linux/io_uring.h"
9a2d78b3 26
bffad86f 27struct io_sq_ring {
e2239016
JA
28 unsigned *head;
29 unsigned *tail;
30 unsigned *ring_mask;
31 unsigned *ring_entries;
32 unsigned *flags;
33 unsigned *array;
52885fa2
JA
34};
35
bffad86f 36struct io_cq_ring {
e2239016
JA
37 unsigned *head;
38 unsigned *tail;
39 unsigned *ring_mask;
40 unsigned *ring_entries;
f0403f94 41 struct io_uring_cqe *cqes;
9a2d78b3
JA
42};
43
bffad86f 44struct ioring_mmap {
9a2d78b3
JA
45 void *ptr;
46 size_t len;
52885fa2
JA
47};
48
bffad86f 49struct ioring_data {
9a2d78b3
JA
50 int ring_fd;
51
52885fa2
JA
52 struct io_u **io_u_index;
53
5ffd5626
JA
54 int *fds;
55
bffad86f 56 struct io_sq_ring sq_ring;
f0403f94 57 struct io_uring_sqe *sqes;
9a2d78b3 58 struct iovec *iovecs;
b87aa01a 59 unsigned sq_ring_mask;
52885fa2 60
bffad86f 61 struct io_cq_ring cq_ring;
b87aa01a 62 unsigned cq_ring_mask;
52885fa2
JA
63
64 int queued;
65 int cq_ring_off;
b87aa01a 66 unsigned iodepth;
1af44196
XW
67 bool ioprio_class_set;
68 bool ioprio_set;
96563db9 69
bffad86f 70 struct ioring_mmap mmap[3];
52885fa2
JA
71};
72
bffad86f 73struct ioring_options {
52885fa2
JA
74 void *pad;
75 unsigned int hipri;
b2a432bf 76 unsigned int cmdprio_percentage;
52885fa2 77 unsigned int fixedbufs;
5ffd5626 78 unsigned int registerfiles;
3d7d00a3 79 unsigned int sqpoll_thread;
2ea53ca3
JA
80 unsigned int sqpoll_set;
81 unsigned int sqpoll_cpu;
b10b1e70 82 unsigned int nonvectored;
4a87b584 83 unsigned int uncached;
7d42e66e 84 unsigned int nowait;
52885fa2
JA
85};
86
b10b1e70
JA
87static const int ddir_to_op[2][2] = {
88 { IORING_OP_READV, IORING_OP_READ },
89 { IORING_OP_WRITEV, IORING_OP_WRITE }
90};
91
3f1e3af7
KB
92static const int fixed_ddir_to_op[2] = {
93 IORING_OP_READ_FIXED,
94 IORING_OP_WRITE_FIXED
95};
96
2ea53ca3 97static int fio_ioring_sqpoll_cb(void *data, unsigned long long *val)
a90cd050 98{
bffad86f 99 struct ioring_options *o = data;
a90cd050 100
2ea53ca3
JA
101 o->sqpoll_cpu = *val;
102 o->sqpoll_set = 1;
a90cd050
JA
103 return 0;
104}
105
52885fa2
JA
106static struct fio_option options[] = {
107 {
108 .name = "hipri",
109 .lname = "High Priority",
110 .type = FIO_OPT_STR_SET,
bffad86f 111 .off1 = offsetof(struct ioring_options, hipri),
52885fa2
JA
112 .help = "Use polled IO completions",
113 .category = FIO_OPT_C_ENGINE,
27f436d9 114 .group = FIO_OPT_G_IOURING,
52885fa2 115 },
b2a432bf
PC
116#ifdef FIO_HAVE_IOPRIO_CLASS
117 {
118 .name = "cmdprio_percentage",
119 .lname = "high priority percentage",
120 .type = FIO_OPT_INT,
121 .off1 = offsetof(struct ioring_options, cmdprio_percentage),
122 .minval = 1,
123 .maxval = 100,
124 .help = "Send high priority I/O this percentage of the time",
125 .category = FIO_OPT_C_ENGINE,
126 .group = FIO_OPT_G_IOURING,
127 },
128#else
129 {
130 .name = "cmdprio_percentage",
131 .lname = "high priority percentage",
132 .type = FIO_OPT_UNSUPPORTED,
133 .help = "Your platform does not support I/O priority classes",
134 },
135#endif
52885fa2
JA
136 {
137 .name = "fixedbufs",
138 .lname = "Fixed (pre-mapped) IO buffers",
139 .type = FIO_OPT_STR_SET,
bffad86f 140 .off1 = offsetof(struct ioring_options, fixedbufs),
52885fa2
JA
141 .help = "Pre map IO buffers",
142 .category = FIO_OPT_C_ENGINE,
27f436d9 143 .group = FIO_OPT_G_IOURING,
52885fa2 144 },
5ffd5626
JA
145 {
146 .name = "registerfiles",
147 .lname = "Register file set",
148 .type = FIO_OPT_STR_SET,
149 .off1 = offsetof(struct ioring_options, registerfiles),
150 .help = "Pre-open/register files",
151 .category = FIO_OPT_C_ENGINE,
27f436d9 152 .group = FIO_OPT_G_IOURING,
5ffd5626 153 },
771c9901
JA
154 {
155 .name = "sqthread_poll",
3d7d00a3
JA
156 .lname = "Kernel SQ thread polling",
157 .type = FIO_OPT_INT,
158 .off1 = offsetof(struct ioring_options, sqpoll_thread),
159 .help = "Offload submission/completion to kernel thread",
160 .category = FIO_OPT_C_ENGINE,
27f436d9 161 .group = FIO_OPT_G_IOURING,
3d7d00a3
JA
162 },
163 {
164 .name = "sqthread_poll_cpu",
165 .lname = "SQ Thread Poll CPU",
2ea53ca3
JA
166 .type = FIO_OPT_INT,
167 .cb = fio_ioring_sqpoll_cb,
3d7d00a3 168 .help = "What CPU to run SQ thread polling on",
a90cd050 169 .category = FIO_OPT_C_ENGINE,
27f436d9 170 .group = FIO_OPT_G_IOURING,
a90cd050 171 },
b10b1e70
JA
172 {
173 .name = "nonvectored",
174 .lname = "Non-vectored",
175 .type = FIO_OPT_INT,
176 .off1 = offsetof(struct ioring_options, nonvectored),
177 .help = "Use non-vectored read/write commands",
178 .category = FIO_OPT_C_ENGINE,
179 .group = FIO_OPT_G_IOURING,
180 },
4a87b584
JA
181 {
182 .name = "uncached",
183 .lname = "Uncached",
184 .type = FIO_OPT_INT,
185 .off1 = offsetof(struct ioring_options, uncached),
186 .help = "Use RWF_UNCACHED for buffered read/writes",
187 .category = FIO_OPT_C_ENGINE,
188 .group = FIO_OPT_G_IOURING,
189 },
7d42e66e
KK
190 {
191 .name = "nowait",
192 .lname = "RWF_NOWAIT",
193 .type = FIO_OPT_BOOL,
194 .off1 = offsetof(struct ioring_options, nowait),
195 .help = "Use RWF_NOWAIT for reads/writes",
196 .category = FIO_OPT_C_ENGINE,
197 .group = FIO_OPT_G_IOURING,
198 },
52885fa2
JA
199 {
200 .name = NULL,
201 },
202};
203
bffad86f 204static int io_uring_enter(struct ioring_data *ld, unsigned int to_submit,
52885fa2
JA
205 unsigned int min_complete, unsigned int flags)
206{
bfed648c 207 return syscall(__NR_io_uring_enter, ld->ring_fd, to_submit,
521164fa 208 min_complete, flags, NULL, 0);
52885fa2
JA
209}
210
bffad86f 211static int fio_ioring_prep(struct thread_data *td, struct io_u *io_u)
52885fa2 212{
bffad86f 213 struct ioring_data *ld = td->io_ops_data;
cfcc8564 214 struct ioring_options *o = td->eo;
52885fa2 215 struct fio_file *f = io_u->file;
f0403f94 216 struct io_uring_sqe *sqe;
52885fa2 217
f0403f94 218 sqe = &ld->sqes[io_u->index];
34d6090e
AF
219
220 /* zero out fields not used in this submission */
221 memset(sqe, 0, sizeof(*sqe));
222
5ffd5626
JA
223 if (o->registerfiles) {
224 sqe->fd = f->engine_pos;
225 sqe->flags = IOSQE_FIXED_FILE;
226 } else {
227 sqe->fd = f->fd;
5ffd5626 228 }
52885fa2 229
e3970057 230 if (io_u->ddir == DDIR_READ || io_u->ddir == DDIR_WRITE) {
f0403f94 231 if (o->fixedbufs) {
3f1e3af7 232 sqe->opcode = fixed_ddir_to_op[io_u->ddir];
919850d2 233 sqe->addr = (unsigned long) io_u->xfer_buf;
f0403f94 234 sqe->len = io_u->xfer_buflen;
2ea53ca3 235 sqe->buf_index = io_u->index;
cfcc8564 236 } else {
832faaaf
JA
237 struct iovec *iov = &ld->iovecs[io_u->index];
238
239 /*
240 * Update based on actual io_u, requeue could have
241 * adjusted these
242 */
243 iov->iov_base = io_u->xfer_buf;
244 iov->iov_len = io_u->xfer_buflen;
245
3f1e3af7 246 sqe->opcode = ddir_to_op[io_u->ddir][!!o->nonvectored];
b10b1e70 247 if (o->nonvectored) {
832faaaf
JA
248 sqe->addr = (unsigned long) iov->iov_base;
249 sqe->len = iov->iov_len;
b10b1e70 250 } else {
832faaaf 251 sqe->addr = (unsigned long) iov;
b10b1e70
JA
252 sqe->len = 1;
253 }
cfcc8564 254 }
4a87b584
JA
255 if (!td->o.odirect && o->uncached)
256 sqe->rw_flags = RWF_UNCACHED;
7d42e66e
KK
257 if (o->nowait)
258 sqe->rw_flags |= RWF_NOWAIT;
1af44196 259 if (ld->ioprio_class_set)
b7ed2a86 260 sqe->ioprio = td->o.ioprio_class << 13;
1af44196 261 if (ld->ioprio_set)
b7ed2a86 262 sqe->ioprio |= td->o.ioprio;
f0403f94 263 sqe->off = io_u->offset;
48e698fa 264 } else if (ddir_sync(io_u->ddir)) {
01387bfe
AF
265 if (io_u->ddir == DDIR_SYNC_FILE_RANGE) {
266 sqe->off = f->first_write;
267 sqe->len = f->last_write - f->first_write;
268 sqe->sync_range_flags = td->o.sync_file_range;
269 sqe->opcode = IORING_OP_SYNC_FILE_RANGE;
270 } else {
01387bfe
AF
271 if (io_u->ddir == DDIR_DATASYNC)
272 sqe->fsync_flags |= IORING_FSYNC_DATASYNC;
273 sqe->opcode = IORING_OP_FSYNC;
274 }
48e698fa 275 }
52885fa2 276
48e698fa 277 sqe->user_data = (unsigned long) io_u;
52885fa2
JA
278 return 0;
279}
280
bffad86f 281static struct io_u *fio_ioring_event(struct thread_data *td, int event)
52885fa2 282{
bffad86f 283 struct ioring_data *ld = td->io_ops_data;
f0403f94 284 struct io_uring_cqe *cqe;
52885fa2 285 struct io_u *io_u;
b87aa01a 286 unsigned index;
52885fa2 287
b87aa01a 288 index = (event + ld->cq_ring_off) & ld->cq_ring_mask;
52885fa2 289
f0403f94 290 cqe = &ld->cq_ring.cqes[index];
e3466352 291 io_u = (struct io_u *) (uintptr_t) cqe->user_data;
52885fa2 292
f0403f94
JA
293 if (cqe->res != io_u->xfer_buflen) {
294 if (cqe->res > io_u->xfer_buflen)
295 io_u->error = -cqe->res;
52885fa2 296 else
f0403f94 297 io_u->resid = io_u->xfer_buflen - cqe->res;
52885fa2
JA
298 } else
299 io_u->error = 0;
300
301 return io_u;
302}
303
bffad86f 304static int fio_ioring_cqring_reap(struct thread_data *td, unsigned int events,
52885fa2
JA
305 unsigned int max)
306{
bffad86f
JA
307 struct ioring_data *ld = td->io_ops_data;
308 struct io_cq_ring *ring = &ld->cq_ring;
e2239016 309 unsigned head, reaped = 0;
52885fa2 310
9a2d78b3 311 head = *ring->head;
52885fa2 312 do {
9e26aff9 313 if (head == atomic_load_acquire(ring->tail))
52885fa2
JA
314 break;
315 reaped++;
316 head++;
52885fa2
JA
317 } while (reaped + events < max);
318
76ce63dd
AB
319 if (reaped)
320 atomic_store_release(ring->head, head);
321
52885fa2
JA
322 return reaped;
323}
324
bffad86f
JA
325static int fio_ioring_getevents(struct thread_data *td, unsigned int min,
326 unsigned int max, const struct timespec *t)
52885fa2 327{
bffad86f 328 struct ioring_data *ld = td->io_ops_data;
52885fa2 329 unsigned actual_min = td->o.iodepth_batch_complete_min == 0 ? 0 : min;
bffad86f
JA
330 struct ioring_options *o = td->eo;
331 struct io_cq_ring *ring = &ld->cq_ring;
b87aa01a
JA
332 unsigned events = 0;
333 int r;
52885fa2 334
9a2d78b3 335 ld->cq_ring_off = *ring->head;
52885fa2 336 do {
bffad86f 337 r = fio_ioring_cqring_reap(td, events, max);
52885fa2
JA
338 if (r) {
339 events += r;
f7cbbbf8
ST
340 if (actual_min != 0)
341 actual_min -= r;
52885fa2
JA
342 continue;
343 }
344
3d7d00a3 345 if (!o->sqpoll_thread) {
9a2d78b3
JA
346 r = io_uring_enter(ld, 0, actual_min,
347 IORING_ENTER_GETEVENTS);
771c9901 348 if (r < 0) {
f6abd731 349 if (errno == EAGAIN || errno == EINTR)
771c9901 350 continue;
9a2d78b3 351 td_verror(td, errno, "io_uring_enter");
771c9901
JA
352 break;
353 }
52885fa2
JA
354 }
355 } while (events < min);
356
357 return r < 0 ? r : events;
358}
359
b2a432bf
PC
360static void fio_ioring_prio_prep(struct thread_data *td, struct io_u *io_u)
361{
362 struct ioring_options *o = td->eo;
363 struct ioring_data *ld = td->io_ops_data;
364 if (rand_between(&td->prio_state, 0, 99) < o->cmdprio_percentage) {
365 ld->sqes[io_u->index].ioprio = IOPRIO_CLASS_RT << IOPRIO_CLASS_SHIFT;
366 io_u->flags |= IO_U_F_PRIORITY;
367 }
368 return;
369}
370
bffad86f
JA
371static enum fio_q_status fio_ioring_queue(struct thread_data *td,
372 struct io_u *io_u)
52885fa2 373{
bffad86f
JA
374 struct ioring_data *ld = td->io_ops_data;
375 struct io_sq_ring *ring = &ld->sq_ring;
b2a432bf 376 struct ioring_options *o = td->eo;
52885fa2
JA
377 unsigned tail, next_tail;
378
379 fio_ro_check(td, io_u);
380
b87aa01a 381 if (ld->queued == ld->iodepth)
52885fa2
JA
382 return FIO_Q_BUSY;
383
52885fa2
JA
384 if (io_u->ddir == DDIR_TRIM) {
385 if (ld->queued)
386 return FIO_Q_BUSY;
387
388 do_io_u_trim(td, io_u);
389 io_u_mark_submit(td, 1);
390 io_u_mark_complete(td, 1);
391 return FIO_Q_COMPLETED;
392 }
393
9a2d78b3 394 tail = *ring->tail;
52885fa2 395 next_tail = tail + 1;
9e26aff9 396 if (next_tail == atomic_load_acquire(ring->head))
52885fa2
JA
397 return FIO_Q_BUSY;
398
b2a432bf
PC
399 if (o->cmdprio_percentage)
400 fio_ioring_prio_prep(td, io_u);
b87aa01a 401 ring->array[tail & ld->sq_ring_mask] = io_u->index;
9e26aff9 402 atomic_store_release(ring->tail, next_tail);
52885fa2
JA
403
404 ld->queued++;
405 return FIO_Q_QUEUED;
406}
407
bffad86f 408static void fio_ioring_queued(struct thread_data *td, int start, int nr)
52885fa2 409{
bffad86f 410 struct ioring_data *ld = td->io_ops_data;
52885fa2
JA
411 struct timespec now;
412
413 if (!fio_fill_issue_time(td))
414 return;
415
416 fio_gettime(&now, NULL);
417
418 while (nr--) {
bffad86f 419 struct io_sq_ring *ring = &ld->sq_ring;
9a2d78b3 420 int index = ring->array[start & ld->sq_ring_mask];
f8289afc 421 struct io_u *io_u = ld->io_u_index[index];
52885fa2
JA
422
423 memcpy(&io_u->issue_time, &now, sizeof(now));
424 io_u_queued(td, io_u);
425
426 start++;
52885fa2
JA
427 }
428}
429
bffad86f 430static int fio_ioring_commit(struct thread_data *td)
52885fa2 431{
bffad86f
JA
432 struct ioring_data *ld = td->io_ops_data;
433 struct ioring_options *o = td->eo;
52885fa2
JA
434 int ret;
435
436 if (!ld->queued)
437 return 0;
438
3d7d00a3
JA
439 /*
440 * Kernel side does submission. just need to check if the ring is
441 * flagged as needing a kick, if so, call io_uring_enter(). This
442 * only happens if we've been idle too long.
443 */
444 if (o->sqpoll_thread) {
bffad86f 445 struct io_sq_ring *ring = &ld->sq_ring;
4cdbc048 446
2ea53ca3 447 read_barrier();
9a2d78b3 448 if (*ring->flags & IORING_SQ_NEED_WAKEUP)
b532dd6d
JA
449 io_uring_enter(ld, ld->queued, 0,
450 IORING_ENTER_SQ_WAKEUP);
771c9901
JA
451 ld->queued = 0;
452 return 0;
453 }
454
52885fa2 455 do {
9a2d78b3 456 unsigned start = *ld->sq_ring.head;
52885fa2
JA
457 long nr = ld->queued;
458
9a2d78b3 459 ret = io_uring_enter(ld, nr, 0, IORING_ENTER_GETEVENTS);
52885fa2 460 if (ret > 0) {
bffad86f 461 fio_ioring_queued(td, start, ret);
52885fa2
JA
462 io_u_mark_submit(td, ret);
463
464 ld->queued -= ret;
465 ret = 0;
a90cd050
JA
466 } else if (!ret) {
467 io_u_mark_submit(td, ret);
52885fa2 468 continue;
a90cd050 469 } else {
f6abd731 470 if (errno == EAGAIN || errno == EINTR) {
bffad86f 471 ret = fio_ioring_cqring_reap(td, 0, ld->queued);
a90cd050
JA
472 if (ret)
473 continue;
474 /* Shouldn't happen */
475 usleep(1);
476 continue;
52885fa2 477 }
9a2d78b3 478 td_verror(td, errno, "io_uring_enter submit");
52885fa2 479 break;
a90cd050 480 }
52885fa2
JA
481 } while (ld->queued);
482
483 return ret;
484}
485
bffad86f 486static void fio_ioring_unmap(struct ioring_data *ld)
52885fa2 487{
9a2d78b3 488 int i;
52885fa2 489
9a2d78b3
JA
490 for (i = 0; i < ARRAY_SIZE(ld->mmap); i++)
491 munmap(ld->mmap[i].ptr, ld->mmap[i].len);
492 close(ld->ring_fd);
b87aa01a
JA
493}
494
bffad86f 495static void fio_ioring_cleanup(struct thread_data *td)
52885fa2 496{
bffad86f 497 struct ioring_data *ld = td->io_ops_data;
52885fa2
JA
498
499 if (ld) {
52885fa2 500 if (!(td->flags & TD_F_CHILD))
bffad86f 501 fio_ioring_unmap(ld);
9a2d78b3 502
52885fa2 503 free(ld->io_u_index);
9a2d78b3 504 free(ld->iovecs);
5ffd5626 505 free(ld->fds);
52885fa2
JA
506 free(ld);
507 }
508}
509
bffad86f 510static int fio_ioring_mmap(struct ioring_data *ld, struct io_uring_params *p)
9a2d78b3 511{
bffad86f
JA
512 struct io_sq_ring *sring = &ld->sq_ring;
513 struct io_cq_ring *cring = &ld->cq_ring;
9a2d78b3
JA
514 void *ptr;
515
e2239016 516 ld->mmap[0].len = p->sq_off.array + p->sq_entries * sizeof(__u32);
9a2d78b3
JA
517 ptr = mmap(0, ld->mmap[0].len, PROT_READ | PROT_WRITE,
518 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
519 IORING_OFF_SQ_RING);
520 ld->mmap[0].ptr = ptr;
521 sring->head = ptr + p->sq_off.head;
522 sring->tail = ptr + p->sq_off.tail;
523 sring->ring_mask = ptr + p->sq_off.ring_mask;
524 sring->ring_entries = ptr + p->sq_off.ring_entries;
525 sring->flags = ptr + p->sq_off.flags;
ac122fea 526 sring->array = ptr + p->sq_off.array;
9a2d78b3
JA
527 ld->sq_ring_mask = *sring->ring_mask;
528
f0403f94
JA
529 ld->mmap[1].len = p->sq_entries * sizeof(struct io_uring_sqe);
530 ld->sqes = mmap(0, ld->mmap[1].len, PROT_READ | PROT_WRITE,
9a2d78b3 531 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
f0403f94
JA
532 IORING_OFF_SQES);
533 ld->mmap[1].ptr = ld->sqes;
9a2d78b3 534
f0403f94
JA
535 ld->mmap[2].len = p->cq_off.cqes +
536 p->cq_entries * sizeof(struct io_uring_cqe);
9a2d78b3
JA
537 ptr = mmap(0, ld->mmap[2].len, PROT_READ | PROT_WRITE,
538 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
539 IORING_OFF_CQ_RING);
540 ld->mmap[2].ptr = ptr;
541 cring->head = ptr + p->cq_off.head;
542 cring->tail = ptr + p->cq_off.tail;
543 cring->ring_mask = ptr + p->cq_off.ring_mask;
544 cring->ring_entries = ptr + p->cq_off.ring_entries;
f0403f94 545 cring->cqes = ptr + p->cq_off.cqes;
9a2d78b3
JA
546 ld->cq_ring_mask = *cring->ring_mask;
547 return 0;
548}
549
bffad86f 550static int fio_ioring_queue_init(struct thread_data *td)
52885fa2 551{
bffad86f
JA
552 struct ioring_data *ld = td->io_ops_data;
553 struct ioring_options *o = td->eo;
52885fa2 554 int depth = td->o.iodepth;
bffad86f 555 struct io_uring_params p;
9a2d78b3
JA
556 int ret;
557
558 memset(&p, 0, sizeof(p));
52885fa2
JA
559
560 if (o->hipri)
bffad86f 561 p.flags |= IORING_SETUP_IOPOLL;
3d7d00a3
JA
562 if (o->sqpoll_thread) {
563 p.flags |= IORING_SETUP_SQPOLL;
564 if (o->sqpoll_set) {
565 p.flags |= IORING_SETUP_SQ_AFF;
566 p.sq_thread_cpu = o->sqpoll_cpu;
567 }
f635f1fb 568 }
a90cd050 569
bfed648c 570 ret = syscall(__NR_io_uring_setup, depth, &p);
9a2d78b3
JA
571 if (ret < 0)
572 return ret;
573
574 ld->ring_fd = ret;
2ea53ca3
JA
575
576 if (o->fixedbufs) {
bfed648c 577 ret = syscall(__NR_io_uring_register, ld->ring_fd,
919850d2 578 IORING_REGISTER_BUFFERS, ld->iovecs, depth);
2ea53ca3
JA
579 if (ret < 0)
580 return ret;
581 }
582
bffad86f 583 return fio_ioring_mmap(ld, &p);
52885fa2
JA
584}
585
5ffd5626
JA
586static int fio_ioring_register_files(struct thread_data *td)
587{
588 struct ioring_data *ld = td->io_ops_data;
589 struct fio_file *f;
590 unsigned int i;
591 int ret;
592
593 ld->fds = calloc(td->o.nr_files, sizeof(int));
594
595 for_each_file(td, f, i) {
596 ret = generic_open_file(td, f);
597 if (ret)
598 goto err;
599 ld->fds[i] = f->fd;
600 f->engine_pos = i;
601 }
602
bfed648c 603 ret = syscall(__NR_io_uring_register, ld->ring_fd,
5ffd5626
JA
604 IORING_REGISTER_FILES, ld->fds, td->o.nr_files);
605 if (ret) {
606err:
607 free(ld->fds);
608 ld->fds = NULL;
609 }
610
611 /*
612 * Pretend the file is closed again, and really close it if we hit
613 * an error.
614 */
615 for_each_file(td, f, i) {
616 if (ret) {
617 int fio_unused ret2;
618 ret2 = generic_close_file(td, f);
619 } else
620 f->fd = -1;
621 }
622
623 return ret;
624}
625
bffad86f 626static int fio_ioring_post_init(struct thread_data *td)
52885fa2 627{
bffad86f 628 struct ioring_data *ld = td->io_ops_data;
5ffd5626 629 struct ioring_options *o = td->eo;
52885fa2 630 struct io_u *io_u;
650346e1 631 int err, i;
52885fa2 632
650346e1
JA
633 for (i = 0; i < td->o.iodepth; i++) {
634 struct iovec *iov = &ld->iovecs[i];
9a2d78b3 635
650346e1
JA
636 io_u = ld->io_u_index[i];
637 iov->iov_base = io_u->buf;
638 iov->iov_len = td_max_bs(td);
52885fa2
JA
639 }
640
bffad86f 641 err = fio_ioring_queue_init(td);
52885fa2 642 if (err) {
d63a472d 643 td_verror(td, errno, "io_queue_init");
52885fa2
JA
644 return 1;
645 }
646
5ffd5626
JA
647 if (o->registerfiles) {
648 err = fio_ioring_register_files(td);
649 if (err) {
650 td_verror(td, errno, "ioring_register_files");
651 return 1;
652 }
653 }
654
52885fa2
JA
655 return 0;
656}
657
bffad86f 658static int fio_ioring_init(struct thread_data *td)
52885fa2 659{
5ffd5626 660 struct ioring_options *o = td->eo;
bffad86f 661 struct ioring_data *ld;
b2a432bf 662 struct thread_options *to = &td->o;
52885fa2 663
5ffd5626
JA
664 /* sqthread submission requires registered files */
665 if (o->sqpoll_thread)
666 o->registerfiles = 1;
667
668 if (o->registerfiles && td->o.nr_files != td->o.open_files) {
669 log_err("fio: io_uring registered files require nr_files to "
670 "be identical to open_files\n");
671 return 1;
672 }
673
52885fa2
JA
674 ld = calloc(1, sizeof(*ld));
675
b87aa01a
JA
676 /* ring depth must be a power-of-2 */
677 ld->iodepth = td->o.iodepth;
678 td->o.iodepth = roundup_pow2(td->o.iodepth);
679
52885fa2
JA
680 /* io_u index */
681 ld->io_u_index = calloc(td->o.iodepth, sizeof(struct io_u *));
650346e1 682 ld->iovecs = calloc(td->o.iodepth, sizeof(struct iovec));
52885fa2
JA
683
684 td->io_ops_data = ld;
b2a432bf
PC
685
686 /*
687 * Check for option conflicts
688 */
689 if ((fio_option_is_set(to, ioprio) || fio_option_is_set(to, ioprio_class)) &&
690 o->cmdprio_percentage != 0) {
691 log_err("%s: cmdprio_percentage option and mutually exclusive "
692 "prio or prioclass option is set, exiting\n", to->name);
693 td_verror(td, EINVAL, "fio_io_uring_init");
694 return 1;
695 }
1af44196
XW
696
697 if (fio_option_is_set(&td->o, ioprio_class))
698 ld->ioprio_class_set = true;
699 if (fio_option_is_set(&td->o, ioprio))
700 ld->ioprio_set = true;
701
52885fa2
JA
702 return 0;
703}
704
bffad86f 705static int fio_ioring_io_u_init(struct thread_data *td, struct io_u *io_u)
52885fa2 706{
bffad86f 707 struct ioring_data *ld = td->io_ops_data;
52885fa2
JA
708
709 ld->io_u_index[io_u->index] = io_u;
710 return 0;
711}
712
5ffd5626
JA
713static int fio_ioring_open_file(struct thread_data *td, struct fio_file *f)
714{
715 struct ioring_data *ld = td->io_ops_data;
716 struct ioring_options *o = td->eo;
717
17318cf6 718 if (!ld || !o->registerfiles)
5ffd5626
JA
719 return generic_open_file(td, f);
720
721 f->fd = ld->fds[f->engine_pos];
722 return 0;
723}
724
725static int fio_ioring_close_file(struct thread_data *td, struct fio_file *f)
726{
17318cf6 727 struct ioring_data *ld = td->io_ops_data;
5ffd5626
JA
728 struct ioring_options *o = td->eo;
729
17318cf6 730 if (!ld || !o->registerfiles)
5ffd5626
JA
731 return generic_close_file(td, f);
732
733 f->fd = -1;
734 return 0;
735}
736
52885fa2 737static struct ioengine_ops ioengine = {
bffad86f 738 .name = "io_uring",
52885fa2 739 .version = FIO_IOOPS_VERSION,
04ba61df 740 .flags = FIO_ASYNCIO_SYNC_TRIM,
bffad86f
JA
741 .init = fio_ioring_init,
742 .post_init = fio_ioring_post_init,
743 .io_u_init = fio_ioring_io_u_init,
744 .prep = fio_ioring_prep,
745 .queue = fio_ioring_queue,
746 .commit = fio_ioring_commit,
747 .getevents = fio_ioring_getevents,
748 .event = fio_ioring_event,
749 .cleanup = fio_ioring_cleanup,
5ffd5626
JA
750 .open_file = fio_ioring_open_file,
751 .close_file = fio_ioring_close_file,
52885fa2
JA
752 .get_file_size = generic_get_file_size,
753 .options = options,
bffad86f 754 .option_struct_size = sizeof(struct ioring_options),
52885fa2
JA
755};
756
bffad86f 757static void fio_init fio_ioring_register(void)
52885fa2 758{
52885fa2 759 register_ioengine(&ioengine);
52885fa2
JA
760}
761
bffad86f 762static void fio_exit fio_ioring_unregister(void)
52885fa2 763{
52885fa2 764 unregister_ioengine(&ioengine);
52885fa2 765}
1f90e9bb 766#endif