@nxtedition/rocksdb 5.2.36 → 5.2.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binding.cc +66 -91
- package/deps/liburing/liburing/COPYING +502 -0
- package/deps/liburing/liburing/COPYING.GPL +339 -0
- package/deps/liburing/liburing/LICENSE +7 -0
- package/deps/liburing/liburing/Makefile +84 -0
- package/deps/liburing/liburing/Makefile.quiet +11 -0
- package/deps/liburing/liburing/README +46 -0
- package/deps/liburing/liburing/configure +420 -0
- package/deps/liburing/liburing/debian/README.Debian +7 -0
- package/deps/liburing/liburing/debian/changelog +27 -0
- package/deps/liburing/liburing/debian/compat +1 -0
- package/deps/liburing/liburing/debian/control +48 -0
- package/deps/liburing/liburing/debian/copyright +49 -0
- package/deps/liburing/liburing/debian/liburing-dev.install +4 -0
- package/deps/liburing/liburing/debian/liburing-dev.manpages +6 -0
- package/deps/liburing/liburing/debian/liburing1-udeb.install +1 -0
- package/deps/liburing/liburing/debian/liburing1.install +1 -0
- package/deps/liburing/liburing/debian/liburing1.symbols +32 -0
- package/deps/liburing/liburing/debian/patches/series +1 -0
- package/deps/liburing/liburing/debian/rules +81 -0
- package/deps/liburing/liburing/debian/source/format +1 -0
- package/deps/liburing/liburing/debian/source/local-options +2 -0
- package/deps/liburing/liburing/debian/source/options +1 -0
- package/deps/liburing/liburing/debian/watch +3 -0
- package/deps/liburing/liburing/examples/Makefile +29 -0
- package/deps/liburing/liburing/examples/io_uring-cp.c +279 -0
- package/deps/liburing/liburing/examples/io_uring-test.c +112 -0
- package/deps/liburing/liburing/examples/link-cp.c +193 -0
- package/deps/liburing/liburing/examples/ucontext-cp.c +273 -0
- package/deps/liburing/liburing/liburing.pc.in +12 -0
- package/deps/liburing/liburing/liburing.spec +66 -0
- package/deps/liburing/liburing/make-debs.sh +53 -0
- package/deps/liburing/liburing/man/io_uring.7 +736 -0
- package/deps/liburing/liburing/man/io_uring_enter.2 +1403 -0
- package/deps/liburing/liburing/man/io_uring_get_sqe.3 +37 -0
- package/deps/liburing/liburing/man/io_uring_queue_exit.3 +27 -0
- package/deps/liburing/liburing/man/io_uring_queue_init.3 +44 -0
- package/deps/liburing/liburing/man/io_uring_register.2 +605 -0
- package/deps/liburing/liburing/man/io_uring_setup.2 +515 -0
- package/deps/liburing/liburing/src/Makefile +76 -0
- package/deps/liburing/liburing/src/include/liburing/barrier.h +73 -0
- package/deps/liburing/liburing/src/include/liburing/io_uring.h +422 -0
- package/deps/liburing/liburing/src/include/liburing.h +775 -0
- package/deps/liburing/liburing/src/liburing.map +46 -0
- package/deps/liburing/liburing/src/queue.c +403 -0
- package/deps/liburing/liburing/src/register.c +299 -0
- package/deps/liburing/liburing/src/setup.c +356 -0
- package/deps/liburing/liburing/src/syscall.c +73 -0
- package/deps/liburing/liburing/src/syscall.h +20 -0
- package/deps/liburing/liburing/test/232c93d07b74-test.c +305 -0
- package/deps/liburing/liburing/test/35fa71a030ca-test.c +329 -0
- package/deps/liburing/liburing/test/500f9fbadef8-test.c +89 -0
- package/deps/liburing/liburing/test/7ad0e4b2f83c-test.c +93 -0
- package/deps/liburing/liburing/test/8a9973408177-test.c +106 -0
- package/deps/liburing/liburing/test/917257daa0fe-test.c +53 -0
- package/deps/liburing/liburing/test/Makefile +312 -0
- package/deps/liburing/liburing/test/a0908ae19763-test.c +58 -0
- package/deps/liburing/liburing/test/a4c0b3decb33-test.c +180 -0
- package/deps/liburing/liburing/test/accept-link.c +251 -0
- package/deps/liburing/liburing/test/accept-reuse.c +164 -0
- package/deps/liburing/liburing/test/accept-test.c +79 -0
- package/deps/liburing/liburing/test/accept.c +476 -0
- package/deps/liburing/liburing/test/across-fork.c +283 -0
- package/deps/liburing/liburing/test/b19062a56726-test.c +53 -0
- package/deps/liburing/liburing/test/b5837bd5311d-test.c +77 -0
- package/deps/liburing/liburing/test/ce593a6c480a-test.c +135 -0
- package/deps/liburing/liburing/test/close-opath.c +122 -0
- package/deps/liburing/liburing/test/config +10 -0
- package/deps/liburing/liburing/test/connect.c +398 -0
- package/deps/liburing/liburing/test/cq-full.c +96 -0
- package/deps/liburing/liburing/test/cq-overflow.c +294 -0
- package/deps/liburing/liburing/test/cq-peek-batch.c +102 -0
- package/deps/liburing/liburing/test/cq-ready.c +94 -0
- package/deps/liburing/liburing/test/cq-size.c +58 -0
- package/deps/liburing/liburing/test/d4ae271dfaae-test.c +96 -0
- package/deps/liburing/liburing/test/d77a67ed5f27-test.c +65 -0
- package/deps/liburing/liburing/test/defer.c +307 -0
- package/deps/liburing/liburing/test/double-poll-crash.c +186 -0
- package/deps/liburing/liburing/test/eeed8b54e0df-test.c +114 -0
- package/deps/liburing/liburing/test/empty-eownerdead.c +42 -0
- package/deps/liburing/liburing/test/eventfd-disable.c +151 -0
- package/deps/liburing/liburing/test/eventfd-ring.c +97 -0
- package/deps/liburing/liburing/test/eventfd.c +112 -0
- package/deps/liburing/liburing/test/fadvise.c +202 -0
- package/deps/liburing/liburing/test/fallocate.c +249 -0
- package/deps/liburing/liburing/test/fc2a85cb02ef-test.c +138 -0
- package/deps/liburing/liburing/test/file-register.c +843 -0
- package/deps/liburing/liburing/test/file-update.c +173 -0
- package/deps/liburing/liburing/test/files-exit-hang-poll.c +128 -0
- package/deps/liburing/liburing/test/files-exit-hang-timeout.c +134 -0
- package/deps/liburing/liburing/test/fixed-link.c +90 -0
- package/deps/liburing/liburing/test/fsync.c +224 -0
- package/deps/liburing/liburing/test/hardlink.c +136 -0
- package/deps/liburing/liburing/test/helpers.c +135 -0
- package/deps/liburing/liburing/test/helpers.h +67 -0
- package/deps/liburing/liburing/test/io-cancel.c +537 -0
- package/deps/liburing/liburing/test/io_uring_enter.c +296 -0
- package/deps/liburing/liburing/test/io_uring_register.c +664 -0
- package/deps/liburing/liburing/test/io_uring_setup.c +192 -0
- package/deps/liburing/liburing/test/iopoll.c +366 -0
- package/deps/liburing/liburing/test/lfs-openat-write.c +117 -0
- package/deps/liburing/liburing/test/lfs-openat.c +273 -0
- package/deps/liburing/liburing/test/link-timeout.c +1107 -0
- package/deps/liburing/liburing/test/link.c +496 -0
- package/deps/liburing/liburing/test/link_drain.c +229 -0
- package/deps/liburing/liburing/test/madvise.c +195 -0
- package/deps/liburing/liburing/test/mkdir.c +108 -0
- package/deps/liburing/liburing/test/multicqes_drain.c +383 -0
- package/deps/liburing/liburing/test/nop-all-sizes.c +107 -0
- package/deps/liburing/liburing/test/nop.c +115 -0
- package/deps/liburing/liburing/test/open-close.c +146 -0
- package/deps/liburing/liburing/test/openat2.c +240 -0
- package/deps/liburing/liburing/test/personality.c +204 -0
- package/deps/liburing/liburing/test/pipe-eof.c +81 -0
- package/deps/liburing/liburing/test/pipe-reuse.c +105 -0
- package/deps/liburing/liburing/test/poll-cancel-ton.c +139 -0
- package/deps/liburing/liburing/test/poll-cancel.c +135 -0
- package/deps/liburing/liburing/test/poll-link.c +227 -0
- package/deps/liburing/liburing/test/poll-many.c +208 -0
- package/deps/liburing/liburing/test/poll-mshot-update.c +273 -0
- package/deps/liburing/liburing/test/poll-ring.c +48 -0
- package/deps/liburing/liburing/test/poll-v-poll.c +353 -0
- package/deps/liburing/liburing/test/poll.c +109 -0
- package/deps/liburing/liburing/test/probe.c +137 -0
- package/deps/liburing/liburing/test/read-write.c +876 -0
- package/deps/liburing/liburing/test/register-restrictions.c +633 -0
- package/deps/liburing/liburing/test/rename.c +134 -0
- package/deps/liburing/liburing/test/ring-leak.c +173 -0
- package/deps/liburing/liburing/test/ring-leak2.c +249 -0
- package/deps/liburing/liburing/test/rsrc_tags.c +449 -0
- package/deps/liburing/liburing/test/runtests-loop.sh +16 -0
- package/deps/liburing/liburing/test/runtests.sh +170 -0
- package/deps/liburing/liburing/test/rw_merge_test.c +97 -0
- package/deps/liburing/liburing/test/self.c +91 -0
- package/deps/liburing/liburing/test/send_recv.c +291 -0
- package/deps/liburing/liburing/test/send_recvmsg.c +345 -0
- package/deps/liburing/liburing/test/sendmsg_fs_cve.c +198 -0
- package/deps/liburing/liburing/test/shared-wq.c +84 -0
- package/deps/liburing/liburing/test/short-read.c +75 -0
- package/deps/liburing/liburing/test/shutdown.c +163 -0
- package/deps/liburing/liburing/test/sigfd-deadlock.c +74 -0
- package/deps/liburing/liburing/test/socket-rw-eagain.c +156 -0
- package/deps/liburing/liburing/test/socket-rw.c +147 -0
- package/deps/liburing/liburing/test/splice.c +511 -0
- package/deps/liburing/liburing/test/sq-full-cpp.cc +45 -0
- package/deps/liburing/liburing/test/sq-full.c +45 -0
- package/deps/liburing/liburing/test/sq-poll-dup.c +200 -0
- package/deps/liburing/liburing/test/sq-poll-kthread.c +168 -0
- package/deps/liburing/liburing/test/sq-poll-share.c +137 -0
- package/deps/liburing/liburing/test/sq-space_left.c +159 -0
- package/deps/liburing/liburing/test/sqpoll-cancel-hang.c +159 -0
- package/deps/liburing/liburing/test/sqpoll-disable-exit.c +195 -0
- package/deps/liburing/liburing/test/sqpoll-exit-hang.c +77 -0
- package/deps/liburing/liburing/test/sqpoll-sleep.c +68 -0
- package/deps/liburing/liburing/test/statx.c +172 -0
- package/deps/liburing/liburing/test/stdout.c +232 -0
- package/deps/liburing/liburing/test/submit-link-fail.c +154 -0
- package/deps/liburing/liburing/test/submit-reuse.c +239 -0
- package/deps/liburing/liburing/test/symlink.c +116 -0
- package/deps/liburing/liburing/test/teardowns.c +58 -0
- package/deps/liburing/liburing/test/thread-exit.c +131 -0
- package/deps/liburing/liburing/test/timeout-new.c +246 -0
- package/deps/liburing/liburing/test/timeout-overflow.c +204 -0
- package/deps/liburing/liburing/test/timeout.c +1354 -0
- package/deps/liburing/liburing/test/unlink.c +111 -0
- package/deps/liburing/liburing/test/wakeup-hang.c +162 -0
- package/deps/liburing/liburing.gyp +20 -0
- package/deps/rocksdb/rocksdb/db/corruption_test.cc +62 -0
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl.h +7 -62
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_files.cc +25 -11
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_open.cc +74 -155
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_secondary.cc +1 -2
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_secondary.h +2 -2
- package/deps/rocksdb/rocksdb/env/fs_posix.cc +13 -0
- package/deps/rocksdb/rocksdb/file/file_prefetch_buffer.cc +4 -2
- package/deps/rocksdb/rocksdb/file/file_prefetch_buffer.h +22 -4
- package/deps/rocksdb/rocksdb/file/prefetch_test.cc +5 -0
- package/deps/rocksdb/rocksdb/include/rocksdb/file_system.h +15 -0
- package/deps/rocksdb/rocksdb/include/rocksdb/statistics.h +5 -0
- package/deps/rocksdb/rocksdb/include/rocksdb/version.h +1 -1
- package/deps/rocksdb/rocksdb/monitoring/statistics.cc +3 -0
- package/deps/rocksdb/rocksdb/monitoring/stats_history_test.cc +3 -7
- package/deps/rocksdb/rocksdb/table/block_based/block_based_table_reader.h +2 -1
- package/deps/rocksdb/rocksdb/table/block_based/block_based_table_reader_test.cc +44 -29
- package/deps/rocksdb/rocksdb.gyp +4 -3
- package/package.json +1 -1
- package/prebuilds/darwin-arm64/node.napi.node +0 -0
- package/prebuilds/darwin-x64/node.napi.node +0 -0
- package/prebuilds/linux-x64/node.napi.node +0 -0
- package/prebuilds/prebuilds/linux-x64/node.napi.node +0 -0
|
@@ -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,251 @@
|
|
|
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
|
+
|
|
15
|
+
#include "liburing.h"
|
|
16
|
+
|
|
17
|
+
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
18
|
+
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
|
|
19
|
+
|
|
20
|
+
static int recv_thread_ready = 0;
|
|
21
|
+
static int recv_thread_done = 0;
|
|
22
|
+
|
|
23
|
+
static void signal_var(int *var)
|
|
24
|
+
{
|
|
25
|
+
pthread_mutex_lock(&mutex);
|
|
26
|
+
*var = 1;
|
|
27
|
+
pthread_cond_signal(&cond);
|
|
28
|
+
pthread_mutex_unlock(&mutex);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
static void wait_for_var(int *var)
|
|
32
|
+
{
|
|
33
|
+
pthread_mutex_lock(&mutex);
|
|
34
|
+
|
|
35
|
+
while (!*var)
|
|
36
|
+
pthread_cond_wait(&cond, &mutex);
|
|
37
|
+
|
|
38
|
+
pthread_mutex_unlock(&mutex);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
struct data {
|
|
42
|
+
unsigned expected[2];
|
|
43
|
+
unsigned just_positive[2];
|
|
44
|
+
unsigned long timeout;
|
|
45
|
+
int port;
|
|
46
|
+
int stop;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
static void *send_thread(void *arg)
|
|
50
|
+
{
|
|
51
|
+
struct data *data = arg;
|
|
52
|
+
int ret;
|
|
53
|
+
|
|
54
|
+
wait_for_var(&recv_thread_ready);
|
|
55
|
+
|
|
56
|
+
if (data->stop)
|
|
57
|
+
return NULL;
|
|
58
|
+
|
|
59
|
+
int s0 = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
|
60
|
+
assert(s0 != -1);
|
|
61
|
+
|
|
62
|
+
struct sockaddr_in addr;
|
|
63
|
+
|
|
64
|
+
addr.sin_family = AF_INET;
|
|
65
|
+
addr.sin_port = data->port;
|
|
66
|
+
addr.sin_addr.s_addr = 0x0100007fU;
|
|
67
|
+
|
|
68
|
+
ret = connect(s0, (struct sockaddr*)&addr, sizeof(addr));
|
|
69
|
+
assert(ret != -1);
|
|
70
|
+
|
|
71
|
+
wait_for_var(&recv_thread_done);
|
|
72
|
+
|
|
73
|
+
close(s0);
|
|
74
|
+
return NULL;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
void *recv_thread(void *arg)
|
|
78
|
+
{
|
|
79
|
+
struct data *data = arg;
|
|
80
|
+
struct io_uring ring;
|
|
81
|
+
int i, ret;
|
|
82
|
+
|
|
83
|
+
ret = io_uring_queue_init(8, &ring, 0);
|
|
84
|
+
assert(ret == 0);
|
|
85
|
+
|
|
86
|
+
int s0 = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
|
87
|
+
assert(s0 != -1);
|
|
88
|
+
|
|
89
|
+
int32_t val = 1;
|
|
90
|
+
ret = setsockopt(s0, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
|
|
91
|
+
assert(ret != -1);
|
|
92
|
+
ret = setsockopt(s0, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
|
|
93
|
+
assert(ret != -1);
|
|
94
|
+
|
|
95
|
+
struct sockaddr_in addr;
|
|
96
|
+
|
|
97
|
+
addr.sin_family = AF_INET;
|
|
98
|
+
addr.sin_addr.s_addr = 0x0100007fU;
|
|
99
|
+
|
|
100
|
+
i = 0;
|
|
101
|
+
do {
|
|
102
|
+
data->port = 1025 + (rand() % 64510);
|
|
103
|
+
addr.sin_port = data->port;
|
|
104
|
+
|
|
105
|
+
if (bind(s0, (struct sockaddr*)&addr, sizeof(addr)) != -1)
|
|
106
|
+
break;
|
|
107
|
+
} while (++i < 100);
|
|
108
|
+
|
|
109
|
+
if (i >= 100) {
|
|
110
|
+
printf("Can't find good port, skipped\n");
|
|
111
|
+
data->stop = 1;
|
|
112
|
+
signal_var(&recv_thread_ready);
|
|
113
|
+
goto out;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
ret = listen(s0, 128);
|
|
117
|
+
assert(ret != -1);
|
|
118
|
+
|
|
119
|
+
signal_var(&recv_thread_ready);
|
|
120
|
+
|
|
121
|
+
struct io_uring_sqe *sqe;
|
|
122
|
+
|
|
123
|
+
sqe = io_uring_get_sqe(&ring);
|
|
124
|
+
assert(sqe != NULL);
|
|
125
|
+
|
|
126
|
+
io_uring_prep_accept(sqe, s0, NULL, NULL, 0);
|
|
127
|
+
sqe->flags |= IOSQE_IO_LINK;
|
|
128
|
+
sqe->user_data = 1;
|
|
129
|
+
|
|
130
|
+
sqe = io_uring_get_sqe(&ring);
|
|
131
|
+
assert(sqe != NULL);
|
|
132
|
+
|
|
133
|
+
struct __kernel_timespec ts;
|
|
134
|
+
ts.tv_sec = data->timeout / 1000000000;
|
|
135
|
+
ts.tv_nsec = data->timeout % 1000000000;
|
|
136
|
+
io_uring_prep_link_timeout(sqe, &ts, 0);
|
|
137
|
+
sqe->user_data = 2;
|
|
138
|
+
|
|
139
|
+
ret = io_uring_submit(&ring);
|
|
140
|
+
assert(ret == 2);
|
|
141
|
+
|
|
142
|
+
for (i = 0; i < 2; i++) {
|
|
143
|
+
struct io_uring_cqe *cqe;
|
|
144
|
+
int idx;
|
|
145
|
+
|
|
146
|
+
if (io_uring_wait_cqe(&ring, &cqe)) {
|
|
147
|
+
fprintf(stderr, "wait cqe failed\n");
|
|
148
|
+
goto err;
|
|
149
|
+
}
|
|
150
|
+
idx = cqe->user_data - 1;
|
|
151
|
+
if (cqe->res != data->expected[idx]) {
|
|
152
|
+
if (cqe->res > 0 && data->just_positive[idx])
|
|
153
|
+
goto ok;
|
|
154
|
+
if (cqe->res == -EBADF) {
|
|
155
|
+
fprintf(stdout, "Accept not supported, skipping\n");
|
|
156
|
+
data->stop = 1;
|
|
157
|
+
goto out;
|
|
158
|
+
}
|
|
159
|
+
fprintf(stderr, "cqe %" PRIu64 " got %d, wanted %d\n",
|
|
160
|
+
(uint64_t) cqe->user_data, cqe->res,
|
|
161
|
+
data->expected[idx]);
|
|
162
|
+
goto err;
|
|
163
|
+
}
|
|
164
|
+
ok:
|
|
165
|
+
if (cqe->user_data == 1 && cqe->res > 0)
|
|
166
|
+
close(cqe->res);
|
|
167
|
+
|
|
168
|
+
io_uring_cqe_seen(&ring, cqe);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
signal_var(&recv_thread_done);
|
|
172
|
+
|
|
173
|
+
out:
|
|
174
|
+
close(s0);
|
|
175
|
+
return NULL;
|
|
176
|
+
err:
|
|
177
|
+
close(s0);
|
|
178
|
+
return (void *) 1;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
static int test_accept_timeout(int do_connect, unsigned long timeout)
|
|
182
|
+
{
|
|
183
|
+
struct io_uring ring;
|
|
184
|
+
struct io_uring_params p = {};
|
|
185
|
+
pthread_t t1, t2;
|
|
186
|
+
struct data d;
|
|
187
|
+
void *tret;
|
|
188
|
+
int ret, fast_poll;
|
|
189
|
+
|
|
190
|
+
ret = io_uring_queue_init_params(1, &ring, &p);
|
|
191
|
+
if (ret) {
|
|
192
|
+
fprintf(stderr, "queue_init: %d\n", ret);
|
|
193
|
+
return 1;
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
fast_poll = (p.features & IORING_FEAT_FAST_POLL) != 0;
|
|
197
|
+
io_uring_queue_exit(&ring);
|
|
198
|
+
|
|
199
|
+
recv_thread_ready = 0;
|
|
200
|
+
recv_thread_done = 0;
|
|
201
|
+
|
|
202
|
+
memset(&d, 0, sizeof(d));
|
|
203
|
+
d.timeout = timeout;
|
|
204
|
+
if (!do_connect) {
|
|
205
|
+
if (fast_poll) {
|
|
206
|
+
d.expected[0] = -ECANCELED;
|
|
207
|
+
d.expected[1] = -ETIME;
|
|
208
|
+
} else {
|
|
209
|
+
d.expected[0] = -EINTR;
|
|
210
|
+
d.expected[1] = -EALREADY;
|
|
211
|
+
}
|
|
212
|
+
} else {
|
|
213
|
+
d.expected[0] = -1U;
|
|
214
|
+
d.just_positive[0] = 1;
|
|
215
|
+
d.expected[1] = -ECANCELED;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
pthread_create(&t1, NULL, recv_thread, &d);
|
|
219
|
+
|
|
220
|
+
if (do_connect)
|
|
221
|
+
pthread_create(&t2, NULL, send_thread, &d);
|
|
222
|
+
|
|
223
|
+
pthread_join(t1, &tret);
|
|
224
|
+
if (tret)
|
|
225
|
+
ret++;
|
|
226
|
+
|
|
227
|
+
if (do_connect) {
|
|
228
|
+
pthread_join(t2, &tret);
|
|
229
|
+
if (tret)
|
|
230
|
+
ret++;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
return ret;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
int main(int argc, char *argv[])
|
|
237
|
+
{
|
|
238
|
+
if (argc > 1)
|
|
239
|
+
return 0;
|
|
240
|
+
if (test_accept_timeout(0, 200000000)) {
|
|
241
|
+
fprintf(stderr, "accept timeout 0 failed\n");
|
|
242
|
+
return 1;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
if (test_accept_timeout(1, 1000000000)) {
|
|
246
|
+
fprintf(stderr, "accept and connect timeout 0 failed\n");
|
|
247
|
+
return 1;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
return 0;
|
|
251
|
+
}
|
|
@@ -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
|
+
}
|