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