polyphony 0.85 → 0.86
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/ext/polyphony/io_extensions.c +2 -3
- data/lib/polyphony/version.rb +1 -1
- data/polyphony.gemspec +1 -1
- data/test/test_backend.rb +1 -1
- data/test/test_signal.rb +3 -3
- data/vendor/liburing/.github/pull_request_template.md +86 -0
- data/vendor/liburing/.github/workflows/build.yml +85 -0
- data/vendor/liburing/.github/workflows/shellcheck.yml +20 -0
- data/vendor/liburing/.gitignore +149 -0
- data/vendor/liburing/COPYING +502 -0
- data/vendor/liburing/COPYING.GPL +339 -0
- data/vendor/liburing/LICENSE +7 -0
- data/vendor/liburing/Makefile +82 -0
- data/vendor/liburing/Makefile.common +5 -0
- data/vendor/liburing/Makefile.quiet +11 -0
- data/vendor/liburing/README +46 -0
- data/vendor/liburing/configure +486 -0
- data/vendor/liburing/debian/README.Debian +7 -0
- data/vendor/liburing/debian/changelog +27 -0
- data/vendor/liburing/debian/compat +1 -0
- data/vendor/liburing/debian/control +48 -0
- data/vendor/liburing/debian/copyright +49 -0
- data/vendor/liburing/debian/liburing-dev.install +4 -0
- data/vendor/liburing/debian/liburing-dev.manpages +6 -0
- data/vendor/liburing/debian/liburing1-udeb.install +1 -0
- data/vendor/liburing/debian/liburing1.install +1 -0
- data/vendor/liburing/debian/liburing1.symbols +32 -0
- data/vendor/liburing/debian/patches/series +1 -0
- data/vendor/liburing/debian/rules +81 -0
- data/vendor/liburing/debian/source/format +1 -0
- data/vendor/liburing/debian/source/local-options +2 -0
- data/vendor/liburing/debian/source/options +1 -0
- data/vendor/liburing/debian/watch +3 -0
- data/vendor/liburing/examples/Makefile +38 -0
- data/vendor/liburing/examples/io_uring-cp.c +282 -0
- data/vendor/liburing/examples/io_uring-test.c +112 -0
- data/vendor/liburing/examples/link-cp.c +193 -0
- data/vendor/liburing/examples/ucontext-cp.c +273 -0
- data/vendor/liburing/liburing.pc.in +12 -0
- data/vendor/liburing/liburing.spec +66 -0
- data/vendor/liburing/make-debs.sh +53 -0
- data/vendor/liburing/man/io_uring.7 +754 -0
- data/vendor/liburing/man/io_uring_cq_advance.3 +35 -0
- data/vendor/liburing/man/io_uring_cq_ready.3 +25 -0
- data/vendor/liburing/man/io_uring_cqe_get_data.3 +34 -0
- data/vendor/liburing/man/io_uring_cqe_seen.3 +32 -0
- data/vendor/liburing/man/io_uring_enter.2 +1483 -0
- data/vendor/liburing/man/io_uring_free_probe.3 +24 -0
- data/vendor/liburing/man/io_uring_get_probe.3 +29 -0
- data/vendor/liburing/man/io_uring_get_sqe.3 +38 -0
- data/vendor/liburing/man/io_uring_opcode_supported.3 +29 -0
- data/vendor/liburing/man/io_uring_prep_msg_ring.3 +58 -0
- data/vendor/liburing/man/io_uring_prep_read.3 +50 -0
- data/vendor/liburing/man/io_uring_prep_read_fixed.3 +54 -0
- data/vendor/liburing/man/io_uring_prep_readv.3 +51 -0
- data/vendor/liburing/man/io_uring_prep_readv2.3 +79 -0
- data/vendor/liburing/man/io_uring_prep_write.3 +50 -0
- data/vendor/liburing/man/io_uring_prep_write_fixed.3 +54 -0
- data/vendor/liburing/man/io_uring_prep_writev.3 +51 -0
- data/vendor/liburing/man/io_uring_prep_writev2.3 +78 -0
- data/vendor/liburing/man/io_uring_queue_exit.3 +27 -0
- data/vendor/liburing/man/io_uring_queue_init.3 +44 -0
- data/vendor/liburing/man/io_uring_register.2 +688 -0
- data/vendor/liburing/man/io_uring_register_buffers.3 +41 -0
- data/vendor/liburing/man/io_uring_register_files.3 +35 -0
- data/vendor/liburing/man/io_uring_setup.2 +534 -0
- data/vendor/liburing/man/io_uring_sq_ready.3 +25 -0
- data/vendor/liburing/man/io_uring_sq_space_left.3 +25 -0
- data/vendor/liburing/man/io_uring_sqe_set_data.3 +30 -0
- data/vendor/liburing/man/io_uring_sqe_set_flags.3 +60 -0
- data/vendor/liburing/man/io_uring_sqring_wait.3 +30 -0
- data/vendor/liburing/man/io_uring_submit.3 +29 -0
- data/vendor/liburing/man/io_uring_submit_and_wait.3 +34 -0
- data/vendor/liburing/man/io_uring_submit_and_wait_timeout.3 +49 -0
- data/vendor/liburing/man/io_uring_unregister_buffers.3 +26 -0
- data/vendor/liburing/man/io_uring_unregister_files.3 +26 -0
- data/vendor/liburing/man/io_uring_wait_cqe.3 +33 -0
- data/vendor/liburing/man/io_uring_wait_cqe_nr.3 +36 -0
- data/vendor/liburing/man/io_uring_wait_cqe_timeout.3 +39 -0
- data/vendor/liburing/man/io_uring_wait_cqes.3 +46 -0
- data/vendor/liburing/src/Makefile +89 -0
- data/vendor/liburing/src/arch/aarch64/syscall.h +95 -0
- data/vendor/liburing/src/arch/generic/lib.h +21 -0
- data/vendor/liburing/src/arch/generic/syscall.h +87 -0
- data/vendor/liburing/src/arch/syscall-defs.h +67 -0
- data/vendor/liburing/src/arch/x86/lib.h +32 -0
- data/vendor/liburing/src/arch/x86/syscall.h +160 -0
- data/vendor/liburing/src/include/liburing/barrier.h +81 -0
- data/vendor/liburing/src/include/liburing/io_uring.h +442 -0
- data/vendor/liburing/src/include/liburing.h +921 -0
- data/vendor/liburing/src/int_flags.h +8 -0
- data/vendor/liburing/src/lib.h +57 -0
- data/vendor/liburing/src/liburing.map +53 -0
- data/vendor/liburing/src/nolibc.c +48 -0
- data/vendor/liburing/src/queue.c +403 -0
- data/vendor/liburing/src/register.c +293 -0
- data/vendor/liburing/src/setup.c +332 -0
- data/vendor/liburing/src/syscall.c +47 -0
- data/vendor/liburing/src/syscall.h +103 -0
- data/vendor/liburing/test/232c93d07b74-test.c +306 -0
- data/vendor/liburing/test/35fa71a030ca-test.c +329 -0
- data/vendor/liburing/test/500f9fbadef8-test.c +89 -0
- data/vendor/liburing/test/7ad0e4b2f83c-test.c +93 -0
- data/vendor/liburing/test/8a9973408177-test.c +106 -0
- data/vendor/liburing/test/917257daa0fe-test.c +53 -0
- data/vendor/liburing/test/Makefile +244 -0
- data/vendor/liburing/test/a0908ae19763-test.c +58 -0
- data/vendor/liburing/test/a4c0b3decb33-test.c +180 -0
- data/vendor/liburing/test/accept-link.c +254 -0
- data/vendor/liburing/test/accept-reuse.c +164 -0
- data/vendor/liburing/test/accept-test.c +79 -0
- data/vendor/liburing/test/accept.c +477 -0
- data/vendor/liburing/test/across-fork.c +283 -0
- data/vendor/liburing/test/b19062a56726-test.c +53 -0
- data/vendor/liburing/test/b5837bd5311d-test.c +77 -0
- data/vendor/liburing/test/ce593a6c480a-test.c +136 -0
- data/vendor/liburing/test/close-opath.c +122 -0
- data/vendor/liburing/test/config +10 -0
- data/vendor/liburing/test/connect.c +398 -0
- data/vendor/liburing/test/cq-full.c +96 -0
- data/vendor/liburing/test/cq-overflow.c +294 -0
- data/vendor/liburing/test/cq-peek-batch.c +102 -0
- data/vendor/liburing/test/cq-ready.c +94 -0
- data/vendor/liburing/test/cq-size.c +64 -0
- data/vendor/liburing/test/d4ae271dfaae-test.c +96 -0
- data/vendor/liburing/test/d77a67ed5f27-test.c +65 -0
- data/vendor/liburing/test/defer.c +307 -0
- data/vendor/liburing/test/double-poll-crash.c +185 -0
- data/vendor/liburing/test/drop-submit.c +92 -0
- data/vendor/liburing/test/eeed8b54e0df-test.c +114 -0
- data/vendor/liburing/test/empty-eownerdead.c +45 -0
- data/vendor/liburing/test/eventfd-disable.c +151 -0
- data/vendor/liburing/test/eventfd-reg.c +76 -0
- data/vendor/liburing/test/eventfd-ring.c +97 -0
- data/vendor/liburing/test/eventfd.c +112 -0
- data/vendor/liburing/test/exec-target.c +6 -0
- data/vendor/liburing/test/exit-no-cleanup.c +117 -0
- data/vendor/liburing/test/fadvise.c +202 -0
- data/vendor/liburing/test/fallocate.c +249 -0
- data/vendor/liburing/test/fc2a85cb02ef-test.c +131 -0
- data/vendor/liburing/test/file-register.c +858 -0
- data/vendor/liburing/test/file-update.c +173 -0
- data/vendor/liburing/test/file-verify.c +629 -0
- data/vendor/liburing/test/files-exit-hang-poll.c +128 -0
- data/vendor/liburing/test/files-exit-hang-timeout.c +134 -0
- data/vendor/liburing/test/fixed-link.c +90 -0
- data/vendor/liburing/test/fpos.c +252 -0
- data/vendor/liburing/test/fsync.c +224 -0
- data/vendor/liburing/test/hardlink.c +136 -0
- data/vendor/liburing/test/helpers.c +135 -0
- data/vendor/liburing/test/helpers.h +67 -0
- data/vendor/liburing/test/io-cancel.c +550 -0
- data/vendor/liburing/test/io_uring_enter.c +296 -0
- data/vendor/liburing/test/io_uring_register.c +676 -0
- data/vendor/liburing/test/io_uring_setup.c +192 -0
- data/vendor/liburing/test/iopoll.c +372 -0
- data/vendor/liburing/test/lfs-openat-write.c +119 -0
- data/vendor/liburing/test/lfs-openat.c +275 -0
- data/vendor/liburing/test/link-timeout.c +1107 -0
- data/vendor/liburing/test/link.c +496 -0
- data/vendor/liburing/test/link_drain.c +229 -0
- data/vendor/liburing/test/madvise.c +195 -0
- data/vendor/liburing/test/mkdir.c +108 -0
- data/vendor/liburing/test/msg-ring.c +234 -0
- data/vendor/liburing/test/multicqes_drain.c +387 -0
- data/vendor/liburing/test/nop-all-sizes.c +99 -0
- data/vendor/liburing/test/nop.c +115 -0
- data/vendor/liburing/test/open-close.c +261 -0
- data/vendor/liburing/test/openat2.c +308 -0
- data/vendor/liburing/test/personality.c +204 -0
- data/vendor/liburing/test/pipe-eof.c +83 -0
- data/vendor/liburing/test/pipe-reuse.c +105 -0
- data/vendor/liburing/test/poll-cancel-ton.c +135 -0
- data/vendor/liburing/test/poll-cancel.c +228 -0
- data/vendor/liburing/test/poll-link.c +230 -0
- data/vendor/liburing/test/poll-many.c +208 -0
- data/vendor/liburing/test/poll-mshot-update.c +273 -0
- data/vendor/liburing/test/poll-ring.c +48 -0
- data/vendor/liburing/test/poll-v-poll.c +353 -0
- data/vendor/liburing/test/poll.c +109 -0
- data/vendor/liburing/test/pollfree.c +426 -0
- data/vendor/liburing/test/probe.c +135 -0
- data/vendor/liburing/test/read-write.c +876 -0
- data/vendor/liburing/test/register-restrictions.c +633 -0
- data/vendor/liburing/test/rename.c +135 -0
- data/vendor/liburing/test/ring-leak.c +173 -0
- data/vendor/liburing/test/ring-leak2.c +249 -0
- data/vendor/liburing/test/rsrc_tags.c +449 -0
- data/vendor/liburing/test/runtests-loop.sh +16 -0
- data/vendor/liburing/test/runtests.sh +170 -0
- data/vendor/liburing/test/rw_merge_test.c +97 -0
- data/vendor/liburing/test/self.c +91 -0
- data/vendor/liburing/test/send_recv.c +286 -0
- data/vendor/liburing/test/send_recvmsg.c +345 -0
- data/vendor/liburing/test/sendmsg_fs_cve.c +200 -0
- data/vendor/liburing/test/shared-wq.c +84 -0
- data/vendor/liburing/test/short-read.c +75 -0
- data/vendor/liburing/test/shutdown.c +165 -0
- data/vendor/liburing/test/sigfd-deadlock.c +74 -0
- data/vendor/liburing/test/skip-cqe.c +429 -0
- data/vendor/liburing/test/socket-rw-eagain.c +158 -0
- data/vendor/liburing/test/socket-rw-offset.c +157 -0
- data/vendor/liburing/test/socket-rw.c +145 -0
- data/vendor/liburing/test/splice.c +512 -0
- data/vendor/liburing/test/sq-full-cpp.cc +45 -0
- data/vendor/liburing/test/sq-full.c +45 -0
- data/vendor/liburing/test/sq-poll-dup.c +204 -0
- data/vendor/liburing/test/sq-poll-kthread.c +169 -0
- data/vendor/liburing/test/sq-poll-share.c +137 -0
- data/vendor/liburing/test/sq-space_left.c +159 -0
- data/vendor/liburing/test/sqpoll-cancel-hang.c +157 -0
- data/vendor/liburing/test/sqpoll-disable-exit.c +196 -0
- data/vendor/liburing/test/sqpoll-exit-hang.c +78 -0
- data/vendor/liburing/test/sqpoll-sleep.c +69 -0
- data/vendor/liburing/test/statx.c +172 -0
- data/vendor/liburing/test/stdout.c +232 -0
- data/vendor/liburing/test/submit-link-fail.c +154 -0
- data/vendor/liburing/test/submit-reuse.c +239 -0
- data/vendor/liburing/test/symlink.c +116 -0
- data/vendor/liburing/test/teardowns.c +58 -0
- data/vendor/liburing/test/thread-exit.c +143 -0
- data/vendor/liburing/test/timeout-new.c +252 -0
- data/vendor/liburing/test/timeout-overflow.c +204 -0
- data/vendor/liburing/test/timeout.c +1523 -0
- data/vendor/liburing/test/unlink.c +112 -0
- data/vendor/liburing/test/wakeup-hang.c +162 -0
- 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
|
+
}
|