@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.
Files changed (190) hide show
  1. package/binding.cc +66 -91
  2. package/deps/liburing/liburing/COPYING +502 -0
  3. package/deps/liburing/liburing/COPYING.GPL +339 -0
  4. package/deps/liburing/liburing/LICENSE +7 -0
  5. package/deps/liburing/liburing/Makefile +84 -0
  6. package/deps/liburing/liburing/Makefile.quiet +11 -0
  7. package/deps/liburing/liburing/README +46 -0
  8. package/deps/liburing/liburing/configure +420 -0
  9. package/deps/liburing/liburing/debian/README.Debian +7 -0
  10. package/deps/liburing/liburing/debian/changelog +27 -0
  11. package/deps/liburing/liburing/debian/compat +1 -0
  12. package/deps/liburing/liburing/debian/control +48 -0
  13. package/deps/liburing/liburing/debian/copyright +49 -0
  14. package/deps/liburing/liburing/debian/liburing-dev.install +4 -0
  15. package/deps/liburing/liburing/debian/liburing-dev.manpages +6 -0
  16. package/deps/liburing/liburing/debian/liburing1-udeb.install +1 -0
  17. package/deps/liburing/liburing/debian/liburing1.install +1 -0
  18. package/deps/liburing/liburing/debian/liburing1.symbols +32 -0
  19. package/deps/liburing/liburing/debian/patches/series +1 -0
  20. package/deps/liburing/liburing/debian/rules +81 -0
  21. package/deps/liburing/liburing/debian/source/format +1 -0
  22. package/deps/liburing/liburing/debian/source/local-options +2 -0
  23. package/deps/liburing/liburing/debian/source/options +1 -0
  24. package/deps/liburing/liburing/debian/watch +3 -0
  25. package/deps/liburing/liburing/examples/Makefile +29 -0
  26. package/deps/liburing/liburing/examples/io_uring-cp.c +279 -0
  27. package/deps/liburing/liburing/examples/io_uring-test.c +112 -0
  28. package/deps/liburing/liburing/examples/link-cp.c +193 -0
  29. package/deps/liburing/liburing/examples/ucontext-cp.c +273 -0
  30. package/deps/liburing/liburing/liburing.pc.in +12 -0
  31. package/deps/liburing/liburing/liburing.spec +66 -0
  32. package/deps/liburing/liburing/make-debs.sh +53 -0
  33. package/deps/liburing/liburing/man/io_uring.7 +736 -0
  34. package/deps/liburing/liburing/man/io_uring_enter.2 +1403 -0
  35. package/deps/liburing/liburing/man/io_uring_get_sqe.3 +37 -0
  36. package/deps/liburing/liburing/man/io_uring_queue_exit.3 +27 -0
  37. package/deps/liburing/liburing/man/io_uring_queue_init.3 +44 -0
  38. package/deps/liburing/liburing/man/io_uring_register.2 +605 -0
  39. package/deps/liburing/liburing/man/io_uring_setup.2 +515 -0
  40. package/deps/liburing/liburing/src/Makefile +76 -0
  41. package/deps/liburing/liburing/src/include/liburing/barrier.h +73 -0
  42. package/deps/liburing/liburing/src/include/liburing/io_uring.h +422 -0
  43. package/deps/liburing/liburing/src/include/liburing.h +775 -0
  44. package/deps/liburing/liburing/src/liburing.map +46 -0
  45. package/deps/liburing/liburing/src/queue.c +403 -0
  46. package/deps/liburing/liburing/src/register.c +299 -0
  47. package/deps/liburing/liburing/src/setup.c +356 -0
  48. package/deps/liburing/liburing/src/syscall.c +73 -0
  49. package/deps/liburing/liburing/src/syscall.h +20 -0
  50. package/deps/liburing/liburing/test/232c93d07b74-test.c +305 -0
  51. package/deps/liburing/liburing/test/35fa71a030ca-test.c +329 -0
  52. package/deps/liburing/liburing/test/500f9fbadef8-test.c +89 -0
  53. package/deps/liburing/liburing/test/7ad0e4b2f83c-test.c +93 -0
  54. package/deps/liburing/liburing/test/8a9973408177-test.c +106 -0
  55. package/deps/liburing/liburing/test/917257daa0fe-test.c +53 -0
  56. package/deps/liburing/liburing/test/Makefile +312 -0
  57. package/deps/liburing/liburing/test/a0908ae19763-test.c +58 -0
  58. package/deps/liburing/liburing/test/a4c0b3decb33-test.c +180 -0
  59. package/deps/liburing/liburing/test/accept-link.c +251 -0
  60. package/deps/liburing/liburing/test/accept-reuse.c +164 -0
  61. package/deps/liburing/liburing/test/accept-test.c +79 -0
  62. package/deps/liburing/liburing/test/accept.c +476 -0
  63. package/deps/liburing/liburing/test/across-fork.c +283 -0
  64. package/deps/liburing/liburing/test/b19062a56726-test.c +53 -0
  65. package/deps/liburing/liburing/test/b5837bd5311d-test.c +77 -0
  66. package/deps/liburing/liburing/test/ce593a6c480a-test.c +135 -0
  67. package/deps/liburing/liburing/test/close-opath.c +122 -0
  68. package/deps/liburing/liburing/test/config +10 -0
  69. package/deps/liburing/liburing/test/connect.c +398 -0
  70. package/deps/liburing/liburing/test/cq-full.c +96 -0
  71. package/deps/liburing/liburing/test/cq-overflow.c +294 -0
  72. package/deps/liburing/liburing/test/cq-peek-batch.c +102 -0
  73. package/deps/liburing/liburing/test/cq-ready.c +94 -0
  74. package/deps/liburing/liburing/test/cq-size.c +58 -0
  75. package/deps/liburing/liburing/test/d4ae271dfaae-test.c +96 -0
  76. package/deps/liburing/liburing/test/d77a67ed5f27-test.c +65 -0
  77. package/deps/liburing/liburing/test/defer.c +307 -0
  78. package/deps/liburing/liburing/test/double-poll-crash.c +186 -0
  79. package/deps/liburing/liburing/test/eeed8b54e0df-test.c +114 -0
  80. package/deps/liburing/liburing/test/empty-eownerdead.c +42 -0
  81. package/deps/liburing/liburing/test/eventfd-disable.c +151 -0
  82. package/deps/liburing/liburing/test/eventfd-ring.c +97 -0
  83. package/deps/liburing/liburing/test/eventfd.c +112 -0
  84. package/deps/liburing/liburing/test/fadvise.c +202 -0
  85. package/deps/liburing/liburing/test/fallocate.c +249 -0
  86. package/deps/liburing/liburing/test/fc2a85cb02ef-test.c +138 -0
  87. package/deps/liburing/liburing/test/file-register.c +843 -0
  88. package/deps/liburing/liburing/test/file-update.c +173 -0
  89. package/deps/liburing/liburing/test/files-exit-hang-poll.c +128 -0
  90. package/deps/liburing/liburing/test/files-exit-hang-timeout.c +134 -0
  91. package/deps/liburing/liburing/test/fixed-link.c +90 -0
  92. package/deps/liburing/liburing/test/fsync.c +224 -0
  93. package/deps/liburing/liburing/test/hardlink.c +136 -0
  94. package/deps/liburing/liburing/test/helpers.c +135 -0
  95. package/deps/liburing/liburing/test/helpers.h +67 -0
  96. package/deps/liburing/liburing/test/io-cancel.c +537 -0
  97. package/deps/liburing/liburing/test/io_uring_enter.c +296 -0
  98. package/deps/liburing/liburing/test/io_uring_register.c +664 -0
  99. package/deps/liburing/liburing/test/io_uring_setup.c +192 -0
  100. package/deps/liburing/liburing/test/iopoll.c +366 -0
  101. package/deps/liburing/liburing/test/lfs-openat-write.c +117 -0
  102. package/deps/liburing/liburing/test/lfs-openat.c +273 -0
  103. package/deps/liburing/liburing/test/link-timeout.c +1107 -0
  104. package/deps/liburing/liburing/test/link.c +496 -0
  105. package/deps/liburing/liburing/test/link_drain.c +229 -0
  106. package/deps/liburing/liburing/test/madvise.c +195 -0
  107. package/deps/liburing/liburing/test/mkdir.c +108 -0
  108. package/deps/liburing/liburing/test/multicqes_drain.c +383 -0
  109. package/deps/liburing/liburing/test/nop-all-sizes.c +107 -0
  110. package/deps/liburing/liburing/test/nop.c +115 -0
  111. package/deps/liburing/liburing/test/open-close.c +146 -0
  112. package/deps/liburing/liburing/test/openat2.c +240 -0
  113. package/deps/liburing/liburing/test/personality.c +204 -0
  114. package/deps/liburing/liburing/test/pipe-eof.c +81 -0
  115. package/deps/liburing/liburing/test/pipe-reuse.c +105 -0
  116. package/deps/liburing/liburing/test/poll-cancel-ton.c +139 -0
  117. package/deps/liburing/liburing/test/poll-cancel.c +135 -0
  118. package/deps/liburing/liburing/test/poll-link.c +227 -0
  119. package/deps/liburing/liburing/test/poll-many.c +208 -0
  120. package/deps/liburing/liburing/test/poll-mshot-update.c +273 -0
  121. package/deps/liburing/liburing/test/poll-ring.c +48 -0
  122. package/deps/liburing/liburing/test/poll-v-poll.c +353 -0
  123. package/deps/liburing/liburing/test/poll.c +109 -0
  124. package/deps/liburing/liburing/test/probe.c +137 -0
  125. package/deps/liburing/liburing/test/read-write.c +876 -0
  126. package/deps/liburing/liburing/test/register-restrictions.c +633 -0
  127. package/deps/liburing/liburing/test/rename.c +134 -0
  128. package/deps/liburing/liburing/test/ring-leak.c +173 -0
  129. package/deps/liburing/liburing/test/ring-leak2.c +249 -0
  130. package/deps/liburing/liburing/test/rsrc_tags.c +449 -0
  131. package/deps/liburing/liburing/test/runtests-loop.sh +16 -0
  132. package/deps/liburing/liburing/test/runtests.sh +170 -0
  133. package/deps/liburing/liburing/test/rw_merge_test.c +97 -0
  134. package/deps/liburing/liburing/test/self.c +91 -0
  135. package/deps/liburing/liburing/test/send_recv.c +291 -0
  136. package/deps/liburing/liburing/test/send_recvmsg.c +345 -0
  137. package/deps/liburing/liburing/test/sendmsg_fs_cve.c +198 -0
  138. package/deps/liburing/liburing/test/shared-wq.c +84 -0
  139. package/deps/liburing/liburing/test/short-read.c +75 -0
  140. package/deps/liburing/liburing/test/shutdown.c +163 -0
  141. package/deps/liburing/liburing/test/sigfd-deadlock.c +74 -0
  142. package/deps/liburing/liburing/test/socket-rw-eagain.c +156 -0
  143. package/deps/liburing/liburing/test/socket-rw.c +147 -0
  144. package/deps/liburing/liburing/test/splice.c +511 -0
  145. package/deps/liburing/liburing/test/sq-full-cpp.cc +45 -0
  146. package/deps/liburing/liburing/test/sq-full.c +45 -0
  147. package/deps/liburing/liburing/test/sq-poll-dup.c +200 -0
  148. package/deps/liburing/liburing/test/sq-poll-kthread.c +168 -0
  149. package/deps/liburing/liburing/test/sq-poll-share.c +137 -0
  150. package/deps/liburing/liburing/test/sq-space_left.c +159 -0
  151. package/deps/liburing/liburing/test/sqpoll-cancel-hang.c +159 -0
  152. package/deps/liburing/liburing/test/sqpoll-disable-exit.c +195 -0
  153. package/deps/liburing/liburing/test/sqpoll-exit-hang.c +77 -0
  154. package/deps/liburing/liburing/test/sqpoll-sleep.c +68 -0
  155. package/deps/liburing/liburing/test/statx.c +172 -0
  156. package/deps/liburing/liburing/test/stdout.c +232 -0
  157. package/deps/liburing/liburing/test/submit-link-fail.c +154 -0
  158. package/deps/liburing/liburing/test/submit-reuse.c +239 -0
  159. package/deps/liburing/liburing/test/symlink.c +116 -0
  160. package/deps/liburing/liburing/test/teardowns.c +58 -0
  161. package/deps/liburing/liburing/test/thread-exit.c +131 -0
  162. package/deps/liburing/liburing/test/timeout-new.c +246 -0
  163. package/deps/liburing/liburing/test/timeout-overflow.c +204 -0
  164. package/deps/liburing/liburing/test/timeout.c +1354 -0
  165. package/deps/liburing/liburing/test/unlink.c +111 -0
  166. package/deps/liburing/liburing/test/wakeup-hang.c +162 -0
  167. package/deps/liburing/liburing.gyp +20 -0
  168. package/deps/rocksdb/rocksdb/db/corruption_test.cc +62 -0
  169. package/deps/rocksdb/rocksdb/db/db_impl/db_impl.h +7 -62
  170. package/deps/rocksdb/rocksdb/db/db_impl/db_impl_files.cc +25 -11
  171. package/deps/rocksdb/rocksdb/db/db_impl/db_impl_open.cc +74 -155
  172. package/deps/rocksdb/rocksdb/db/db_impl/db_impl_secondary.cc +1 -2
  173. package/deps/rocksdb/rocksdb/db/db_impl/db_impl_secondary.h +2 -2
  174. package/deps/rocksdb/rocksdb/env/fs_posix.cc +13 -0
  175. package/deps/rocksdb/rocksdb/file/file_prefetch_buffer.cc +4 -2
  176. package/deps/rocksdb/rocksdb/file/file_prefetch_buffer.h +22 -4
  177. package/deps/rocksdb/rocksdb/file/prefetch_test.cc +5 -0
  178. package/deps/rocksdb/rocksdb/include/rocksdb/file_system.h +15 -0
  179. package/deps/rocksdb/rocksdb/include/rocksdb/statistics.h +5 -0
  180. package/deps/rocksdb/rocksdb/include/rocksdb/version.h +1 -1
  181. package/deps/rocksdb/rocksdb/monitoring/statistics.cc +3 -0
  182. package/deps/rocksdb/rocksdb/monitoring/stats_history_test.cc +3 -7
  183. package/deps/rocksdb/rocksdb/table/block_based/block_based_table_reader.h +2 -1
  184. package/deps/rocksdb/rocksdb/table/block_based/block_based_table_reader_test.cc +44 -29
  185. package/deps/rocksdb/rocksdb.gyp +4 -3
  186. package/package.json +1 -1
  187. package/prebuilds/darwin-arm64/node.napi.node +0 -0
  188. package/prebuilds/darwin-x64/node.napi.node +0 -0
  189. package/prebuilds/linux-x64/node.napi.node +0 -0
  190. package/prebuilds/prebuilds/linux-x64/node.napi.node +0 -0
