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