iou 0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/dependabot.yml +12 -0
- data/.gitignore +59 -0
- data/.gitmodules +3 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +106 -0
- data/Rakefile +39 -0
- data/TODO.md +4 -0
- data/examples/echo_server.rb +52 -0
- data/examples/event_loop.rb +69 -0
- data/examples/http_server.rb +56 -0
- data/examples/http_server_multishot.rb +59 -0
- data/ext/iou/extconf.rb +71 -0
- data/ext/iou/iou.c +729 -0
- data/ext/iou/iou.h +66 -0
- data/ext/iou/iou_ext.c +9 -0
- data/ext/iou/op_spec_data.c +61 -0
- data/iou.gemspec +27 -0
- data/lib/iou/version.rb +5 -0
- data/lib/iou.rb +3 -0
- data/test/helper.rb +59 -0
- data/test/test_iou.rb +794 -0
- data/vendor/liburing/.github/actions/codespell/stopwords +7 -0
- data/vendor/liburing/.github/pull_request_template.md +86 -0
- data/vendor/liburing/.github/workflows/build.yml +137 -0
- data/vendor/liburing/.github/workflows/codespell.yml +25 -0
- data/vendor/liburing/.github/workflows/shellcheck.yml +20 -0
- data/vendor/liburing/.gitignore +41 -0
- data/vendor/liburing/CHANGELOG +111 -0
- data/vendor/liburing/CITATION.cff +11 -0
- data/vendor/liburing/COPYING +502 -0
- data/vendor/liburing/COPYING.GPL +339 -0
- data/vendor/liburing/LICENSE +20 -0
- data/vendor/liburing/Makefile +96 -0
- data/vendor/liburing/Makefile.common +7 -0
- data/vendor/liburing/Makefile.quiet +11 -0
- data/vendor/liburing/README +106 -0
- data/vendor/liburing/SECURITY.md +6 -0
- data/vendor/liburing/configure +624 -0
- data/vendor/liburing/debian/README.Debian +7 -0
- data/vendor/liburing/debian/changelog +38 -0
- data/vendor/liburing/debian/control +39 -0
- data/vendor/liburing/debian/copyright +49 -0
- data/vendor/liburing/debian/liburing-dev.install +4 -0
- data/vendor/liburing/debian/liburing-dev.manpages +5 -0
- data/vendor/liburing/debian/liburing2.install +1 -0
- data/vendor/liburing/debian/liburing2.symbols +56 -0
- data/vendor/liburing/debian/patches/series +1 -0
- data/vendor/liburing/debian/rules +29 -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 +53 -0
- data/vendor/liburing/examples/helpers.c +62 -0
- data/vendor/liburing/examples/helpers.h +7 -0
- data/vendor/liburing/examples/io_uring-close-test.c +123 -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/io_uring-udp.c +403 -0
- data/vendor/liburing/examples/link-cp.c +193 -0
- data/vendor/liburing/examples/napi-busy-poll-client.c +509 -0
- data/vendor/liburing/examples/napi-busy-poll-server.c +450 -0
- data/vendor/liburing/examples/poll-bench.c +101 -0
- data/vendor/liburing/examples/proxy.c +2461 -0
- data/vendor/liburing/examples/proxy.h +102 -0
- data/vendor/liburing/examples/rsrc-update-bench.c +100 -0
- data/vendor/liburing/examples/send-zerocopy.c +658 -0
- data/vendor/liburing/examples/ucontext-cp.c +258 -0
- data/vendor/liburing/liburing-ffi.pc.in +12 -0
- data/vendor/liburing/liburing.pc.in +12 -0
- data/vendor/liburing/liburing.spec +66 -0
- data/vendor/liburing/make-debs.sh +55 -0
- data/vendor/liburing/src/Makefile +129 -0
- data/vendor/liburing/src/arch/aarch64/lib.h +47 -0
- data/vendor/liburing/src/arch/aarch64/syscall.h +91 -0
- data/vendor/liburing/src/arch/generic/lib.h +17 -0
- data/vendor/liburing/src/arch/generic/syscall.h +100 -0
- data/vendor/liburing/src/arch/riscv64/lib.h +48 -0
- data/vendor/liburing/src/arch/riscv64/syscall.h +100 -0
- data/vendor/liburing/src/arch/syscall-defs.h +94 -0
- data/vendor/liburing/src/arch/x86/lib.h +11 -0
- data/vendor/liburing/src/arch/x86/syscall.h +296 -0
- data/vendor/liburing/src/ffi.c +15 -0
- data/vendor/liburing/src/include/liburing/barrier.h +81 -0
- data/vendor/liburing/src/include/liburing/io_uring.h +818 -0
- data/vendor/liburing/src/include/liburing.h +1602 -0
- data/vendor/liburing/src/int_flags.h +11 -0
- data/vendor/liburing/src/lib.h +52 -0
- data/vendor/liburing/src/liburing-ffi.map +211 -0
- data/vendor/liburing/src/liburing.map +104 -0
- data/vendor/liburing/src/nolibc.c +55 -0
- data/vendor/liburing/src/queue.c +468 -0
- data/vendor/liburing/src/register.c +374 -0
- data/vendor/liburing/src/setup.c +689 -0
- data/vendor/liburing/src/setup.h +9 -0
- data/vendor/liburing/src/syscall.c +29 -0
- data/vendor/liburing/src/syscall.h +53 -0
- data/vendor/liburing/src/version.c +21 -0
- data/vendor/liburing/test/232c93d07b74.c +305 -0
- data/vendor/liburing/test/35fa71a030ca.c +329 -0
- data/vendor/liburing/test/500f9fbadef8.c +91 -0
- data/vendor/liburing/test/7ad0e4b2f83c.c +94 -0
- data/vendor/liburing/test/8a9973408177.c +107 -0
- data/vendor/liburing/test/917257daa0fe.c +54 -0
- data/vendor/liburing/test/Makefile +297 -0
- data/vendor/liburing/test/a0908ae19763.c +59 -0
- data/vendor/liburing/test/a4c0b3decb33.c +181 -0
- data/vendor/liburing/test/accept-link.c +255 -0
- data/vendor/liburing/test/accept-non-empty.c +256 -0
- data/vendor/liburing/test/accept-reuse.c +163 -0
- data/vendor/liburing/test/accept-test.c +83 -0
- data/vendor/liburing/test/accept.c +919 -0
- data/vendor/liburing/test/across-fork.c +284 -0
- data/vendor/liburing/test/b19062a56726.c +54 -0
- data/vendor/liburing/test/b5837bd5311d.c +78 -0
- data/vendor/liburing/test/bind-listen.c +408 -0
- data/vendor/liburing/test/buf-ring-nommap.c +123 -0
- data/vendor/liburing/test/buf-ring-put.c +83 -0
- data/vendor/liburing/test/buf-ring.c +473 -0
- data/vendor/liburing/test/ce593a6c480a.c +139 -0
- data/vendor/liburing/test/close-opath.c +123 -0
- data/vendor/liburing/test/config +14 -0
- data/vendor/liburing/test/connect-rep.c +204 -0
- data/vendor/liburing/test/connect.c +442 -0
- data/vendor/liburing/test/coredump.c +60 -0
- data/vendor/liburing/test/cq-full.c +97 -0
- data/vendor/liburing/test/cq-overflow.c +530 -0
- data/vendor/liburing/test/cq-peek-batch.c +103 -0
- data/vendor/liburing/test/cq-ready.c +95 -0
- data/vendor/liburing/test/cq-size.c +65 -0
- data/vendor/liburing/test/d4ae271dfaae.c +96 -0
- data/vendor/liburing/test/d77a67ed5f27.c +65 -0
- data/vendor/liburing/test/defer-taskrun.c +391 -0
- data/vendor/liburing/test/defer-tw-timeout.c +173 -0
- data/vendor/liburing/test/defer.c +319 -0
- data/vendor/liburing/test/double-poll-crash.c +195 -0
- data/vendor/liburing/test/drop-submit.c +94 -0
- data/vendor/liburing/test/eeed8b54e0df.c +120 -0
- data/vendor/liburing/test/empty-eownerdead.c +45 -0
- data/vendor/liburing/test/eploop.c +74 -0
- data/vendor/liburing/test/eventfd-disable.c +179 -0
- data/vendor/liburing/test/eventfd-reg.c +77 -0
- data/vendor/liburing/test/eventfd-ring.c +98 -0
- data/vendor/liburing/test/eventfd.c +113 -0
- data/vendor/liburing/test/evloop.c +73 -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 +265 -0
- data/vendor/liburing/test/fc2a85cb02ef.c +132 -0
- data/vendor/liburing/test/fd-install.c +500 -0
- data/vendor/liburing/test/fd-pass.c +237 -0
- data/vendor/liburing/test/fdinfo.c +419 -0
- data/vendor/liburing/test/file-register.c +1189 -0
- data/vendor/liburing/test/file-update.c +231 -0
- data/vendor/liburing/test/file-verify.c +654 -0
- data/vendor/liburing/test/files-exit-hang-poll.c +114 -0
- data/vendor/liburing/test/files-exit-hang-timeout.c +137 -0
- data/vendor/liburing/test/fixed-buf-iter.c +115 -0
- data/vendor/liburing/test/fixed-buf-merge.c +101 -0
- data/vendor/liburing/test/fixed-hugepage.c +411 -0
- data/vendor/liburing/test/fixed-link.c +90 -0
- data/vendor/liburing/test/fixed-reuse.c +160 -0
- data/vendor/liburing/test/fpos.c +255 -0
- data/vendor/liburing/test/fsnotify.c +118 -0
- data/vendor/liburing/test/fsync.c +224 -0
- data/vendor/liburing/test/futex.c +571 -0
- data/vendor/liburing/test/hardlink.c +170 -0
- data/vendor/liburing/test/helpers.c +318 -0
- data/vendor/liburing/test/helpers.h +108 -0
- data/vendor/liburing/test/ignore-single-mmap.c +48 -0
- data/vendor/liburing/test/init-mem.c +164 -0
- data/vendor/liburing/test/io-cancel.c +561 -0
- data/vendor/liburing/test/io_uring_enter.c +264 -0
- data/vendor/liburing/test/io_uring_passthrough.c +482 -0
- data/vendor/liburing/test/io_uring_register.c +503 -0
- data/vendor/liburing/test/io_uring_setup.c +110 -0
- data/vendor/liburing/test/iopoll-leak.c +85 -0
- data/vendor/liburing/test/iopoll-overflow.c +118 -0
- data/vendor/liburing/test/iopoll.c +465 -0
- data/vendor/liburing/test/lfs-openat-write.c +119 -0
- data/vendor/liburing/test/lfs-openat.c +273 -0
- data/vendor/liburing/test/link-timeout.c +1108 -0
- data/vendor/liburing/test/link.c +497 -0
- data/vendor/liburing/test/link_drain.c +255 -0
- data/vendor/liburing/test/madvise.c +195 -0
- data/vendor/liburing/test/min-timeout-wait.c +354 -0
- data/vendor/liburing/test/min-timeout.c +233 -0
- data/vendor/liburing/test/mkdir.c +112 -0
- data/vendor/liburing/test/msg-ring-fd.c +331 -0
- data/vendor/liburing/test/msg-ring-flags.c +212 -0
- data/vendor/liburing/test/msg-ring-overflow.c +159 -0
- data/vendor/liburing/test/msg-ring.c +467 -0
- data/vendor/liburing/test/multicqes_drain.c +429 -0
- data/vendor/liburing/test/napi-test.c +215 -0
- data/vendor/liburing/test/napi-test.sh +48 -0
- data/vendor/liburing/test/no-mmap-inval.c +42 -0
- data/vendor/liburing/test/nolibc.c +62 -0
- data/vendor/liburing/test/nop-all-sizes.c +99 -0
- data/vendor/liburing/test/nop.c +177 -0
- data/vendor/liburing/test/nvme.h +169 -0
- data/vendor/liburing/test/ooo-file-unreg.c +82 -0
- data/vendor/liburing/test/open-close.c +261 -0
- data/vendor/liburing/test/open-direct-link.c +188 -0
- data/vendor/liburing/test/open-direct-pick.c +180 -0
- data/vendor/liburing/test/openat2.c +312 -0
- data/vendor/liburing/test/personality.c +204 -0
- data/vendor/liburing/test/pipe-bug.c +95 -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-all.c +496 -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 +221 -0
- data/vendor/liburing/test/poll-many.c +230 -0
- data/vendor/liburing/test/poll-mshot-overflow.c +265 -0
- data/vendor/liburing/test/poll-mshot-update.c +323 -0
- data/vendor/liburing/test/poll-race-mshot.c +276 -0
- data/vendor/liburing/test/poll-race.c +105 -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 +327 -0
- data/vendor/liburing/test/probe.c +135 -0
- data/vendor/liburing/test/read-before-exit.c +129 -0
- data/vendor/liburing/test/read-mshot-empty.c +153 -0
- data/vendor/liburing/test/read-mshot.c +404 -0
- data/vendor/liburing/test/read-write.c +1013 -0
- data/vendor/liburing/test/recv-msgall-stream.c +398 -0
- data/vendor/liburing/test/recv-msgall.c +263 -0
- data/vendor/liburing/test/recv-multishot.c +602 -0
- data/vendor/liburing/test/recvsend_bundle.c +691 -0
- data/vendor/liburing/test/reg-fd-only.c +131 -0
- data/vendor/liburing/test/reg-hint.c +56 -0
- data/vendor/liburing/test/reg-reg-ring.c +90 -0
- data/vendor/liburing/test/regbuf-merge.c +91 -0
- data/vendor/liburing/test/register-restrictions.c +633 -0
- data/vendor/liburing/test/rename.c +132 -0
- data/vendor/liburing/test/ring-leak.c +283 -0
- data/vendor/liburing/test/ring-leak2.c +249 -0
- data/vendor/liburing/test/ringbuf-read.c +196 -0
- data/vendor/liburing/test/ringbuf-status.c +242 -0
- data/vendor/liburing/test/rsrc_tags.c +461 -0
- data/vendor/liburing/test/runtests-loop.sh +16 -0
- data/vendor/liburing/test/runtests-quiet.sh +11 -0
- data/vendor/liburing/test/runtests.sh +168 -0
- data/vendor/liburing/test/rw_merge_test.c +98 -0
- data/vendor/liburing/test/self.c +91 -0
- data/vendor/liburing/test/send-zerocopy.c +971 -0
- data/vendor/liburing/test/send_recv.c +412 -0
- data/vendor/liburing/test/send_recvmsg.c +444 -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 +88 -0
- data/vendor/liburing/test/single-issuer.c +169 -0
- data/vendor/liburing/test/skip-cqe.c +428 -0
- data/vendor/liburing/test/socket-getsetsock-cmd.c +346 -0
- data/vendor/liburing/test/socket-io-cmd.c +237 -0
- data/vendor/liburing/test/socket-rw-eagain.c +149 -0
- data/vendor/liburing/test/socket-rw-offset.c +149 -0
- data/vendor/liburing/test/socket-rw.c +137 -0
- data/vendor/liburing/test/socket.c +408 -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 +211 -0
- data/vendor/liburing/test/sq-poll-kthread.c +169 -0
- data/vendor/liburing/test/sq-poll-share.c +138 -0
- data/vendor/liburing/test/sq-space_left.c +159 -0
- data/vendor/liburing/test/sqpoll-disable-exit.c +196 -0
- data/vendor/liburing/test/sqpoll-exec.c +132 -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-and-wait.c +108 -0
- data/vendor/liburing/test/submit-link-fail.c +156 -0
- data/vendor/liburing/test/submit-reuse.c +237 -0
- data/vendor/liburing/test/symlink.c +117 -0
- data/vendor/liburing/test/sync-cancel.c +235 -0
- data/vendor/liburing/test/teardowns.c +58 -0
- data/vendor/liburing/test/test.h +36 -0
- data/vendor/liburing/test/thread-exit.c +143 -0
- data/vendor/liburing/test/timeout-new.c +256 -0
- data/vendor/liburing/test/timeout.c +1798 -0
- data/vendor/liburing/test/truncate.c +186 -0
- data/vendor/liburing/test/tty-write-dpoll.c +60 -0
- data/vendor/liburing/test/unlink.c +112 -0
- data/vendor/liburing/test/version.c +25 -0
- data/vendor/liburing/test/wait-timeout.c +287 -0
- data/vendor/liburing/test/waitid.c +373 -0
- data/vendor/liburing/test/wakeup-hang.c +162 -0
- data/vendor/liburing/test/wq-aff.c +146 -0
- data/vendor/liburing/test/xattr.c +442 -0
- metadata +402 -0
@@ -0,0 +1,149 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Check that a readv on a socket queued before a writev doesn't hang
|
4
|
+
* the processing.
|
5
|
+
*
|
6
|
+
* From Hrvoje Zeba <zeba.hrvoje@gmail.com>
|
7
|
+
*/
|
8
|
+
#include <stdio.h>
|
9
|
+
#include <stdlib.h>
|
10
|
+
#include <stdint.h>
|
11
|
+
#include <assert.h>
|
12
|
+
|
13
|
+
#include <errno.h>
|
14
|
+
#include <fcntl.h>
|
15
|
+
#include <unistd.h>
|
16
|
+
#include <sys/socket.h>
|
17
|
+
#include <sys/un.h>
|
18
|
+
#include <netinet/tcp.h>
|
19
|
+
#include <netinet/in.h>
|
20
|
+
#include <arpa/inet.h>
|
21
|
+
|
22
|
+
#include "liburing.h"
|
23
|
+
#include "helpers.h"
|
24
|
+
|
25
|
+
int main(int argc, char *argv[])
|
26
|
+
{
|
27
|
+
int p_fd[2], ret;
|
28
|
+
int32_t recv_s0;
|
29
|
+
int32_t val = 1;
|
30
|
+
struct sockaddr_in addr;
|
31
|
+
struct iovec iov_r[1], iov_w[1];
|
32
|
+
|
33
|
+
if (argc > 1)
|
34
|
+
return 0;
|
35
|
+
|
36
|
+
srand(getpid());
|
37
|
+
|
38
|
+
recv_s0 = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
|
39
|
+
|
40
|
+
ret = setsockopt(recv_s0, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
|
41
|
+
assert(ret != -1);
|
42
|
+
ret = setsockopt(recv_s0, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
|
43
|
+
assert(ret != -1);
|
44
|
+
|
45
|
+
addr.sin_family = AF_INET;
|
46
|
+
addr.sin_addr.s_addr = inet_addr("127.0.0.1");
|
47
|
+
ret = t_bind_ephemeral_port(recv_s0, &addr);
|
48
|
+
assert(!ret);
|
49
|
+
ret = listen(recv_s0, 128);
|
50
|
+
assert(ret != -1);
|
51
|
+
|
52
|
+
|
53
|
+
p_fd[1] = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
|
54
|
+
|
55
|
+
val = 1;
|
56
|
+
ret = setsockopt(p_fd[1], IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
|
57
|
+
assert(ret != -1);
|
58
|
+
|
59
|
+
int32_t flags = fcntl(p_fd[1], F_GETFL, 0);
|
60
|
+
assert(flags != -1);
|
61
|
+
|
62
|
+
flags |= O_NONBLOCK;
|
63
|
+
ret = fcntl(p_fd[1], F_SETFL, flags);
|
64
|
+
assert(ret != -1);
|
65
|
+
|
66
|
+
ret = connect(p_fd[1], (struct sockaddr*)&addr, sizeof(addr));
|
67
|
+
assert(ret == -1);
|
68
|
+
|
69
|
+
flags = fcntl(p_fd[1], F_GETFL, 0);
|
70
|
+
assert(flags != -1);
|
71
|
+
|
72
|
+
flags &= ~O_NONBLOCK;
|
73
|
+
ret = fcntl(p_fd[1], F_SETFL, flags);
|
74
|
+
assert(ret != -1);
|
75
|
+
|
76
|
+
p_fd[0] = accept(recv_s0, NULL, NULL);
|
77
|
+
assert(p_fd[0] != -1);
|
78
|
+
|
79
|
+
while (1) {
|
80
|
+
int32_t code;
|
81
|
+
socklen_t code_len = sizeof(code);
|
82
|
+
|
83
|
+
ret = getsockopt(p_fd[1], SOL_SOCKET, SO_ERROR, &code, &code_len);
|
84
|
+
assert(ret != -1);
|
85
|
+
|
86
|
+
if (!code)
|
87
|
+
break;
|
88
|
+
}
|
89
|
+
|
90
|
+
struct io_uring m_io_uring;
|
91
|
+
struct io_uring_params p = { };
|
92
|
+
|
93
|
+
ret = io_uring_queue_init_params(32, &m_io_uring, &p);
|
94
|
+
assert(ret >= 0);
|
95
|
+
|
96
|
+
/* skip for kernels without cur position read/write */
|
97
|
+
if (!(p.features & IORING_FEAT_RW_CUR_POS))
|
98
|
+
return 0;
|
99
|
+
|
100
|
+
char recv_buff[128];
|
101
|
+
char send_buff[128];
|
102
|
+
|
103
|
+
{
|
104
|
+
iov_r[0].iov_base = recv_buff;
|
105
|
+
iov_r[0].iov_len = sizeof(recv_buff);
|
106
|
+
|
107
|
+
struct io_uring_sqe* sqe = io_uring_get_sqe(&m_io_uring);
|
108
|
+
assert(sqe != NULL);
|
109
|
+
|
110
|
+
io_uring_prep_readv(sqe, p_fd[0], iov_r, 1, -1);
|
111
|
+
}
|
112
|
+
|
113
|
+
{
|
114
|
+
iov_w[0].iov_base = send_buff;
|
115
|
+
iov_w[0].iov_len = sizeof(send_buff);
|
116
|
+
|
117
|
+
struct io_uring_sqe* sqe = io_uring_get_sqe(&m_io_uring);
|
118
|
+
assert(sqe != NULL);
|
119
|
+
|
120
|
+
io_uring_prep_writev(sqe, p_fd[1], iov_w, 1, 0);
|
121
|
+
}
|
122
|
+
|
123
|
+
ret = io_uring_submit_and_wait(&m_io_uring, 2);
|
124
|
+
assert(ret != -1);
|
125
|
+
|
126
|
+
struct io_uring_cqe* cqe;
|
127
|
+
uint32_t head;
|
128
|
+
uint32_t count = 0;
|
129
|
+
|
130
|
+
ret = 0;
|
131
|
+
while (count != 2) {
|
132
|
+
io_uring_for_each_cqe(&m_io_uring, head, cqe) {
|
133
|
+
if (cqe->res != 128) {
|
134
|
+
fprintf(stderr, "Got %d, expected 128\n", cqe->res);
|
135
|
+
ret = 1;
|
136
|
+
goto err;
|
137
|
+
}
|
138
|
+
assert(cqe->res == 128);
|
139
|
+
count++;
|
140
|
+
}
|
141
|
+
|
142
|
+
assert(count <= 2);
|
143
|
+
io_uring_cq_advance(&m_io_uring, count);
|
144
|
+
}
|
145
|
+
|
146
|
+
err:
|
147
|
+
io_uring_queue_exit(&m_io_uring);
|
148
|
+
return ret;
|
149
|
+
}
|
@@ -0,0 +1,137 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Check that a readv on a socket queued before a writev doesn't hang
|
4
|
+
* the processing.
|
5
|
+
*
|
6
|
+
* From Hrvoje Zeba <zeba.hrvoje@gmail.com>
|
7
|
+
*/
|
8
|
+
#include <stdio.h>
|
9
|
+
#include <stdlib.h>
|
10
|
+
#include <stdint.h>
|
11
|
+
#include <assert.h>
|
12
|
+
|
13
|
+
#include <errno.h>
|
14
|
+
#include <fcntl.h>
|
15
|
+
#include <unistd.h>
|
16
|
+
#include <sys/socket.h>
|
17
|
+
#include <sys/un.h>
|
18
|
+
#include <netinet/tcp.h>
|
19
|
+
#include <netinet/in.h>
|
20
|
+
#include <arpa/inet.h>
|
21
|
+
|
22
|
+
#include "liburing.h"
|
23
|
+
#include "helpers.h"
|
24
|
+
|
25
|
+
int main(int argc, char *argv[])
|
26
|
+
{
|
27
|
+
int p_fd[2], ret;
|
28
|
+
int32_t recv_s0;
|
29
|
+
int32_t val = 1;
|
30
|
+
struct sockaddr_in addr;
|
31
|
+
struct iovec iov_r[1], iov_w[1];
|
32
|
+
|
33
|
+
if (argc > 1)
|
34
|
+
return 0;
|
35
|
+
|
36
|
+
srand(getpid());
|
37
|
+
|
38
|
+
recv_s0 = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
|
39
|
+
|
40
|
+
ret = setsockopt(recv_s0, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
|
41
|
+
assert(ret != -1);
|
42
|
+
ret = setsockopt(recv_s0, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
|
43
|
+
assert(ret != -1);
|
44
|
+
|
45
|
+
addr.sin_family = AF_INET;
|
46
|
+
addr.sin_addr.s_addr = inet_addr("127.0.0.1");
|
47
|
+
ret = t_bind_ephemeral_port(recv_s0, &addr);
|
48
|
+
assert(!ret);
|
49
|
+
ret = listen(recv_s0, 128);
|
50
|
+
assert(ret != -1);
|
51
|
+
|
52
|
+
|
53
|
+
p_fd[1] = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
|
54
|
+
|
55
|
+
val = 1;
|
56
|
+
ret = setsockopt(p_fd[1], IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
|
57
|
+
assert(ret != -1);
|
58
|
+
|
59
|
+
int32_t flags = fcntl(p_fd[1], F_GETFL, 0);
|
60
|
+
assert(flags != -1);
|
61
|
+
|
62
|
+
flags |= O_NONBLOCK;
|
63
|
+
ret = fcntl(p_fd[1], F_SETFL, flags);
|
64
|
+
assert(ret != -1);
|
65
|
+
|
66
|
+
ret = connect(p_fd[1], (struct sockaddr*)&addr, sizeof(addr));
|
67
|
+
assert(ret == -1);
|
68
|
+
|
69
|
+
flags = fcntl(p_fd[1], F_GETFL, 0);
|
70
|
+
assert(flags != -1);
|
71
|
+
|
72
|
+
flags &= ~O_NONBLOCK;
|
73
|
+
ret = fcntl(p_fd[1], F_SETFL, flags);
|
74
|
+
assert(ret != -1);
|
75
|
+
|
76
|
+
p_fd[0] = accept(recv_s0, NULL, NULL);
|
77
|
+
assert(p_fd[0] != -1);
|
78
|
+
|
79
|
+
while (1) {
|
80
|
+
int32_t code;
|
81
|
+
socklen_t code_len = sizeof(code);
|
82
|
+
|
83
|
+
ret = getsockopt(p_fd[1], SOL_SOCKET, SO_ERROR, &code, &code_len);
|
84
|
+
assert(ret != -1);
|
85
|
+
|
86
|
+
if (!code)
|
87
|
+
break;
|
88
|
+
}
|
89
|
+
|
90
|
+
struct io_uring m_io_uring;
|
91
|
+
|
92
|
+
ret = io_uring_queue_init(32, &m_io_uring, 0);
|
93
|
+
assert(ret >= 0);
|
94
|
+
|
95
|
+
char recv_buff[128];
|
96
|
+
char send_buff[128];
|
97
|
+
|
98
|
+
{
|
99
|
+
iov_r[0].iov_base = recv_buff;
|
100
|
+
iov_r[0].iov_len = sizeof(recv_buff);
|
101
|
+
|
102
|
+
struct io_uring_sqe* sqe = io_uring_get_sqe(&m_io_uring);
|
103
|
+
assert(sqe != NULL);
|
104
|
+
|
105
|
+
io_uring_prep_readv(sqe, p_fd[0], iov_r, 1, 0);
|
106
|
+
}
|
107
|
+
|
108
|
+
{
|
109
|
+
iov_w[0].iov_base = send_buff;
|
110
|
+
iov_w[0].iov_len = sizeof(send_buff);
|
111
|
+
|
112
|
+
struct io_uring_sqe* sqe = io_uring_get_sqe(&m_io_uring);
|
113
|
+
assert(sqe != NULL);
|
114
|
+
|
115
|
+
io_uring_prep_writev(sqe, p_fd[1], iov_w, 1, 0);
|
116
|
+
}
|
117
|
+
|
118
|
+
ret = io_uring_submit_and_wait(&m_io_uring, 2);
|
119
|
+
assert(ret != -1);
|
120
|
+
|
121
|
+
struct io_uring_cqe* cqe;
|
122
|
+
uint32_t head;
|
123
|
+
uint32_t count = 0;
|
124
|
+
|
125
|
+
while (count != 2) {
|
126
|
+
io_uring_for_each_cqe(&m_io_uring, head, cqe) {
|
127
|
+
assert(cqe->res == 128);
|
128
|
+
count++;
|
129
|
+
}
|
130
|
+
|
131
|
+
assert(count <= 2);
|
132
|
+
io_uring_cq_advance(&m_io_uring, count);
|
133
|
+
}
|
134
|
+
|
135
|
+
io_uring_queue_exit(&m_io_uring);
|
136
|
+
return 0;
|
137
|
+
}
|
@@ -0,0 +1,408 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Simple test case using the socket op
|
4
|
+
*/
|
5
|
+
#include <errno.h>
|
6
|
+
#include <stdio.h>
|
7
|
+
#include <stdlib.h>
|
8
|
+
#include <string.h>
|
9
|
+
#include <unistd.h>
|
10
|
+
#include <arpa/inet.h>
|
11
|
+
#include <sys/types.h>
|
12
|
+
#include <sys/socket.h>
|
13
|
+
#include <pthread.h>
|
14
|
+
#include <assert.h>
|
15
|
+
|
16
|
+
#include "liburing.h"
|
17
|
+
#include "helpers.h"
|
18
|
+
|
19
|
+
static char str[] = "This is a test of send and recv over io_uring!";
|
20
|
+
|
21
|
+
#define MAX_MSG 128
|
22
|
+
|
23
|
+
#define HOST "127.0.0.1"
|
24
|
+
|
25
|
+
static int no_socket;
|
26
|
+
static __be32 g_port;
|
27
|
+
|
28
|
+
static int recv_prep(struct io_uring *ring, struct iovec *iov, int *sock,
|
29
|
+
int registerfiles)
|
30
|
+
{
|
31
|
+
struct sockaddr_in saddr;
|
32
|
+
struct io_uring_sqe *sqe;
|
33
|
+
int sockfd, ret, val, use_fd;
|
34
|
+
|
35
|
+
memset(&saddr, 0, sizeof(saddr));
|
36
|
+
saddr.sin_family = AF_INET;
|
37
|
+
saddr.sin_addr.s_addr = htonl(INADDR_ANY);
|
38
|
+
|
39
|
+
sockfd = socket(AF_INET, SOCK_DGRAM, 0);
|
40
|
+
if (sockfd < 0) {
|
41
|
+
perror("socket");
|
42
|
+
return 1;
|
43
|
+
}
|
44
|
+
|
45
|
+
val = 1;
|
46
|
+
setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
|
47
|
+
|
48
|
+
if (t_bind_ephemeral_port(sockfd, &saddr)) {
|
49
|
+
perror("bind");
|
50
|
+
goto err;
|
51
|
+
}
|
52
|
+
g_port = saddr.sin_port;
|
53
|
+
|
54
|
+
if (registerfiles) {
|
55
|
+
ret = io_uring_register_files(ring, &sockfd, 1);
|
56
|
+
if (ret) {
|
57
|
+
fprintf(stderr, "file reg failed\n");
|
58
|
+
goto err;
|
59
|
+
}
|
60
|
+
use_fd = 0;
|
61
|
+
} else {
|
62
|
+
use_fd = sockfd;
|
63
|
+
}
|
64
|
+
|
65
|
+
sqe = io_uring_get_sqe(ring);
|
66
|
+
io_uring_prep_recv(sqe, use_fd, iov->iov_base, iov->iov_len, 0);
|
67
|
+
if (registerfiles)
|
68
|
+
sqe->flags |= IOSQE_FIXED_FILE;
|
69
|
+
sqe->user_data = 2;
|
70
|
+
|
71
|
+
ret = io_uring_submit(ring);
|
72
|
+
if (ret <= 0) {
|
73
|
+
fprintf(stderr, "submit failed: %d\n", ret);
|
74
|
+
goto err;
|
75
|
+
}
|
76
|
+
|
77
|
+
*sock = sockfd;
|
78
|
+
return 0;
|
79
|
+
err:
|
80
|
+
close(sockfd);
|
81
|
+
return 1;
|
82
|
+
}
|
83
|
+
|
84
|
+
static int do_recv(struct io_uring *ring, struct iovec *iov)
|
85
|
+
{
|
86
|
+
struct io_uring_cqe *cqe;
|
87
|
+
int ret;
|
88
|
+
|
89
|
+
ret = io_uring_wait_cqe(ring, &cqe);
|
90
|
+
if (ret) {
|
91
|
+
fprintf(stdout, "wait_cqe: %d\n", ret);
|
92
|
+
goto err;
|
93
|
+
}
|
94
|
+
if (cqe->res == -EINVAL) {
|
95
|
+
fprintf(stdout, "recv not supported, skipping\n");
|
96
|
+
return 0;
|
97
|
+
}
|
98
|
+
if (cqe->res < 0) {
|
99
|
+
fprintf(stderr, "failed cqe: %d\n", cqe->res);
|
100
|
+
goto err;
|
101
|
+
}
|
102
|
+
|
103
|
+
if (cqe->res -1 != strlen(str)) {
|
104
|
+
fprintf(stderr, "got wrong length: %d/%d\n", cqe->res,
|
105
|
+
(int) strlen(str) + 1);
|
106
|
+
goto err;
|
107
|
+
}
|
108
|
+
|
109
|
+
if (strcmp(str, iov->iov_base)) {
|
110
|
+
fprintf(stderr, "string mismatch\n");
|
111
|
+
goto err;
|
112
|
+
}
|
113
|
+
|
114
|
+
return 0;
|
115
|
+
err:
|
116
|
+
return 1;
|
117
|
+
}
|
118
|
+
|
119
|
+
struct recv_data {
|
120
|
+
pthread_mutex_t mutex;
|
121
|
+
int use_sqthread;
|
122
|
+
int registerfiles;
|
123
|
+
};
|
124
|
+
|
125
|
+
static void *recv_fn(void *data)
|
126
|
+
{
|
127
|
+
struct recv_data *rd = data;
|
128
|
+
char buf[MAX_MSG + 1];
|
129
|
+
struct iovec iov = {
|
130
|
+
.iov_base = buf,
|
131
|
+
.iov_len = sizeof(buf) - 1,
|
132
|
+
};
|
133
|
+
struct io_uring_params p = { };
|
134
|
+
struct io_uring ring;
|
135
|
+
int ret, sock;
|
136
|
+
|
137
|
+
if (rd->use_sqthread)
|
138
|
+
p.flags = IORING_SETUP_SQPOLL;
|
139
|
+
ret = t_create_ring_params(1, &ring, &p);
|
140
|
+
if (ret == T_SETUP_SKIP) {
|
141
|
+
pthread_mutex_unlock(&rd->mutex);
|
142
|
+
ret = 0;
|
143
|
+
goto err;
|
144
|
+
} else if (ret < 0) {
|
145
|
+
pthread_mutex_unlock(&rd->mutex);
|
146
|
+
goto err;
|
147
|
+
}
|
148
|
+
|
149
|
+
if (rd->use_sqthread && !rd->registerfiles) {
|
150
|
+
if (!(p.features & IORING_FEAT_SQPOLL_NONFIXED)) {
|
151
|
+
fprintf(stdout, "Non-registered SQPOLL not available, skipping\n");
|
152
|
+
pthread_mutex_unlock(&rd->mutex);
|
153
|
+
goto err;
|
154
|
+
}
|
155
|
+
}
|
156
|
+
|
157
|
+
ret = recv_prep(&ring, &iov, &sock, rd->registerfiles);
|
158
|
+
if (ret) {
|
159
|
+
fprintf(stderr, "recv_prep failed: %d\n", ret);
|
160
|
+
goto err;
|
161
|
+
}
|
162
|
+
pthread_mutex_unlock(&rd->mutex);
|
163
|
+
ret = do_recv(&ring, &iov);
|
164
|
+
|
165
|
+
close(sock);
|
166
|
+
io_uring_queue_exit(&ring);
|
167
|
+
err:
|
168
|
+
return (void *)(intptr_t)ret;
|
169
|
+
}
|
170
|
+
|
171
|
+
static int fallback_send(struct io_uring *ring, struct sockaddr_in *saddr)
|
172
|
+
{
|
173
|
+
struct iovec iov = {
|
174
|
+
.iov_base = str,
|
175
|
+
.iov_len = sizeof(str),
|
176
|
+
};
|
177
|
+
struct io_uring_cqe *cqe;
|
178
|
+
struct io_uring_sqe *sqe;
|
179
|
+
int sockfd, ret;
|
180
|
+
|
181
|
+
sockfd = socket(AF_INET, SOCK_DGRAM, 0);
|
182
|
+
if (sockfd < 0) {
|
183
|
+
perror("socket");
|
184
|
+
return 1;
|
185
|
+
}
|
186
|
+
|
187
|
+
ret = connect(sockfd, (struct sockaddr *)saddr, sizeof(*saddr));
|
188
|
+
if (ret < 0) {
|
189
|
+
perror("connect");
|
190
|
+
return 1;
|
191
|
+
}
|
192
|
+
|
193
|
+
sqe = io_uring_get_sqe(ring);
|
194
|
+
io_uring_prep_send(sqe, sockfd, iov.iov_base, iov.iov_len, 0);
|
195
|
+
sqe->user_data = 1;
|
196
|
+
|
197
|
+
ret = io_uring_submit(ring);
|
198
|
+
if (ret <= 0) {
|
199
|
+
fprintf(stderr, "submit failed: %d\n", ret);
|
200
|
+
goto err;
|
201
|
+
}
|
202
|
+
|
203
|
+
ret = io_uring_wait_cqe(ring, &cqe);
|
204
|
+
if (cqe->res == -EINVAL) {
|
205
|
+
fprintf(stdout, "send not supported, skipping\n");
|
206
|
+
close(sockfd);
|
207
|
+
return 0;
|
208
|
+
}
|
209
|
+
if (cqe->res != iov.iov_len) {
|
210
|
+
fprintf(stderr, "failed cqe: %d\n", cqe->res);
|
211
|
+
goto err;
|
212
|
+
}
|
213
|
+
|
214
|
+
close(sockfd);
|
215
|
+
return 0;
|
216
|
+
err:
|
217
|
+
close(sockfd);
|
218
|
+
return 1;
|
219
|
+
}
|
220
|
+
|
221
|
+
static int do_send(int socket_direct, int alloc)
|
222
|
+
{
|
223
|
+
struct sockaddr_in saddr;
|
224
|
+
struct iovec iov = {
|
225
|
+
.iov_base = str,
|
226
|
+
.iov_len = sizeof(str),
|
227
|
+
};
|
228
|
+
struct io_uring ring;
|
229
|
+
struct io_uring_cqe *cqe;
|
230
|
+
struct io_uring_sqe *sqe;
|
231
|
+
int sockfd, ret, fd = -1;
|
232
|
+
|
233
|
+
ret = io_uring_queue_init(1, &ring, 0);
|
234
|
+
if (ret) {
|
235
|
+
fprintf(stderr, "queue init failed: %d\n", ret);
|
236
|
+
return 1;
|
237
|
+
}
|
238
|
+
|
239
|
+
if (socket_direct) {
|
240
|
+
ret = io_uring_register_files(&ring, &fd, 1);
|
241
|
+
if (ret) {
|
242
|
+
fprintf(stderr, "file register %d\n", ret);
|
243
|
+
return 1;
|
244
|
+
}
|
245
|
+
}
|
246
|
+
|
247
|
+
assert(g_port != 0);
|
248
|
+
memset(&saddr, 0, sizeof(saddr));
|
249
|
+
saddr.sin_family = AF_INET;
|
250
|
+
saddr.sin_port = g_port;
|
251
|
+
inet_pton(AF_INET, HOST, &saddr.sin_addr);
|
252
|
+
|
253
|
+
sqe = io_uring_get_sqe(&ring);
|
254
|
+
if (socket_direct) {
|
255
|
+
unsigned file_index = 0;
|
256
|
+
if (alloc)
|
257
|
+
file_index = IORING_FILE_INDEX_ALLOC - 1;
|
258
|
+
io_uring_prep_socket_direct(sqe, AF_INET, SOCK_DGRAM, 0,
|
259
|
+
file_index, 0);
|
260
|
+
} else {
|
261
|
+
io_uring_prep_socket(sqe, AF_INET, SOCK_DGRAM, 0, 0);
|
262
|
+
}
|
263
|
+
ret = io_uring_submit(&ring);
|
264
|
+
if (ret != 1) {
|
265
|
+
fprintf(stderr, "socket submit: %d\n", ret);
|
266
|
+
return 1;
|
267
|
+
}
|
268
|
+
ret = io_uring_wait_cqe(&ring, &cqe);
|
269
|
+
if (ret) {
|
270
|
+
fprintf(stderr, "wait_cqe: %d\n", ret);
|
271
|
+
return 1;
|
272
|
+
}
|
273
|
+
if (cqe->res < 0) {
|
274
|
+
if (cqe->res == -EINVAL) {
|
275
|
+
no_socket = 1;
|
276
|
+
io_uring_cqe_seen(&ring, cqe);
|
277
|
+
return fallback_send(&ring, &saddr);
|
278
|
+
}
|
279
|
+
|
280
|
+
fprintf(stderr, "socket res: %d\n", ret);
|
281
|
+
return 1;
|
282
|
+
}
|
283
|
+
|
284
|
+
sockfd = cqe->res;
|
285
|
+
if (socket_direct && !alloc)
|
286
|
+
sockfd = 0;
|
287
|
+
io_uring_cqe_seen(&ring, cqe);
|
288
|
+
|
289
|
+
sqe = io_uring_get_sqe(&ring);
|
290
|
+
io_uring_prep_connect(sqe, sockfd, (struct sockaddr *) &saddr,
|
291
|
+
sizeof(saddr));
|
292
|
+
if (socket_direct)
|
293
|
+
sqe->flags |= IOSQE_FIXED_FILE;
|
294
|
+
ret = io_uring_submit(&ring);
|
295
|
+
if (ret != 1) {
|
296
|
+
fprintf(stderr, "connect submit: %d\n", ret);
|
297
|
+
return 1;
|
298
|
+
}
|
299
|
+
ret = io_uring_wait_cqe(&ring, &cqe);
|
300
|
+
if (ret) {
|
301
|
+
fprintf(stderr, "wait_cqe: %d\n", ret);
|
302
|
+
return 1;
|
303
|
+
}
|
304
|
+
if (cqe->res < 0) {
|
305
|
+
fprintf(stderr, "connect res: %d\n", cqe->res);
|
306
|
+
return 1;
|
307
|
+
}
|
308
|
+
io_uring_cqe_seen(&ring, cqe);
|
309
|
+
|
310
|
+
sqe = io_uring_get_sqe(&ring);
|
311
|
+
io_uring_prep_send(sqe, sockfd, iov.iov_base, iov.iov_len, 0);
|
312
|
+
sqe->user_data = 1;
|
313
|
+
if (socket_direct)
|
314
|
+
sqe->flags |= IOSQE_FIXED_FILE;
|
315
|
+
|
316
|
+
ret = io_uring_submit(&ring);
|
317
|
+
if (ret <= 0) {
|
318
|
+
fprintf(stderr, "submit failed: %d\n", ret);
|
319
|
+
goto err;
|
320
|
+
}
|
321
|
+
|
322
|
+
ret = io_uring_wait_cqe(&ring, &cqe);
|
323
|
+
if (cqe->res == -EINVAL) {
|
324
|
+
fprintf(stdout, "send not supported, skipping\n");
|
325
|
+
close(sockfd);
|
326
|
+
return 0;
|
327
|
+
}
|
328
|
+
if (cqe->res != iov.iov_len) {
|
329
|
+
fprintf(stderr, "failed cqe: %d\n", cqe->res);
|
330
|
+
goto err;
|
331
|
+
}
|
332
|
+
|
333
|
+
close(sockfd);
|
334
|
+
return 0;
|
335
|
+
err:
|
336
|
+
close(sockfd);
|
337
|
+
return 1;
|
338
|
+
}
|
339
|
+
|
340
|
+
static int test(int use_sqthread, int regfiles, int socket_direct, int alloc)
|
341
|
+
{
|
342
|
+
pthread_mutexattr_t attr;
|
343
|
+
pthread_t recv_thread;
|
344
|
+
struct recv_data rd;
|
345
|
+
int ret;
|
346
|
+
void *retval;
|
347
|
+
|
348
|
+
pthread_mutexattr_init(&attr);
|
349
|
+
pthread_mutexattr_setpshared(&attr, 1);
|
350
|
+
pthread_mutex_init(&rd.mutex, &attr);
|
351
|
+
pthread_mutex_lock(&rd.mutex);
|
352
|
+
rd.use_sqthread = use_sqthread;
|
353
|
+
rd.registerfiles = regfiles;
|
354
|
+
|
355
|
+
ret = pthread_create(&recv_thread, NULL, recv_fn, &rd);
|
356
|
+
if (ret) {
|
357
|
+
fprintf(stderr, "Thread create failed: %d\n", ret);
|
358
|
+
pthread_mutex_unlock(&rd.mutex);
|
359
|
+
return 1;
|
360
|
+
}
|
361
|
+
|
362
|
+
pthread_mutex_lock(&rd.mutex);
|
363
|
+
do_send(socket_direct, alloc);
|
364
|
+
pthread_join(recv_thread, &retval);
|
365
|
+
return (intptr_t)retval;
|
366
|
+
}
|
367
|
+
|
368
|
+
int main(int argc, char *argv[])
|
369
|
+
{
|
370
|
+
int ret;
|
371
|
+
|
372
|
+
if (argc > 1)
|
373
|
+
return 0;
|
374
|
+
|
375
|
+
ret = test(0, 0, 0, 0);
|
376
|
+
if (ret) {
|
377
|
+
fprintf(stderr, "test sqthread=0 failed\n");
|
378
|
+
return ret;
|
379
|
+
}
|
380
|
+
if (no_socket)
|
381
|
+
return 0;
|
382
|
+
|
383
|
+
ret = test(1, 1, 0, 0);
|
384
|
+
if (ret) {
|
385
|
+
fprintf(stderr, "test sqthread=1 reg=1 failed\n");
|
386
|
+
return ret;
|
387
|
+
}
|
388
|
+
|
389
|
+
ret = test(1, 0, 0, 0);
|
390
|
+
if (ret) {
|
391
|
+
fprintf(stderr, "test sqthread=1 reg=0 failed\n");
|
392
|
+
return ret;
|
393
|
+
}
|
394
|
+
|
395
|
+
ret = test(0, 0, 1, 0);
|
396
|
+
if (ret) {
|
397
|
+
fprintf(stderr, "test sqthread=0 direct=1 failed\n");
|
398
|
+
return ret;
|
399
|
+
}
|
400
|
+
|
401
|
+
ret = test(0, 0, 1, 1);
|
402
|
+
if (ret) {
|
403
|
+
fprintf(stderr, "test sqthread=0 direct=alloc failed\n");
|
404
|
+
return ret;
|
405
|
+
}
|
406
|
+
|
407
|
+
return 0;
|
408
|
+
}
|