polyphony 0.85 → 0.86
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/ext/polyphony/io_extensions.c +2 -3
- data/lib/polyphony/version.rb +1 -1
- data/polyphony.gemspec +1 -1
- data/test/test_backend.rb +1 -1
- data/test/test_signal.rb +3 -3
- data/vendor/liburing/.github/pull_request_template.md +86 -0
- data/vendor/liburing/.github/workflows/build.yml +85 -0
- data/vendor/liburing/.github/workflows/shellcheck.yml +20 -0
- data/vendor/liburing/.gitignore +149 -0
- data/vendor/liburing/COPYING +502 -0
- data/vendor/liburing/COPYING.GPL +339 -0
- data/vendor/liburing/LICENSE +7 -0
- data/vendor/liburing/Makefile +82 -0
- data/vendor/liburing/Makefile.common +5 -0
- data/vendor/liburing/Makefile.quiet +11 -0
- data/vendor/liburing/README +46 -0
- data/vendor/liburing/configure +486 -0
- data/vendor/liburing/debian/README.Debian +7 -0
- data/vendor/liburing/debian/changelog +27 -0
- data/vendor/liburing/debian/compat +1 -0
- data/vendor/liburing/debian/control +48 -0
- data/vendor/liburing/debian/copyright +49 -0
- data/vendor/liburing/debian/liburing-dev.install +4 -0
- data/vendor/liburing/debian/liburing-dev.manpages +6 -0
- data/vendor/liburing/debian/liburing1-udeb.install +1 -0
- data/vendor/liburing/debian/liburing1.install +1 -0
- data/vendor/liburing/debian/liburing1.symbols +32 -0
- data/vendor/liburing/debian/patches/series +1 -0
- data/vendor/liburing/debian/rules +81 -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 +38 -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/link-cp.c +193 -0
- data/vendor/liburing/examples/ucontext-cp.c +273 -0
- data/vendor/liburing/liburing.pc.in +12 -0
- data/vendor/liburing/liburing.spec +66 -0
- data/vendor/liburing/make-debs.sh +53 -0
- data/vendor/liburing/man/io_uring.7 +754 -0
- data/vendor/liburing/man/io_uring_cq_advance.3 +35 -0
- data/vendor/liburing/man/io_uring_cq_ready.3 +25 -0
- data/vendor/liburing/man/io_uring_cqe_get_data.3 +34 -0
- data/vendor/liburing/man/io_uring_cqe_seen.3 +32 -0
- data/vendor/liburing/man/io_uring_enter.2 +1483 -0
- data/vendor/liburing/man/io_uring_free_probe.3 +24 -0
- data/vendor/liburing/man/io_uring_get_probe.3 +29 -0
- data/vendor/liburing/man/io_uring_get_sqe.3 +38 -0
- data/vendor/liburing/man/io_uring_opcode_supported.3 +29 -0
- data/vendor/liburing/man/io_uring_prep_msg_ring.3 +58 -0
- data/vendor/liburing/man/io_uring_prep_read.3 +50 -0
- data/vendor/liburing/man/io_uring_prep_read_fixed.3 +54 -0
- data/vendor/liburing/man/io_uring_prep_readv.3 +51 -0
- data/vendor/liburing/man/io_uring_prep_readv2.3 +79 -0
- data/vendor/liburing/man/io_uring_prep_write.3 +50 -0
- data/vendor/liburing/man/io_uring_prep_write_fixed.3 +54 -0
- data/vendor/liburing/man/io_uring_prep_writev.3 +51 -0
- data/vendor/liburing/man/io_uring_prep_writev2.3 +78 -0
- data/vendor/liburing/man/io_uring_queue_exit.3 +27 -0
- data/vendor/liburing/man/io_uring_queue_init.3 +44 -0
- data/vendor/liburing/man/io_uring_register.2 +688 -0
- data/vendor/liburing/man/io_uring_register_buffers.3 +41 -0
- data/vendor/liburing/man/io_uring_register_files.3 +35 -0
- data/vendor/liburing/man/io_uring_setup.2 +534 -0
- data/vendor/liburing/man/io_uring_sq_ready.3 +25 -0
- data/vendor/liburing/man/io_uring_sq_space_left.3 +25 -0
- data/vendor/liburing/man/io_uring_sqe_set_data.3 +30 -0
- data/vendor/liburing/man/io_uring_sqe_set_flags.3 +60 -0
- data/vendor/liburing/man/io_uring_sqring_wait.3 +30 -0
- data/vendor/liburing/man/io_uring_submit.3 +29 -0
- data/vendor/liburing/man/io_uring_submit_and_wait.3 +34 -0
- data/vendor/liburing/man/io_uring_submit_and_wait_timeout.3 +49 -0
- data/vendor/liburing/man/io_uring_unregister_buffers.3 +26 -0
- data/vendor/liburing/man/io_uring_unregister_files.3 +26 -0
- data/vendor/liburing/man/io_uring_wait_cqe.3 +33 -0
- data/vendor/liburing/man/io_uring_wait_cqe_nr.3 +36 -0
- data/vendor/liburing/man/io_uring_wait_cqe_timeout.3 +39 -0
- data/vendor/liburing/man/io_uring_wait_cqes.3 +46 -0
- data/vendor/liburing/src/Makefile +89 -0
- data/vendor/liburing/src/arch/aarch64/syscall.h +95 -0
- data/vendor/liburing/src/arch/generic/lib.h +21 -0
- data/vendor/liburing/src/arch/generic/syscall.h +87 -0
- data/vendor/liburing/src/arch/syscall-defs.h +67 -0
- data/vendor/liburing/src/arch/x86/lib.h +32 -0
- data/vendor/liburing/src/arch/x86/syscall.h +160 -0
- data/vendor/liburing/src/include/liburing/barrier.h +81 -0
- data/vendor/liburing/src/include/liburing/io_uring.h +442 -0
- data/vendor/liburing/src/include/liburing.h +921 -0
- data/vendor/liburing/src/int_flags.h +8 -0
- data/vendor/liburing/src/lib.h +57 -0
- data/vendor/liburing/src/liburing.map +53 -0
- data/vendor/liburing/src/nolibc.c +48 -0
- data/vendor/liburing/src/queue.c +403 -0
- data/vendor/liburing/src/register.c +293 -0
- data/vendor/liburing/src/setup.c +332 -0
- data/vendor/liburing/src/syscall.c +47 -0
- data/vendor/liburing/src/syscall.h +103 -0
- data/vendor/liburing/test/232c93d07b74-test.c +306 -0
- data/vendor/liburing/test/35fa71a030ca-test.c +329 -0
- data/vendor/liburing/test/500f9fbadef8-test.c +89 -0
- data/vendor/liburing/test/7ad0e4b2f83c-test.c +93 -0
- data/vendor/liburing/test/8a9973408177-test.c +106 -0
- data/vendor/liburing/test/917257daa0fe-test.c +53 -0
- data/vendor/liburing/test/Makefile +244 -0
- data/vendor/liburing/test/a0908ae19763-test.c +58 -0
- data/vendor/liburing/test/a4c0b3decb33-test.c +180 -0
- data/vendor/liburing/test/accept-link.c +254 -0
- data/vendor/liburing/test/accept-reuse.c +164 -0
- data/vendor/liburing/test/accept-test.c +79 -0
- data/vendor/liburing/test/accept.c +477 -0
- data/vendor/liburing/test/across-fork.c +283 -0
- data/vendor/liburing/test/b19062a56726-test.c +53 -0
- data/vendor/liburing/test/b5837bd5311d-test.c +77 -0
- data/vendor/liburing/test/ce593a6c480a-test.c +136 -0
- data/vendor/liburing/test/close-opath.c +122 -0
- data/vendor/liburing/test/config +10 -0
- data/vendor/liburing/test/connect.c +398 -0
- data/vendor/liburing/test/cq-full.c +96 -0
- data/vendor/liburing/test/cq-overflow.c +294 -0
- data/vendor/liburing/test/cq-peek-batch.c +102 -0
- data/vendor/liburing/test/cq-ready.c +94 -0
- data/vendor/liburing/test/cq-size.c +64 -0
- data/vendor/liburing/test/d4ae271dfaae-test.c +96 -0
- data/vendor/liburing/test/d77a67ed5f27-test.c +65 -0
- data/vendor/liburing/test/defer.c +307 -0
- data/vendor/liburing/test/double-poll-crash.c +185 -0
- data/vendor/liburing/test/drop-submit.c +92 -0
- data/vendor/liburing/test/eeed8b54e0df-test.c +114 -0
- data/vendor/liburing/test/empty-eownerdead.c +45 -0
- data/vendor/liburing/test/eventfd-disable.c +151 -0
- data/vendor/liburing/test/eventfd-reg.c +76 -0
- data/vendor/liburing/test/eventfd-ring.c +97 -0
- data/vendor/liburing/test/eventfd.c +112 -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 +249 -0
- data/vendor/liburing/test/fc2a85cb02ef-test.c +131 -0
- data/vendor/liburing/test/file-register.c +858 -0
- data/vendor/liburing/test/file-update.c +173 -0
- data/vendor/liburing/test/file-verify.c +629 -0
- data/vendor/liburing/test/files-exit-hang-poll.c +128 -0
- data/vendor/liburing/test/files-exit-hang-timeout.c +134 -0
- data/vendor/liburing/test/fixed-link.c +90 -0
- data/vendor/liburing/test/fpos.c +252 -0
- data/vendor/liburing/test/fsync.c +224 -0
- data/vendor/liburing/test/hardlink.c +136 -0
- data/vendor/liburing/test/helpers.c +135 -0
- data/vendor/liburing/test/helpers.h +67 -0
- data/vendor/liburing/test/io-cancel.c +550 -0
- data/vendor/liburing/test/io_uring_enter.c +296 -0
- data/vendor/liburing/test/io_uring_register.c +676 -0
- data/vendor/liburing/test/io_uring_setup.c +192 -0
- data/vendor/liburing/test/iopoll.c +372 -0
- data/vendor/liburing/test/lfs-openat-write.c +119 -0
- data/vendor/liburing/test/lfs-openat.c +275 -0
- data/vendor/liburing/test/link-timeout.c +1107 -0
- data/vendor/liburing/test/link.c +496 -0
- data/vendor/liburing/test/link_drain.c +229 -0
- data/vendor/liburing/test/madvise.c +195 -0
- data/vendor/liburing/test/mkdir.c +108 -0
- data/vendor/liburing/test/msg-ring.c +234 -0
- data/vendor/liburing/test/multicqes_drain.c +387 -0
- data/vendor/liburing/test/nop-all-sizes.c +99 -0
- data/vendor/liburing/test/nop.c +115 -0
- data/vendor/liburing/test/open-close.c +261 -0
- data/vendor/liburing/test/openat2.c +308 -0
- data/vendor/liburing/test/personality.c +204 -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-ton.c +135 -0
- data/vendor/liburing/test/poll-cancel.c +228 -0
- data/vendor/liburing/test/poll-link.c +230 -0
- data/vendor/liburing/test/poll-many.c +208 -0
- data/vendor/liburing/test/poll-mshot-update.c +273 -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 +109 -0
- data/vendor/liburing/test/pollfree.c +426 -0
- data/vendor/liburing/test/probe.c +135 -0
- data/vendor/liburing/test/read-write.c +876 -0
- data/vendor/liburing/test/register-restrictions.c +633 -0
- data/vendor/liburing/test/rename.c +135 -0
- data/vendor/liburing/test/ring-leak.c +173 -0
- data/vendor/liburing/test/ring-leak2.c +249 -0
- data/vendor/liburing/test/rsrc_tags.c +449 -0
- data/vendor/liburing/test/runtests-loop.sh +16 -0
- data/vendor/liburing/test/runtests.sh +170 -0
- data/vendor/liburing/test/rw_merge_test.c +97 -0
- data/vendor/liburing/test/self.c +91 -0
- data/vendor/liburing/test/send_recv.c +286 -0
- data/vendor/liburing/test/send_recvmsg.c +345 -0
- data/vendor/liburing/test/sendmsg_fs_cve.c +200 -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 +74 -0
- data/vendor/liburing/test/skip-cqe.c +429 -0
- data/vendor/liburing/test/socket-rw-eagain.c +158 -0
- data/vendor/liburing/test/socket-rw-offset.c +157 -0
- data/vendor/liburing/test/socket-rw.c +145 -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 +204 -0
- data/vendor/liburing/test/sq-poll-kthread.c +169 -0
- data/vendor/liburing/test/sq-poll-share.c +137 -0
- data/vendor/liburing/test/sq-space_left.c +159 -0
- data/vendor/liburing/test/sqpoll-cancel-hang.c +157 -0
- data/vendor/liburing/test/sqpoll-disable-exit.c +196 -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-link-fail.c +154 -0
- data/vendor/liburing/test/submit-reuse.c +239 -0
- data/vendor/liburing/test/symlink.c +116 -0
- data/vendor/liburing/test/teardowns.c +58 -0
- data/vendor/liburing/test/thread-exit.c +143 -0
- data/vendor/liburing/test/timeout-new.c +252 -0
- data/vendor/liburing/test/timeout-overflow.c +204 -0
- data/vendor/liburing/test/timeout.c +1523 -0
- data/vendor/liburing/test/unlink.c +112 -0
- data/vendor/liburing/test/wakeup-hang.c +162 -0
- metadata +223 -2
@@ -0,0 +1,180 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
// autogenerated by syzkaller (https://github.com/google/syzkaller)
|
3
|
+
|
4
|
+
#include <dirent.h>
|
5
|
+
#include <endian.h>
|
6
|
+
#include <errno.h>
|
7
|
+
#include <fcntl.h>
|
8
|
+
#include <signal.h>
|
9
|
+
#include <stdarg.h>
|
10
|
+
#include <stdbool.h>
|
11
|
+
#include <stdint.h>
|
12
|
+
#include <stdio.h>
|
13
|
+
#include <stdlib.h>
|
14
|
+
#include <string.h>
|
15
|
+
#include <sys/prctl.h>
|
16
|
+
#include <sys/stat.h>
|
17
|
+
#include <sys/types.h>
|
18
|
+
#include <sys/wait.h>
|
19
|
+
#include <sys/mman.h>
|
20
|
+
#include <time.h>
|
21
|
+
#include <unistd.h>
|
22
|
+
|
23
|
+
#include "liburing.h"
|
24
|
+
#include "../src/syscall.h"
|
25
|
+
|
26
|
+
static void sleep_ms(uint64_t ms)
|
27
|
+
{
|
28
|
+
usleep(ms * 1000);
|
29
|
+
}
|
30
|
+
|
31
|
+
static uint64_t current_time_ms(void)
|
32
|
+
{
|
33
|
+
struct timespec ts;
|
34
|
+
if (clock_gettime(CLOCK_MONOTONIC, &ts))
|
35
|
+
exit(1);
|
36
|
+
return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
|
37
|
+
}
|
38
|
+
|
39
|
+
static bool write_file(const char* file, const char* what, ...)
|
40
|
+
{
|
41
|
+
char buf[1024];
|
42
|
+
va_list args;
|
43
|
+
va_start(args, what);
|
44
|
+
vsnprintf(buf, sizeof(buf), what, args);
|
45
|
+
va_end(args);
|
46
|
+
buf[sizeof(buf) - 1] = 0;
|
47
|
+
int len = strlen(buf);
|
48
|
+
int fd = open(file, O_WRONLY | O_CLOEXEC);
|
49
|
+
if (fd == -1)
|
50
|
+
return false;
|
51
|
+
if (write(fd, buf, len) != len) {
|
52
|
+
int err = errno;
|
53
|
+
close(fd);
|
54
|
+
errno = err;
|
55
|
+
return false;
|
56
|
+
}
|
57
|
+
close(fd);
|
58
|
+
return true;
|
59
|
+
}
|
60
|
+
|
61
|
+
static void kill_and_wait(int pid, int* status)
|
62
|
+
{
|
63
|
+
kill(-pid, SIGKILL);
|
64
|
+
kill(pid, SIGKILL);
|
65
|
+
int i;
|
66
|
+
for (i = 0; i < 100; i++) {
|
67
|
+
if (waitpid(-1, status, WNOHANG | __WALL) == pid)
|
68
|
+
return;
|
69
|
+
usleep(1000);
|
70
|
+
}
|
71
|
+
DIR* dir = opendir("/sys/fs/fuse/connections");
|
72
|
+
if (dir) {
|
73
|
+
for (;;) {
|
74
|
+
struct dirent* ent = readdir(dir);
|
75
|
+
if (!ent)
|
76
|
+
break;
|
77
|
+
if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
|
78
|
+
continue;
|
79
|
+
char abort[300];
|
80
|
+
snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort",
|
81
|
+
ent->d_name);
|
82
|
+
int fd = open(abort, O_WRONLY);
|
83
|
+
if (fd == -1) {
|
84
|
+
continue;
|
85
|
+
}
|
86
|
+
if (write(fd, abort, 1) < 0) {
|
87
|
+
}
|
88
|
+
close(fd);
|
89
|
+
}
|
90
|
+
closedir(dir);
|
91
|
+
} else {
|
92
|
+
}
|
93
|
+
while (waitpid(-1, status, __WALL) != pid) {
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
static void setup_test()
|
98
|
+
{
|
99
|
+
prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
|
100
|
+
setpgrp();
|
101
|
+
write_file("/proc/self/oom_score_adj", "1000");
|
102
|
+
}
|
103
|
+
|
104
|
+
static void execute_one(void);
|
105
|
+
|
106
|
+
#define WAIT_FLAGS __WALL
|
107
|
+
|
108
|
+
static void loop(void)
|
109
|
+
{
|
110
|
+
int iter;
|
111
|
+
for (iter = 0; iter < 5000; iter++) {
|
112
|
+
int pid = fork();
|
113
|
+
if (pid < 0)
|
114
|
+
exit(1);
|
115
|
+
if (pid == 0) {
|
116
|
+
setup_test();
|
117
|
+
execute_one();
|
118
|
+
exit(0);
|
119
|
+
}
|
120
|
+
int status = 0;
|
121
|
+
uint64_t start = current_time_ms();
|
122
|
+
for (;;) {
|
123
|
+
if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
|
124
|
+
break;
|
125
|
+
sleep_ms(1);
|
126
|
+
if (current_time_ms() - start < 5 * 1000)
|
127
|
+
continue;
|
128
|
+
kill_and_wait(pid, &status);
|
129
|
+
break;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
void execute_one(void)
|
135
|
+
{
|
136
|
+
*(uint32_t*)0x20000080 = 0;
|
137
|
+
*(uint32_t*)0x20000084 = 0;
|
138
|
+
*(uint32_t*)0x20000088 = 3;
|
139
|
+
*(uint32_t*)0x2000008c = 3;
|
140
|
+
*(uint32_t*)0x20000090 = 0x175;
|
141
|
+
*(uint32_t*)0x20000094 = 0;
|
142
|
+
*(uint32_t*)0x20000098 = 0;
|
143
|
+
*(uint32_t*)0x2000009c = 0;
|
144
|
+
*(uint32_t*)0x200000a0 = 0;
|
145
|
+
*(uint32_t*)0x200000a4 = 0;
|
146
|
+
*(uint32_t*)0x200000a8 = 0;
|
147
|
+
*(uint32_t*)0x200000ac = 0;
|
148
|
+
*(uint32_t*)0x200000b0 = 0;
|
149
|
+
*(uint32_t*)0x200000b4 = 0;
|
150
|
+
*(uint32_t*)0x200000b8 = 0;
|
151
|
+
*(uint32_t*)0x200000bc = 0;
|
152
|
+
*(uint32_t*)0x200000c0 = 0;
|
153
|
+
*(uint32_t*)0x200000c4 = 0;
|
154
|
+
*(uint64_t*)0x200000c8 = 0;
|
155
|
+
*(uint32_t*)0x200000d0 = 0;
|
156
|
+
*(uint32_t*)0x200000d4 = 0;
|
157
|
+
*(uint32_t*)0x200000d8 = 0;
|
158
|
+
*(uint32_t*)0x200000dc = 0;
|
159
|
+
*(uint32_t*)0x200000e0 = 0;
|
160
|
+
*(uint32_t*)0x200000e4 = 0;
|
161
|
+
*(uint32_t*)0x200000e8 = 0;
|
162
|
+
*(uint32_t*)0x200000ec = 0;
|
163
|
+
*(uint64_t*)0x200000f0 = 0;
|
164
|
+
__sys_io_uring_setup(0x983, (struct io_uring_params *) 0x20000080);
|
165
|
+
}
|
166
|
+
|
167
|
+
static void sig_int(int sig)
|
168
|
+
{
|
169
|
+
exit(0);
|
170
|
+
}
|
171
|
+
|
172
|
+
int main(int argc, char *argv[])
|
173
|
+
{
|
174
|
+
if (argc > 1)
|
175
|
+
return 0;
|
176
|
+
signal(SIGINT, sig_int);
|
177
|
+
mmap((void *) 0x20000000, 0x1000000, 3, 0x32, -1, 0);
|
178
|
+
loop();
|
179
|
+
return 0;
|
180
|
+
}
|
@@ -0,0 +1,254 @@
|
|
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
|
+
#include <assert.h>
|
9
|
+
#include <pthread.h>
|
10
|
+
#include <sys/socket.h>
|
11
|
+
#include <netinet/tcp.h>
|
12
|
+
#include <netinet/in.h>
|
13
|
+
#include <poll.h>
|
14
|
+
#include <arpa/inet.h>
|
15
|
+
|
16
|
+
#include "liburing.h"
|
17
|
+
|
18
|
+
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
19
|
+
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
|
20
|
+
|
21
|
+
static int recv_thread_ready = 0;
|
22
|
+
static int recv_thread_done = 0;
|
23
|
+
|
24
|
+
static void signal_var(int *var)
|
25
|
+
{
|
26
|
+
pthread_mutex_lock(&mutex);
|
27
|
+
*var = 1;
|
28
|
+
pthread_cond_signal(&cond);
|
29
|
+
pthread_mutex_unlock(&mutex);
|
30
|
+
}
|
31
|
+
|
32
|
+
static void wait_for_var(int *var)
|
33
|
+
{
|
34
|
+
pthread_mutex_lock(&mutex);
|
35
|
+
|
36
|
+
while (!*var)
|
37
|
+
pthread_cond_wait(&cond, &mutex);
|
38
|
+
|
39
|
+
pthread_mutex_unlock(&mutex);
|
40
|
+
}
|
41
|
+
|
42
|
+
struct data {
|
43
|
+
unsigned expected[2];
|
44
|
+
unsigned just_positive[2];
|
45
|
+
unsigned long timeout;
|
46
|
+
unsigned short port;
|
47
|
+
unsigned int addr;
|
48
|
+
int stop;
|
49
|
+
};
|
50
|
+
|
51
|
+
static void *send_thread(void *arg)
|
52
|
+
{
|
53
|
+
struct data *data = arg;
|
54
|
+
int ret;
|
55
|
+
|
56
|
+
wait_for_var(&recv_thread_ready);
|
57
|
+
|
58
|
+
if (data->stop)
|
59
|
+
return NULL;
|
60
|
+
|
61
|
+
int s0 = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
62
|
+
assert(s0 != -1);
|
63
|
+
|
64
|
+
struct sockaddr_in addr;
|
65
|
+
|
66
|
+
addr.sin_family = AF_INET;
|
67
|
+
addr.sin_port = data->port;
|
68
|
+
addr.sin_addr.s_addr = data->addr;
|
69
|
+
|
70
|
+
ret = connect(s0, (struct sockaddr*)&addr, sizeof(addr));
|
71
|
+
assert(ret != -1);
|
72
|
+
|
73
|
+
wait_for_var(&recv_thread_done);
|
74
|
+
|
75
|
+
close(s0);
|
76
|
+
return NULL;
|
77
|
+
}
|
78
|
+
|
79
|
+
void *recv_thread(void *arg)
|
80
|
+
{
|
81
|
+
struct data *data = arg;
|
82
|
+
struct io_uring ring;
|
83
|
+
int i, ret;
|
84
|
+
|
85
|
+
ret = io_uring_queue_init(8, &ring, 0);
|
86
|
+
assert(ret == 0);
|
87
|
+
|
88
|
+
int s0 = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
89
|
+
assert(s0 != -1);
|
90
|
+
|
91
|
+
int32_t val = 1;
|
92
|
+
ret = setsockopt(s0, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
|
93
|
+
assert(ret != -1);
|
94
|
+
ret = setsockopt(s0, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
|
95
|
+
assert(ret != -1);
|
96
|
+
|
97
|
+
struct sockaddr_in addr;
|
98
|
+
|
99
|
+
addr.sin_family = AF_INET;
|
100
|
+
data->addr = inet_addr("127.0.0.1");
|
101
|
+
addr.sin_addr.s_addr = data->addr;
|
102
|
+
|
103
|
+
i = 0;
|
104
|
+
do {
|
105
|
+
data->port = htons(1025 + (rand() % 64510));
|
106
|
+
addr.sin_port = data->port;
|
107
|
+
|
108
|
+
if (bind(s0, (struct sockaddr*)&addr, sizeof(addr)) != -1)
|
109
|
+
break;
|
110
|
+
} while (++i < 100);
|
111
|
+
|
112
|
+
if (i >= 100) {
|
113
|
+
printf("Can't find good port, skipped\n");
|
114
|
+
data->stop = 1;
|
115
|
+
signal_var(&recv_thread_ready);
|
116
|
+
goto out;
|
117
|
+
}
|
118
|
+
|
119
|
+
ret = listen(s0, 128);
|
120
|
+
assert(ret != -1);
|
121
|
+
|
122
|
+
signal_var(&recv_thread_ready);
|
123
|
+
|
124
|
+
struct io_uring_sqe *sqe;
|
125
|
+
|
126
|
+
sqe = io_uring_get_sqe(&ring);
|
127
|
+
assert(sqe != NULL);
|
128
|
+
|
129
|
+
io_uring_prep_accept(sqe, s0, NULL, NULL, 0);
|
130
|
+
sqe->flags |= IOSQE_IO_LINK;
|
131
|
+
sqe->user_data = 1;
|
132
|
+
|
133
|
+
sqe = io_uring_get_sqe(&ring);
|
134
|
+
assert(sqe != NULL);
|
135
|
+
|
136
|
+
struct __kernel_timespec ts;
|
137
|
+
ts.tv_sec = data->timeout / 1000000000;
|
138
|
+
ts.tv_nsec = data->timeout % 1000000000;
|
139
|
+
io_uring_prep_link_timeout(sqe, &ts, 0);
|
140
|
+
sqe->user_data = 2;
|
141
|
+
|
142
|
+
ret = io_uring_submit(&ring);
|
143
|
+
assert(ret == 2);
|
144
|
+
|
145
|
+
for (i = 0; i < 2; i++) {
|
146
|
+
struct io_uring_cqe *cqe;
|
147
|
+
int idx;
|
148
|
+
|
149
|
+
if (io_uring_wait_cqe(&ring, &cqe)) {
|
150
|
+
fprintf(stderr, "wait cqe failed\n");
|
151
|
+
goto err;
|
152
|
+
}
|
153
|
+
idx = cqe->user_data - 1;
|
154
|
+
if (cqe->res != data->expected[idx]) {
|
155
|
+
if (cqe->res > 0 && data->just_positive[idx])
|
156
|
+
goto ok;
|
157
|
+
if (cqe->res == -EBADF) {
|
158
|
+
fprintf(stdout, "Accept not supported, skipping\n");
|
159
|
+
data->stop = 1;
|
160
|
+
goto out;
|
161
|
+
}
|
162
|
+
fprintf(stderr, "cqe %" PRIu64 " got %d, wanted %d\n",
|
163
|
+
(uint64_t) cqe->user_data, cqe->res,
|
164
|
+
data->expected[idx]);
|
165
|
+
goto err;
|
166
|
+
}
|
167
|
+
ok:
|
168
|
+
if (cqe->user_data == 1 && cqe->res > 0)
|
169
|
+
close(cqe->res);
|
170
|
+
|
171
|
+
io_uring_cqe_seen(&ring, cqe);
|
172
|
+
}
|
173
|
+
|
174
|
+
signal_var(&recv_thread_done);
|
175
|
+
|
176
|
+
out:
|
177
|
+
close(s0);
|
178
|
+
return NULL;
|
179
|
+
err:
|
180
|
+
close(s0);
|
181
|
+
return (void *) 1;
|
182
|
+
}
|
183
|
+
|
184
|
+
static int test_accept_timeout(int do_connect, unsigned long timeout)
|
185
|
+
{
|
186
|
+
struct io_uring ring;
|
187
|
+
struct io_uring_params p = {};
|
188
|
+
pthread_t t1, t2;
|
189
|
+
struct data d;
|
190
|
+
void *tret;
|
191
|
+
int ret, fast_poll;
|
192
|
+
|
193
|
+
ret = io_uring_queue_init_params(1, &ring, &p);
|
194
|
+
if (ret) {
|
195
|
+
fprintf(stderr, "queue_init: %d\n", ret);
|
196
|
+
return 1;
|
197
|
+
};
|
198
|
+
|
199
|
+
fast_poll = (p.features & IORING_FEAT_FAST_POLL) != 0;
|
200
|
+
io_uring_queue_exit(&ring);
|
201
|
+
|
202
|
+
recv_thread_ready = 0;
|
203
|
+
recv_thread_done = 0;
|
204
|
+
|
205
|
+
memset(&d, 0, sizeof(d));
|
206
|
+
d.timeout = timeout;
|
207
|
+
if (!do_connect) {
|
208
|
+
if (fast_poll) {
|
209
|
+
d.expected[0] = -ECANCELED;
|
210
|
+
d.expected[1] = -ETIME;
|
211
|
+
} else {
|
212
|
+
d.expected[0] = -EINTR;
|
213
|
+
d.expected[1] = -EALREADY;
|
214
|
+
}
|
215
|
+
} else {
|
216
|
+
d.expected[0] = -1U;
|
217
|
+
d.just_positive[0] = 1;
|
218
|
+
d.expected[1] = -ECANCELED;
|
219
|
+
}
|
220
|
+
|
221
|
+
pthread_create(&t1, NULL, recv_thread, &d);
|
222
|
+
|
223
|
+
if (do_connect)
|
224
|
+
pthread_create(&t2, NULL, send_thread, &d);
|
225
|
+
|
226
|
+
pthread_join(t1, &tret);
|
227
|
+
if (tret)
|
228
|
+
ret++;
|
229
|
+
|
230
|
+
if (do_connect) {
|
231
|
+
pthread_join(t2, &tret);
|
232
|
+
if (tret)
|
233
|
+
ret++;
|
234
|
+
}
|
235
|
+
|
236
|
+
return ret;
|
237
|
+
}
|
238
|
+
|
239
|
+
int main(int argc, char *argv[])
|
240
|
+
{
|
241
|
+
if (argc > 1)
|
242
|
+
return 0;
|
243
|
+
if (test_accept_timeout(0, 200000000)) {
|
244
|
+
fprintf(stderr, "accept timeout 0 failed\n");
|
245
|
+
return 1;
|
246
|
+
}
|
247
|
+
|
248
|
+
if (test_accept_timeout(1, 1000000000)) {
|
249
|
+
fprintf(stderr, "accept and connect timeout 0 failed\n");
|
250
|
+
return 1;
|
251
|
+
}
|
252
|
+
|
253
|
+
return 0;
|
254
|
+
}
|
@@ -0,0 +1,164 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
#include <liburing.h>
|
3
|
+
#include <netdb.h>
|
4
|
+
#include <string.h>
|
5
|
+
#include <sys/socket.h>
|
6
|
+
#include <sys/types.h>
|
7
|
+
#include <unistd.h>
|
8
|
+
#include <stdio.h>
|
9
|
+
#include <errno.h>
|
10
|
+
#include "liburing.h"
|
11
|
+
#include "../src/syscall.h"
|
12
|
+
|
13
|
+
struct io_uring io_uring;
|
14
|
+
|
15
|
+
int sys_io_uring_enter(const int fd,
|
16
|
+
const unsigned to_submit,
|
17
|
+
const unsigned min_complete,
|
18
|
+
const unsigned flags, sigset_t * const sig)
|
19
|
+
{
|
20
|
+
return __sys_io_uring_enter(fd, to_submit, min_complete, flags, sig);
|
21
|
+
}
|
22
|
+
|
23
|
+
int submit_sqe(void)
|
24
|
+
{
|
25
|
+
struct io_uring_sq *sq = &io_uring.sq;
|
26
|
+
const unsigned tail = *sq->ktail;
|
27
|
+
|
28
|
+
sq->array[tail & *sq->kring_mask] = 0;
|
29
|
+
io_uring_smp_store_release(sq->ktail, tail + 1);
|
30
|
+
|
31
|
+
return sys_io_uring_enter(io_uring.ring_fd, 1, 0, 0, NULL);
|
32
|
+
}
|
33
|
+
|
34
|
+
int main(int argc, char **argv)
|
35
|
+
{
|
36
|
+
struct addrinfo *addr_info_list = NULL;
|
37
|
+
struct addrinfo *ai, *addr_info = NULL;
|
38
|
+
struct io_uring_params params;
|
39
|
+
struct io_uring_sqe *sqe;
|
40
|
+
struct addrinfo hints;
|
41
|
+
struct sockaddr sa;
|
42
|
+
socklen_t sa_size = sizeof(sa);
|
43
|
+
int ret, listen_fd, connect_fd, val, i;
|
44
|
+
|
45
|
+
if (argc > 1)
|
46
|
+
return 0;
|
47
|
+
|
48
|
+
memset(¶ms, 0, sizeof(params));
|
49
|
+
ret = io_uring_queue_init_params(4, &io_uring, ¶ms);
|
50
|
+
if (ret) {
|
51
|
+
fprintf(stderr, "io_uring_init_failed: %d\n", ret);
|
52
|
+
return 1;
|
53
|
+
}
|
54
|
+
if (!(params.features & IORING_FEAT_SUBMIT_STABLE)) {
|
55
|
+
fprintf(stdout, "FEAT_SUBMIT_STABLE not there, skipping\n");
|
56
|
+
return 0;
|
57
|
+
}
|
58
|
+
|
59
|
+
memset(&hints, 0, sizeof(hints));
|
60
|
+
hints.ai_family = AF_UNSPEC;
|
61
|
+
hints.ai_socktype = SOCK_STREAM;
|
62
|
+
hints.ai_flags = AI_PASSIVE | AI_NUMERICSERV;
|
63
|
+
|
64
|
+
ret = getaddrinfo(NULL, "12345", &hints, &addr_info_list);
|
65
|
+
if (ret < 0) {
|
66
|
+
perror("getaddrinfo");
|
67
|
+
return 1;
|
68
|
+
}
|
69
|
+
|
70
|
+
for (ai = addr_info_list; ai; ai = ai->ai_next) {
|
71
|
+
if (ai->ai_family == AF_INET || ai->ai_family == AF_INET6) {
|
72
|
+
addr_info = ai;
|
73
|
+
break;
|
74
|
+
}
|
75
|
+
}
|
76
|
+
if (!addr_info) {
|
77
|
+
fprintf(stderr, "addrinfo not found\n");
|
78
|
+
return 1;
|
79
|
+
}
|
80
|
+
|
81
|
+
sqe = &io_uring.sq.sqes[0];
|
82
|
+
listen_fd = -1;
|
83
|
+
|
84
|
+
ret = socket(addr_info->ai_family, SOCK_STREAM,
|
85
|
+
addr_info->ai_protocol);
|
86
|
+
if (ret < 0) {
|
87
|
+
perror("socket");
|
88
|
+
return 1;
|
89
|
+
}
|
90
|
+
listen_fd = ret;
|
91
|
+
|
92
|
+
val = 1;
|
93
|
+
setsockopt(listen_fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(int));
|
94
|
+
setsockopt(listen_fd, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(int));
|
95
|
+
|
96
|
+
ret = bind(listen_fd, addr_info->ai_addr, addr_info->ai_addrlen);
|
97
|
+
if (ret < 0) {
|
98
|
+
perror("bind");
|
99
|
+
return 1;
|
100
|
+
}
|
101
|
+
|
102
|
+
ret = listen(listen_fd, SOMAXCONN);
|
103
|
+
if (ret < 0) {
|
104
|
+
perror("listen");
|
105
|
+
return 1;
|
106
|
+
}
|
107
|
+
|
108
|
+
memset(&sa, 0, sizeof(sa));
|
109
|
+
|
110
|
+
io_uring_prep_accept(sqe, listen_fd, &sa, &sa_size, 0);
|
111
|
+
sqe->user_data = 1;
|
112
|
+
ret = submit_sqe();
|
113
|
+
if (ret != 1) {
|
114
|
+
fprintf(stderr, "submit failed: %d\n", ret);
|
115
|
+
return 1;
|
116
|
+
}
|
117
|
+
|
118
|
+
connect_fd = -1;
|
119
|
+
ret = socket(addr_info->ai_family, SOCK_STREAM, addr_info->ai_protocol);
|
120
|
+
if (ret < 0) {
|
121
|
+
perror("socket");
|
122
|
+
return 1;
|
123
|
+
}
|
124
|
+
connect_fd = ret;
|
125
|
+
|
126
|
+
io_uring_prep_connect(sqe, connect_fd, addr_info->ai_addr,
|
127
|
+
addr_info->ai_addrlen);
|
128
|
+
sqe->user_data = 2;
|
129
|
+
ret = submit_sqe();
|
130
|
+
if (ret != 1) {
|
131
|
+
fprintf(stderr, "submit failed: %d\n", ret);
|
132
|
+
return 1;
|
133
|
+
}
|
134
|
+
|
135
|
+
for (i = 0; i < 2; i++) {
|
136
|
+
struct io_uring_cqe *cqe = NULL;
|
137
|
+
|
138
|
+
ret = io_uring_wait_cqe(&io_uring, &cqe);
|
139
|
+
if (ret) {
|
140
|
+
fprintf(stderr, "io_uring_wait_cqe: %d\n", ret);
|
141
|
+
return 1;
|
142
|
+
}
|
143
|
+
|
144
|
+
switch (cqe->user_data) {
|
145
|
+
case 1:
|
146
|
+
if (cqe->res < 0) {
|
147
|
+
fprintf(stderr, "accept failed: %d\n", cqe->res);
|
148
|
+
return 1;
|
149
|
+
}
|
150
|
+
break;
|
151
|
+
case 2:
|
152
|
+
if (cqe->res) {
|
153
|
+
fprintf(stderr, "connect failed: %d\n", cqe->res);
|
154
|
+
return 1;
|
155
|
+
}
|
156
|
+
break;
|
157
|
+
}
|
158
|
+
io_uring_cq_advance(&io_uring, 1);
|
159
|
+
}
|
160
|
+
|
161
|
+
freeaddrinfo(addr_info_list);
|
162
|
+
io_uring_queue_exit(&io_uring);
|
163
|
+
return 0;
|
164
|
+
}
|
@@ -0,0 +1,79 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Description: Check to see if accept handles addr and addrlen
|
4
|
+
*/
|
5
|
+
#include <stdio.h>
|
6
|
+
#include <errno.h>
|
7
|
+
#include <sys/socket.h>
|
8
|
+
#include <sys/un.h>
|
9
|
+
#include <assert.h>
|
10
|
+
#include "liburing.h"
|
11
|
+
|
12
|
+
int main(int argc, char *argv[])
|
13
|
+
{
|
14
|
+
struct io_uring_sqe *sqe;
|
15
|
+
struct io_uring_cqe *cqe;
|
16
|
+
struct io_uring ring;
|
17
|
+
struct sockaddr_un addr;
|
18
|
+
socklen_t addrlen = sizeof(addr);
|
19
|
+
int ret, fd;
|
20
|
+
struct __kernel_timespec ts = {
|
21
|
+
.tv_sec = 0,
|
22
|
+
.tv_nsec = 1000000
|
23
|
+
};
|
24
|
+
|
25
|
+
if (argc > 1)
|
26
|
+
return 0;
|
27
|
+
|
28
|
+
if (io_uring_queue_init(4, &ring, 0) != 0) {
|
29
|
+
fprintf(stderr, "ring setup failed\n");
|
30
|
+
return 1;
|
31
|
+
}
|
32
|
+
|
33
|
+
fd = socket(AF_UNIX, SOCK_STREAM, 0);
|
34
|
+
assert(fd != -1);
|
35
|
+
|
36
|
+
memset(&addr, 0, sizeof(addr));
|
37
|
+
addr.sun_family = AF_UNIX;
|
38
|
+
memcpy(addr.sun_path, "\0sock", 6);
|
39
|
+
|
40
|
+
ret = bind(fd, (struct sockaddr *)&addr, addrlen);
|
41
|
+
assert(ret != -1);
|
42
|
+
ret = listen(fd, 128);
|
43
|
+
assert(ret != -1);
|
44
|
+
|
45
|
+
sqe = io_uring_get_sqe(&ring);
|
46
|
+
if (!sqe) {
|
47
|
+
fprintf(stderr, "get sqe failed\n");
|
48
|
+
return 1;
|
49
|
+
}
|
50
|
+
io_uring_prep_accept(sqe, fd, (struct sockaddr*)&addr, &addrlen, 0);
|
51
|
+
sqe->user_data = 1;
|
52
|
+
|
53
|
+
ret = io_uring_submit(&ring);
|
54
|
+
if (ret != 1) {
|
55
|
+
fprintf(stderr, "Got submit %d, expected 1\n", ret);
|
56
|
+
return 1;
|
57
|
+
}
|
58
|
+
|
59
|
+
ret = io_uring_wait_cqe_timeout(&ring, &cqe, &ts);
|
60
|
+
if (!ret) {
|
61
|
+
if (cqe->res == -EBADF || cqe->res == -EINVAL) {
|
62
|
+
fprintf(stdout, "Accept not supported, skipping\n");
|
63
|
+
goto out;
|
64
|
+
} else if (cqe->res < 0) {
|
65
|
+
fprintf(stderr, "cqe error %d\n", cqe->res);
|
66
|
+
goto err;
|
67
|
+
}
|
68
|
+
} else if (ret != -ETIME) {
|
69
|
+
fprintf(stderr, "accept() failed to use addr & addrlen parameters!\n");
|
70
|
+
return 1;
|
71
|
+
}
|
72
|
+
|
73
|
+
out:
|
74
|
+
io_uring_queue_exit(&ring);
|
75
|
+
return 0;
|
76
|
+
err:
|
77
|
+
io_uring_queue_exit(&ring);
|
78
|
+
return 1;
|
79
|
+
}
|