polyphony 0.85 → 0.86

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +1 -1
  4. data/ext/polyphony/io_extensions.c +2 -3
  5. data/lib/polyphony/version.rb +1 -1
  6. data/polyphony.gemspec +1 -1
  7. data/test/test_backend.rb +1 -1
  8. data/test/test_signal.rb +3 -3
  9. data/vendor/liburing/.github/pull_request_template.md +86 -0
  10. data/vendor/liburing/.github/workflows/build.yml +85 -0
  11. data/vendor/liburing/.github/workflows/shellcheck.yml +20 -0
  12. data/vendor/liburing/.gitignore +149 -0
  13. data/vendor/liburing/COPYING +502 -0
  14. data/vendor/liburing/COPYING.GPL +339 -0
  15. data/vendor/liburing/LICENSE +7 -0
  16. data/vendor/liburing/Makefile +82 -0
  17. data/vendor/liburing/Makefile.common +5 -0
  18. data/vendor/liburing/Makefile.quiet +11 -0
  19. data/vendor/liburing/README +46 -0
  20. data/vendor/liburing/configure +486 -0
  21. data/vendor/liburing/debian/README.Debian +7 -0
  22. data/vendor/liburing/debian/changelog +27 -0
  23. data/vendor/liburing/debian/compat +1 -0
  24. data/vendor/liburing/debian/control +48 -0
  25. data/vendor/liburing/debian/copyright +49 -0
  26. data/vendor/liburing/debian/liburing-dev.install +4 -0
  27. data/vendor/liburing/debian/liburing-dev.manpages +6 -0
  28. data/vendor/liburing/debian/liburing1-udeb.install +1 -0
  29. data/vendor/liburing/debian/liburing1.install +1 -0
  30. data/vendor/liburing/debian/liburing1.symbols +32 -0
  31. data/vendor/liburing/debian/patches/series +1 -0
  32. data/vendor/liburing/debian/rules +81 -0
  33. data/vendor/liburing/debian/source/format +1 -0
  34. data/vendor/liburing/debian/source/local-options +2 -0
  35. data/vendor/liburing/debian/source/options +1 -0
  36. data/vendor/liburing/debian/watch +3 -0
  37. data/vendor/liburing/examples/Makefile +38 -0
  38. data/vendor/liburing/examples/io_uring-cp.c +282 -0
  39. data/vendor/liburing/examples/io_uring-test.c +112 -0
  40. data/vendor/liburing/examples/link-cp.c +193 -0
  41. data/vendor/liburing/examples/ucontext-cp.c +273 -0
  42. data/vendor/liburing/liburing.pc.in +12 -0
  43. data/vendor/liburing/liburing.spec +66 -0
  44. data/vendor/liburing/make-debs.sh +53 -0
  45. data/vendor/liburing/man/io_uring.7 +754 -0
  46. data/vendor/liburing/man/io_uring_cq_advance.3 +35 -0
  47. data/vendor/liburing/man/io_uring_cq_ready.3 +25 -0
  48. data/vendor/liburing/man/io_uring_cqe_get_data.3 +34 -0
  49. data/vendor/liburing/man/io_uring_cqe_seen.3 +32 -0
  50. data/vendor/liburing/man/io_uring_enter.2 +1483 -0
  51. data/vendor/liburing/man/io_uring_free_probe.3 +24 -0
  52. data/vendor/liburing/man/io_uring_get_probe.3 +29 -0
  53. data/vendor/liburing/man/io_uring_get_sqe.3 +38 -0
  54. data/vendor/liburing/man/io_uring_opcode_supported.3 +29 -0
  55. data/vendor/liburing/man/io_uring_prep_msg_ring.3 +58 -0
  56. data/vendor/liburing/man/io_uring_prep_read.3 +50 -0
  57. data/vendor/liburing/man/io_uring_prep_read_fixed.3 +54 -0
  58. data/vendor/liburing/man/io_uring_prep_readv.3 +51 -0
  59. data/vendor/liburing/man/io_uring_prep_readv2.3 +79 -0
  60. data/vendor/liburing/man/io_uring_prep_write.3 +50 -0
  61. data/vendor/liburing/man/io_uring_prep_write_fixed.3 +54 -0
  62. data/vendor/liburing/man/io_uring_prep_writev.3 +51 -0
  63. data/vendor/liburing/man/io_uring_prep_writev2.3 +78 -0
  64. data/vendor/liburing/man/io_uring_queue_exit.3 +27 -0
  65. data/vendor/liburing/man/io_uring_queue_init.3 +44 -0
  66. data/vendor/liburing/man/io_uring_register.2 +688 -0
  67. data/vendor/liburing/man/io_uring_register_buffers.3 +41 -0
  68. data/vendor/liburing/man/io_uring_register_files.3 +35 -0
  69. data/vendor/liburing/man/io_uring_setup.2 +534 -0
  70. data/vendor/liburing/man/io_uring_sq_ready.3 +25 -0
  71. data/vendor/liburing/man/io_uring_sq_space_left.3 +25 -0
  72. data/vendor/liburing/man/io_uring_sqe_set_data.3 +30 -0
  73. data/vendor/liburing/man/io_uring_sqe_set_flags.3 +60 -0
  74. data/vendor/liburing/man/io_uring_sqring_wait.3 +30 -0
  75. data/vendor/liburing/man/io_uring_submit.3 +29 -0
  76. data/vendor/liburing/man/io_uring_submit_and_wait.3 +34 -0
  77. data/vendor/liburing/man/io_uring_submit_and_wait_timeout.3 +49 -0
  78. data/vendor/liburing/man/io_uring_unregister_buffers.3 +26 -0
  79. data/vendor/liburing/man/io_uring_unregister_files.3 +26 -0
  80. data/vendor/liburing/man/io_uring_wait_cqe.3 +33 -0
  81. data/vendor/liburing/man/io_uring_wait_cqe_nr.3 +36 -0
  82. data/vendor/liburing/man/io_uring_wait_cqe_timeout.3 +39 -0
  83. data/vendor/liburing/man/io_uring_wait_cqes.3 +46 -0
  84. data/vendor/liburing/src/Makefile +89 -0
  85. data/vendor/liburing/src/arch/aarch64/syscall.h +95 -0
  86. data/vendor/liburing/src/arch/generic/lib.h +21 -0
  87. data/vendor/liburing/src/arch/generic/syscall.h +87 -0
  88. data/vendor/liburing/src/arch/syscall-defs.h +67 -0
  89. data/vendor/liburing/src/arch/x86/lib.h +32 -0
  90. data/vendor/liburing/src/arch/x86/syscall.h +160 -0
  91. data/vendor/liburing/src/include/liburing/barrier.h +81 -0
  92. data/vendor/liburing/src/include/liburing/io_uring.h +442 -0
  93. data/vendor/liburing/src/include/liburing.h +921 -0
  94. data/vendor/liburing/src/int_flags.h +8 -0
  95. data/vendor/liburing/src/lib.h +57 -0
  96. data/vendor/liburing/src/liburing.map +53 -0
  97. data/vendor/liburing/src/nolibc.c +48 -0
  98. data/vendor/liburing/src/queue.c +403 -0
  99. data/vendor/liburing/src/register.c +293 -0
  100. data/vendor/liburing/src/setup.c +332 -0
  101. data/vendor/liburing/src/syscall.c +47 -0
  102. data/vendor/liburing/src/syscall.h +103 -0
  103. data/vendor/liburing/test/232c93d07b74-test.c +306 -0
  104. data/vendor/liburing/test/35fa71a030ca-test.c +329 -0
  105. data/vendor/liburing/test/500f9fbadef8-test.c +89 -0
  106. data/vendor/liburing/test/7ad0e4b2f83c-test.c +93 -0
  107. data/vendor/liburing/test/8a9973408177-test.c +106 -0
  108. data/vendor/liburing/test/917257daa0fe-test.c +53 -0
  109. data/vendor/liburing/test/Makefile +244 -0
  110. data/vendor/liburing/test/a0908ae19763-test.c +58 -0
  111. data/vendor/liburing/test/a4c0b3decb33-test.c +180 -0
  112. data/vendor/liburing/test/accept-link.c +254 -0
  113. data/vendor/liburing/test/accept-reuse.c +164 -0
  114. data/vendor/liburing/test/accept-test.c +79 -0
  115. data/vendor/liburing/test/accept.c +477 -0
  116. data/vendor/liburing/test/across-fork.c +283 -0
  117. data/vendor/liburing/test/b19062a56726-test.c +53 -0
  118. data/vendor/liburing/test/b5837bd5311d-test.c +77 -0
  119. data/vendor/liburing/test/ce593a6c480a-test.c +136 -0
  120. data/vendor/liburing/test/close-opath.c +122 -0
  121. data/vendor/liburing/test/config +10 -0
  122. data/vendor/liburing/test/connect.c +398 -0
  123. data/vendor/liburing/test/cq-full.c +96 -0
  124. data/vendor/liburing/test/cq-overflow.c +294 -0
  125. data/vendor/liburing/test/cq-peek-batch.c +102 -0
  126. data/vendor/liburing/test/cq-ready.c +94 -0
  127. data/vendor/liburing/test/cq-size.c +64 -0
  128. data/vendor/liburing/test/d4ae271dfaae-test.c +96 -0
  129. data/vendor/liburing/test/d77a67ed5f27-test.c +65 -0
  130. data/vendor/liburing/test/defer.c +307 -0
  131. data/vendor/liburing/test/double-poll-crash.c +185 -0
  132. data/vendor/liburing/test/drop-submit.c +92 -0
  133. data/vendor/liburing/test/eeed8b54e0df-test.c +114 -0
  134. data/vendor/liburing/test/empty-eownerdead.c +45 -0
  135. data/vendor/liburing/test/eventfd-disable.c +151 -0
  136. data/vendor/liburing/test/eventfd-reg.c +76 -0
  137. data/vendor/liburing/test/eventfd-ring.c +97 -0
  138. data/vendor/liburing/test/eventfd.c +112 -0
  139. data/vendor/liburing/test/exec-target.c +6 -0
  140. data/vendor/liburing/test/exit-no-cleanup.c +117 -0
  141. data/vendor/liburing/test/fadvise.c +202 -0
  142. data/vendor/liburing/test/fallocate.c +249 -0
  143. data/vendor/liburing/test/fc2a85cb02ef-test.c +131 -0
  144. data/vendor/liburing/test/file-register.c +858 -0
  145. data/vendor/liburing/test/file-update.c +173 -0
  146. data/vendor/liburing/test/file-verify.c +629 -0
  147. data/vendor/liburing/test/files-exit-hang-poll.c +128 -0
  148. data/vendor/liburing/test/files-exit-hang-timeout.c +134 -0
  149. data/vendor/liburing/test/fixed-link.c +90 -0
  150. data/vendor/liburing/test/fpos.c +252 -0
  151. data/vendor/liburing/test/fsync.c +224 -0
  152. data/vendor/liburing/test/hardlink.c +136 -0
  153. data/vendor/liburing/test/helpers.c +135 -0
  154. data/vendor/liburing/test/helpers.h +67 -0
  155. data/vendor/liburing/test/io-cancel.c +550 -0
  156. data/vendor/liburing/test/io_uring_enter.c +296 -0
  157. data/vendor/liburing/test/io_uring_register.c +676 -0
  158. data/vendor/liburing/test/io_uring_setup.c +192 -0
  159. data/vendor/liburing/test/iopoll.c +372 -0
  160. data/vendor/liburing/test/lfs-openat-write.c +119 -0
  161. data/vendor/liburing/test/lfs-openat.c +275 -0
  162. data/vendor/liburing/test/link-timeout.c +1107 -0
  163. data/vendor/liburing/test/link.c +496 -0
  164. data/vendor/liburing/test/link_drain.c +229 -0
  165. data/vendor/liburing/test/madvise.c +195 -0
  166. data/vendor/liburing/test/mkdir.c +108 -0
  167. data/vendor/liburing/test/msg-ring.c +234 -0
  168. data/vendor/liburing/test/multicqes_drain.c +387 -0
  169. data/vendor/liburing/test/nop-all-sizes.c +99 -0
  170. data/vendor/liburing/test/nop.c +115 -0
  171. data/vendor/liburing/test/open-close.c +261 -0
  172. data/vendor/liburing/test/openat2.c +308 -0
  173. data/vendor/liburing/test/personality.c +204 -0
  174. data/vendor/liburing/test/pipe-eof.c +83 -0
  175. data/vendor/liburing/test/pipe-reuse.c +105 -0
  176. data/vendor/liburing/test/poll-cancel-ton.c +135 -0
  177. data/vendor/liburing/test/poll-cancel.c +228 -0
  178. data/vendor/liburing/test/poll-link.c +230 -0
  179. data/vendor/liburing/test/poll-many.c +208 -0
  180. data/vendor/liburing/test/poll-mshot-update.c +273 -0
  181. data/vendor/liburing/test/poll-ring.c +48 -0
  182. data/vendor/liburing/test/poll-v-poll.c +353 -0
  183. data/vendor/liburing/test/poll.c +109 -0
  184. data/vendor/liburing/test/pollfree.c +426 -0
  185. data/vendor/liburing/test/probe.c +135 -0
  186. data/vendor/liburing/test/read-write.c +876 -0
  187. data/vendor/liburing/test/register-restrictions.c +633 -0
  188. data/vendor/liburing/test/rename.c +135 -0
  189. data/vendor/liburing/test/ring-leak.c +173 -0
  190. data/vendor/liburing/test/ring-leak2.c +249 -0
  191. data/vendor/liburing/test/rsrc_tags.c +449 -0
  192. data/vendor/liburing/test/runtests-loop.sh +16 -0
  193. data/vendor/liburing/test/runtests.sh +170 -0
  194. data/vendor/liburing/test/rw_merge_test.c +97 -0
  195. data/vendor/liburing/test/self.c +91 -0
  196. data/vendor/liburing/test/send_recv.c +286 -0
  197. data/vendor/liburing/test/send_recvmsg.c +345 -0
  198. data/vendor/liburing/test/sendmsg_fs_cve.c +200 -0
  199. data/vendor/liburing/test/shared-wq.c +84 -0
  200. data/vendor/liburing/test/short-read.c +75 -0
  201. data/vendor/liburing/test/shutdown.c +165 -0
  202. data/vendor/liburing/test/sigfd-deadlock.c +74 -0
  203. data/vendor/liburing/test/skip-cqe.c +429 -0
  204. data/vendor/liburing/test/socket-rw-eagain.c +158 -0
  205. data/vendor/liburing/test/socket-rw-offset.c +157 -0
  206. data/vendor/liburing/test/socket-rw.c +145 -0
  207. data/vendor/liburing/test/splice.c +512 -0
  208. data/vendor/liburing/test/sq-full-cpp.cc +45 -0
  209. data/vendor/liburing/test/sq-full.c +45 -0
  210. data/vendor/liburing/test/sq-poll-dup.c +204 -0
  211. data/vendor/liburing/test/sq-poll-kthread.c +169 -0
  212. data/vendor/liburing/test/sq-poll-share.c +137 -0
  213. data/vendor/liburing/test/sq-space_left.c +159 -0
  214. data/vendor/liburing/test/sqpoll-cancel-hang.c +157 -0
  215. data/vendor/liburing/test/sqpoll-disable-exit.c +196 -0
  216. data/vendor/liburing/test/sqpoll-exit-hang.c +78 -0
  217. data/vendor/liburing/test/sqpoll-sleep.c +69 -0
  218. data/vendor/liburing/test/statx.c +172 -0
  219. data/vendor/liburing/test/stdout.c +232 -0
  220. data/vendor/liburing/test/submit-link-fail.c +154 -0
  221. data/vendor/liburing/test/submit-reuse.c +239 -0
  222. data/vendor/liburing/test/symlink.c +116 -0
  223. data/vendor/liburing/test/teardowns.c +58 -0
  224. data/vendor/liburing/test/thread-exit.c +143 -0
  225. data/vendor/liburing/test/timeout-new.c +252 -0
  226. data/vendor/liburing/test/timeout-overflow.c +204 -0
  227. data/vendor/liburing/test/timeout.c +1523 -0
  228. data/vendor/liburing/test/unlink.c +112 -0
  229. data/vendor/liburing/test/wakeup-hang.c +162 -0
  230. metadata +223 -2
