Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | // SPDX-License-Identifier: GPL-2.0 #define _GNU_SOURCE #include <assert.h> #include <errno.h> #include <fcntl.h> #include <limits.h> #include <string.h> #include <stdarg.h> #include <stdbool.h> #include <stdint.h> #include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <strings.h> #include <time.h> #include <unistd.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/wait.h> #include <netdb.h> #include <netinet/in.h> #include <linux/tcp.h> static int pf = AF_INET; #ifndef IPPROTO_MPTCP #define IPPROTO_MPTCP 262 #endif #ifndef SOL_MPTCP #define SOL_MPTCP 284 #endif #ifndef MPTCP_INFO struct mptcp_info { __u8 mptcpi_subflows; __u8 mptcpi_add_addr_signal; __u8 mptcpi_add_addr_accepted; __u8 mptcpi_subflows_max; __u8 mptcpi_add_addr_signal_max; __u8 mptcpi_add_addr_accepted_max; __u32 mptcpi_flags; __u32 mptcpi_token; __u64 mptcpi_write_seq; __u64 mptcpi_snd_una; __u64 mptcpi_rcv_nxt; __u8 mptcpi_local_addr_used; __u8 mptcpi_local_addr_max; __u8 mptcpi_csum_enabled; }; struct mptcp_subflow_data { __u32 size_subflow_data; /* size of this structure in userspace */ __u32 num_subflows; /* must be 0, set by kernel */ __u32 size_kernel; /* must be 0, set by kernel */ __u32 size_user; /* size of one element in data[] */ } __attribute__((aligned(8))); struct mptcp_subflow_addrs { union { __kernel_sa_family_t sa_family; struct sockaddr sa_local; struct sockaddr_in sin_local; struct sockaddr_in6 sin6_local; struct __kernel_sockaddr_storage ss_local; }; union { struct sockaddr sa_remote; struct sockaddr_in sin_remote; struct sockaddr_in6 sin6_remote; struct __kernel_sockaddr_storage ss_remote; }; }; #define MPTCP_INFO 1 #define MPTCP_TCPINFO 2 #define MPTCP_SUBFLOW_ADDRS 3 #endif struct so_state { struct mptcp_info mi; uint64_t mptcpi_rcv_delta; uint64_t tcpi_rcv_delta; }; #ifndef MIN #define MIN(a, b) ((a) < (b) ? (a) : (b)) #endif static void die_perror(const char *msg) { perror(msg); exit(1); } static void die_usage(int r) { fprintf(stderr, "Usage: mptcp_sockopt [-6]\n"); exit(r); } static void xerror(const char *fmt, ...) { va_list ap; va_start(ap, fmt); vfprintf(stderr, fmt, ap); va_end(ap); fputc('\n', stderr); exit(1); } static const char *getxinfo_strerr(int err) { if (err == EAI_SYSTEM) return strerror(errno); return gai_strerror(err); } static void xgetaddrinfo(const char *node, const char *service, const struct addrinfo *hints, struct addrinfo **res) { int err = getaddrinfo(node, service, hints, res); if (err) { const char *errstr = getxinfo_strerr(err); fprintf(stderr, "Fatal: getaddrinfo(%s:%s): %s\n", node ? node : "", service ? service : "", errstr); exit(1); } } static int sock_listen_mptcp(const char * const listenaddr, const char * const port) { int sock = -1; struct addrinfo hints = { .ai_protocol = IPPROTO_TCP, .ai_socktype = SOCK_STREAM, .ai_flags = AI_PASSIVE | AI_NUMERICHOST }; hints.ai_family = pf; struct addrinfo *a, *addr; int one = 1; xgetaddrinfo(listenaddr, port, &hints, &addr); hints.ai_family = pf; for (a = addr; a; a = a->ai_next) { sock = socket(a->ai_family, a->ai_socktype, IPPROTO_MPTCP); if (sock < 0) continue; if (-1 == setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one))) perror("setsockopt"); if (bind(sock, a->ai_addr, a->ai_addrlen) == 0) break; /* success */ perror("bind"); close(sock); sock = -1; } freeaddrinfo(addr); if (sock < 0) xerror("could not create listen socket"); if (listen(sock, 20)) die_perror("listen"); return sock; } static int sock_connect_mptcp(const char * const remoteaddr, const char * const port, int proto) { struct addrinfo hints = { .ai_protocol = IPPROTO_TCP, .ai_socktype = SOCK_STREAM, }; struct addrinfo *a, *addr; int sock = -1; hints.ai_family = pf; xgetaddrinfo(remoteaddr, port, &hints, &addr); for (a = addr; a; a = a->ai_next) { sock = socket(a->ai_family, a->ai_socktype, proto); if (sock < 0) continue; if (connect(sock, a->ai_addr, a->ai_addrlen) == 0) break; /* success */ die_perror("connect"); } if (sock < 0) xerror("could not create connect socket"); freeaddrinfo(addr); return sock; } static void parse_opts(int argc, char **argv) { int c; while ((c = getopt(argc, argv, "h6")) != -1) { switch (c) { case 'h': die_usage(0); break; case '6': pf = AF_INET6; break; default: die_usage(1); break; } } } static void do_getsockopt_bogus_sf_data(int fd, int optname) { struct mptcp_subflow_data good_data; struct bogus_data { struct mptcp_subflow_data d; char buf[2]; } bd; socklen_t olen, _olen; int ret; memset(&bd, 0, sizeof(bd)); memset(&good_data, 0, sizeof(good_data)); olen = sizeof(good_data); good_data.size_subflow_data = olen; ret = getsockopt(fd, SOL_MPTCP, optname, &bd, &olen); assert(ret < 0); /* 0 size_subflow_data */ assert(olen == sizeof(good_data)); bd.d = good_data; ret = getsockopt(fd, SOL_MPTCP, optname, &bd, &olen); assert(ret == 0); assert(olen == sizeof(good_data)); assert(bd.d.num_subflows == 1); assert(bd.d.size_kernel > 0); assert(bd.d.size_user == 0); bd.d = good_data; _olen = rand() % olen; olen = _olen; ret = getsockopt(fd, SOL_MPTCP, optname, &bd, &olen); assert(ret < 0); /* bogus olen */ assert(olen == _olen); /* must be unchanged */ bd.d = good_data; olen = sizeof(good_data); bd.d.size_kernel = 1; ret = getsockopt(fd, SOL_MPTCP, optname, &bd, &olen); assert(ret < 0); /* size_kernel not 0 */ bd.d = good_data; olen = sizeof(good_data); bd.d.num_subflows = 1; ret = getsockopt(fd, SOL_MPTCP, optname, &bd, &olen); assert(ret < 0); /* num_subflows not 0 */ /* forward compat check: larger struct mptcp_subflow_data on 'old' kernel */ bd.d = good_data; olen = sizeof(bd); bd.d.size_subflow_data = sizeof(bd); ret = getsockopt(fd, SOL_MPTCP, optname, &bd, &olen); assert(ret == 0); /* olen must be truncated to real data size filled by kernel: */ assert(olen == sizeof(good_data)); assert(bd.d.size_subflow_data == sizeof(bd)); bd.d = good_data; bd.d.size_subflow_data += 1; bd.d.size_user = 1; olen = bd.d.size_subflow_data + 1; _olen = olen; ret = getsockopt(fd, SOL_MPTCP, optname, &bd, &_olen); assert(ret == 0); /* no truncation, kernel should have filled 1 byte of optname payload in buf[1]: */ assert(olen == _olen); assert(bd.d.size_subflow_data == sizeof(good_data) + 1); assert(bd.buf[0] == 0); } static void do_getsockopt_mptcp_info(struct so_state *s, int fd, size_t w) { struct mptcp_info i; socklen_t olen; int ret; olen = sizeof(i); ret = getsockopt(fd, SOL_MPTCP, MPTCP_INFO, &i, &olen); if (ret < 0) die_perror("getsockopt MPTCP_INFO"); assert(olen == sizeof(i)); if (s->mi.mptcpi_write_seq == 0) s->mi = i; assert(s->mi.mptcpi_write_seq + w == i.mptcpi_write_seq); s->mptcpi_rcv_delta = i.mptcpi_rcv_nxt - s->mi.mptcpi_rcv_nxt; } static void do_getsockopt_tcp_info(struct so_state *s, int fd, size_t r, size_t w) { struct my_tcp_info { struct mptcp_subflow_data d; struct tcp_info ti[2]; } ti; int ret, tries = 5; socklen_t olen; do { memset(&ti, 0, sizeof(ti)); ti.d.size_subflow_data = sizeof(struct mptcp_subflow_data); ti.d.size_user = sizeof(struct tcp_info); olen = sizeof(ti); ret = getsockopt(fd, SOL_MPTCP, MPTCP_TCPINFO, &ti, &olen); if (ret < 0) xerror("getsockopt MPTCP_TCPINFO (tries %d, %m)"); assert(olen <= sizeof(ti)); assert(ti.d.size_kernel > 0); assert(ti.d.size_user == MIN(ti.d.size_kernel, sizeof(struct tcp_info))); assert(ti.d.num_subflows == 1); assert(olen > (socklen_t)sizeof(struct mptcp_subflow_data)); olen -= sizeof(struct mptcp_subflow_data); assert(olen == ti.d.size_user); if (ti.ti[0].tcpi_bytes_sent == w && ti.ti[0].tcpi_bytes_received == r) goto done; if (r == 0 && ti.ti[0].tcpi_bytes_sent == w && ti.ti[0].tcpi_bytes_received) { s->tcpi_rcv_delta = ti.ti[0].tcpi_bytes_received; goto done; } /* wait and repeat, might be that tx is still ongoing */ sleep(1); } while (tries-- > 0); xerror("tcpi_bytes_sent %" PRIu64 ", want %zu. tcpi_bytes_received %" PRIu64 ", want %zu", ti.ti[0].tcpi_bytes_sent, w, ti.ti[0].tcpi_bytes_received, r); done: do_getsockopt_bogus_sf_data(fd, MPTCP_TCPINFO); } static void do_getsockopt_subflow_addrs(int fd) { struct sockaddr_storage remote, local; socklen_t olen, rlen, llen; int ret; struct my_addrs { struct mptcp_subflow_data d; struct mptcp_subflow_addrs addr[2]; } addrs; memset(&addrs, 0, sizeof(addrs)); memset(&local, 0, sizeof(local)); memset(&remote, 0, sizeof(remote)); addrs.d.size_subflow_data = sizeof(struct mptcp_subflow_data); addrs.d.size_user = sizeof(struct mptcp_subflow_addrs); olen = sizeof(addrs); ret = getsockopt(fd, SOL_MPTCP, MPTCP_SUBFLOW_ADDRS, &addrs, &olen); if (ret < 0) die_perror("getsockopt MPTCP_SUBFLOW_ADDRS"); assert(olen <= sizeof(addrs)); assert(addrs.d.size_kernel > 0); assert(addrs.d.size_user == MIN(addrs.d.size_kernel, sizeof(struct mptcp_subflow_addrs))); assert(addrs.d.num_subflows == 1); assert(olen > (socklen_t)sizeof(struct mptcp_subflow_data)); olen -= sizeof(struct mptcp_subflow_data); assert(olen == addrs.d.size_user); llen = sizeof(local); ret = getsockname(fd, (struct sockaddr *)&local, &llen); if (ret < 0) die_perror("getsockname"); rlen = sizeof(remote); ret = getpeername(fd, (struct sockaddr *)&remote, &rlen); if (ret < 0) die_perror("getpeername"); assert(rlen > 0); assert(rlen == llen); assert(remote.ss_family == local.ss_family); assert(memcmp(&local, &addrs.addr[0].ss_local, sizeof(local)) == 0); assert(memcmp(&remote, &addrs.addr[0].ss_remote, sizeof(remote)) == 0); memset(&addrs, 0, sizeof(addrs)); addrs.d.size_subflow_data = sizeof(struct mptcp_subflow_data); addrs.d.size_user = sizeof(sa_family_t); olen = sizeof(addrs.d) + sizeof(sa_family_t); ret = getsockopt(fd, SOL_MPTCP, MPTCP_SUBFLOW_ADDRS, &addrs, &olen); assert(ret == 0); assert(olen == sizeof(addrs.d) + sizeof(sa_family_t)); assert(addrs.addr[0].sa_family == pf); assert(addrs.addr[0].sa_family == local.ss_family); assert(memcmp(&local, &addrs.addr[0].ss_local, sizeof(local)) != 0); assert(memcmp(&remote, &addrs.addr[0].ss_remote, sizeof(remote)) != 0); do_getsockopt_bogus_sf_data(fd, MPTCP_SUBFLOW_ADDRS); } static void do_getsockopts(struct so_state *s, int fd, size_t r, size_t w) { do_getsockopt_mptcp_info(s, fd, w); do_getsockopt_tcp_info(s, fd, r, w); do_getsockopt_subflow_addrs(fd); } static void connect_one_server(int fd, int pipefd) { char buf[4096], buf2[4096]; size_t len, i, total; struct so_state s; bool eof = false; ssize_t ret; memset(&s, 0, sizeof(s)); len = rand() % (sizeof(buf) - 1); if (len < 128) len = 128; for (i = 0; i < len ; i++) { buf[i] = rand() % 26; buf[i] += 'A'; } buf[i] = '\n'; do_getsockopts(&s, fd, 0, 0); /* un-block server */ ret = read(pipefd, buf2, 4); assert(ret == 4); close(pipefd); assert(strncmp(buf2, "xmit", 4) == 0); ret = write(fd, buf, len); if (ret < 0) die_perror("write"); if (ret != (ssize_t)len) xerror("short write"); total = 0; do { ret = read(fd, buf2 + total, sizeof(buf2) - total); if (ret < 0) die_perror("read"); if (ret == 0) { eof = true; break; } total += ret; } while (total < len); if (total != len) xerror("total %lu, len %lu eof %d\n", total, len, eof); if (memcmp(buf, buf2, len)) xerror("data corruption"); if (s.tcpi_rcv_delta) assert(s.tcpi_rcv_delta <= total); do_getsockopts(&s, fd, ret, ret); if (eof) total += 1; /* sequence advances due to FIN */ assert(s.mptcpi_rcv_delta == (uint64_t)total); close(fd); } static void process_one_client(int fd, int pipefd) { ssize_t ret, ret2, ret3; struct so_state s; char buf[4096]; memset(&s, 0, sizeof(s)); do_getsockopts(&s, fd, 0, 0); ret = write(pipefd, "xmit", 4); assert(ret == 4); ret = read(fd, buf, sizeof(buf)); if (ret < 0) die_perror("read"); assert(s.mptcpi_rcv_delta <= (uint64_t)ret); if (s.tcpi_rcv_delta) assert(s.tcpi_rcv_delta == (uint64_t)ret); ret2 = write(fd, buf, ret); if (ret2 < 0) die_perror("write"); /* wait for hangup */ ret3 = read(fd, buf, 1); if (ret3 != 0) xerror("expected EOF, got %lu", ret3); do_getsockopts(&s, fd, ret, ret2); if (s.mptcpi_rcv_delta != (uint64_t)ret + 1) xerror("mptcpi_rcv_delta %" PRIu64 ", expect %" PRIu64, s.mptcpi_rcv_delta, ret + 1, s.mptcpi_rcv_delta - ret); close(fd); } static int xaccept(int s) { int fd = accept(s, NULL, 0); if (fd < 0) die_perror("accept"); return fd; } static int server(int pipefd) { int fd = -1, r; switch (pf) { case AF_INET: fd = sock_listen_mptcp("127.0.0.1", "15432"); break; case AF_INET6: fd = sock_listen_mptcp("::1", "15432"); break; default: xerror("Unknown pf %d\n", pf); break; } r = write(pipefd, "conn", 4); assert(r == 4); alarm(15); r = xaccept(fd); process_one_client(r, pipefd); return 0; } static void test_ip_tos_sockopt(int fd) { uint8_t tos_in, tos_out; socklen_t s; int r; tos_in = rand() & 0xfc; r = setsockopt(fd, SOL_IP, IP_TOS, &tos_in, sizeof(tos_out)); if (r != 0) die_perror("setsockopt IP_TOS"); tos_out = 0; s = sizeof(tos_out); r = getsockopt(fd, SOL_IP, IP_TOS, &tos_out, &s); if (r != 0) die_perror("getsockopt IP_TOS"); if (tos_in != tos_out) xerror("tos %x != %x socklen_t %d\n", tos_in, tos_out, s); if (s != 1) xerror("tos should be 1 byte"); s = 0; r = getsockopt(fd, SOL_IP, IP_TOS, &tos_out, &s); if (r != 0) die_perror("getsockopt IP_TOS 0"); if (s != 0) xerror("expect socklen_t == 0"); s = -1; r = getsockopt(fd, SOL_IP, IP_TOS, &tos_out, &s); if (r != -1 && errno != EINVAL) die_perror("getsockopt IP_TOS did not indicate -EINVAL"); if (s != -1) xerror("expect socklen_t == -1"); } static int client(int pipefd) { int fd = -1; alarm(15); switch (pf) { case AF_INET: fd = sock_connect_mptcp("127.0.0.1", "15432", IPPROTO_MPTCP); break; case AF_INET6: fd = sock_connect_mptcp("::1", "15432", IPPROTO_MPTCP); break; default: xerror("Unknown pf %d\n", pf); } test_ip_tos_sockopt(fd); connect_one_server(fd, pipefd); return 0; } static pid_t xfork(void) { pid_t p = fork(); if (p < 0) die_perror("fork"); return p; } static int rcheck(int wstatus, const char *what) { if (WIFEXITED(wstatus)) { if (WEXITSTATUS(wstatus) == 0) return 0; fprintf(stderr, "%s exited, status=%d\n", what, WEXITSTATUS(wstatus)); return WEXITSTATUS(wstatus); } else if (WIFSIGNALED(wstatus)) { xerror("%s killed by signal %d\n", what, WTERMSIG(wstatus)); } else if (WIFSTOPPED(wstatus)) { xerror("%s stopped by signal %d\n", what, WSTOPSIG(wstatus)); } return 111; } static void init_rng(void) { int fd = open("/dev/urandom", O_RDONLY); if (fd >= 0) { unsigned int foo; ssize_t ret; /* can't fail */ ret = read(fd, &foo, sizeof(foo)); assert(ret == sizeof(foo)); close(fd); srand(foo); } else { srand(time(NULL)); } } int main(int argc, char *argv[]) { int e1, e2, wstatus; pid_t s, c, ret; int pipefds[2]; parse_opts(argc, argv); init_rng(); e1 = pipe(pipefds); if (e1 < 0) die_perror("pipe"); s = xfork(); if (s == 0) return server(pipefds[1]); close(pipefds[1]); /* wait until server bound a socket */ e1 = read(pipefds[0], &e1, 4); assert(e1 == 4); c = xfork(); if (c == 0) return client(pipefds[0]); close(pipefds[0]); ret = waitpid(s, &wstatus, 0); if (ret == -1) die_perror("waitpid"); e1 = rcheck(wstatus, "server"); ret = waitpid(c, &wstatus, 0); if (ret == -1) die_perror("waitpid"); e2 = rcheck(wstatus, "client"); return e1 ? e1 : e2; } |