engines/libaio: fix io_getevents min/max events arguments
[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"
e9f6567a 26#include "cmdprio.h"
16be6037 27#include "zbd.h"
855dc4d4
AG
28#include "nvme.h"
29
30#include <sys/stat.h>
31
32enum uring_cmd_type {
33 FIO_URING_CMD_NVME = 1,
34};
9a2d78b3 35
bffad86f 36struct io_sq_ring {
e2239016
JA
37 unsigned *head;
38 unsigned *tail;
39 unsigned *ring_mask;
40 unsigned *ring_entries;
41 unsigned *flags;
42 unsigned *array;
52885fa2
JA
43};
44
bffad86f 45struct io_cq_ring {
e2239016
JA
46 unsigned *head;
47 unsigned *tail;
48 unsigned *ring_mask;
49 unsigned *ring_entries;
f0403f94 50 struct io_uring_cqe *cqes;
9a2d78b3
JA
51};
52
bffad86f 53struct ioring_mmap {
9a2d78b3
JA
54 void *ptr;
55 size_t len;
52885fa2
JA
56};
57
bffad86f 58struct ioring_data {
9a2d78b3
JA
59 int ring_fd;
60
52885fa2
JA
61 struct io_u **io_u_index;
62
5ffd5626
JA
63 int *fds;
64
bffad86f 65 struct io_sq_ring sq_ring;
f0403f94 66 struct io_uring_sqe *sqes;
9a2d78b3 67 struct iovec *iovecs;
b87aa01a 68 unsigned sq_ring_mask;
52885fa2 69
bffad86f 70 struct io_cq_ring cq_ring;
b87aa01a 71 unsigned cq_ring_mask;
52885fa2
JA
72
73 int queued;
74 int cq_ring_off;
b87aa01a 75 unsigned iodepth;
5a59a81d 76 int prepped;
96563db9 77
bffad86f 78 struct ioring_mmap mmap[3];
d6cbeab4
NC
79
80 struct cmdprio cmdprio;
52885fa2
JA
81};
82
bffad86f 83struct ioring_options {
a48f0cc7 84 struct thread_data *td;
52885fa2 85 unsigned int hipri;
d6cbeab4 86 struct cmdprio_options cmdprio_options;
52885fa2 87 unsigned int fixedbufs;
5ffd5626 88 unsigned int registerfiles;
3d7d00a3 89 unsigned int sqpoll_thread;
2ea53ca3
JA
90 unsigned int sqpoll_set;
91 unsigned int sqpoll_cpu;
b10b1e70 92 unsigned int nonvectored;
4a87b584 93 unsigned int uncached;
7d42e66e 94 unsigned int nowait;
5a59a81d 95 unsigned int force_async;
855dc4d4 96 enum uring_cmd_type cmd_type;
52885fa2
JA
97};
98
b10b1e70
JA
99static const int ddir_to_op[2][2] = {
100 { IORING_OP_READV, IORING_OP_READ },
101 { IORING_OP_WRITEV, IORING_OP_WRITE }
102};
103
3f1e3af7
KB
104static const int fixed_ddir_to_op[2] = {
105 IORING_OP_READ_FIXED,
106 IORING_OP_WRITE_FIXED
107};
108
2ea53ca3 109static int fio_ioring_sqpoll_cb(void *data, unsigned long long *val)
a90cd050 110{
bffad86f 111 struct ioring_options *o = data;
a90cd050 112
2ea53ca3
JA
113 o->sqpoll_cpu = *val;
114 o->sqpoll_set = 1;
a90cd050
JA
115 return 0;
116}
117
52885fa2
JA
118static struct fio_option options[] = {
119 {
120 .name = "hipri",
121 .lname = "High Priority",
122 .type = FIO_OPT_STR_SET,
bffad86f 123 .off1 = offsetof(struct ioring_options, hipri),
52885fa2
JA
124 .help = "Use polled IO completions",
125 .category = FIO_OPT_C_ENGINE,
27f436d9 126 .group = FIO_OPT_G_IOURING,
52885fa2 127 },
b2a432bf
PC
128#ifdef FIO_HAVE_IOPRIO_CLASS
129 {
130 .name = "cmdprio_percentage",
131 .lname = "high priority percentage",
132 .type = FIO_OPT_INT,
e9f6567a 133 .off1 = offsetof(struct ioring_options,
d6cbeab4 134 cmdprio_options.percentage[DDIR_READ]),
e9f6567a 135 .off2 = offsetof(struct ioring_options,
d6cbeab4 136 cmdprio_options.percentage[DDIR_WRITE]),
e9f6567a 137 .minval = 0,
b2a432bf
PC
138 .maxval = 100,
139 .help = "Send high priority I/O this percentage of the time",
140 .category = FIO_OPT_C_ENGINE,
141 .group = FIO_OPT_G_IOURING,
142 },
12f9d54a
DLM
143 {
144 .name = "cmdprio_class",
145 .lname = "Asynchronous I/O priority class",
146 .type = FIO_OPT_INT,
147 .off1 = offsetof(struct ioring_options,
d6cbeab4 148 cmdprio_options.class[DDIR_READ]),
12f9d54a 149 .off2 = offsetof(struct ioring_options,
d6cbeab4 150 cmdprio_options.class[DDIR_WRITE]),
12f9d54a
DLM
151 .help = "Set asynchronous IO priority class",
152 .minval = IOPRIO_MIN_PRIO_CLASS + 1,
153 .maxval = IOPRIO_MAX_PRIO_CLASS,
154 .interval = 1,
155 .category = FIO_OPT_C_ENGINE,
156 .group = FIO_OPT_G_IOURING,
157 },
158 {
159 .name = "cmdprio",
160 .lname = "Asynchronous I/O priority level",
161 .type = FIO_OPT_INT,
162 .off1 = offsetof(struct ioring_options,
d6cbeab4 163 cmdprio_options.level[DDIR_READ]),
12f9d54a 164 .off2 = offsetof(struct ioring_options,
d6cbeab4 165 cmdprio_options.level[DDIR_WRITE]),
12f9d54a
DLM
166 .help = "Set asynchronous IO priority level",
167 .minval = IOPRIO_MIN_PRIO,
168 .maxval = IOPRIO_MAX_PRIO,
169 .interval = 1,
170 .category = FIO_OPT_C_ENGINE,
171 .group = FIO_OPT_G_IOURING,
172 },
a48f0cc7
DLM
173 {
174 .name = "cmdprio_bssplit",
175 .lname = "Priority percentage block size split",
d6cbeab4
NC
176 .type = FIO_OPT_STR_STORE,
177 .off1 = offsetof(struct ioring_options,
178 cmdprio_options.bssplit_str),
a48f0cc7
DLM
179 .help = "Set priority percentages for different block sizes",
180 .category = FIO_OPT_C_ENGINE,
181 .group = FIO_OPT_G_IOURING,
182 },
b2a432bf
PC
183#else
184 {
185 .name = "cmdprio_percentage",
186 .lname = "high priority percentage",
187 .type = FIO_OPT_UNSUPPORTED,
188 .help = "Your platform does not support I/O priority classes",
189 },
12f9d54a
DLM
190 {
191 .name = "cmdprio_class",
192 .lname = "Asynchronous I/O priority class",
193 .type = FIO_OPT_UNSUPPORTED,
194 .help = "Your platform does not support I/O priority classes",
195 },
196 {
197 .name = "cmdprio",
198 .lname = "Asynchronous I/O priority level",
199 .type = FIO_OPT_UNSUPPORTED,
200 .help = "Your platform does not support I/O priority classes",
201 },
a48f0cc7
DLM
202 {
203 .name = "cmdprio_bssplit",
204 .lname = "Priority percentage block size split",
205 .type = FIO_OPT_UNSUPPORTED,
206 .help = "Your platform does not support I/O priority classes",
207 },
b2a432bf 208#endif
52885fa2
JA
209 {
210 .name = "fixedbufs",
211 .lname = "Fixed (pre-mapped) IO buffers",
212 .type = FIO_OPT_STR_SET,
bffad86f 213 .off1 = offsetof(struct ioring_options, fixedbufs),
52885fa2
JA
214 .help = "Pre map IO buffers",
215 .category = FIO_OPT_C_ENGINE,
27f436d9 216 .group = FIO_OPT_G_IOURING,
52885fa2 217 },
5ffd5626
JA
218 {
219 .name = "registerfiles",
220 .lname = "Register file set",
221 .type = FIO_OPT_STR_SET,
222 .off1 = offsetof(struct ioring_options, registerfiles),
223 .help = "Pre-open/register files",
224 .category = FIO_OPT_C_ENGINE,
27f436d9 225 .group = FIO_OPT_G_IOURING,
5ffd5626 226 },
771c9901
JA
227 {
228 .name = "sqthread_poll",
3d7d00a3 229 .lname = "Kernel SQ thread polling",
d6f936d1 230 .type = FIO_OPT_STR_SET,
3d7d00a3
JA
231 .off1 = offsetof(struct ioring_options, sqpoll_thread),
232 .help = "Offload submission/completion to kernel thread",
233 .category = FIO_OPT_C_ENGINE,
27f436d9 234 .group = FIO_OPT_G_IOURING,
3d7d00a3
JA
235 },
236 {
237 .name = "sqthread_poll_cpu",
238 .lname = "SQ Thread Poll CPU",
2ea53ca3
JA
239 .type = FIO_OPT_INT,
240 .cb = fio_ioring_sqpoll_cb,
3d7d00a3 241 .help = "What CPU to run SQ thread polling on",
a90cd050 242 .category = FIO_OPT_C_ENGINE,
27f436d9 243 .group = FIO_OPT_G_IOURING,
a90cd050 244 },
b10b1e70
JA
245 {
246 .name = "nonvectored",
247 .lname = "Non-vectored",
248 .type = FIO_OPT_INT,
249 .off1 = offsetof(struct ioring_options, nonvectored),
556d8415 250 .def = "-1",
b10b1e70
JA
251 .help = "Use non-vectored read/write commands",
252 .category = FIO_OPT_C_ENGINE,
253 .group = FIO_OPT_G_IOURING,
254 },
4a87b584
JA
255 {
256 .name = "uncached",
257 .lname = "Uncached",
258 .type = FIO_OPT_INT,
259 .off1 = offsetof(struct ioring_options, uncached),
260 .help = "Use RWF_UNCACHED for buffered read/writes",
261 .category = FIO_OPT_C_ENGINE,
262 .group = FIO_OPT_G_IOURING,
263 },
7d42e66e
KK
264 {
265 .name = "nowait",
266 .lname = "RWF_NOWAIT",
267 .type = FIO_OPT_BOOL,
268 .off1 = offsetof(struct ioring_options, nowait),
269 .help = "Use RWF_NOWAIT for reads/writes",
270 .category = FIO_OPT_C_ENGINE,
271 .group = FIO_OPT_G_IOURING,
272 },
5a59a81d
JA
273 {
274 .name = "force_async",
275 .lname = "Force async",
276 .type = FIO_OPT_INT,
277 .off1 = offsetof(struct ioring_options, force_async),
278 .help = "Set IOSQE_ASYNC every N requests",
279 .category = FIO_OPT_C_ENGINE,
280 .group = FIO_OPT_G_IOURING,
281 },
855dc4d4
AG
282 {
283 .name = "cmd_type",
284 .lname = "Uring cmd type",
285 .type = FIO_OPT_STR,
286 .off1 = offsetof(struct ioring_options, cmd_type),
287 .help = "Specify uring-cmd type",
288 .def = "nvme",
289 .posval = {
290 { .ival = "nvme",
291 .oval = FIO_URING_CMD_NVME,
292 .help = "Issue nvme-uring-cmd",
293 },
294 },
295 .category = FIO_OPT_C_ENGINE,
296 .group = FIO_OPT_G_IOURING,
297 },
52885fa2
JA
298 {
299 .name = NULL,
300 },
301};
302
bffad86f 303static int io_uring_enter(struct ioring_data *ld, unsigned int to_submit,
52885fa2
JA
304 unsigned int min_complete, unsigned int flags)
305{
c377f4f8
JA
306#ifdef FIO_ARCH_HAS_SYSCALL
307 return __do_syscall6(__NR_io_uring_enter, ld->ring_fd, to_submit,
308 min_complete, flags, NULL, 0);
309#else
bfed648c 310 return syscall(__NR_io_uring_enter, ld->ring_fd, to_submit,
521164fa 311 min_complete, flags, NULL, 0);
c377f4f8 312#endif
52885fa2
JA
313}
314
bffad86f 315static int fio_ioring_prep(struct thread_data *td, struct io_u *io_u)
52885fa2 316{
bffad86f 317 struct ioring_data *ld = td->io_ops_data;
cfcc8564 318 struct ioring_options *o = td->eo;
52885fa2 319 struct fio_file *f = io_u->file;
f0403f94 320 struct io_uring_sqe *sqe;
52885fa2 321
f0403f94 322 sqe = &ld->sqes[io_u->index];
34d6090e 323
5ffd5626
JA
324 if (o->registerfiles) {
325 sqe->fd = f->engine_pos;
326 sqe->flags = IOSQE_FIXED_FILE;
327 } else {
328 sqe->fd = f->fd;
87b69ef2 329 sqe->flags = 0;
5ffd5626 330 }
52885fa2 331
e3970057 332 if (io_u->ddir == DDIR_READ || io_u->ddir == DDIR_WRITE) {
f0403f94 333 if (o->fixedbufs) {
3f1e3af7 334 sqe->opcode = fixed_ddir_to_op[io_u->ddir];
919850d2 335 sqe->addr = (unsigned long) io_u->xfer_buf;
f0403f94 336 sqe->len = io_u->xfer_buflen;
2ea53ca3 337 sqe->buf_index = io_u->index;
cfcc8564 338 } else {
832faaaf
JA
339 struct iovec *iov = &ld->iovecs[io_u->index];
340
341 /*
342 * Update based on actual io_u, requeue could have
343 * adjusted these
344 */
345 iov->iov_base = io_u->xfer_buf;
346 iov->iov_len = io_u->xfer_buflen;
347
3f1e3af7 348 sqe->opcode = ddir_to_op[io_u->ddir][!!o->nonvectored];
b10b1e70 349 if (o->nonvectored) {
832faaaf
JA
350 sqe->addr = (unsigned long) iov->iov_base;
351 sqe->len = iov->iov_len;
b10b1e70 352 } else {
832faaaf 353 sqe->addr = (unsigned long) iov;
b10b1e70
JA
354 sqe->len = 1;
355 }
cfcc8564 356 }
fd70e361 357 sqe->rw_flags = 0;
4a87b584 358 if (!td->o.odirect && o->uncached)
fd70e361 359 sqe->rw_flags |= RWF_UNCACHED;
7d42e66e
KK
360 if (o->nowait)
361 sqe->rw_flags |= RWF_NOWAIT;
8ff6b289
NC
362
363 /*
364 * Since io_uring can have a submission context (sqthread_poll)
365 * that is different from the process context, we cannot rely on
366 * the IO priority set by ioprio_set() (option prio/prioclass)
367 * to be inherited.
368 * td->ioprio will have the value of the "default prio", so set
369 * this unconditionally. This value might get overridden by
ff00f247 370 * fio_ioring_cmdprio_prep() if the option cmdprio_percentage or
8ff6b289
NC
371 * cmdprio_bssplit is used.
372 */
373 sqe->ioprio = td->ioprio;
f0403f94 374 sqe->off = io_u->offset;
48e698fa 375 } else if (ddir_sync(io_u->ddir)) {
7c70f506 376 sqe->ioprio = 0;
01387bfe
AF
377 if (io_u->ddir == DDIR_SYNC_FILE_RANGE) {
378 sqe->off = f->first_write;
379 sqe->len = f->last_write - f->first_write;
380 sqe->sync_range_flags = td->o.sync_file_range;
381 sqe->opcode = IORING_OP_SYNC_FILE_RANGE;
382 } else {
7c70f506
JA
383 sqe->off = 0;
384 sqe->addr = 0;
385 sqe->len = 0;
01387bfe
AF
386 if (io_u->ddir == DDIR_DATASYNC)
387 sqe->fsync_flags |= IORING_FSYNC_DATASYNC;
388 sqe->opcode = IORING_OP_FSYNC;
389 }
48e698fa 390 }
52885fa2 391
5a59a81d
JA
392 if (o->force_async && ++ld->prepped == o->force_async) {
393 ld->prepped = 0;
394 sqe->flags |= IOSQE_ASYNC;
395 }
396
48e698fa 397 sqe->user_data = (unsigned long) io_u;
52885fa2
JA
398 return 0;
399}
400
855dc4d4
AG
401static int fio_ioring_cmd_prep(struct thread_data *td, struct io_u *io_u)
402{
403 struct ioring_data *ld = td->io_ops_data;
404 struct ioring_options *o = td->eo;
405 struct fio_file *f = io_u->file;
3ce6a3de 406 struct nvme_uring_cmd *cmd;
855dc4d4 407 struct io_uring_sqe *sqe;
855dc4d4 408
3ce6a3de
JA
409 /* only supports nvme_uring_cmd */
410 if (o->cmd_type != FIO_URING_CMD_NVME)
411 return -EINVAL;
855dc4d4 412
16be6037
AK
413 if (io_u->ddir == DDIR_TRIM)
414 return 0;
415
3ce6a3de 416 sqe = &ld->sqes[(io_u->index) << 1];
855dc4d4 417
3ce6a3de
JA
418 if (o->registerfiles) {
419 sqe->fd = f->engine_pos;
420 sqe->flags = IOSQE_FIXED_FILE;
421 } else {
422 sqe->fd = f->fd;
423 }
424 sqe->rw_flags = 0;
425 if (!td->o.odirect && o->uncached)
426 sqe->rw_flags |= RWF_UNCACHED;
427 if (o->nowait)
428 sqe->rw_flags |= RWF_NOWAIT;
855dc4d4 429
3ce6a3de
JA
430 sqe->opcode = IORING_OP_URING_CMD;
431 sqe->user_data = (unsigned long) io_u;
432 if (o->nonvectored)
433 sqe->cmd_op = NVME_URING_CMD_IO;
434 else
435 sqe->cmd_op = NVME_URING_CMD_IO_VEC;
436 if (o->force_async && ++ld->prepped == o->force_async) {
437 ld->prepped = 0;
438 sqe->flags |= IOSQE_ASYNC;
855dc4d4 439 }
0ebd3bf6
AG
440 if (o->fixedbufs) {
441 sqe->uring_cmd_flags = IORING_URING_CMD_FIXED;
442 sqe->buf_index = io_u->index;
443 }
3ce6a3de
JA
444
445 cmd = (struct nvme_uring_cmd *)sqe->cmd;
446 return fio_nvme_uring_cmd_prep(cmd, io_u,
447 o->nonvectored ? NULL : &ld->iovecs[io_u->index]);
855dc4d4
AG
448}
449
bffad86f 450static struct io_u *fio_ioring_event(struct thread_data *td, int event)
52885fa2 451{
bffad86f 452 struct ioring_data *ld = td->io_ops_data;
f0403f94 453 struct io_uring_cqe *cqe;
52885fa2 454 struct io_u *io_u;
b87aa01a 455 unsigned index;
52885fa2 456
b87aa01a 457 index = (event + ld->cq_ring_off) & ld->cq_ring_mask;
52885fa2 458
f0403f94 459 cqe = &ld->cq_ring.cqes[index];
e3466352 460 io_u = (struct io_u *) (uintptr_t) cqe->user_data;
52885fa2 461
f0403f94
JA
462 if (cqe->res != io_u->xfer_buflen) {
463 if (cqe->res > io_u->xfer_buflen)
464 io_u->error = -cqe->res;
52885fa2 465 else
f0403f94 466 io_u->resid = io_u->xfer_buflen - cqe->res;
52885fa2
JA
467 } else
468 io_u->error = 0;
469
470 return io_u;
471}
472
855dc4d4
AG
473static struct io_u *fio_ioring_cmd_event(struct thread_data *td, int event)
474{
475 struct ioring_data *ld = td->io_ops_data;
476 struct ioring_options *o = td->eo;
477 struct io_uring_cqe *cqe;
478 struct io_u *io_u;
479 unsigned index;
480
481 index = (event + ld->cq_ring_off) & ld->cq_ring_mask;
482 if (o->cmd_type == FIO_URING_CMD_NVME)
483 index <<= 1;
484
485 cqe = &ld->cq_ring.cqes[index];
486 io_u = (struct io_u *) (uintptr_t) cqe->user_data;
487
488 if (cqe->res != 0)
489 io_u->error = -cqe->res;
490 else
491 io_u->error = 0;
492
493 return io_u;
494}
495
bffad86f 496static int fio_ioring_cqring_reap(struct thread_data *td, unsigned int events,
52885fa2
JA
497 unsigned int max)
498{
bffad86f
JA
499 struct ioring_data *ld = td->io_ops_data;
500 struct io_cq_ring *ring = &ld->cq_ring;
e2239016 501 unsigned head, reaped = 0;
52885fa2 502
9a2d78b3 503 head = *ring->head;
52885fa2 504 do {
9e26aff9 505 if (head == atomic_load_acquire(ring->tail))
52885fa2
JA
506 break;
507 reaped++;
508 head++;
52885fa2
JA
509 } while (reaped + events < max);
510
76ce63dd
AB
511 if (reaped)
512 atomic_store_release(ring->head, head);
513
52885fa2
JA
514 return reaped;
515}
516
bffad86f
JA
517static int fio_ioring_getevents(struct thread_data *td, unsigned int min,
518 unsigned int max, const struct timespec *t)
52885fa2 519{
bffad86f 520 struct ioring_data *ld = td->io_ops_data;
52885fa2 521 unsigned actual_min = td->o.iodepth_batch_complete_min == 0 ? 0 : min;
bffad86f
JA
522 struct ioring_options *o = td->eo;
523 struct io_cq_ring *ring = &ld->cq_ring;
b87aa01a
JA
524 unsigned events = 0;
525 int r;
52885fa2 526
9a2d78b3 527 ld->cq_ring_off = *ring->head;
52885fa2 528 do {
bffad86f 529 r = fio_ioring_cqring_reap(td, events, max);
52885fa2
JA
530 if (r) {
531 events += r;
f7cbbbf8
ST
532 if (actual_min != 0)
533 actual_min -= r;
52885fa2
JA
534 continue;
535 }
536
3d7d00a3 537 if (!o->sqpoll_thread) {
9a2d78b3
JA
538 r = io_uring_enter(ld, 0, actual_min,
539 IORING_ENTER_GETEVENTS);
771c9901 540 if (r < 0) {
f6abd731 541 if (errno == EAGAIN || errno == EINTR)
771c9901 542 continue;
1816895b 543 r = -errno;
9a2d78b3 544 td_verror(td, errno, "io_uring_enter");
771c9901
JA
545 break;
546 }
52885fa2
JA
547 }
548 } while (events < min);
549
550 return r < 0 ? r : events;
551}
552
127715b6
NC
553static inline void fio_ioring_cmdprio_prep(struct thread_data *td,
554 struct io_u *io_u)
b2a432bf 555{
b2a432bf 556 struct ioring_data *ld = td->io_ops_data;
d6cbeab4 557 struct cmdprio *cmdprio = &ld->cmdprio;
127715b6
NC
558
559 if (fio_cmdprio_set_ioprio(td, cmdprio, io_u))
560 ld->sqes[io_u->index].ioprio = io_u->ioprio;
b2a432bf
PC
561}
562
16be6037
AK
563static int fio_ioring_cmd_io_u_trim(const struct thread_data *td,
564 struct io_u *io_u)
565{
566 struct fio_file *f = io_u->file;
567 int ret;
568
569 if (td->o.zone_mode == ZONE_MODE_ZBD) {
570 ret = zbd_do_io_u_trim(td, io_u);
571 if (ret == io_u_completed)
572 return io_u->xfer_buflen;
573 if (ret)
574 goto err;
575 }
576
577 return fio_nvme_trim(td, f, io_u->offset, io_u->xfer_buflen);
578
579err:
580 io_u->error = ret;
581 return 0;
582}
583
bffad86f
JA
584static enum fio_q_status fio_ioring_queue(struct thread_data *td,
585 struct io_u *io_u)
52885fa2 586{
bffad86f
JA
587 struct ioring_data *ld = td->io_ops_data;
588 struct io_sq_ring *ring = &ld->sq_ring;
52885fa2
JA
589 unsigned tail, next_tail;
590
591 fio_ro_check(td, io_u);
592
b87aa01a 593 if (ld->queued == ld->iodepth)
52885fa2
JA
594 return FIO_Q_BUSY;
595
52885fa2
JA
596 if (io_u->ddir == DDIR_TRIM) {
597 if (ld->queued)
598 return FIO_Q_BUSY;
599
16be6037
AK
600 if (!strcmp(td->io_ops->name, "io_uring_cmd"))
601 fio_ioring_cmd_io_u_trim(td, io_u);
602 else
603 do_io_u_trim(td, io_u);
604
52885fa2
JA
605 io_u_mark_submit(td, 1);
606 io_u_mark_complete(td, 1);
607 return FIO_Q_COMPLETED;
608 }
609
9a2d78b3 610 tail = *ring->tail;
52885fa2 611 next_tail = tail + 1;
9e26aff9 612 if (next_tail == atomic_load_acquire(ring->head))
52885fa2
JA
613 return FIO_Q_BUSY;
614
d6cbeab4 615 if (ld->cmdprio.mode != CMDPRIO_MODE_NONE)
ff00f247
NC
616 fio_ioring_cmdprio_prep(td, io_u);
617
b87aa01a 618 ring->array[tail & ld->sq_ring_mask] = io_u->index;
9e26aff9 619 atomic_store_release(ring->tail, next_tail);
52885fa2
JA
620
621 ld->queued++;
622 return FIO_Q_QUEUED;
623}
624
bffad86f 625static void fio_ioring_queued(struct thread_data *td, int start, int nr)
52885fa2 626{
bffad86f 627 struct ioring_data *ld = td->io_ops_data;
52885fa2
JA
628 struct timespec now;
629
630 if (!fio_fill_issue_time(td))
631 return;
632
633 fio_gettime(&now, NULL);
634
635 while (nr--) {
bffad86f 636 struct io_sq_ring *ring = &ld->sq_ring;
9a2d78b3 637 int index = ring->array[start & ld->sq_ring_mask];
f8289afc 638 struct io_u *io_u = ld->io_u_index[index];
52885fa2
JA
639
640 memcpy(&io_u->issue_time, &now, sizeof(now));
641 io_u_queued(td, io_u);
642
643 start++;
52885fa2 644 }
39f56400
VF
645
646 /*
647 * only used for iolog
648 */
649 if (td->o.read_iolog_file)
650 memcpy(&td->last_issue, &now, sizeof(now));
52885fa2
JA
651}
652
bffad86f 653static int fio_ioring_commit(struct thread_data *td)
52885fa2 654{
bffad86f
JA
655 struct ioring_data *ld = td->io_ops_data;
656 struct ioring_options *o = td->eo;
52885fa2
JA
657 int ret;
658
659 if (!ld->queued)
660 return 0;
661
3d7d00a3
JA
662 /*
663 * Kernel side does submission. just need to check if the ring is
664 * flagged as needing a kick, if so, call io_uring_enter(). This
665 * only happens if we've been idle too long.
666 */
667 if (o->sqpoll_thread) {
bffad86f 668 struct io_sq_ring *ring = &ld->sq_ring;
c011bf12 669 unsigned start = *ld->sq_ring.head;
2dd96cc4 670 unsigned flags;
4cdbc048 671
2dd96cc4
JA
672 flags = atomic_load_acquire(ring->flags);
673 if (flags & IORING_SQ_NEED_WAKEUP)
b532dd6d
JA
674 io_uring_enter(ld, ld->queued, 0,
675 IORING_ENTER_SQ_WAKEUP);
c011bf12
AK
676 fio_ioring_queued(td, start, ld->queued);
677 io_u_mark_submit(td, ld->queued);
678
771c9901
JA
679 ld->queued = 0;
680 return 0;
681 }
682
52885fa2 683 do {
9a2d78b3 684 unsigned start = *ld->sq_ring.head;
52885fa2
JA
685 long nr = ld->queued;
686
9a2d78b3 687 ret = io_uring_enter(ld, nr, 0, IORING_ENTER_GETEVENTS);
52885fa2 688 if (ret > 0) {
bffad86f 689 fio_ioring_queued(td, start, ret);
52885fa2
JA
690 io_u_mark_submit(td, ret);
691
692 ld->queued -= ret;
693 ret = 0;
a90cd050
JA
694 } else if (!ret) {
695 io_u_mark_submit(td, ret);
52885fa2 696 continue;
a90cd050 697 } else {
f6abd731 698 if (errno == EAGAIN || errno == EINTR) {
bffad86f 699 ret = fio_ioring_cqring_reap(td, 0, ld->queued);
a90cd050
JA
700 if (ret)
701 continue;
702 /* Shouldn't happen */
703 usleep(1);
704 continue;
52885fa2 705 }
1816895b 706 ret = -errno;
9a2d78b3 707 td_verror(td, errno, "io_uring_enter submit");
52885fa2 708 break;
a90cd050 709 }
52885fa2
JA
710 } while (ld->queued);
711
712 return ret;
713}
714
bffad86f 715static void fio_ioring_unmap(struct ioring_data *ld)
52885fa2 716{
9a2d78b3 717 int i;
52885fa2 718
59f94d26 719 for (i = 0; i < FIO_ARRAY_SIZE(ld->mmap); i++)
9a2d78b3
JA
720 munmap(ld->mmap[i].ptr, ld->mmap[i].len);
721 close(ld->ring_fd);
b87aa01a
JA
722}
723
bffad86f 724static void fio_ioring_cleanup(struct thread_data *td)
52885fa2 725{
bffad86f 726 struct ioring_data *ld = td->io_ops_data;
52885fa2
JA
727
728 if (ld) {
52885fa2 729 if (!(td->flags & TD_F_CHILD))
bffad86f 730 fio_ioring_unmap(ld);
9a2d78b3 731
d6cbeab4 732 fio_cmdprio_cleanup(&ld->cmdprio);
52885fa2 733 free(ld->io_u_index);
9a2d78b3 734 free(ld->iovecs);
5ffd5626 735 free(ld->fds);
52885fa2
JA
736 free(ld);
737 }
738}
739
bffad86f 740static int fio_ioring_mmap(struct ioring_data *ld, struct io_uring_params *p)
9a2d78b3 741{
bffad86f
JA
742 struct io_sq_ring *sring = &ld->sq_ring;
743 struct io_cq_ring *cring = &ld->cq_ring;
9a2d78b3
JA
744 void *ptr;
745
e2239016 746 ld->mmap[0].len = p->sq_off.array + p->sq_entries * sizeof(__u32);
9a2d78b3
JA
747 ptr = mmap(0, ld->mmap[0].len, PROT_READ | PROT_WRITE,
748 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
749 IORING_OFF_SQ_RING);
750 ld->mmap[0].ptr = ptr;
751 sring->head = ptr + p->sq_off.head;
752 sring->tail = ptr + p->sq_off.tail;
753 sring->ring_mask = ptr + p->sq_off.ring_mask;
754 sring->ring_entries = ptr + p->sq_off.ring_entries;
755 sring->flags = ptr + p->sq_off.flags;
ac122fea 756 sring->array = ptr + p->sq_off.array;
9a2d78b3
JA
757 ld->sq_ring_mask = *sring->ring_mask;
758
855dc4d4
AG
759 if (p->flags & IORING_SETUP_SQE128)
760 ld->mmap[1].len = 2 * p->sq_entries * sizeof(struct io_uring_sqe);
761 else
762 ld->mmap[1].len = p->sq_entries * sizeof(struct io_uring_sqe);
f0403f94 763 ld->sqes = mmap(0, ld->mmap[1].len, PROT_READ | PROT_WRITE,
9a2d78b3 764 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
f0403f94
JA
765 IORING_OFF_SQES);
766 ld->mmap[1].ptr = ld->sqes;
9a2d78b3 767
855dc4d4
AG
768 if (p->flags & IORING_SETUP_CQE32) {
769 ld->mmap[2].len = p->cq_off.cqes +
770 2 * p->cq_entries * sizeof(struct io_uring_cqe);
771 } else {
772 ld->mmap[2].len = p->cq_off.cqes +
773 p->cq_entries * sizeof(struct io_uring_cqe);
774 }
9a2d78b3
JA
775 ptr = mmap(0, ld->mmap[2].len, PROT_READ | PROT_WRITE,
776 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
777 IORING_OFF_CQ_RING);
778 ld->mmap[2].ptr = ptr;
779 cring->head = ptr + p->cq_off.head;
780 cring->tail = ptr + p->cq_off.tail;
781 cring->ring_mask = ptr + p->cq_off.ring_mask;
782 cring->ring_entries = ptr + p->cq_off.ring_entries;
f0403f94 783 cring->cqes = ptr + p->cq_off.cqes;
9a2d78b3
JA
784 ld->cq_ring_mask = *cring->ring_mask;
785 return 0;
786}
787
556d8415
JA
788static void fio_ioring_probe(struct thread_data *td)
789{
790 struct ioring_data *ld = td->io_ops_data;
791 struct ioring_options *o = td->eo;
792 struct io_uring_probe *p;
793 int ret;
794
795 /* already set by user, don't touch */
796 if (o->nonvectored != -1)
797 return;
798
799 /* default to off, as that's always safe */
800 o->nonvectored = 0;
801
802 p = malloc(sizeof(*p) + 256 * sizeof(struct io_uring_probe_op));
803 if (!p)
804 return;
805
806 memset(p, 0, sizeof(*p) + 256 * sizeof(struct io_uring_probe_op));
807 ret = syscall(__NR_io_uring_register, ld->ring_fd,
808 IORING_REGISTER_PROBE, p, 256);
809 if (ret < 0)
810 goto out;
811
812 if (IORING_OP_WRITE > p->ops_len)
813 goto out;
814
815 if ((p->ops[IORING_OP_READ].flags & IO_URING_OP_SUPPORTED) &&
816 (p->ops[IORING_OP_WRITE].flags & IO_URING_OP_SUPPORTED))
817 o->nonvectored = 1;
818out:
819 free(p);
820}
821
bffad86f 822static int fio_ioring_queue_init(struct thread_data *td)
52885fa2 823{
bffad86f
JA
824 struct ioring_data *ld = td->io_ops_data;
825 struct ioring_options *o = td->eo;
52885fa2 826 int depth = td->o.iodepth;
bffad86f 827 struct io_uring_params p;
9a2d78b3
JA
828 int ret;
829
830 memset(&p, 0, sizeof(p));
52885fa2
JA
831
832 if (o->hipri)
bffad86f 833 p.flags |= IORING_SETUP_IOPOLL;
3d7d00a3
JA
834 if (o->sqpoll_thread) {
835 p.flags |= IORING_SETUP_SQPOLL;
836 if (o->sqpoll_set) {
837 p.flags |= IORING_SETUP_SQ_AFF;
838 p.sq_thread_cpu = o->sqpoll_cpu;
839 }
c011bf12
AK
840
841 /*
842 * Submission latency for sqpoll_thread is just the time it
843 * takes to fill in the SQ ring entries, and any syscall if
844 * IORING_SQ_NEED_WAKEUP is set, we don't need to log that time
845 * separately.
846 */
847 td->o.disable_slat = 1;
f635f1fb 848 }
a90cd050 849
1db268db
JA
850 /*
851 * Clamp CQ ring size at our SQ ring size, we don't need more entries
852 * than that.
853 */
854 p.flags |= IORING_SETUP_CQSIZE;
855 p.cq_entries = depth;
856
4d22c103
JA
857 /*
858 * Setup COOP_TASKRUN as we don't need to get IPI interrupted for
859 * completing IO operations.
860 */
861 p.flags |= IORING_SETUP_COOP_TASKRUN;
862
e453f369
JA
863 /*
864 * io_uring is always a single issuer, and we can defer task_work
865 * runs until we reap events.
866 */
867 p.flags |= IORING_SETUP_SINGLE_ISSUER | IORING_SETUP_DEFER_TASKRUN;
868
b5e99df6 869retry:
bfed648c 870 ret = syscall(__NR_io_uring_setup, depth, &p);
b5e99df6 871 if (ret < 0) {
e453f369
JA
872 if (errno == EINVAL && p.flags & IORING_SETUP_DEFER_TASKRUN) {
873 p.flags &= ~IORING_SETUP_DEFER_TASKRUN;
874 p.flags &= ~IORING_SETUP_SINGLE_ISSUER;
875 goto retry;
876 }
4d22c103
JA
877 if (errno == EINVAL && p.flags & IORING_SETUP_COOP_TASKRUN) {
878 p.flags &= ~IORING_SETUP_COOP_TASKRUN;
879 goto retry;
880 }
b5e99df6
JA
881 if (errno == EINVAL && p.flags & IORING_SETUP_CQSIZE) {
882 p.flags &= ~IORING_SETUP_CQSIZE;
883 goto retry;
884 }
9a2d78b3 885 return ret;
b5e99df6 886 }
9a2d78b3
JA
887
888 ld->ring_fd = ret;
2ea53ca3 889
556d8415
JA
890 fio_ioring_probe(td);
891
2ea53ca3 892 if (o->fixedbufs) {
bfed648c 893 ret = syscall(__NR_io_uring_register, ld->ring_fd,
919850d2 894 IORING_REGISTER_BUFFERS, ld->iovecs, depth);
2ea53ca3
JA
895 if (ret < 0)
896 return ret;
897 }
898
bffad86f 899 return fio_ioring_mmap(ld, &p);
52885fa2
JA
900}
901
855dc4d4
AG
902static int fio_ioring_cmd_queue_init(struct thread_data *td)
903{
904 struct ioring_data *ld = td->io_ops_data;
905 struct ioring_options *o = td->eo;
906 int depth = td->o.iodepth;
907 struct io_uring_params p;
908 int ret;
909
910 memset(&p, 0, sizeof(p));
911
912 if (o->hipri)
913 p.flags |= IORING_SETUP_IOPOLL;
914 if (o->sqpoll_thread) {
915 p.flags |= IORING_SETUP_SQPOLL;
916 if (o->sqpoll_set) {
917 p.flags |= IORING_SETUP_SQ_AFF;
918 p.sq_thread_cpu = o->sqpoll_cpu;
919 }
c011bf12
AK
920
921 /*
922 * Submission latency for sqpoll_thread is just the time it
923 * takes to fill in the SQ ring entries, and any syscall if
924 * IORING_SQ_NEED_WAKEUP is set, we don't need to log that time
925 * separately.
926 */
927 td->o.disable_slat = 1;
855dc4d4
AG
928 }
929 if (o->cmd_type == FIO_URING_CMD_NVME) {
930 p.flags |= IORING_SETUP_SQE128;
931 p.flags |= IORING_SETUP_CQE32;
932 }
933
934 /*
935 * Clamp CQ ring size at our SQ ring size, we don't need more entries
936 * than that.
937 */
938 p.flags |= IORING_SETUP_CQSIZE;
939 p.cq_entries = depth;
940
07f78c37
AK
941 /*
942 * Setup COOP_TASKRUN as we don't need to get IPI interrupted for
943 * completing IO operations.
944 */
945 p.flags |= IORING_SETUP_COOP_TASKRUN;
946
947 /*
948 * io_uring is always a single issuer, and we can defer task_work
949 * runs until we reap events.
950 */
951 p.flags |= IORING_SETUP_SINGLE_ISSUER | IORING_SETUP_DEFER_TASKRUN;
952
855dc4d4
AG
953retry:
954 ret = syscall(__NR_io_uring_setup, depth, &p);
955 if (ret < 0) {
07f78c37
AK
956 if (errno == EINVAL && p.flags & IORING_SETUP_DEFER_TASKRUN) {
957 p.flags &= ~IORING_SETUP_DEFER_TASKRUN;
958 p.flags &= ~IORING_SETUP_SINGLE_ISSUER;
959 goto retry;
960 }
961 if (errno == EINVAL && p.flags & IORING_SETUP_COOP_TASKRUN) {
962 p.flags &= ~IORING_SETUP_COOP_TASKRUN;
963 goto retry;
964 }
855dc4d4
AG
965 if (errno == EINVAL && p.flags & IORING_SETUP_CQSIZE) {
966 p.flags &= ~IORING_SETUP_CQSIZE;
967 goto retry;
968 }
969 return ret;
970 }
971
972 ld->ring_fd = ret;
973
974 fio_ioring_probe(td);
975
976 if (o->fixedbufs) {
977 ret = syscall(__NR_io_uring_register, ld->ring_fd,
978 IORING_REGISTER_BUFFERS, ld->iovecs, depth);
979 if (ret < 0)
980 return ret;
981 }
982
983 return fio_ioring_mmap(ld, &p);
984}
985
5ffd5626
JA
986static int fio_ioring_register_files(struct thread_data *td)
987{
988 struct ioring_data *ld = td->io_ops_data;
989 struct fio_file *f;
990 unsigned int i;
991 int ret;
992
993 ld->fds = calloc(td->o.nr_files, sizeof(int));
994
995 for_each_file(td, f, i) {
996 ret = generic_open_file(td, f);
997 if (ret)
998 goto err;
999 ld->fds[i] = f->fd;
1000 f->engine_pos = i;
1001 }
1002
bfed648c 1003 ret = syscall(__NR_io_uring_register, ld->ring_fd,
5ffd5626
JA
1004 IORING_REGISTER_FILES, ld->fds, td->o.nr_files);
1005 if (ret) {
1006err:
1007 free(ld->fds);
1008 ld->fds = NULL;
1009 }
1010
1011 /*
1012 * Pretend the file is closed again, and really close it if we hit
1013 * an error.
1014 */
1015 for_each_file(td, f, i) {
1016 if (ret) {
1017 int fio_unused ret2;
1018 ret2 = generic_close_file(td, f);
1019 } else
1020 f->fd = -1;
1021 }
1022
1023 return ret;
1024}
1025
bffad86f 1026static int fio_ioring_post_init(struct thread_data *td)
52885fa2 1027{
bffad86f 1028 struct ioring_data *ld = td->io_ops_data;
5ffd5626 1029 struct ioring_options *o = td->eo;
52885fa2 1030 struct io_u *io_u;
650346e1 1031 int err, i;
52885fa2 1032
650346e1
JA
1033 for (i = 0; i < td->o.iodepth; i++) {
1034 struct iovec *iov = &ld->iovecs[i];
9a2d78b3 1035
650346e1
JA
1036 io_u = ld->io_u_index[i];
1037 iov->iov_base = io_u->buf;
1038 iov->iov_len = td_max_bs(td);
52885fa2
JA
1039 }
1040
bffad86f 1041 err = fio_ioring_queue_init(td);
52885fa2 1042 if (err) {
0442b53f 1043 int init_err = errno;
c4f5c92f 1044
0442b53f 1045 if (init_err == ENOSYS)
c4f5c92f 1046 log_err("fio: your kernel doesn't support io_uring\n");
0442b53f 1047 td_verror(td, init_err, "io_queue_init");
52885fa2
JA
1048 return 1;
1049 }
1050
7c70f506
JA
1051 for (i = 0; i < td->o.iodepth; i++) {
1052 struct io_uring_sqe *sqe;
1053
1054 sqe = &ld->sqes[i];
1055 memset(sqe, 0, sizeof(*sqe));
1056 }
1057
5ffd5626
JA
1058 if (o->registerfiles) {
1059 err = fio_ioring_register_files(td);
1060 if (err) {
1061 td_verror(td, errno, "ioring_register_files");
1062 return 1;
1063 }
1064 }
1065
52885fa2
JA
1066 return 0;
1067}
1068
855dc4d4
AG
1069static int fio_ioring_cmd_post_init(struct thread_data *td)
1070{
1071 struct ioring_data *ld = td->io_ops_data;
1072 struct ioring_options *o = td->eo;
1073 struct io_u *io_u;
1074 int err, i;
1075
1076 for (i = 0; i < td->o.iodepth; i++) {
1077 struct iovec *iov = &ld->iovecs[i];
1078
1079 io_u = ld->io_u_index[i];
1080 iov->iov_base = io_u->buf;
1081 iov->iov_len = td_max_bs(td);
1082 }
1083
1084 err = fio_ioring_cmd_queue_init(td);
1085 if (err) {
1086 int init_err = errno;
1087
1088 td_verror(td, init_err, "io_queue_init");
1089 return 1;
1090 }
1091
1092 for (i = 0; i < td->o.iodepth; i++) {
1093 struct io_uring_sqe *sqe;
1094
1095 if (o->cmd_type == FIO_URING_CMD_NVME) {
1096 sqe = &ld->sqes[i << 1];
1097 memset(sqe, 0, 2 * sizeof(*sqe));
1098 } else {
1099 sqe = &ld->sqes[i];
1100 memset(sqe, 0, sizeof(*sqe));
1101 }
1102 }
1103
1104 if (o->registerfiles) {
1105 err = fio_ioring_register_files(td);
1106 if (err) {
1107 td_verror(td, errno, "ioring_register_files");
1108 return 1;
1109 }
1110 }
1111
1112 return 0;
1113}
1114
bffad86f 1115static int fio_ioring_init(struct thread_data *td)
52885fa2 1116{
5ffd5626 1117 struct ioring_options *o = td->eo;
bffad86f 1118 struct ioring_data *ld;
e9f6567a 1119 int ret;
52885fa2 1120
5ffd5626
JA
1121 /* sqthread submission requires registered files */
1122 if (o->sqpoll_thread)
1123 o->registerfiles = 1;
1124
1125 if (o->registerfiles && td->o.nr_files != td->o.open_files) {
1126 log_err("fio: io_uring registered files require nr_files to "
1127 "be identical to open_files\n");
1128 return 1;
1129 }
1130
52885fa2
JA
1131 ld = calloc(1, sizeof(*ld));
1132
b87aa01a
JA
1133 /* ring depth must be a power-of-2 */
1134 ld->iodepth = td->o.iodepth;
1135 td->o.iodepth = roundup_pow2(td->o.iodepth);
1136
52885fa2
JA
1137 /* io_u index */
1138 ld->io_u_index = calloc(td->o.iodepth, sizeof(struct io_u *));
650346e1 1139 ld->iovecs = calloc(td->o.iodepth, sizeof(struct iovec));
52885fa2
JA
1140
1141 td->io_ops_data = ld;
b2a432bf 1142
d6cbeab4 1143 ret = fio_cmdprio_init(td, &ld->cmdprio, &o->cmdprio_options);
e9f6567a
DLM
1144 if (ret) {
1145 td_verror(td, EINVAL, "fio_ioring_init");
b2a432bf
PC
1146 return 1;
1147 }
1af44196 1148
52885fa2
JA
1149 return 0;
1150}
1151
bffad86f 1152static int fio_ioring_io_u_init(struct thread_data *td, struct io_u *io_u)
52885fa2 1153{
bffad86f 1154 struct ioring_data *ld = td->io_ops_data;
52885fa2
JA
1155
1156 ld->io_u_index[io_u->index] = io_u;
1157 return 0;
1158}
1159
5ffd5626
JA
1160static int fio_ioring_open_file(struct thread_data *td, struct fio_file *f)
1161{
1162 struct ioring_data *ld = td->io_ops_data;
1163 struct ioring_options *o = td->eo;
1164
17318cf6 1165 if (!ld || !o->registerfiles)
5ffd5626
JA
1166 return generic_open_file(td, f);
1167
1168 f->fd = ld->fds[f->engine_pos];
1169 return 0;
1170}
1171
855dc4d4
AG
1172static int fio_ioring_cmd_open_file(struct thread_data *td, struct fio_file *f)
1173{
1174 struct ioring_data *ld = td->io_ops_data;
1175 struct ioring_options *o = td->eo;
1176
1177 if (o->cmd_type == FIO_URING_CMD_NVME) {
1178 struct nvme_data *data = NULL;
1179 unsigned int nsid, lba_size = 0;
671aa9f5 1180 __u64 nlba = 0;
855dc4d4
AG
1181 int ret;
1182
1183 /* Store the namespace-id and lba size. */
1184 data = FILE_ENG_DATA(f);
1185 if (data == NULL) {
1186 ret = fio_nvme_get_info(f, &nsid, &lba_size, &nlba);
1187 if (ret)
1188 return ret;
1189
1190 data = calloc(1, sizeof(struct nvme_data));
1191 data->nsid = nsid;
1192 data->lba_shift = ilog2(lba_size);
1193
1194 FILE_SET_ENG_DATA(f, data);
1195 }
1196 }
1197 if (!ld || !o->registerfiles)
1198 return generic_open_file(td, f);
1199
1200 f->fd = ld->fds[f->engine_pos];
1201 return 0;
1202}
1203
5ffd5626
JA
1204static int fio_ioring_close_file(struct thread_data *td, struct fio_file *f)
1205{
17318cf6 1206 struct ioring_data *ld = td->io_ops_data;
5ffd5626
JA
1207 struct ioring_options *o = td->eo;
1208
17318cf6 1209 if (!ld || !o->registerfiles)
5ffd5626
JA
1210 return generic_close_file(td, f);
1211
1212 f->fd = -1;
1213 return 0;
1214}
1215
855dc4d4
AG
1216static int fio_ioring_cmd_close_file(struct thread_data *td,
1217 struct fio_file *f)
1218{
1219 struct ioring_data *ld = td->io_ops_data;
1220 struct ioring_options *o = td->eo;
1221
1222 if (o->cmd_type == FIO_URING_CMD_NVME) {
1223 struct nvme_data *data = FILE_ENG_DATA(f);
1224
1225 FILE_SET_ENG_DATA(f, NULL);
1226 free(data);
1227 }
1228 if (!ld || !o->registerfiles)
1229 return generic_close_file(td, f);
1230
1231 f->fd = -1;
1232 return 0;
1233}
1234
1235static int fio_ioring_cmd_get_file_size(struct thread_data *td,
1236 struct fio_file *f)
1237{
1238 struct ioring_options *o = td->eo;
1239
1240 if (fio_file_size_known(f))
1241 return 0;
1242
1243 if (o->cmd_type == FIO_URING_CMD_NVME) {
1244 struct nvme_data *data = NULL;
1245 unsigned int nsid, lba_size = 0;
671aa9f5 1246 __u64 nlba = 0;
855dc4d4
AG
1247 int ret;
1248
1249 ret = fio_nvme_get_info(f, &nsid, &lba_size, &nlba);
1250 if (ret)
1251 return ret;
1252
1253 data = calloc(1, sizeof(struct nvme_data));
1254 data->nsid = nsid;
1255 data->lba_shift = ilog2(lba_size);
1256
1257 f->real_file_size = lba_size * nlba;
1258 fio_file_set_size_known(f);
1259
1260 FILE_SET_ENG_DATA(f, data);
1261 return 0;
1262 }
1263 return generic_get_file_size(td, f);
1264}
1265
3d05e0ff
AK
1266static int fio_ioring_cmd_get_zoned_model(struct thread_data *td,
1267 struct fio_file *f,
1268 enum zbd_zoned_model *model)
1269{
1270 return fio_nvme_get_zoned_model(td, f, model);
1271}
1272
1273static int fio_ioring_cmd_report_zones(struct thread_data *td,
1274 struct fio_file *f, uint64_t offset,
1275 struct zbd_zone *zbdz,
1276 unsigned int nr_zones)
1277{
1278 return fio_nvme_report_zones(td, f, offset, zbdz, nr_zones);
1279}
1280
1281static int fio_ioring_cmd_reset_wp(struct thread_data *td, struct fio_file *f,
1282 uint64_t offset, uint64_t length)
1283{
1284 return fio_nvme_reset_wp(td, f, offset, length);
1285}
1286
1287static int fio_ioring_cmd_get_max_open_zones(struct thread_data *td,
1288 struct fio_file *f,
1289 unsigned int *max_open_zones)
1290{
1291 return fio_nvme_get_max_open_zones(td, f, max_open_zones);
1292}
1293
a7e8aae0
KB
1294static int fio_ioring_cmd_fetch_ruhs(struct thread_data *td, struct fio_file *f,
1295 struct fio_ruhs_info *fruhs_info)
1296{
1297 struct nvme_fdp_ruh_status *ruhs;
1298 int bytes, ret, i;
1299
1300 bytes = sizeof(*ruhs) + 128 * sizeof(struct nvme_fdp_ruh_status_desc);
1301 ruhs = scalloc(1, bytes);
1302 if (!ruhs)
1303 return -ENOMEM;
1304
1305 ret = fio_nvme_iomgmt_ruhs(td, f, ruhs, bytes);
1306 if (ret)
1307 goto free;
1308
1309 fruhs_info->nr_ruhs = le16_to_cpu(ruhs->nruhsd);
1310 for (i = 0; i < fruhs_info->nr_ruhs; i++)
1311 fruhs_info->plis[i] = le16_to_cpu(ruhs->ruhss[i].pid);
1312free:
1313 sfree(ruhs);
1314 return ret;
1315}
1316
855dc4d4 1317static struct ioengine_ops ioengine_uring = {
bffad86f 1318 .name = "io_uring",
52885fa2 1319 .version = FIO_IOOPS_VERSION,
4e7e7898
VF
1320 .flags = FIO_ASYNCIO_SYNC_TRIM | FIO_NO_OFFLOAD |
1321 FIO_ASYNCIO_SETS_ISSUE_TIME,
bffad86f
JA
1322 .init = fio_ioring_init,
1323 .post_init = fio_ioring_post_init,
1324 .io_u_init = fio_ioring_io_u_init,
1325 .prep = fio_ioring_prep,
1326 .queue = fio_ioring_queue,
1327 .commit = fio_ioring_commit,
1328 .getevents = fio_ioring_getevents,
1329 .event = fio_ioring_event,
1330 .cleanup = fio_ioring_cleanup,
5ffd5626
JA
1331 .open_file = fio_ioring_open_file,
1332 .close_file = fio_ioring_close_file,
52885fa2
JA
1333 .get_file_size = generic_get_file_size,
1334 .options = options,
bffad86f 1335 .option_struct_size = sizeof(struct ioring_options),
52885fa2
JA
1336};
1337
855dc4d4
AG
1338static struct ioengine_ops ioengine_uring_cmd = {
1339 .name = "io_uring_cmd",
1340 .version = FIO_IOOPS_VERSION,
4e7e7898
VF
1341 .flags = FIO_ASYNCIO_SYNC_TRIM | FIO_NO_OFFLOAD |
1342 FIO_MEMALIGN | FIO_RAWIO |
1343 FIO_ASYNCIO_SETS_ISSUE_TIME,
855dc4d4
AG
1344 .init = fio_ioring_init,
1345 .post_init = fio_ioring_cmd_post_init,
1346 .io_u_init = fio_ioring_io_u_init,
1347 .prep = fio_ioring_cmd_prep,
1348 .queue = fio_ioring_queue,
1349 .commit = fio_ioring_commit,
1350 .getevents = fio_ioring_getevents,
1351 .event = fio_ioring_cmd_event,
1352 .cleanup = fio_ioring_cleanup,
1353 .open_file = fio_ioring_cmd_open_file,
1354 .close_file = fio_ioring_cmd_close_file,
1355 .get_file_size = fio_ioring_cmd_get_file_size,
3d05e0ff
AK
1356 .get_zoned_model = fio_ioring_cmd_get_zoned_model,
1357 .report_zones = fio_ioring_cmd_report_zones,
1358 .reset_wp = fio_ioring_cmd_reset_wp,
1359 .get_max_open_zones = fio_ioring_cmd_get_max_open_zones,
855dc4d4
AG
1360 .options = options,
1361 .option_struct_size = sizeof(struct ioring_options),
a7e8aae0 1362 .fdp_fetch_ruhs = fio_ioring_cmd_fetch_ruhs,
855dc4d4
AG
1363};
1364
bffad86f 1365static void fio_init fio_ioring_register(void)
52885fa2 1366{
855dc4d4
AG
1367 register_ioengine(&ioengine_uring);
1368 register_ioengine(&ioengine_uring_cmd);
52885fa2
JA
1369}
1370
bffad86f 1371static void fio_exit fio_ioring_unregister(void)
52885fa2 1372{
855dc4d4
AG
1373 unregister_ioengine(&ioengine_uring);
1374 unregister_ioengine(&ioengine_uring_cmd);
52885fa2 1375}
1f90e9bb 1376#endif