iou 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (297) hide show
  1. checksums.yaml +7 -0
  2. data/.github/dependabot.yml +12 -0
  3. data/.gitignore +59 -0
  4. data/.gitmodules +3 -0
  5. data/Gemfile +3 -0
  6. data/LICENSE +21 -0
  7. data/README.md +106 -0
  8. data/Rakefile +39 -0
  9. data/TODO.md +4 -0
  10. data/examples/echo_server.rb +52 -0
  11. data/examples/event_loop.rb +69 -0
  12. data/examples/http_server.rb +56 -0
  13. data/examples/http_server_multishot.rb +59 -0
  14. data/ext/iou/extconf.rb +71 -0
  15. data/ext/iou/iou.c +729 -0
  16. data/ext/iou/iou.h +66 -0
  17. data/ext/iou/iou_ext.c +9 -0
  18. data/ext/iou/op_spec_data.c +61 -0
  19. data/iou.gemspec +27 -0
  20. data/lib/iou/version.rb +5 -0
  21. data/lib/iou.rb +3 -0
  22. data/test/helper.rb +59 -0
  23. data/test/test_iou.rb +794 -0
  24. data/vendor/liburing/.github/actions/codespell/stopwords +7 -0
  25. data/vendor/liburing/.github/pull_request_template.md +86 -0
  26. data/vendor/liburing/.github/workflows/build.yml +137 -0
  27. data/vendor/liburing/.github/workflows/codespell.yml +25 -0
  28. data/vendor/liburing/.github/workflows/shellcheck.yml +20 -0
  29. data/vendor/liburing/.gitignore +41 -0
  30. data/vendor/liburing/CHANGELOG +111 -0
  31. data/vendor/liburing/CITATION.cff +11 -0
  32. data/vendor/liburing/COPYING +502 -0
  33. data/vendor/liburing/COPYING.GPL +339 -0
  34. data/vendor/liburing/LICENSE +20 -0
  35. data/vendor/liburing/Makefile +96 -0
  36. data/vendor/liburing/Makefile.common +7 -0
  37. data/vendor/liburing/Makefile.quiet +11 -0
  38. data/vendor/liburing/README +106 -0
  39. data/vendor/liburing/SECURITY.md +6 -0
  40. data/vendor/liburing/configure +624 -0
  41. data/vendor/liburing/debian/README.Debian +7 -0
  42. data/vendor/liburing/debian/changelog +38 -0
  43. data/vendor/liburing/debian/control +39 -0
  44. data/vendor/liburing/debian/copyright +49 -0
  45. data/vendor/liburing/debian/liburing-dev.install +4 -0
  46. data/vendor/liburing/debian/liburing-dev.manpages +5 -0
  47. data/vendor/liburing/debian/liburing2.install +1 -0
  48. data/vendor/liburing/debian/liburing2.symbols +56 -0
  49. data/vendor/liburing/debian/patches/series +1 -0
  50. data/vendor/liburing/debian/rules +29 -0
  51. data/vendor/liburing/debian/source/format +1 -0
  52. data/vendor/liburing/debian/source/local-options +2 -0
  53. data/vendor/liburing/debian/source/options +1 -0
  54. data/vendor/liburing/debian/watch +3 -0
  55. data/vendor/liburing/examples/Makefile +53 -0
  56. data/vendor/liburing/examples/helpers.c +62 -0
  57. data/vendor/liburing/examples/helpers.h +7 -0
  58. data/vendor/liburing/examples/io_uring-close-test.c +123 -0
  59. data/vendor/liburing/examples/io_uring-cp.c +282 -0
  60. data/vendor/liburing/examples/io_uring-test.c +112 -0
  61. data/vendor/liburing/examples/io_uring-udp.c +403 -0
  62. data/vendor/liburing/examples/link-cp.c +193 -0
  63. data/vendor/liburing/examples/napi-busy-poll-client.c +509 -0
  64. data/vendor/liburing/examples/napi-busy-poll-server.c +450 -0
  65. data/vendor/liburing/examples/poll-bench.c +101 -0
  66. data/vendor/liburing/examples/proxy.c +2461 -0
  67. data/vendor/liburing/examples/proxy.h +102 -0
  68. data/vendor/liburing/examples/rsrc-update-bench.c +100 -0
  69. data/vendor/liburing/examples/send-zerocopy.c +658 -0
  70. data/vendor/liburing/examples/ucontext-cp.c +258 -0
  71. data/vendor/liburing/liburing-ffi.pc.in +12 -0
  72. data/vendor/liburing/liburing.pc.in +12 -0
  73. data/vendor/liburing/liburing.spec +66 -0
  74. data/vendor/liburing/make-debs.sh +55 -0
  75. data/vendor/liburing/src/Makefile +129 -0
  76. data/vendor/liburing/src/arch/aarch64/lib.h +47 -0
  77. data/vendor/liburing/src/arch/aarch64/syscall.h +91 -0
  78. data/vendor/liburing/src/arch/generic/lib.h +17 -0
  79. data/vendor/liburing/src/arch/generic/syscall.h +100 -0
  80. data/vendor/liburing/src/arch/riscv64/lib.h +48 -0
  81. data/vendor/liburing/src/arch/riscv64/syscall.h +100 -0
  82. data/vendor/liburing/src/arch/syscall-defs.h +94 -0
  83. data/vendor/liburing/src/arch/x86/lib.h +11 -0
  84. data/vendor/liburing/src/arch/x86/syscall.h +296 -0
  85. data/vendor/liburing/src/ffi.c +15 -0
  86. data/vendor/liburing/src/include/liburing/barrier.h +81 -0
  87. data/vendor/liburing/src/include/liburing/io_uring.h +818 -0
  88. data/vendor/liburing/src/include/liburing.h +1602 -0
  89. data/vendor/liburing/src/int_flags.h +11 -0
  90. data/vendor/liburing/src/lib.h +52 -0
  91. data/vendor/liburing/src/liburing-ffi.map +211 -0
  92. data/vendor/liburing/src/liburing.map +104 -0
  93. data/vendor/liburing/src/nolibc.c +55 -0
  94. data/vendor/liburing/src/queue.c +468 -0
  95. data/vendor/liburing/src/register.c +374 -0
  96. data/vendor/liburing/src/setup.c +689 -0
  97. data/vendor/liburing/src/setup.h +9 -0
  98. data/vendor/liburing/src/syscall.c +29 -0
  99. data/vendor/liburing/src/syscall.h +53 -0
  100. data/vendor/liburing/src/version.c +21 -0
  101. data/vendor/liburing/test/232c93d07b74.c +305 -0
  102. data/vendor/liburing/test/35fa71a030ca.c +329 -0
  103. data/vendor/liburing/test/500f9fbadef8.c +91 -0
  104. data/vendor/liburing/test/7ad0e4b2f83c.c +94 -0
  105. data/vendor/liburing/test/8a9973408177.c +107 -0
  106. data/vendor/liburing/test/917257daa0fe.c +54 -0
  107. data/vendor/liburing/test/Makefile +297 -0
  108. data/vendor/liburing/test/a0908ae19763.c +59 -0
  109. data/vendor/liburing/test/a4c0b3decb33.c +181 -0
  110. data/vendor/liburing/test/accept-link.c +255 -0
  111. data/vendor/liburing/test/accept-non-empty.c +256 -0
  112. data/vendor/liburing/test/accept-reuse.c +163 -0
  113. data/vendor/liburing/test/accept-test.c +83 -0
  114. data/vendor/liburing/test/accept.c +919 -0
  115. data/vendor/liburing/test/across-fork.c +284 -0
  116. data/vendor/liburing/test/b19062a56726.c +54 -0
  117. data/vendor/liburing/test/b5837bd5311d.c +78 -0
  118. data/vendor/liburing/test/bind-listen.c +408 -0
  119. data/vendor/liburing/test/buf-ring-nommap.c +123 -0
  120. data/vendor/liburing/test/buf-ring-put.c +83 -0
  121. data/vendor/liburing/test/buf-ring.c +473 -0
  122. data/vendor/liburing/test/ce593a6c480a.c +139 -0
  123. data/vendor/liburing/test/close-opath.c +123 -0
  124. data/vendor/liburing/test/config +14 -0
  125. data/vendor/liburing/test/connect-rep.c +204 -0
  126. data/vendor/liburing/test/connect.c +442 -0
  127. data/vendor/liburing/test/coredump.c +60 -0
  128. data/vendor/liburing/test/cq-full.c +97 -0
  129. data/vendor/liburing/test/cq-overflow.c +530 -0
  130. data/vendor/liburing/test/cq-peek-batch.c +103 -0
  131. data/vendor/liburing/test/cq-ready.c +95 -0
  132. data/vendor/liburing/test/cq-size.c +65 -0
  133. data/vendor/liburing/test/d4ae271dfaae.c +96 -0
  134. data/vendor/liburing/test/d77a67ed5f27.c +65 -0
  135. data/vendor/liburing/test/defer-taskrun.c +391 -0
  136. data/vendor/liburing/test/defer-tw-timeout.c +173 -0
  137. data/vendor/liburing/test/defer.c +319 -0
  138. data/vendor/liburing/test/double-poll-crash.c +195 -0
  139. data/vendor/liburing/test/drop-submit.c +94 -0
  140. data/vendor/liburing/test/eeed8b54e0df.c +120 -0
  141. data/vendor/liburing/test/empty-eownerdead.c +45 -0
  142. data/vendor/liburing/test/eploop.c +74 -0
  143. data/vendor/liburing/test/eventfd-disable.c +179 -0
  144. data/vendor/liburing/test/eventfd-reg.c +77 -0
  145. data/vendor/liburing/test/eventfd-ring.c +98 -0
  146. data/vendor/liburing/test/eventfd.c +113 -0
  147. data/vendor/liburing/test/evloop.c +73 -0
  148. data/vendor/liburing/test/exec-target.c +6 -0
  149. data/vendor/liburing/test/exit-no-cleanup.c +117 -0
  150. data/vendor/liburing/test/fadvise.c +202 -0
  151. data/vendor/liburing/test/fallocate.c +265 -0
  152. data/vendor/liburing/test/fc2a85cb02ef.c +132 -0
  153. data/vendor/liburing/test/fd-install.c +500 -0
  154. data/vendor/liburing/test/fd-pass.c +237 -0
  155. data/vendor/liburing/test/fdinfo.c +419 -0
  156. data/vendor/liburing/test/file-register.c +1189 -0
  157. data/vendor/liburing/test/file-update.c +231 -0
  158. data/vendor/liburing/test/file-verify.c +654 -0
  159. data/vendor/liburing/test/files-exit-hang-poll.c +114 -0
  160. data/vendor/liburing/test/files-exit-hang-timeout.c +137 -0
  161. data/vendor/liburing/test/fixed-buf-iter.c +115 -0
  162. data/vendor/liburing/test/fixed-buf-merge.c +101 -0
  163. data/vendor/liburing/test/fixed-hugepage.c +411 -0
  164. data/vendor/liburing/test/fixed-link.c +90 -0
  165. data/vendor/liburing/test/fixed-reuse.c +160 -0
  166. data/vendor/liburing/test/fpos.c +255 -0
  167. data/vendor/liburing/test/fsnotify.c +118 -0
  168. data/vendor/liburing/test/fsync.c +224 -0
  169. data/vendor/liburing/test/futex.c +571 -0
  170. data/vendor/liburing/test/hardlink.c +170 -0
  171. data/vendor/liburing/test/helpers.c +318 -0
  172. data/vendor/liburing/test/helpers.h +108 -0
  173. data/vendor/liburing/test/ignore-single-mmap.c +48 -0
  174. data/vendor/liburing/test/init-mem.c +164 -0
  175. data/vendor/liburing/test/io-cancel.c +561 -0
  176. data/vendor/liburing/test/io_uring_enter.c +264 -0
  177. data/vendor/liburing/test/io_uring_passthrough.c +482 -0
  178. data/vendor/liburing/test/io_uring_register.c +503 -0
  179. data/vendor/liburing/test/io_uring_setup.c +110 -0
  180. data/vendor/liburing/test/iopoll-leak.c +85 -0
  181. data/vendor/liburing/test/iopoll-overflow.c +118 -0
  182. data/vendor/liburing/test/iopoll.c +465 -0
  183. data/vendor/liburing/test/lfs-openat-write.c +119 -0
  184. data/vendor/liburing/test/lfs-openat.c +273 -0
  185. data/vendor/liburing/test/link-timeout.c +1108 -0
  186. data/vendor/liburing/test/link.c +497 -0
  187. data/vendor/liburing/test/link_drain.c +255 -0
  188. data/vendor/liburing/test/madvise.c +195 -0
  189. data/vendor/liburing/test/min-timeout-wait.c +354 -0
  190. data/vendor/liburing/test/min-timeout.c +233 -0
  191. data/vendor/liburing/test/mkdir.c +112 -0
  192. data/vendor/liburing/test/msg-ring-fd.c +331 -0
  193. data/vendor/liburing/test/msg-ring-flags.c +212 -0
  194. data/vendor/liburing/test/msg-ring-overflow.c +159 -0
  195. data/vendor/liburing/test/msg-ring.c +467 -0
  196. data/vendor/liburing/test/multicqes_drain.c +429 -0
  197. data/vendor/liburing/test/napi-test.c +215 -0
  198. data/vendor/liburing/test/napi-test.sh +48 -0
  199. data/vendor/liburing/test/no-mmap-inval.c +42 -0
  200. data/vendor/liburing/test/nolibc.c +62 -0
  201. data/vendor/liburing/test/nop-all-sizes.c +99 -0
  202. data/vendor/liburing/test/nop.c +177 -0
  203. data/vendor/liburing/test/nvme.h +169 -0
  204. data/vendor/liburing/test/ooo-file-unreg.c +82 -0
  205. data/vendor/liburing/test/open-close.c +261 -0
  206. data/vendor/liburing/test/open-direct-link.c +188 -0
  207. data/vendor/liburing/test/open-direct-pick.c +180 -0
  208. data/vendor/liburing/test/openat2.c +312 -0
  209. data/vendor/liburing/test/personality.c +204 -0
  210. data/vendor/liburing/test/pipe-bug.c +95 -0
  211. data/vendor/liburing/test/pipe-eof.c +83 -0
  212. data/vendor/liburing/test/pipe-reuse.c +105 -0
  213. data/vendor/liburing/test/poll-cancel-all.c +496 -0
  214. data/vendor/liburing/test/poll-cancel-ton.c +135 -0
  215. data/vendor/liburing/test/poll-cancel.c +228 -0
  216. data/vendor/liburing/test/poll-link.c +221 -0
  217. data/vendor/liburing/test/poll-many.c +230 -0
  218. data/vendor/liburing/test/poll-mshot-overflow.c +265 -0
  219. data/vendor/liburing/test/poll-mshot-update.c +323 -0
  220. data/vendor/liburing/test/poll-race-mshot.c +276 -0
  221. data/vendor/liburing/test/poll-race.c +105 -0
  222. data/vendor/liburing/test/poll-ring.c +48 -0
  223. data/vendor/liburing/test/poll-v-poll.c +353 -0
  224. data/vendor/liburing/test/poll.c +327 -0
  225. data/vendor/liburing/test/probe.c +135 -0
  226. data/vendor/liburing/test/read-before-exit.c +129 -0
  227. data/vendor/liburing/test/read-mshot-empty.c +153 -0
  228. data/vendor/liburing/test/read-mshot.c +404 -0
  229. data/vendor/liburing/test/read-write.c +1013 -0
  230. data/vendor/liburing/test/recv-msgall-stream.c +398 -0
  231. data/vendor/liburing/test/recv-msgall.c +263 -0
  232. data/vendor/liburing/test/recv-multishot.c +602 -0
  233. data/vendor/liburing/test/recvsend_bundle.c +691 -0
  234. data/vendor/liburing/test/reg-fd-only.c +131 -0
  235. data/vendor/liburing/test/reg-hint.c +56 -0
  236. data/vendor/liburing/test/reg-reg-ring.c +90 -0
  237. data/vendor/liburing/test/regbuf-merge.c +91 -0
  238. data/vendor/liburing/test/register-restrictions.c +633 -0
  239. data/vendor/liburing/test/rename.c +132 -0
  240. data/vendor/liburing/test/ring-leak.c +283 -0
  241. data/vendor/liburing/test/ring-leak2.c +249 -0
  242. data/vendor/liburing/test/ringbuf-read.c +196 -0
  243. data/vendor/liburing/test/ringbuf-status.c +242 -0
  244. data/vendor/liburing/test/rsrc_tags.c +461 -0
  245. data/vendor/liburing/test/runtests-loop.sh +16 -0
  246. data/vendor/liburing/test/runtests-quiet.sh +11 -0
  247. data/vendor/liburing/test/runtests.sh +168 -0
  248. data/vendor/liburing/test/rw_merge_test.c +98 -0
  249. data/vendor/liburing/test/self.c +91 -0
  250. data/vendor/liburing/test/send-zerocopy.c +971 -0
  251. data/vendor/liburing/test/send_recv.c +412 -0
  252. data/vendor/liburing/test/send_recvmsg.c +444 -0
  253. data/vendor/liburing/test/shared-wq.c +84 -0
  254. data/vendor/liburing/test/short-read.c +75 -0
  255. data/vendor/liburing/test/shutdown.c +165 -0
  256. data/vendor/liburing/test/sigfd-deadlock.c +88 -0
  257. data/vendor/liburing/test/single-issuer.c +169 -0
  258. data/vendor/liburing/test/skip-cqe.c +428 -0
  259. data/vendor/liburing/test/socket-getsetsock-cmd.c +346 -0
  260. data/vendor/liburing/test/socket-io-cmd.c +237 -0
  261. data/vendor/liburing/test/socket-rw-eagain.c +149 -0
  262. data/vendor/liburing/test/socket-rw-offset.c +149 -0
  263. data/vendor/liburing/test/socket-rw.c +137 -0
  264. data/vendor/liburing/test/socket.c +408 -0
  265. data/vendor/liburing/test/splice.c +512 -0
  266. data/vendor/liburing/test/sq-full-cpp.cc +45 -0
  267. data/vendor/liburing/test/sq-full.c +45 -0
  268. data/vendor/liburing/test/sq-poll-dup.c +211 -0
  269. data/vendor/liburing/test/sq-poll-kthread.c +169 -0
  270. data/vendor/liburing/test/sq-poll-share.c +138 -0
  271. data/vendor/liburing/test/sq-space_left.c +159 -0
  272. data/vendor/liburing/test/sqpoll-disable-exit.c +196 -0
  273. data/vendor/liburing/test/sqpoll-exec.c +132 -0
  274. data/vendor/liburing/test/sqpoll-exit-hang.c +78 -0
  275. data/vendor/liburing/test/sqpoll-sleep.c +69 -0
  276. data/vendor/liburing/test/statx.c +172 -0
  277. data/vendor/liburing/test/stdout.c +232 -0
  278. data/vendor/liburing/test/submit-and-wait.c +108 -0
  279. data/vendor/liburing/test/submit-link-fail.c +156 -0
  280. data/vendor/liburing/test/submit-reuse.c +237 -0
  281. data/vendor/liburing/test/symlink.c +117 -0
  282. data/vendor/liburing/test/sync-cancel.c +235 -0
  283. data/vendor/liburing/test/teardowns.c +58 -0
  284. data/vendor/liburing/test/test.h +36 -0
  285. data/vendor/liburing/test/thread-exit.c +143 -0
  286. data/vendor/liburing/test/timeout-new.c +256 -0
  287. data/vendor/liburing/test/timeout.c +1798 -0
  288. data/vendor/liburing/test/truncate.c +186 -0
  289. data/vendor/liburing/test/tty-write-dpoll.c +60 -0
  290. data/vendor/liburing/test/unlink.c +112 -0
  291. data/vendor/liburing/test/version.c +25 -0
  292. data/vendor/liburing/test/wait-timeout.c +287 -0
  293. data/vendor/liburing/test/waitid.c +373 -0
  294. data/vendor/liburing/test/wakeup-hang.c +162 -0
  295. data/vendor/liburing/test/wq-aff.c +146 -0
  296. data/vendor/liburing/test/xattr.c +442 -0
  297. metadata +402 -0