@@ -0,0 +1,227 @@
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 is_mask[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
+
53
+ wait_for_var(&recv_thread_ready);
54
+
55
+ int s0 = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
56
+ assert(s0 != -1);
57
+
58
+ struct sockaddr_in addr;
59
+
60
+ addr.sin_family = AF_INET;
61
+ addr.sin_port = data->port;
62
+ addr.sin_addr.s_addr = 0x0100007fU;
63
+
64
+ if (connect(s0, (struct sockaddr*)&addr, sizeof(addr)) != -1)
65
+ wait_for_var(&recv_thread_done);
66
+
67
+ close(s0);
68
+ return 0;
69
+ }
70
+
71
+ void *recv_thread(void *arg)
72
+ {
73
+ struct data *data = arg;
74
+ struct io_uring_sqe *sqe;
75
+ struct io_uring ring;
76
+ int i, ret;
77
+
78
+ ret = io_uring_queue_init(8, &ring, 0);
79
+ assert(ret == 0);
80
+
81
+ int s0 = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
82
+ assert(s0 != -1);
83
+
84
+ int32_t val = 1;
85
+ ret = setsockopt(s0, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
86
+ assert(ret != -1);
87
+ ret = setsockopt(s0, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
88
+ assert(ret != -1);
89
+
90
+ struct sockaddr_in addr;
91
+
92
+ addr.sin_family = AF_INET;
93
+ addr.sin_addr.s_addr = 0x0100007fU;
94
+
95
+ i = 0;
96
+ do {
97
+ data->port = 1025 + (rand() % 64510);
98
+ addr.sin_port = data->port;
99
+
100
+ if (bind(s0, (struct sockaddr*)&addr, sizeof(addr)) != -1)
101
+ break;
102
+ } while (++i < 100);
103
+
104
+ if (i >= 100) {
105
+ fprintf(stderr, "Can't find good port, skipped\n");
106
+ data->stop = 1;
107
+ signal_var(&recv_thread_ready);
108
+ goto out;
109
+ }
110
+
111
+ ret = listen(s0, 128);
112
+ assert(ret != -1);
113
+
114
+ signal_var(&recv_thread_ready);
115
+
116
+ sqe = io_uring_get_sqe(&ring);
117
+ assert(sqe != NULL);
118
+
119
+ io_uring_prep_poll_add(sqe, s0, POLLIN | POLLHUP | POLLERR);
120
+ sqe->flags |= IOSQE_IO_LINK;
121
+ sqe->user_data = 1;
122
+
123
+ sqe = io_uring_get_sqe(&ring);
124
+ assert(sqe != NULL);
125
+
126
+ struct __kernel_timespec ts;
127
+ ts.tv_sec = data->timeout / 1000000000;
128
+ ts.tv_nsec = data->timeout % 1000000000;
129
+ io_uring_prep_link_timeout(sqe, &ts, 0);
130
+ sqe->user_data = 2;
131
+
132
+ ret = io_uring_submit(&ring);
133
+ assert(ret == 2);
134
+
135
+ for (i = 0; i < 2; i++) {
136
+ struct io_uring_cqe *cqe;
137
+ int idx;
138
+
139
+ if (io_uring_wait_cqe(&ring, &cqe)) {
140
+ fprintf(stderr, "wait cqe failed\n");
141
+ goto err;
142
+ }
143
+ idx = cqe->user_data - 1;
144
+ if (data->is_mask[idx] && !(data->expected[idx] & cqe->res)) {
145
+ fprintf(stderr, "cqe %" PRIu64 " got %x, wanted mask %x\n",
146
+ (uint64_t) cqe->user_data, cqe->res,
147
+ data->expected[idx]);
148
+ goto err;
149
+ } else if (!data->is_mask[idx] && cqe->res != data->expected[idx]) {
150
+ fprintf(stderr, "cqe %" PRIu64 " got %d, wanted %d\n",
151
+ (uint64_t) cqe->user_data, cqe->res,
152
+ data->expected[idx]);
153
+ goto err;
154
+ }
155
+ io_uring_cqe_seen(&ring, cqe);
156
+ }
157
+
158
+ out:
159
+ signal_var(&recv_thread_done);
160
+ close(s0);
161
+ io_uring_queue_exit(&ring);
162
+ return NULL;
163
+ err:
164
+ signal_var(&recv_thread_done);
165
+ close(s0);
166
+ io_uring_queue_exit(&ring);
167
+ return (void *) 1;
168
+ }
169
+
170
+ static int test_poll_timeout(int do_connect, unsigned long timeout)
171
+ {
172
+ pthread_t t1, t2;
173
+ struct data d;
174
+ void *tret;
175
+ int ret = 0;
176
+
177
+ recv_thread_ready = 0;
178
+ recv_thread_done = 0;
179
+
180
+ memset(&d, 0, sizeof(d));
181
+ d.timeout = timeout;
182
+ if (!do_connect) {
183
+ d.expected[0] = -ECANCELED;
184
+ d.expected[1] = -ETIME;
185
+ } else {
186
+ d.expected[0] = POLLIN;
187
+ d.is_mask[0] = 1;
188
+ d.expected[1] = -ECANCELED;
189
+ }
190
+
191
+ pthread_create(&t1, NULL, recv_thread, &d);
192
+
193
+ if (do_connect)
194
+ pthread_create(&t2, NULL, send_thread, &d);
195
+
196
+ pthread_join(t1, &tret);
197
+ if (tret)
198
+ ret++;
199
+
200
+ if (do_connect) {
201
+ pthread_join(t2, &tret);
202
+ if (tret)
203
+ ret++;
204
+ }
205
+
206
+ return ret;
207
+ }
208
+
209
+ int main(int argc, char *argv[])
210
+ {
211
+ if (argc > 1)
212
+ return 0;
213
+
214
+ srand(getpid());
215
+
216
+ if (test_poll_timeout(0, 200000000)) {
217
+ fprintf(stderr, "poll timeout 0 failed\n");
218
+ return 1;
219
+ }
220
+
221
+ if (test_poll_timeout(1, 1000000000)) {
222
+ fprintf(stderr, "poll timeout 1 failed\n");
223
+ return 1;
224
+ }
225
+
226
+ return 0;
227
+ }
@@ -0,0 +1,208 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: test many files being polled for
4
+ *
5
+ */
6
+ #include <errno.h>
7
+ #include <stdio.h>
8
+ #include <unistd.h>
9
+ #include <stdlib.h>
10
+ #include <string.h>
11
+ #include <signal.h>
12
+ #include <sys/poll.h>
13
+ #include <sys/resource.h>
14
+ #include <fcntl.h>
15
+
16
+ #include "liburing.h"
17
+
18
+ #define NFILES 5000
19
+ #define BATCH 500
20
+ #define NLOOPS 1000
21
+
22
+ #define RING_SIZE 512
23
+
24
+ struct p {
25
+ int fd[2];
26
+ int triggered;
27
+ };
28
+
29
+ static struct p p[NFILES];
30
+
31
+ static int arm_poll(struct io_uring *ring, int off)
32
+ {
33
+ struct io_uring_sqe *sqe;
34
+
35
+ sqe = io_uring_get_sqe(ring);
36
+ if (!sqe) {
37
+ fprintf(stderr, "failed getting sqe\n");
38
+ return 1;
39
+ }
40
+
41
+ io_uring_prep_poll_add(sqe, p[off].fd[0], POLLIN);
42
+ sqe->user_data = off;
43
+ return 0;
44
+ }
45
+
46
+ static int reap_polls(struct io_uring *ring)
47
+ {
48
+ struct io_uring_cqe *cqe;
49
+ int i, ret, off;
50
+ char c;
51
+
52
+ for (i = 0; i < BATCH; i++) {
53
+ ret = io_uring_wait_cqe(ring, &cqe);
54
+ if (ret) {
55
+ fprintf(stderr, "wait cqe %d\n", ret);
56
+ return ret;
57
+ }
58
+ off = cqe->user_data;
59
+ p[off].triggered = 0;
60
+ ret = read(p[off].fd[0], &c, 1);
61
+ if (ret != 1) {
62
+ fprintf(stderr, "read got %d/%d\n", ret, errno);
63
+ break;
64
+ }
65
+ if (arm_poll(ring, off))
66
+ break;
67
+ io_uring_cqe_seen(ring, cqe);
68
+ }
69
+
70
+ if (i != BATCH) {
71
+ fprintf(stderr, "gave up at %d\n", i);
72
+ return 1;
73
+ }
74
+
75
+ ret = io_uring_submit(ring);
76
+ if (ret != BATCH) {
77
+ fprintf(stderr, "submitted %d, %d\n", ret, BATCH);
78
+ return 1;
79
+ }
80
+
81
+ return 0;
82
+ }
83
+
84
+ static int trigger_polls(void)
85
+ {
86
+ char c = 89;
87
+ int i, ret;
88
+
89
+ for (i = 0; i < BATCH; i++) {
90
+ int off;
91
+
92
+ do {
93
+ off = rand() % NFILES;
94
+ if (!p[off].triggered)
95
+ break;
96
+ } while (1);
97
+
98
+ p[off].triggered = 1;
99
+ ret = write(p[off].fd[1], &c, 1);
100
+ if (ret != 1) {
101
+ fprintf(stderr, "write got %d/%d\n", ret, errno);
102
+ return 1;
103
+ }
104
+ }
105
+
106
+ return 0;
107
+ }
108
+
109
+ static int arm_polls(struct io_uring *ring)
110
+ {
111
+ int ret, to_arm = NFILES, i, off;
112
+
113
+ off = 0;
114
+ while (to_arm) {
115
+ int this_arm;
116
+
117
+ this_arm = to_arm;
118
+ if (this_arm > RING_SIZE)
119
+ this_arm = RING_SIZE;
120
+
121
+ for (i = 0; i < this_arm; i++) {
122
+ if (arm_poll(ring, off)) {
123
+ fprintf(stderr, "arm failed at %d\n", off);
124
+ return 1;
125
+ }
126
+ off++;
127
+ }
128
+
129
+ ret = io_uring_submit(ring);
130
+ if (ret != this_arm) {
131
+ fprintf(stderr, "submitted %d, %d\n", ret, this_arm);
132
+ return 1;
133
+ }
134
+ to_arm -= this_arm;
135
+ }
136
+
137
+ return 0;
138
+ }
139
+
140
+ int main(int argc, char *argv[])
141
+ {
142
+ struct io_uring ring;
143
+ struct io_uring_params params = { };
144
+ struct rlimit rlim;
145
+ int i, ret;
146
+
147
+ if (argc > 1)
148
+ return 0;
149
+
150
+ if (getrlimit(RLIMIT_NOFILE, &rlim) < 0) {
151
+ perror("getrlimit");
152
+ goto err_noring;
153
+ }
154
+
155
+ if (rlim.rlim_cur < (2 * NFILES + 5)) {
156
+ rlim.rlim_cur = (2 * NFILES + 5);
157
+ rlim.rlim_max = rlim.rlim_cur;
158
+ if (setrlimit(RLIMIT_NOFILE, &rlim) < 0) {
159
+ if (errno == EPERM)
160
+ goto err_nofail;
161
+ perror("setrlimit");
162
+ goto err_noring;
163
+ }
164
+ }
165
+
166
+ for (i = 0; i < NFILES; i++) {
167
+ if (pipe(p[i].fd) < 0) {
168
+ perror("pipe");
169
+ goto err_noring;
170
+ }
171
+ }
172
+
173
+ params.flags = IORING_SETUP_CQSIZE;
174
+ params.cq_entries = 4096;
175
+ ret = io_uring_queue_init_params(RING_SIZE, &ring, &params);
176
+ if (ret) {
177
+ if (ret == -EINVAL) {
178
+ fprintf(stdout, "No CQSIZE, trying without\n");
179
+ ret = io_uring_queue_init(RING_SIZE, &ring, 0);
180
+ if (ret) {
181
+ fprintf(stderr, "ring setup failed: %d\n", ret);
182
+ return 1;
183
+ }
184
+ }
185
+ }
186
+
187
+ if (arm_polls(&ring))
188
+ goto err;
189
+
190
+ for (i = 0; i < NLOOPS; i++) {
191
+ trigger_polls();
192
+ ret = reap_polls(&ring);
193
+ if (ret)
194
+ goto err;
195
+ }
196
+
197
+ io_uring_queue_exit(&ring);
198
+ return 0;
199
+ err:
200
+ io_uring_queue_exit(&ring);
201
+ err_noring:
202
+ fprintf(stderr, "poll-many failed\n");
203
+ return 1;
204
+ err_nofail:
205
+ fprintf(stderr, "poll-many: not enough files available (and not root), "
206
+ "skipped\n");
207
+ return 0;
208
+ }
@@ -0,0 +1,273 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: test many files being polled for and updated
4
+ *
5
+ */
6
+ #include <errno.h>
7
+ #include <stdio.h>
8
+ #include <unistd.h>
9
+ #include <stdlib.h>
10
+ #include <string.h>
11
+ #include <signal.h>
12
+ #include <sys/poll.h>
13
+ #include <sys/resource.h>
14
+ #include <fcntl.h>
15
+ #include <pthread.h>
16
+
17
+ #include "liburing.h"
18
+
19
+ #define NFILES 5000
20
+ #define BATCH 500
21
+ #define NLOOPS 1000
22
+
23
+ #define RING_SIZE 512
24
+
25
+ struct p {
26
+ int fd[2];
27
+ int triggered;
28
+ };
29
+
30
+ static struct p p[NFILES];
31
+
32
+ static int has_poll_update(void)
33
+ {
34
+ struct io_uring ring;
35
+ struct io_uring_cqe *cqe;
36
+ struct io_uring_sqe *sqe;
37
+ bool has_update = false;
38
+ int ret;
39
+
40
+ ret = io_uring_queue_init(8, &ring, 0);
41
+ if (ret)
42
+ return -1;
43
+
44
+ sqe = io_uring_get_sqe(&ring);
45
+ io_uring_prep_poll_update(sqe, NULL, NULL, POLLIN, IORING_TIMEOUT_UPDATE);
46
+
47
+ ret = io_uring_submit(&ring);
48
+ if (ret != 1)
49
+ return -1;
50
+
51
+ ret = io_uring_wait_cqe(&ring, &cqe);
52
+ if (!ret) {
53
+ if (cqe->res == -ENOENT)
54
+ has_update = true;
55
+ else if (cqe->res != -EINVAL)
56
+ return -1;
57
+ io_uring_cqe_seen(&ring, cqe);
58
+ }
59
+ io_uring_queue_exit(&ring);
60
+ return has_update;
61
+ }
62
+
63
+ static int arm_poll(struct io_uring *ring, int off)
64
+ {
65
+ struct io_uring_sqe *sqe;
66
+
67
+ sqe = io_uring_get_sqe(ring);
68
+ if (!sqe) {
69
+ fprintf(stderr, "failed getting sqe\n");
70
+ return 1;
71
+ }
72
+
73
+ io_uring_prep_poll_multishot(sqe, p[off].fd[0], POLLIN);
74
+ sqe->user_data = off;
75
+ return 0;
76
+ }
77
+
78
+ static int reap_polls(struct io_uring *ring)
79
+ {
80
+ struct io_uring_cqe *cqe;
81
+ int i, ret, off;
82
+ char c;
83
+
84
+ for (i = 0; i < BATCH; i++) {
85
+ struct io_uring_sqe *sqe;
86
+
87
+ sqe = io_uring_get_sqe(ring);
88
+ /* update event */
89
+ io_uring_prep_poll_update(sqe, (void *)(unsigned long)i, NULL,
90
+ POLLIN, IORING_POLL_UPDATE_EVENTS);
91
+ sqe->user_data = 0x12345678;
92
+ }
93
+
94
+ ret = io_uring_submit(ring);
95
+ if (ret != BATCH) {
96
+ fprintf(stderr, "submitted %d, %d\n", ret, BATCH);
97
+ return 1;
98
+ }
99
+
100
+ for (i = 0; i < 2 * BATCH; i++) {
101
+ ret = io_uring_wait_cqe(ring, &cqe);
102
+ if (ret) {
103
+ fprintf(stderr, "wait cqe %d\n", ret);
104
+ return ret;
105
+ }
106
+ off = cqe->user_data;
107
+ if (off == 0x12345678)
108
+ goto seen;
109
+ ret = read(p[off].fd[0], &c, 1);
110
+ if (ret != 1) {
111
+ if (ret == -1 && errno == EAGAIN)
112
+ goto seen;
113
+ fprintf(stderr, "read got %d/%d\n", ret, errno);
114
+ break;
115
+ }
116
+ seen:
117
+ io_uring_cqe_seen(ring, cqe);
118
+ }
119
+
120
+ if (i != 2 * BATCH) {
121
+ fprintf(stderr, "gave up at %d\n", i);
122
+ return 1;
123
+ }
124
+
125
+ return 0;
126
+ }
127
+
128
+ static int trigger_polls(void)
129
+ {
130
+ char c = 89;
131
+ int i, ret;
132
+
133
+ for (i = 0; i < BATCH; i++) {
134
+ int off;
135
+
136
+ do {
137
+ off = rand() % NFILES;
138
+ if (!p[off].triggered)
139
+ break;
140
+ } while (1);
141
+
142
+ p[off].triggered = 1;
143
+ ret = write(p[off].fd[1], &c, 1);
144
+ if (ret != 1) {
145
+ fprintf(stderr, "write got %d/%d\n", ret, errno);
146
+ return 1;
147
+ }
148
+ }
149
+
150
+ return 0;
151
+ }
152
+
153
+ static void *trigger_polls_fn(void *data)
154
+ {
155
+ trigger_polls();
156
+ return NULL;
157
+ }
158
+
159
+ static int arm_polls(struct io_uring *ring)
160
+ {
161
+ int ret, to_arm = NFILES, i, off;
162
+
163
+ off = 0;
164
+ while (to_arm) {
165
+ int this_arm;
166
+
167
+ this_arm = to_arm;
168
+ if (this_arm > RING_SIZE)
169
+ this_arm = RING_SIZE;
170
+
171
+ for (i = 0; i < this_arm; i++) {
172
+ if (arm_poll(ring, off)) {
173
+ fprintf(stderr, "arm failed at %d\n", off);
174
+ return 1;
175
+ }
176
+ off++;
177
+ }
178
+
179
+ ret = io_uring_submit(ring);
180
+ if (ret != this_arm) {
181
+ fprintf(stderr, "submitted %d, %d\n", ret, this_arm);
182
+ return 1;
183
+ }
184
+ to_arm -= this_arm;
185
+ }
186
+
187
+ return 0;
188
+ }
189
+
190
+ int main(int argc, char *argv[])
191
+ {
192
+ struct io_uring ring;
193
+ struct io_uring_params params = { };
194
+ struct rlimit rlim;
195
+ pthread_t thread;
196
+ int i, j, ret;
197
+
198
+ if (argc > 1)
199
+ return 0;
200
+
201
+ ret = has_poll_update();
202
+ if (ret < 0) {
203
+ fprintf(stderr, "poll update check failed %i\n", ret);
204
+ return -1;
205
+ } else if (!ret) {
206
+ fprintf(stderr, "no poll update, skip\n");
207
+ return 0;
208
+ }
209
+
210
+ if (getrlimit(RLIMIT_NOFILE, &rlim) < 0) {
211
+ perror("getrlimit");
212
+ goto err_noring;
213
+ }
214
+
215
+ if (rlim.rlim_cur < (2 * NFILES + 5)) {
216
+ rlim.rlim_cur = (2 * NFILES + 5);
217
+ rlim.rlim_max = rlim.rlim_cur;
218
+ if (setrlimit(RLIMIT_NOFILE, &rlim) < 0) {
219
+ if (errno == EPERM)
220
+ goto err_nofail;
221
+ perror("setrlimit");
222
+ goto err_noring;
223
+ }
224
+ }
225
+
226
+ for (i = 0; i < NFILES; i++) {
227
+ if (pipe(p[i].fd) < 0) {
228
+ perror("pipe");
229
+ goto err_noring;
230
+ }
231
+ fcntl(p[i].fd[0], F_SETFL, O_NONBLOCK);
232
+ }
233
+
234
+ params.flags = IORING_SETUP_CQSIZE;
235
+ params.cq_entries = 4096;
236
+ ret = io_uring_queue_init_params(RING_SIZE, &ring, &params);
237
+ if (ret) {
238
+ if (ret == -EINVAL) {
239
+ fprintf(stdout, "No CQSIZE, trying without\n");
240
+ ret = io_uring_queue_init(RING_SIZE, &ring, 0);
241
+ if (ret) {
242
+ fprintf(stderr, "ring setup failed: %d\n", ret);
243
+ return 1;
244
+ }
245
+ }
246
+ }
247
+
248
+ if (arm_polls(&ring))
249
+ goto err;
250
+
251
+ for (i = 0; i < NLOOPS; i++) {
252
+ pthread_create(&thread, NULL, trigger_polls_fn, NULL);
253
+ ret = reap_polls(&ring);
254
+ if (ret)
255
+ goto err;
256
+ pthread_join(thread, NULL);
257
+
258
+ for (j = 0; j < NFILES; j++)
259
+ p[j].triggered = 0;
260
+ }
261
+
262
+ io_uring_queue_exit(&ring);
263
+ return 0;
264
+ err:
265
+ io_uring_queue_exit(&ring);
266
+ err_noring:
267
+ fprintf(stderr, "poll-many failed\n");
268
+ return 1;
269
+ err_nofail:
270
+ fprintf(stderr, "poll-many: not enough files available (and not root), "
271
+ "skipped\n");
272
+ return 0;
273
+ }