@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,476 @@
|
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
|
2
|
+
/*
|
|
3
|
+
* Check that IORING_OP_ACCEPT works, and send some data across to verify we
|
|
4
|
+
* didn't get a junk fd.
|
|
5
|
+
*/
|
|
6
|
+
#include <stdio.h>
|
|
7
|
+
#include <stdlib.h>
|
|
8
|
+
#include <stdint.h>
|
|
9
|
+
#include <assert.h>
|
|
10
|
+
|
|
11
|
+
#include <errno.h>
|
|
12
|
+
#include <fcntl.h>
|
|
13
|
+
#include <unistd.h>
|
|
14
|
+
#include <sys/socket.h>
|
|
15
|
+
#include <sys/time.h>
|
|
16
|
+
#include <sys/resource.h>
|
|
17
|
+
#include <sys/un.h>
|
|
18
|
+
#include <netinet/tcp.h>
|
|
19
|
+
#include <netinet/in.h>
|
|
20
|
+
|
|
21
|
+
#include "helpers.h"
|
|
22
|
+
#include "liburing.h"
|
|
23
|
+
|
|
24
|
+
static int no_accept;
|
|
25
|
+
|
|
26
|
+
struct data {
|
|
27
|
+
char buf[128];
|
|
28
|
+
struct iovec iov;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
static void queue_send(struct io_uring *ring, int fd)
|
|
32
|
+
{
|
|
33
|
+
struct io_uring_sqe *sqe;
|
|
34
|
+
struct data *d;
|
|
35
|
+
|
|
36
|
+
d = t_malloc(sizeof(*d));
|
|
37
|
+
d->iov.iov_base = d->buf;
|
|
38
|
+
d->iov.iov_len = sizeof(d->buf);
|
|
39
|
+
|
|
40
|
+
sqe = io_uring_get_sqe(ring);
|
|
41
|
+
io_uring_prep_writev(sqe, fd, &d->iov, 1, 0);
|
|
42
|
+
sqe->user_data = 1;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
static void queue_recv(struct io_uring *ring, int fd, bool fixed)
|
|
46
|
+
{
|
|
47
|
+
struct io_uring_sqe *sqe;
|
|
48
|
+
struct data *d;
|
|
49
|
+
|
|
50
|
+
d = t_malloc(sizeof(*d));
|
|
51
|
+
d->iov.iov_base = d->buf;
|
|
52
|
+
d->iov.iov_len = sizeof(d->buf);
|
|
53
|
+
|
|
54
|
+
sqe = io_uring_get_sqe(ring);
|
|
55
|
+
io_uring_prep_readv(sqe, fd, &d->iov, 1, 0);
|
|
56
|
+
sqe->user_data = 2;
|
|
57
|
+
if (fixed)
|
|
58
|
+
sqe->flags |= IOSQE_FIXED_FILE;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
static int accept_conn(struct io_uring *ring, int fd, bool fixed)
|
|
62
|
+
{
|
|
63
|
+
struct io_uring_sqe *sqe;
|
|
64
|
+
struct io_uring_cqe *cqe;
|
|
65
|
+
int ret, fixed_idx = 0;
|
|
66
|
+
|
|
67
|
+
sqe = io_uring_get_sqe(ring);
|
|
68
|
+
if (!fixed)
|
|
69
|
+
io_uring_prep_accept(sqe, fd, NULL, NULL, 0);
|
|
70
|
+
else
|
|
71
|
+
io_uring_prep_accept_direct(sqe, fd, NULL, NULL, 0, fixed_idx);
|
|
72
|
+
|
|
73
|
+
ret = io_uring_submit(ring);
|
|
74
|
+
assert(ret != -1);
|
|
75
|
+
|
|
76
|
+
ret = io_uring_wait_cqe(ring, &cqe);
|
|
77
|
+
assert(!ret);
|
|
78
|
+
ret = cqe->res;
|
|
79
|
+
io_uring_cqe_seen(ring, cqe);
|
|
80
|
+
|
|
81
|
+
if (fixed) {
|
|
82
|
+
if (ret > 0) {
|
|
83
|
+
close(ret);
|
|
84
|
+
return -EINVAL;
|
|
85
|
+
} else if (!ret) {
|
|
86
|
+
ret = fixed_idx;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
return ret;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
static int start_accept_listen(struct sockaddr_in *addr, int port_off)
|
|
93
|
+
{
|
|
94
|
+
int fd, ret;
|
|
95
|
+
|
|
96
|
+
fd = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
|
|
97
|
+
|
|
98
|
+
int32_t val = 1;
|
|
99
|
+
ret = setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
|
|
100
|
+
assert(ret != -1);
|
|
101
|
+
ret = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
|
|
102
|
+
assert(ret != -1);
|
|
103
|
+
|
|
104
|
+
struct sockaddr_in laddr;
|
|
105
|
+
|
|
106
|
+
if (!addr)
|
|
107
|
+
addr = &laddr;
|
|
108
|
+
|
|
109
|
+
addr->sin_family = AF_INET;
|
|
110
|
+
addr->sin_port = 0x1235 + port_off;
|
|
111
|
+
addr->sin_addr.s_addr = 0x0100007fU;
|
|
112
|
+
|
|
113
|
+
ret = bind(fd, (struct sockaddr*)addr, sizeof(*addr));
|
|
114
|
+
assert(ret != -1);
|
|
115
|
+
ret = listen(fd, 128);
|
|
116
|
+
assert(ret != -1);
|
|
117
|
+
|
|
118
|
+
return fd;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
static int test(struct io_uring *ring, int accept_should_error, bool fixed)
|
|
122
|
+
{
|
|
123
|
+
struct io_uring_cqe *cqe;
|
|
124
|
+
struct sockaddr_in addr;
|
|
125
|
+
uint32_t head, count = 0;
|
|
126
|
+
int ret, p_fd[2], done = 0;
|
|
127
|
+
|
|
128
|
+
int32_t val, recv_s0 = start_accept_listen(&addr, 0);
|
|
129
|
+
|
|
130
|
+
p_fd[1] = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
|
|
131
|
+
|
|
132
|
+
val = 1;
|
|
133
|
+
ret = setsockopt(p_fd[1], IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
|
|
134
|
+
assert(ret != -1);
|
|
135
|
+
|
|
136
|
+
int32_t flags = fcntl(p_fd[1], F_GETFL, 0);
|
|
137
|
+
assert(flags != -1);
|
|
138
|
+
|
|
139
|
+
flags |= O_NONBLOCK;
|
|
140
|
+
ret = fcntl(p_fd[1], F_SETFL, flags);
|
|
141
|
+
assert(ret != -1);
|
|
142
|
+
|
|
143
|
+
ret = connect(p_fd[1], (struct sockaddr*)&addr, sizeof(addr));
|
|
144
|
+
assert(ret == -1);
|
|
145
|
+
|
|
146
|
+
flags = fcntl(p_fd[1], F_GETFL, 0);
|
|
147
|
+
assert(flags != -1);
|
|
148
|
+
|
|
149
|
+
flags &= ~O_NONBLOCK;
|
|
150
|
+
ret = fcntl(p_fd[1], F_SETFL, flags);
|
|
151
|
+
assert(ret != -1);
|
|
152
|
+
|
|
153
|
+
p_fd[0] = accept_conn(ring, recv_s0, fixed);
|
|
154
|
+
if (p_fd[0] == -EINVAL) {
|
|
155
|
+
if (accept_should_error)
|
|
156
|
+
goto out;
|
|
157
|
+
if (fixed)
|
|
158
|
+
fprintf(stdout, "Fixed accept not supported, skipping\n");
|
|
159
|
+
else
|
|
160
|
+
fprintf(stdout, "Accept not supported, skipping\n");
|
|
161
|
+
no_accept = 1;
|
|
162
|
+
goto out;
|
|
163
|
+
} else if (p_fd[0] < 0) {
|
|
164
|
+
if (accept_should_error &&
|
|
165
|
+
(p_fd[0] == -EBADF || p_fd[0] == -EINVAL))
|
|
166
|
+
goto out;
|
|
167
|
+
fprintf(stderr, "Accept got %d\n", p_fd[0]);
|
|
168
|
+
goto err;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
queue_send(ring, p_fd[1]);
|
|
172
|
+
queue_recv(ring, p_fd[0], fixed);
|
|
173
|
+
|
|
174
|
+
ret = io_uring_submit_and_wait(ring, 2);
|
|
175
|
+
assert(ret != -1);
|
|
176
|
+
|
|
177
|
+
while (count < 2) {
|
|
178
|
+
io_uring_for_each_cqe(ring, head, cqe) {
|
|
179
|
+
if (cqe->res < 0) {
|
|
180
|
+
fprintf(stderr, "Got cqe res %d, user_data %i\n",
|
|
181
|
+
cqe->res, (int)cqe->user_data);
|
|
182
|
+
done = 1;
|
|
183
|
+
break;
|
|
184
|
+
}
|
|
185
|
+
assert(cqe->res == 128);
|
|
186
|
+
count++;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
assert(count <= 2);
|
|
190
|
+
io_uring_cq_advance(ring, count);
|
|
191
|
+
if (done)
|
|
192
|
+
goto err;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
out:
|
|
196
|
+
if (!fixed)
|
|
197
|
+
close(p_fd[0]);
|
|
198
|
+
close(p_fd[1]);
|
|
199
|
+
close(recv_s0);
|
|
200
|
+
return 0;
|
|
201
|
+
err:
|
|
202
|
+
if (!fixed)
|
|
203
|
+
close(p_fd[0]);
|
|
204
|
+
close(p_fd[1]);
|
|
205
|
+
close(recv_s0);
|
|
206
|
+
return 1;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
static void sig_alrm(int sig)
|
|
210
|
+
{
|
|
211
|
+
exit(0);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
static int test_accept_pending_on_exit(void)
|
|
215
|
+
{
|
|
216
|
+
struct io_uring m_io_uring;
|
|
217
|
+
struct io_uring_cqe *cqe;
|
|
218
|
+
struct io_uring_sqe *sqe;
|
|
219
|
+
int fd, ret;
|
|
220
|
+
|
|
221
|
+
ret = io_uring_queue_init(32, &m_io_uring, 0);
|
|
222
|
+
assert(ret >= 0);
|
|
223
|
+
|
|
224
|
+
fd = start_accept_listen(NULL, 0);
|
|
225
|
+
|
|
226
|
+
sqe = io_uring_get_sqe(&m_io_uring);
|
|
227
|
+
io_uring_prep_accept(sqe, fd, NULL, NULL, 0);
|
|
228
|
+
ret = io_uring_submit(&m_io_uring);
|
|
229
|
+
assert(ret != -1);
|
|
230
|
+
|
|
231
|
+
signal(SIGALRM, sig_alrm);
|
|
232
|
+
alarm(1);
|
|
233
|
+
ret = io_uring_wait_cqe(&m_io_uring, &cqe);
|
|
234
|
+
assert(!ret);
|
|
235
|
+
io_uring_cqe_seen(&m_io_uring, cqe);
|
|
236
|
+
|
|
237
|
+
io_uring_queue_exit(&m_io_uring);
|
|
238
|
+
return 0;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/*
|
|
242
|
+
* Test issue many accepts and see if we handle cancellation on exit
|
|
243
|
+
*/
|
|
244
|
+
static int test_accept_many(unsigned nr, unsigned usecs)
|
|
245
|
+
{
|
|
246
|
+
struct io_uring m_io_uring;
|
|
247
|
+
struct io_uring_cqe *cqe;
|
|
248
|
+
struct io_uring_sqe *sqe;
|
|
249
|
+
unsigned long cur_lim;
|
|
250
|
+
struct rlimit rlim;
|
|
251
|
+
int *fds, i, ret;
|
|
252
|
+
|
|
253
|
+
if (getrlimit(RLIMIT_NPROC, &rlim) < 0) {
|
|
254
|
+
perror("getrlimit");
|
|
255
|
+
return 1;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
cur_lim = rlim.rlim_cur;
|
|
259
|
+
rlim.rlim_cur = nr / 4;
|
|
260
|
+
|
|
261
|
+
if (setrlimit(RLIMIT_NPROC, &rlim) < 0) {
|
|
262
|
+
perror("setrlimit");
|
|
263
|
+
return 1;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
ret = io_uring_queue_init(2 * nr, &m_io_uring, 0);
|
|
267
|
+
assert(ret >= 0);
|
|
268
|
+
|
|
269
|
+
fds = t_calloc(nr, sizeof(int));
|
|
270
|
+
|
|
271
|
+
for (i = 0; i < nr; i++)
|
|
272
|
+
fds[i] = start_accept_listen(NULL, i);
|
|
273
|
+
|
|
274
|
+
for (i = 0; i < nr; i++) {
|
|
275
|
+
sqe = io_uring_get_sqe(&m_io_uring);
|
|
276
|
+
io_uring_prep_accept(sqe, fds[i], NULL, NULL, 0);
|
|
277
|
+
sqe->user_data = 1 + i;
|
|
278
|
+
ret = io_uring_submit(&m_io_uring);
|
|
279
|
+
assert(ret == 1);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
if (usecs)
|
|
283
|
+
usleep(usecs);
|
|
284
|
+
|
|
285
|
+
for (i = 0; i < nr; i++) {
|
|
286
|
+
if (io_uring_peek_cqe(&m_io_uring, &cqe))
|
|
287
|
+
break;
|
|
288
|
+
if (cqe->res != -ECANCELED) {
|
|
289
|
+
fprintf(stderr, "Expected cqe to be cancelled\n");
|
|
290
|
+
goto err;
|
|
291
|
+
}
|
|
292
|
+
io_uring_cqe_seen(&m_io_uring, cqe);
|
|
293
|
+
}
|
|
294
|
+
out:
|
|
295
|
+
rlim.rlim_cur = cur_lim;
|
|
296
|
+
if (setrlimit(RLIMIT_NPROC, &rlim) < 0) {
|
|
297
|
+
perror("setrlimit");
|
|
298
|
+
return 1;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
free(fds);
|
|
302
|
+
io_uring_queue_exit(&m_io_uring);
|
|
303
|
+
return 0;
|
|
304
|
+
err:
|
|
305
|
+
ret = 1;
|
|
306
|
+
goto out;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
static int test_accept_cancel(unsigned usecs)
|
|
310
|
+
{
|
|
311
|
+
struct io_uring m_io_uring;
|
|
312
|
+
struct io_uring_cqe *cqe;
|
|
313
|
+
struct io_uring_sqe *sqe;
|
|
314
|
+
int fd, i, ret;
|
|
315
|
+
|
|
316
|
+
ret = io_uring_queue_init(32, &m_io_uring, 0);
|
|
317
|
+
assert(ret >= 0);
|
|
318
|
+
|
|
319
|
+
fd = start_accept_listen(NULL, 0);
|
|
320
|
+
|
|
321
|
+
sqe = io_uring_get_sqe(&m_io_uring);
|
|
322
|
+
io_uring_prep_accept(sqe, fd, NULL, NULL, 0);
|
|
323
|
+
sqe->user_data = 1;
|
|
324
|
+
ret = io_uring_submit(&m_io_uring);
|
|
325
|
+
assert(ret == 1);
|
|
326
|
+
|
|
327
|
+
if (usecs)
|
|
328
|
+
usleep(usecs);
|
|
329
|
+
|
|
330
|
+
sqe = io_uring_get_sqe(&m_io_uring);
|
|
331
|
+
io_uring_prep_cancel(sqe, (void *) 1, 0);
|
|
332
|
+
sqe->user_data = 2;
|
|
333
|
+
ret = io_uring_submit(&m_io_uring);
|
|
334
|
+
assert(ret == 1);
|
|
335
|
+
|
|
336
|
+
for (i = 0; i < 2; i++) {
|
|
337
|
+
ret = io_uring_wait_cqe(&m_io_uring, &cqe);
|
|
338
|
+
assert(!ret);
|
|
339
|
+
/*
|
|
340
|
+
* Two cases here:
|
|
341
|
+
*
|
|
342
|
+
* 1) We cancel the accept4() before it got started, we should
|
|
343
|
+
* get '0' for the cancel request and '-ECANCELED' for the
|
|
344
|
+
* accept request.
|
|
345
|
+
* 2) We cancel the accept4() after it's already running, we
|
|
346
|
+
* should get '-EALREADY' for the cancel request and
|
|
347
|
+
* '-EINTR' for the accept request.
|
|
348
|
+
*/
|
|
349
|
+
if (cqe->user_data == 1) {
|
|
350
|
+
if (cqe->res != -EINTR && cqe->res != -ECANCELED) {
|
|
351
|
+
fprintf(stderr, "Cancelled accept got %d\n", cqe->res);
|
|
352
|
+
goto err;
|
|
353
|
+
}
|
|
354
|
+
} else if (cqe->user_data == 2) {
|
|
355
|
+
if (cqe->res != -EALREADY && cqe->res != 0) {
|
|
356
|
+
fprintf(stderr, "Cancel got %d\n", cqe->res);
|
|
357
|
+
goto err;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
io_uring_cqe_seen(&m_io_uring, cqe);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
io_uring_queue_exit(&m_io_uring);
|
|
364
|
+
return 0;
|
|
365
|
+
err:
|
|
366
|
+
io_uring_queue_exit(&m_io_uring);
|
|
367
|
+
return 1;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
static int test_accept(void)
|
|
371
|
+
{
|
|
372
|
+
struct io_uring m_io_uring;
|
|
373
|
+
int ret;
|
|
374
|
+
|
|
375
|
+
ret = io_uring_queue_init(32, &m_io_uring, 0);
|
|
376
|
+
assert(ret >= 0);
|
|
377
|
+
ret = test(&m_io_uring, 0, false);
|
|
378
|
+
io_uring_queue_exit(&m_io_uring);
|
|
379
|
+
return ret;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
static int test_accept_fixed(void)
|
|
383
|
+
{
|
|
384
|
+
struct io_uring m_io_uring;
|
|
385
|
+
int ret, fd = -1;
|
|
386
|
+
|
|
387
|
+
ret = io_uring_queue_init(32, &m_io_uring, 0);
|
|
388
|
+
assert(ret >= 0);
|
|
389
|
+
ret = io_uring_register_files(&m_io_uring, &fd, 1);
|
|
390
|
+
assert(ret == 0);
|
|
391
|
+
ret = test(&m_io_uring, 0, true);
|
|
392
|
+
io_uring_queue_exit(&m_io_uring);
|
|
393
|
+
return ret;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
static int test_accept_sqpoll(void)
|
|
397
|
+
{
|
|
398
|
+
struct io_uring m_io_uring;
|
|
399
|
+
struct io_uring_params p = { };
|
|
400
|
+
int ret, should_fail;
|
|
401
|
+
|
|
402
|
+
p.flags = IORING_SETUP_SQPOLL;
|
|
403
|
+
ret = t_create_ring_params(32, &m_io_uring, &p);
|
|
404
|
+
if (ret == T_SETUP_SKIP)
|
|
405
|
+
return 0;
|
|
406
|
+
else if (ret < 0)
|
|
407
|
+
return ret;
|
|
408
|
+
|
|
409
|
+
should_fail = 1;
|
|
410
|
+
if (p.features & IORING_FEAT_SQPOLL_NONFIXED)
|
|
411
|
+
should_fail = 0;
|
|
412
|
+
|
|
413
|
+
ret = test(&m_io_uring, should_fail, false);
|
|
414
|
+
io_uring_queue_exit(&m_io_uring);
|
|
415
|
+
return ret;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
int main(int argc, char *argv[])
|
|
419
|
+
{
|
|
420
|
+
int ret;
|
|
421
|
+
|
|
422
|
+
if (argc > 1)
|
|
423
|
+
return 0;
|
|
424
|
+
|
|
425
|
+
ret = test_accept();
|
|
426
|
+
if (ret) {
|
|
427
|
+
fprintf(stderr, "test_accept failed\n");
|
|
428
|
+
return ret;
|
|
429
|
+
}
|
|
430
|
+
if (no_accept)
|
|
431
|
+
return 0;
|
|
432
|
+
|
|
433
|
+
ret = test_accept_fixed();
|
|
434
|
+
if (ret) {
|
|
435
|
+
fprintf(stderr, "test_accept_fixed failed\n");
|
|
436
|
+
return ret;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
ret = test_accept_sqpoll();
|
|
440
|
+
if (ret) {
|
|
441
|
+
fprintf(stderr, "test_accept_sqpoll failed\n");
|
|
442
|
+
return ret;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
ret = test_accept_cancel(0);
|
|
446
|
+
if (ret) {
|
|
447
|
+
fprintf(stderr, "test_accept_cancel nodelay failed\n");
|
|
448
|
+
return ret;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
ret = test_accept_cancel(10000);
|
|
452
|
+
if (ret) {
|
|
453
|
+
fprintf(stderr, "test_accept_cancel delay failed\n");
|
|
454
|
+
return ret;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
ret = test_accept_many(128, 0);
|
|
458
|
+
if (ret) {
|
|
459
|
+
fprintf(stderr, "test_accept_many failed\n");
|
|
460
|
+
return ret;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
ret = test_accept_many(128, 100000);
|
|
464
|
+
if (ret) {
|
|
465
|
+
fprintf(stderr, "test_accept_many failed\n");
|
|
466
|
+
return ret;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
ret = test_accept_pending_on_exit();
|
|
470
|
+
if (ret) {
|
|
471
|
+
fprintf(stderr, "test_accept_pending_on_exit failed\n");
|
|
472
|
+
return ret;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
return 0;
|
|
476
|
+
}
|