@@ -0,0 +1,62 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Test liburing nolibc functionality.
4
+ *
5
+ * Currently, supported architectures are:
6
+ * 1) x86
7
+ * 2) x86-64
8
+ * 3) aarch64
9
+ * 4) riscv64
10
+ *
11
+ */
12
+ #include "helpers.h"
13
+
14
+ #if !defined(__x86_64__) && !defined(__i386__) && !defined(__aarch64__) && (!defined(__riscv) && __riscv_xlen != 64)
15
+
16
+
17
+ /*
18
+ * This arch doesn't support nolibc.
19
+ */
20
+ int main(void)
21
+ {
22
+ return T_EXIT_SKIP;
23
+ }
24
+
25
+ #else /* #if !defined(__x86_64__) && !defined(__i386__) && !defined(__aarch64__) && (!defined(__riscv) && __riscv_xlen != 64) */
26
+
27
+ #ifndef CONFIG_NOLIBC
28
+ #define CONFIG_NOLIBC
29
+ #endif
30
+
31
+ #include <stdio.h>
32
+ #include <unistd.h>
33
+ #include "../src/lib.h"
34
+
35
+ static int test_get_page_size(void)
36
+ {
37
+ long a, b;
38
+
39
+ a = sysconf(_SC_PAGESIZE);
40
+ b = get_page_size();
41
+ if (a != b) {
42
+ fprintf(stderr, "get_page_size() fails, %ld != %ld", a, b);
43
+ return -1;
44
+ }
45
+ return 0;
46
+ }
47
+
48
+ int main(int argc, char *argv[])
49
+ {
50
+ int ret;
51
+
52
+ if (argc > 1)
53
+ return T_EXIT_SKIP;
54
+
55
+ ret = test_get_page_size();
56
+ if (ret)
57
+ return T_EXIT_FAIL;
58
+
59
+ return T_EXIT_PASS;
60
+ }
61
+
62
+ #endif /* #if !defined(__x86_64__) && !defined(__i386__) && !defined(__aarch64__) && (!defined(__riscv) && __riscv_xlen != 64) */
@@ -0,0 +1,99 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: exercise full filling of SQ and CQ ring
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 "liburing.h"
14
+
15
+ #define MAX_ENTRIES 32768
16
+
17
+ static int fill_nops(struct io_uring *ring)
18
+ {
19
+ struct io_uring_sqe *sqe;
20
+ int filled = 0;
21
+
22
+ do {
23
+ sqe = io_uring_get_sqe(ring);
24
+ if (!sqe)
25
+ break;
26
+
27
+ io_uring_prep_nop(sqe);
28
+ filled++;
29
+ } while (1);
30
+
31
+ return filled;
32
+ }
33
+
34
+ static int test_nops(struct io_uring *ring)
35
+ {
36
+ struct io_uring_cqe *cqe;
37
+ int ret, nr, total = 0, i;
38
+
39
+ nr = fill_nops(ring);
40
+
41
+ ret = io_uring_submit(ring);
42
+ if (ret != nr) {
43
+ fprintf(stderr, "submit %d, wanted %d\n", ret, nr);
44
+ goto err;
45
+ }
46
+ total += ret;
47
+
48
+ nr = fill_nops(ring);
49
+
50
+ ret = io_uring_submit(ring);
51
+ if (ret != nr) {
52
+ fprintf(stderr, "submit %d, wanted %d\n", ret, nr);
53
+ goto err;
54
+ }
55
+ total += ret;
56
+
57
+ for (i = 0; i < total; i++) {
58
+ ret = io_uring_wait_cqe(ring, &cqe);
59
+ if (ret < 0) {
60
+ fprintf(stderr, "wait completion %d\n", ret);
61
+ goto err;
62
+ }
63
+
64
+ io_uring_cqe_seen(ring, cqe);
65
+ }
66
+ return 0;
67
+ err:
68
+ return 1;
69
+ }
70
+
71
+ int main(int argc, char *argv[])
72
+ {
73
+ struct io_uring ring;
74
+ int ret, depth;
75
+
76
+ if (argc > 1)
77
+ return 0;
78
+
79
+ depth = 1;
80
+ while (depth <= MAX_ENTRIES) {
81
+ ret = io_uring_queue_init(depth, &ring, 0);
82
+ if (ret) {
83
+ if (ret == -ENOMEM)
84
+ break;
85
+ fprintf(stderr, "ring setup failed: %d\n", ret);
86
+ return 1;
87
+ }
88
+
89
+ ret = test_nops(&ring);
90
+ if (ret) {
91
+ fprintf(stderr, "test_single_nop failed\n");
92
+ return ret;
93
+ }
94
+ depth <<= 1;
95
+ io_uring_queue_exit(&ring);
96
+ }
97
+
98
+ return 0;
99
+ }
@@ -0,0 +1,177 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: run various nop tests
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 "liburing.h"
14
+ #include "test.h"
15
+
16
+ static int seq;
17
+
18
+ static int test_single_nop(struct io_uring *ring, unsigned req_flags)
19
+ {
20
+ struct io_uring_cqe *cqe;
21
+ struct io_uring_sqe *sqe;
22
+ int ret;
23
+ bool cqe32 = (ring->flags & IORING_SETUP_CQE32);
24
+
25
+ sqe = io_uring_get_sqe(ring);
26
+ if (!sqe) {
27
+ fprintf(stderr, "get sqe failed\n");
28
+ goto err;
29
+ }
30
+
31
+ io_uring_prep_nop(sqe);
32
+ sqe->user_data = ++seq;
33
+ sqe->flags |= req_flags;
34
+
35
+ ret = io_uring_submit(ring);
36
+ if (ret <= 0) {
37
+ fprintf(stderr, "sqe submit failed: %d\n", ret);
38
+ goto err;
39
+ }
40
+
41
+ ret = io_uring_wait_cqe(ring, &cqe);
42
+ if (ret < 0) {
43
+ fprintf(stderr, "wait completion %d\n", ret);
44
+ goto err;
45
+ }
46
+ if (!cqe->user_data) {
47
+ fprintf(stderr, "Unexpected 0 user_data\n");
48
+ goto err;
49
+ }
50
+ if (cqe32) {
51
+ if (cqe->big_cqe[0] != 0) {
52
+ fprintf(stderr, "Unexpected extra1\n");
53
+ goto err;
54
+
55
+ }
56
+ if (cqe->big_cqe[1] != 0) {
57
+ fprintf(stderr, "Unexpected extra2\n");
58
+ goto err;
59
+ }
60
+ }
61
+ io_uring_cqe_seen(ring, cqe);
62
+ return 0;
63
+ err:
64
+ return 1;
65
+ }
66
+
67
+ static int test_barrier_nop(struct io_uring *ring, unsigned req_flags)
68
+ {
69
+ struct io_uring_cqe *cqe;
70
+ struct io_uring_sqe *sqe;
71
+ int ret, i;
72
+ bool cqe32 = (ring->flags & IORING_SETUP_CQE32);
73
+
74
+ for (i = 0; i < 8; i++) {
75
+ sqe = io_uring_get_sqe(ring);
76
+ if (!sqe) {
77
+ fprintf(stderr, "get sqe failed\n");
78
+ goto err;
79
+ }
80
+
81
+ io_uring_prep_nop(sqe);
82
+ if (i == 4)
83
+ sqe->flags = IOSQE_IO_DRAIN;
84
+ sqe->user_data = ++seq;
85
+ sqe->flags |= req_flags;
86
+ }
87
+
88
+ ret = io_uring_submit(ring);
89
+ if (ret < 0) {
90
+ fprintf(stderr, "sqe submit failed: %d\n", ret);
91
+ goto err;
92
+ } else if (ret < 8) {
93
+ fprintf(stderr, "Submitted only %d\n", ret);
94
+ goto err;
95
+ }
96
+
97
+ for (i = 0; i < 8; i++) {
98
+ ret = io_uring_wait_cqe(ring, &cqe);
99
+ if (ret < 0) {
100
+ fprintf(stderr, "wait completion %d\n", ret);
101
+ goto err;
102
+ }
103
+ if (!cqe->user_data) {
104
+ fprintf(stderr, "Unexpected 0 user_data\n");
105
+ goto err;
106
+ }
107
+ if (cqe32) {
108
+ if (cqe->big_cqe[0] != 0) {
109
+ fprintf(stderr, "Unexpected extra1\n");
110
+ goto err;
111
+ }
112
+ if (cqe->big_cqe[1] != 0) {
113
+ fprintf(stderr, "Unexpected extra2\n");
114
+ goto err;
115
+ }
116
+ }
117
+ io_uring_cqe_seen(ring, cqe);
118
+ }
119
+
120
+ return 0;
121
+ err:
122
+ return 1;
123
+ }
124
+
125
+ static int test_ring(unsigned flags)
126
+ {
127
+ struct io_uring ring;
128
+ struct io_uring_params p = { };
129
+ int ret, i;
130
+
131
+ p.flags = flags;
132
+ ret = io_uring_queue_init_params(8, &ring, &p);
133
+ if (ret) {
134
+ if (ret == -EINVAL)
135
+ return 0;
136
+ fprintf(stderr, "ring setup failed: %d\n", ret);
137
+ return 1;
138
+ }
139
+
140
+ for (i = 0; i < 1000; i++) {
141
+ unsigned req_flags = (i & 1) ? IOSQE_ASYNC : 0;
142
+
143
+ ret = test_single_nop(&ring, req_flags);
144
+ if (ret) {
145
+ fprintf(stderr, "test_single_nop failed\n");
146
+ goto err;
147
+ }
148
+
149
+ ret = test_barrier_nop(&ring, req_flags);
150
+ if (ret) {
151
+ fprintf(stderr, "test_barrier_nop failed\n");
152
+ goto err;
153
+ }
154
+ }
155
+ err:
156
+ io_uring_queue_exit(&ring);
157
+ return ret;
158
+ }
159
+
160
+ int main(int argc, char *argv[])
161
+ {
162
+ int ret;
163
+
164
+ if (argc > 1)
165
+ return 0;
166
+
167
+ FOR_ALL_TEST_CONFIGS {
168
+ ret = test_ring(IORING_GET_TEST_CONFIG_FLAGS());
169
+ if (ret) {
170
+ fprintf(stderr, "Normal ring test failed: %s\n",
171
+ IORING_GET_TEST_CONFIG_DESCRIPTION());
172
+ return ret;
173
+ }
174
+ }
175
+
176
+ return 0;
177
+ }
@@ -0,0 +1,169 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: Helpers for NVMe uring passthrough commands
4
+ */
5
+ #ifndef LIBURING_NVME_H
6
+ #define LIBURING_NVME_H
7
+
8
+ #ifdef __cplusplus
9
+ extern "C" {
10
+ #endif
11
+
12
+ #include <sys/ioctl.h>
13
+ #include <linux/nvme_ioctl.h>
14
+
15
+ /*
16
+ * If the uapi headers installed on the system lacks nvme uring command
17
+ * support, use the local version to prevent compilation issues.
18
+ */
19
+ #ifndef CONFIG_HAVE_NVME_URING
20
+ struct nvme_uring_cmd {
21
+ __u8 opcode;
22
+ __u8 flags;
23
+ __u16 rsvd1;
24
+ __u32 nsid;
25
+ __u32 cdw2;
26
+ __u32 cdw3;
27
+ __u64 metadata;
28
+ __u64 addr;
29
+ __u32 metadata_len;
30
+ __u32 data_len;
31
+ __u32 cdw10;
32
+ __u32 cdw11;
33
+ __u32 cdw12;
34
+ __u32 cdw13;
35
+ __u32 cdw14;
36
+ __u32 cdw15;
37
+ __u32 timeout_ms;
38
+ __u32 rsvd2;
39
+ };
40
+
41
+ #define NVME_URING_CMD_IO _IOWR('N', 0x80, struct nvme_uring_cmd)
42
+ #define NVME_URING_CMD_IO_VEC _IOWR('N', 0x81, struct nvme_uring_cmd)
43
+ #endif /* CONFIG_HAVE_NVME_URING */
44
+
45
+ #define NVME_DEFAULT_IOCTL_TIMEOUT 0
46
+ #define NVME_IDENTIFY_DATA_SIZE 4096
47
+ #define NVME_IDENTIFY_CSI_SHIFT 24
48
+ #define NVME_IDENTIFY_CNS_NS 0
49
+ #define NVME_CSI_NVM 0
50
+
51
+ enum nvme_admin_opcode {
52
+ nvme_admin_identify = 0x06,
53
+ };
54
+
55
+ enum nvme_io_opcode {
56
+ nvme_cmd_write = 0x01,
57
+ nvme_cmd_read = 0x02,
58
+ };
59
+
60
+ static int nsid;
61
+ static __u32 lba_shift;
62
+
63
+ struct nvme_lbaf {
64
+ __le16 ms;
65
+ __u8 ds;
66
+ __u8 rp;
67
+ };
68
+
69
+ struct nvme_id_ns {
70
+ __le64 nsze;
71
+ __le64 ncap;
72
+ __le64 nuse;
73
+ __u8 nsfeat;
74
+ __u8 nlbaf;
75
+ __u8 flbas;
76
+ __u8 mc;
77
+ __u8 dpc;
78
+ __u8 dps;
79
+ __u8 nmic;
80
+ __u8 rescap;
81
+ __u8 fpi;
82
+ __u8 dlfeat;
83
+ __le16 nawun;
84
+ __le16 nawupf;
85
+ __le16 nacwu;
86
+ __le16 nabsn;
87
+ __le16 nabo;
88
+ __le16 nabspf;
89
+ __le16 noiob;
90
+ __u8 nvmcap[16];
91
+ __le16 npwg;
92
+ __le16 npwa;
93
+ __le16 npdg;
94
+ __le16 npda;
95
+ __le16 nows;
96
+ __le16 mssrl;
97
+ __le32 mcl;
98
+ __u8 msrc;
99
+ __u8 rsvd81[11];
100
+ __le32 anagrpid;
101
+ __u8 rsvd96[3];
102
+ __u8 nsattr;
103
+ __le16 nvmsetid;
104
+ __le16 endgid;
105
+ __u8 nguid[16];
106
+ __u8 eui64[8];
107
+ struct nvme_lbaf lbaf[16];
108
+ __u8 rsvd192[192];
109
+ __u8 vs[3712];
110
+ };
111
+
112
+ static inline int ilog2(uint32_t i)
113
+ {
114
+ int log = -1;
115
+
116
+ while (i) {
117
+ i >>= 1;
118
+ log++;
119
+ }
120
+ return log;
121
+ }
122
+
123
+ __attribute__((__unused__))
124
+ static int nvme_get_info(const char *file)
125
+ {
126
+ struct nvme_id_ns ns;
127
+ int fd, err;
128
+ __u32 lba_size;
129
+
130
+ fd = open(file, O_RDONLY);
131
+ if (fd < 0) {
132
+ perror("file open");
133
+ return -errno;
134
+ }
135
+
136
+ nsid = ioctl(fd, NVME_IOCTL_ID);
137
+ if (nsid < 0) {
138
+ close(fd);
139
+ return -errno;
140
+ }
141
+
142
+ struct nvme_passthru_cmd cmd = {
143
+ .opcode = nvme_admin_identify,
144
+ .nsid = nsid,
145
+ .addr = (__u64)(uintptr_t)&ns,
146
+ .data_len = NVME_IDENTIFY_DATA_SIZE,
147
+ .cdw10 = NVME_IDENTIFY_CNS_NS,
148
+ .cdw11 = NVME_CSI_NVM << NVME_IDENTIFY_CSI_SHIFT,
149
+ .timeout_ms = NVME_DEFAULT_IOCTL_TIMEOUT,
150
+ };
151
+
152
+ err = ioctl(fd, NVME_IOCTL_ADMIN_CMD, &cmd);
153
+ if (err) {
154
+ close(fd);
155
+ return err;
156
+ }
157
+
158
+ lba_size = 1 << ns.lbaf[(ns.flbas & 0x0f)].ds;
159
+ lba_shift = ilog2(lba_size);
160
+
161
+ close(fd);
162
+ return 0;
163
+ }
164
+
165
+ #ifdef __cplusplus
166
+ }
167
+ #endif
168
+
169
+ #endif
@@ -0,0 +1,82 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: Test that out-of-order file updates with inflight requests
4
+ * work as expected.
5
+ *
6
+ */
7
+ #include <stdio.h>
8
+ #include <fcntl.h>
9
+ #include <sys/socket.h>
10
+ #include <unistd.h>
11
+ #include <stdlib.h>
12
+ #include <sys/poll.h>
13
+
14
+ #include "liburing.h"
15
+ #include "helpers.h"
16
+
17
+ int main(int argc, char *argv[])
18
+ {
19
+ struct io_uring_sqe *sqe;
20
+ int res, fds[2], sockid;
21
+ struct io_uring ring;
22
+
23
+ if (argc > 1)
24
+ return T_EXIT_SKIP;
25
+
26
+ res = io_uring_queue_init(1, &ring, 0);
27
+ if (res) {
28
+ fprintf(stderr, "queue_init: %d\n", res);
29
+ return T_EXIT_FAIL;
30
+ }
31
+
32
+ res = io_uring_register_files_sparse(&ring, 2);
33
+ if (res) {
34
+ if (res == -EINVAL)
35
+ return T_EXIT_SKIP;
36
+ fprintf(stderr, "sparse reg: %d\n", res);
37
+ return T_EXIT_FAIL;
38
+ }
39
+
40
+ fds[0] = socket(AF_INET, SOCK_DGRAM, 0);
41
+ if (fds[0] < 0) {
42
+ perror("socket");
43
+ return T_EXIT_FAIL;
44
+ }
45
+ fds[1] = socket(AF_INET, SOCK_DGRAM, 0);
46
+ if (fds[1] < 0) {
47
+ perror("socket");
48
+ return T_EXIT_FAIL;
49
+ }
50
+
51
+ res = io_uring_register_files_update(&ring, 0, fds, 2);
52
+ if (res != 2) {
53
+ fprintf(stderr, "files updates; %d\n", res);
54
+ return T_EXIT_FAIL;
55
+ }
56
+
57
+ sqe = io_uring_get_sqe(&ring);
58
+ io_uring_prep_poll_add(sqe, 0, POLLIN);
59
+ sqe->flags = IOSQE_FIXED_FILE;
60
+ io_uring_submit(&ring);
61
+
62
+ close(fds[0]);
63
+ close(fds[1]);
64
+
65
+ sockid = -1;
66
+ res = io_uring_register_files_update(&ring, 1, &sockid, 1);
67
+ if (res != 1) {
68
+ fprintf(stderr, "files updates; %d\n", res);
69
+ return T_EXIT_FAIL;
70
+ }
71
+
72
+ sockid = -1;
73
+ res = io_uring_register_files_update(&ring, 0, &sockid, 1);
74
+ if (res != 1) {
75
+ fprintf(stderr, "files updates; %d\n", res);
76
+ return T_EXIT_FAIL;
77
+ }
78
+
79
+ sleep(1);
80
+ io_uring_queue_exit(&ring);
81
+ return T_EXIT_PASS;
82
+ }