iou 0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/dependabot.yml +12 -0
- data/.gitignore +59 -0
- data/.gitmodules +3 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +106 -0
- data/Rakefile +39 -0
- data/TODO.md +4 -0
- data/examples/echo_server.rb +52 -0
- data/examples/event_loop.rb +69 -0
- data/examples/http_server.rb +56 -0
- data/examples/http_server_multishot.rb +59 -0
- data/ext/iou/extconf.rb +71 -0
- data/ext/iou/iou.c +729 -0
- data/ext/iou/iou.h +66 -0
- data/ext/iou/iou_ext.c +9 -0
- data/ext/iou/op_spec_data.c +61 -0
- data/iou.gemspec +27 -0
- data/lib/iou/version.rb +5 -0
- data/lib/iou.rb +3 -0
- data/test/helper.rb +59 -0
- data/test/test_iou.rb +794 -0
- data/vendor/liburing/.github/actions/codespell/stopwords +7 -0
- data/vendor/liburing/.github/pull_request_template.md +86 -0
- data/vendor/liburing/.github/workflows/build.yml +137 -0
- data/vendor/liburing/.github/workflows/codespell.yml +25 -0
- data/vendor/liburing/.github/workflows/shellcheck.yml +20 -0
- data/vendor/liburing/.gitignore +41 -0
- data/vendor/liburing/CHANGELOG +111 -0
- data/vendor/liburing/CITATION.cff +11 -0
- data/vendor/liburing/COPYING +502 -0
- data/vendor/liburing/COPYING.GPL +339 -0
- data/vendor/liburing/LICENSE +20 -0
- data/vendor/liburing/Makefile +96 -0
- data/vendor/liburing/Makefile.common +7 -0
- data/vendor/liburing/Makefile.quiet +11 -0
- data/vendor/liburing/README +106 -0
- data/vendor/liburing/SECURITY.md +6 -0
- data/vendor/liburing/configure +624 -0
- data/vendor/liburing/debian/README.Debian +7 -0
- data/vendor/liburing/debian/changelog +38 -0
- data/vendor/liburing/debian/control +39 -0
- data/vendor/liburing/debian/copyright +49 -0
- data/vendor/liburing/debian/liburing-dev.install +4 -0
- data/vendor/liburing/debian/liburing-dev.manpages +5 -0
- data/vendor/liburing/debian/liburing2.install +1 -0
- data/vendor/liburing/debian/liburing2.symbols +56 -0
- data/vendor/liburing/debian/patches/series +1 -0
- data/vendor/liburing/debian/rules +29 -0
- data/vendor/liburing/debian/source/format +1 -0
- data/vendor/liburing/debian/source/local-options +2 -0
- data/vendor/liburing/debian/source/options +1 -0
- data/vendor/liburing/debian/watch +3 -0
- data/vendor/liburing/examples/Makefile +53 -0
- data/vendor/liburing/examples/helpers.c +62 -0
- data/vendor/liburing/examples/helpers.h +7 -0
- data/vendor/liburing/examples/io_uring-close-test.c +123 -0
- data/vendor/liburing/examples/io_uring-cp.c +282 -0
- data/vendor/liburing/examples/io_uring-test.c +112 -0
- data/vendor/liburing/examples/io_uring-udp.c +403 -0
- data/vendor/liburing/examples/link-cp.c +193 -0
- data/vendor/liburing/examples/napi-busy-poll-client.c +509 -0
- data/vendor/liburing/examples/napi-busy-poll-server.c +450 -0
- data/vendor/liburing/examples/poll-bench.c +101 -0
- data/vendor/liburing/examples/proxy.c +2461 -0
- data/vendor/liburing/examples/proxy.h +102 -0
- data/vendor/liburing/examples/rsrc-update-bench.c +100 -0
- data/vendor/liburing/examples/send-zerocopy.c +658 -0
- data/vendor/liburing/examples/ucontext-cp.c +258 -0
- data/vendor/liburing/liburing-ffi.pc.in +12 -0
- data/vendor/liburing/liburing.pc.in +12 -0
- data/vendor/liburing/liburing.spec +66 -0
- data/vendor/liburing/make-debs.sh +55 -0
- data/vendor/liburing/src/Makefile +129 -0
- data/vendor/liburing/src/arch/aarch64/lib.h +47 -0
- data/vendor/liburing/src/arch/aarch64/syscall.h +91 -0
- data/vendor/liburing/src/arch/generic/lib.h +17 -0
- data/vendor/liburing/src/arch/generic/syscall.h +100 -0
- data/vendor/liburing/src/arch/riscv64/lib.h +48 -0
- data/vendor/liburing/src/arch/riscv64/syscall.h +100 -0
- data/vendor/liburing/src/arch/syscall-defs.h +94 -0
- data/vendor/liburing/src/arch/x86/lib.h +11 -0
- data/vendor/liburing/src/arch/x86/syscall.h +296 -0
- data/vendor/liburing/src/ffi.c +15 -0
- data/vendor/liburing/src/include/liburing/barrier.h +81 -0
- data/vendor/liburing/src/include/liburing/io_uring.h +818 -0
- data/vendor/liburing/src/include/liburing.h +1602 -0
- data/vendor/liburing/src/int_flags.h +11 -0
- data/vendor/liburing/src/lib.h +52 -0
- data/vendor/liburing/src/liburing-ffi.map +211 -0
- data/vendor/liburing/src/liburing.map +104 -0
- data/vendor/liburing/src/nolibc.c +55 -0
- data/vendor/liburing/src/queue.c +468 -0
- data/vendor/liburing/src/register.c +374 -0
- data/vendor/liburing/src/setup.c +689 -0
- data/vendor/liburing/src/setup.h +9 -0
- data/vendor/liburing/src/syscall.c +29 -0
- data/vendor/liburing/src/syscall.h +53 -0
- data/vendor/liburing/src/version.c +21 -0
- data/vendor/liburing/test/232c93d07b74.c +305 -0
- data/vendor/liburing/test/35fa71a030ca.c +329 -0
- data/vendor/liburing/test/500f9fbadef8.c +91 -0
- data/vendor/liburing/test/7ad0e4b2f83c.c +94 -0
- data/vendor/liburing/test/8a9973408177.c +107 -0
- data/vendor/liburing/test/917257daa0fe.c +54 -0
- data/vendor/liburing/test/Makefile +297 -0
- data/vendor/liburing/test/a0908ae19763.c +59 -0
- data/vendor/liburing/test/a4c0b3decb33.c +181 -0
- data/vendor/liburing/test/accept-link.c +255 -0
- data/vendor/liburing/test/accept-non-empty.c +256 -0
- data/vendor/liburing/test/accept-reuse.c +163 -0
- data/vendor/liburing/test/accept-test.c +83 -0
- data/vendor/liburing/test/accept.c +919 -0
- data/vendor/liburing/test/across-fork.c +284 -0
- data/vendor/liburing/test/b19062a56726.c +54 -0
- data/vendor/liburing/test/b5837bd5311d.c +78 -0
- data/vendor/liburing/test/bind-listen.c +408 -0
- data/vendor/liburing/test/buf-ring-nommap.c +123 -0
- data/vendor/liburing/test/buf-ring-put.c +83 -0
- data/vendor/liburing/test/buf-ring.c +473 -0
- data/vendor/liburing/test/ce593a6c480a.c +139 -0
- data/vendor/liburing/test/close-opath.c +123 -0
- data/vendor/liburing/test/config +14 -0
- data/vendor/liburing/test/connect-rep.c +204 -0
- data/vendor/liburing/test/connect.c +442 -0
- data/vendor/liburing/test/coredump.c +60 -0
- data/vendor/liburing/test/cq-full.c +97 -0
- data/vendor/liburing/test/cq-overflow.c +530 -0
- data/vendor/liburing/test/cq-peek-batch.c +103 -0
- data/vendor/liburing/test/cq-ready.c +95 -0
- data/vendor/liburing/test/cq-size.c +65 -0
- data/vendor/liburing/test/d4ae271dfaae.c +96 -0
- data/vendor/liburing/test/d77a67ed5f27.c +65 -0
- data/vendor/liburing/test/defer-taskrun.c +391 -0
- data/vendor/liburing/test/defer-tw-timeout.c +173 -0
- data/vendor/liburing/test/defer.c +319 -0
- data/vendor/liburing/test/double-poll-crash.c +195 -0
- data/vendor/liburing/test/drop-submit.c +94 -0
- data/vendor/liburing/test/eeed8b54e0df.c +120 -0
- data/vendor/liburing/test/empty-eownerdead.c +45 -0
- data/vendor/liburing/test/eploop.c +74 -0
- data/vendor/liburing/test/eventfd-disable.c +179 -0
- data/vendor/liburing/test/eventfd-reg.c +77 -0
- data/vendor/liburing/test/eventfd-ring.c +98 -0
- data/vendor/liburing/test/eventfd.c +113 -0
- data/vendor/liburing/test/evloop.c +73 -0
- data/vendor/liburing/test/exec-target.c +6 -0
- data/vendor/liburing/test/exit-no-cleanup.c +117 -0
- data/vendor/liburing/test/fadvise.c +202 -0
- data/vendor/liburing/test/fallocate.c +265 -0
- data/vendor/liburing/test/fc2a85cb02ef.c +132 -0
- data/vendor/liburing/test/fd-install.c +500 -0
- data/vendor/liburing/test/fd-pass.c +237 -0
- data/vendor/liburing/test/fdinfo.c +419 -0
- data/vendor/liburing/test/file-register.c +1189 -0
- data/vendor/liburing/test/file-update.c +231 -0
- data/vendor/liburing/test/file-verify.c +654 -0
- data/vendor/liburing/test/files-exit-hang-poll.c +114 -0
- data/vendor/liburing/test/files-exit-hang-timeout.c +137 -0
- data/vendor/liburing/test/fixed-buf-iter.c +115 -0
- data/vendor/liburing/test/fixed-buf-merge.c +101 -0
- data/vendor/liburing/test/fixed-hugepage.c +411 -0
- data/vendor/liburing/test/fixed-link.c +90 -0
- data/vendor/liburing/test/fixed-reuse.c +160 -0
- data/vendor/liburing/test/fpos.c +255 -0
- data/vendor/liburing/test/fsnotify.c +118 -0
- data/vendor/liburing/test/fsync.c +224 -0
- data/vendor/liburing/test/futex.c +571 -0
- data/vendor/liburing/test/hardlink.c +170 -0
- data/vendor/liburing/test/helpers.c +318 -0
- data/vendor/liburing/test/helpers.h +108 -0
- data/vendor/liburing/test/ignore-single-mmap.c +48 -0
- data/vendor/liburing/test/init-mem.c +164 -0
- data/vendor/liburing/test/io-cancel.c +561 -0
- data/vendor/liburing/test/io_uring_enter.c +264 -0
- data/vendor/liburing/test/io_uring_passthrough.c +482 -0
- data/vendor/liburing/test/io_uring_register.c +503 -0
- data/vendor/liburing/test/io_uring_setup.c +110 -0
- data/vendor/liburing/test/iopoll-leak.c +85 -0
- data/vendor/liburing/test/iopoll-overflow.c +118 -0
- data/vendor/liburing/test/iopoll.c +465 -0
- data/vendor/liburing/test/lfs-openat-write.c +119 -0
- data/vendor/liburing/test/lfs-openat.c +273 -0
- data/vendor/liburing/test/link-timeout.c +1108 -0
- data/vendor/liburing/test/link.c +497 -0
- data/vendor/liburing/test/link_drain.c +255 -0
- data/vendor/liburing/test/madvise.c +195 -0
- data/vendor/liburing/test/min-timeout-wait.c +354 -0
- data/vendor/liburing/test/min-timeout.c +233 -0
- data/vendor/liburing/test/mkdir.c +112 -0
- data/vendor/liburing/test/msg-ring-fd.c +331 -0
- data/vendor/liburing/test/msg-ring-flags.c +212 -0
- data/vendor/liburing/test/msg-ring-overflow.c +159 -0
- data/vendor/liburing/test/msg-ring.c +467 -0
- data/vendor/liburing/test/multicqes_drain.c +429 -0
- data/vendor/liburing/test/napi-test.c +215 -0
- data/vendor/liburing/test/napi-test.sh +48 -0
- data/vendor/liburing/test/no-mmap-inval.c +42 -0
- data/vendor/liburing/test/nolibc.c +62 -0
- data/vendor/liburing/test/nop-all-sizes.c +99 -0
- data/vendor/liburing/test/nop.c +177 -0
- data/vendor/liburing/test/nvme.h +169 -0
- data/vendor/liburing/test/ooo-file-unreg.c +82 -0
- data/vendor/liburing/test/open-close.c +261 -0
- data/vendor/liburing/test/open-direct-link.c +188 -0
- data/vendor/liburing/test/open-direct-pick.c +180 -0
- data/vendor/liburing/test/openat2.c +312 -0
- data/vendor/liburing/test/personality.c +204 -0
- data/vendor/liburing/test/pipe-bug.c +95 -0
- data/vendor/liburing/test/pipe-eof.c +83 -0
- data/vendor/liburing/test/pipe-reuse.c +105 -0
- data/vendor/liburing/test/poll-cancel-all.c +496 -0
- data/vendor/liburing/test/poll-cancel-ton.c +135 -0
- data/vendor/liburing/test/poll-cancel.c +228 -0
- data/vendor/liburing/test/poll-link.c +221 -0
- data/vendor/liburing/test/poll-many.c +230 -0
- data/vendor/liburing/test/poll-mshot-overflow.c +265 -0
- data/vendor/liburing/test/poll-mshot-update.c +323 -0
- data/vendor/liburing/test/poll-race-mshot.c +276 -0
- data/vendor/liburing/test/poll-race.c +105 -0
- data/vendor/liburing/test/poll-ring.c +48 -0
- data/vendor/liburing/test/poll-v-poll.c +353 -0
- data/vendor/liburing/test/poll.c +327 -0
- data/vendor/liburing/test/probe.c +135 -0
- data/vendor/liburing/test/read-before-exit.c +129 -0
- data/vendor/liburing/test/read-mshot-empty.c +153 -0
- data/vendor/liburing/test/read-mshot.c +404 -0
- data/vendor/liburing/test/read-write.c +1013 -0
- data/vendor/liburing/test/recv-msgall-stream.c +398 -0
- data/vendor/liburing/test/recv-msgall.c +263 -0
- data/vendor/liburing/test/recv-multishot.c +602 -0
- data/vendor/liburing/test/recvsend_bundle.c +691 -0
- data/vendor/liburing/test/reg-fd-only.c +131 -0
- data/vendor/liburing/test/reg-hint.c +56 -0
- data/vendor/liburing/test/reg-reg-ring.c +90 -0
- data/vendor/liburing/test/regbuf-merge.c +91 -0
- data/vendor/liburing/test/register-restrictions.c +633 -0
- data/vendor/liburing/test/rename.c +132 -0
- data/vendor/liburing/test/ring-leak.c +283 -0
- data/vendor/liburing/test/ring-leak2.c +249 -0
- data/vendor/liburing/test/ringbuf-read.c +196 -0
- data/vendor/liburing/test/ringbuf-status.c +242 -0
- data/vendor/liburing/test/rsrc_tags.c +461 -0
- data/vendor/liburing/test/runtests-loop.sh +16 -0
- data/vendor/liburing/test/runtests-quiet.sh +11 -0
- data/vendor/liburing/test/runtests.sh +168 -0
- data/vendor/liburing/test/rw_merge_test.c +98 -0
- data/vendor/liburing/test/self.c +91 -0
- data/vendor/liburing/test/send-zerocopy.c +971 -0
- data/vendor/liburing/test/send_recv.c +412 -0
- data/vendor/liburing/test/send_recvmsg.c +444 -0
- data/vendor/liburing/test/shared-wq.c +84 -0
- data/vendor/liburing/test/short-read.c +75 -0
- data/vendor/liburing/test/shutdown.c +165 -0
- data/vendor/liburing/test/sigfd-deadlock.c +88 -0
- data/vendor/liburing/test/single-issuer.c +169 -0
- data/vendor/liburing/test/skip-cqe.c +428 -0
- data/vendor/liburing/test/socket-getsetsock-cmd.c +346 -0
- data/vendor/liburing/test/socket-io-cmd.c +237 -0
- data/vendor/liburing/test/socket-rw-eagain.c +149 -0
- data/vendor/liburing/test/socket-rw-offset.c +149 -0
- data/vendor/liburing/test/socket-rw.c +137 -0
- data/vendor/liburing/test/socket.c +408 -0
- data/vendor/liburing/test/splice.c +512 -0
- data/vendor/liburing/test/sq-full-cpp.cc +45 -0
- data/vendor/liburing/test/sq-full.c +45 -0
- data/vendor/liburing/test/sq-poll-dup.c +211 -0
- data/vendor/liburing/test/sq-poll-kthread.c +169 -0
- data/vendor/liburing/test/sq-poll-share.c +138 -0
- data/vendor/liburing/test/sq-space_left.c +159 -0
- data/vendor/liburing/test/sqpoll-disable-exit.c +196 -0
- data/vendor/liburing/test/sqpoll-exec.c +132 -0
- data/vendor/liburing/test/sqpoll-exit-hang.c +78 -0
- data/vendor/liburing/test/sqpoll-sleep.c +69 -0
- data/vendor/liburing/test/statx.c +172 -0
- data/vendor/liburing/test/stdout.c +232 -0
- data/vendor/liburing/test/submit-and-wait.c +108 -0
- data/vendor/liburing/test/submit-link-fail.c +156 -0
- data/vendor/liburing/test/submit-reuse.c +237 -0
- data/vendor/liburing/test/symlink.c +117 -0
- data/vendor/liburing/test/sync-cancel.c +235 -0
- data/vendor/liburing/test/teardowns.c +58 -0
- data/vendor/liburing/test/test.h +36 -0
- data/vendor/liburing/test/thread-exit.c +143 -0
- data/vendor/liburing/test/timeout-new.c +256 -0
- data/vendor/liburing/test/timeout.c +1798 -0
- data/vendor/liburing/test/truncate.c +186 -0
- data/vendor/liburing/test/tty-write-dpoll.c +60 -0
- data/vendor/liburing/test/unlink.c +112 -0
- data/vendor/liburing/test/version.c +25 -0
- data/vendor/liburing/test/wait-timeout.c +287 -0
- data/vendor/liburing/test/waitid.c +373 -0
- data/vendor/liburing/test/wakeup-hang.c +162 -0
- data/vendor/liburing/test/wq-aff.c +146 -0
- data/vendor/liburing/test/xattr.c +442 -0
- metadata +402 -0
@@ -0,0 +1,503 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* io_uring_register.c
|
4
|
+
*
|
5
|
+
* Description: Unit tests for the io_uring_register system call.
|
6
|
+
*
|
7
|
+
* Copyright 2019, Red Hat, Inc.
|
8
|
+
* Author: Jeff Moyer <jmoyer@redhat.com>
|
9
|
+
*/
|
10
|
+
#include <stdio.h>
|
11
|
+
#include <fcntl.h>
|
12
|
+
#include <string.h>
|
13
|
+
#include <stdlib.h>
|
14
|
+
#include <unistd.h>
|
15
|
+
#include <errno.h>
|
16
|
+
#include <sys/sysinfo.h>
|
17
|
+
#include <poll.h>
|
18
|
+
#include <assert.h>
|
19
|
+
#include <sys/uio.h>
|
20
|
+
#include <sys/mman.h>
|
21
|
+
#include <linux/mman.h>
|
22
|
+
#include <sys/time.h>
|
23
|
+
#include <sys/resource.h>
|
24
|
+
#include <limits.h>
|
25
|
+
|
26
|
+
#include "helpers.h"
|
27
|
+
#include "liburing.h"
|
28
|
+
#include "../src/syscall.h"
|
29
|
+
|
30
|
+
static int pagesize;
|
31
|
+
static rlim_t mlock_limit;
|
32
|
+
static int devnull;
|
33
|
+
|
34
|
+
static int expect_fail(int fd, unsigned int opcode, void *arg,
|
35
|
+
unsigned int nr_args, int error, int error2)
|
36
|
+
{
|
37
|
+
int ret;
|
38
|
+
|
39
|
+
ret = io_uring_register(fd, opcode, arg, nr_args);
|
40
|
+
if (ret >= 0) {
|
41
|
+
int ret2 = 0;
|
42
|
+
|
43
|
+
fprintf(stderr, "expected %s, but call succeeded\n", strerror(error));
|
44
|
+
if (opcode == IORING_REGISTER_BUFFERS) {
|
45
|
+
ret2 = io_uring_register(fd, IORING_UNREGISTER_BUFFERS,
|
46
|
+
0, 0);
|
47
|
+
} else if (opcode == IORING_REGISTER_FILES) {
|
48
|
+
ret2 = io_uring_register(fd, IORING_UNREGISTER_FILES, 0,
|
49
|
+
0);
|
50
|
+
}
|
51
|
+
if (ret2) {
|
52
|
+
fprintf(stderr, "internal error: failed to unregister\n");
|
53
|
+
exit(1);
|
54
|
+
}
|
55
|
+
return 1;
|
56
|
+
}
|
57
|
+
|
58
|
+
if (ret != error && (error2 && ret != error2)) {
|
59
|
+
fprintf(stderr, "expected %d/%d, got %d\n", error, error2, ret);
|
60
|
+
return 1;
|
61
|
+
}
|
62
|
+
return 0;
|
63
|
+
}
|
64
|
+
|
65
|
+
static int new_io_uring(int entries, struct io_uring_params *p)
|
66
|
+
{
|
67
|
+
int fd;
|
68
|
+
|
69
|
+
fd = io_uring_setup(entries, p);
|
70
|
+
if (fd < 0) {
|
71
|
+
perror("io_uring_setup");
|
72
|
+
exit(1);
|
73
|
+
}
|
74
|
+
return fd;
|
75
|
+
}
|
76
|
+
|
77
|
+
#define MAXFDS (UINT_MAX * sizeof(int))
|
78
|
+
|
79
|
+
static void *map_filebacked(size_t size)
|
80
|
+
{
|
81
|
+
int fd, ret;
|
82
|
+
void *addr;
|
83
|
+
char template[32] = "io_uring_register-test-XXXXXXXX";
|
84
|
+
|
85
|
+
fd = mkstemp(template);
|
86
|
+
if (fd < 0) {
|
87
|
+
perror("mkstemp");
|
88
|
+
return NULL;
|
89
|
+
}
|
90
|
+
unlink(template);
|
91
|
+
|
92
|
+
ret = ftruncate(fd, size);
|
93
|
+
if (ret < 0) {
|
94
|
+
perror("ftruncate");
|
95
|
+
close(fd);
|
96
|
+
return NULL;
|
97
|
+
}
|
98
|
+
|
99
|
+
addr = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
|
100
|
+
if (addr == MAP_FAILED) {
|
101
|
+
perror("mmap");
|
102
|
+
close(fd);
|
103
|
+
return NULL;
|
104
|
+
}
|
105
|
+
|
106
|
+
close(fd);
|
107
|
+
return addr;
|
108
|
+
}
|
109
|
+
|
110
|
+
/*
|
111
|
+
* NOTE: this is now limited by SCM_MAX_FD (253). Keep the code for now,
|
112
|
+
* but probably should augment it to test 253 and 254, specifically.
|
113
|
+
*/
|
114
|
+
static int test_max_fds(int uring_fd)
|
115
|
+
{
|
116
|
+
int status = 1;
|
117
|
+
int ret;
|
118
|
+
void *fd_as; /* file descriptor address space */
|
119
|
+
int fdtable_fd; /* fd for the file that will be mapped over and over */
|
120
|
+
int io_fd; /* the valid fd for I/O -- /dev/null */
|
121
|
+
int *fds; /* used to map the file into the address space */
|
122
|
+
char template[32] = "io_uring_register-test-XXXXXXXX";
|
123
|
+
unsigned long long i, nr_maps, nr_fds;
|
124
|
+
|
125
|
+
/*
|
126
|
+
* First, mmap anonymous the full size. That will guarantee the
|
127
|
+
* mapping will fit in the memory area selected by mmap. Then,
|
128
|
+
* over-write that mapping using a file-backed mapping, 128MiB at
|
129
|
+
* a time using MAP_FIXED.
|
130
|
+
*/
|
131
|
+
fd_as = mmap(NULL, UINT_MAX * sizeof(int), PROT_READ|PROT_WRITE,
|
132
|
+
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
|
133
|
+
if (fd_as == MAP_FAILED) {
|
134
|
+
if (errno == ENOMEM)
|
135
|
+
return 0;
|
136
|
+
perror("mmap fd_as");
|
137
|
+
exit(1);
|
138
|
+
}
|
139
|
+
|
140
|
+
fdtable_fd = mkstemp(template);
|
141
|
+
if (fdtable_fd < 0) {
|
142
|
+
perror("mkstemp");
|
143
|
+
exit(1);
|
144
|
+
}
|
145
|
+
unlink(template);
|
146
|
+
ret = ftruncate(fdtable_fd, 128*1024*1024);
|
147
|
+
if (ret < 0) {
|
148
|
+
perror("ftruncate");
|
149
|
+
exit(1);
|
150
|
+
}
|
151
|
+
|
152
|
+
io_fd = open("/dev/null", O_RDWR);
|
153
|
+
if (io_fd < 0) {
|
154
|
+
perror("open /dev/null");
|
155
|
+
exit(1);
|
156
|
+
}
|
157
|
+
fds = mmap(fd_as, 128*1024*1024, PROT_READ|PROT_WRITE,
|
158
|
+
MAP_SHARED|MAP_FIXED, fdtable_fd, 0);
|
159
|
+
if (fds == MAP_FAILED) {
|
160
|
+
perror("mmap fdtable");
|
161
|
+
exit(1);
|
162
|
+
}
|
163
|
+
|
164
|
+
/* fill the fd table */
|
165
|
+
nr_fds = 128*1024*1024 / sizeof(int);
|
166
|
+
for (i = 0; i < nr_fds; i++)
|
167
|
+
fds[i] = io_fd;
|
168
|
+
|
169
|
+
/* map the file through the rest of the address space */
|
170
|
+
nr_maps = (UINT_MAX * sizeof(int)) / (128*1024*1024);
|
171
|
+
for (i = 0; i < nr_maps; i++) {
|
172
|
+
fds = &fds[nr_fds]; /* advance fds by 128MiB */
|
173
|
+
fds = mmap(fds, 128*1024*1024, PROT_READ|PROT_WRITE,
|
174
|
+
MAP_SHARED|MAP_FIXED, fdtable_fd, 0);
|
175
|
+
if (fds == MAP_FAILED) {
|
176
|
+
fprintf(stderr, "mmap failed at offset %lu\n",
|
177
|
+
(unsigned long)((char *)fd_as - (char *)fds));
|
178
|
+
exit(1);
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
/* Now fd_as points to the file descriptor array. */
|
183
|
+
/*
|
184
|
+
* We may not be able to map all of these files. Let's back off
|
185
|
+
* until success.
|
186
|
+
*/
|
187
|
+
nr_fds = UINT_MAX;
|
188
|
+
while (nr_fds) {
|
189
|
+
ret = io_uring_register(uring_fd, IORING_REGISTER_FILES, fd_as,
|
190
|
+
nr_fds);
|
191
|
+
if (ret != 0) {
|
192
|
+
nr_fds /= 2;
|
193
|
+
continue;
|
194
|
+
}
|
195
|
+
status = 0;
|
196
|
+
ret = io_uring_register(uring_fd, IORING_UNREGISTER_FILES, 0, 0);
|
197
|
+
if (ret < 0) {
|
198
|
+
errno = -ret;
|
199
|
+
perror("io_uring_register UNREGISTER_FILES");
|
200
|
+
exit(1);
|
201
|
+
}
|
202
|
+
break;
|
203
|
+
}
|
204
|
+
|
205
|
+
close(io_fd);
|
206
|
+
close(fdtable_fd);
|
207
|
+
ret = munmap(fd_as, UINT_MAX * sizeof(int));
|
208
|
+
if (ret != 0) {
|
209
|
+
fprintf(stderr, "munmap(%zu) failed\n", UINT_MAX * sizeof(int));
|
210
|
+
exit(1);
|
211
|
+
}
|
212
|
+
|
213
|
+
return status;
|
214
|
+
}
|
215
|
+
|
216
|
+
static int test_memlock_exceeded(int fd)
|
217
|
+
{
|
218
|
+
int ret;
|
219
|
+
void *buf;
|
220
|
+
struct iovec iov;
|
221
|
+
|
222
|
+
/* if limit is larger than 2gb, just skip this test */
|
223
|
+
if (mlock_limit >= 2 * 1024 * 1024 * 1024ULL)
|
224
|
+
return 0;
|
225
|
+
|
226
|
+
iov.iov_len = mlock_limit * 2;
|
227
|
+
buf = t_malloc(iov.iov_len);
|
228
|
+
iov.iov_base = buf;
|
229
|
+
|
230
|
+
while (iov.iov_len) {
|
231
|
+
ret = io_uring_register(fd, IORING_REGISTER_BUFFERS, &iov, 1);
|
232
|
+
if (ret == -ENOMEM) {
|
233
|
+
iov.iov_len /= 2;
|
234
|
+
continue;
|
235
|
+
} else if (ret == -EFAULT) {
|
236
|
+
free(buf);
|
237
|
+
return 0;
|
238
|
+
} else if (ret) {
|
239
|
+
fprintf(stderr, "expected success or EFAULT, got %d\n", ret);
|
240
|
+
free(buf);
|
241
|
+
return 1;
|
242
|
+
}
|
243
|
+
ret = io_uring_register(fd, IORING_UNREGISTER_BUFFERS, NULL, 0);
|
244
|
+
if (ret != 0) {
|
245
|
+
fprintf(stderr, "error: unregister failed with %d\n", ret);
|
246
|
+
free(buf);
|
247
|
+
return 1;
|
248
|
+
}
|
249
|
+
break;
|
250
|
+
}
|
251
|
+
if (!iov.iov_len)
|
252
|
+
printf("Unable to register buffers. Check memlock rlimit.\n");
|
253
|
+
|
254
|
+
free(buf);
|
255
|
+
return 0;
|
256
|
+
}
|
257
|
+
|
258
|
+
static int test_iovec_nr(int fd)
|
259
|
+
{
|
260
|
+
int i, ret, status = 0;
|
261
|
+
unsigned int nr = 1000000;
|
262
|
+
struct iovec *iovs;
|
263
|
+
void *buf;
|
264
|
+
|
265
|
+
iovs = malloc(nr * sizeof(struct iovec));
|
266
|
+
if (!iovs) {
|
267
|
+
fprintf(stdout, "can't allocate iovecs, skip\n");
|
268
|
+
return 0;
|
269
|
+
}
|
270
|
+
buf = t_malloc(pagesize);
|
271
|
+
|
272
|
+
for (i = 0; i < nr; i++) {
|
273
|
+
iovs[i].iov_base = buf;
|
274
|
+
iovs[i].iov_len = pagesize;
|
275
|
+
}
|
276
|
+
|
277
|
+
status |= expect_fail(fd, IORING_REGISTER_BUFFERS, iovs, nr, -EINVAL, 0);
|
278
|
+
|
279
|
+
/* reduce to UIO_MAXIOV */
|
280
|
+
nr = UIO_MAXIOV;
|
281
|
+
ret = io_uring_register(fd, IORING_REGISTER_BUFFERS, iovs, nr);
|
282
|
+
if ((ret == -ENOMEM || ret == -EPERM) && geteuid()) {
|
283
|
+
fprintf(stderr, "can't register large iovec for regular users, skip\n");
|
284
|
+
} else if (ret != 0) {
|
285
|
+
fprintf(stderr, "expected success, got %d\n", ret);
|
286
|
+
status = 1;
|
287
|
+
} else {
|
288
|
+
io_uring_register(fd, IORING_UNREGISTER_BUFFERS, 0, 0);
|
289
|
+
}
|
290
|
+
free(buf);
|
291
|
+
free(iovs);
|
292
|
+
return status;
|
293
|
+
}
|
294
|
+
|
295
|
+
/*
|
296
|
+
* io_uring limit is 1G. iov_len limit is ~OUL, I think
|
297
|
+
*/
|
298
|
+
static int test_iovec_size(int fd)
|
299
|
+
{
|
300
|
+
unsigned int status = 0;
|
301
|
+
int ret;
|
302
|
+
struct iovec iov;
|
303
|
+
void *buf;
|
304
|
+
|
305
|
+
/* NULL pointer for base */
|
306
|
+
iov.iov_base = 0;
|
307
|
+
iov.iov_len = 4096;
|
308
|
+
status |= expect_fail(fd, IORING_REGISTER_BUFFERS, &iov, 1, -EFAULT, 0);
|
309
|
+
|
310
|
+
/* valid base, 0 length */
|
311
|
+
iov.iov_base = &buf;
|
312
|
+
iov.iov_len = 0;
|
313
|
+
status |= expect_fail(fd, IORING_REGISTER_BUFFERS, &iov, 1, -EFAULT, 0);
|
314
|
+
|
315
|
+
/* valid base, length exceeds size */
|
316
|
+
/* this requires an unampped page directly after buf */
|
317
|
+
buf = mmap(NULL, 2 * pagesize, PROT_READ|PROT_WRITE,
|
318
|
+
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
|
319
|
+
assert(buf != MAP_FAILED);
|
320
|
+
ret = munmap(buf + pagesize, pagesize);
|
321
|
+
assert(ret == 0);
|
322
|
+
iov.iov_base = buf;
|
323
|
+
iov.iov_len = 2 * pagesize;
|
324
|
+
status |= expect_fail(fd, IORING_REGISTER_BUFFERS, &iov, 1, -EFAULT, 0);
|
325
|
+
munmap(buf, pagesize);
|
326
|
+
|
327
|
+
/* huge page */
|
328
|
+
buf = mmap(NULL, 2*1024*1024, PROT_READ|PROT_WRITE,
|
329
|
+
MAP_PRIVATE | MAP_HUGETLB | MAP_HUGE_2MB | MAP_ANONYMOUS,
|
330
|
+
-1, 0);
|
331
|
+
if (buf == MAP_FAILED) {
|
332
|
+
printf("Unable to map a huge page. Try increasing "
|
333
|
+
"/proc/sys/vm/nr_hugepages by at least 1.\n");
|
334
|
+
printf("Skipping the hugepage test\n");
|
335
|
+
} else {
|
336
|
+
/*
|
337
|
+
* This should succeed, so long as RLIMIT_MEMLOCK is
|
338
|
+
* not exceeded
|
339
|
+
*/
|
340
|
+
iov.iov_base = buf;
|
341
|
+
iov.iov_len = 2*1024*1024;
|
342
|
+
ret = io_uring_register(fd, IORING_REGISTER_BUFFERS, &iov, 1);
|
343
|
+
if (ret < 0) {
|
344
|
+
if (ret == -ENOMEM)
|
345
|
+
printf("Unable to test registering of a huge "
|
346
|
+
"page. Try increasing the "
|
347
|
+
"RLIMIT_MEMLOCK resource limit by at "
|
348
|
+
"least 2MB.");
|
349
|
+
else {
|
350
|
+
fprintf(stderr, "expected success, got %d\n", ret);
|
351
|
+
status = 1;
|
352
|
+
}
|
353
|
+
} else {
|
354
|
+
ret = io_uring_register(fd, IORING_UNREGISTER_BUFFERS,
|
355
|
+
0, 0);
|
356
|
+
if (ret < 0) {
|
357
|
+
fprintf(stderr, "io_uring_unregister: %s\n",
|
358
|
+
strerror(-ret));
|
359
|
+
status = 1;
|
360
|
+
}
|
361
|
+
}
|
362
|
+
}
|
363
|
+
ret = munmap(iov.iov_base, iov.iov_len);
|
364
|
+
assert(ret == 0);
|
365
|
+
|
366
|
+
/* file-backed buffers -- not supported */
|
367
|
+
buf = map_filebacked(2*1024*1024);
|
368
|
+
if (!buf)
|
369
|
+
status = 1;
|
370
|
+
iov.iov_base = buf;
|
371
|
+
iov.iov_len = 2*1024*1024;
|
372
|
+
status |= expect_fail(fd, IORING_REGISTER_BUFFERS, &iov, 1, -EFAULT, -EOPNOTSUPP);
|
373
|
+
munmap(buf, 2*1024*1024);
|
374
|
+
|
375
|
+
/* bump up against the soft limit and make sure we get EFAULT
|
376
|
+
* or whatever we're supposed to get. NOTE: this requires
|
377
|
+
* running the test as non-root. */
|
378
|
+
if (getuid() != 0)
|
379
|
+
status |= test_memlock_exceeded(fd);
|
380
|
+
|
381
|
+
return status;
|
382
|
+
}
|
383
|
+
|
384
|
+
static int ioring_poll(struct io_uring *ring, int fd, int fixed)
|
385
|
+
{
|
386
|
+
int ret;
|
387
|
+
struct io_uring_sqe *sqe;
|
388
|
+
struct io_uring_cqe *cqe;
|
389
|
+
|
390
|
+
sqe = io_uring_get_sqe(ring);
|
391
|
+
memset(sqe, 0, sizeof(*sqe));
|
392
|
+
sqe->opcode = IORING_OP_POLL_ADD;
|
393
|
+
if (fixed)
|
394
|
+
sqe->flags = IOSQE_FIXED_FILE;
|
395
|
+
sqe->fd = fd;
|
396
|
+
sqe->poll_events = POLLIN|POLLOUT;
|
397
|
+
|
398
|
+
ret = io_uring_submit(ring);
|
399
|
+
if (ret != 1) {
|
400
|
+
fprintf(stderr, "failed to submit poll sqe: %d.\n", ret);
|
401
|
+
return 1;
|
402
|
+
}
|
403
|
+
|
404
|
+
ret = io_uring_wait_cqe(ring, &cqe);
|
405
|
+
if (ret < 0) {
|
406
|
+
fprintf(stderr, "io_uring_wait_cqe failed with %d\n", ret);
|
407
|
+
return 1;
|
408
|
+
}
|
409
|
+
ret = 0;
|
410
|
+
if (!(cqe->res & POLLOUT)) {
|
411
|
+
fprintf(stderr, "io_uring_wait_cqe: expected 0x%.8x, got 0x%.8x\n",
|
412
|
+
POLLOUT, cqe->res);
|
413
|
+
ret = 1;
|
414
|
+
}
|
415
|
+
|
416
|
+
io_uring_cqe_seen(ring, cqe);
|
417
|
+
return ret;
|
418
|
+
}
|
419
|
+
|
420
|
+
static int test_poll_ringfd(void)
|
421
|
+
{
|
422
|
+
int status = 0;
|
423
|
+
int ret;
|
424
|
+
int fd;
|
425
|
+
struct io_uring ring;
|
426
|
+
|
427
|
+
ret = io_uring_queue_init(1, &ring, 0);
|
428
|
+
if (ret) {
|
429
|
+
perror("io_uring_queue_init");
|
430
|
+
return 1;
|
431
|
+
}
|
432
|
+
fd = ring.ring_fd;
|
433
|
+
|
434
|
+
/* try polling the ring fd */
|
435
|
+
status = ioring_poll(&ring, fd, 0);
|
436
|
+
|
437
|
+
/*
|
438
|
+
* now register the ring fd, and try the poll again. This should
|
439
|
+
* fail, because the kernel does not allow registering of the
|
440
|
+
* ring_fd.
|
441
|
+
*/
|
442
|
+
status |= expect_fail(fd, IORING_REGISTER_FILES, &fd, 1, -EBADF, 0);
|
443
|
+
|
444
|
+
/* tear down queue */
|
445
|
+
io_uring_queue_exit(&ring);
|
446
|
+
|
447
|
+
return status;
|
448
|
+
}
|
449
|
+
|
450
|
+
int main(int argc, char **argv)
|
451
|
+
{
|
452
|
+
int fd, ret;
|
453
|
+
unsigned int status = 0;
|
454
|
+
struct io_uring_params p;
|
455
|
+
struct rlimit rlim;
|
456
|
+
|
457
|
+
if (argc > 1)
|
458
|
+
return T_EXIT_SKIP;
|
459
|
+
|
460
|
+
/* setup globals */
|
461
|
+
pagesize = getpagesize();
|
462
|
+
ret = getrlimit(RLIMIT_MEMLOCK, &rlim);
|
463
|
+
if (ret < 0) {
|
464
|
+
perror("getrlimit");
|
465
|
+
return T_EXIT_PASS;
|
466
|
+
}
|
467
|
+
mlock_limit = rlim.rlim_cur;
|
468
|
+
devnull = open("/dev/null", O_RDWR);
|
469
|
+
if (devnull < 0) {
|
470
|
+
perror("open /dev/null");
|
471
|
+
exit(T_EXIT_FAIL);
|
472
|
+
}
|
473
|
+
|
474
|
+
/* invalid fd */
|
475
|
+
status |= expect_fail(-1, 0, NULL, 0, -EBADF, 0);
|
476
|
+
/* valid fd that is not an io_uring fd */
|
477
|
+
status |= expect_fail(devnull, 0, NULL, 0, -EOPNOTSUPP, 0);
|
478
|
+
|
479
|
+
/* invalid opcode */
|
480
|
+
memset(&p, 0, sizeof(p));
|
481
|
+
fd = new_io_uring(1, &p);
|
482
|
+
ret = expect_fail(fd, ~0U, NULL, 0, -EINVAL, 0);
|
483
|
+
if (ret) {
|
484
|
+
/* if this succeeds, tear down the io_uring instance
|
485
|
+
* and start clean for the next test. */
|
486
|
+
close(fd);
|
487
|
+
fd = new_io_uring(1, &p);
|
488
|
+
}
|
489
|
+
|
490
|
+
/* IORING_REGISTER_BUFFERS */
|
491
|
+
status |= test_iovec_size(fd);
|
492
|
+
status |= test_iovec_nr(fd);
|
493
|
+
/* IORING_REGISTER_FILES */
|
494
|
+
status |= test_max_fds(fd);
|
495
|
+
close(fd);
|
496
|
+
/* uring poll on the uring fd */
|
497
|
+
status |= test_poll_ringfd();
|
498
|
+
|
499
|
+
if (status)
|
500
|
+
fprintf(stderr, "FAIL\n");
|
501
|
+
|
502
|
+
return status;
|
503
|
+
}
|
@@ -0,0 +1,110 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* io_uring_setup.c
|
4
|
+
*
|
5
|
+
* Description: Unit tests for the io_uring_setup system call.
|
6
|
+
*
|
7
|
+
* Copyright 2019, Red Hat, Inc.
|
8
|
+
* Author: Jeff Moyer <jmoyer@redhat.com>
|
9
|
+
*/
|
10
|
+
#include <stdio.h>
|
11
|
+
#include <fcntl.h>
|
12
|
+
#include <string.h>
|
13
|
+
#include <stdlib.h>
|
14
|
+
#include <unistd.h>
|
15
|
+
#include <errno.h>
|
16
|
+
#include <sys/sysinfo.h>
|
17
|
+
#include "liburing.h"
|
18
|
+
#include "helpers.h"
|
19
|
+
|
20
|
+
#include "../src/syscall.h"
|
21
|
+
|
22
|
+
/* bogus: setup returns a valid fd on success... expect can't predict the
|
23
|
+
fd we'll get, so this really only takes 1 parameter: error */
|
24
|
+
static int try_io_uring_setup(unsigned entries, struct io_uring_params *p,
|
25
|
+
int expect)
|
26
|
+
{
|
27
|
+
int ret;
|
28
|
+
|
29
|
+
ret = io_uring_setup(entries, p);
|
30
|
+
if (ret != expect) {
|
31
|
+
fprintf(stderr, "expected %d, got %d\n", expect, ret);
|
32
|
+
/* if we got a valid uring, close it */
|
33
|
+
if (ret > 0)
|
34
|
+
close(ret);
|
35
|
+
return 1;
|
36
|
+
}
|
37
|
+
|
38
|
+
if (expect < 0 && expect != ret) {
|
39
|
+
if (ret == -EPERM && geteuid() != 0) {
|
40
|
+
printf("Needs root, not flagging as an error\n");
|
41
|
+
return 0;
|
42
|
+
}
|
43
|
+
fprintf(stderr, "expected errno %d, got %d\n", expect, ret);
|
44
|
+
return 1;
|
45
|
+
}
|
46
|
+
|
47
|
+
return 0;
|
48
|
+
}
|
49
|
+
|
50
|
+
int main(int argc, char **argv)
|
51
|
+
{
|
52
|
+
int fd;
|
53
|
+
unsigned int status = 0;
|
54
|
+
struct io_uring_params p;
|
55
|
+
|
56
|
+
if (argc > 1)
|
57
|
+
return T_EXIT_SKIP;
|
58
|
+
|
59
|
+
memset(&p, 0, sizeof(p));
|
60
|
+
status |= try_io_uring_setup(0, &p, -EINVAL);
|
61
|
+
status |= try_io_uring_setup(1, NULL, -EFAULT);
|
62
|
+
|
63
|
+
/* resv array is non-zero */
|
64
|
+
memset(&p, 0, sizeof(p));
|
65
|
+
p.resv[0] = p.resv[1] = p.resv[2] = 1;
|
66
|
+
status |= try_io_uring_setup(1, &p, -EINVAL);
|
67
|
+
|
68
|
+
/* invalid flags */
|
69
|
+
memset(&p, 0, sizeof(p));
|
70
|
+
p.flags = ~0U;
|
71
|
+
status |= try_io_uring_setup(1, &p, -EINVAL);
|
72
|
+
|
73
|
+
/* IORING_SETUP_SQ_AFF set but not IORING_SETUP_SQPOLL */
|
74
|
+
memset(&p, 0, sizeof(p));
|
75
|
+
p.flags = IORING_SETUP_SQ_AFF;
|
76
|
+
status |= try_io_uring_setup(1, &p, -EINVAL);
|
77
|
+
|
78
|
+
/* attempt to bind to invalid cpu */
|
79
|
+
memset(&p, 0, sizeof(p));
|
80
|
+
p.flags = IORING_SETUP_SQPOLL | IORING_SETUP_SQ_AFF;
|
81
|
+
p.sq_thread_cpu = get_nprocs_conf();
|
82
|
+
status |= try_io_uring_setup(1, &p, -EINVAL);
|
83
|
+
|
84
|
+
/* I think we can limit a process to a set of cpus. I assume
|
85
|
+
* we shouldn't be able to setup a kernel thread outside of that.
|
86
|
+
* try to do that. (task->cpus_allowed) */
|
87
|
+
|
88
|
+
/* read/write on io_uring_fd */
|
89
|
+
memset(&p, 0, sizeof(p));
|
90
|
+
fd = io_uring_setup(1, &p);
|
91
|
+
if (fd < 0) {
|
92
|
+
fprintf(stderr, "io_uring_setup failed with %d, expected success\n",
|
93
|
+
-fd);
|
94
|
+
status = 1;
|
95
|
+
} else {
|
96
|
+
char buf[4096];
|
97
|
+
int ret;
|
98
|
+
ret = read(fd, buf, 4096);
|
99
|
+
if (ret >= 0) {
|
100
|
+
fprintf(stderr, "read from io_uring fd succeeded. expected fail\n");
|
101
|
+
status = 1;
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
if (!status)
|
106
|
+
return T_EXIT_PASS;
|
107
|
+
|
108
|
+
fprintf(stderr, "FAIL\n");
|
109
|
+
return T_EXIT_FAIL;
|
110
|
+
}
|
@@ -0,0 +1,85 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Description: test a mem leak with IOPOLL
|
4
|
+
*/
|
5
|
+
#include <errno.h>
|
6
|
+
#include <stdio.h>
|
7
|
+
#include <unistd.h>
|
8
|
+
#include <stdlib.h>
|
9
|
+
#include <string.h>
|
10
|
+
#include <fcntl.h>
|
11
|
+
#include <sys/types.h>
|
12
|
+
#include <sys/wait.h>
|
13
|
+
#include "helpers.h"
|
14
|
+
#include "liburing.h"
|
15
|
+
|
16
|
+
#define FILE_SIZE (128 * 1024)
|
17
|
+
#define BS 4096
|
18
|
+
#define BUFFERS (FILE_SIZE / BS)
|
19
|
+
|
20
|
+
static int do_iopoll(const char *fname)
|
21
|
+
{
|
22
|
+
struct io_uring_sqe *sqe;
|
23
|
+
struct io_uring ring;
|
24
|
+
struct iovec *iov;
|
25
|
+
int fd;
|
26
|
+
|
27
|
+
fd = open(fname, O_RDONLY | O_DIRECT);
|
28
|
+
if (fd < 0) {
|
29
|
+
perror("open");
|
30
|
+
return T_EXIT_SKIP;
|
31
|
+
}
|
32
|
+
|
33
|
+
iov = t_create_buffers(1, 4096);
|
34
|
+
|
35
|
+
t_create_ring(2, &ring, IORING_SETUP_IOPOLL);
|
36
|
+
|
37
|
+
sqe = io_uring_get_sqe(&ring);
|
38
|
+
io_uring_prep_read(sqe, fd, iov->iov_base, iov->iov_len, 0);
|
39
|
+
io_uring_submit(&ring);
|
40
|
+
|
41
|
+
close(fd);
|
42
|
+
return T_EXIT_PASS;
|
43
|
+
}
|
44
|
+
|
45
|
+
static int test(const char *fname)
|
46
|
+
{
|
47
|
+
if (fork()) {
|
48
|
+
int stat;
|
49
|
+
|
50
|
+
wait(&stat);
|
51
|
+
return WEXITSTATUS(stat);
|
52
|
+
} else {
|
53
|
+
int ret;
|
54
|
+
|
55
|
+
ret = do_iopoll(fname);
|
56
|
+
exit(ret);
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
int main(int argc, char *argv[])
|
61
|
+
{
|
62
|
+
char buf[256];
|
63
|
+
char *fname;
|
64
|
+
int i, ret;
|
65
|
+
|
66
|
+
if (argc > 1) {
|
67
|
+
fname = argv[1];
|
68
|
+
} else {
|
69
|
+
srand((unsigned)time(NULL));
|
70
|
+
snprintf(buf, sizeof(buf), ".iopoll-leak-%u-%u",
|
71
|
+
(unsigned)rand(), (unsigned)getpid());
|
72
|
+
fname = buf;
|
73
|
+
t_create_file(fname, FILE_SIZE);
|
74
|
+
}
|
75
|
+
|
76
|
+
for (i = 0; i < 16; i++) {
|
77
|
+
ret = test(fname);
|
78
|
+
if (ret == T_EXIT_SKIP || ret == T_EXIT_FAIL)
|
79
|
+
break;
|
80
|
+
}
|
81
|
+
|
82
|
+
if (fname != argv[1])
|
83
|
+
unlink(fname);
|
84
|
+
return ret;
|
85
|
+
}
|