t/io_uring: verbose error for -95/-EOPNOTSUPP failure
[fio.git] / t / io_uring.c
CommitLineData
c9fb4c5b
JA
1#include <stdio.h>
2#include <errno.h>
3#include <assert.h>
4#include <stdlib.h>
5#include <stddef.h>
6#include <signal.h>
7#include <inttypes.h>
8
9#include <sys/types.h>
10#include <sys/stat.h>
11#include <sys/ioctl.h>
12#include <sys/syscall.h>
13#include <sys/resource.h>
c3e2fc25 14#include <sys/mman.h>
e31b8288 15#include <sys/uio.h>
c9fb4c5b
JA
16#include <linux/fs.h>
17#include <fcntl.h>
18#include <unistd.h>
c9fb4c5b
JA
19#include <string.h>
20#include <pthread.h>
21#include <sched.h>
22
74efb029 23#include "../arch/arch.h"
57fa61f0 24#include "../lib/types.h"
f3e769a4 25#include "../os/linux/io_uring.h"
ac122fea 26
e31b8288 27#define min(a, b) ((a < b) ? (a) : (b))
c3e2fc25 28
e31b8288 29struct io_sq_ring {
e2239016
JA
30 unsigned *head;
31 unsigned *tail;
32 unsigned *ring_mask;
33 unsigned *ring_entries;
ce1705de 34 unsigned *flags;
e2239016 35 unsigned *array;
c9fb4c5b
JA
36};
37
e31b8288 38struct io_cq_ring {
e2239016
JA
39 unsigned *head;
40 unsigned *tail;
41 unsigned *ring_mask;
42 unsigned *ring_entries;
f0403f94 43 struct io_uring_cqe *cqes;
c9fb4c5b
JA
44};
45
701d1277 46#define DEPTH 128
c9fb4c5b 47
2e7888ef
JA
48#define BATCH_SUBMIT 32
49#define BATCH_COMPLETE 32
c9fb4c5b
JA
50
51#define BS 4096
52
a7086591
JA
53#define MAX_FDS 16
54
c3e2fc25 55static unsigned sq_ring_mask, cq_ring_mask;
e39c34dc 56
a7086591
JA
57struct file {
58 unsigned long max_blocks;
701d1277 59 unsigned pending_ios;
48e698fa
JA
60 int real_fd;
61 int fixed_fd;
a7086591
JA
62};
63
c9fb4c5b
JA
64struct submitter {
65 pthread_t thread;
f310970e 66 int ring_fd;
c9fb4c5b 67 struct drand48_data rand;
e31b8288 68 struct io_sq_ring sq_ring;
f0403f94 69 struct io_uring_sqe *sqes;
c3e2fc25 70 struct iovec iovecs[DEPTH];
e31b8288 71 struct io_cq_ring cq_ring;
c9fb4c5b
JA
72 int inflight;
73 unsigned long reaps;
74 unsigned long done;
75 unsigned long calls;
305c06ce 76 unsigned long cachehit, cachemiss;
c9fb4c5b 77 volatile int finish;
701d1277 78
48e698fa
JA
79 __s32 *fds;
80
a7086591
JA
81 struct file files[MAX_FDS];
82 unsigned nr_files;
83 unsigned cur_file;
c9fb4c5b
JA
84};
85
86static struct submitter submitters[1];
87static volatile int finish;
88
f0403f94 89static int polled = 1; /* use IO polling */
701d1277 90static int fixedbufs = 1; /* use fixed user buffers */
8c5fa755 91static int register_files = 1; /* use fixed files */
f0403f94 92static int buffered = 0; /* use buffered IO, not O_DIRECT */
3d7d00a3
JA
93static int sq_thread_poll = 0; /* use kernel submission/poller thread */
94static int sq_thread_cpu = -1; /* pin above thread to this CPU */
8025517d 95static int do_nop = 0; /* no-op SQ ring commands */
c9fb4c5b 96
2ea53ca3 97static int io_uring_register_buffers(struct submitter *s)
c9fb4c5b 98{
8025517d
JA
99 if (do_nop)
100 return 0;
101
2ea53ca3 102 return syscall(__NR_sys_io_uring_register, s->ring_fd,
919850d2 103 IORING_REGISTER_BUFFERS, s->iovecs, DEPTH);
2ea53ca3
JA
104}
105
a7abc9fb
JA
106static int io_uring_register_files(struct submitter *s)
107{
48e698fa 108 int i;
a7abc9fb 109
8025517d
JA
110 if (do_nop)
111 return 0;
112
48e698fa
JA
113 s->fds = calloc(s->nr_files, sizeof(__s32));
114 for (i = 0; i < s->nr_files; i++) {
115 s->fds[i] = s->files[i].real_fd;
116 s->files[i].fixed_fd = i;
117 }
a7abc9fb 118
48e698fa 119 return syscall(__NR_sys_io_uring_register, s->ring_fd,
919850d2 120 IORING_REGISTER_FILES, s->fds, s->nr_files);
a7abc9fb
JA
121}
122
2ea53ca3
JA
123static int io_uring_setup(unsigned entries, struct io_uring_params *p)
124{
125 return syscall(__NR_sys_io_uring_setup, entries, p);
c9fb4c5b
JA
126}
127
c3e2fc25
JA
128static int io_uring_enter(struct submitter *s, unsigned int to_submit,
129 unsigned int min_complete, unsigned int flags)
c9fb4c5b 130{
f310970e 131 return syscall(__NR_sys_io_uring_enter, s->ring_fd, to_submit,
521164fa 132 min_complete, flags, NULL, 0);
c9fb4c5b
JA
133}
134
135static int gettid(void)
136{
137 return syscall(__NR_gettid);
138}
139
701d1277
JA
140static unsigned file_depth(struct submitter *s)
141{
142 return (DEPTH + s->nr_files - 1) / s->nr_files;
143}
144
a7086591 145static void init_io(struct submitter *s, unsigned index)
c9fb4c5b 146{
f0403f94 147 struct io_uring_sqe *sqe = &s->sqes[index];
c9fb4c5b 148 unsigned long offset;
a7086591 149 struct file *f;
c9fb4c5b
JA
150 long r;
151
8025517d
JA
152 if (do_nop) {
153 sqe->opcode = IORING_OP_NOP;
154 return;
155 }
156
701d1277
JA
157 if (s->nr_files == 1) {
158 f = &s->files[0];
159 } else {
160 f = &s->files[s->cur_file];
161 if (f->pending_ios >= file_depth(s)) {
162 s->cur_file++;
163 if (s->cur_file == s->nr_files)
164 s->cur_file = 0;
93d1811c 165 f = &s->files[s->cur_file];
701d1277
JA
166 }
167 }
168 f->pending_ios++;
a7086591 169
c9fb4c5b 170 lrand48_r(&s->rand, &r);
a7086591 171 offset = (r % (f->max_blocks - 1)) * BS;
c9fb4c5b 172
8c5fa755
JA
173 if (register_files) {
174 sqe->flags = IOSQE_FIXED_FILE;
175 sqe->fd = f->fixed_fd;
176 } else {
177 sqe->flags = 0;
178 sqe->fd = f->real_fd;
179 }
f0403f94 180 if (fixedbufs) {
48e698fa 181 sqe->opcode = IORING_OP_READ_FIXED;
919850d2 182 sqe->addr = (unsigned long) s->iovecs[index].iov_base;
f0403f94 183 sqe->len = BS;
2ea53ca3 184 sqe->buf_index = index;
f0403f94 185 } else {
48e698fa 186 sqe->opcode = IORING_OP_READV;
919850d2 187 sqe->addr = (unsigned long) &s->iovecs[index];
f0403f94 188 sqe->len = 1;
2ea53ca3 189 sqe->buf_index = 0;
f0403f94 190 }
f0403f94 191 sqe->ioprio = 0;
f0403f94 192 sqe->off = offset;
48e698fa 193 sqe->user_data = (unsigned long) f;
c9fb4c5b
JA
194}
195
a7086591 196static int prep_more_ios(struct submitter *s, int max_ios)
c9fb4c5b 197{
e31b8288 198 struct io_sq_ring *ring = &s->sq_ring;
e2239016 199 unsigned index, tail, next_tail, prepped = 0;
c9fb4c5b 200
c3e2fc25 201 next_tail = tail = *ring->tail;
c9fb4c5b
JA
202 do {
203 next_tail++;
679d8352 204 read_barrier();
c3e2fc25 205 if (next_tail == *ring->head)
c9fb4c5b
JA
206 break;
207
e39c34dc 208 index = tail & sq_ring_mask;
a7086591 209 init_io(s, index);
c3e2fc25 210 ring->array[index] = index;
c9fb4c5b
JA
211 prepped++;
212 tail = next_tail;
213 } while (prepped < max_ios);
214
c3e2fc25 215 if (*ring->tail != tail) {
f0403f94 216 /* order tail store with writes to sqes above */
679d8352 217 write_barrier();
c3e2fc25 218 *ring->tail = tail;
679d8352 219 write_barrier();
c9fb4c5b
JA
220 }
221 return prepped;
222}
223
a7086591 224static int get_file_size(struct file *f)
c9fb4c5b
JA
225{
226 struct stat st;
227
48e698fa 228 if (fstat(f->real_fd, &st) < 0)
c9fb4c5b
JA
229 return -1;
230 if (S_ISBLK(st.st_mode)) {
231 unsigned long long bytes;
232
48e698fa 233 if (ioctl(f->real_fd, BLKGETSIZE64, &bytes) != 0)
c9fb4c5b
JA
234 return -1;
235
a7086591 236 f->max_blocks = bytes / BS;
c9fb4c5b
JA
237 return 0;
238 } else if (S_ISREG(st.st_mode)) {
a7086591 239 f->max_blocks = st.st_size / BS;
c9fb4c5b
JA
240 return 0;
241 }
242
243 return -1;
244}
245
246static int reap_events(struct submitter *s)
247{
e31b8288 248 struct io_cq_ring *ring = &s->cq_ring;
f0403f94 249 struct io_uring_cqe *cqe;
e2239016 250 unsigned head, reaped = 0;
c9fb4c5b 251
c3e2fc25 252 head = *ring->head;
c9fb4c5b 253 do {
701d1277
JA
254 struct file *f;
255
679d8352 256 read_barrier();
c3e2fc25 257 if (head == *ring->tail)
c9fb4c5b 258 break;
f0403f94 259 cqe = &ring->cqes[head & cq_ring_mask];
8025517d 260 if (!do_nop) {
e3466352 261 f = (struct file *) (uintptr_t) cqe->user_data;
8025517d
JA
262 f->pending_ios--;
263 if (cqe->res != BS) {
264 printf("io: unexpected ret=%d\n", cqe->res);
154a9582
JA
265 if (polled && cqe->res == -EOPNOTSUPP)
266 printf("Your filesystem doesn't support poll\n");
8025517d
JA
267 return -1;
268 }
c9fb4c5b 269 }
f0403f94 270 if (cqe->flags & IOCQE_FLAG_CACHEHIT)
305c06ce
JA
271 s->cachehit++;
272 else
273 s->cachemiss++;
c9fb4c5b
JA
274 reaped++;
275 head++;
c9fb4c5b
JA
276 } while (1);
277
278 s->inflight -= reaped;
c3e2fc25 279 *ring->head = head;
679d8352 280 write_barrier();
c9fb4c5b
JA
281 return reaped;
282}
283
284static void *submitter_fn(void *data)
285{
286 struct submitter *s = data;
ce1705de 287 struct io_sq_ring *ring = &s->sq_ring;
a7086591 288 int ret, prepped;
c9fb4c5b
JA
289
290 printf("submitter=%d\n", gettid());
291
c9fb4c5b
JA
292 srand48_r(pthread_self(), &s->rand);
293
294 prepped = 0;
295 do {
f310970e 296 int to_wait, to_submit, this_reap, to_prep;
c9fb4c5b 297
f310970e
JA
298 if (!prepped && s->inflight < DEPTH) {
299 to_prep = min(DEPTH - s->inflight, BATCH_SUBMIT);
a7086591 300 prepped = prep_more_ios(s, to_prep);
f310970e 301 }
c9fb4c5b
JA
302 s->inflight += prepped;
303submit_more:
304 to_submit = prepped;
305submit:
e4db5bd9 306 if (to_submit && (s->inflight + to_submit <= DEPTH))
c9fb4c5b
JA
307 to_wait = 0;
308 else
309 to_wait = min(s->inflight + to_submit, BATCH_COMPLETE);
310
ce1705de
JA
311 /*
312 * Only need to call io_uring_enter if we're not using SQ thread
313 * poll, or if IORING_SQ_NEED_WAKEUP is set.
314 */
315 if (!sq_thread_poll || (*ring->flags & IORING_SQ_NEED_WAKEUP)) {
e0abe388
JA
316 unsigned flags = 0;
317
318 if (to_wait)
319 flags = IORING_ENTER_GETEVENTS;
e2f309e6 320 if ((*ring->flags & IORING_SQ_NEED_WAKEUP))
b532dd6d 321 flags |= IORING_ENTER_SQ_WAKEUP;
e0abe388 322 ret = io_uring_enter(s, to_submit, to_wait, flags);
ce1705de
JA
323 s->calls++;
324 }
c9fb4c5b 325
ce1705de
JA
326 /*
327 * For non SQ thread poll, we already got the events we needed
328 * through the io_uring_enter() above. For SQ thread poll, we
329 * need to loop here until we find enough events.
330 */
331 this_reap = 0;
332 do {
333 int r;
334 r = reap_events(s);
7d1435e6
JA
335 if (r == -1) {
336 s->finish = 1;
ce1705de 337 break;
7d1435e6 338 } else if (r > 0)
ce1705de
JA
339 this_reap += r;
340 } while (sq_thread_poll && this_reap < to_wait);
c9fb4c5b
JA
341 s->reaps += this_reap;
342
343 if (ret >= 0) {
344 if (!ret) {
345 to_submit = 0;
346 if (s->inflight)
347 goto submit;
348 continue;
349 } else if (ret < to_submit) {
350 int diff = to_submit - ret;
351
352 s->done += ret;
353 prepped -= diff;
354 goto submit_more;
355 }
356 s->done += ret;
357 prepped = 0;
358 continue;
359 } else if (ret < 0) {
ac122fea 360 if (errno == EAGAIN) {
c9fb4c5b
JA
361 if (s->finish)
362 break;
363 if (this_reap)
364 goto submit;
c9fb4c5b
JA
365 to_submit = 0;
366 goto submit;
367 }
ac122fea 368 printf("io_submit: %s\n", strerror(errno));
c9fb4c5b
JA
369 break;
370 }
371 } while (!s->finish);
a7086591 372
c9fb4c5b
JA
373 finish = 1;
374 return NULL;
375}
376
377static void sig_int(int sig)
378{
379 printf("Exiting on signal %d\n", sig);
380 submitters[0].finish = 1;
381 finish = 1;
382}
383
384static void arm_sig_int(void)
385{
386 struct sigaction act;
387
388 memset(&act, 0, sizeof(act));
389 act.sa_handler = sig_int;
390 act.sa_flags = SA_RESTART;
391 sigaction(SIGINT, &act, NULL);
392}
393
c3e2fc25
JA
394static int setup_ring(struct submitter *s)
395{
e31b8288
JA
396 struct io_sq_ring *sring = &s->sq_ring;
397 struct io_cq_ring *cring = &s->cq_ring;
398 struct io_uring_params p;
2ea53ca3 399 int ret, fd;
c3e2fc25 400 void *ptr;
c3e2fc25
JA
401
402 memset(&p, 0, sizeof(p));
403
7d1435e6 404 if (polled && !do_nop)
0e47f11b 405 p.flags |= IORING_SETUP_IOPOLL;
3d7d00a3 406 if (sq_thread_poll) {
2ea53ca3 407 p.flags |= IORING_SETUP_SQPOLL;
3ade18a3 408 if (sq_thread_cpu != -1) {
3d7d00a3 409 p.flags |= IORING_SETUP_SQ_AFF;
3ade18a3
JA
410 p.sq_thread_cpu = sq_thread_cpu;
411 }
c3e2fc25
JA
412 }
413
2ea53ca3 414 fd = io_uring_setup(DEPTH, &p);
c3e2fc25
JA
415 if (fd < 0) {
416 perror("io_uring_setup");
417 return 1;
418 }
f310970e 419 s->ring_fd = fd;
2ea53ca3
JA
420
421 if (fixedbufs) {
422 ret = io_uring_register_buffers(s);
423 if (ret < 0) {
a7abc9fb 424 perror("io_uring_register_buffers");
2ea53ca3
JA
425 return 1;
426 }
427 }
428
8c5fa755
JA
429 if (register_files) {
430 ret = io_uring_register_files(s);
431 if (ret < 0) {
432 perror("io_uring_register_files");
433 return 1;
434 }
a7abc9fb
JA
435 }
436
e2239016 437 ptr = mmap(0, p.sq_off.array + p.sq_entries * sizeof(__u32),
f310970e
JA
438 PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, fd,
439 IORING_OFF_SQ_RING);
c3e2fc25
JA
440 printf("sq_ring ptr = 0x%p\n", ptr);
441 sring->head = ptr + p.sq_off.head;
442 sring->tail = ptr + p.sq_off.tail;
443 sring->ring_mask = ptr + p.sq_off.ring_mask;
444 sring->ring_entries = ptr + p.sq_off.ring_entries;
ce1705de 445 sring->flags = ptr + p.sq_off.flags;
ac122fea 446 sring->array = ptr + p.sq_off.array;
c3e2fc25
JA
447 sq_ring_mask = *sring->ring_mask;
448
f0403f94 449 s->sqes = mmap(0, p.sq_entries * sizeof(struct io_uring_sqe),
f310970e 450 PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, fd,
f0403f94
JA
451 IORING_OFF_SQES);
452 printf("sqes ptr = 0x%p\n", s->sqes);
c3e2fc25 453
f0403f94 454 ptr = mmap(0, p.cq_off.cqes + p.cq_entries * sizeof(struct io_uring_cqe),
f310970e
JA
455 PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, fd,
456 IORING_OFF_CQ_RING);
c3e2fc25
JA
457 printf("cq_ring ptr = 0x%p\n", ptr);
458 cring->head = ptr + p.cq_off.head;
459 cring->tail = ptr + p.cq_off.tail;
460 cring->ring_mask = ptr + p.cq_off.ring_mask;
461 cring->ring_entries = ptr + p.cq_off.ring_entries;
f0403f94 462 cring->cqes = ptr + p.cq_off.cqes;
c3e2fc25
JA
463 cq_ring_mask = *cring->ring_mask;
464 return 0;
465}
466
2e7888ef
JA
467static void file_depths(char *buf)
468{
469 struct submitter *s = &submitters[0];
470 char *p;
471 int i;
472
ac21bfab 473 buf[0] = '\0';
2e7888ef
JA
474 p = buf;
475 for (i = 0; i < s->nr_files; i++) {
476 struct file *f = &s->files[i];
477
478 if (i + 1 == s->nr_files)
479 p += sprintf(p, "%d", f->pending_ios);
480 else
481 p += sprintf(p, "%d, ", f->pending_ios);
482 }
483}
484
c9fb4c5b
JA
485int main(int argc, char *argv[])
486{
487 struct submitter *s = &submitters[0];
305c06ce 488 unsigned long done, calls, reap, cache_hit, cache_miss;
a7086591 489 int err, i, flags, fd;
2e7888ef 490 char *fdepths;
c3e2fc25 491 void *ret;
c9fb4c5b 492
8025517d 493 if (!do_nop && argc < 2) {
c9fb4c5b
JA
494 printf("%s: filename\n", argv[0]);
495 return 1;
496 }
497
701d1277 498 flags = O_RDONLY | O_NOATIME;
a7086591
JA
499 if (!buffered)
500 flags |= O_DIRECT;
501
502 i = 1;
8025517d 503 while (!do_nop && i < argc) {
a7086591
JA
504 struct file *f = &s->files[s->nr_files];
505
506 fd = open(argv[i], flags);
507 if (fd < 0) {
508 perror("open");
509 return 1;
510 }
48e698fa 511 f->real_fd = fd;
a7086591
JA
512 if (get_file_size(f)) {
513 printf("failed getting size of device/file\n");
514 return 1;
515 }
516 if (f->max_blocks <= 1) {
517 printf("Zero file/device size?\n");
518 return 1;
519 }
520 f->max_blocks--;
521
522 printf("Added file %s\n", argv[i]);
523 s->nr_files++;
524 i++;
525 }
526
b3ce355d
JA
527 if (fixedbufs) {
528 struct rlimit rlim;
529
530 rlim.rlim_cur = RLIM_INFINITY;
531 rlim.rlim_max = RLIM_INFINITY;
532 if (setrlimit(RLIMIT_MEMLOCK, &rlim) < 0) {
533 perror("setrlimit");
534 return 1;
535 }
c9fb4c5b
JA
536 }
537
538 arm_sig_int();
539
c3e2fc25
JA
540 for (i = 0; i < DEPTH; i++) {
541 void *buf;
c9fb4c5b 542
c3e2fc25 543 if (posix_memalign(&buf, BS, BS)) {
c9fb4c5b
JA
544 printf("failed alloc\n");
545 return 1;
546 }
c3e2fc25
JA
547 s->iovecs[i].iov_base = buf;
548 s->iovecs[i].iov_len = BS;
c9fb4c5b
JA
549 }
550
c3e2fc25 551 err = setup_ring(s);
c9fb4c5b 552 if (err) {
c3e2fc25 553 printf("ring setup failed: %s, %d\n", strerror(errno), err);
c9fb4c5b
JA
554 return 1;
555 }
c3e2fc25
JA
556 printf("polled=%d, fixedbufs=%d, buffered=%d", polled, fixedbufs, buffered);
557 printf(" QD=%d, sq_ring=%d, cq_ring=%d\n", DEPTH, *s->sq_ring.ring_entries, *s->cq_ring.ring_entries);
c9fb4c5b
JA
558
559 pthread_create(&s->thread, NULL, submitter_fn, s);
560
2e7888ef 561 fdepths = malloc(8 * s->nr_files);
305c06ce 562 cache_hit = cache_miss = reap = calls = done = 0;
c9fb4c5b
JA
563 do {
564 unsigned long this_done = 0;
565 unsigned long this_reap = 0;
566 unsigned long this_call = 0;
305c06ce
JA
567 unsigned long this_cache_hit = 0;
568 unsigned long this_cache_miss = 0;
c9fb4c5b 569 unsigned long rpc = 0, ipc = 0;
305c06ce 570 double hit = 0.0;
c9fb4c5b
JA
571
572 sleep(1);
573 this_done += s->done;
574 this_call += s->calls;
575 this_reap += s->reaps;
305c06ce
JA
576 this_cache_hit += s->cachehit;
577 this_cache_miss += s->cachemiss;
578 if (this_cache_hit && this_cache_miss) {
579 unsigned long hits, total;
580
581 hits = this_cache_hit - cache_hit;
582 total = hits + this_cache_miss - cache_miss;
583 hit = (double) hits / (double) total;
584 hit *= 100.0;
585 }
c9fb4c5b
JA
586 if (this_call - calls) {
587 rpc = (this_done - done) / (this_call - calls);
588 ipc = (this_reap - reap) / (this_call - calls);
191561c1
JA
589 } else
590 rpc = ipc = -1;
2e7888ef
JA
591 file_depths(fdepths);
592 printf("IOPS=%lu, IOS/call=%ld/%ld, inflight=%u (%s), Cachehit=%0.2f%%\n",
c9fb4c5b 593 this_done - done, rpc, ipc, s->inflight,
2e7888ef 594 fdepths, hit);
c9fb4c5b
JA
595 done = this_done;
596 calls = this_call;
597 reap = this_reap;
305c06ce
JA
598 cache_hit = s->cachehit;
599 cache_miss = s->cachemiss;
c9fb4c5b
JA
600 } while (!finish);
601
602 pthread_join(s->thread, &ret);
e31b8288 603 close(s->ring_fd);
2e7888ef 604 free(fdepths);
c9fb4c5b
JA
605 return 0;
606}