@@ -0,0 +1,307 @@
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 <sys/uio.h>
9
+ #include <stdbool.h>
10
+
11
+ #include "helpers.h"
12
+ #include "liburing.h"
13
+
14
+ #define RING_SIZE 128
15
+
16
+ struct test_context {
17
+ struct io_uring *ring;
18
+ struct io_uring_sqe **sqes;
19
+ struct io_uring_cqe *cqes;
20
+ int nr;
21
+ };
22
+
23
+ static void free_context(struct test_context *ctx)
24
+ {
25
+ free(ctx->sqes);
26
+ free(ctx->cqes);
27
+ memset(ctx, 0, sizeof(*ctx));
28
+ }
29
+
30
+ static int init_context(struct test_context *ctx, struct io_uring *ring, int nr)
31
+ {
32
+ struct io_uring_sqe *sqe;
33
+ int i;
34
+
35
+ memset(ctx, 0, sizeof(*ctx));
36
+ ctx->nr = nr;
37
+ ctx->ring = ring;
38
+ ctx->sqes = t_malloc(nr * sizeof(*ctx->sqes));
39
+ ctx->cqes = t_malloc(nr * sizeof(*ctx->cqes));
40
+
41
+ if (!ctx->sqes || !ctx->cqes)
42
+ goto err;
43
+
44
+ for (i = 0; i < nr; i++) {
45
+ sqe = io_uring_get_sqe(ring);
46
+ if (!sqe)
47
+ goto err;
48
+ io_uring_prep_nop(sqe);
49
+ sqe->user_data = i;
50
+ ctx->sqes[i] = sqe;
51
+ }
52
+
53
+ return 0;
54
+ err:
55
+ free_context(ctx);
56
+ printf("init context failed\n");
57
+ return 1;
58
+ }
59
+
60
+ static int wait_cqes(struct test_context *ctx)
61
+ {
62
+ int ret, i;
63
+ struct io_uring_cqe *cqe;
64
+
65
+ for (i = 0; i < ctx->nr; i++) {
66
+ ret = io_uring_wait_cqe(ctx->ring, &cqe);
67
+
68
+ if (ret < 0) {
69
+ printf("wait_cqes: wait completion %d\n", ret);
70
+ return 1;
71
+ }
72
+ memcpy(&ctx->cqes[i], cqe, sizeof(*cqe));
73
+ io_uring_cqe_seen(ctx->ring, cqe);
74
+ }
75
+
76
+ return 0;
77
+ }
78
+
79
+ static int test_cancelled_userdata(struct io_uring *ring)
80
+ {
81
+ struct test_context ctx;
82
+ int ret, i, nr = 100;
83
+
84
+ if (init_context(&ctx, ring, nr))
85
+ return 1;
86
+
87
+ for (i = 0; i < nr; i++)
88
+ ctx.sqes[i]->flags |= IOSQE_IO_LINK;
89
+
90
+ ret = io_uring_submit(ring);
91
+ if (ret <= 0) {
92
+ printf("sqe submit failed: %d\n", ret);
93
+ goto err;
94
+ }
95
+
96
+ if (wait_cqes(&ctx))
97
+ goto err;
98
+
99
+ for (i = 0; i < nr; i++) {
100
+ if (i != ctx.cqes[i].user_data) {
101
+ printf("invalid user data\n");
102
+ goto err;
103
+ }
104
+ }
105
+
106
+ free_context(&ctx);
107
+ return 0;
108
+ err:
109
+ free_context(&ctx);
110
+ return 1;
111
+ }
112
+
113
+ static int test_thread_link_cancel(struct io_uring *ring)
114
+ {
115
+ struct test_context ctx;
116
+ int ret, i, nr = 100;
117
+
118
+ if (init_context(&ctx, ring, nr))
119
+ return 1;
120
+
121
+ for (i = 0; i < nr; i++)
122
+ ctx.sqes[i]->flags |= IOSQE_IO_LINK;
123
+
124
+ ret = io_uring_submit(ring);
125
+ if (ret <= 0) {
126
+ printf("sqe submit failed: %d\n", ret);
127
+ goto err;
128
+ }
129
+
130
+ if (wait_cqes(&ctx))
131
+ goto err;
132
+
133
+ for (i = 0; i < nr; i++) {
134
+ bool fail = false;
135
+
136
+ if (i == 0)
137
+ fail = (ctx.cqes[i].res != -EINVAL);
138
+ else
139
+ fail = (ctx.cqes[i].res != -ECANCELED);
140
+
141
+ if (fail) {
142
+ printf("invalid status\n");
143
+ goto err;
144
+ }
145
+ }
146
+
147
+ free_context(&ctx);
148
+ return 0;
149
+ err:
150
+ free_context(&ctx);
151
+ return 1;
152
+ }
153
+
154
+ static int test_drain_with_linked_timeout(struct io_uring *ring)
155
+ {
156
+ const int nr = 3;
157
+ struct __kernel_timespec ts = { .tv_sec = 1, .tv_nsec = 0, };
158
+ struct test_context ctx;
159
+ int ret, i;
160
+
161
+ if (init_context(&ctx, ring, nr * 2))
162
+ return 1;
163
+
164
+ for (i = 0; i < nr; i++) {
165
+ io_uring_prep_timeout(ctx.sqes[2 * i], &ts, 0, 0);
166
+ ctx.sqes[2 * i]->flags |= IOSQE_IO_LINK | IOSQE_IO_DRAIN;
167
+ io_uring_prep_link_timeout(ctx.sqes[2 * i + 1], &ts, 0);
168
+ }
169
+
170
+ ret = io_uring_submit(ring);
171
+ if (ret <= 0) {
172
+ printf("sqe submit failed: %d\n", ret);
173
+ goto err;
174
+ }
175
+
176
+ if (wait_cqes(&ctx))
177
+ goto err;
178
+
179
+ free_context(&ctx);
180
+ return 0;
181
+ err:
182
+ free_context(&ctx);
183
+ return 1;
184
+ }
185
+
186
+ static int run_drained(struct io_uring *ring, int nr)
187
+ {
188
+ struct test_context ctx;
189
+ int ret, i;
190
+
191
+ if (init_context(&ctx, ring, nr))
192
+ return 1;
193
+
194
+ for (i = 0; i < nr; i++)
195
+ ctx.sqes[i]->flags |= IOSQE_IO_DRAIN;
196
+
197
+ ret = io_uring_submit(ring);
198
+ if (ret <= 0) {
199
+ printf("sqe submit failed: %d\n", ret);
200
+ goto err;
201
+ }
202
+
203
+ if (wait_cqes(&ctx))
204
+ goto err;
205
+
206
+ free_context(&ctx);
207
+ return 0;
208
+ err:
209
+ free_context(&ctx);
210
+ return 1;
211
+ }
212
+
213
+ static int test_overflow_hung(struct io_uring *ring)
214
+ {
215
+ struct io_uring_sqe *sqe;
216
+ int ret, nr = 10;
217
+
218
+ while (*ring->cq.koverflow != 1000) {
219
+ sqe = io_uring_get_sqe(ring);
220
+ if (!sqe) {
221
+ printf("get sqe failed\n");
222
+ return 1;
223
+ }
224
+
225
+ io_uring_prep_nop(sqe);
226
+ ret = io_uring_submit(ring);
227
+ if (ret <= 0) {
228
+ printf("sqe submit failed: %d\n", ret);
229
+ return 1;
230
+ }
231
+ }
232
+
233
+ return run_drained(ring, nr);
234
+ }
235
+
236
+ static int test_dropped_hung(struct io_uring *ring)
237
+ {
238
+ int nr = 10;
239
+
240
+ *ring->sq.kdropped = 1000;
241
+ return run_drained(ring, nr);
242
+ }
243
+
244
+ int main(int argc, char *argv[])
245
+ {
246
+ struct io_uring ring, poll_ring, sqthread_ring;
247
+ struct io_uring_params p;
248
+ int ret;
249
+
250
+ if (argc > 1)
251
+ return 0;
252
+
253
+ memset(&p, 0, sizeof(p));
254
+ ret = io_uring_queue_init_params(RING_SIZE, &ring, &p);
255
+ if (ret) {
256
+ printf("ring setup failed %i\n", ret);
257
+ return 1;
258
+ }
259
+
260
+ ret = io_uring_queue_init(RING_SIZE, &poll_ring, IORING_SETUP_IOPOLL);
261
+ if (ret) {
262
+ printf("poll_ring setup failed\n");
263
+ return 1;
264
+ }
265
+
266
+
267
+ ret = test_cancelled_userdata(&poll_ring);
268
+ if (ret) {
269
+ printf("test_cancelled_userdata failed\n");
270
+ return ret;
271
+ }
272
+
273
+ if (!(p.features & IORING_FEAT_NODROP)) {
274
+ ret = test_overflow_hung(&ring);
275
+ if (ret) {
276
+ printf("test_overflow_hung failed\n");
277
+ return ret;
278
+ }
279
+ }
280
+
281
+ ret = test_dropped_hung(&ring);
282
+ if (ret) {
283
+ printf("test_dropped_hung failed\n");
284
+ return ret;
285
+ }
286
+
287
+ ret = test_drain_with_linked_timeout(&ring);
288
+ if (ret) {
289
+ printf("test_drain_with_linked_timeout failed\n");
290
+ return ret;
291
+ }
292
+
293
+ ret = t_create_ring(RING_SIZE, &sqthread_ring,
294
+ IORING_SETUP_SQPOLL | IORING_SETUP_IOPOLL);
295
+ if (ret == T_SETUP_SKIP)
296
+ return 0;
297
+ else if (ret < 0)
298
+ return 1;
299
+
300
+ ret = test_thread_link_cancel(&sqthread_ring);
301
+ if (ret) {
302
+ printf("test_thread_link_cancel failed\n");
303
+ return ret;
304
+ }
305
+
306
+ return 0;
307
+ }
@@ -0,0 +1,185 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ // https://syzkaller.appspot.com/bug?id=5c9918d20f771265ad0ffae3c8f3859d24850692
3
+ // autogenerated by syzkaller (https://github.com/google/syzkaller)
4
+
5
+ #include <endian.h>
6
+ #include <fcntl.h>
7
+ #include <stdint.h>
8
+ #include <stdio.h>
9
+ #include <stdlib.h>
10
+ #include <string.h>
11
+ #include <sys/mman.h>
12
+ #include <sys/stat.h>
13
+ #include <sys/types.h>
14
+ #include <sys/ioctl.h>
15
+ #include <unistd.h>
16
+
17
+ #include "liburing.h"
18
+ #include "../src/syscall.h"
19
+
20
+ #define SIZEOF_IO_URING_SQE 64
21
+ #define SIZEOF_IO_URING_CQE 16
22
+ #define SQ_HEAD_OFFSET 0
23
+ #define SQ_TAIL_OFFSET 64
24
+ #define SQ_RING_MASK_OFFSET 256
25
+ #define SQ_RING_ENTRIES_OFFSET 264
26
+ #define SQ_FLAGS_OFFSET 276
27
+ #define SQ_DROPPED_OFFSET 272
28
+ #define CQ_HEAD_OFFSET 128
29
+ #define CQ_TAIL_OFFSET 192
30
+ #define CQ_RING_MASK_OFFSET 260
31
+ #define CQ_RING_ENTRIES_OFFSET 268
32
+ #define CQ_RING_OVERFLOW_OFFSET 284
33
+ #define CQ_FLAGS_OFFSET 280
34
+ #define CQ_CQES_OFFSET 320
35
+
36
+ static long syz_io_uring_setup(volatile long a0, volatile long a1,
37
+ volatile long a2, volatile long a3,
38
+ volatile long a4, volatile long a5)
39
+ {
40
+ uint32_t entries = (uint32_t)a0;
41
+ struct io_uring_params* setup_params = (struct io_uring_params*)a1;
42
+ void* vma1 = (void*)a2;
43
+ void* vma2 = (void*)a3;
44
+ void** ring_ptr_out = (void**)a4;
45
+ void** sqes_ptr_out = (void**)a5;
46
+ uint32_t fd_io_uring = __sys_io_uring_setup(entries, setup_params);
47
+ uint32_t sq_ring_sz =
48
+ setup_params->sq_off.array + setup_params->sq_entries * sizeof(uint32_t);
49
+ uint32_t cq_ring_sz = setup_params->cq_off.cqes +
50
+ setup_params->cq_entries * SIZEOF_IO_URING_CQE;
51
+ uint32_t ring_sz = sq_ring_sz > cq_ring_sz ? sq_ring_sz : cq_ring_sz;
52
+ *ring_ptr_out = mmap(vma1, ring_sz, PROT_READ | PROT_WRITE,
53
+ MAP_SHARED | MAP_POPULATE | MAP_FIXED, fd_io_uring,
54
+ IORING_OFF_SQ_RING);
55
+ uint32_t sqes_sz = setup_params->sq_entries * SIZEOF_IO_URING_SQE;
56
+ *sqes_ptr_out =
57
+ mmap(vma2, sqes_sz, PROT_READ | PROT_WRITE,
58
+ MAP_SHARED | MAP_POPULATE | MAP_FIXED, fd_io_uring, IORING_OFF_SQES);
59
+ return fd_io_uring;
60
+ }
61
+
62
+ static long syz_io_uring_submit(volatile long a0, volatile long a1,
63
+ volatile long a2, volatile long a3)
64
+ {
65
+ char* ring_ptr = (char*)a0;
66
+ char* sqes_ptr = (char*)a1;
67
+ char* sqe = (char*)a2;
68
+ uint32_t sqes_index = (uint32_t)a3;
69
+ uint32_t sq_ring_entries = *(uint32_t*)(ring_ptr + SQ_RING_ENTRIES_OFFSET);
70
+ uint32_t cq_ring_entries = *(uint32_t*)(ring_ptr + CQ_RING_ENTRIES_OFFSET);
71
+ uint32_t sq_array_off =
72
+ (CQ_CQES_OFFSET + cq_ring_entries * SIZEOF_IO_URING_CQE + 63) & ~63;
73
+ if (sq_ring_entries)
74
+ sqes_index %= sq_ring_entries;
75
+ char* sqe_dest = sqes_ptr + sqes_index * SIZEOF_IO_URING_SQE;
76
+ memcpy(sqe_dest, sqe, SIZEOF_IO_URING_SQE);
77
+ uint32_t sq_ring_mask = *(uint32_t*)(ring_ptr + SQ_RING_MASK_OFFSET);
78
+ uint32_t* sq_tail_ptr = (uint32_t*)(ring_ptr + SQ_TAIL_OFFSET);
79
+ uint32_t sq_tail = *sq_tail_ptr & sq_ring_mask;
80
+ uint32_t sq_tail_next = *sq_tail_ptr + 1;
81
+ uint32_t* sq_array = (uint32_t*)(ring_ptr + sq_array_off);
82
+ *(sq_array + sq_tail) = sqes_index;
83
+ __atomic_store_n(sq_tail_ptr, sq_tail_next, __ATOMIC_RELEASE);
84
+ return 0;
85
+ }
86
+
87
+ static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2)
88
+ {
89
+ if (a0 == 0xc || a0 == 0xb) {
90
+ char buf[128];
91
+ sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1,
92
+ (uint8_t)a2);
93
+ return open(buf, O_RDWR, 0);
94
+ } else {
95
+ char buf[1024];
96
+ char* hash;
97
+ strncpy(buf, (char*)a0, sizeof(buf) - 1);
98
+ buf[sizeof(buf) - 1] = 0;
99
+ while ((hash = strchr(buf, '#'))) {
100
+ *hash = '0' + (char)(a1 % 10);
101
+ a1 /= 10;
102
+ }
103
+ return open(buf, a2, 0);
104
+ }
105
+ }
106
+
107
+ uint64_t r[4] = {0xffffffffffffffff, 0x0, 0x0, 0xffffffffffffffff};
108
+
109
+ int main(int argc, char *argv[])
110
+ {
111
+ #if !defined(__i386) && !defined(__x86_64__)
112
+ return 0;
113
+ #endif
114
+
115
+ if (argc > 1)
116
+ return 0;
117
+
118
+ mmap((void *)0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul);
119
+ mmap((void *)0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul);
120
+ intptr_t res = 0;
121
+ *(uint32_t*)0x20000484 = 0;
122
+ *(uint32_t*)0x20000488 = 0;
123
+ *(uint32_t*)0x2000048c = 0;
124
+ *(uint32_t*)0x20000490 = 0;
125
+ *(uint32_t*)0x20000498 = -1;
126
+ *(uint32_t*)0x2000049c = 0;
127
+ *(uint32_t*)0x200004a0 = 0;
128
+ *(uint32_t*)0x200004a4 = 0;
129
+ res = -1;
130
+ res = syz_io_uring_setup(0x6ad4, 0x20000480, 0x20ee7000, 0x20ffb000,
131
+ 0x20000180, 0x20000040);
132
+ if (res != -1) {
133
+ r[0] = res;
134
+ r[1] = *(uint64_t*)0x20000180;
135
+ r[2] = *(uint64_t*)0x20000040;
136
+ }
137
+ res = -1;
138
+ res = syz_open_dev(0xc, 4, 0x15);
139
+ if (res != -1)
140
+ r[3] = res;
141
+ *(uint8_t*)0x20000000 = 6;
142
+ *(uint8_t*)0x20000001 = 0;
143
+ *(uint16_t*)0x20000002 = 0;
144
+ *(uint32_t*)0x20000004 = r[3];
145
+ *(uint64_t*)0x20000008 = 0;
146
+ *(uint64_t*)0x20000010 = 0;
147
+ *(uint32_t*)0x20000018 = 0;
148
+ *(uint16_t*)0x2000001c = 0;
149
+ *(uint16_t*)0x2000001e = 0;
150
+ *(uint64_t*)0x20000020 = 0;
151
+ *(uint16_t*)0x20000028 = 0;
152
+ *(uint16_t*)0x2000002a = 0;
153
+ *(uint8_t*)0x2000002c = 0;
154
+ *(uint8_t*)0x2000002d = 0;
155
+ *(uint8_t*)0x2000002e = 0;
156
+ *(uint8_t*)0x2000002f = 0;
157
+ *(uint8_t*)0x20000030 = 0;
158
+ *(uint8_t*)0x20000031 = 0;
159
+ *(uint8_t*)0x20000032 = 0;
160
+ *(uint8_t*)0x20000033 = 0;
161
+ *(uint8_t*)0x20000034 = 0;
162
+ *(uint8_t*)0x20000035 = 0;
163
+ *(uint8_t*)0x20000036 = 0;
164
+ *(uint8_t*)0x20000037 = 0;
165
+ *(uint8_t*)0x20000038 = 0;
166
+ *(uint8_t*)0x20000039 = 0;
167
+ *(uint8_t*)0x2000003a = 0;
168
+ *(uint8_t*)0x2000003b = 0;
169
+ *(uint8_t*)0x2000003c = 0;
170
+ *(uint8_t*)0x2000003d = 0;
171
+ *(uint8_t*)0x2000003e = 0;
172
+ *(uint8_t*)0x2000003f = 0;
173
+ syz_io_uring_submit(r[1], r[2], 0x20000000, 0);
174
+ __sys_io_uring_enter(r[0], 0x20450c, 0, 0ul, 0ul);
175
+ *(uint32_t*)0x20000080 = 0x7ff;
176
+ *(uint32_t*)0x20000084 = 0x8b7;
177
+ *(uint32_t*)0x20000088 = 3;
178
+ *(uint32_t*)0x2000008c = 0x101;
179
+ *(uint8_t*)0x20000090 = 9;
180
+ memcpy((void*)0x20000091, "\xaf\x09\x01\xbc\xf9\xc6\xe4\x92\x86\x51\x7d\x7f"
181
+ "\xbd\x43\x7d\x16\x69\x3e\x05",
182
+ 19);
183
+ ioctl(r[3], 0x5404, 0x20000080ul);
184
+ return 0;
185
+ }
@@ -0,0 +1,92 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: test IORING_SETUP_SUBMIT_ALL
4
+ *
5
+ */
6
+ #include <errno.h>
7
+ #include <stdio.h>
8
+ #include <unistd.h>
9
+ #include <stdlib.h>
10
+
11
+ #include "liburing.h"
12
+
13
+ static int test(struct io_uring *ring, int expect_drops)
14
+ {
15
+ struct io_uring_sqe *sqe;
16
+ char buf[32];
17
+ int ret, i;
18
+
19
+ for (i = 0; i < 4; i++) {
20
+ sqe = io_uring_get_sqe(ring);
21
+ if (!sqe) {
22
+ fprintf(stderr, "get sqe failed\n");
23
+ goto err;
24
+ }
25
+
26
+ io_uring_prep_nop(sqe);
27
+ }
28
+
29
+ /* prep two invalid reads, these will fail */
30
+ for (i = 0; i < 2; i++) {
31
+ sqe = io_uring_get_sqe(ring);
32
+ if (!sqe) {
33
+ fprintf(stderr, "get sqe failed\n");
34
+ goto err;
35
+ }
36
+
37
+ io_uring_prep_read(sqe, 128, buf, sizeof(buf), 0);
38
+ }
39
+
40
+
41
+ ret = io_uring_submit(ring);
42
+ if (expect_drops) {
43
+ if (ret != 5) {
44
+ fprintf(stderr, "drops submit failed: %d\n", ret);
45
+ goto err;
46
+ }
47
+ } else {
48
+ if (ret != 6) {
49
+ fprintf(stderr, "no drops submit failed: %d\n", ret);
50
+ goto err;
51
+ }
52
+ }
53
+
54
+ return 0;
55
+ err:
56
+ return 1;
57
+ }
58
+
59
+ int main(int argc, char *argv[])
60
+ {
61
+ struct io_uring ring;
62
+ int ret;
63
+
64
+ if (argc > 1)
65
+ return 0;
66
+
67
+ ret = io_uring_queue_init(8, &ring, IORING_SETUP_SUBMIT_ALL);
68
+ if (ret)
69
+ return 0;
70
+
71
+ ret = test(&ring, 0);
72
+ if (ret) {
73
+ fprintf(stderr, "test no drops failed\n");
74
+ return ret;
75
+ }
76
+
77
+ io_uring_queue_exit(&ring);
78
+
79
+ ret = io_uring_queue_init(8, &ring, 0);
80
+ if (ret) {
81
+ fprintf(stderr, "ring setup failed\n");
82
+ return 0;
83
+ }
84
+
85
+ ret = test(&ring, 1);
86
+ if (ret) {
87
+ fprintf(stderr, "test drops failed\n");
88
+ return ret;
89
+ }
90
+
91
+ return 0;
92
+ }
@@ -0,0 +1,114 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: -EAGAIN handling
4
+ *
5
+ */
6
+ #include <errno.h>
7
+ #include <stdio.h>
8
+ #include <unistd.h>
9
+ #include <stdlib.h>
10
+ #include <string.h>
11
+ #include <fcntl.h>
12
+
13
+ #include "helpers.h"
14
+ #include "liburing.h"
15
+
16
+ #define BLOCK 4096
17
+
18
+ #ifndef RWF_NOWAIT
19
+ #define RWF_NOWAIT 8
20
+ #endif
21
+
22
+ static int get_file_fd(void)
23
+ {
24
+ ssize_t ret;
25
+ char *buf;
26
+ int fd;
27
+
28
+ fd = open("testfile", O_RDWR | O_CREAT, 0644);
29
+ unlink("testfile");
30
+ if (fd < 0) {
31
+ perror("open file");
32
+ return -1;
33
+ }
34
+
35
+ buf = t_malloc(BLOCK);
36
+ ret = write(fd, buf, BLOCK);
37
+ if (ret != BLOCK) {
38
+ if (ret < 0)
39
+ perror("write");
40
+ else
41
+ printf("Short write\n");
42
+ goto err;
43
+ }
44
+ fsync(fd);
45
+
46
+ if (posix_fadvise(fd, 0, 4096, POSIX_FADV_DONTNEED)) {
47
+ perror("fadvise");
48
+ err:
49
+ close(fd);
50
+ free(buf);
51
+ return -1;
52
+ }
53
+
54
+ free(buf);
55
+ return fd;
56
+ }
57
+
58
+ int main(int argc, char *argv[])
59
+ {
60
+ struct io_uring ring;
61
+ struct io_uring_sqe *sqe;
62
+ struct io_uring_cqe *cqe;
63
+ struct iovec iov;
64
+ int ret, fd;
65
+
66
+ if (argc > 1)
67
+ return 0;
68
+
69
+ iov.iov_base = t_malloc(4096);
70
+ iov.iov_len = 4096;
71
+
72
+ ret = io_uring_queue_init(2, &ring, 0);
73
+ if (ret) {
74
+ printf("ring setup failed\n");
75
+ return 1;
76
+
77
+ }
78
+
79
+ sqe = io_uring_get_sqe(&ring);
80
+ if (!sqe) {
81
+ printf("get sqe failed\n");
82
+ return 1;
83
+ }
84
+
85
+ fd = get_file_fd();
86
+ if (fd < 0)
87
+ return 1;
88
+
89
+ io_uring_prep_readv(sqe, fd, &iov, 1, 0);
90
+ sqe->rw_flags = RWF_NOWAIT;
91
+
92
+ ret = io_uring_submit(&ring);
93
+ if (ret != 1) {
94
+ printf("Got submit %d, expected 1\n", ret);
95
+ goto err;
96
+ }
97
+
98
+ ret = io_uring_peek_cqe(&ring, &cqe);
99
+ if (ret) {
100
+ printf("Ring peek got %d\n", ret);
101
+ goto err;
102
+ }
103
+
104
+ if (cqe->res != -EAGAIN && cqe->res != 4096) {
105
+ printf("cqe error: %d\n", cqe->res);
106
+ goto err;
107
+ }
108
+
109
+ close(fd);
110
+ return 0;
111
+ err:
112
+ close(fd);
113
+ return 1;
114
+ }