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,509 @@
|
|
1
|
+
/* SPDX-License-Identifier: MIT */
|
2
|
+
/*
|
3
|
+
* Simple ping/pong client which can use the io_uring NAPI support.
|
4
|
+
*
|
5
|
+
* Needs to be run as root because it sets SCHED_FIFO scheduling class,
|
6
|
+
* but will work without that.
|
7
|
+
*
|
8
|
+
* Example:
|
9
|
+
*
|
10
|
+
* sudo examples/napi-busy-poll-client -a 192.168.2.2 -n100000 -p4444 \
|
11
|
+
* -b -t10 -u
|
12
|
+
*
|
13
|
+
* send and receive 100k packets, using NAPI.
|
14
|
+
*/
|
15
|
+
#include <ctype.h>
|
16
|
+
#include <errno.h>
|
17
|
+
#include <float.h>
|
18
|
+
#include <getopt.h>
|
19
|
+
#include <liburing.h>
|
20
|
+
#include <math.h>
|
21
|
+
#include <sched.h>
|
22
|
+
#include <stdio.h>
|
23
|
+
#include <stdlib.h>
|
24
|
+
#include <string.h>
|
25
|
+
#include <sys/types.h>
|
26
|
+
#include <sys/socket.h>
|
27
|
+
#include <time.h>
|
28
|
+
#include <unistd.h>
|
29
|
+
#include <arpa/inet.h>
|
30
|
+
#include <netdb.h>
|
31
|
+
#include <netinet/in.h>
|
32
|
+
|
33
|
+
#define MAXBUFLEN 100
|
34
|
+
#define PORTNOLEN 10
|
35
|
+
#define ADDRLEN 80
|
36
|
+
#define RINGSIZE 1024
|
37
|
+
|
38
|
+
#define printable(ch) (isprint((unsigned char)ch) ? ch : '#')
|
39
|
+
|
40
|
+
enum {
|
41
|
+
IOURING_RECV,
|
42
|
+
IOURING_SEND,
|
43
|
+
IOURING_RECVMSG,
|
44
|
+
IOURING_SENDMSG
|
45
|
+
};
|
46
|
+
|
47
|
+
struct ctx
|
48
|
+
{
|
49
|
+
struct io_uring ring;
|
50
|
+
union {
|
51
|
+
struct sockaddr_in6 saddr6;
|
52
|
+
struct sockaddr_in saddr;
|
53
|
+
};
|
54
|
+
|
55
|
+
int sockfd;
|
56
|
+
int buffer_len;
|
57
|
+
int num_pings;
|
58
|
+
bool napi_check;
|
59
|
+
|
60
|
+
union {
|
61
|
+
char buffer[MAXBUFLEN];
|
62
|
+
struct timespec ts;
|
63
|
+
};
|
64
|
+
|
65
|
+
int rtt_index;
|
66
|
+
double *rtt;
|
67
|
+
};
|
68
|
+
|
69
|
+
struct options
|
70
|
+
{
|
71
|
+
int num_pings;
|
72
|
+
__u32 timeout;
|
73
|
+
|
74
|
+
bool sq_poll;
|
75
|
+
bool defer_tw;
|
76
|
+
bool busy_loop;
|
77
|
+
bool prefer_busy_poll;
|
78
|
+
bool ipv6;
|
79
|
+
|
80
|
+
char port[PORTNOLEN];
|
81
|
+
char addr[ADDRLEN];
|
82
|
+
};
|
83
|
+
|
84
|
+
static struct option longopts[] =
|
85
|
+
{
|
86
|
+
{"address" , 1, NULL, 'a'},
|
87
|
+
{"busy" , 0, NULL, 'b'},
|
88
|
+
{"help" , 0, NULL, 'h'},
|
89
|
+
{"num_pings", 1, NULL, 'n'},
|
90
|
+
{"port" , 1, NULL, 'p'},
|
91
|
+
{"prefer" , 1, NULL, 'u'},
|
92
|
+
{"sqpoll" , 0, NULL, 's'},
|
93
|
+
{"timeout" , 1, NULL, 't'},
|
94
|
+
{NULL , 0, NULL, 0 }
|
95
|
+
};
|
96
|
+
|
97
|
+
static void printUsage(const char *name)
|
98
|
+
{
|
99
|
+
fprintf(stderr,
|
100
|
+
"Usage: %s [-l|--listen] [-a|--address ip_address] [-p|--port port-no] [-s|--sqpoll]"
|
101
|
+
" [-b|--busy] [-n|--num pings] [-t|--timeout busy-poll-timeout] [-u||--prefer] [-6] [-h|--help]\n"
|
102
|
+
"--address\n"
|
103
|
+
"-a : remote or local ipv6 address\n"
|
104
|
+
"--busy\n"
|
105
|
+
"-b : busy poll io_uring instead of blocking.\n"
|
106
|
+
"--num_pings\n"
|
107
|
+
"-n : number of pings\n"
|
108
|
+
"--port\n"
|
109
|
+
"-p : port\n"
|
110
|
+
"--sqpoll\n"
|
111
|
+
"-s : Configure io_uring to use SQPOLL thread\n"
|
112
|
+
"--timeout\n"
|
113
|
+
"-t : Configure NAPI busy poll timeout"
|
114
|
+
"--prefer\n"
|
115
|
+
"-u : prefer NAPI busy poll\n"
|
116
|
+
"-6 : use IPV6\n"
|
117
|
+
"--help\n"
|
118
|
+
"-h : Display this usage message\n\n",
|
119
|
+
name);
|
120
|
+
}
|
121
|
+
|
122
|
+
static void printError(const char *msg, int opt)
|
123
|
+
{
|
124
|
+
if (msg && opt)
|
125
|
+
fprintf(stderr, "%s (-%c)\n", msg, printable(opt));
|
126
|
+
}
|
127
|
+
|
128
|
+
static void setProcessScheduler(void)
|
129
|
+
{
|
130
|
+
struct sched_param param;
|
131
|
+
|
132
|
+
param.sched_priority = sched_get_priority_max(SCHED_FIFO);
|
133
|
+
if (sched_setscheduler(0, SCHED_FIFO, ¶m) < 0)
|
134
|
+
fprintf(stderr, "sched_setscheduler() failed: (%d) %s\n",
|
135
|
+
errno, strerror(errno));
|
136
|
+
}
|
137
|
+
|
138
|
+
static double diffTimespec(const struct timespec *time1, const struct timespec *time0)
|
139
|
+
{
|
140
|
+
return (time1->tv_sec - time0->tv_sec)
|
141
|
+
+ (time1->tv_nsec - time0->tv_nsec) / 1000000000.0;
|
142
|
+
}
|
143
|
+
|
144
|
+
static uint64_t encodeUserData(char type, int fd)
|
145
|
+
{
|
146
|
+
return (uint32_t)fd | ((uint64_t)type << 56);
|
147
|
+
}
|
148
|
+
|
149
|
+
static void decodeUserData(uint64_t data, char *type, int *fd)
|
150
|
+
{
|
151
|
+
*type = data >> 56;
|
152
|
+
*fd = data & 0xffffffffU;
|
153
|
+
}
|
154
|
+
|
155
|
+
static const char *opTypeToStr(char type)
|
156
|
+
{
|
157
|
+
const char *res;
|
158
|
+
|
159
|
+
switch (type) {
|
160
|
+
case IOURING_RECV:
|
161
|
+
res = "IOURING_RECV";
|
162
|
+
break;
|
163
|
+
case IOURING_SEND:
|
164
|
+
res = "IOURING_SEND";
|
165
|
+
break;
|
166
|
+
case IOURING_RECVMSG:
|
167
|
+
res = "IOURING_RECVMSG";
|
168
|
+
break;
|
169
|
+
case IOURING_SENDMSG:
|
170
|
+
res = "IOURING_SENDMSG";
|
171
|
+
break;
|
172
|
+
default:
|
173
|
+
res = "Unknown";
|
174
|
+
}
|
175
|
+
|
176
|
+
return res;
|
177
|
+
}
|
178
|
+
|
179
|
+
static void reportNapi(struct ctx *ctx)
|
180
|
+
{
|
181
|
+
unsigned int napi_id = 0;
|
182
|
+
socklen_t len = sizeof(napi_id);
|
183
|
+
|
184
|
+
getsockopt(ctx->sockfd, SOL_SOCKET, SO_INCOMING_NAPI_ID, &napi_id, &len);
|
185
|
+
if (napi_id)
|
186
|
+
printf(" napi id: %d\n", napi_id);
|
187
|
+
else
|
188
|
+
printf(" unassigned napi id\n");
|
189
|
+
|
190
|
+
ctx->napi_check = true;
|
191
|
+
}
|
192
|
+
|
193
|
+
static void sendPing(struct ctx *ctx)
|
194
|
+
{
|
195
|
+
struct io_uring_sqe *sqe = io_uring_get_sqe(&ctx->ring);
|
196
|
+
|
197
|
+
clock_gettime(CLOCK_REALTIME, (struct timespec *)ctx->buffer);
|
198
|
+
io_uring_prep_send(sqe, ctx->sockfd, ctx->buffer, sizeof(struct timespec), 0);
|
199
|
+
sqe->user_data = encodeUserData(IOURING_SEND, ctx->sockfd);
|
200
|
+
}
|
201
|
+
|
202
|
+
static void receivePing(struct ctx *ctx)
|
203
|
+
{
|
204
|
+
struct io_uring_sqe *sqe = io_uring_get_sqe(&ctx->ring);
|
205
|
+
|
206
|
+
io_uring_prep_recv(sqe, ctx->sockfd, ctx->buffer, MAXBUFLEN, 0);
|
207
|
+
sqe->user_data = encodeUserData(IOURING_RECV, ctx->sockfd);
|
208
|
+
}
|
209
|
+
|
210
|
+
static void recordRTT(struct ctx *ctx)
|
211
|
+
{
|
212
|
+
struct timespec startTs = ctx->ts;
|
213
|
+
|
214
|
+
// Send next ping.
|
215
|
+
sendPing(ctx);
|
216
|
+
|
217
|
+
// Store round-trip time.
|
218
|
+
ctx->rtt[ctx->rtt_index] = diffTimespec(&ctx->ts, &startTs);
|
219
|
+
ctx->rtt_index++;
|
220
|
+
}
|
221
|
+
|
222
|
+
static void printStats(struct ctx *ctx)
|
223
|
+
{
|
224
|
+
double minRTT = DBL_MAX;
|
225
|
+
double maxRTT = 0.0;
|
226
|
+
double avgRTT = 0.0;
|
227
|
+
double stddevRTT = 0.0;
|
228
|
+
|
229
|
+
// Calculate min, max, avg.
|
230
|
+
for (int i = 0; i < ctx->rtt_index; i++) {
|
231
|
+
if (ctx->rtt[i] < minRTT)
|
232
|
+
minRTT = ctx->rtt[i];
|
233
|
+
if (ctx->rtt[i] > maxRTT)
|
234
|
+
maxRTT = ctx->rtt[i];
|
235
|
+
|
236
|
+
avgRTT += ctx->rtt[i];
|
237
|
+
}
|
238
|
+
avgRTT /= ctx->rtt_index;
|
239
|
+
|
240
|
+
// Calculate stddev.
|
241
|
+
for (int i = 0; i < ctx->rtt_index; i++)
|
242
|
+
stddevRTT += fabs(ctx->rtt[i] - avgRTT);
|
243
|
+
stddevRTT /= ctx->rtt_index;
|
244
|
+
|
245
|
+
fprintf(stdout, " rtt(us) min/avg/max/mdev = %.3f/%.3f/%.3f/%.3f\n",
|
246
|
+
minRTT * 1000000, avgRTT * 1000000, maxRTT * 1000000, stddevRTT * 1000000);
|
247
|
+
}
|
248
|
+
|
249
|
+
static int completion(struct ctx *ctx, struct io_uring_cqe *cqe)
|
250
|
+
{
|
251
|
+
char type;
|
252
|
+
int fd;
|
253
|
+
int res = cqe->res;
|
254
|
+
|
255
|
+
decodeUserData(cqe->user_data, &type, &fd);
|
256
|
+
if (res < 0) {
|
257
|
+
fprintf(stderr, "unexpected %s failure: (%d) %s\n",
|
258
|
+
opTypeToStr(type), -res, strerror(-res));
|
259
|
+
return -1;
|
260
|
+
}
|
261
|
+
|
262
|
+
switch (type) {
|
263
|
+
case IOURING_SEND:
|
264
|
+
receivePing(ctx);
|
265
|
+
break;
|
266
|
+
case IOURING_RECV:
|
267
|
+
if (res != sizeof(struct timespec)) {
|
268
|
+
fprintf(stderr, "unexpected ping reply len: %d\n", res);
|
269
|
+
abort();
|
270
|
+
}
|
271
|
+
|
272
|
+
if (!ctx->napi_check) {
|
273
|
+
reportNapi(ctx);
|
274
|
+
sendPing(ctx);
|
275
|
+
} else {
|
276
|
+
recordRTT(ctx);
|
277
|
+
}
|
278
|
+
|
279
|
+
--ctx->num_pings;
|
280
|
+
break;
|
281
|
+
|
282
|
+
default:
|
283
|
+
fprintf(stderr, "unexpected %s completion\n",
|
284
|
+
opTypeToStr(type));
|
285
|
+
return -1;
|
286
|
+
break;
|
287
|
+
}
|
288
|
+
|
289
|
+
return 0;
|
290
|
+
}
|
291
|
+
|
292
|
+
int main(int argc, char *argv[])
|
293
|
+
{
|
294
|
+
struct ctx ctx;
|
295
|
+
struct options opt;
|
296
|
+
struct __kernel_timespec *tsPtr;
|
297
|
+
struct __kernel_timespec ts;
|
298
|
+
struct io_uring_params params;
|
299
|
+
struct io_uring_napi napi;
|
300
|
+
int flag, ret, af;
|
301
|
+
|
302
|
+
memset(&opt, 0, sizeof(struct options));
|
303
|
+
|
304
|
+
// Process flags.
|
305
|
+
while ((flag = getopt_long(argc, argv, ":hs:bua:n:p:t:6d:", longopts, NULL)) != -1) {
|
306
|
+
switch (flag) {
|
307
|
+
case 'a':
|
308
|
+
strcpy(opt.addr, optarg);
|
309
|
+
break;
|
310
|
+
case 'b':
|
311
|
+
opt.busy_loop = true;
|
312
|
+
break;
|
313
|
+
case 'h':
|
314
|
+
printUsage(argv[0]);
|
315
|
+
exit(0);
|
316
|
+
break;
|
317
|
+
case 'n':
|
318
|
+
opt.num_pings = atoi(optarg) + 1;
|
319
|
+
break;
|
320
|
+
case 'p':
|
321
|
+
strcpy(opt.port, optarg);
|
322
|
+
break;
|
323
|
+
case 's':
|
324
|
+
opt.sq_poll = !!atoi(optarg);
|
325
|
+
break;
|
326
|
+
case 't':
|
327
|
+
opt.timeout = atoi(optarg);
|
328
|
+
break;
|
329
|
+
case 'u':
|
330
|
+
opt.prefer_busy_poll = true;
|
331
|
+
break;
|
332
|
+
case '6':
|
333
|
+
opt.ipv6 = true;
|
334
|
+
break;
|
335
|
+
case 'd':
|
336
|
+
opt.defer_tw = !!atoi(optarg);
|
337
|
+
break;
|
338
|
+
case ':':
|
339
|
+
printError("Missing argument", optopt);
|
340
|
+
printUsage(argv[0]);
|
341
|
+
exit(-1);
|
342
|
+
break;
|
343
|
+
case '?':
|
344
|
+
printError("Unrecognized option", optopt);
|
345
|
+
printUsage(argv[0]);
|
346
|
+
exit(-1);
|
347
|
+
break;
|
348
|
+
|
349
|
+
default:
|
350
|
+
fprintf(stderr, "Fatal: Unexpected case in CmdLineProcessor switch()\n");
|
351
|
+
exit(-1);
|
352
|
+
break;
|
353
|
+
}
|
354
|
+
}
|
355
|
+
|
356
|
+
if (strlen(opt.addr) == 0) {
|
357
|
+
fprintf(stderr, "address option is mandatory\n");
|
358
|
+
printUsage(argv[0]);
|
359
|
+
exit(1);
|
360
|
+
}
|
361
|
+
|
362
|
+
if (opt.ipv6) {
|
363
|
+
af = AF_INET6;
|
364
|
+
ctx.saddr6.sin6_port = htons(atoi(opt.port));
|
365
|
+
ctx.saddr6.sin6_family = AF_INET6;
|
366
|
+
} else {
|
367
|
+
af = AF_INET;
|
368
|
+
ctx.saddr.sin_port = htons(atoi(opt.port));
|
369
|
+
ctx.saddr.sin_family = AF_INET;
|
370
|
+
}
|
371
|
+
|
372
|
+
if (opt.ipv6)
|
373
|
+
ret = inet_pton(af, opt.addr, &ctx.saddr6.sin6_addr);
|
374
|
+
else
|
375
|
+
ret = inet_pton(af, opt.addr, &ctx.saddr.sin_addr);
|
376
|
+
if (ret <= 0) {
|
377
|
+
fprintf(stderr, "inet_pton error for %s\n", optarg);
|
378
|
+
printUsage(argv[0]);
|
379
|
+
exit(1);
|
380
|
+
}
|
381
|
+
|
382
|
+
// Connect to server.
|
383
|
+
fprintf(stdout, "Connecting to %s... (port=%s) to send %d pings\n", opt.addr, opt.port, opt.num_pings - 1);
|
384
|
+
|
385
|
+
if ((ctx.sockfd = socket(af, SOCK_DGRAM, 0)) < 0) {
|
386
|
+
fprintf(stderr, "socket() failed: (%d) %s\n", errno, strerror(errno));
|
387
|
+
exit(1);
|
388
|
+
}
|
389
|
+
|
390
|
+
if (opt.ipv6)
|
391
|
+
ret = connect(ctx.sockfd, (struct sockaddr *)&ctx.saddr6, sizeof(struct sockaddr_in6));
|
392
|
+
else
|
393
|
+
ret = connect(ctx.sockfd, (struct sockaddr *)&ctx.saddr, sizeof(struct sockaddr_in));
|
394
|
+
if (ret < 0) {
|
395
|
+
fprintf(stderr, "connect() failed: (%d) %s\n", errno, strerror(errno));
|
396
|
+
exit(1);
|
397
|
+
}
|
398
|
+
|
399
|
+
// Setup ring.
|
400
|
+
memset(¶ms, 0, sizeof(params));
|
401
|
+
memset(&ts, 0, sizeof(ts));
|
402
|
+
memset(&napi, 0, sizeof(napi));
|
403
|
+
|
404
|
+
params.flags = IORING_SETUP_SINGLE_ISSUER;
|
405
|
+
if (opt.defer_tw) {
|
406
|
+
params.flags |= IORING_SETUP_DEFER_TASKRUN;
|
407
|
+
} else if (opt.sq_poll) {
|
408
|
+
params.flags = IORING_SETUP_SQPOLL;
|
409
|
+
params.sq_thread_idle = 50;
|
410
|
+
} else {
|
411
|
+
params.flags |= IORING_SETUP_COOP_TASKRUN;
|
412
|
+
}
|
413
|
+
|
414
|
+
ret = io_uring_queue_init_params(RINGSIZE, &ctx.ring, ¶ms);
|
415
|
+
if (ret) {
|
416
|
+
fprintf(stderr, "io_uring_queue_init_params() failed: (%d) %s\n",
|
417
|
+
ret, strerror(-ret));
|
418
|
+
exit(1);
|
419
|
+
}
|
420
|
+
|
421
|
+
if (opt.timeout || opt.prefer_busy_poll) {
|
422
|
+
napi.prefer_busy_poll = opt.prefer_busy_poll;
|
423
|
+
napi.busy_poll_to = opt.timeout;
|
424
|
+
|
425
|
+
ret = io_uring_register_napi(&ctx.ring, &napi);
|
426
|
+
if (ret) {
|
427
|
+
fprintf(stderr, "io_uring_register_napi: %d\n", ret);
|
428
|
+
exit(1);
|
429
|
+
}
|
430
|
+
}
|
431
|
+
|
432
|
+
if (opt.busy_loop)
|
433
|
+
tsPtr = &ts;
|
434
|
+
else
|
435
|
+
tsPtr = NULL;
|
436
|
+
|
437
|
+
// Use realtime scheduler.
|
438
|
+
setProcessScheduler();
|
439
|
+
|
440
|
+
// Copy payload.
|
441
|
+
clock_gettime(CLOCK_REALTIME, &ctx.ts);
|
442
|
+
|
443
|
+
// Setup context.
|
444
|
+
ctx.napi_check = false;
|
445
|
+
ctx.buffer_len = sizeof(struct timespec);
|
446
|
+
ctx.num_pings = opt.num_pings;
|
447
|
+
|
448
|
+
ctx.rtt_index = 0;
|
449
|
+
ctx.rtt = (double *)malloc(sizeof(double) * opt.num_pings);
|
450
|
+
if (!ctx.rtt) {
|
451
|
+
fprintf(stderr, "Cannot allocate results array\n");
|
452
|
+
exit(1);
|
453
|
+
}
|
454
|
+
|
455
|
+
// Send initial message to get napi id.
|
456
|
+
sendPing(&ctx);
|
457
|
+
|
458
|
+
while (ctx.num_pings != 0) {
|
459
|
+
int res;
|
460
|
+
unsigned num_completed = 0;
|
461
|
+
unsigned head;
|
462
|
+
struct io_uring_cqe *cqe;
|
463
|
+
|
464
|
+
do {
|
465
|
+
res = io_uring_submit_and_wait_timeout(&ctx.ring, &cqe, 1, tsPtr, NULL);
|
466
|
+
if (res >= 0)
|
467
|
+
break;
|
468
|
+
else if (res == -ETIME)
|
469
|
+
continue;
|
470
|
+
fprintf(stderr, "submit_and_wait: %d\n", res);
|
471
|
+
exit(1);
|
472
|
+
} while (1);
|
473
|
+
|
474
|
+
io_uring_for_each_cqe(&ctx.ring, head, cqe) {
|
475
|
+
++num_completed;
|
476
|
+
if (completion(&ctx, cqe))
|
477
|
+
goto out;
|
478
|
+
}
|
479
|
+
|
480
|
+
if (num_completed)
|
481
|
+
io_uring_cq_advance(&ctx.ring, num_completed);
|
482
|
+
}
|
483
|
+
|
484
|
+
printStats(&ctx);
|
485
|
+
|
486
|
+
out:
|
487
|
+
// Clean up.
|
488
|
+
if (opt.timeout || opt.prefer_busy_poll) {
|
489
|
+
ret = io_uring_unregister_napi(&ctx.ring, &napi);
|
490
|
+
if (ret)
|
491
|
+
fprintf(stderr, "io_uring_unregister_napi: %d\n", ret);
|
492
|
+
if (opt.timeout != napi.busy_poll_to ||
|
493
|
+
opt.prefer_busy_poll != napi.prefer_busy_poll) {
|
494
|
+
fprintf(stderr, "Expected busy poll to = %d, got %d\n",
|
495
|
+
opt.timeout, napi.busy_poll_to);
|
496
|
+
fprintf(stderr, "Expected prefer busy poll = %d, got %d\n",
|
497
|
+
opt.prefer_busy_poll, napi.prefer_busy_poll);
|
498
|
+
}
|
499
|
+
} else {
|
500
|
+
ret = io_uring_unregister_napi(&ctx.ring, NULL);
|
501
|
+
if (ret)
|
502
|
+
fprintf(stderr, "io_uring_unregister_napi: %d\n", ret);
|
503
|
+
}
|
504
|
+
|
505
|
+
io_uring_queue_exit(&ctx.ring);
|
506
|
+
free(ctx.rtt);
|
507
|
+
close(ctx.sockfd);
|
508
|
+
return 0;
|
509
|
+
}
|