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,202 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: basic fadvise test
4
+ */
5
+ #include <errno.h>
6
+ #include <stdio.h>
7
+ #include <unistd.h>
8
+ #include <stdlib.h>
9
+ #include <string.h>
10
+ #include <fcntl.h>
11
+ #include <sys/types.h>
12
+ #include <sys/time.h>
13
+
14
+ #include "helpers.h"
15
+ #include "liburing.h"
16
+
17
+ #define FILE_SIZE (128 * 1024)
18
+ #define LOOPS 100
19
+ #define MIN_LOOPS 10
20
+
21
+ static unsigned long long utime_since(const struct timeval *s,
22
+ const struct timeval *e)
23
+ {
24
+ long long sec, usec;
25
+
26
+ sec = e->tv_sec - s->tv_sec;
27
+ usec = (e->tv_usec - s->tv_usec);
28
+ if (sec > 0 && usec < 0) {
29
+ sec--;
30
+ usec += 1000000;
31
+ }
32
+
33
+ sec *= 1000000;
34
+ return sec + usec;
35
+ }
36
+
37
+ static unsigned long long utime_since_now(struct timeval *tv)
38
+ {
39
+ struct timeval end;
40
+
41
+ gettimeofday(&end, NULL);
42
+ return utime_since(tv, &end);
43
+ }
44
+
45
+ static int do_fadvise(struct io_uring *ring, int fd, off_t offset, off_t len,
46
+ int advice)
47
+ {
48
+ struct io_uring_sqe *sqe;
49
+ struct io_uring_cqe *cqe;
50
+ int ret;
51
+
52
+ sqe = io_uring_get_sqe(ring);
53
+ if (!sqe) {
54
+ fprintf(stderr, "failed to get sqe\n");
55
+ return 1;
56
+ }
57
+
58
+ io_uring_prep_fadvise(sqe, fd, offset, len, advice);
59
+ sqe->user_data = advice;
60
+ ret = io_uring_submit_and_wait(ring, 1);
61
+ if (ret != 1) {
62
+ fprintf(stderr, "submit: %d\n", ret);
63
+ return 1;
64
+ }
65
+
66
+ ret = io_uring_wait_cqe(ring, &cqe);
67
+ if (ret) {
68
+ fprintf(stderr, "wait: %d\n", ret);
69
+ return 1;
70
+ }
71
+
72
+ ret = cqe->res;
73
+ if (ret == -EINVAL || ret == -EBADF) {
74
+ fprintf(stdout, "Fadvise not supported, skipping\n");
75
+ unlink(".fadvise.tmp");
76
+ exit(0);
77
+ } else if (ret) {
78
+ fprintf(stderr, "cqe->res=%d\n", cqe->res);
79
+ }
80
+ io_uring_cqe_seen(ring, cqe);
81
+ return ret;
82
+ }
83
+
84
+ static long do_read(int fd, char *buf)
85
+ {
86
+ struct timeval tv;
87
+ int ret;
88
+ long t;
89
+
90
+ ret = lseek(fd, 0, SEEK_SET);
91
+ if (ret) {
92
+ perror("lseek");
93
+ return -1;
94
+ }
95
+
96
+ gettimeofday(&tv, NULL);
97
+ ret = read(fd, buf, FILE_SIZE);
98
+ t = utime_since_now(&tv);
99
+ if (ret < 0) {
100
+ perror("read");
101
+ return -1;
102
+ } else if (ret != FILE_SIZE) {
103
+ fprintf(stderr, "short read1: %d\n", ret);
104
+ return -1;
105
+ }
106
+
107
+ return t;
108
+ }
109
+
110
+ static int test_fadvise(struct io_uring *ring, const char *filename)
111
+ {
112
+ unsigned long cached_read, uncached_read, cached_read2;
113
+ int fd, ret;
114
+ char *buf;
115
+
116
+ fd = open(filename, O_RDONLY);
117
+ if (fd < 0) {
118
+ perror("open");
119
+ return 1;
120
+ }
121
+
122
+ buf = t_malloc(FILE_SIZE);
123
+
124
+ cached_read = do_read(fd, buf);
125
+ if (cached_read == -1)
126
+ return 1;
127
+
128
+ ret = do_fadvise(ring, fd, 0, FILE_SIZE, POSIX_FADV_DONTNEED);
129
+ if (ret)
130
+ return 1;
131
+
132
+ uncached_read = do_read(fd, buf);
133
+ if (uncached_read == -1)
134
+ return 1;
135
+
136
+ ret = do_fadvise(ring, fd, 0, FILE_SIZE, POSIX_FADV_DONTNEED);
137
+ if (ret)
138
+ return 1;
139
+
140
+ ret = do_fadvise(ring, fd, 0, FILE_SIZE, POSIX_FADV_WILLNEED);
141
+ if (ret)
142
+ return 1;
143
+
144
+ fsync(fd);
145
+
146
+ cached_read2 = do_read(fd, buf);
147
+ if (cached_read2 == -1)
148
+ return 1;
149
+
150
+ if (cached_read < uncached_read &&
151
+ cached_read2 < uncached_read)
152
+ return 0;
153
+
154
+ return 2;
155
+ }
156
+
157
+ int main(int argc, char *argv[])
158
+ {
159
+ struct io_uring ring;
160
+ int ret, i, good, bad;
161
+ char *fname;
162
+
163
+ if (argc > 1) {
164
+ fname = argv[1];
165
+ } else {
166
+ fname = ".fadvise.tmp";
167
+ t_create_file(fname, FILE_SIZE);
168
+ }
169
+ if (io_uring_queue_init(8, &ring, 0)) {
170
+ fprintf(stderr, "ring creation failed\n");
171
+ goto err;
172
+ }
173
+
174
+ good = bad = 0;
175
+ for (i = 0; i < LOOPS; i++) {
176
+ ret = test_fadvise(&ring, fname);
177
+ if (ret == 1) {
178
+ fprintf(stderr, "read_fadvise failed\n");
179
+ goto err;
180
+ } else if (!ret)
181
+ good++;
182
+ else if (ret == 2)
183
+ bad++;
184
+ if (i >= MIN_LOOPS && !bad)
185
+ break;
186
+ }
187
+
188
+ /* too hard to reliably test, just ignore */
189
+ if (0 && bad > good) {
190
+ fprintf(stderr, "Suspicious timings\n");
191
+ goto err;
192
+ }
193
+
194
+ if (fname != argv[1])
195
+ unlink(fname);
196
+ io_uring_queue_exit(&ring);
197
+ return 0;
198
+ err:
199
+ if (fname != argv[1])
200
+ unlink(fname);
201
+ return 1;
202
+ }
@@ -0,0 +1,249 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Description: test io_uring fallocate
4
+ *
5
+ */
6
+ #include <errno.h>
7
+ #include <stdio.h>
8
+ #include <unistd.h>
9
+ #include <sys/types.h>
10
+ #include <sys/stat.h>
11
+ #include <sys/resource.h>
12
+ #include <stdlib.h>
13
+ #include <string.h>
14
+ #include <fcntl.h>
15
+
16
+ #include "liburing.h"
17
+
18
+ static int no_fallocate;
19
+
20
+ static int test_fallocate_rlimit(struct io_uring *ring)
21
+ {
22
+ struct io_uring_cqe *cqe;
23
+ struct io_uring_sqe *sqe;
24
+ struct rlimit rlim;
25
+ char buf[32];
26
+ int fd, ret;
27
+
28
+ if (getrlimit(RLIMIT_FSIZE, &rlim) < 0) {
29
+ perror("getrlimit");
30
+ return 1;
31
+ }
32
+ rlim.rlim_cur = 64 * 1024;
33
+ rlim.rlim_max = 64 * 1024;
34
+ if (setrlimit(RLIMIT_FSIZE, &rlim) < 0) {
35
+ perror("setrlimit");
36
+ return 1;
37
+ }
38
+
39
+ sprintf(buf, "./XXXXXX");
40
+ fd = mkstemp(buf);
41
+ if (fd < 0) {
42
+ perror("open");
43
+ return 1;
44
+ }
45
+ unlink(buf);
46
+
47
+ sqe = io_uring_get_sqe(ring);
48
+ if (!sqe) {
49
+ fprintf(stderr, "get sqe failed\n");
50
+ goto err;
51
+ }
52
+ io_uring_prep_fallocate(sqe, fd, 0, 0, 128*1024);
53
+
54
+ ret = io_uring_submit(ring);
55
+ if (ret <= 0) {
56
+ fprintf(stderr, "sqe submit failed: %d\n", ret);
57
+ goto err;
58
+ }
59
+
60
+ ret = io_uring_wait_cqe(ring, &cqe);
61
+ if (ret < 0) {
62
+ fprintf(stderr, "wait completion %d\n", ret);
63
+ goto err;
64
+ }
65
+
66
+ if (cqe->res == -EINVAL) {
67
+ fprintf(stdout, "Fallocate not supported, skipping\n");
68
+ no_fallocate = 1;
69
+ goto out;
70
+ } else if (cqe->res != -EFBIG) {
71
+ fprintf(stderr, "Expected -EFBIG: %d\n", cqe->res);
72
+ goto err;
73
+ }
74
+ io_uring_cqe_seen(ring, cqe);
75
+ out:
76
+ return 0;
77
+ err:
78
+ return 1;
79
+ }
80
+
81
+ static int test_fallocate(struct io_uring *ring)
82
+ {
83
+ struct io_uring_cqe *cqe;
84
+ struct io_uring_sqe *sqe;
85
+ struct stat st;
86
+ char buf[32];
87
+ int fd, ret;
88
+
89
+ sprintf(buf, "./XXXXXX");
90
+ fd = mkstemp(buf);
91
+ if (fd < 0) {
92
+ perror("open");
93
+ return 1;
94
+ }
95
+ unlink(buf);
96
+
97
+ sqe = io_uring_get_sqe(ring);
98
+ if (!sqe) {
99
+ fprintf(stderr, "get sqe failed\n");
100
+ goto err;
101
+ }
102
+ io_uring_prep_fallocate(sqe, fd, 0, 0, 128*1024);
103
+
104
+ ret = io_uring_submit(ring);
105
+ if (ret <= 0) {
106
+ fprintf(stderr, "sqe submit failed: %d\n", ret);
107
+ goto err;
108
+ }
109
+
110
+ ret = io_uring_wait_cqe(ring, &cqe);
111
+ if (ret < 0) {
112
+ fprintf(stderr, "wait completion %d\n", ret);
113
+ goto err;
114
+ }
115
+
116
+ if (cqe->res == -EINVAL) {
117
+ fprintf(stdout, "Fallocate not supported, skipping\n");
118
+ no_fallocate = 1;
119
+ goto out;
120
+ }
121
+ if (cqe->res) {
122
+ fprintf(stderr, "cqe->res=%d\n", cqe->res);
123
+ goto err;
124
+ }
125
+ io_uring_cqe_seen(ring, cqe);
126
+
127
+ if (fstat(fd, &st) < 0) {
128
+ perror("stat");
129
+ goto err;
130
+ }
131
+
132
+ if (st.st_size != 128*1024) {
133
+ fprintf(stderr, "Size mismatch: %llu\n",
134
+ (unsigned long long) st.st_size);
135
+ goto err;
136
+ }
137
+
138
+ out:
139
+ return 0;
140
+ err:
141
+ return 1;
142
+ }
143
+
144
+ static int test_fallocate_fsync(struct io_uring *ring)
145
+ {
146
+ struct io_uring_cqe *cqe;
147
+ struct io_uring_sqe *sqe;
148
+ struct stat st;
149
+ char buf[32];
150
+ int fd, ret, i;
151
+
152
+ if (no_fallocate)
153
+ return 0;
154
+
155
+ sprintf(buf, "./XXXXXX");
156
+ fd = mkstemp(buf);
157
+ if (fd < 0) {
158
+ perror("open");
159
+ return 1;
160
+ }
161
+ unlink(buf);
162
+
163
+ sqe = io_uring_get_sqe(ring);
164
+ if (!sqe) {
165
+ fprintf(stderr, "get sqe failed\n");
166
+ goto err;
167
+ }
168
+ io_uring_prep_fallocate(sqe, fd, 0, 0, 128*1024);
169
+ sqe->flags |= IOSQE_IO_LINK;
170
+ sqe->user_data = 1;
171
+
172
+ sqe = io_uring_get_sqe(ring);
173
+ if (!sqe) {
174
+ fprintf(stderr, "get sqe failed\n");
175
+ goto err;
176
+ }
177
+ io_uring_prep_fsync(sqe, fd, 0);
178
+ sqe->user_data = 2;
179
+
180
+ ret = io_uring_submit(ring);
181
+ if (ret <= 0) {
182
+ fprintf(stderr, "sqe submit failed: %d\n", ret);
183
+ goto err;
184
+ }
185
+
186
+ for (i = 0; i < 2; i++) {
187
+ ret = io_uring_wait_cqe(ring, &cqe);
188
+ if (ret < 0) {
189
+ fprintf(stderr, "wait completion %d\n", ret);
190
+ goto err;
191
+ }
192
+ if (cqe->res) {
193
+ fprintf(stderr, "cqe->res=%d,data=%" PRIu64 "\n", cqe->res,
194
+ (uint64_t) cqe->user_data);
195
+ goto err;
196
+ }
197
+ io_uring_cqe_seen(ring, cqe);
198
+ }
199
+
200
+ if (fstat(fd, &st) < 0) {
201
+ perror("stat");
202
+ goto err;
203
+ }
204
+
205
+ if (st.st_size != 128*1024) {
206
+ fprintf(stderr, "Size mismatch: %llu\n",
207
+ (unsigned long long) st.st_size);
208
+ goto err;
209
+ }
210
+
211
+ return 0;
212
+ err:
213
+ return 1;
214
+ }
215
+
216
+ int main(int argc, char *argv[])
217
+ {
218
+ struct io_uring ring;
219
+ int ret;
220
+
221
+ if (argc > 1)
222
+ return 0;
223
+
224
+ ret = io_uring_queue_init(8, &ring, 0);
225
+ if (ret) {
226
+ fprintf(stderr, "ring setup failed\n");
227
+ return 1;
228
+ }
229
+
230
+ ret = test_fallocate(&ring);
231
+ if (ret) {
232
+ fprintf(stderr, "test_fallocate failed\n");
233
+ return ret;
234
+ }
235
+
236
+ ret = test_fallocate_fsync(&ring);
237
+ if (ret) {
238
+ fprintf(stderr, "test_fallocate_fsync failed\n");
239
+ return ret;
240
+ }
241
+
242
+ ret = test_fallocate_rlimit(&ring);
243
+ if (ret) {
244
+ fprintf(stderr, "test_fallocate_rlimit failed\n");
245
+ return ret;
246
+ }
247
+
248
+ return 0;
249
+ }
@@ -0,0 +1,131 @@
1
+ /* SPDX-License-Identifier: MIT */
2
+ // https://syzkaller.appspot.com/bug?id=1f2ecd7a23dba87e5ca3505ec44514a462cfe8c0
3
+ // autogenerated by syzkaller (https://github.com/google/syzkaller)
4
+
5
+ #include <errno.h>
6
+ #include <fcntl.h>
7
+ #include <stdarg.h>
8
+ #include <stdbool.h>
9
+ #include <stdint.h>
10
+ #include <stdio.h>
11
+ #include <stdlib.h>
12
+ #include <string.h>
13
+ #include <sys/socket.h>
14
+ #include <sys/types.h>
15
+ #include <sys/mman.h>
16
+ #include <unistd.h>
17
+
18
+ #include "liburing.h"
19
+ #include "../src/syscall.h"
20
+
21
+ static bool write_file(const char* file, const char* what, ...)
22
+ {
23
+ char buf[1024];
24
+ va_list args;
25
+ va_start(args, what);
26
+ vsnprintf(buf, sizeof(buf), what, args);
27
+ va_end(args);
28
+ buf[sizeof(buf) - 1] = 0;
29
+ int len = strlen(buf);
30
+ int fd = open(file, O_WRONLY | O_CLOEXEC);
31
+ if (fd == -1)
32
+ return false;
33
+ if (write(fd, buf, len) != len) {
34
+ int err = errno;
35
+ close(fd);
36
+ errno = err;
37
+ return false;
38
+ }
39
+ close(fd);
40
+ return true;
41
+ }
42
+
43
+ static int inject_fault(int nth)
44
+ {
45
+ int fd;
46
+ fd = open("/proc/thread-self/fail-nth", O_RDWR);
47
+ if (fd == -1)
48
+ exit(1);
49
+ char buf[16];
50
+ sprintf(buf, "%d", nth + 1);
51
+ if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf))
52
+ exit(1);
53
+ return fd;
54
+ }
55
+
56
+ static int setup_fault()
57
+ {
58
+ static struct {
59
+ const char* file;
60
+ const char* val;
61
+ bool fatal;
62
+ } files[] = {
63
+ {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true},
64
+ {"/sys/kernel/debug/failslab/verbose", "0", false},
65
+ {"/sys/kernel/debug/fail_futex/ignore-private", "N", false},
66
+ {"/sys/kernel/debug/fail_page_alloc/verbose", "0", false},
67
+ {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false},
68
+ {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false},
69
+ {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false},
70
+ };
71
+ unsigned i;
72
+ for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) {
73
+ if (!write_file(files[i].file, files[i].val)) {
74
+ if (files[i].fatal)
75
+ return 1;
76
+ }
77
+ }
78
+ return 0;
79
+ }
80
+
81
+ uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff};
82
+
83
+ int main(int argc, char *argv[])
84
+ {
85
+ if (argc > 1)
86
+ return 0;
87
+ mmap((void *) 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0);
88
+ if (setup_fault()) {
89
+ printf("Test needs failslab/fail_futex/fail_page_alloc enabled, skipped\n");
90
+ return 0;
91
+ }
92
+ intptr_t res = 0;
93
+ *(uint32_t*)0x20000000 = 0;
94
+ *(uint32_t*)0x20000004 = 0;
95
+ *(uint32_t*)0x20000008 = 0;
96
+ *(uint32_t*)0x2000000c = 0;
97
+ *(uint32_t*)0x20000010 = 0;
98
+ *(uint32_t*)0x20000014 = 0;
99
+ *(uint32_t*)0x20000018 = 0;
100
+ *(uint32_t*)0x2000001c = 0;
101
+ *(uint32_t*)0x20000020 = 0;
102
+ *(uint32_t*)0x20000024 = 0;
103
+ *(uint32_t*)0x20000028 = 0;
104
+ *(uint32_t*)0x2000002c = 0;
105
+ *(uint32_t*)0x20000030 = 0;
106
+ *(uint32_t*)0x20000034 = 0;
107
+ *(uint32_t*)0x20000038 = 0;
108
+ *(uint32_t*)0x2000003c = 0;
109
+ *(uint32_t*)0x20000040 = 0;
110
+ *(uint32_t*)0x20000044 = 0;
111
+ *(uint64_t*)0x20000048 = 0;
112
+ *(uint32_t*)0x20000050 = 0;
113
+ *(uint32_t*)0x20000054 = 0;
114
+ *(uint32_t*)0x20000058 = 0;
115
+ *(uint32_t*)0x2000005c = 0;
116
+ *(uint32_t*)0x20000060 = 0;
117
+ *(uint32_t*)0x20000064 = 0;
118
+ *(uint32_t*)0x20000068 = 0;
119
+ *(uint32_t*)0x2000006c = 0;
120
+ *(uint64_t*)0x20000070 = 0;
121
+ res = __sys_io_uring_setup(0x6a6, (struct io_uring_params *) 0x20000000ul);
122
+ if (res != -1)
123
+ r[0] = res;
124
+ res = socket(0x11ul, 2ul, 0x300ul);
125
+ if (res != -1)
126
+ r[1] = res;
127
+ *(uint32_t*)0x20000080 = r[1];
128
+ inject_fault(1);
129
+ __sys_io_uring_register(r[0], 2ul, (const void *) 0x20000080ul, 1ul);
130
+ return 0;
131
+ }