John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2017 Covalent IO, Inc. http://covalent.io |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or |
| 4 | * modify it under the terms of version 2 of the GNU General Public |
| 5 | * License as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, but |
| 8 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 10 | * General Public License for more details. |
| 11 | */ |
| 12 | #include <stdio.h> |
| 13 | #include <stdlib.h> |
| 14 | #include <sys/socket.h> |
| 15 | #include <sys/ioctl.h> |
| 16 | #include <sys/select.h> |
| 17 | #include <netinet/in.h> |
| 18 | #include <arpa/inet.h> |
| 19 | #include <unistd.h> |
| 20 | #include <string.h> |
| 21 | #include <errno.h> |
| 22 | #include <sys/ioctl.h> |
| 23 | #include <stdbool.h> |
| 24 | #include <signal.h> |
| 25 | #include <fcntl.h> |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 26 | #include <sys/wait.h> |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 27 | #include <time.h> |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 28 | |
| 29 | #include <sys/time.h> |
| 30 | #include <sys/types.h> |
| 31 | |
| 32 | #include <linux/netlink.h> |
| 33 | #include <linux/socket.h> |
| 34 | #include <linux/sock_diag.h> |
| 35 | #include <linux/bpf.h> |
| 36 | #include <linux/if_link.h> |
| 37 | #include <assert.h> |
| 38 | #include <libgen.h> |
| 39 | |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 40 | #include <getopt.h> |
| 41 | |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 42 | #include "../bpf/bpf_load.h" |
| 43 | #include "../bpf/bpf_util.h" |
| 44 | #include "../bpf/libbpf.h" |
| 45 | |
| 46 | int running; |
| 47 | void running_handler(int a); |
| 48 | |
| 49 | /* randomly selected ports for testing on lo */ |
| 50 | #define S1_PORT 10000 |
| 51 | #define S2_PORT 10001 |
| 52 | |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 53 | /* global sockets */ |
| 54 | int s1, s2, c1, c2, p1, p2; |
| 55 | |
| 56 | static const struct option long_options[] = { |
| 57 | {"help", no_argument, NULL, 'h' }, |
| 58 | {"cgroup", required_argument, NULL, 'c' }, |
| 59 | {"rate", required_argument, NULL, 'r' }, |
| 60 | {"verbose", no_argument, NULL, 'v' }, |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 61 | {"iov_count", required_argument, NULL, 'i' }, |
| 62 | {"length", required_argument, NULL, 'l' }, |
| 63 | {"test", required_argument, NULL, 't' }, |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 64 | {0, 0, NULL, 0 } |
| 65 | }; |
| 66 | |
| 67 | static void usage(char *argv[]) |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 68 | { |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 69 | int i; |
| 70 | |
| 71 | printf(" Usage: %s --cgroup <cgroup_path>\n", argv[0]); |
| 72 | printf(" options:\n"); |
| 73 | for (i = 0; long_options[i].name != 0; i++) { |
| 74 | printf(" --%-12s", long_options[i].name); |
| 75 | if (long_options[i].flag != NULL) |
| 76 | printf(" flag (internal value:%d)\n", |
| 77 | *long_options[i].flag); |
| 78 | else |
| 79 | printf(" -%c\n", long_options[i].val); |
| 80 | } |
| 81 | printf("\n"); |
| 82 | } |
| 83 | |
| 84 | static int sockmap_init_sockets(void) |
| 85 | { |
| 86 | int i, err, one = 1; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 87 | struct sockaddr_in addr; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 88 | int *fds[4] = {&s1, &s2, &c1, &c2}; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 89 | |
| 90 | s1 = s2 = p1 = p2 = c1 = c2 = 0; |
| 91 | |
| 92 | /* Init sockets */ |
| 93 | for (i = 0; i < 4; i++) { |
| 94 | *fds[i] = socket(AF_INET, SOCK_STREAM, 0); |
| 95 | if (*fds[i] < 0) { |
| 96 | perror("socket s1 failed()"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 97 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | |
| 101 | /* Allow reuse */ |
| 102 | for (i = 0; i < 2; i++) { |
| 103 | err = setsockopt(*fds[i], SOL_SOCKET, SO_REUSEADDR, |
| 104 | (char *)&one, sizeof(one)); |
| 105 | if (err) { |
| 106 | perror("setsockopt failed()"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 107 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 108 | } |
| 109 | } |
| 110 | |
| 111 | /* Non-blocking sockets */ |
| 112 | for (i = 0; i < 4; i++) { |
| 113 | err = ioctl(*fds[i], FIONBIO, (char *)&one); |
| 114 | if (err < 0) { |
| 115 | perror("ioctl s1 failed()"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 116 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 117 | } |
| 118 | } |
| 119 | |
| 120 | /* Bind server sockets */ |
| 121 | memset(&addr, 0, sizeof(struct sockaddr_in)); |
| 122 | addr.sin_family = AF_INET; |
| 123 | addr.sin_addr.s_addr = inet_addr("127.0.0.1"); |
| 124 | |
| 125 | addr.sin_port = htons(S1_PORT); |
| 126 | err = bind(s1, (struct sockaddr *)&addr, sizeof(addr)); |
| 127 | if (err < 0) { |
| 128 | perror("bind s1 failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 129 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | addr.sin_port = htons(S2_PORT); |
| 133 | err = bind(s2, (struct sockaddr *)&addr, sizeof(addr)); |
| 134 | if (err < 0) { |
| 135 | perror("bind s2 failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 136 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | /* Listen server sockets */ |
| 140 | addr.sin_port = htons(S1_PORT); |
| 141 | err = listen(s1, 32); |
| 142 | if (err < 0) { |
| 143 | perror("listen s1 failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 144 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | addr.sin_port = htons(S2_PORT); |
| 148 | err = listen(s2, 32); |
| 149 | if (err < 0) { |
| 150 | perror("listen s1 failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 151 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | /* Initiate Connect */ |
| 155 | addr.sin_port = htons(S1_PORT); |
| 156 | err = connect(c1, (struct sockaddr *)&addr, sizeof(addr)); |
| 157 | if (err < 0 && errno != EINPROGRESS) { |
| 158 | perror("connect c1 failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 159 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | addr.sin_port = htons(S2_PORT); |
| 163 | err = connect(c2, (struct sockaddr *)&addr, sizeof(addr)); |
| 164 | if (err < 0 && errno != EINPROGRESS) { |
| 165 | perror("connect c2 failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 166 | return errno; |
| 167 | } else if (err < 0) { |
| 168 | err = 0; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | /* Accept Connecrtions */ |
| 172 | p1 = accept(s1, NULL, NULL); |
| 173 | if (p1 < 0) { |
| 174 | perror("accept s1 failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 175 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | p2 = accept(s2, NULL, NULL); |
| 179 | if (p2 < 0) { |
| 180 | perror("accept s1 failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 181 | return errno; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 182 | } |
| 183 | |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 184 | printf("connected sockets: c1 <-> p1, c2 <-> p2\n"); |
| 185 | printf("cgroups binding: c1(%i) <-> s1(%i) - - - c2(%i) <-> s2(%i)\n", |
| 186 | c1, s1, c2, s2); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 187 | return 0; |
| 188 | } |
| 189 | |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 190 | struct msg_stats { |
| 191 | size_t bytes_sent; |
| 192 | size_t bytes_recvd; |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 193 | struct timespec start; |
| 194 | struct timespec end; |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 195 | }; |
| 196 | |
| 197 | static int msg_loop(int fd, int iov_count, int iov_length, int cnt, |
| 198 | struct msg_stats *s, bool tx) |
| 199 | { |
| 200 | struct msghdr msg = {0}; |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 201 | int err, i, flags = MSG_NOSIGNAL; |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 202 | struct iovec *iov; |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 203 | |
| 204 | iov = calloc(iov_count, sizeof(struct iovec)); |
| 205 | if (!iov) |
| 206 | return errno; |
| 207 | |
| 208 | for (i = 0; i < iov_count; i++) { |
| 209 | char *d = calloc(iov_length, sizeof(char)); |
| 210 | |
| 211 | if (!d) { |
| 212 | fprintf(stderr, "iov_count %i/%i OOM\n", i, iov_count); |
| 213 | goto out_errno; |
| 214 | } |
| 215 | iov[i].iov_base = d; |
| 216 | iov[i].iov_len = iov_length; |
| 217 | } |
| 218 | |
| 219 | msg.msg_iov = iov; |
| 220 | msg.msg_iovlen = iov_count; |
| 221 | |
| 222 | if (tx) { |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 223 | clock_gettime(CLOCK_MONOTONIC, &s->start); |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 224 | for (i = 0; i < cnt; i++) { |
| 225 | int sent = sendmsg(fd, &msg, flags); |
| 226 | |
| 227 | if (sent < 0) { |
| 228 | perror("send loop error:"); |
| 229 | goto out_errno; |
| 230 | } |
| 231 | s->bytes_sent += sent; |
| 232 | } |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 233 | clock_gettime(CLOCK_MONOTONIC, &s->end); |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 234 | } else { |
| 235 | int slct, recv, max_fd = fd; |
| 236 | struct timeval timeout; |
| 237 | float total_bytes; |
| 238 | fd_set w; |
| 239 | |
| 240 | total_bytes = (float)iov_count * (float)iov_length * (float)cnt; |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 241 | err = clock_gettime(CLOCK_MONOTONIC, &s->start); |
| 242 | if (err < 0) |
| 243 | perror("recv start time: "); |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 244 | while (s->bytes_recvd < total_bytes) { |
| 245 | timeout.tv_sec = 1; |
| 246 | timeout.tv_usec = 0; |
| 247 | |
| 248 | /* FD sets */ |
| 249 | FD_ZERO(&w); |
| 250 | FD_SET(fd, &w); |
| 251 | |
| 252 | slct = select(max_fd + 1, &w, NULL, NULL, &timeout); |
| 253 | if (slct == -1) { |
| 254 | perror("select()"); |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 255 | clock_gettime(CLOCK_MONOTONIC, &s->end); |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 256 | goto out_errno; |
| 257 | } else if (!slct) { |
| 258 | fprintf(stderr, "unexpected timeout\n"); |
| 259 | errno = -EIO; |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 260 | clock_gettime(CLOCK_MONOTONIC, &s->end); |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 261 | goto out_errno; |
| 262 | } |
| 263 | |
| 264 | recv = recvmsg(fd, &msg, flags); |
| 265 | if (recv < 0) { |
| 266 | if (errno != EWOULDBLOCK) { |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 267 | clock_gettime(CLOCK_MONOTONIC, &s->end); |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 268 | perror("recv failed()\n"); |
| 269 | goto out_errno; |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | s->bytes_recvd += recv; |
| 274 | } |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 275 | clock_gettime(CLOCK_MONOTONIC, &s->end); |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | for (i = 0; i < iov_count; i++) |
| 279 | free(iov[i].iov_base); |
| 280 | free(iov); |
| 281 | return 0; |
| 282 | out_errno: |
| 283 | for (i = 0; i < iov_count; i++) |
| 284 | free(iov[i].iov_base); |
| 285 | free(iov); |
| 286 | return errno; |
| 287 | } |
| 288 | |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 289 | static float giga = 1000000000; |
| 290 | |
| 291 | static inline float sentBps(struct msg_stats s) |
| 292 | { |
| 293 | return s.bytes_sent / (s.end.tv_sec - s.start.tv_sec); |
| 294 | } |
| 295 | |
| 296 | static inline float recvdBps(struct msg_stats s) |
| 297 | { |
| 298 | return s.bytes_recvd / (s.end.tv_sec - s.start.tv_sec); |
| 299 | } |
| 300 | |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 301 | static int sendmsg_test(int iov_count, int iov_buf, int cnt, int verbose) |
| 302 | { |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 303 | int txpid, rxpid, err = 0; |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 304 | struct msg_stats s = {0}; |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 305 | int status; |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 306 | float sent_Bps = 0, recvd_Bps = 0; |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 307 | |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 308 | errno = 0; |
| 309 | |
| 310 | rxpid = fork(); |
| 311 | if (rxpid == 0) { |
| 312 | err = msg_loop(p2, iov_count, iov_buf, cnt, &s, false); |
| 313 | if (err) |
| 314 | fprintf(stderr, |
| 315 | "msg_loop_rx: iov_count %i iov_buf %i cnt %i err %i\n", |
| 316 | iov_count, iov_buf, cnt, err); |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 317 | shutdown(p2, SHUT_RDWR); |
| 318 | shutdown(p1, SHUT_RDWR); |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 319 | if (s.end.tv_sec - s.start.tv_sec) { |
| 320 | sent_Bps = sentBps(s); |
| 321 | recvd_Bps = recvdBps(s); |
| 322 | } |
| 323 | fprintf(stdout, |
| 324 | "rx_sendmsg: TX: %zuB %fB/s %fGB/s RX: %zuB %fB/s %fGB/s\n", |
| 325 | s.bytes_sent, sent_Bps, sent_Bps/giga, |
| 326 | s.bytes_recvd, recvd_Bps, recvd_Bps/giga); |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 327 | exit(1); |
| 328 | } else if (rxpid == -1) { |
| 329 | perror("msg_loop_rx: "); |
| 330 | return errno; |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 331 | } |
| 332 | |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 333 | txpid = fork(); |
| 334 | if (txpid == 0) { |
| 335 | err = msg_loop(c1, iov_count, iov_buf, cnt, &s, true); |
| 336 | if (err) |
| 337 | fprintf(stderr, |
| 338 | "msg_loop_tx: iov_count %i iov_buf %i cnt %i err %i\n", |
| 339 | iov_count, iov_buf, cnt, err); |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 340 | shutdown(c1, SHUT_RDWR); |
John Fastabend | 66fdd1a | 2018-01-22 10:36:19 -0800 | [diff] [blame^] | 341 | if (s.end.tv_sec - s.start.tv_sec) { |
| 342 | sent_Bps = sentBps(s); |
| 343 | recvd_Bps = recvdBps(s); |
| 344 | } |
| 345 | fprintf(stdout, |
| 346 | "tx_sendmsg: TX: %zuB %fB/s %f GB/s RX: %zuB %fB/s %fGB/s\n", |
| 347 | s.bytes_sent, sent_Bps, sent_Bps/giga, |
| 348 | s.bytes_recvd, recvd_Bps, recvd_Bps/giga); |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 349 | exit(1); |
| 350 | } else if (txpid == -1) { |
| 351 | perror("msg_loop_tx: "); |
| 352 | return errno; |
| 353 | } |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 354 | |
John Fastabend | d7d6437 | 2018-01-22 10:36:02 -0800 | [diff] [blame] | 355 | assert(waitpid(rxpid, &status, 0) == rxpid); |
| 356 | assert(waitpid(txpid, &status, 0) == txpid); |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 357 | return err; |
| 358 | } |
| 359 | |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 360 | static int forever_ping_pong(int rate, int verbose) |
| 361 | { |
| 362 | struct timeval timeout; |
| 363 | char buf[1024] = {0}; |
| 364 | int sc; |
| 365 | |
| 366 | timeout.tv_sec = 10; |
| 367 | timeout.tv_usec = 0; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 368 | |
| 369 | /* Ping/Pong data from client to server */ |
| 370 | sc = send(c1, buf, sizeof(buf), 0); |
| 371 | if (sc < 0) { |
| 372 | perror("send failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 373 | return sc; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | do { |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 377 | int s, rc, i, max_fd = p2; |
| 378 | fd_set w; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 379 | |
| 380 | /* FD sets */ |
| 381 | FD_ZERO(&w); |
| 382 | FD_SET(c1, &w); |
| 383 | FD_SET(c2, &w); |
| 384 | FD_SET(p1, &w); |
| 385 | FD_SET(p2, &w); |
| 386 | |
| 387 | s = select(max_fd + 1, &w, NULL, NULL, &timeout); |
| 388 | if (s == -1) { |
| 389 | perror("select()"); |
| 390 | break; |
| 391 | } else if (!s) { |
| 392 | fprintf(stderr, "unexpected timeout\n"); |
| 393 | break; |
| 394 | } |
| 395 | |
| 396 | for (i = 0; i <= max_fd && s > 0; ++i) { |
| 397 | if (!FD_ISSET(i, &w)) |
| 398 | continue; |
| 399 | |
| 400 | s--; |
| 401 | |
| 402 | rc = recv(i, buf, sizeof(buf), 0); |
| 403 | if (rc < 0) { |
| 404 | if (errno != EWOULDBLOCK) { |
| 405 | perror("recv failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 406 | return rc; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 407 | } |
| 408 | } |
| 409 | |
| 410 | if (rc == 0) { |
| 411 | close(i); |
| 412 | break; |
| 413 | } |
| 414 | |
| 415 | sc = send(i, buf, rc, 0); |
| 416 | if (sc < 0) { |
| 417 | perror("send failed()\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 418 | return sc; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 419 | } |
| 420 | } |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 421 | |
| 422 | if (rate) |
| 423 | sleep(rate); |
| 424 | |
| 425 | if (verbose) { |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 426 | printf("."); |
| 427 | fflush(stdout); |
| 428 | |
| 429 | } |
| 430 | } while (running); |
| 431 | |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 432 | return 0; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 433 | } |
| 434 | |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 435 | enum { |
| 436 | PING_PONG, |
| 437 | SENDMSG, |
| 438 | }; |
| 439 | |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 440 | int main(int argc, char **argv) |
| 441 | { |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 442 | int iov_count = 1, length = 1024, rate = 1, verbose = 0; |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 443 | int opt, longindex, err, cg_fd = 0; |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 444 | int test = PING_PONG; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 445 | char filename[256]; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 446 | |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 447 | while ((opt = getopt_long(argc, argv, "hvc:r:i:l:t:", |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 448 | long_options, &longindex)) != -1) { |
| 449 | switch (opt) { |
| 450 | /* Cgroup configuration */ |
| 451 | case 'c': |
| 452 | cg_fd = open(optarg, O_DIRECTORY, O_RDONLY); |
| 453 | if (cg_fd < 0) { |
| 454 | fprintf(stderr, |
| 455 | "ERROR: (%i) open cg path failed: %s\n", |
| 456 | cg_fd, optarg); |
| 457 | return cg_fd; |
| 458 | } |
| 459 | break; |
| 460 | case 'r': |
| 461 | rate = atoi(optarg); |
| 462 | break; |
| 463 | case 'v': |
| 464 | verbose = 1; |
| 465 | break; |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 466 | case 'i': |
| 467 | iov_count = atoi(optarg); |
| 468 | break; |
| 469 | case 'l': |
| 470 | length = atoi(optarg); |
| 471 | break; |
| 472 | case 't': |
| 473 | if (strcmp(optarg, "ping") == 0) { |
| 474 | test = PING_PONG; |
| 475 | } else if (strcmp(optarg, "sendmsg") == 0) { |
| 476 | test = SENDMSG; |
| 477 | } else { |
| 478 | usage(argv); |
| 479 | return -1; |
| 480 | } |
| 481 | break; |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 482 | case 'h': |
| 483 | default: |
| 484 | usage(argv); |
| 485 | return -1; |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | if (!cg_fd) { |
| 490 | fprintf(stderr, "%s requires cgroup option: --cgroup <path>\n", |
| 491 | argv[0]); |
| 492 | return -1; |
| 493 | } |
| 494 | |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 495 | snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]); |
| 496 | |
| 497 | running = 1; |
| 498 | |
| 499 | /* catch SIGINT */ |
| 500 | signal(SIGINT, running_handler); |
| 501 | |
| 502 | if (load_bpf_file(filename)) { |
| 503 | fprintf(stderr, "load_bpf_file: (%s) %s\n", |
| 504 | filename, strerror(errno)); |
| 505 | return 1; |
| 506 | } |
| 507 | |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 508 | /* Attach programs to sockmap */ |
John Fastabend | 464bc0f | 2017-08-28 07:10:04 -0700 | [diff] [blame] | 509 | err = bpf_prog_attach(prog_fd[0], map_fd[0], |
| 510 | BPF_SK_SKB_STREAM_PARSER, 0); |
| 511 | if (err) { |
| 512 | fprintf(stderr, "ERROR: bpf_prog_attach (sockmap): %d (%s)\n", |
| 513 | err, strerror(errno)); |
| 514 | return err; |
| 515 | } |
| 516 | |
| 517 | err = bpf_prog_attach(prog_fd[1], map_fd[0], |
| 518 | BPF_SK_SKB_STREAM_VERDICT, 0); |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 519 | if (err) { |
| 520 | fprintf(stderr, "ERROR: bpf_prog_attach (sockmap): %d (%s)\n", |
| 521 | err, strerror(errno)); |
| 522 | return err; |
| 523 | } |
| 524 | |
| 525 | /* Attach to cgroups */ |
| 526 | err = bpf_prog_attach(prog_fd[2], cg_fd, BPF_CGROUP_SOCK_OPS, 0); |
| 527 | if (err) { |
| 528 | fprintf(stderr, "ERROR: bpf_prog_attach (groups): %d (%s)\n", |
| 529 | err, strerror(errno)); |
| 530 | return err; |
| 531 | } |
| 532 | |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 533 | err = sockmap_init_sockets(); |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 534 | if (err) { |
| 535 | fprintf(stderr, "ERROR: test socket failed: %d\n", err); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 536 | goto out; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 537 | } |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 538 | |
John Fastabend | eaf8c6e | 2018-01-22 10:35:45 -0800 | [diff] [blame] | 539 | if (test == PING_PONG) |
| 540 | err = forever_ping_pong(rate, verbose); |
| 541 | else if (test == SENDMSG) |
| 542 | err = sendmsg_test(iov_count, length, rate, verbose); |
| 543 | else |
| 544 | fprintf(stderr, "unknown test\n"); |
John Fastabend | 6627426f | 2018-01-22 10:35:27 -0800 | [diff] [blame] | 545 | out: |
| 546 | close(s1); |
| 547 | close(s2); |
| 548 | close(p1); |
| 549 | close(p2); |
| 550 | close(c1); |
| 551 | close(c2); |
| 552 | close(cg_fd); |
| 553 | return err; |
John Fastabend | 69e8cc1 | 2017-08-15 22:33:32 -0700 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | void running_handler(int a) |
| 557 | { |
| 558 | running = 0; |
| 559 | } |