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,157 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ #include <fcntl.h>
3
+ #include <signal.h>
4
+ #include <stdint.h>
5
+ #include <stdlib.h>
6
+ #include <string.h>
7
+ #include <sys/mman.h>
8
+ #include <sys/wait.h>
9
+ #include <time.h>
10
+ #include <unistd.h>
11
+ #include "liburing.h"
12
+ #include "../src/syscall.h"
13
+
14
+ static uint64_t current_time_ms(void)
15
+ {
16
+ struct timespec ts;
17
+ if (clock_gettime(CLOCK_MONOTONIC, &ts))
18
+ exit(1);
19
+ return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
20
+ }
21
+
22
+ #define SIZEOF_IO_URING_SQE 64
23
+ #define SIZEOF_IO_URING_CQE 16
24
+ #define SQ_TAIL_OFFSET 64
25
+ #define SQ_RING_MASK_OFFSET 256
26
+ #define SQ_RING_ENTRIES_OFFSET 264
27
+ #define CQ_RING_ENTRIES_OFFSET 268
28
+ #define CQ_CQES_OFFSET 320
29
+
30
+ #define IORING_OFF_SQES 0x10000000ULL
31
+
32
+ static void kill_and_wait(int pid, int* status)
33
+ {
34
+ kill(-pid, SIGKILL);
35
+ kill(pid, SIGKILL);
36
+ while (waitpid(-1, status, __WALL) != pid) {
37
+ }
38
+ }
39
+
40
+ #define WAIT_FLAGS __WALL
41
+
42
+ uint64_t r[3] = {0xffffffffffffffff, 0x0, 0x0};
43
+
44
+ static long syz_io_uring_setup(volatile long a0, volatile long a1,
45
+ volatile long a2, volatile long a3, volatile long a4, volatile long
46
+ a5)
47
+ {
48
+ uint32_t entries = (uint32_t)a0;
49
+ struct io_uring_params* setup_params = (struct io_uring_params*)a1;
50
+ void* vma1 = (void*)a2;
51
+ void* vma2 = (void*)a3;
52
+ void** ring_ptr_out = (void**)a4;
53
+ void** sqes_ptr_out = (void**)a5;
54
+ uint32_t fd_io_uring = __sys_io_uring_setup(entries, setup_params);
55
+ uint32_t sq_ring_sz = setup_params->sq_off.array +
56
+ setup_params->sq_entries * sizeof(uint32_t);
57
+ uint32_t cq_ring_sz = setup_params->cq_off.cqes +
58
+ setup_params->cq_entries * SIZEOF_IO_URING_CQE;
59
+ uint32_t ring_sz = sq_ring_sz > cq_ring_sz ? sq_ring_sz : cq_ring_sz;
60
+ *ring_ptr_out = mmap(vma1, ring_sz, PROT_READ | PROT_WRITE,
61
+ MAP_SHARED | MAP_POPULATE | MAP_FIXED, fd_io_uring,
62
+ IORING_OFF_SQ_RING);
63
+ uint32_t sqes_sz = setup_params->sq_entries * SIZEOF_IO_URING_SQE;
64
+ *sqes_ptr_out = mmap(vma2, sqes_sz, PROT_READ | PROT_WRITE,
65
+ MAP_SHARED | MAP_POPULATE | MAP_FIXED, fd_io_uring, IORING_OFF_SQES);
66
+ return fd_io_uring;
67
+ }
68
+
69
+ static long syz_io_uring_submit(volatile long a0, volatile long a1,
70
+ volatile long a2, volatile long a3)
71
+ {
72
+ char* ring_ptr = (char*)a0;
73
+ char* sqes_ptr = (char*)a1;
74
+ char* sqe = (char*)a2;
75
+ uint32_t sqes_index = (uint32_t)a3;
76
+ uint32_t sq_ring_entries = *(uint32_t*)(ring_ptr + SQ_RING_ENTRIES_OFFSET);
77
+ uint32_t cq_ring_entries = *(uint32_t*)(ring_ptr + CQ_RING_ENTRIES_OFFSET);
78
+ uint32_t sq_array_off = (CQ_CQES_OFFSET + cq_ring_entries *
79
+ SIZEOF_IO_URING_CQE + 63) & ~63;
80
+ if (sq_ring_entries)
81
+ sqes_index %= sq_ring_entries;
82
+ char* sqe_dest = sqes_ptr + sqes_index * SIZEOF_IO_URING_SQE;
83
+ memcpy(sqe_dest, sqe, SIZEOF_IO_URING_SQE);
84
+ uint32_t sq_ring_mask = *(uint32_t*)(ring_ptr + SQ_RING_MASK_OFFSET);
85
+ uint32_t* sq_tail_ptr = (uint32_t*)(ring_ptr + SQ_TAIL_OFFSET);
86
+ uint32_t sq_tail = *sq_tail_ptr & sq_ring_mask;
87
+ uint32_t sq_tail_next = *sq_tail_ptr + 1;
88
+ uint32_t* sq_array = (uint32_t*)(ring_ptr + sq_array_off);
89
+ *(sq_array + sq_tail) = sqes_index;
90
+ __atomic_store_n(sq_tail_ptr, sq_tail_next, __ATOMIC_RELEASE);
91
+ return 0;
92
+ }
93
+
94
+
95
+ void trigger_bug(void)
96
+ {
97
+ intptr_t res = 0;
98
+ *(uint32_t*)0x20000204 = 0;
99
+ *(uint32_t*)0x20000208 = 2;
100
+ *(uint32_t*)0x2000020c = 0;
101
+ *(uint32_t*)0x20000210 = 0;
102
+ *(uint32_t*)0x20000218 = -1;
103
+ memset((void*)0x2000021c, 0, 12);
104
+ res = -1;
105
+ res = syz_io_uring_setup(0x7987, 0x20000200, 0x20400000, 0x20ffd000, 0x200000c0, 0x200001c0);
106
+ if (res != -1) {
107
+ r[0] = res;
108
+ r[1] = *(uint64_t*)0x200000c0;
109
+ r[2] = *(uint64_t*)0x200001c0;
110
+ }
111
+ *(uint8_t*)0x20000180 = 0xb;
112
+ *(uint8_t*)0x20000181 = 1;
113
+ *(uint16_t*)0x20000182 = 0;
114
+ *(uint32_t*)0x20000184 = 0;
115
+ *(uint64_t*)0x20000188 = 4;
116
+ *(uint64_t*)0x20000190 = 0x20000140;
117
+ *(uint64_t*)0x20000140 = 0x77359400;
118
+ *(uint64_t*)0x20000148 = 0;
119
+ *(uint32_t*)0x20000198 = 1;
120
+ *(uint32_t*)0x2000019c = 0;
121
+ *(uint64_t*)0x200001a0 = 0;
122
+ *(uint16_t*)0x200001a8 = 0;
123
+ *(uint16_t*)0x200001aa = 0;
124
+ memset((void*)0x200001ac, 0, 20);
125
+ syz_io_uring_submit(r[1], r[2], 0x20000180, 1);
126
+ *(uint32_t*)0x20000544 = 0;
127
+ *(uint32_t*)0x20000548 = 0x36;
128
+ *(uint32_t*)0x2000054c = 0;
129
+ *(uint32_t*)0x20000550 = 0;
130
+ *(uint32_t*)0x20000558 = r[0];
131
+ memset((void*)0x2000055c, 0, 12);
132
+
133
+ }
134
+ int main(void)
135
+ {
136
+ mmap((void *)0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul);
137
+ int pid = fork();
138
+ if (pid < 0)
139
+ exit(1);
140
+ if (pid == 0) {
141
+ trigger_bug();
142
+ exit(0);
143
+ }
144
+ int status = 0;
145
+ uint64_t start = current_time_ms();
146
+ for (;;) {
147
+ if (current_time_ms() - start < 1000) {
148
+ continue;
149
+ }
150
+ kill_and_wait(pid, &status);
151
+ break;
152
+ }
153
+ return 0;
154
+ }
155
+
156
+
157
+
@@ -0,0 +1,196 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ // https://syzkaller.appspot.com/bug?id=99f4ea77bb9b9ef24cefb66469be319f4aa9f162
3
+ // autogenerated by syzkaller (https://github.com/google/syzkaller)
4
+
5
+ #include <dirent.h>
6
+ #include <endian.h>
7
+ #include <errno.h>
8
+ #include <fcntl.h>
9
+ #include <signal.h>
10
+ #include <stdarg.h>
11
+ #include <stdbool.h>
12
+ #include <stdint.h>
13
+ #include <stdio.h>
14
+ #include <stdlib.h>
15
+ #include <string.h>
16
+ #include <sys/mman.h>
17
+ #include <sys/prctl.h>
18
+ #include <sys/stat.h>
19
+ #include <sys/types.h>
20
+ #include <sys/wait.h>
21
+ #include <time.h>
22
+ #include <unistd.h>
23
+
24
+ #include "liburing.h"
25
+ #include "../src/syscall.h"
26
+
27
+ static void sleep_ms(uint64_t ms)
28
+ {
29
+ usleep(ms * 1000);
30
+ }
31
+
32
+ static uint64_t current_time_ms(void)
33
+ {
34
+ struct timespec ts;
35
+ if (clock_gettime(CLOCK_MONOTONIC, &ts))
36
+ exit(1);
37
+ return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
38
+ }
39
+
40
+ static bool write_file(const char* file, const char* what, ...)
41
+ {
42
+ char buf[1024];
43
+ va_list args;
44
+ va_start(args, what);
45
+ vsnprintf(buf, sizeof(buf), what, args);
46
+ va_end(args);
47
+ buf[sizeof(buf) - 1] = 0;
48
+ int len = strlen(buf);
49
+ int fd = open(file, O_WRONLY | O_CLOEXEC);
50
+ if (fd == -1)
51
+ return false;
52
+ if (write(fd, buf, len) != len) {
53
+ int err = errno;
54
+ close(fd);
55
+ errno = err;
56
+ return false;
57
+ }
58
+ close(fd);
59
+ return true;
60
+ }
61
+
62
+ #define SIZEOF_IO_URING_SQE 64
63
+ #define SIZEOF_IO_URING_CQE 16
64
+ #define SQ_HEAD_OFFSET 0
65
+ #define SQ_TAIL_OFFSET 64
66
+ #define SQ_RING_MASK_OFFSET 256
67
+ #define SQ_RING_ENTRIES_OFFSET 264
68
+ #define SQ_FLAGS_OFFSET 276
69
+ #define SQ_DROPPED_OFFSET 272
70
+ #define CQ_HEAD_OFFSET 128
71
+ #define CQ_TAIL_OFFSET 192
72
+ #define CQ_RING_MASK_OFFSET 260
73
+ #define CQ_RING_ENTRIES_OFFSET 268
74
+ #define CQ_RING_OVERFLOW_OFFSET 284
75
+ #define CQ_FLAGS_OFFSET 280
76
+ #define CQ_CQES_OFFSET 320
77
+
78
+ static long syz_io_uring_setup(volatile long a0, volatile long a1,
79
+ volatile long a2, volatile long a3,
80
+ volatile long a4, volatile long a5)
81
+ {
82
+ uint32_t entries = (uint32_t)a0;
83
+ struct io_uring_params* setup_params = (struct io_uring_params*)a1;
84
+ void* vma1 = (void*)a2;
85
+ void* vma2 = (void*)a3;
86
+ void** ring_ptr_out = (void**)a4;
87
+ void** sqes_ptr_out = (void**)a5;
88
+ uint32_t fd_io_uring = __sys_io_uring_setup(entries, setup_params);
89
+ uint32_t sq_ring_sz =
90
+ setup_params->sq_off.array + setup_params->sq_entries * sizeof(uint32_t);
91
+ uint32_t cq_ring_sz = setup_params->cq_off.cqes +
92
+ setup_params->cq_entries * SIZEOF_IO_URING_CQE;
93
+ uint32_t ring_sz = sq_ring_sz > cq_ring_sz ? sq_ring_sz : cq_ring_sz;
94
+ *ring_ptr_out = mmap(vma1, ring_sz, PROT_READ | PROT_WRITE,
95
+ MAP_SHARED | MAP_POPULATE | MAP_FIXED, fd_io_uring,
96
+ IORING_OFF_SQ_RING);
97
+ uint32_t sqes_sz = setup_params->sq_entries * SIZEOF_IO_URING_SQE;
98
+ *sqes_ptr_out =
99
+ mmap(vma2, sqes_sz, PROT_READ | PROT_WRITE,
100
+ MAP_SHARED | MAP_POPULATE | MAP_FIXED, fd_io_uring, IORING_OFF_SQES);
101
+ return fd_io_uring;
102
+ }
103
+
104
+ static void kill_and_wait(int pid, int* status)
105
+ {
106
+ kill(-pid, SIGKILL);
107
+ kill(pid, SIGKILL);
108
+ for (int i = 0; i < 100; i++) {
109
+ if (waitpid(-1, status, WNOHANG | __WALL) == pid)
110
+ return;
111
+ usleep(1000);
112
+ }
113
+ DIR* dir = opendir("/sys/fs/fuse/connections");
114
+ if (dir) {
115
+ for (;;) {
116
+ struct dirent* ent = readdir(dir);
117
+ if (!ent)
118
+ break;
119
+ if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
120
+ continue;
121
+ char abort[300];
122
+ snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort",
123
+ ent->d_name);
124
+ int fd = open(abort, O_WRONLY);
125
+ if (fd == -1) {
126
+ continue;
127
+ }
128
+ if (write(fd, abort, 1) < 0) {
129
+ }
130
+ close(fd);
131
+ }
132
+ closedir(dir);
133
+ } else {
134
+ }
135
+ while (waitpid(-1, status, __WALL) != pid) {
136
+ }
137
+ }
138
+
139
+ static void setup_test()
140
+ {
141
+ prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
142
+ setpgrp();
143
+ write_file("/proc/self/oom_score_adj", "1000");
144
+ }
145
+
146
+ static void execute_one(void);
147
+
148
+ #define WAIT_FLAGS __WALL
149
+
150
+ static void loop(void)
151
+ {
152
+ int iter = 0;
153
+ for (; iter < 100; iter++) {
154
+ int pid = fork();
155
+ if (pid < 0)
156
+ exit(1);
157
+ if (pid == 0) {
158
+ setup_test();
159
+ execute_one();
160
+ exit(0);
161
+ }
162
+ int status = 0;
163
+ uint64_t start = current_time_ms();
164
+ for (;;) {
165
+ if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
166
+ break;
167
+ sleep_ms(1);
168
+ if (current_time_ms() - start < 5000) {
169
+ continue;
170
+ }
171
+ kill_and_wait(pid, &status);
172
+ break;
173
+ }
174
+ }
175
+ }
176
+
177
+ void execute_one(void)
178
+ {
179
+ *(uint32_t*)0x20000044 = 0;
180
+ *(uint32_t*)0x20000048 = 0x42;
181
+ *(uint32_t*)0x2000004c = 0;
182
+ *(uint32_t*)0x20000050 = 0;
183
+ *(uint32_t*)0x20000058 = -1;
184
+ *(uint32_t*)0x2000005c = 0;
185
+ *(uint32_t*)0x20000060 = 0;
186
+ *(uint32_t*)0x20000064 = 0;
187
+ syz_io_uring_setup(0x74bc, 0x20000040, 0x20ffb000, 0x20ffc000, 0, 0);
188
+ }
189
+ int main(void)
190
+ {
191
+ mmap((void *)0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul);
192
+ mmap((void *)0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul);
193
+ mmap((void *)0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul);
194
+ loop();
195
+ return 0;
196
+ }
@@ -0,0 +1,78 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Test that we exit properly with SQPOLL and having a request that
4
+ * adds a circular reference to the ring itself.
5
+ */
6
+ #include <errno.h>
7
+ #include <stdio.h>
8
+ #include <stdlib.h>
9
+ #include <unistd.h>
10
+ #include <sys/time.h>
11
+ #include <poll.h>
12
+ #include "liburing.h"
13
+
14
+ static unsigned long long mtime_since(const struct timeval *s,
15
+ const struct timeval *e)
16
+ {
17
+ long long sec, usec;
18
+
19
+ sec = e->tv_sec - s->tv_sec;
20
+ usec = (e->tv_usec - s->tv_usec);
21
+ if (sec > 0 && usec < 0) {
22
+ sec--;
23
+ usec += 1000000;
24
+ }
25
+
26
+ sec *= 1000;
27
+ usec /= 1000;
28
+ return sec + usec;
29
+ }
30
+
31
+ static unsigned long long mtime_since_now(struct timeval *tv)
32
+ {
33
+ struct timeval end;
34
+
35
+ gettimeofday(&end, NULL);
36
+ return mtime_since(tv, &end);
37
+ }
38
+
39
+ int main(int argc, char *argv[])
40
+ {
41
+ struct io_uring_params p = {};
42
+ struct timeval tv;
43
+ struct io_uring ring;
44
+ struct io_uring_sqe *sqe;
45
+ int ret;
46
+
47
+ if (argc > 1)
48
+ return 0;
49
+
50
+ p.flags = IORING_SETUP_SQPOLL;
51
+ p.sq_thread_idle = 100;
52
+
53
+ ret = io_uring_queue_init_params(1, &ring, &p);
54
+ if (ret) {
55
+ if (geteuid()) {
56
+ printf("%s: skipped, not root\n", argv[0]);
57
+ return 0;
58
+ }
59
+ fprintf(stderr, "queue_init=%d\n", ret);
60
+ return 1;
61
+ }
62
+
63
+ if (!(p.features & IORING_FEAT_SQPOLL_NONFIXED)) {
64
+ fprintf(stdout, "Skipping\n");
65
+ return 0;
66
+ }
67
+
68
+ sqe = io_uring_get_sqe(&ring);
69
+ io_uring_prep_poll_add(sqe, ring.ring_fd, POLLIN);
70
+ io_uring_submit(&ring);
71
+
72
+ gettimeofday(&tv, NULL);
73
+ do {
74
+ usleep(1000);
75
+ } while (mtime_since_now(&tv) < 1000);
76
+
77
+ return 0;
78
+ }
@@ -0,0 +1,69 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Test that the sqthread goes to sleep around the specified time, and that
4
+ * the NEED_WAKEUP flag is then set.
5
+ */
6
+ #include <errno.h>
7
+ #include <stdio.h>
8
+ #include <stdlib.h>
9
+ #include <unistd.h>
10
+ #include <sys/time.h>
11
+ #include "liburing.h"
12
+
13
+ static unsigned long long mtime_since(const struct timeval *s,
14
+ const struct timeval *e)
15
+ {
16
+ long long sec, usec;
17
+
18
+ sec = e->tv_sec - s->tv_sec;
19
+ usec = (e->tv_usec - s->tv_usec);
20
+ if (sec > 0 && usec < 0) {
21
+ sec--;
22
+ usec += 1000000;
23
+ }
24
+
25
+ sec *= 1000;
26
+ usec /= 1000;
27
+ return sec + usec;
28
+ }
29
+
30
+ static unsigned long long mtime_since_now(struct timeval *tv)
31
+ {
32
+ struct timeval end;
33
+
34
+ gettimeofday(&end, NULL);
35
+ return mtime_since(tv, &end);
36
+ }
37
+
38
+ int main(int argc, char *argv[])
39
+ {
40
+ struct io_uring_params p = {};
41
+ struct timeval tv;
42
+ struct io_uring ring;
43
+ int ret;
44
+
45
+ if (argc > 1)
46
+ return 0;
47
+
48
+ p.flags = IORING_SETUP_SQPOLL;
49
+ p.sq_thread_idle = 100;
50
+
51
+ ret = io_uring_queue_init_params(1, &ring, &p);
52
+ if (ret) {
53
+ if (geteuid()) {
54
+ printf("%s: skipped, not root\n", argv[0]);
55
+ return 0;
56
+ }
57
+ fprintf(stderr, "queue_init=%d\n", ret);
58
+ return 1;
59
+ }
60
+
61
+ gettimeofday(&tv, NULL);
62
+ do {
63
+ usleep(1000);
64
+ if ((*ring.sq.kflags) & IORING_SQ_NEED_WAKEUP)
65
+ return 0;
66
+ } while (mtime_since_now(&tv) < 1000);
67
+
68
+ return 1;
69
+ }
@@ -0,0 +1,172 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: run various statx(2) 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
+ #include <sys/types.h>
13
+ #include <sys/syscall.h>
14
+ #include <linux/stat.h>
15
+
16
+ #include "helpers.h"
17
+ #include "liburing.h"
18
+
19
+ #ifdef __NR_statx
20
+ static int do_statx(int dfd, const char *path, int flags, unsigned mask,
21
+ struct statx *statxbuf)
22
+ {
23
+ return syscall(__NR_statx, dfd, path, flags, mask, statxbuf);
24
+ }
25
+ #else
26
+ static int do_statx(int dfd, const char *path, int flags, unsigned mask,
27
+ struct statx *statxbuf)
28
+ {
29
+ errno = ENOSYS;
30
+ return -1;
31
+ }
32
+ #endif
33
+
34
+ static int statx_syscall_supported(void)
35
+ {
36
+ return errno == ENOSYS ? 0 : -1;
37
+ }
38
+
39
+ static int test_statx(struct io_uring *ring, const char *path)
40
+ {
41
+ struct io_uring_cqe *cqe;
42
+ struct io_uring_sqe *sqe;
43
+ struct statx x1, x2;
44
+ int ret;
45
+
46
+ sqe = io_uring_get_sqe(ring);
47
+ if (!sqe) {
48
+ fprintf(stderr, "get sqe failed\n");
49
+ goto err;
50
+ }
51
+ io_uring_prep_statx(sqe, -1, path, 0, STATX_ALL, &x1);
52
+
53
+ ret = io_uring_submit(ring);
54
+ if (ret <= 0) {
55
+ fprintf(stderr, "sqe submit failed: %d\n", ret);
56
+ goto err;
57
+ }
58
+
59
+ ret = io_uring_wait_cqe(ring, &cqe);
60
+ if (ret < 0) {
61
+ fprintf(stderr, "wait completion %d\n", ret);
62
+ goto err;
63
+ }
64
+ ret = cqe->res;
65
+ io_uring_cqe_seen(ring, cqe);
66
+ if (ret)
67
+ return ret;
68
+ ret = do_statx(-1, path, 0, STATX_ALL, &x2);
69
+ if (ret < 0)
70
+ return statx_syscall_supported();
71
+ if (memcmp(&x1, &x2, sizeof(x1))) {
72
+ fprintf(stderr, "Miscompare between io_uring and statx\n");
73
+ goto err;
74
+ }
75
+ return 0;
76
+ err:
77
+ return -1;
78
+ }
79
+
80
+ static int test_statx_fd(struct io_uring *ring, const char *path)
81
+ {
82
+ struct io_uring_cqe *cqe;
83
+ struct io_uring_sqe *sqe;
84
+ struct statx x1, x2;
85
+ int ret, fd;
86
+
87
+ fd = open(path, O_RDONLY);
88
+ if (fd < 0) {
89
+ perror("open");
90
+ return 1;
91
+ }
92
+
93
+ memset(&x1, 0, sizeof(x1));
94
+
95
+ sqe = io_uring_get_sqe(ring);
96
+ if (!sqe) {
97
+ fprintf(stderr, "get sqe failed\n");
98
+ goto err;
99
+ }
100
+ io_uring_prep_statx(sqe, fd, "", AT_EMPTY_PATH, STATX_ALL, &x1);
101
+
102
+ ret = io_uring_submit(ring);
103
+ if (ret <= 0) {
104
+ fprintf(stderr, "sqe submit failed: %d\n", ret);
105
+ goto err;
106
+ }
107
+
108
+ ret = io_uring_wait_cqe(ring, &cqe);
109
+ if (ret < 0) {
110
+ fprintf(stderr, "wait completion %d\n", ret);
111
+ goto err;
112
+ }
113
+ ret = cqe->res;
114
+ io_uring_cqe_seen(ring, cqe);
115
+ if (ret)
116
+ return ret;
117
+ memset(&x2, 0, sizeof(x2));
118
+ ret = do_statx(fd, "", AT_EMPTY_PATH, STATX_ALL, &x2);
119
+ if (ret < 0)
120
+ return statx_syscall_supported();
121
+ if (memcmp(&x1, &x2, sizeof(x1))) {
122
+ fprintf(stderr, "Miscompare between io_uring and statx\n");
123
+ goto err;
124
+ }
125
+ return 0;
126
+ err:
127
+ return -1;
128
+ }
129
+
130
+ int main(int argc, char *argv[])
131
+ {
132
+ struct io_uring ring;
133
+ const char *fname;
134
+ int ret;
135
+
136
+ ret = io_uring_queue_init(8, &ring, 0);
137
+ if (ret) {
138
+ fprintf(stderr, "ring setup failed\n");
139
+ return 1;
140
+ }
141
+
142
+ if (argc > 1) {
143
+ fname = argv[1];
144
+ } else {
145
+ fname = "/tmp/.statx";
146
+ t_create_file(fname, 4096);
147
+ }
148
+
149
+ ret = test_statx(&ring, fname);
150
+ if (ret) {
151
+ if (ret == -EINVAL) {
152
+ fprintf(stdout, "statx not supported, skipping\n");
153
+ goto done;
154
+ }
155
+ fprintf(stderr, "test_statx failed: %d\n", ret);
156
+ goto err;
157
+ }
158
+
159
+ ret = test_statx_fd(&ring, fname);
160
+ if (ret) {
161
+ fprintf(stderr, "test_statx_fd failed: %d\n", ret);
162
+ goto err;
163
+ }
164
+ done:
165
+ if (fname != argv[1])
166
+ unlink(fname);
167
+ return 0;
168
+ err:
169
+ if (fname != argv[1])
170
+ unlink(fname);
171
+ return 1;
172
+ }