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,62 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Test liburing nolibc functionality.
|
4
|
+
*
|
5
|
+
* Currently, supported architectures are:
|
6
|
+
* 1) x86
|
7
|
+
* 2) x86-64
|
8
|
+
* 3) aarch64
|
9
|
+
* 4) riscv64
|
10
|
+
*
|
11
|
+
*/
|
12
|
+
#include "helpers.h"
|
13
|
+
|
14
|
+
#if !defined(__x86_64__) && !defined(__i386__) && !defined(__aarch64__) && (!defined(__riscv) && __riscv_xlen != 64)
|
15
|
+
|
16
|
+
|
17
|
+
/*
|
18
|
+
* This arch doesn't support nolibc.
|
19
|
+
*/
|
20
|
+
int main(void)
|
21
|
+
{
|
22
|
+
return T_EXIT_SKIP;
|
23
|
+
}
|
24
|
+
|
25
|
+
#else /* #if !defined(__x86_64__) && !defined(__i386__) && !defined(__aarch64__) && (!defined(__riscv) && __riscv_xlen != 64) */
|
26
|
+
|
27
|
+
#ifndef CONFIG_NOLIBC
|
28
|
+
#define CONFIG_NOLIBC
|
29
|
+
#endif
|
30
|
+
|
31
|
+
#include <stdio.h>
|
32
|
+
#include <unistd.h>
|
33
|
+
#include "../src/lib.h"
|
34
|
+
|
35
|
+
static int test_get_page_size(void)
|
36
|
+
{
|
37
|
+
long a, b;
|
38
|
+
|
39
|
+
a = sysconf(_SC_PAGESIZE);
|
40
|
+
b = get_page_size();
|
41
|
+
if (a != b) {
|
42
|
+
fprintf(stderr, "get_page_size() fails, %ld != %ld", a, b);
|
43
|
+
return -1;
|
44
|
+
}
|
45
|
+
return 0;
|
46
|
+
}
|
47
|
+
|
48
|
+
int main(int argc, char *argv[])
|
49
|
+
{
|
50
|
+
int ret;
|
51
|
+
|
52
|
+
if (argc > 1)
|
53
|
+
return T_EXIT_SKIP;
|
54
|
+
|
55
|
+
ret = test_get_page_size();
|
56
|
+
if (ret)
|
57
|
+
return T_EXIT_FAIL;
|
58
|
+
|
59
|
+
return T_EXIT_PASS;
|
60
|
+
}
|
61
|
+
|
62
|
+
#endif /* #if !defined(__x86_64__) && !defined(__i386__) && !defined(__aarch64__) && (!defined(__riscv) && __riscv_xlen != 64) */
|
@@ -0,0 +1,99 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Description: exercise full filling of SQ and CQ ring
|
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 "liburing.h"
|
14
|
+
|
15
|
+
#define MAX_ENTRIES 32768
|
16
|
+
|
17
|
+
static int fill_nops(struct io_uring *ring)
|
18
|
+
{
|
19
|
+
struct io_uring_sqe *sqe;
|
20
|
+
int filled = 0;
|
21
|
+
|
22
|
+
do {
|
23
|
+
sqe = io_uring_get_sqe(ring);
|
24
|
+
if (!sqe)
|
25
|
+
break;
|
26
|
+
|
27
|
+
io_uring_prep_nop(sqe);
|
28
|
+
filled++;
|
29
|
+
} while (1);
|
30
|
+
|
31
|
+
return filled;
|
32
|
+
}
|
33
|
+
|
34
|
+
static int test_nops(struct io_uring *ring)
|
35
|
+
{
|
36
|
+
struct io_uring_cqe *cqe;
|
37
|
+
int ret, nr, total = 0, i;
|
38
|
+
|
39
|
+
nr = fill_nops(ring);
|
40
|
+
|
41
|
+
ret = io_uring_submit(ring);
|
42
|
+
if (ret != nr) {
|
43
|
+
fprintf(stderr, "submit %d, wanted %d\n", ret, nr);
|
44
|
+
goto err;
|
45
|
+
}
|
46
|
+
total += ret;
|
47
|
+
|
48
|
+
nr = fill_nops(ring);
|
49
|
+
|
50
|
+
ret = io_uring_submit(ring);
|
51
|
+
if (ret != nr) {
|
52
|
+
fprintf(stderr, "submit %d, wanted %d\n", ret, nr);
|
53
|
+
goto err;
|
54
|
+
}
|
55
|
+
total += ret;
|
56
|
+
|
57
|
+
for (i = 0; i < total; i++) {
|
58
|
+
ret = io_uring_wait_cqe(ring, &cqe);
|
59
|
+
if (ret < 0) {
|
60
|
+
fprintf(stderr, "wait completion %d\n", ret);
|
61
|
+
goto err;
|
62
|
+
}
|
63
|
+
|
64
|
+
io_uring_cqe_seen(ring, cqe);
|
65
|
+
}
|
66
|
+
return 0;
|
67
|
+
err:
|
68
|
+
return 1;
|
69
|
+
}
|
70
|
+
|
71
|
+
int main(int argc, char *argv[])
|
72
|
+
{
|
73
|
+
struct io_uring ring;
|
74
|
+
int ret, depth;
|
75
|
+
|
76
|
+
if (argc > 1)
|
77
|
+
return 0;
|
78
|
+
|
79
|
+
depth = 1;
|
80
|
+
while (depth <= MAX_ENTRIES) {
|
81
|
+
ret = io_uring_queue_init(depth, &ring, 0);
|
82
|
+
if (ret) {
|
83
|
+
if (ret == -ENOMEM)
|
84
|
+
break;
|
85
|
+
fprintf(stderr, "ring setup failed: %d\n", ret);
|
86
|
+
return 1;
|
87
|
+
}
|
88
|
+
|
89
|
+
ret = test_nops(&ring);
|
90
|
+
if (ret) {
|
91
|
+
fprintf(stderr, "test_single_nop failed\n");
|
92
|
+
return ret;
|
93
|
+
}
|
94
|
+
depth <<= 1;
|
95
|
+
io_uring_queue_exit(&ring);
|
96
|
+
}
|
97
|
+
|
98
|
+
return 0;
|
99
|
+
}
|
@@ -0,0 +1,177 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Description: run various nop tests
|
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 "liburing.h"
|
14
|
+
#include "test.h"
|
15
|
+
|
16
|
+
static int seq;
|
17
|
+
|
18
|
+
static int test_single_nop(struct io_uring *ring, unsigned req_flags)
|
19
|
+
{
|
20
|
+
struct io_uring_cqe *cqe;
|
21
|
+
struct io_uring_sqe *sqe;
|
22
|
+
int ret;
|
23
|
+
bool cqe32 = (ring->flags & IORING_SETUP_CQE32);
|
24
|
+
|
25
|
+
sqe = io_uring_get_sqe(ring);
|
26
|
+
if (!sqe) {
|
27
|
+
fprintf(stderr, "get sqe failed\n");
|
28
|
+
goto err;
|
29
|
+
}
|
30
|
+
|
31
|
+
io_uring_prep_nop(sqe);
|
32
|
+
sqe->user_data = ++seq;
|
33
|
+
sqe->flags |= req_flags;
|
34
|
+
|
35
|
+
ret = io_uring_submit(ring);
|
36
|
+
if (ret <= 0) {
|
37
|
+
fprintf(stderr, "sqe submit failed: %d\n", ret);
|
38
|
+
goto err;
|
39
|
+
}
|
40
|
+
|
41
|
+
ret = io_uring_wait_cqe(ring, &cqe);
|
42
|
+
if (ret < 0) {
|
43
|
+
fprintf(stderr, "wait completion %d\n", ret);
|
44
|
+
goto err;
|
45
|
+
}
|
46
|
+
if (!cqe->user_data) {
|
47
|
+
fprintf(stderr, "Unexpected 0 user_data\n");
|
48
|
+
goto err;
|
49
|
+
}
|
50
|
+
if (cqe32) {
|
51
|
+
if (cqe->big_cqe[0] != 0) {
|
52
|
+
fprintf(stderr, "Unexpected extra1\n");
|
53
|
+
goto err;
|
54
|
+
|
55
|
+
}
|
56
|
+
if (cqe->big_cqe[1] != 0) {
|
57
|
+
fprintf(stderr, "Unexpected extra2\n");
|
58
|
+
goto err;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
io_uring_cqe_seen(ring, cqe);
|
62
|
+
return 0;
|
63
|
+
err:
|
64
|
+
return 1;
|
65
|
+
}
|
66
|
+
|
67
|
+
static int test_barrier_nop(struct io_uring *ring, unsigned req_flags)
|
68
|
+
{
|
69
|
+
struct io_uring_cqe *cqe;
|
70
|
+
struct io_uring_sqe *sqe;
|
71
|
+
int ret, i;
|
72
|
+
bool cqe32 = (ring->flags & IORING_SETUP_CQE32);
|
73
|
+
|
74
|
+
for (i = 0; i < 8; i++) {
|
75
|
+
sqe = io_uring_get_sqe(ring);
|
76
|
+
if (!sqe) {
|
77
|
+
fprintf(stderr, "get sqe failed\n");
|
78
|
+
goto err;
|
79
|
+
}
|
80
|
+
|
81
|
+
io_uring_prep_nop(sqe);
|
82
|
+
if (i == 4)
|
83
|
+
sqe->flags = IOSQE_IO_DRAIN;
|
84
|
+
sqe->user_data = ++seq;
|
85
|
+
sqe->flags |= req_flags;
|
86
|
+
}
|
87
|
+
|
88
|
+
ret = io_uring_submit(ring);
|
89
|
+
if (ret < 0) {
|
90
|
+
fprintf(stderr, "sqe submit failed: %d\n", ret);
|
91
|
+
goto err;
|
92
|
+
} else if (ret < 8) {
|
93
|
+
fprintf(stderr, "Submitted only %d\n", ret);
|
94
|
+
goto err;
|
95
|
+
}
|
96
|
+
|
97
|
+
for (i = 0; i < 8; i++) {
|
98
|
+
ret = io_uring_wait_cqe(ring, &cqe);
|
99
|
+
if (ret < 0) {
|
100
|
+
fprintf(stderr, "wait completion %d\n", ret);
|
101
|
+
goto err;
|
102
|
+
}
|
103
|
+
if (!cqe->user_data) {
|
104
|
+
fprintf(stderr, "Unexpected 0 user_data\n");
|
105
|
+
goto err;
|
106
|
+
}
|
107
|
+
if (cqe32) {
|
108
|
+
if (cqe->big_cqe[0] != 0) {
|
109
|
+
fprintf(stderr, "Unexpected extra1\n");
|
110
|
+
goto err;
|
111
|
+
}
|
112
|
+
if (cqe->big_cqe[1] != 0) {
|
113
|
+
fprintf(stderr, "Unexpected extra2\n");
|
114
|
+
goto err;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
io_uring_cqe_seen(ring, cqe);
|
118
|
+
}
|
119
|
+
|
120
|
+
return 0;
|
121
|
+
err:
|
122
|
+
return 1;
|
123
|
+
}
|
124
|
+
|
125
|
+
static int test_ring(unsigned flags)
|
126
|
+
{
|
127
|
+
struct io_uring ring;
|
128
|
+
struct io_uring_params p = { };
|
129
|
+
int ret, i;
|
130
|
+
|
131
|
+
p.flags = flags;
|
132
|
+
ret = io_uring_queue_init_params(8, &ring, &p);
|
133
|
+
if (ret) {
|
134
|
+
if (ret == -EINVAL)
|
135
|
+
return 0;
|
136
|
+
fprintf(stderr, "ring setup failed: %d\n", ret);
|
137
|
+
return 1;
|
138
|
+
}
|
139
|
+
|
140
|
+
for (i = 0; i < 1000; i++) {
|
141
|
+
unsigned req_flags = (i & 1) ? IOSQE_ASYNC : 0;
|
142
|
+
|
143
|
+
ret = test_single_nop(&ring, req_flags);
|
144
|
+
if (ret) {
|
145
|
+
fprintf(stderr, "test_single_nop failed\n");
|
146
|
+
goto err;
|
147
|
+
}
|
148
|
+
|
149
|
+
ret = test_barrier_nop(&ring, req_flags);
|
150
|
+
if (ret) {
|
151
|
+
fprintf(stderr, "test_barrier_nop failed\n");
|
152
|
+
goto err;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
err:
|
156
|
+
io_uring_queue_exit(&ring);
|
157
|
+
return ret;
|
158
|
+
}
|
159
|
+
|
160
|
+
int main(int argc, char *argv[])
|
161
|
+
{
|
162
|
+
int ret;
|
163
|
+
|
164
|
+
if (argc > 1)
|
165
|
+
return 0;
|
166
|
+
|
167
|
+
FOR_ALL_TEST_CONFIGS {
|
168
|
+
ret = test_ring(IORING_GET_TEST_CONFIG_FLAGS());
|
169
|
+
if (ret) {
|
170
|
+
fprintf(stderr, "Normal ring test failed: %s\n",
|
171
|
+
IORING_GET_TEST_CONFIG_DESCRIPTION());
|
172
|
+
return ret;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
return 0;
|
177
|
+
}
|
@@ -0,0 +1,169 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Description: Helpers for NVMe uring passthrough commands
|
4
|
+
*/
|
5
|
+
#ifndef LIBURING_NVME_H
|
6
|
+
#define LIBURING_NVME_H
|
7
|
+
|
8
|
+
#ifdef __cplusplus
|
9
|
+
extern "C" {
|
10
|
+
#endif
|
11
|
+
|
12
|
+
#include <sys/ioctl.h>
|
13
|
+
#include <linux/nvme_ioctl.h>
|
14
|
+
|
15
|
+
/*
|
16
|
+
* If the uapi headers installed on the system lacks nvme uring command
|
17
|
+
* support, use the local version to prevent compilation issues.
|
18
|
+
*/
|
19
|
+
#ifndef CONFIG_HAVE_NVME_URING
|
20
|
+
struct nvme_uring_cmd {
|
21
|
+
__u8 opcode;
|
22
|
+
__u8 flags;
|
23
|
+
__u16 rsvd1;
|
24
|
+
__u32 nsid;
|
25
|
+
__u32 cdw2;
|
26
|
+
__u32 cdw3;
|
27
|
+
__u64 metadata;
|
28
|
+
__u64 addr;
|
29
|
+
__u32 metadata_len;
|
30
|
+
__u32 data_len;
|
31
|
+
__u32 cdw10;
|
32
|
+
__u32 cdw11;
|
33
|
+
__u32 cdw12;
|
34
|
+
__u32 cdw13;
|
35
|
+
__u32 cdw14;
|
36
|
+
__u32 cdw15;
|
37
|
+
__u32 timeout_ms;
|
38
|
+
__u32 rsvd2;
|
39
|
+
};
|
40
|
+
|
41
|
+
#define NVME_URING_CMD_IO _IOWR('N', 0x80, struct nvme_uring_cmd)
|
42
|
+
#define NVME_URING_CMD_IO_VEC _IOWR('N', 0x81, struct nvme_uring_cmd)
|
43
|
+
#endif /* CONFIG_HAVE_NVME_URING */
|
44
|
+
|
45
|
+
#define NVME_DEFAULT_IOCTL_TIMEOUT 0
|
46
|
+
#define NVME_IDENTIFY_DATA_SIZE 4096
|
47
|
+
#define NVME_IDENTIFY_CSI_SHIFT 24
|
48
|
+
#define NVME_IDENTIFY_CNS_NS 0
|
49
|
+
#define NVME_CSI_NVM 0
|
50
|
+
|
51
|
+
enum nvme_admin_opcode {
|
52
|
+
nvme_admin_identify = 0x06,
|
53
|
+
};
|
54
|
+
|
55
|
+
enum nvme_io_opcode {
|
56
|
+
nvme_cmd_write = 0x01,
|
57
|
+
nvme_cmd_read = 0x02,
|
58
|
+
};
|
59
|
+
|
60
|
+
static int nsid;
|
61
|
+
static __u32 lba_shift;
|
62
|
+
|
63
|
+
struct nvme_lbaf {
|
64
|
+
__le16 ms;
|
65
|
+
__u8 ds;
|
66
|
+
__u8 rp;
|
67
|
+
};
|
68
|
+
|
69
|
+
struct nvme_id_ns {
|
70
|
+
__le64 nsze;
|
71
|
+
__le64 ncap;
|
72
|
+
__le64 nuse;
|
73
|
+
__u8 nsfeat;
|
74
|
+
__u8 nlbaf;
|
75
|
+
__u8 flbas;
|
76
|
+
__u8 mc;
|
77
|
+
__u8 dpc;
|
78
|
+
__u8 dps;
|
79
|
+
__u8 nmic;
|
80
|
+
__u8 rescap;
|
81
|
+
__u8 fpi;
|
82
|
+
__u8 dlfeat;
|
83
|
+
__le16 nawun;
|
84
|
+
__le16 nawupf;
|
85
|
+
__le16 nacwu;
|
86
|
+
__le16 nabsn;
|
87
|
+
__le16 nabo;
|
88
|
+
__le16 nabspf;
|
89
|
+
__le16 noiob;
|
90
|
+
__u8 nvmcap[16];
|
91
|
+
__le16 npwg;
|
92
|
+
__le16 npwa;
|
93
|
+
__le16 npdg;
|
94
|
+
__le16 npda;
|
95
|
+
__le16 nows;
|
96
|
+
__le16 mssrl;
|
97
|
+
__le32 mcl;
|
98
|
+
__u8 msrc;
|
99
|
+
__u8 rsvd81[11];
|
100
|
+
__le32 anagrpid;
|
101
|
+
__u8 rsvd96[3];
|
102
|
+
__u8 nsattr;
|
103
|
+
__le16 nvmsetid;
|
104
|
+
__le16 endgid;
|
105
|
+
__u8 nguid[16];
|
106
|
+
__u8 eui64[8];
|
107
|
+
struct nvme_lbaf lbaf[16];
|
108
|
+
__u8 rsvd192[192];
|
109
|
+
__u8 vs[3712];
|
110
|
+
};
|
111
|
+
|
112
|
+
static inline int ilog2(uint32_t i)
|
113
|
+
{
|
114
|
+
int log = -1;
|
115
|
+
|
116
|
+
while (i) {
|
117
|
+
i >>= 1;
|
118
|
+
log++;
|
119
|
+
}
|
120
|
+
return log;
|
121
|
+
}
|
122
|
+
|
123
|
+
__attribute__((__unused__))
|
124
|
+
static int nvme_get_info(const char *file)
|
125
|
+
{
|
126
|
+
struct nvme_id_ns ns;
|
127
|
+
int fd, err;
|
128
|
+
__u32 lba_size;
|
129
|
+
|
130
|
+
fd = open(file, O_RDONLY);
|
131
|
+
if (fd < 0) {
|
132
|
+
perror("file open");
|
133
|
+
return -errno;
|
134
|
+
}
|
135
|
+
|
136
|
+
nsid = ioctl(fd, NVME_IOCTL_ID);
|
137
|
+
if (nsid < 0) {
|
138
|
+
close(fd);
|
139
|
+
return -errno;
|
140
|
+
}
|
141
|
+
|
142
|
+
struct nvme_passthru_cmd cmd = {
|
143
|
+
.opcode = nvme_admin_identify,
|
144
|
+
.nsid = nsid,
|
145
|
+
.addr = (__u64)(uintptr_t)&ns,
|
146
|
+
.data_len = NVME_IDENTIFY_DATA_SIZE,
|
147
|
+
.cdw10 = NVME_IDENTIFY_CNS_NS,
|
148
|
+
.cdw11 = NVME_CSI_NVM << NVME_IDENTIFY_CSI_SHIFT,
|
149
|
+
.timeout_ms = NVME_DEFAULT_IOCTL_TIMEOUT,
|
150
|
+
};
|
151
|
+
|
152
|
+
err = ioctl(fd, NVME_IOCTL_ADMIN_CMD, &cmd);
|
153
|
+
if (err) {
|
154
|
+
close(fd);
|
155
|
+
return err;
|
156
|
+
}
|
157
|
+
|
158
|
+
lba_size = 1 << ns.lbaf[(ns.flbas & 0x0f)].ds;
|
159
|
+
lba_shift = ilog2(lba_size);
|
160
|
+
|
161
|
+
close(fd);
|
162
|
+
return 0;
|
163
|
+
}
|
164
|
+
|
165
|
+
#ifdef __cplusplus
|
166
|
+
}
|
167
|
+
#endif
|
168
|
+
|
169
|
+
#endif
|
@@ -0,0 +1,82 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Description: Test that out-of-order file updates with inflight requests
|
4
|
+
* work as expected.
|
5
|
+
*
|
6
|
+
*/
|
7
|
+
#include <stdio.h>
|
8
|
+
#include <fcntl.h>
|
9
|
+
#include <sys/socket.h>
|
10
|
+
#include <unistd.h>
|
11
|
+
#include <stdlib.h>
|
12
|
+
#include <sys/poll.h>
|
13
|
+
|
14
|
+
#include "liburing.h"
|
15
|
+
#include "helpers.h"
|
16
|
+
|
17
|
+
int main(int argc, char *argv[])
|
18
|
+
{
|
19
|
+
struct io_uring_sqe *sqe;
|
20
|
+
int res, fds[2], sockid;
|
21
|
+
struct io_uring ring;
|
22
|
+
|
23
|
+
if (argc > 1)
|
24
|
+
return T_EXIT_SKIP;
|
25
|
+
|
26
|
+
res = io_uring_queue_init(1, &ring, 0);
|
27
|
+
if (res) {
|
28
|
+
fprintf(stderr, "queue_init: %d\n", res);
|
29
|
+
return T_EXIT_FAIL;
|
30
|
+
}
|
31
|
+
|
32
|
+
res = io_uring_register_files_sparse(&ring, 2);
|
33
|
+
if (res) {
|
34
|
+
if (res == -EINVAL)
|
35
|
+
return T_EXIT_SKIP;
|
36
|
+
fprintf(stderr, "sparse reg: %d\n", res);
|
37
|
+
return T_EXIT_FAIL;
|
38
|
+
}
|
39
|
+
|
40
|
+
fds[0] = socket(AF_INET, SOCK_DGRAM, 0);
|
41
|
+
if (fds[0] < 0) {
|
42
|
+
perror("socket");
|
43
|
+
return T_EXIT_FAIL;
|
44
|
+
}
|
45
|
+
fds[1] = socket(AF_INET, SOCK_DGRAM, 0);
|
46
|
+
if (fds[1] < 0) {
|
47
|
+
perror("socket");
|
48
|
+
return T_EXIT_FAIL;
|
49
|
+
}
|
50
|
+
|
51
|
+
res = io_uring_register_files_update(&ring, 0, fds, 2);
|
52
|
+
if (res != 2) {
|
53
|
+
fprintf(stderr, "files updates; %d\n", res);
|
54
|
+
return T_EXIT_FAIL;
|
55
|
+
}
|
56
|
+
|
57
|
+
sqe = io_uring_get_sqe(&ring);
|
58
|
+
io_uring_prep_poll_add(sqe, 0, POLLIN);
|
59
|
+
sqe->flags = IOSQE_FIXED_FILE;
|
60
|
+
io_uring_submit(&ring);
|
61
|
+
|
62
|
+
close(fds[0]);
|
63
|
+
close(fds[1]);
|
64
|
+
|
65
|
+
sockid = -1;
|
66
|
+
res = io_uring_register_files_update(&ring, 1, &sockid, 1);
|
67
|
+
if (res != 1) {
|
68
|
+
fprintf(stderr, "files updates; %d\n", res);
|
69
|
+
return T_EXIT_FAIL;
|
70
|
+
}
|
71
|
+
|
72
|
+
sockid = -1;
|
73
|
+
res = io_uring_register_files_update(&ring, 0, &sockid, 1);
|
74
|
+
if (res != 1) {
|
75
|
+
fprintf(stderr, "files updates; %d\n", res);
|
76
|
+
return T_EXIT_FAIL;
|
77
|
+
}
|
78
|
+
|
79
|
+
sleep(1);
|
80
|
+
io_uring_queue_exit(&ring);
|
81
|
+
return T_EXIT_PASS;
|
82
|
+
}
|