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 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 | /* * Copyright (c) 2000-2024 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* $FreeBSD: src/sys/netinet6/udp6_usrreq.c,v 1.6.2.6 2001/07/29 19:32:40 ume Exp $ */ /* $KAME: udp6_usrreq.c,v 1.27 2001/05/21 05:45:10 jinmei Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* * Copyright (c) 1982, 1986, 1989, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)udp_var.h 8.1 (Berkeley) 6/10/93 */ #include <sys/kernel.h> #include <sys/malloc.h> #include <sys/mbuf.h> #include <sys/param.h> #include <sys/protosw.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/sysctl.h> #include <sys/errno.h> #include <sys/stat.h> #include <sys/systm.h> #include <sys/syslog.h> #include <sys/proc.h> #include <sys/kauth.h> #include <net/if.h> #include <net/route.h> #include <net/if_types.h> #include <net/ntstat.h> #include <net/dlil.h> #include <net/net_api_stats.h> #include <net/droptap.h> #include <netinet/in.h> #include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/in_var.h> #include <netinet/ip_var.h> #include <netinet/udp.h> #include <netinet/udp_var.h> #include <netinet/udp_log.h> #include <netinet/ip6.h> #include <netinet6/ip6_var.h> #include <netinet6/in6_pcb.h> #include <netinet/icmp6.h> #include <netinet6/udp6_var.h> #include <netinet6/ip6protosw.h> #if IPSEC #include <netinet6/ipsec.h> #include <netinet6/ipsec6.h> #include <netinet6/esp6.h> #include <netkey/key.h> extern int ipsec_bypass; extern int esp_udp_encap_port; #endif /* IPSEC */ #if NECP #include <net/necp.h> #endif /* NECP */ #if FLOW_DIVERT #include <netinet/flow_divert.h> #endif /* FLOW_DIVERT */ #if CONTENT_FILTER #include <net/content_filter.h> #endif /* CONTENT_FILTER */ #if SKYWALK #include <skywalk/core/skywalk_var.h> #endif /* SKYWALK */ #include <net/sockaddr_utils.h> /* * UDP protocol inplementation. * Per RFC 768, August, 1980. */ static int udp6_abort(struct socket *); static int udp6_attach(struct socket *, int, struct proc *); static int udp6_bind(struct socket *, struct sockaddr *, struct proc *); static int udp6_connectx(struct socket *, struct sockaddr *, struct sockaddr *, struct proc *, uint32_t, sae_associd_t, sae_connid_t *, uint32_t, void *, uint32_t, struct uio *, user_ssize_t *); static int udp6_detach(struct socket *); static int udp6_disconnect(struct socket *); static int udp6_disconnectx(struct socket *, sae_associd_t, sae_connid_t); static int udp6_send(struct socket *, int, struct mbuf *, struct sockaddr *, struct mbuf *, struct proc *); static void udp6_append(struct inpcb *, struct ip6_hdr *, struct sockaddr_in6 *, struct mbuf *, int, struct ifnet *); static int udp6_input_checksum(struct mbuf *, struct udphdr *, int, int); static int udp6_defunct(struct socket *); struct pr_usrreqs udp6_usrreqs = { .pru_abort = udp6_abort, .pru_attach = udp6_attach, .pru_bind = udp6_bind, .pru_connect = udp6_connect, .pru_connectx = udp6_connectx, .pru_control = in6_control, .pru_detach = udp6_detach, .pru_disconnect = udp6_disconnect, .pru_disconnectx = udp6_disconnectx, .pru_peeraddr = in6_mapped_peeraddr, .pru_send = udp6_send, .pru_shutdown = udp_shutdown, .pru_sockaddr = in6_mapped_sockaddr, .pru_sosend = sosend, .pru_soreceive = soreceive, .pru_defunct = udp6_defunct, }; /* * subroutine of udp6_input(), mainly for source code readability. */ static void udp6_append(struct inpcb *last, struct ip6_hdr *ip6, struct sockaddr_in6 *udp_in6, struct mbuf *n, int off, struct ifnet *ifp) { #pragma unused(ip6) struct mbuf *__single opts = NULL; int ret = 0; if ((last->in6p_flags & INP_CONTROLOPTS) != 0 || SOFLOW_ENABLED(last->in6p_socket) || SO_RECV_CONTROL_OPTS(last->in6p_socket)) { ret = ip6_savecontrol(last, n, &opts); if (ret != 0) { UDP_LOG(last, "ip_savecontrol error %d", ret); m_freem(n); m_freem(opts); return; } } m_adj(n, off); if (nstat_collect) { stats_functional_type ifnet_count_type = IFNET_COUNT_TYPE(ifp); INP_ADD_RXSTAT(last, ifnet_count_type, 1, n->m_pkthdr.len); } so_recv_data_stat(last->in6p_socket, n, 0); if (sbappendaddr(&last->in6p_socket->so_rcv, SA(udp_in6), n, opts, NULL) == 0) { UDP_LOG(last, "sbappendaddr full receive socket buffer"); udpstat.udps_fullsock++; } else { sorwakeup(last->in6p_socket); } } int udp6_input(struct mbuf **mp, int *offp, int proto) { #pragma unused(proto) struct mbuf *m = *mp; struct ifnet *__single ifp; struct ip6_hdr *ip6; struct udphdr *uh; struct inpcb *__single in6p; struct mbuf *__single opts = NULL; int off = *offp; int plen, ulen, ret = 0; stats_functional_type ifnet_count_type = stats_functional_type_unclassified; struct sockaddr_in6 udp_in6; struct inpcbinfo *__single pcbinfo = &udbinfo; struct sockaddr_in6 fromsa; u_int16_t pf_tag = 0; boolean_t is_wake_pkt = false; drop_reason_t drop_reason = DROP_REASON_UNSPECIFIED; IP6_EXTHDR_CHECK(m, off, sizeof(struct udphdr), return IPPROTO_DONE); /* Expect 32-bit aligned data pointer on strict-align platforms */ MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m); ifp = m->m_pkthdr.rcvif; ip6 = mtod(m, struct ip6_hdr *); if (m->m_flags & M_PKTHDR) { pf_tag = m_pftag(m)->pftag_tag; if (m->m_pkthdr.pkt_flags & PKTF_WAKE_PKT) { is_wake_pkt = true; } } udpstat.udps_ipackets++; plen = ntohs(ip6->ip6_plen) - off + sizeof(*ip6); uh = (struct udphdr *)(void *)((caddr_t)ip6 + off); ulen = ntohs((u_short)uh->uh_ulen); if (plen != ulen) { udpstat.udps_badlen++; IF_UDP_STATINC(ifp, badlength); drop_reason = DROP_REASON_IP_BAD_LENGTH; goto bad; } /* destination port of 0 is illegal, based on RFC768. */ if (uh->uh_dport == 0) { IF_UDP_STATINC(ifp, port0); drop_reason = DROP_REASON_IP6_ILLEGAL_PORT; goto bad; } /* * Checksum extended UDP header and data. */ if (udp6_input_checksum(m, uh, off, ulen)) { drop_reason = DROP_REASON_IP6_BAD_UDP_CHECKSUM; goto bad; } /* * Construct sockaddr format source address. */ init_sin6(&fromsa, m); fromsa.sin6_port = uh->uh_sport; if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) { int reuse_sock = 0, mcast_delivered = 0; struct ip6_moptions *imo; /* * Deliver a multicast datagram to all sockets * for which the local and remote addresses and ports match * those of the incoming datagram. This allows more than * one process to receive multicasts on the same port. * (This really ought to be done for unicast datagrams as * well, but that would cause problems with existing * applications that open both address-specific sockets and * a wildcard socket listening to the same port -- they would * end up receiving duplicates of every unicast datagram. * Those applications open the multiple sockets to overcome an * inadequacy of the UDP socket interface, but for backwards * compatibility we avoid the problem here rather than * fixing the interface. Maybe 4.5BSD will remedy this?) */ /* * In a case that laddr should be set to the link-local * address (this happens in RIPng), the multicast address * specified in the received packet does not match with * laddr. To cure this situation, the matching is relaxed * if the receiving interface is the same as one specified * in the socket and if the destination multicast address * matches one of the multicast groups specified in the socket. */ /* * Construct sockaddr format source address. */ init_sin6(&udp_in6, m); /* general init */ udp_in6.sin6_port = uh->uh_sport; /* * KAME note: usually we drop udphdr from mbuf here. * We need udphdr for IPsec processing so we do that later. */ /* * Locate pcb(s) for datagram. * (Algorithm copied from raw_intr().) */ lck_rw_lock_shared(&pcbinfo->ipi_lock); LIST_FOREACH(in6p, &udb, inp_list) { #if IPSEC int skipit; #endif /* IPSEC */ if ((in6p->inp_vflag & INP_IPV6) == 0) { continue; } if (inp_restricted_recv(in6p, ifp)) { continue; } /* * Skip unbound sockets before taking the lock on the socket as * the test with the destination port in the header will fail */ if (in6p->in6p_lport == 0) { continue; } if (in_pcb_checkstate(in6p, WNT_ACQUIRE, 0) == WNT_STOPUSING) { continue; } udp_lock(in6p->in6p_socket, 1, 0); if (in_pcb_checkstate(in6p, WNT_RELEASE, 1) == WNT_STOPUSING) { udp_unlock(in6p->in6p_socket, 1, 0); continue; } if (in6p->in6p_lport != uh->uh_dport) { udp_unlock(in6p->in6p_socket, 1, 0); continue; } /* * Handle socket delivery policy for any-source * and source-specific multicast. [RFC3678] */ imo = in6p->in6p_moptions; if (imo && IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) { struct sockaddr_in6 mcaddr; int blocked; IM6O_LOCK(imo); SOCKADDR_ZERO(&mcaddr, sizeof(struct sockaddr_in6)); mcaddr.sin6_len = sizeof(struct sockaddr_in6); mcaddr.sin6_family = AF_INET6; mcaddr.sin6_addr = ip6->ip6_dst; blocked = im6o_mc_filter(imo, ifp, &mcaddr, &fromsa); IM6O_UNLOCK(imo); if (blocked != MCAST_PASS) { udp_unlock(in6p->in6p_socket, 1, 0); if (blocked == MCAST_NOTSMEMBER || blocked == MCAST_MUTED) { udpstat.udps_filtermcast++; } continue; } } if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr) && (!in6_are_addr_equal_scoped(&in6p->in6p_faddr, &ip6->ip6_src, in6p->inp_fifscope, ifp->if_index) || in6p->in6p_fport != uh->uh_sport)) { udp_unlock(in6p->in6p_socket, 1, 0); continue; } reuse_sock = in6p->inp_socket->so_options & (SO_REUSEPORT | SO_REUSEADDR); #if NECP skipit = 0; if (!necp_socket_is_allowed_to_send_recv_v6(in6p, uh->uh_dport, uh->uh_sport, &ip6->ip6_dst, &ip6->ip6_src, ifp, pf_tag, NULL, NULL, NULL, NULL)) { /* do not inject data to pcb */ skipit = 1; UDP_LOG_DROP_NECP(ip6, uh, in6p, false); } if (skipit == 0) #endif /* NECP */ { struct mbuf *__single n = NULL; /* * KAME NOTE: do not * m_copy(m, offset, ...) below. * sbappendaddr() expects M_PKTHDR, * and m_copy() will copy M_PKTHDR * only if offset is 0. */ if (reuse_sock) { n = m_copy(m, 0, M_COPYALL); } udp6_append(in6p, ip6, &udp_in6, m, off + sizeof(struct udphdr), ifp); mcast_delivered++; m = n; } if (is_wake_pkt) { soevent(in6p->in6p_socket, SO_FILT_HINT_LOCKED | SO_FILT_HINT_WAKE_PKT); } udp_unlock(in6p->in6p_socket, 1, 0); /* * Don't look for additional matches if this one does * not have either the SO_REUSEPORT or SO_REUSEADDR * socket options set. This heuristic avoids searching * through all pcbs in the common case of a non-shared * port. It assumes that an application will never * clear these options after setting them. */ if (reuse_sock == 0 || m == NULL) { break; } /* * Expect 32-bit aligned data pointer on strict-align * platforms. */ MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m); /* * Recompute IP and UDP header pointers for new mbuf */ ip6 = mtod(m, struct ip6_hdr *); uh = (struct udphdr *)(void *)((caddr_t)ip6 + off); } lck_rw_done(&pcbinfo->ipi_lock); if (mcast_delivered == 0) { /* * No matching pcb found; discard datagram. * (No need to send an ICMP Port Unreachable * for a broadcast or multicast datgram.) */ udpstat.udps_noport++; udpstat.udps_noportmcast++; IF_UDP_STATINC(ifp, port_unreach); drop_reason = DROP_REASON_IP_UNREACHABLE_PORT; goto bad; } /* free the extra copy of mbuf or skipped by NECP */ if (m != NULL) { m_freem(m); } return IPPROTO_DONE; } #if IPSEC /* * UDP to port 4500 with a payload where the first four bytes are * not zero is a UDP encapsulated IPsec packet. Packets where * the payload is one byte and that byte is 0xFF are NAT keepalive * packets. Decapsulate the ESP packet and carry on with IPsec input * or discard the NAT keep-alive. */ if (ipsec_bypass == 0 && (esp_udp_encap_port & 0xFFFF) != 0 && (uh->uh_dport == ntohs((u_short)esp_udp_encap_port) || uh->uh_sport == ntohs((u_short)esp_udp_encap_port))) { union sockaddr_in_4_6 src = {}; union sockaddr_in_4_6 dst = {}; ipsec_fill_ip6_sockaddr_4_6_with_ifscope(&src, &ip6->ip6_src, uh->uh_sport, ip6_input_getsrcifscope(m)); ipsec_fill_ip6_sockaddr_4_6_with_ifscope(&dst, &ip6->ip6_dst, uh->uh_dport, ip6_input_getdstifscope(m)); /* * Check if ESP or keepalive: * 1. If the destination port of the incoming packet is 4500. * 2. If the source port of the incoming packet is 4500, * then check the SADB to match IP address and port. */ bool check_esp = true; if (uh->uh_dport != ntohs((u_short)esp_udp_encap_port)) { check_esp = key_checksa_present(&dst, &src); } if (check_esp) { int payload_len = ulen - sizeof(struct udphdr) > 4 ? 4 : ulen - sizeof(struct udphdr); if (m->m_len < off + sizeof(struct udphdr) + payload_len) { if ((m = m_pullup(m, off + sizeof(struct udphdr) + payload_len)) == NULL) { udpstat.udps_hdrops++; drop_reason = DROP_REASON_UDP_PACKET_SHORTER_THAN_HEADER; goto bad; } /* * Expect 32-bit aligned data pointer on strict-align * platforms. */ MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m); ip6 = mtod(m, struct ip6_hdr *); uh = (struct udphdr *)(void *)((caddr_t)ip6 + off); } /* Check for NAT keepalive packet */ if (payload_len == 1 && *(u_int8_t*) ((caddr_t)uh + sizeof(struct udphdr)) == 0xFF) { drop_reason = DROP_REASON_UDP_PACKET_SHORTER_THAN_HEADER; goto bad; } else if (payload_len == 4 && *(u_int32_t*)(void *) ((caddr_t)uh + sizeof(struct udphdr)) != 0) { /* UDP encapsulated IPsec packet to pass through NAT */ /* preserve the udp header */ *offp = off + sizeof(struct udphdr); return esp6_input(mp, offp, IPPROTO_UDP); } } } #endif /* IPSEC */ /* * Locate pcb for datagram. */ in6p = in6_pcblookup_hash(&udbinfo, &ip6->ip6_src, uh->uh_sport, ip6_input_getsrcifscope(m), &ip6->ip6_dst, uh->uh_dport, ip6_input_getdstifscope(m), 1, m->m_pkthdr.rcvif); if (in6p == NULL) { IF_UDP_STATINC(ifp, port_unreach); if (udp_log_in_vain) { char buf[INET6_ADDRSTRLEN]; strlcpy(buf, ip6_sprintf(&ip6->ip6_dst), sizeof(buf)); if (udp_log_in_vain < 3) { log(LOG_INFO, "Connection attempt to UDP " "%s:%d from %s:%d\n", buf, ntohs(uh->uh_dport), ip6_sprintf(&ip6->ip6_src), ntohs(uh->uh_sport)); } else if (!(m->m_flags & (M_BCAST | M_MCAST)) && !in6_are_addr_equal_scoped(&ip6->ip6_dst, &ip6->ip6_src, ip6_input_getdstifscope(m), ip6_input_getsrcifscope(m))) { log(LOG_INFO, "Connection attempt " "to UDP %s:%d from %s:%d\n", buf, ntohs(uh->uh_dport), ip6_sprintf(&ip6->ip6_src), ntohs(uh->uh_sport)); } } udpstat.udps_noport++; if (m->m_flags & M_MCAST) { printf("UDP6: M_MCAST is set in a unicast packet.\n"); udpstat.udps_noportmcast++; IF_UDP_STATINC(ifp, badmcast); drop_reason = DROP_REASON_IP_MULTICAST_NO_PORT; goto bad; } icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0); return IPPROTO_DONE; } /* * Construct sockaddr format source address. * Stuff source address and datagram in user buffer. */ udp_lock(in6p->in6p_socket, 1, 0); #if NECP if (!necp_socket_is_allowed_to_send_recv_v6(in6p, uh->uh_dport, uh->uh_sport, &ip6->ip6_dst, &ip6->ip6_src, ifp, pf_tag, NULL, NULL, NULL, NULL)) { in_pcb_checkstate(in6p, WNT_RELEASE, 1); UDP_LOG_DROP_NECP(ip6, uh, in6p, false); udp_unlock(in6p->in6p_socket, 1, 0); IF_UDP_STATINC(ifp, badipsec); drop_reason = DROP_REASON_IP_NECP_POLICY_DROP; goto bad; } #endif /* NECP */ if (in_pcb_checkstate(in6p, WNT_RELEASE, 1) == WNT_STOPUSING) { udp_unlock(in6p->in6p_socket, 1, 0); IF_UDP_STATINC(ifp, cleanup); drop_reason = DROP_REASON_UDP_PCB_GARBAGE_COLLECTED; goto bad; } init_sin6(&udp_in6, m); /* general init */ udp_in6.sin6_port = uh->uh_sport; if ((in6p->in6p_flags & INP_CONTROLOPTS) != 0 || SOFLOW_ENABLED(in6p->in6p_socket) || SO_RECV_CONTROL_OPTS(in6p->in6p_socket)) { ret = ip6_savecontrol(in6p, m, &opts); if (ret != 0) { UDP_LOG(in6p, "ip_savecontrol error %d", ret); udp_unlock(in6p->in6p_socket, 1, 0); drop_reason = DROP_REASON_IP_ENOBUFS; goto bad; } } m_adj(m, off + sizeof(struct udphdr)); if (nstat_collect) { ifnet_count_type = IFNET_COUNT_TYPE(ifp); INP_ADD_RXSTAT(in6p, ifnet_count_type, 1, m->m_pkthdr.len); } so_recv_data_stat(in6p->in6p_socket, m, 0); if (sbappendaddr(&in6p->in6p_socket->so_rcv, SA(&udp_in6), m, opts, NULL) == 0) { UDP_LOG(in6p, "sbappendaddr full receive socket buffer"); m = NULL; opts = NULL; udpstat.udps_fullsock++; udp_unlock(in6p->in6p_socket, 1, 0); goto bad; } if (is_wake_pkt) { soevent(in6p->in6p_socket, SO_FILT_HINT_LOCKED | SO_FILT_HINT_WAKE_PKT); } sorwakeup(in6p->in6p_socket); udp_unlock(in6p->in6p_socket, 1, 0); return IPPROTO_DONE; bad: if (m != NULL) { m_drop(m, DROPTAP_FLAG_DIR_IN | DROPTAP_FLAG_L2_MISSING, drop_reason, NULL, 0); } if (opts != NULL) { m_freem(opts); } return IPPROTO_DONE; } void udp6_ctlinput(int cmd, struct sockaddr *sa, void *d, __unused struct ifnet *ifp) { struct udphdr uh; struct ip6_hdr *ip6; struct mbuf *m; int off = 0; struct ip6ctlparam *__single ip6cp = NULL; struct icmp6_hdr *__single icmp6 = NULL; const struct sockaddr_in6 *__single sa6_src = NULL; void *__single cmdarg = NULL; void (*notify)(struct inpcb *, int) = udp_notify; struct inpcb *__single in6p; struct udp_portonly { u_int16_t uh_sport; u_int16_t uh_dport; } *uhp; if (sa->sa_family != AF_INET6 || sa->sa_len != sizeof(struct sockaddr_in6)) { return; } if ((unsigned)cmd >= PRC_NCMDS) { return; } if (PRC_IS_REDIRECT(cmd)) { notify = in6_rtchange; d = NULL; } else if (cmd == PRC_HOSTDEAD) { d = NULL; } else if (inet6ctlerrmap[cmd] == 0) { return; } /* if the parameter is from icmp6, decode it. */ if (d != NULL) { ip6cp = (struct ip6ctlparam *)d; icmp6 = ip6cp->ip6c_icmp6; m = ip6cp->ip6c_m; ip6 = ip6cp->ip6c_ip6; off = ip6cp->ip6c_off; cmdarg = ip6cp->ip6c_cmdarg; sa6_src = ip6cp->ip6c_src; } else { m = NULL; ip6 = NULL; cmdarg = NULL; sa6_src = &sa6_any; } if (ip6 != NULL) { #if SKYWALK union sockaddr_in_4_6 sock_laddr; struct protoctl_ev_val prctl_ev_val; #endif /* SKYWALK */ /* * XXX: We assume that when IPV6 is non NULL, * M and OFF are valid. */ /* check if we can safely examine src and dst ports */ if (m->m_pkthdr.len < off + sizeof(*uhp)) { return; } bzero(&uh, sizeof(uh)); m_copydata(m, off, sizeof(*uhp), (caddr_t)&uh); in6p = in6_pcblookup_hash(&udbinfo, &ip6->ip6_dst, uh.uh_dport, ip6_input_getdstifscope(m), &ip6->ip6_src, uh.uh_sport, ip6_input_getsrcifscope(m), 0, NULL); if (cmd == PRC_MSGSIZE && in6p != NULL && !uuid_is_null(in6p->necp_client_uuid)) { uuid_t null_uuid; uuid_clear(null_uuid); necp_update_flow_protoctl_event(null_uuid, in6p->necp_client_uuid, PRC_MSGSIZE, ntohl(icmp6->icmp6_mtu), 0); /* * Avoid setting so_error when using Network.framework * since the notification of PRC_MSGSIZE has been delivered * through NECP. */ in6_pcbnotify(&udbinfo, sa, uh.uh_dport, SA(ip6cp->ip6c_src), uh.uh_sport, cmd, cmdarg, NULL); } else { in6_pcbnotify(&udbinfo, sa, uh.uh_dport, SA(ip6cp->ip6c_src), uh.uh_sport, cmd, cmdarg, notify); } #if SKYWALK bzero(&prctl_ev_val, sizeof(prctl_ev_val)); bzero(&sock_laddr, sizeof(sock_laddr)); if (cmd == PRC_MSGSIZE && icmp6 != NULL) { prctl_ev_val.val = ntohl(icmp6->icmp6_mtu); } sock_laddr.sin6.sin6_family = AF_INET6; sock_laddr.sin6.sin6_len = sizeof(sock_laddr.sin6); sock_laddr.sin6.sin6_addr = ip6->ip6_src; protoctl_event_enqueue_nwk_wq_entry(ifp, SA(&sock_laddr), sa, uh.uh_sport, uh.uh_dport, IPPROTO_UDP, cmd, &prctl_ev_val); #endif /* SKYWALK */ } /* * XXX The else condition here was broken for a long time. * Fixing it made us deliver notification correctly but broke * some frameworks that didn't handle it well. * For now we have removed it and will revisit it later. */ } static int udp6_abort(struct socket *so) { struct inpcb *__single inp; inp = sotoinpcb(so); if (inp == NULL) { panic("%s: so=%p null inp", __func__, so); /* NOTREACHED */ } soisdisconnected(so); in6_pcbdetach(inp); return 0; } static int udp6_attach(struct socket *so, int proto, struct proc *p) { #pragma unused(proto) struct inpcb *__single inp; int error; if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) { error = soreserve(so, udp_sendspace, udp_recvspace); if (error) { return error; } } inp = sotoinpcb(so); if (inp != NULL) { return EINVAL; } error = in_pcballoc(so, &udbinfo, p); if (error) { return error; } inp = (struct inpcb *)so->so_pcb; inp->inp_vflag |= INP_IPV6; if (ip6_mapped_addr_on) { inp->inp_vflag |= INP_IPV4; } inp->in6p_hops = -1; /* use kernel default */ inp->in6p_cksum = -1; /* just to be sure */ /* * XXX: ugly!! * IPv4 TTL initialization is necessary for an IPv6 socket as well, * because the socket may be bound to an IPv6 wildcard address, * which may match an IPv4-mapped IPv6 address. */ inp->inp_ip_ttl = (u_char)ip_defttl; if (nstat_collect) { nstat_udp_new_pcb(inp); } return 0; } static int udp6_bind(struct socket *so, struct sockaddr *nam, struct proc *p) { struct inpcb *__single inp; int error; inp = sotoinpcb(so); if (inp == NULL) { return EINVAL; } inp_enter_bind_in_progress(so); const uint8_t old_flags = inp->inp_vflag; inp->inp_vflag &= ~INP_IPV4; inp->inp_vflag |= INP_IPV6; if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) { struct sockaddr_in6 *__single sin6_p; sin6_p = SIN6(nam); if (IN6_IS_ADDR_UNSPECIFIED(&sin6_p->sin6_addr)) { inp->inp_vflag |= INP_IPV4; inp->inp_vflag &= ~INP_V4MAPPEDV6; } else if (IN6_IS_ADDR_V4MAPPED(&sin6_p->sin6_addr)) { struct sockaddr_in sin; in6_sin6_2_sin(&sin, sin6_p); inp->inp_vflag |= INP_IPV4; inp->inp_vflag &= ~INP_IPV6; inp->inp_vflag |= INP_V4MAPPEDV6; error = in_pcbbind(inp, SA(&sin), NULL, p); if (error != 0) { inp->inp_vflag = old_flags; } goto out; } } error = in6_pcbbind(inp, nam, NULL, p); if (error != 0) { inp->inp_vflag = old_flags; } out: UDP_LOG_BIND(inp, error); inp_exit_bind_in_progress(so); return error; } int udp6_connect(struct socket *so, struct sockaddr *nam, struct proc *p) { struct inpcb *__single inp; int error; struct sockaddr_in6 *__single sin6_p = SIN6(nam); #if defined(NECP) && defined(FLOW_DIVERT) int should_use_flow_divert = 0; #endif /* defined(NECP) && defined(FLOW_DIVERT) */ inp = sotoinpcb(so); if (inp == NULL) { return EINVAL; } inp_enter_bind_in_progress(so); #if defined(NECP) && defined(FLOW_DIVERT) should_use_flow_divert = necp_socket_should_use_flow_divert(inp); #endif /* defined(NECP) && defined(FLOW_DIVERT) */ /* * It is possible that the socket is bound to v4 mapped v6 address. * Post that do not allow connect to a v6 endpoint. */ if (inp->inp_vflag & INP_V4MAPPEDV6 && !IN6_IS_ADDR_V4MAPPED(&sin6_p->sin6_addr)) { if (IN6_IS_ADDR_UNSPECIFIED(&sin6_p->sin6_addr)) { sin6_p->sin6_addr.s6_addr[10] = 0xff; sin6_p->sin6_addr.s6_addr[11] = 0xff; } else { error = EINVAL; goto done; } } if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) { if (IN6_IS_ADDR_V4MAPPED(&sin6_p->sin6_addr)) { struct sockaddr_in sin; const uint8_t old_flags = inp->inp_vflag; if (inp->inp_faddr.s_addr != INADDR_ANY) { error = EISCONN; goto done; } /* * If bound to an IPv6 address, we cannot connect to * an IPv4 mapped address */ if (inp->inp_vflag == INP_IPV6) { error = EINVAL; goto done; } if (!(so->so_flags1 & SOF1_CONNECT_COUNTED)) { so->so_flags1 |= SOF1_CONNECT_COUNTED; INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_inet_dgram_connected); } in6_sin6_2_sin(&sin, sin6_p); #if defined(NECP) && defined(FLOW_DIVERT) if (should_use_flow_divert) { goto do_flow_divert; } #endif /* defined(NECP) && defined(FLOW_DIVERT) */ inp->inp_vflag |= INP_IPV4; inp->inp_vflag &= ~INP_IPV6; inp->inp_vflag |= INP_V4MAPPEDV6; error = in_pcbconnect(inp, SA(&sin), p, IFSCOPE_NONE, NULL); if (error == 0) { #if NECP /* Update NECP client with connected five-tuple */ if (!uuid_is_null(inp->necp_client_uuid)) { socket_unlock(so, 0); necp_client_assign_from_socket(so->last_pid, inp->necp_client_uuid, inp); socket_lock(so, 0); } #endif /* NECP */ soisconnected(so); } else { inp->inp_vflag = old_flags; } goto done; } } /* * If bound to an IPv4 mapped address, we cannot connect to * an IPv6 address */ if (inp->inp_vflag == INP_IPV4) { error = EINVAL; goto done; } if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) { error = EISCONN; goto done; } if (!(so->so_flags1 & SOF1_CONNECT_COUNTED)) { so->so_flags1 |= SOF1_CONNECT_COUNTED; INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_inet6_dgram_connected); } #if defined(NECP) && defined(FLOW_DIVERT) do_flow_divert: if (should_use_flow_divert) { error = flow_divert_pcb_init(so); if (error == 0) { error = flow_divert_connect_out(so, nam, p); } goto done; } #endif /* defined(NECP) && defined(FLOW_DIVERT) */ error = in6_pcbconnect(inp, nam, p); if (error == 0) { /* should be non mapped addr */ if (ip6_mapped_addr_on || (inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) { inp->inp_vflag &= ~INP_IPV4; inp->inp_vflag |= INP_IPV6; } #if NECP /* Update NECP client with connected five-tuple */ if (!uuid_is_null(inp->necp_client_uuid)) { socket_unlock(so, 0); necp_client_assign_from_socket(so->last_pid, inp->necp_client_uuid, inp); socket_lock(so, 0); } #endif /* NECP */ soisconnected(so); if (inp->inp_flowhash == 0) { inp_calc_flowhash(inp); ASSERT(inp->inp_flowhash != 0); } /* update flowinfo - RFC 6437 */ if (inp->inp_flow == 0 && inp->in6p_flags & IN6P_AUTOFLOWLABEL) { inp->inp_flow &= ~IPV6_FLOWLABEL_MASK; inp->inp_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK); } inp->inp_connect_timestamp = mach_continuous_time(); } done: UDP_LOG_CONNECT(inp, error); inp_exit_bind_in_progress(so); return error; } static int udp6_connectx(struct socket *so, struct sockaddr *src, struct sockaddr *dst, struct proc *p, uint32_t ifscope, sae_associd_t aid, sae_connid_t *pcid, uint32_t flags, void *arg, uint32_t arglen, struct uio *uio, user_ssize_t *bytes_written) { return udp_connectx_common(so, AF_INET6, src, dst, p, ifscope, aid, pcid, flags, arg, arglen, uio, bytes_written); } static int udp6_detach(struct socket *so) { struct inpcb *__single inp; inp = sotoinpcb(so); if (inp == NULL) { return EINVAL; } UDP_LOG_CONNECTION_SUMMARY(inp); in6_pcbdetach(inp); return 0; } static int udp6_disconnect(struct socket *so) { struct inpcb *__single inp; inp = sotoinpcb(so); if (inp == NULL #if NECP || (necp_socket_should_use_flow_divert(inp)) #endif /* NECP */ ) { return inp == NULL ? EINVAL : EPROTOTYPE; } if (inp->inp_vflag & INP_IPV4) { struct pr_usrreqs *__single pru; pru = ip_protox[IPPROTO_UDP]->pr_usrreqs; return (*pru->pru_disconnect)(so); } if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) { return ENOTCONN; } UDP_LOG_CONNECTION_SUMMARY(inp); in6_pcbdisconnect(inp); /* reset flow-controlled state, just in case */ inp_reset_fc_state(inp); inp->in6p_laddr = in6addr_any; inp->inp_lifscope = IFSCOPE_NONE; inp->in6p_last_outifp = NULL; #if SKYWALK if (NETNS_TOKEN_VALID(&inp->inp_netns_token)) { netns_set_ifnet(&inp->inp_netns_token, NULL); } #endif /* SKYWALK */ so->so_state &= ~SS_ISCONNECTED; /* XXX */ return 0; } static int udp6_disconnectx(struct socket *so, sae_associd_t aid, sae_connid_t cid) { #pragma unused(cid) if (aid != SAE_ASSOCID_ANY && aid != SAE_ASSOCID_ALL) { return EINVAL; } return udp6_disconnect(so); } static int udp6_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, struct mbuf *control, struct proc *p) { struct inpcb *__single inp; int error = 0; #if defined(NECP) && defined(FLOW_DIVERT) int should_use_flow_divert = 0; #endif /* defined(NECP) && defined(FLOW_DIVERT) */ #if CONTENT_FILTER struct m_tag *__single cfil_tag = NULL; struct sockaddr *__single cfil_faddr = NULL; #endif inp = sotoinpcb(so); if (inp == NULL) { error = EINVAL; goto bad; } #if CONTENT_FILTER /* If socket is subject to UDP Content Filter and unconnected, get addr from tag. */ if (CFIL_DGRAM_FILTERED(so) && !addr && IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) { cfil_tag = cfil_dgram_get_socket_state(m, NULL, NULL, &cfil_faddr, NULL); if (cfil_tag) { addr = SA(cfil_faddr); } } #endif #if defined(NECP) && defined(FLOW_DIVERT) should_use_flow_divert = necp_socket_should_use_flow_divert(inp); #endif /* defined(NECP) && defined(FLOW_DIVERT) */ if (addr != NULL) { if (addr->sa_len != sizeof(struct sockaddr_in6)) { error = EINVAL; goto bad; } if (addr->sa_family != AF_INET6) { error = EAFNOSUPPORT; goto bad; } } if (ip6_mapped_addr_on || (inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) { int hasv4addr; struct sockaddr_in6 *__single sin6 = NULL; if (addr == NULL) { hasv4addr = (inp->inp_vflag & INP_IPV4); } else { sin6 = SIN6(addr); hasv4addr = IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr) ? 1 : 0; } if (hasv4addr) { struct pr_usrreqs *__single pru; if (sin6 != NULL) { in6_sin6_2_sin_in_sock(addr); } #if defined(NECP) && defined(FLOW_DIVERT) if (should_use_flow_divert) { goto do_flow_divert; } #endif /* defined(NECP) && defined(FLOW_DIVERT) */ pru = ip_protox[IPPROTO_UDP]->pr_usrreqs; error = ((*pru->pru_send)(so, flags, m, addr, control, p)); #if CONTENT_FILTER if (cfil_tag) { m_tag_free(cfil_tag); } #endif /* addr will just be freed in sendit(). */ return error; } } #if defined(NECP) && defined(FLOW_DIVERT) do_flow_divert: if (should_use_flow_divert) { /* Implicit connect */ error = flow_divert_implicit_data_out(so, flags, m, addr, control, p); #if CONTENT_FILTER if (cfil_tag) { m_tag_free(cfil_tag); } #endif return error; } #endif /* defined(NECP) && defined(FLOW_DIVERT) */ so_update_tx_data_stats(so, 1, m->m_pkthdr.len); in_pcb_check_management_entitled(inp); in_pcb_check_ultra_constrained_entitled(inp); #if SKYWALK sk_protect_t __single protect = sk_async_transmit_protect(); #endif /* SKYWALK */ error = udp6_output(inp, m, addr, control, p); #if SKYWALK sk_async_transmit_unprotect(protect); #endif /* SKYWALK */ #if CONTENT_FILTER if (cfil_tag) { m_tag_free(cfil_tag); } #endif return error; bad: VERIFY(error != 0); if (m != NULL) { m_freem(m); } if (control != NULL) { m_freem(control); } #if CONTENT_FILTER if (cfil_tag) { m_tag_free(cfil_tag); } #endif return error; } /* * Checksum extended UDP header and data. */ static int udp6_input_checksum(struct mbuf *m, struct udphdr *uh, int off, int ulen) { struct ifnet *__single ifp = m->m_pkthdr.rcvif; struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); if (!(m->m_pkthdr.csum_flags & CSUM_DATA_VALID) && uh->uh_sum == 0) { /* UDP/IPv6 checksum is mandatory (RFC2460) */ /* * If checksum was already validated, ignore this check. * This is necessary for transport-mode ESP, which may be * getting UDP payloads without checksums when the network * has a NAT64. */ udpstat.udps_nosum++; goto badsum; } if ((hwcksum_rx || (ifp->if_flags & IFF_LOOPBACK) || (m->m_pkthdr.pkt_flags & PKTF_LOOP)) && (m->m_pkthdr.csum_flags & CSUM_DATA_VALID)) { if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR) { uh->uh_sum = m->m_pkthdr.csum_rx_val; } else { uint32_t sum = m->m_pkthdr.csum_rx_val; uint32_t start = m->m_pkthdr.csum_rx_start; int32_t trailer = (m_pktlen(m) - (off + ulen)); /* * Perform 1's complement adjustment of octets * that got included/excluded in the hardware- * calculated checksum value. Also take care * of any trailing bytes and subtract out * their partial sum. */ ASSERT(trailer >= 0); if ((m->m_pkthdr.csum_flags & CSUM_PARTIAL) && (start != off || trailer != 0)) { uint32_t swbytes = (uint32_t)trailer; uint16_t s = 0, d = 0; if (IN6_IS_SCOPE_EMBED(&ip6->ip6_src)) { s = ip6->ip6_src.s6_addr16[1]; ip6->ip6_src.s6_addr16[1] = 0; } if (IN6_IS_SCOPE_EMBED(&ip6->ip6_dst)) { d = ip6->ip6_dst.s6_addr16[1]; ip6->ip6_dst.s6_addr16[1] = 0; } /* callee folds in sum */ sum = m_adj_sum16(m, start, off, ulen, sum); if (off > start) { swbytes += (off - start); } else { swbytes += (start - off); } if (IN6_IS_SCOPE_EMBED(&ip6->ip6_src)) { ip6->ip6_src.s6_addr16[1] = s; } if (IN6_IS_SCOPE_EMBED(&ip6->ip6_dst)) { ip6->ip6_dst.s6_addr16[1] = d; } if (swbytes != 0) { udp_in_cksum_stats(swbytes); } if (trailer != 0) { m_adj(m, -trailer); } } uh->uh_sum = in6_pseudo(&ip6->ip6_src, &ip6->ip6_dst, sum + htonl(ulen + IPPROTO_UDP)); } uh->uh_sum ^= 0xffff; } else { udp_in6_cksum_stats(ulen); uh->uh_sum = in6_cksum(m, IPPROTO_UDP, off, ulen); } if (uh->uh_sum != 0) { badsum: udpstat.udps_badsum++; IF_UDP_STATINC(ifp, badchksum); return -1; } return 0; } int udp6_defunct(struct socket *so) { struct ip_moptions *__single imo; struct ip6_moptions *__single im6o; struct inpcb *__single inp; inp = sotoinpcb(so); if (inp == NULL) { return EINVAL; } im6o = inp->in6p_moptions; inp->in6p_moptions = NULL; if (im6o != NULL) { struct proc *p = current_proc(); SODEFUNCTLOG("%s[%d, %s]: defuncting so 0x%llu drop ipv6 multicast memberships", __func__, proc_pid(p), proc_best_name(p), so->so_gencnt); IM6O_REMREF(im6o); } imo = inp->inp_moptions; if (imo != NULL) { struct proc *__single p = current_proc(); SODEFUNCTLOG("%s[%d, %s]: defuncting so 0x%llu drop ipv4 multicast memberships", __func__, proc_pid(p), proc_best_name(p), so->so_gencnt); inp->inp_moptions = NULL; IMO_REMREF(imo); } return 0; } |