uringmachine 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/.github/workflows/test.yml +35 -0
- data/.gitignore +59 -0
- data/.gitmodules +3 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +11 -0
- data/Rakefile +39 -0
- data/TODO.md +0 -0
- data/examples/echo_server.rb +52 -0
- data/examples/event_loop.rb +69 -0
- data/examples/fibers.rb +105 -0
- data/examples/http_server.rb +56 -0
- data/examples/http_server_multishot.rb +57 -0
- data/examples/http_server_simpler.rb +34 -0
- data/ext/um/extconf.rb +71 -0
- data/ext/um/iou.h +101 -0
- data/ext/um/op_ctx.c +138 -0
- data/ext/um/ring.c +755 -0
- data/ext/um/um.c +267 -0
- data/ext/um/um.h +97 -0
- data/ext/um/um_class.c +175 -0
- data/ext/um/um_ext.c +11 -0
- data/ext/um/um_op.c +87 -0
- data/ext/um/um_utils.c +23 -0
- data/lib/uringmachine/version.rb +3 -0
- data/lib/uringmachine.rb +8 -0
- data/test/helper.rb +70 -0
- data/test/test_iou.rb +876 -0
- data/test/test_um.rb +168 -0
- data/uringmachine.gemspec +27 -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 +412 -0
@@ -0,0 +1,91 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Description: Single depth submit+wait poll hang test
|
4
|
+
*
|
5
|
+
*/
|
6
|
+
#include <errno.h>
|
7
|
+
#include <stdio.h>
|
8
|
+
#include <unistd.h>
|
9
|
+
#include <stdlib.h>
|
10
|
+
#include <string.h>
|
11
|
+
#include <fcntl.h>
|
12
|
+
|
13
|
+
#include "helpers.h"
|
14
|
+
#include "liburing.h"
|
15
|
+
|
16
|
+
#define BLOCKS 4096
|
17
|
+
|
18
|
+
int main(int argc, char *argv[])
|
19
|
+
{
|
20
|
+
struct io_uring ring;
|
21
|
+
struct io_uring_sqe *sqe;
|
22
|
+
struct io_uring_cqe *cqe;
|
23
|
+
struct iovec iov;
|
24
|
+
char buf[32];
|
25
|
+
off_t offset;
|
26
|
+
unsigned blocks;
|
27
|
+
int ret, fd;
|
28
|
+
|
29
|
+
if (argc > 1)
|
30
|
+
return T_EXIT_SKIP;
|
31
|
+
|
32
|
+
t_posix_memalign(&iov.iov_base, 4096, 4096);
|
33
|
+
iov.iov_len = 4096;
|
34
|
+
|
35
|
+
ret = io_uring_queue_init(1, &ring, IORING_SETUP_IOPOLL);
|
36
|
+
if (ret) {
|
37
|
+
fprintf(stderr, "ring setup failed\n");
|
38
|
+
return T_EXIT_FAIL;
|
39
|
+
|
40
|
+
}
|
41
|
+
|
42
|
+
sprintf(buf, "./XXXXXX");
|
43
|
+
fd = mkostemp(buf, O_WRONLY | O_DIRECT | O_CREAT);
|
44
|
+
if (fd < 0) {
|
45
|
+
if (errno == EINVAL)
|
46
|
+
return T_EXIT_SKIP;
|
47
|
+
perror("mkostemp");
|
48
|
+
return T_EXIT_FAIL;
|
49
|
+
}
|
50
|
+
|
51
|
+
offset = 0;
|
52
|
+
blocks = BLOCKS;
|
53
|
+
do {
|
54
|
+
sqe = io_uring_get_sqe(&ring);
|
55
|
+
if (!sqe) {
|
56
|
+
fprintf(stderr, "get sqe failed\n");
|
57
|
+
goto err;
|
58
|
+
}
|
59
|
+
io_uring_prep_writev(sqe, fd, &iov, 1, offset);
|
60
|
+
ret = io_uring_submit_and_wait(&ring, 1);
|
61
|
+
if (ret < 0) {
|
62
|
+
fprintf(stderr, "submit_and_wait: %d\n", ret);
|
63
|
+
goto err;
|
64
|
+
}
|
65
|
+
ret = io_uring_wait_cqe(&ring, &cqe);
|
66
|
+
if (ret < 0) {
|
67
|
+
fprintf(stderr, "wait completion: %d\n", ret);
|
68
|
+
goto err;
|
69
|
+
}
|
70
|
+
if (cqe->res != 4096) {
|
71
|
+
if (cqe->res == -EOPNOTSUPP)
|
72
|
+
goto skipped;
|
73
|
+
goto err;
|
74
|
+
}
|
75
|
+
io_uring_cqe_seen(&ring, cqe);
|
76
|
+
offset += 4096;
|
77
|
+
} while (--blocks);
|
78
|
+
|
79
|
+
close(fd);
|
80
|
+
unlink(buf);
|
81
|
+
return T_EXIT_PASS;
|
82
|
+
err:
|
83
|
+
close(fd);
|
84
|
+
unlink(buf);
|
85
|
+
return T_EXIT_FAIL;
|
86
|
+
skipped:
|
87
|
+
fprintf(stderr, "Polling not supported in current dir, test skipped\n");
|
88
|
+
close(fd);
|
89
|
+
unlink(buf);
|
90
|
+
return T_EXIT_SKIP;
|
91
|
+
}
|
@@ -0,0 +1,94 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
#include <stdio.h>
|
3
|
+
#include <time.h>
|
4
|
+
#include <sys/time.h>
|
5
|
+
#include "liburing.h"
|
6
|
+
#include "helpers.h"
|
7
|
+
|
8
|
+
static unsigned long long mtime_since(const struct timeval *s,
|
9
|
+
const struct timeval *e)
|
10
|
+
{
|
11
|
+
long long sec, usec;
|
12
|
+
|
13
|
+
sec = e->tv_sec - s->tv_sec;
|
14
|
+
usec = (e->tv_usec - s->tv_usec);
|
15
|
+
if (sec > 0 && usec < 0) {
|
16
|
+
sec--;
|
17
|
+
usec += 1000000;
|
18
|
+
}
|
19
|
+
|
20
|
+
sec *= 1000;
|
21
|
+
usec /= 1000;
|
22
|
+
return sec + usec;
|
23
|
+
}
|
24
|
+
|
25
|
+
static unsigned long long mtime_since_now(struct timeval *tv)
|
26
|
+
{
|
27
|
+
struct timeval end;
|
28
|
+
|
29
|
+
gettimeofday(&end, NULL);
|
30
|
+
return mtime_since(tv, &end);
|
31
|
+
}
|
32
|
+
|
33
|
+
int main(int argc, char *argv[])
|
34
|
+
{
|
35
|
+
struct __kernel_timespec ts1, ts2;
|
36
|
+
struct io_uring_cqe *cqe;
|
37
|
+
struct io_uring_sqe *sqe;
|
38
|
+
struct io_uring ring;
|
39
|
+
unsigned long msec;
|
40
|
+
struct timeval tv;
|
41
|
+
int ret;
|
42
|
+
|
43
|
+
if (argc > 1)
|
44
|
+
return T_EXIT_SKIP;
|
45
|
+
|
46
|
+
ret = io_uring_queue_init(32, &ring, 0);
|
47
|
+
if (ret) {
|
48
|
+
fprintf(stderr, "io_uring_queue_init=%d\n", ret);
|
49
|
+
return T_EXIT_FAIL;
|
50
|
+
}
|
51
|
+
|
52
|
+
sqe = io_uring_get_sqe(&ring);
|
53
|
+
io_uring_prep_nop(sqe);
|
54
|
+
ret = io_uring_submit(&ring);
|
55
|
+
if (ret != 1) {
|
56
|
+
fprintf(stderr, "io_uring_submit1=%d\n", ret);
|
57
|
+
return T_EXIT_FAIL;
|
58
|
+
}
|
59
|
+
|
60
|
+
|
61
|
+
ts1.tv_sec = 5,
|
62
|
+
ts1.tv_nsec = 0;
|
63
|
+
ret = io_uring_wait_cqe_timeout(&ring, &cqe, &ts1);
|
64
|
+
if (ret) {
|
65
|
+
fprintf(stderr, "io_uring_wait_cqe_timeout=%d\n", ret);
|
66
|
+
return T_EXIT_FAIL;
|
67
|
+
}
|
68
|
+
io_uring_cqe_seen(&ring, cqe);
|
69
|
+
gettimeofday(&tv, NULL);
|
70
|
+
|
71
|
+
ts2.tv_sec = 1;
|
72
|
+
ts2.tv_nsec = 0;
|
73
|
+
sqe = io_uring_get_sqe(&ring);
|
74
|
+
io_uring_prep_timeout(sqe, &ts2, 0, 0);
|
75
|
+
sqe->user_data = 89;
|
76
|
+
ret = io_uring_submit(&ring);
|
77
|
+
if (ret != 1) {
|
78
|
+
fprintf(stderr, "io_uring_submit2=%d\n", ret);
|
79
|
+
return T_EXIT_FAIL;
|
80
|
+
}
|
81
|
+
|
82
|
+
io_uring_wait_cqe(&ring, &cqe);
|
83
|
+
io_uring_cqe_seen(&ring, cqe);
|
84
|
+
msec = mtime_since_now(&tv);
|
85
|
+
if (msec >= 900 && msec <= 1100) {
|
86
|
+
io_uring_queue_exit(&ring);
|
87
|
+
return T_EXIT_PASS;
|
88
|
+
}
|
89
|
+
|
90
|
+
fprintf(stderr, "%s: Timeout seems wonky (got %lu)\n", __FUNCTION__,
|
91
|
+
msec);
|
92
|
+
io_uring_queue_exit(&ring);
|
93
|
+
return T_EXIT_FAIL;
|
94
|
+
}
|
@@ -0,0 +1,107 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
#include <errno.h>
|
3
|
+
#include <stdio.h>
|
4
|
+
#include <unistd.h>
|
5
|
+
#include <stdlib.h>
|
6
|
+
#include <string.h>
|
7
|
+
#include <fcntl.h>
|
8
|
+
|
9
|
+
#include "liburing.h"
|
10
|
+
#include "helpers.h"
|
11
|
+
|
12
|
+
static int register_file(struct io_uring *ring)
|
13
|
+
{
|
14
|
+
char buf[32];
|
15
|
+
int ret, fd;
|
16
|
+
|
17
|
+
sprintf(buf, "./XXXXXX");
|
18
|
+
fd = mkstemp(buf);
|
19
|
+
if (fd < 0) {
|
20
|
+
perror("open");
|
21
|
+
return 1;
|
22
|
+
}
|
23
|
+
|
24
|
+
ret = io_uring_register_files(ring, &fd, 1);
|
25
|
+
if (ret) {
|
26
|
+
fprintf(stderr, "file register %d\n", ret);
|
27
|
+
return 1;
|
28
|
+
}
|
29
|
+
|
30
|
+
ret = io_uring_unregister_files(ring);
|
31
|
+
if (ret) {
|
32
|
+
fprintf(stderr, "file register %d\n", ret);
|
33
|
+
return 1;
|
34
|
+
}
|
35
|
+
|
36
|
+
unlink(buf);
|
37
|
+
close(fd);
|
38
|
+
return 0;
|
39
|
+
}
|
40
|
+
|
41
|
+
static int test_single_fsync(struct io_uring *ring)
|
42
|
+
{
|
43
|
+
struct io_uring_cqe *cqe;
|
44
|
+
struct io_uring_sqe *sqe;
|
45
|
+
char buf[32];
|
46
|
+
int fd, ret;
|
47
|
+
|
48
|
+
sprintf(buf, "./XXXXXX");
|
49
|
+
fd = mkstemp(buf);
|
50
|
+
if (fd < 0) {
|
51
|
+
perror("open");
|
52
|
+
return 1;
|
53
|
+
}
|
54
|
+
|
55
|
+
sqe = io_uring_get_sqe(ring);
|
56
|
+
if (!sqe) {
|
57
|
+
printf("get sqe failed\n");
|
58
|
+
goto err;
|
59
|
+
}
|
60
|
+
|
61
|
+
io_uring_prep_fsync(sqe, fd, 0);
|
62
|
+
|
63
|
+
ret = io_uring_submit(ring);
|
64
|
+
if (ret <= 0) {
|
65
|
+
printf("sqe submit failed: %d\n", ret);
|
66
|
+
goto err;
|
67
|
+
}
|
68
|
+
|
69
|
+
ret = io_uring_wait_cqe(ring, &cqe);
|
70
|
+
if (ret < 0) {
|
71
|
+
printf("wait completion %d\n", ret);
|
72
|
+
goto err;
|
73
|
+
}
|
74
|
+
|
75
|
+
io_uring_cqe_seen(ring, cqe);
|
76
|
+
unlink(buf);
|
77
|
+
return 0;
|
78
|
+
err:
|
79
|
+
unlink(buf);
|
80
|
+
return 1;
|
81
|
+
}
|
82
|
+
|
83
|
+
int main(int argc, char *argv[])
|
84
|
+
{
|
85
|
+
struct io_uring ring;
|
86
|
+
int ret;
|
87
|
+
|
88
|
+
if (argc > 1)
|
89
|
+
return T_EXIT_SKIP;
|
90
|
+
|
91
|
+
ret = io_uring_queue_init(8, &ring, 0);
|
92
|
+
if (ret) {
|
93
|
+
printf("ring setup failed\n");
|
94
|
+
return T_EXIT_FAIL;
|
95
|
+
}
|
96
|
+
|
97
|
+
ret = register_file(&ring);
|
98
|
+
if (ret)
|
99
|
+
return ret;
|
100
|
+
ret = test_single_fsync(&ring);
|
101
|
+
if (ret) {
|
102
|
+
printf("test_single_fsync failed\n");
|
103
|
+
return ret;
|
104
|
+
}
|
105
|
+
|
106
|
+
return T_EXIT_PASS;
|
107
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
// autogenerated by syzkaller (https://github.com/google/syzkaller)
|
3
|
+
|
4
|
+
#include <endian.h>
|
5
|
+
#include <stdint.h>
|
6
|
+
#include <stdio.h>
|
7
|
+
#include <stdlib.h>
|
8
|
+
#include <string.h>
|
9
|
+
#include <sys/types.h>
|
10
|
+
#include <sys/mman.h>
|
11
|
+
#include <unistd.h>
|
12
|
+
|
13
|
+
#include "liburing.h"
|
14
|
+
#include "helpers.h"
|
15
|
+
#include "../src/syscall.h"
|
16
|
+
|
17
|
+
int main(int argc, char *argv[])
|
18
|
+
{
|
19
|
+
if (argc > 1)
|
20
|
+
return T_EXIT_SKIP;
|
21
|
+
|
22
|
+
mmap((void *) 0x20000000, 0x1000000, 3, MAP_ANON|MAP_PRIVATE, -1, 0);
|
23
|
+
|
24
|
+
*(uint32_t*)0x20000000 = 0;
|
25
|
+
*(uint32_t*)0x20000004 = 0;
|
26
|
+
*(uint32_t*)0x20000008 = 6;
|
27
|
+
*(uint32_t*)0x2000000c = 0;
|
28
|
+
*(uint32_t*)0x20000010 = 0x3af;
|
29
|
+
*(uint32_t*)0x20000014 = 0;
|
30
|
+
*(uint32_t*)0x20000018 = 0;
|
31
|
+
*(uint32_t*)0x2000001c = 0;
|
32
|
+
*(uint32_t*)0x20000020 = 0;
|
33
|
+
*(uint32_t*)0x20000024 = 0;
|
34
|
+
*(uint32_t*)0x20000028 = 0;
|
35
|
+
*(uint32_t*)0x2000002c = 0;
|
36
|
+
*(uint32_t*)0x20000030 = 0;
|
37
|
+
*(uint32_t*)0x20000034 = 0;
|
38
|
+
*(uint32_t*)0x20000038 = 0;
|
39
|
+
*(uint32_t*)0x2000003c = 0;
|
40
|
+
*(uint32_t*)0x20000040 = 0;
|
41
|
+
*(uint32_t*)0x20000044 = 0;
|
42
|
+
*(uint64_t*)0x20000048 = 0;
|
43
|
+
*(uint32_t*)0x20000050 = 0;
|
44
|
+
*(uint32_t*)0x20000054 = 0;
|
45
|
+
*(uint32_t*)0x20000058 = 0;
|
46
|
+
*(uint32_t*)0x2000005c = 0;
|
47
|
+
*(uint32_t*)0x20000060 = 0;
|
48
|
+
*(uint32_t*)0x20000064 = 0;
|
49
|
+
*(uint32_t*)0x20000068 = 0;
|
50
|
+
*(uint32_t*)0x2000006c = 0;
|
51
|
+
*(uint64_t*)0x20000070 = 0;
|
52
|
+
__sys_io_uring_setup(0x7a6, (struct io_uring_params *) 0x20000000UL);
|
53
|
+
return T_EXIT_PASS;
|
54
|
+
}
|
@@ -0,0 +1,297 @@
|
|
1
|
+
prefix ?= /usr
|
2
|
+
datadir ?= $(prefix)/share
|
3
|
+
|
4
|
+
INSTALL=install
|
5
|
+
|
6
|
+
ifneq ($(MAKECMDGOALS),clean)
|
7
|
+
include ../config-host.mak
|
8
|
+
endif
|
9
|
+
|
10
|
+
CPPFLAGS ?=
|
11
|
+
|
12
|
+
override CPPFLAGS += \
|
13
|
+
-D_GNU_SOURCE \
|
14
|
+
-D__SANE_USERSPACE_TYPES__ \
|
15
|
+
-I../src/include/ \
|
16
|
+
-include ../config-host.h \
|
17
|
+
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
|
18
|
+
|
19
|
+
CFLAGS ?= -g -O3 -Wall -Wextra
|
20
|
+
XCFLAGS = -Wno-unused-parameter -Wno-sign-compare
|
21
|
+
|
22
|
+
ifdef CONFIG_HAVE_STRINGOP_OVERFLOW
|
23
|
+
XCFLAGS += -Wstringop-overflow=0
|
24
|
+
endif
|
25
|
+
|
26
|
+
ifdef CONFIG_HAVE_ARRAY_BOUNDS
|
27
|
+
XCFLAGS += -Warray-bounds=0
|
28
|
+
endif
|
29
|
+
|
30
|
+
CXXFLAGS ?= $(CFLAGS)
|
31
|
+
override CFLAGS += $(XCFLAGS) -DLIBURING_BUILD_TEST
|
32
|
+
override CXXFLAGS += $(XCFLAGS) -std=c++11 -DLIBURING_BUILD_TEST
|
33
|
+
|
34
|
+
LDFLAGS ?=
|
35
|
+
override LDFLAGS += -L../src/ -luring -lpthread
|
36
|
+
|
37
|
+
# Please keep this list sorted alphabetically.
|
38
|
+
test_srcs := \
|
39
|
+
232c93d07b74.c \
|
40
|
+
35fa71a030ca.c \
|
41
|
+
500f9fbadef8.c \
|
42
|
+
7ad0e4b2f83c.c \
|
43
|
+
8a9973408177.c \
|
44
|
+
917257daa0fe.c \
|
45
|
+
a0908ae19763.c \
|
46
|
+
a4c0b3decb33.c \
|
47
|
+
accept.c \
|
48
|
+
accept-link.c \
|
49
|
+
accept-non-empty.c \
|
50
|
+
accept-reuse.c \
|
51
|
+
accept-test.c \
|
52
|
+
across-fork.c \
|
53
|
+
b19062a56726.c \
|
54
|
+
b5837bd5311d.c \
|
55
|
+
bind-listen.c \
|
56
|
+
buf-ring.c \
|
57
|
+
buf-ring-nommap.c \
|
58
|
+
buf-ring-put.c \
|
59
|
+
ce593a6c480a.c \
|
60
|
+
close-opath.c \
|
61
|
+
connect.c \
|
62
|
+
connect-rep.c \
|
63
|
+
coredump.c \
|
64
|
+
cq-full.c \
|
65
|
+
cq-overflow.c \
|
66
|
+
cq-peek-batch.c \
|
67
|
+
cq-ready.c \
|
68
|
+
cq-size.c \
|
69
|
+
d4ae271dfaae.c \
|
70
|
+
d77a67ed5f27.c \
|
71
|
+
defer.c \
|
72
|
+
defer-taskrun.c \
|
73
|
+
defer-tw-timeout.c \
|
74
|
+
double-poll-crash.c \
|
75
|
+
drop-submit.c \
|
76
|
+
eeed8b54e0df.c \
|
77
|
+
empty-eownerdead.c \
|
78
|
+
eploop.c \
|
79
|
+
eventfd.c \
|
80
|
+
eventfd-disable.c \
|
81
|
+
eventfd-reg.c \
|
82
|
+
eventfd-ring.c \
|
83
|
+
evloop.c \
|
84
|
+
exec-target.c \
|
85
|
+
exit-no-cleanup.c \
|
86
|
+
fadvise.c \
|
87
|
+
fallocate.c \
|
88
|
+
fc2a85cb02ef.c \
|
89
|
+
fd-install.c \
|
90
|
+
fd-pass.c \
|
91
|
+
fdinfo.c \
|
92
|
+
file-register.c \
|
93
|
+
files-exit-hang-poll.c \
|
94
|
+
files-exit-hang-timeout.c \
|
95
|
+
file-update.c \
|
96
|
+
file-verify.c \
|
97
|
+
fixed-buf-iter.c \
|
98
|
+
fixed-buf-merge.c \
|
99
|
+
fixed-hugepage.c \
|
100
|
+
fixed-link.c \
|
101
|
+
fixed-reuse.c \
|
102
|
+
fpos.c \
|
103
|
+
fsnotify.c \
|
104
|
+
fsync.c \
|
105
|
+
futex.c \
|
106
|
+
hardlink.c \
|
107
|
+
ignore-single-mmap.c \
|
108
|
+
init-mem.c \
|
109
|
+
io-cancel.c \
|
110
|
+
iopoll.c \
|
111
|
+
iopoll-leak.c \
|
112
|
+
iopoll-overflow.c \
|
113
|
+
io_uring_enter.c \
|
114
|
+
io_uring_passthrough.c \
|
115
|
+
io_uring_register.c \
|
116
|
+
io_uring_setup.c \
|
117
|
+
lfs-openat.c \
|
118
|
+
lfs-openat-write.c \
|
119
|
+
link.c \
|
120
|
+
link_drain.c \
|
121
|
+
link-timeout.c \
|
122
|
+
madvise.c \
|
123
|
+
min-timeout.c \
|
124
|
+
min-timeout-wait.c \
|
125
|
+
mkdir.c \
|
126
|
+
msg-ring.c \
|
127
|
+
msg-ring-fd.c \
|
128
|
+
msg-ring-flags.c \
|
129
|
+
msg-ring-overflow.c \
|
130
|
+
multicqes_drain.c \
|
131
|
+
napi-test.c \
|
132
|
+
no-mmap-inval.c \
|
133
|
+
nolibc.c \
|
134
|
+
nop-all-sizes.c \
|
135
|
+
nop.c \
|
136
|
+
ooo-file-unreg.c \
|
137
|
+
openat2.c \
|
138
|
+
open-close.c \
|
139
|
+
open-direct-link.c \
|
140
|
+
open-direct-pick.c \
|
141
|
+
personality.c \
|
142
|
+
pipe-bug.c \
|
143
|
+
pipe-eof.c \
|
144
|
+
pipe-reuse.c \
|
145
|
+
poll.c \
|
146
|
+
poll-cancel.c \
|
147
|
+
poll-cancel-all.c \
|
148
|
+
poll-cancel-ton.c \
|
149
|
+
poll-link.c \
|
150
|
+
poll-many.c \
|
151
|
+
poll-mshot-overflow.c \
|
152
|
+
poll-mshot-update.c \
|
153
|
+
poll-race.c \
|
154
|
+
poll-race-mshot.c \
|
155
|
+
poll-ring.c \
|
156
|
+
poll-v-poll.c \
|
157
|
+
probe.c \
|
158
|
+
read-before-exit.c \
|
159
|
+
read-mshot.c \
|
160
|
+
read-mshot-empty.c \
|
161
|
+
read-write.c \
|
162
|
+
recv-msgall.c \
|
163
|
+
recv-msgall-stream.c \
|
164
|
+
recv-multishot.c \
|
165
|
+
reg-fd-only.c \
|
166
|
+
reg-hint.c \
|
167
|
+
reg-reg-ring.c \
|
168
|
+
regbuf-merge.c \
|
169
|
+
register-restrictions.c \
|
170
|
+
rename.c \
|
171
|
+
ringbuf-read.c \
|
172
|
+
ringbuf-status.c \
|
173
|
+
ring-leak2.c \
|
174
|
+
ring-leak.c \
|
175
|
+
rsrc_tags.c \
|
176
|
+
rw_merge_test.c \
|
177
|
+
self.c \
|
178
|
+
recvsend_bundle.c \
|
179
|
+
send_recv.c \
|
180
|
+
send_recvmsg.c \
|
181
|
+
send-zerocopy.c \
|
182
|
+
shared-wq.c \
|
183
|
+
short-read.c \
|
184
|
+
shutdown.c \
|
185
|
+
sigfd-deadlock.c \
|
186
|
+
single-issuer.c \
|
187
|
+
skip-cqe.c \
|
188
|
+
socket.c \
|
189
|
+
socket-io-cmd.c \
|
190
|
+
socket-getsetsock-cmd.c \
|
191
|
+
socket-rw.c \
|
192
|
+
socket-rw-eagain.c \
|
193
|
+
socket-rw-offset.c \
|
194
|
+
splice.c \
|
195
|
+
sq-full.c \
|
196
|
+
sq-full-cpp.cc \
|
197
|
+
sqpoll-disable-exit.c \
|
198
|
+
sqpoll-exec.c \
|
199
|
+
sq-poll-dup.c \
|
200
|
+
sqpoll-exit-hang.c \
|
201
|
+
sq-poll-kthread.c \
|
202
|
+
sq-poll-share.c \
|
203
|
+
sqpoll-sleep.c \
|
204
|
+
sq-space_left.c \
|
205
|
+
stdout.c \
|
206
|
+
submit-and-wait.c \
|
207
|
+
submit-link-fail.c \
|
208
|
+
submit-reuse.c \
|
209
|
+
symlink.c \
|
210
|
+
sync-cancel.c \
|
211
|
+
teardowns.c \
|
212
|
+
thread-exit.c \
|
213
|
+
timeout.c \
|
214
|
+
timeout-new.c \
|
215
|
+
truncate.c \
|
216
|
+
tty-write-dpoll.c \
|
217
|
+
unlink.c \
|
218
|
+
version.c \
|
219
|
+
waitid.c \
|
220
|
+
wait-timeout.c \
|
221
|
+
wakeup-hang.c \
|
222
|
+
wq-aff.c \
|
223
|
+
xattr.c \
|
224
|
+
# EOL
|
225
|
+
|
226
|
+
all_targets :=
|
227
|
+
include ../Makefile.quiet
|
228
|
+
|
229
|
+
ifdef CONFIG_HAVE_STATX
|
230
|
+
test_srcs += statx.c
|
231
|
+
else ifdef CONFIG_HAVE_GLIBC_STATX
|
232
|
+
test_srcs += statx.c
|
233
|
+
endif
|
234
|
+
all_targets += statx.t
|
235
|
+
|
236
|
+
ifdef CONFIG_HAVE_CXX
|
237
|
+
test_srcs += sq-full-cpp.cc
|
238
|
+
endif
|
239
|
+
all_targets += sq-full-cpp.t
|
240
|
+
|
241
|
+
|
242
|
+
test_targets := $(patsubst %.c,%,$(test_srcs))
|
243
|
+
test_targets := $(patsubst %.cc,%,$(test_targets))
|
244
|
+
run_test_targets := $(patsubst %,%.run_test,$(test_targets))
|
245
|
+
test_targets := $(patsubst %,%.t,$(test_targets))
|
246
|
+
all_targets += $(test_targets)
|
247
|
+
helpers = helpers.o
|
248
|
+
|
249
|
+
all: $(test_targets)
|
250
|
+
|
251
|
+
helpers.o: helpers.c
|
252
|
+
$(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ -c $<
|
253
|
+
|
254
|
+
LIBURING := $(shell if [ -e ../src/liburing.a ]; then echo ../src/liburing.a; fi)
|
255
|
+
|
256
|
+
%.t: %.c $(helpers) helpers.h $(LIBURING)
|
257
|
+
$(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(helpers) $(LDFLAGS)
|
258
|
+
|
259
|
+
#
|
260
|
+
# Clang++ is not happy with -Wmissing-prototypes:
|
261
|
+
#
|
262
|
+
# cc1plus: warning: command-line option '-Wmissing-prototypes' \
|
263
|
+
# is valid for C/ObjC but not for C++
|
264
|
+
#
|
265
|
+
%.t: %.cc $(helpers) helpers.h $(LIBURING)
|
266
|
+
$(QUIET_CXX)$(CXX) \
|
267
|
+
$(patsubst -Wmissing-prototypes,,$(CPPFLAGS)) \
|
268
|
+
$(patsubst -Wmissing-prototypes,,$(CXXFLAGS)) \
|
269
|
+
-o $@ $< $(helpers) $(LDFLAGS)
|
270
|
+
|
271
|
+
|
272
|
+
install: $(test_targets) runtests.sh runtests-loop.sh
|
273
|
+
$(INSTALL) -D -d -m 755 $(datadir)/liburing-test/
|
274
|
+
$(INSTALL) -D -m 755 $(test_targets) $(datadir)/liburing-test/
|
275
|
+
$(INSTALL) -D -m 755 runtests.sh $(datadir)/liburing-test/
|
276
|
+
$(INSTALL) -D -m 755 runtests-loop.sh $(datadir)/liburing-test/
|
277
|
+
|
278
|
+
uninstall:
|
279
|
+
@rm -rf $(datadir)/liburing-test/
|
280
|
+
|
281
|
+
clean:
|
282
|
+
@rm -f $(all_targets) helpers.o output/*
|
283
|
+
@rm -rf output/
|
284
|
+
|
285
|
+
runtests: all
|
286
|
+
@./runtests.sh $(test_targets)
|
287
|
+
|
288
|
+
runtests-loop: all
|
289
|
+
@./runtests-loop.sh $(test_targets)
|
290
|
+
|
291
|
+
%.run_test: %.t
|
292
|
+
@./runtests-quiet.sh $<
|
293
|
+
|
294
|
+
runtests-parallel: $(run_test_targets)
|
295
|
+
@echo "All tests passed"
|
296
|
+
|
297
|
+
.PHONY: all install clean runtests runtests-loop runtests-parallel
|
@@ -0,0 +1,59 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
// autogenerated by syzkaller (https://github.com/google/syzkaller)
|
3
|
+
|
4
|
+
#include <endian.h>
|
5
|
+
#include <stdint.h>
|
6
|
+
#include <stdio.h>
|
7
|
+
#include <stdlib.h>
|
8
|
+
#include <string.h>
|
9
|
+
#include <sys/types.h>
|
10
|
+
#include <sys/mman.h>
|
11
|
+
#include <unistd.h>
|
12
|
+
|
13
|
+
#include "liburing.h"
|
14
|
+
#include "helpers.h"
|
15
|
+
#include "../src/syscall.h"
|
16
|
+
|
17
|
+
static uint64_t r[1] = {0xffffffffffffffff};
|
18
|
+
|
19
|
+
int main(int argc, char *argv[])
|
20
|
+
{
|
21
|
+
if (argc > 1)
|
22
|
+
return T_EXIT_SKIP;
|
23
|
+
mmap((void *) 0x20000000, 0x1000000, 3, MAP_ANON|MAP_PRIVATE, -1, 0);
|
24
|
+
intptr_t res = 0;
|
25
|
+
*(uint32_t*)0x20000080 = 0;
|
26
|
+
*(uint32_t*)0x20000084 = 0;
|
27
|
+
*(uint32_t*)0x20000088 = 0;
|
28
|
+
*(uint32_t*)0x2000008c = 0;
|
29
|
+
*(uint32_t*)0x20000090 = 0;
|
30
|
+
*(uint32_t*)0x20000094 = 0;
|
31
|
+
*(uint32_t*)0x20000098 = 0;
|
32
|
+
*(uint32_t*)0x2000009c = 0;
|
33
|
+
*(uint32_t*)0x200000a0 = 0;
|
34
|
+
*(uint32_t*)0x200000a4 = 0;
|
35
|
+
*(uint32_t*)0x200000a8 = 0;
|
36
|
+
*(uint32_t*)0x200000ac = 0;
|
37
|
+
*(uint32_t*)0x200000b0 = 0;
|
38
|
+
*(uint32_t*)0x200000b4 = 0;
|
39
|
+
*(uint32_t*)0x200000b8 = 0;
|
40
|
+
*(uint32_t*)0x200000bc = 0;
|
41
|
+
*(uint32_t*)0x200000c0 = 0;
|
42
|
+
*(uint32_t*)0x200000c4 = 0;
|
43
|
+
*(uint64_t*)0x200000c8 = 0;
|
44
|
+
*(uint32_t*)0x200000d0 = 0;
|
45
|
+
*(uint32_t*)0x200000d4 = 0;
|
46
|
+
*(uint32_t*)0x200000d8 = 0;
|
47
|
+
*(uint32_t*)0x200000dc = 0;
|
48
|
+
*(uint32_t*)0x200000e0 = 0;
|
49
|
+
*(uint32_t*)0x200000e4 = 0;
|
50
|
+
*(uint32_t*)0x200000e8 = 0;
|
51
|
+
*(uint32_t*)0x200000ec = 0;
|
52
|
+
*(uint64_t*)0x200000f0 = 0;
|
53
|
+
res = __sys_io_uring_setup(0xa4, (struct io_uring_params *) 0x20000080);
|
54
|
+
if (res != -1)
|
55
|
+
r[0] = res;
|
56
|
+
*(uint32_t*)0x20000280 = -1;
|
57
|
+
__sys_io_uring_register(r[0], 2, (const void *) 0x20000280, 1);
|
58
|
+
return T_EXIT_PASS;
|
59
|
+
}
|