1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1982, 1986, 1991, 1993, 1995 5 * The Regents of the University of California. 6 * Copyright (c) 2007-2009 Robert N. M. Watson 7 * Copyright (c) 2010-2011 Juniper Networks, Inc. 8 * All rights reserved. 9 * 10 * Portions of this software were developed by Robert N. M. Watson under 11 * contract to Juniper Networks, Inc. 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions 15 * are met: 16 * 1. Redistributions of source code must retain the above copyright 17 * notice, this list of conditions and the following disclaimer. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 3. Neither the name of the University nor the names of its contributors 22 * may be used to endorse or promote products derived from this software 23 * without specific prior written permission. 24 * 25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 35 * SUCH DAMAGE. 36 * 37 * @(#)in_pcb.c 8.4 (Berkeley) 5/24/95 38 */ 39 40 #include <sys/cdefs.h> 41 __FBSDID("$FreeBSD$"); 42 43 #include "opt_ddb.h" 44 #include "opt_ipsec.h" 45 #include "opt_inet.h" 46 #include "opt_inet6.h" 47 #include "opt_ratelimit.h" 48 #include "opt_pcbgroup.h" 49 #include "opt_rss.h" 50 51 #include <sys/param.h> 52 #include <sys/systm.h> 53 #include <sys/lock.h> 54 #include <sys/malloc.h> 55 #include <sys/mbuf.h> 56 #include <sys/callout.h> 57 #include <sys/eventhandler.h> 58 #include <sys/domain.h> 59 #include <sys/protosw.h> 60 #include <sys/rmlock.h> 61 #include <sys/smp.h> 62 #include <sys/socket.h> 63 #include <sys/socketvar.h> 64 #include <sys/sockio.h> 65 #include <sys/priv.h> 66 #include <sys/proc.h> 67 #include <sys/refcount.h> 68 #include <sys/jail.h> 69 #include <sys/kernel.h> 70 #include <sys/sysctl.h> 71 72 #ifdef DDB 73 #include <ddb/ddb.h> 74 #endif 75 76 #include <vm/uma.h> 77 78 #include <net/if.h> 79 #include <net/if_var.h> 80 #include <net/if_types.h> 81 #include <net/if_llatbl.h> 82 #include <net/route.h> 83 #include <net/rss_config.h> 84 #include <net/vnet.h> 85 86 #if defined(INET) || defined(INET6) 87 #include <netinet/in.h> 88 #include <netinet/in_pcb.h> 89 #include <netinet/ip_var.h> 90 #include <netinet/tcp_var.h> 91 #ifdef TCPHPTS 92 #include <netinet/tcp_hpts.h> 93 #endif 94 #include <netinet/udp.h> 95 #include <netinet/udp_var.h> 96 #endif 97 #ifdef INET 98 #include <netinet/in_var.h> 99 #endif 100 #ifdef INET6 101 #include <netinet/ip6.h> 102 #include <netinet6/in6_pcb.h> 103 #include <netinet6/in6_var.h> 104 #include <netinet6/ip6_var.h> 105 #endif /* INET6 */ 106 107 #include <netipsec/ipsec_support.h> 108 109 #include <security/mac/mac_framework.h> 110 111 #define INPCBLBGROUP_SIZMIN 8 112 #define INPCBLBGROUP_SIZMAX 256 113 114 static struct callout ipport_tick_callout; 115 116 /* 117 * These configure the range of local port addresses assigned to 118 * "unspecified" outgoing connections/packets/whatever. 119 */ 120 VNET_DEFINE(int, ipport_lowfirstauto) = IPPORT_RESERVED - 1; /* 1023 */ 121 VNET_DEFINE(int, ipport_lowlastauto) = IPPORT_RESERVEDSTART; /* 600 */ 122 VNET_DEFINE(int, ipport_firstauto) = IPPORT_EPHEMERALFIRST; /* 10000 */ 123 VNET_DEFINE(int, ipport_lastauto) = IPPORT_EPHEMERALLAST; /* 65535 */ 124 VNET_DEFINE(int, ipport_hifirstauto) = IPPORT_HIFIRSTAUTO; /* 49152 */ 125 VNET_DEFINE(int, ipport_hilastauto) = IPPORT_HILASTAUTO; /* 65535 */ 126 127 /* 128 * Reserved ports accessible only to root. There are significant 129 * security considerations that must be accounted for when changing these, 130 * but the security benefits can be great. Please be careful. 131 */ 132 VNET_DEFINE(int, ipport_reservedhigh) = IPPORT_RESERVED - 1; /* 1023 */ 133 VNET_DEFINE(int, ipport_reservedlow); 134 135 /* Variables dealing with random ephemeral port allocation. */ 136 VNET_DEFINE(int, ipport_randomized) = 1; /* user controlled via sysctl */ 137 VNET_DEFINE(int, ipport_randomcps) = 10; /* user controlled via sysctl */ 138 VNET_DEFINE(int, ipport_randomtime) = 45; /* user controlled via sysctl */ 139 VNET_DEFINE(int, ipport_stoprandom); /* toggled by ipport_tick */ 140 VNET_DEFINE(int, ipport_tcpallocs); 141 static VNET_DEFINE(int, ipport_tcplastcount); 142 143 #define V_ipport_tcplastcount VNET(ipport_tcplastcount) 144 145 static void in_pcbremlists(struct inpcb *inp); 146 #ifdef INET 147 static struct inpcb *in_pcblookup_hash_locked(struct inpcbinfo *pcbinfo, 148 struct in_addr faddr, u_int fport_arg, 149 struct in_addr laddr, u_int lport_arg, 150 int lookupflags, struct ifnet *ifp); 151 152 #define RANGECHK(var, min, max) \ 153 if ((var) < (min)) { (var) = (min); } \ 154 else if ((var) > (max)) { (var) = (max); } 155 156 static int 157 sysctl_net_ipport_check(SYSCTL_HANDLER_ARGS) 158 { 159 int error; 160 161 error = sysctl_handle_int(oidp, arg1, arg2, req); 162 if (error == 0) { 163 RANGECHK(V_ipport_lowfirstauto, 1, IPPORT_RESERVED - 1); 164 RANGECHK(V_ipport_lowlastauto, 1, IPPORT_RESERVED - 1); 165 RANGECHK(V_ipport_firstauto, IPPORT_RESERVED, IPPORT_MAX); 166 RANGECHK(V_ipport_lastauto, IPPORT_RESERVED, IPPORT_MAX); 167 RANGECHK(V_ipport_hifirstauto, IPPORT_RESERVED, IPPORT_MAX); 168 RANGECHK(V_ipport_hilastauto, IPPORT_RESERVED, IPPORT_MAX); 169 } 170 return (error); 171 } 172 173 #undef RANGECHK 174 175 static SYSCTL_NODE(_net_inet_ip, IPPROTO_IP, portrange, CTLFLAG_RW, 0, 176 "IP Ports"); 177 178 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, lowfirst, 179 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, 180 &VNET_NAME(ipport_lowfirstauto), 0, &sysctl_net_ipport_check, "I", ""); 181 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, lowlast, 182 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, 183 &VNET_NAME(ipport_lowlastauto), 0, &sysctl_net_ipport_check, "I", ""); 184 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, first, 185 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, 186 &VNET_NAME(ipport_firstauto), 0, &sysctl_net_ipport_check, "I", ""); 187 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, last, 188 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, 189 &VNET_NAME(ipport_lastauto), 0, &sysctl_net_ipport_check, "I", ""); 190 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, hifirst, 191 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, 192 &VNET_NAME(ipport_hifirstauto), 0, &sysctl_net_ipport_check, "I", ""); 193 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, hilast, 194 CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW, 195 &VNET_NAME(ipport_hilastauto), 0, &sysctl_net_ipport_check, "I", ""); 196 SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, reservedhigh, 197 CTLFLAG_VNET | CTLFLAG_RW | CTLFLAG_SECURE, 198 &VNET_NAME(ipport_reservedhigh), 0, ""); 199 SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, reservedlow, 200 CTLFLAG_RW|CTLFLAG_SECURE, &VNET_NAME(ipport_reservedlow), 0, ""); 201 SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomized, 202 CTLFLAG_VNET | CTLFLAG_RW, 203 &VNET_NAME(ipport_randomized), 0, "Enable random port allocation"); 204 SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomcps, 205 CTLFLAG_VNET | CTLFLAG_RW, 206 &VNET_NAME(ipport_randomcps), 0, "Maximum number of random port " 207 "allocations before switching to a sequental one"); 208 SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomtime, 209 CTLFLAG_VNET | CTLFLAG_RW, 210 &VNET_NAME(ipport_randomtime), 0, 211 "Minimum time to keep sequental port " 212 "allocation before switching to a random one"); 213 #endif /* INET */ 214 215 /* 216 * in_pcb.c: manage the Protocol Control Blocks. 217 * 218 * NOTE: It is assumed that most of these functions will be called with 219 * the pcbinfo lock held, and often, the inpcb lock held, as these utility 220 * functions often modify hash chains or addresses in pcbs. 221 */ 222 223 static struct inpcblbgroup * 224 in_pcblbgroup_alloc(struct inpcblbgrouphead *hdr, u_char vflag, 225 uint16_t port, const union in_dependaddr *addr, int size) 226 { 227 struct inpcblbgroup *grp; 228 size_t bytes; 229 230 bytes = __offsetof(struct inpcblbgroup, il_inp[size]); 231 grp = malloc(bytes, M_PCB, M_ZERO | M_NOWAIT); 232 if (!grp) 233 return (NULL); 234 grp->il_vflag = vflag; 235 grp->il_lport = port; 236 grp->il_dependladdr = *addr; 237 grp->il_inpsiz = size; 238 LIST_INSERT_HEAD(hdr, grp, il_list); 239 return (grp); 240 } 241 242 static void 243 in_pcblbgroup_free(struct inpcblbgroup *grp) 244 { 245 246 LIST_REMOVE(grp, il_list); 247 free(grp, M_TEMP); 248 } 249 250 static struct inpcblbgroup * 251 in_pcblbgroup_resize(struct inpcblbgrouphead *hdr, 252 struct inpcblbgroup *old_grp, int size) 253 { 254 struct inpcblbgroup *grp; 255 int i; 256 257 grp = in_pcblbgroup_alloc(hdr, old_grp->il_vflag, 258 old_grp->il_lport, &old_grp->il_dependladdr, size); 259 if (!grp) 260 return (NULL); 261 262 KASSERT(old_grp->il_inpcnt < grp->il_inpsiz, 263 ("invalid new local group size %d and old local group count %d", 264 grp->il_inpsiz, old_grp->il_inpcnt)); 265 266 for (i = 0; i < old_grp->il_inpcnt; ++i) 267 grp->il_inp[i] = old_grp->il_inp[i]; 268 grp->il_inpcnt = old_grp->il_inpcnt; 269 in_pcblbgroup_free(old_grp); 270 return (grp); 271 } 272 273 /* 274 * PCB at index 'i' is removed from the group. Pull up the ones below il_inp[i] 275 * and shrink group if possible. 276 */ 277 static void 278 in_pcblbgroup_reorder(struct inpcblbgrouphead *hdr, struct inpcblbgroup **grpp, 279 int i) 280 { 281 struct inpcblbgroup *grp = *grpp; 282 283 for (; i + 1 < grp->il_inpcnt; ++i) 284 grp->il_inp[i] = grp->il_inp[i + 1]; 285 grp->il_inpcnt--; 286 287 if (grp->il_inpsiz > INPCBLBGROUP_SIZMIN && 288 grp->il_inpcnt <= (grp->il_inpsiz / 4)) { 289 /* Shrink this group. */ 290 struct inpcblbgroup *new_grp = 291 in_pcblbgroup_resize(hdr, grp, grp->il_inpsiz / 2); 292 if (new_grp) 293 *grpp = new_grp; 294 } 295 return; 296 } 297 298 /* 299 * Add PCB to load balance group for SO_REUSEPORT_LB option. 300 */ 301 static int 302 in_pcbinslbgrouphash(struct inpcb *inp) 303 { 304 struct inpcbinfo *pcbinfo; 305 struct inpcblbgrouphead *hdr; 306 struct inpcblbgroup *grp; 307 uint16_t hashmask, lport; 308 uint32_t group_index; 309 struct ucred *cred; 310 static int limit_logged = 0; 311 312 pcbinfo = inp->inp_pcbinfo; 313 314 INP_WLOCK_ASSERT(inp); 315 INP_HASH_WLOCK_ASSERT(pcbinfo); 316 317 if (pcbinfo->ipi_lbgrouphashbase == NULL) 318 return (0); 319 320 hashmask = pcbinfo->ipi_lbgrouphashmask; 321 lport = inp->inp_lport; 322 group_index = INP_PCBLBGROUP_PORTHASH(lport, hashmask); 323 hdr = &pcbinfo->ipi_lbgrouphashbase[group_index]; 324 325 /* 326 * Don't allow jailed socket to join local group. 327 */ 328 if (inp->inp_socket != NULL) 329 cred = inp->inp_socket->so_cred; 330 else 331 cred = NULL; 332 if (cred != NULL && jailed(cred)) 333 return (0); 334 335 #ifdef INET6 336 /* 337 * Don't allow IPv4 mapped INET6 wild socket. 338 */ 339 if ((inp->inp_vflag & INP_IPV4) && 340 inp->inp_laddr.s_addr == INADDR_ANY && 341 INP_CHECK_SOCKAF(inp->inp_socket, AF_INET6)) { 342 return (0); 343 } 344 #endif 345 346 hdr = &pcbinfo->ipi_lbgrouphashbase[ 347 INP_PCBLBGROUP_PORTHASH(inp->inp_lport, 348 pcbinfo->ipi_lbgrouphashmask)]; 349 LIST_FOREACH(grp, hdr, il_list) { 350 if (grp->il_vflag == inp->inp_vflag && 351 grp->il_lport == inp->inp_lport && 352 memcmp(&grp->il_dependladdr, 353 &inp->inp_inc.inc_ie.ie_dependladdr, 354 sizeof(grp->il_dependladdr)) == 0) { 355 break; 356 } 357 } 358 if (grp == NULL) { 359 /* Create new load balance group. */ 360 grp = in_pcblbgroup_alloc(hdr, inp->inp_vflag, 361 inp->inp_lport, &inp->inp_inc.inc_ie.ie_dependladdr, 362 INPCBLBGROUP_SIZMIN); 363 if (!grp) 364 return (ENOBUFS); 365 } else if (grp->il_inpcnt == grp->il_inpsiz) { 366 if (grp->il_inpsiz >= INPCBLBGROUP_SIZMAX) { 367 if (!limit_logged) { 368 limit_logged = 1; 369 printf("lb group port %d, limit reached\n", 370 ntohs(grp->il_lport)); 371 } 372 return (0); 373 } 374 375 /* Expand this local group. */ 376 grp = in_pcblbgroup_resize(hdr, grp, grp->il_inpsiz * 2); 377 if (!grp) 378 return (ENOBUFS); 379 } 380 381 KASSERT(grp->il_inpcnt < grp->il_inpsiz, 382 ("invalid local group size %d and count %d", 383 grp->il_inpsiz, grp->il_inpcnt)); 384 385 grp->il_inp[grp->il_inpcnt] = inp; 386 grp->il_inpcnt++; 387 return (0); 388 } 389 390 /* 391 * Remove PCB from load balance group. 392 */ 393 static void 394 in_pcbremlbgrouphash(struct inpcb *inp) 395 { 396 struct inpcbinfo *pcbinfo; 397 struct inpcblbgrouphead *hdr; 398 struct inpcblbgroup *grp; 399 int i; 400 401 pcbinfo = inp->inp_pcbinfo; 402 403 INP_WLOCK_ASSERT(inp); 404 INP_HASH_WLOCK_ASSERT(pcbinfo); 405 406 if (pcbinfo->ipi_lbgrouphashbase == NULL) 407 return; 408 409 hdr = &pcbinfo->ipi_lbgrouphashbase[ 410 INP_PCBLBGROUP_PORTHASH(inp->inp_lport, 411 pcbinfo->ipi_lbgrouphashmask)]; 412 413 LIST_FOREACH(grp, hdr, il_list) { 414 for (i = 0; i < grp->il_inpcnt; ++i) { 415 if (grp->il_inp[i] != inp) 416 continue; 417 418 if (grp->il_inpcnt == 1) { 419 /* We are the last, free this local group. */ 420 in_pcblbgroup_free(grp); 421 } else { 422 /* Pull up inpcbs, shrink group if possible. */ 423 in_pcblbgroup_reorder(hdr, &grp, i); 424 } 425 return; 426 } 427 } 428 } 429 430 /* 431 * Different protocols initialize their inpcbs differently - giving 432 * different name to the lock. But they all are disposed the same. 433 */ 434 static void 435 inpcb_fini(void *mem, int size) 436 { 437 struct inpcb *inp = mem; 438 439 INP_LOCK_DESTROY(inp); 440 } 441 442 /* 443 * Initialize an inpcbinfo -- we should be able to reduce the number of 444 * arguments in time. 445 */ 446 void 447 in_pcbinfo_init(struct inpcbinfo *pcbinfo, const char *name, 448 struct inpcbhead *listhead, int hash_nelements, int porthash_nelements, 449 char *inpcbzone_name, uma_init inpcbzone_init, u_int hashfields) 450 { 451 452 INP_INFO_LOCK_INIT(pcbinfo, name); 453 INP_HASH_LOCK_INIT(pcbinfo, "pcbinfohash"); /* XXXRW: argument? */ 454 INP_LIST_LOCK_INIT(pcbinfo, "pcbinfolist"); 455 #ifdef VIMAGE 456 pcbinfo->ipi_vnet = curvnet; 457 #endif 458 pcbinfo->ipi_listhead = listhead; 459 CK_LIST_INIT(pcbinfo->ipi_listhead); 460 pcbinfo->ipi_count = 0; 461 pcbinfo->ipi_hashbase = hashinit(hash_nelements, M_PCB, 462 &pcbinfo->ipi_hashmask); 463 pcbinfo->ipi_porthashbase = hashinit(porthash_nelements, M_PCB, 464 &pcbinfo->ipi_porthashmask); 465 pcbinfo->ipi_lbgrouphashbase = hashinit(hash_nelements, M_PCB, 466 &pcbinfo->ipi_lbgrouphashmask); 467 #ifdef PCBGROUP 468 in_pcbgroup_init(pcbinfo, hashfields, hash_nelements); 469 #endif 470 pcbinfo->ipi_zone = uma_zcreate(inpcbzone_name, sizeof(struct inpcb), 471 NULL, NULL, inpcbzone_init, inpcb_fini, UMA_ALIGN_PTR, 0); 472 uma_zone_set_max(pcbinfo->ipi_zone, maxsockets); 473 uma_zone_set_warning(pcbinfo->ipi_zone, 474 "kern.ipc.maxsockets limit reached"); 475 } 476 477 /* 478 * Destroy an inpcbinfo. 479 */ 480 void 481 in_pcbinfo_destroy(struct inpcbinfo *pcbinfo) 482 { 483 484 KASSERT(pcbinfo->ipi_count == 0, 485 ("%s: ipi_count = %u", __func__, pcbinfo->ipi_count)); 486 487 hashdestroy(pcbinfo->ipi_hashbase, M_PCB, pcbinfo->ipi_hashmask); 488 hashdestroy(pcbinfo->ipi_porthashbase, M_PCB, 489 pcbinfo->ipi_porthashmask); 490 hashdestroy(pcbinfo->ipi_lbgrouphashbase, M_PCB, 491 pcbinfo->ipi_lbgrouphashmask); 492 #ifdef PCBGROUP 493 in_pcbgroup_destroy(pcbinfo); 494 #endif 495 uma_zdestroy(pcbinfo->ipi_zone); 496 INP_LIST_LOCK_DESTROY(pcbinfo); 497 INP_HASH_LOCK_DESTROY(pcbinfo); 498 INP_INFO_LOCK_DESTROY(pcbinfo); 499 } 500 501 /* 502 * Allocate a PCB and associate it with the socket. 503 * On success return with the PCB locked. 504 */ 505 int 506 in_pcballoc(struct socket *so, struct inpcbinfo *pcbinfo) 507 { 508 struct inpcb *inp; 509 int error; 510 511 #ifdef INVARIANTS 512 if (pcbinfo == &V_tcbinfo) { 513 INP_INFO_RLOCK_ASSERT(pcbinfo); 514 } else { 515 INP_INFO_WLOCK_ASSERT(pcbinfo); 516 } 517 #endif 518 519 error = 0; 520 inp = uma_zalloc(pcbinfo->ipi_zone, M_NOWAIT); 521 if (inp == NULL) 522 return (ENOBUFS); 523 bzero(&inp->inp_start_zero, inp_zero_size); 524 inp->inp_pcbinfo = pcbinfo; 525 inp->inp_socket = so; 526 inp->inp_cred = crhold(so->so_cred); 527 inp->inp_inc.inc_fibnum = so->so_fibnum; 528 #ifdef MAC 529 error = mac_inpcb_init(inp, M_NOWAIT); 530 if (error != 0) 531 goto out; 532 mac_inpcb_create(so, inp); 533 #endif 534 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 535 error = ipsec_init_pcbpolicy(inp); 536 if (error != 0) { 537 #ifdef MAC 538 mac_inpcb_destroy(inp); 539 #endif 540 goto out; 541 } 542 #endif /*IPSEC*/ 543 #ifdef INET6 544 if (INP_SOCKAF(so) == AF_INET6) { 545 inp->inp_vflag |= INP_IPV6PROTO; 546 if (V_ip6_v6only) 547 inp->inp_flags |= IN6P_IPV6_V6ONLY; 548 } 549 #endif 550 INP_WLOCK(inp); 551 INP_LIST_WLOCK(pcbinfo); 552 CK_LIST_INSERT_HEAD(pcbinfo->ipi_listhead, inp, inp_list); 553 pcbinfo->ipi_count++; 554 so->so_pcb = (caddr_t)inp; 555 #ifdef INET6 556 if (V_ip6_auto_flowlabel) 557 inp->inp_flags |= IN6P_AUTOFLOWLABEL; 558 #endif 559 inp->inp_gencnt = ++pcbinfo->ipi_gencnt; 560 refcount_init(&inp->inp_refcount, 1); /* Reference from inpcbinfo */ 561 562 /* 563 * Routes in inpcb's can cache L2 as well; they are guaranteed 564 * to be cleaned up. 565 */ 566 inp->inp_route.ro_flags = RT_LLE_CACHE; 567 INP_LIST_WUNLOCK(pcbinfo); 568 #if defined(IPSEC) || defined(IPSEC_SUPPORT) || defined(MAC) 569 out: 570 if (error != 0) { 571 crfree(inp->inp_cred); 572 uma_zfree(pcbinfo->ipi_zone, inp); 573 } 574 #endif 575 return (error); 576 } 577 578 #ifdef INET 579 int 580 in_pcbbind(struct inpcb *inp, struct sockaddr *nam, struct ucred *cred) 581 { 582 int anonport, error; 583 584 INP_WLOCK_ASSERT(inp); 585 INP_HASH_WLOCK_ASSERT(inp->inp_pcbinfo); 586 587 if (inp->inp_lport != 0 || inp->inp_laddr.s_addr != INADDR_ANY) 588 return (EINVAL); 589 anonport = nam == NULL || ((struct sockaddr_in *)nam)->sin_port == 0; 590 error = in_pcbbind_setup(inp, nam, &inp->inp_laddr.s_addr, 591 &inp->inp_lport, cred); 592 if (error) 593 return (error); 594 if (in_pcbinshash(inp) != 0) { 595 inp->inp_laddr.s_addr = INADDR_ANY; 596 inp->inp_lport = 0; 597 return (EAGAIN); 598 } 599 if (anonport) 600 inp->inp_flags |= INP_ANONPORT; 601 return (0); 602 } 603 #endif 604 605 /* 606 * Select a local port (number) to use. 607 */ 608 #if defined(INET) || defined(INET6) 609 int 610 in_pcb_lport(struct inpcb *inp, struct in_addr *laddrp, u_short *lportp, 611 struct ucred *cred, int lookupflags) 612 { 613 struct inpcbinfo *pcbinfo; 614 struct inpcb *tmpinp; 615 unsigned short *lastport; 616 int count, dorandom, error; 617 u_short aux, first, last, lport; 618 #ifdef INET 619 struct in_addr laddr; 620 #endif 621 622 pcbinfo = inp->inp_pcbinfo; 623 624 /* 625 * Because no actual state changes occur here, a global write lock on 626 * the pcbinfo isn't required. 627 */ 628 INP_LOCK_ASSERT(inp); 629 INP_HASH_LOCK_ASSERT(pcbinfo); 630 631 if (inp->inp_flags & INP_HIGHPORT) { 632 first = V_ipport_hifirstauto; /* sysctl */ 633 last = V_ipport_hilastauto; 634 lastport = &pcbinfo->ipi_lasthi; 635 } else if (inp->inp_flags & INP_LOWPORT) { 636 error = priv_check_cred(cred, PRIV_NETINET_RESERVEDPORT, 0); 637 if (error) 638 return (error); 639 first = V_ipport_lowfirstauto; /* 1023 */ 640 last = V_ipport_lowlastauto; /* 600 */ 641 lastport = &pcbinfo->ipi_lastlow; 642 } else { 643 first = V_ipport_firstauto; /* sysctl */ 644 last = V_ipport_lastauto; 645 lastport = &pcbinfo->ipi_lastport; 646 } 647 /* 648 * For UDP(-Lite), use random port allocation as long as the user 649 * allows it. For TCP (and as of yet unknown) connections, 650 * use random port allocation only if the user allows it AND 651 * ipport_tick() allows it. 652 */ 653 if (V_ipport_randomized && 654 (!V_ipport_stoprandom || pcbinfo == &V_udbinfo || 655 pcbinfo == &V_ulitecbinfo)) 656 dorandom = 1; 657 else 658 dorandom = 0; 659 /* 660 * It makes no sense to do random port allocation if 661 * we have the only port available. 662 */ 663 if (first == last) 664 dorandom = 0; 665 /* Make sure to not include UDP(-Lite) packets in the count. */ 666 if (pcbinfo != &V_udbinfo || pcbinfo != &V_ulitecbinfo) 667 V_ipport_tcpallocs++; 668 /* 669 * Instead of having two loops further down counting up or down 670 * make sure that first is always <= last and go with only one 671 * code path implementing all logic. 672 */ 673 if (first > last) { 674 aux = first; 675 first = last; 676 last = aux; 677 } 678 679 #ifdef INET 680 /* Make the compiler happy. */ 681 laddr.s_addr = 0; 682 if ((inp->inp_vflag & (INP_IPV4|INP_IPV6)) == INP_IPV4) { 683 KASSERT(laddrp != NULL, ("%s: laddrp NULL for v4 inp %p", 684 __func__, inp)); 685 laddr = *laddrp; 686 } 687 #endif 688 tmpinp = NULL; /* Make compiler happy. */ 689 lport = *lportp; 690 691 if (dorandom) 692 *lastport = first + (arc4random() % (last - first)); 693 694 count = last - first; 695 696 do { 697 if (count-- < 0) /* completely used? */ 698 return (EADDRNOTAVAIL); 699 ++*lastport; 700 if (*lastport < first || *lastport > last) 701 *lastport = first; 702 lport = htons(*lastport); 703 704 #ifdef INET6 705 if ((inp->inp_vflag & INP_IPV6) != 0) 706 tmpinp = in6_pcblookup_local(pcbinfo, 707 &inp->in6p_laddr, lport, lookupflags, cred); 708 #endif 709 #if defined(INET) && defined(INET6) 710 else 711 #endif 712 #ifdef INET 713 tmpinp = in_pcblookup_local(pcbinfo, laddr, 714 lport, lookupflags, cred); 715 #endif 716 } while (tmpinp != NULL); 717 718 #ifdef INET 719 if ((inp->inp_vflag & (INP_IPV4|INP_IPV6)) == INP_IPV4) 720 laddrp->s_addr = laddr.s_addr; 721 #endif 722 *lportp = lport; 723 724 return (0); 725 } 726 727 /* 728 * Return cached socket options. 729 */ 730 int 731 inp_so_options(const struct inpcb *inp) 732 { 733 int so_options; 734 735 so_options = 0; 736 737 if ((inp->inp_flags2 & INP_REUSEPORT_LB) != 0) 738 so_options |= SO_REUSEPORT_LB; 739 if ((inp->inp_flags2 & INP_REUSEPORT) != 0) 740 so_options |= SO_REUSEPORT; 741 if ((inp->inp_flags2 & INP_REUSEADDR) != 0) 742 so_options |= SO_REUSEADDR; 743 return (so_options); 744 } 745 #endif /* INET || INET6 */ 746 747 /* 748 * Check if a new BINDMULTI socket is allowed to be created. 749 * 750 * ni points to the new inp. 751 * oi points to the exisitng inp. 752 * 753 * This checks whether the existing inp also has BINDMULTI and 754 * whether the credentials match. 755 */ 756 int 757 in_pcbbind_check_bindmulti(const struct inpcb *ni, const struct inpcb *oi) 758 { 759 /* Check permissions match */ 760 if ((ni->inp_flags2 & INP_BINDMULTI) && 761 (ni->inp_cred->cr_uid != 762 oi->inp_cred->cr_uid)) 763 return (0); 764 765 /* Check the existing inp has BINDMULTI set */ 766 if ((ni->inp_flags2 & INP_BINDMULTI) && 767 ((oi->inp_flags2 & INP_BINDMULTI) == 0)) 768 return (0); 769 770 /* 771 * We're okay - either INP_BINDMULTI isn't set on ni, or 772 * it is and it matches the checks. 773 */ 774 return (1); 775 } 776 777 #ifdef INET 778 /* 779 * Set up a bind operation on a PCB, performing port allocation 780 * as required, but do not actually modify the PCB. Callers can 781 * either complete the bind by setting inp_laddr/inp_lport and 782 * calling in_pcbinshash(), or they can just use the resulting 783 * port and address to authorise the sending of a once-off packet. 784 * 785 * On error, the values of *laddrp and *lportp are not changed. 786 */ 787 int 788 in_pcbbind_setup(struct inpcb *inp, struct sockaddr *nam, in_addr_t *laddrp, 789 u_short *lportp, struct ucred *cred) 790 { 791 struct socket *so = inp->inp_socket; 792 struct sockaddr_in *sin; 793 struct inpcbinfo *pcbinfo = inp->inp_pcbinfo; 794 struct in_addr laddr; 795 u_short lport = 0; 796 int lookupflags = 0, reuseport = (so->so_options & SO_REUSEPORT); 797 int error; 798 799 /* 800 * XXX: Maybe we could let SO_REUSEPORT_LB set SO_REUSEPORT bit here 801 * so that we don't have to add to the (already messy) code below. 802 */ 803 int reuseport_lb = (so->so_options & SO_REUSEPORT_LB); 804 805 /* 806 * No state changes, so read locks are sufficient here. 807 */ 808 INP_LOCK_ASSERT(inp); 809 INP_HASH_LOCK_ASSERT(pcbinfo); 810 811 if (CK_STAILQ_EMPTY(&V_in_ifaddrhead)) /* XXX broken! */ 812 return (EADDRNOTAVAIL); 813 laddr.s_addr = *laddrp; 814 if (nam != NULL && laddr.s_addr != INADDR_ANY) 815 return (EINVAL); 816 if ((so->so_options & (SO_REUSEADDR|SO_REUSEPORT|SO_REUSEPORT_LB)) == 0) 817 lookupflags = INPLOOKUP_WILDCARD; 818 if (nam == NULL) { 819 if ((error = prison_local_ip4(cred, &laddr)) != 0) 820 return (error); 821 } else { 822 sin = (struct sockaddr_in *)nam; 823 if (nam->sa_len != sizeof (*sin)) 824 return (EINVAL); 825 #ifdef notdef 826 /* 827 * We should check the family, but old programs 828 * incorrectly fail to initialize it. 829 */ 830 if (sin->sin_family != AF_INET) 831 return (EAFNOSUPPORT); 832 #endif 833 error = prison_local_ip4(cred, &sin->sin_addr); 834 if (error) 835 return (error); 836 if (sin->sin_port != *lportp) { 837 /* Don't allow the port to change. */ 838 if (*lportp != 0) 839 return (EINVAL); 840 lport = sin->sin_port; 841 } 842 /* NB: lport is left as 0 if the port isn't being changed. */ 843 if (IN_MULTICAST(ntohl(sin->sin_addr.s_addr))) { 844 /* 845 * Treat SO_REUSEADDR as SO_REUSEPORT for multicast; 846 * allow complete duplication of binding if 847 * SO_REUSEPORT is set, or if SO_REUSEADDR is set 848 * and a multicast address is bound on both 849 * new and duplicated sockets. 850 */ 851 if ((so->so_options & (SO_REUSEADDR|SO_REUSEPORT)) != 0) 852 reuseport = SO_REUSEADDR|SO_REUSEPORT; 853 /* 854 * XXX: How to deal with SO_REUSEPORT_LB here? 855 * Treat same as SO_REUSEPORT for now. 856 */ 857 if ((so->so_options & 858 (SO_REUSEADDR|SO_REUSEPORT_LB)) != 0) 859 reuseport_lb = SO_REUSEADDR|SO_REUSEPORT_LB; 860 } else if (sin->sin_addr.s_addr != INADDR_ANY) { 861 sin->sin_port = 0; /* yech... */ 862 bzero(&sin->sin_zero, sizeof(sin->sin_zero)); 863 /* 864 * Is the address a local IP address? 865 * If INP_BINDANY is set, then the socket may be bound 866 * to any endpoint address, local or not. 867 */ 868 if ((inp->inp_flags & INP_BINDANY) == 0 && 869 ifa_ifwithaddr_check((struct sockaddr *)sin) == 0) 870 return (EADDRNOTAVAIL); 871 } 872 laddr = sin->sin_addr; 873 if (lport) { 874 struct inpcb *t; 875 struct tcptw *tw; 876 877 /* GROSS */ 878 if (ntohs(lport) <= V_ipport_reservedhigh && 879 ntohs(lport) >= V_ipport_reservedlow && 880 priv_check_cred(cred, PRIV_NETINET_RESERVEDPORT, 881 0)) 882 return (EACCES); 883 if (!IN_MULTICAST(ntohl(sin->sin_addr.s_addr)) && 884 priv_check_cred(inp->inp_cred, 885 PRIV_NETINET_REUSEPORT, 0) != 0) { 886 t = in_pcblookup_local(pcbinfo, sin->sin_addr, 887 lport, INPLOOKUP_WILDCARD, cred); 888 /* 889 * XXX 890 * This entire block sorely needs a rewrite. 891 */ 892 if (t && 893 ((inp->inp_flags2 & INP_BINDMULTI) == 0) && 894 ((t->inp_flags & INP_TIMEWAIT) == 0) && 895 (so->so_type != SOCK_STREAM || 896 ntohl(t->inp_faddr.s_addr) == INADDR_ANY) && 897 (ntohl(sin->sin_addr.s_addr) != INADDR_ANY || 898 ntohl(t->inp_laddr.s_addr) != INADDR_ANY || 899 (t->inp_flags2 & INP_REUSEPORT) || 900 (t->inp_flags2 & INP_REUSEPORT_LB) == 0) && 901 (inp->inp_cred->cr_uid != 902 t->inp_cred->cr_uid)) 903 return (EADDRINUSE); 904 905 /* 906 * If the socket is a BINDMULTI socket, then 907 * the credentials need to match and the 908 * original socket also has to have been bound 909 * with BINDMULTI. 910 */ 911 if (t && (! in_pcbbind_check_bindmulti(inp, t))) 912 return (EADDRINUSE); 913 } 914 t = in_pcblookup_local(pcbinfo, sin->sin_addr, 915 lport, lookupflags, cred); 916 if (t && (t->inp_flags & INP_TIMEWAIT)) { 917 /* 918 * XXXRW: If an incpb has had its timewait 919 * state recycled, we treat the address as 920 * being in use (for now). This is better 921 * than a panic, but not desirable. 922 */ 923 tw = intotw(t); 924 if (tw == NULL || 925 ((reuseport & tw->tw_so_options) == 0 && 926 (reuseport_lb & 927 tw->tw_so_options) == 0)) { 928 return (EADDRINUSE); 929 } 930 } else if (t && 931 ((inp->inp_flags2 & INP_BINDMULTI) == 0) && 932 (reuseport & inp_so_options(t)) == 0 && 933 (reuseport_lb & inp_so_options(t)) == 0) { 934 #ifdef INET6 935 if (ntohl(sin->sin_addr.s_addr) != 936 INADDR_ANY || 937 ntohl(t->inp_laddr.s_addr) != 938 INADDR_ANY || 939 (inp->inp_vflag & INP_IPV6PROTO) == 0 || 940 (t->inp_vflag & INP_IPV6PROTO) == 0) 941 #endif 942 return (EADDRINUSE); 943 if (t && (! in_pcbbind_check_bindmulti(inp, t))) 944 return (EADDRINUSE); 945 } 946 } 947 } 948 if (*lportp != 0) 949 lport = *lportp; 950 if (lport == 0) { 951 error = in_pcb_lport(inp, &laddr, &lport, cred, lookupflags); 952 if (error != 0) 953 return (error); 954 955 } 956 *laddrp = laddr.s_addr; 957 *lportp = lport; 958 return (0); 959 } 960 961 /* 962 * Connect from a socket to a specified address. 963 * Both address and port must be specified in argument sin. 964 * If don't have a local address for this socket yet, 965 * then pick one. 966 */ 967 int 968 in_pcbconnect_mbuf(struct inpcb *inp, struct sockaddr *nam, 969 struct ucred *cred, struct mbuf *m) 970 { 971 u_short lport, fport; 972 in_addr_t laddr, faddr; 973 int anonport, error; 974 975 INP_WLOCK_ASSERT(inp); 976 INP_HASH_WLOCK_ASSERT(inp->inp_pcbinfo); 977 978 lport = inp->inp_lport; 979 laddr = inp->inp_laddr.s_addr; 980 anonport = (lport == 0); 981 error = in_pcbconnect_setup(inp, nam, &laddr, &lport, &faddr, &fport, 982 NULL, cred); 983 if (error) 984 return (error); 985 986 /* Do the initial binding of the local address if required. */ 987 if (inp->inp_laddr.s_addr == INADDR_ANY && inp->inp_lport == 0) { 988 inp->inp_lport = lport; 989 inp->inp_laddr.s_addr = laddr; 990 if (in_pcbinshash(inp) != 0) { 991 inp->inp_laddr.s_addr = INADDR_ANY; 992 inp->inp_lport = 0; 993 return (EAGAIN); 994 } 995 } 996 997 /* Commit the remaining changes. */ 998 inp->inp_lport = lport; 999 inp->inp_laddr.s_addr = laddr; 1000 inp->inp_faddr.s_addr = faddr; 1001 inp->inp_fport = fport; 1002 in_pcbrehash_mbuf(inp, m); 1003 1004 if (anonport) 1005 inp->inp_flags |= INP_ANONPORT; 1006 return (0); 1007 } 1008 1009 int 1010 in_pcbconnect(struct inpcb *inp, struct sockaddr *nam, struct ucred *cred) 1011 { 1012 1013 return (in_pcbconnect_mbuf(inp, nam, cred, NULL)); 1014 } 1015 1016 /* 1017 * Do proper source address selection on an unbound socket in case 1018 * of connect. Take jails into account as well. 1019 */ 1020 int 1021 in_pcbladdr(struct inpcb *inp, struct in_addr *faddr, struct in_addr *laddr, 1022 struct ucred *cred) 1023 { 1024 struct ifaddr *ifa; 1025 struct sockaddr *sa; 1026 struct sockaddr_in *sin; 1027 struct route sro; 1028 int error; 1029 1030 KASSERT(laddr != NULL, ("%s: laddr NULL", __func__)); 1031 /* 1032 * Bypass source address selection and use the primary jail IP 1033 * if requested. 1034 */ 1035 if (cred != NULL && !prison_saddrsel_ip4(cred, laddr)) 1036 return (0); 1037 1038 error = 0; 1039 bzero(&sro, sizeof(sro)); 1040 1041 sin = (struct sockaddr_in *)&sro.ro_dst; 1042 sin->sin_family = AF_INET; 1043 sin->sin_len = sizeof(struct sockaddr_in); 1044 sin->sin_addr.s_addr = faddr->s_addr; 1045 1046 /* 1047 * If route is known our src addr is taken from the i/f, 1048 * else punt. 1049 * 1050 * Find out route to destination. 1051 */ 1052 if ((inp->inp_socket->so_options & SO_DONTROUTE) == 0) 1053 in_rtalloc_ign(&sro, 0, inp->inp_inc.inc_fibnum); 1054 1055 /* 1056 * If we found a route, use the address corresponding to 1057 * the outgoing interface. 1058 * 1059 * Otherwise assume faddr is reachable on a directly connected 1060 * network and try to find a corresponding interface to take 1061 * the source address from. 1062 */ 1063 NET_EPOCH_ENTER(); 1064 if (sro.ro_rt == NULL || sro.ro_rt->rt_ifp == NULL) { 1065 struct in_ifaddr *ia; 1066 struct ifnet *ifp; 1067 1068 ia = ifatoia(ifa_ifwithdstaddr((struct sockaddr *)sin, 1069 inp->inp_socket->so_fibnum)); 1070 if (ia == NULL) { 1071 ia = ifatoia(ifa_ifwithnet((struct sockaddr *)sin, 0, 1072 inp->inp_socket->so_fibnum)); 1073 1074 } 1075 if (ia == NULL) { 1076 error = ENETUNREACH; 1077 goto done; 1078 } 1079 1080 if (cred == NULL || !prison_flag(cred, PR_IP4)) { 1081 laddr->s_addr = ia->ia_addr.sin_addr.s_addr; 1082 goto done; 1083 } 1084 1085 ifp = ia->ia_ifp; 1086 ia = NULL; 1087 IF_ADDR_RLOCK(ifp); 1088 CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 1089 1090 sa = ifa->ifa_addr; 1091 if (sa->sa_family != AF_INET) 1092 continue; 1093 sin = (struct sockaddr_in *)sa; 1094 if (prison_check_ip4(cred, &sin->sin_addr) == 0) { 1095 ia = (struct in_ifaddr *)ifa; 1096 break; 1097 } 1098 } 1099 if (ia != NULL) { 1100 laddr->s_addr = ia->ia_addr.sin_addr.s_addr; 1101 IF_ADDR_RUNLOCK(ifp); 1102 goto done; 1103 } 1104 IF_ADDR_RUNLOCK(ifp); 1105 1106 /* 3. As a last resort return the 'default' jail address. */ 1107 error = prison_get_ip4(cred, laddr); 1108 goto done; 1109 } 1110 1111 /* 1112 * If the outgoing interface on the route found is not 1113 * a loopback interface, use the address from that interface. 1114 * In case of jails do those three steps: 1115 * 1. check if the interface address belongs to the jail. If so use it. 1116 * 2. check if we have any address on the outgoing interface 1117 * belonging to this jail. If so use it. 1118 * 3. as a last resort return the 'default' jail address. 1119 */ 1120 if ((sro.ro_rt->rt_ifp->if_flags & IFF_LOOPBACK) == 0) { 1121 struct in_ifaddr *ia; 1122 struct ifnet *ifp; 1123 1124 /* If not jailed, use the default returned. */ 1125 if (cred == NULL || !prison_flag(cred, PR_IP4)) { 1126 ia = (struct in_ifaddr *)sro.ro_rt->rt_ifa; 1127 laddr->s_addr = ia->ia_addr.sin_addr.s_addr; 1128 goto done; 1129 } 1130 1131 /* Jailed. */ 1132 /* 1. Check if the iface address belongs to the jail. */ 1133 sin = (struct sockaddr_in *)sro.ro_rt->rt_ifa->ifa_addr; 1134 if (prison_check_ip4(cred, &sin->sin_addr) == 0) { 1135 ia = (struct in_ifaddr *)sro.ro_rt->rt_ifa; 1136 laddr->s_addr = ia->ia_addr.sin_addr.s_addr; 1137 goto done; 1138 } 1139 1140 /* 1141 * 2. Check if we have any address on the outgoing interface 1142 * belonging to this jail. 1143 */ 1144 ia = NULL; 1145 ifp = sro.ro_rt->rt_ifp; 1146 IF_ADDR_RLOCK(ifp); 1147 CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 1148 sa = ifa->ifa_addr; 1149 if (sa->sa_family != AF_INET) 1150 continue; 1151 sin = (struct sockaddr_in *)sa; 1152 if (prison_check_ip4(cred, &sin->sin_addr) == 0) { 1153 ia = (struct in_ifaddr *)ifa; 1154 break; 1155 } 1156 } 1157 if (ia != NULL) { 1158 laddr->s_addr = ia->ia_addr.sin_addr.s_addr; 1159 IF_ADDR_RUNLOCK(ifp); 1160 goto done; 1161 } 1162 IF_ADDR_RUNLOCK(ifp); 1163 1164 /* 3. As a last resort return the 'default' jail address. */ 1165 error = prison_get_ip4(cred, laddr); 1166 goto done; 1167 } 1168 1169 /* 1170 * The outgoing interface is marked with 'loopback net', so a route 1171 * to ourselves is here. 1172 * Try to find the interface of the destination address and then 1173 * take the address from there. That interface is not necessarily 1174 * a loopback interface. 1175 * In case of jails, check that it is an address of the jail 1176 * and if we cannot find, fall back to the 'default' jail address. 1177 */ 1178 if ((sro.ro_rt->rt_ifp->if_flags & IFF_LOOPBACK) != 0) { 1179 struct sockaddr_in sain; 1180 struct in_ifaddr *ia; 1181 1182 bzero(&sain, sizeof(struct sockaddr_in)); 1183 sain.sin_family = AF_INET; 1184 sain.sin_len = sizeof(struct sockaddr_in); 1185 sain.sin_addr.s_addr = faddr->s_addr; 1186 1187 ia = ifatoia(ifa_ifwithdstaddr(sintosa(&sain), 1188 inp->inp_socket->so_fibnum)); 1189 if (ia == NULL) 1190 ia = ifatoia(ifa_ifwithnet(sintosa(&sain), 0, 1191 inp->inp_socket->so_fibnum)); 1192 if (ia == NULL) 1193 ia = ifatoia(ifa_ifwithaddr(sintosa(&sain))); 1194 1195 if (cred == NULL || !prison_flag(cred, PR_IP4)) { 1196 if (ia == NULL) { 1197 error = ENETUNREACH; 1198 goto done; 1199 } 1200 laddr->s_addr = ia->ia_addr.sin_addr.s_addr; 1201 goto done; 1202 } 1203 1204 /* Jailed. */ 1205 if (ia != NULL) { 1206 struct ifnet *ifp; 1207 1208 ifp = ia->ia_ifp; 1209 ia = NULL; 1210 IF_ADDR_RLOCK(ifp); 1211 CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 1212 1213 sa = ifa->ifa_addr; 1214 if (sa->sa_family != AF_INET) 1215 continue; 1216 sin = (struct sockaddr_in *)sa; 1217 if (prison_check_ip4(cred, 1218 &sin->sin_addr) == 0) { 1219 ia = (struct in_ifaddr *)ifa; 1220 break; 1221 } 1222 } 1223 if (ia != NULL) { 1224 laddr->s_addr = ia->ia_addr.sin_addr.s_addr; 1225 IF_ADDR_RUNLOCK(ifp); 1226 goto done; 1227 } 1228 IF_ADDR_RUNLOCK(ifp); 1229 } 1230 1231 /* 3. As a last resort return the 'default' jail address. */ 1232 error = prison_get_ip4(cred, laddr); 1233 goto done; 1234 } 1235 1236 done: 1237 NET_EPOCH_EXIT(); 1238 if (sro.ro_rt != NULL) 1239 RTFREE(sro.ro_rt); 1240 return (error); 1241 } 1242 1243 /* 1244 * Set up for a connect from a socket to the specified address. 1245 * On entry, *laddrp and *lportp should contain the current local 1246 * address and port for the PCB; these are updated to the values 1247 * that should be placed in inp_laddr and inp_lport to complete 1248 * the connect. 1249 * 1250 * On success, *faddrp and *fportp will be set to the remote address 1251 * and port. These are not updated in the error case. 1252 * 1253 * If the operation fails because the connection already exists, 1254 * *oinpp will be set to the PCB of that connection so that the 1255 * caller can decide to override it. In all other cases, *oinpp 1256 * is set to NULL. 1257 */ 1258 int 1259 in_pcbconnect_setup(struct inpcb *inp, struct sockaddr *nam, 1260 in_addr_t *laddrp, u_short *lportp, in_addr_t *faddrp, u_short *fportp, 1261 struct inpcb **oinpp, struct ucred *cred) 1262 { 1263 struct rm_priotracker in_ifa_tracker; 1264 struct sockaddr_in *sin = (struct sockaddr_in *)nam; 1265 struct in_ifaddr *ia; 1266 struct inpcb *oinp; 1267 struct in_addr laddr, faddr; 1268 u_short lport, fport; 1269 int error; 1270 1271 /* 1272 * Because a global state change doesn't actually occur here, a read 1273 * lock is sufficient. 1274 */ 1275 INP_LOCK_ASSERT(inp); 1276 INP_HASH_LOCK_ASSERT(inp->inp_pcbinfo); 1277 1278 if (oinpp != NULL) 1279 *oinpp = NULL; 1280 if (nam->sa_len != sizeof (*sin)) 1281 return (EINVAL); 1282 if (sin->sin_family != AF_INET) 1283 return (EAFNOSUPPORT); 1284 if (sin->sin_port == 0) 1285 return (EADDRNOTAVAIL); 1286 laddr.s_addr = *laddrp; 1287 lport = *lportp; 1288 faddr = sin->sin_addr; 1289 fport = sin->sin_port; 1290 1291 if (!CK_STAILQ_EMPTY(&V_in_ifaddrhead)) { 1292 /* 1293 * If the destination address is INADDR_ANY, 1294 * use the primary local address. 1295 * If the supplied address is INADDR_BROADCAST, 1296 * and the primary interface supports broadcast, 1297 * choose the broadcast address for that interface. 1298 */ 1299 if (faddr.s_addr == INADDR_ANY) { 1300 IN_IFADDR_RLOCK(&in_ifa_tracker); 1301 faddr = 1302 IA_SIN(CK_STAILQ_FIRST(&V_in_ifaddrhead))->sin_addr; 1303 IN_IFADDR_RUNLOCK(&in_ifa_tracker); 1304 if (cred != NULL && 1305 (error = prison_get_ip4(cred, &faddr)) != 0) 1306 return (error); 1307 } else if (faddr.s_addr == (u_long)INADDR_BROADCAST) { 1308 IN_IFADDR_RLOCK(&in_ifa_tracker); 1309 if (CK_STAILQ_FIRST(&V_in_ifaddrhead)->ia_ifp->if_flags & 1310 IFF_BROADCAST) 1311 faddr = satosin(&CK_STAILQ_FIRST( 1312 &V_in_ifaddrhead)->ia_broadaddr)->sin_addr; 1313 IN_IFADDR_RUNLOCK(&in_ifa_tracker); 1314 } 1315 } 1316 if (laddr.s_addr == INADDR_ANY) { 1317 error = in_pcbladdr(inp, &faddr, &laddr, cred); 1318 /* 1319 * If the destination address is multicast and an outgoing 1320 * interface has been set as a multicast option, prefer the 1321 * address of that interface as our source address. 1322 */ 1323 if (IN_MULTICAST(ntohl(faddr.s_addr)) && 1324 inp->inp_moptions != NULL) { 1325 struct ip_moptions *imo; 1326 struct ifnet *ifp; 1327 1328 imo = inp->inp_moptions; 1329 if (imo->imo_multicast_ifp != NULL) { 1330 ifp = imo->imo_multicast_ifp; 1331 IN_IFADDR_RLOCK(&in_ifa_tracker); 1332 CK_STAILQ_FOREACH(ia, &V_in_ifaddrhead, ia_link) { 1333 if ((ia->ia_ifp == ifp) && 1334 (cred == NULL || 1335 prison_check_ip4(cred, 1336 &ia->ia_addr.sin_addr) == 0)) 1337 break; 1338 } 1339 if (ia == NULL) 1340 error = EADDRNOTAVAIL; 1341 else { 1342 laddr = ia->ia_addr.sin_addr; 1343 error = 0; 1344 } 1345 IN_IFADDR_RUNLOCK(&in_ifa_tracker); 1346 } 1347 } 1348 if (error) 1349 return (error); 1350 } 1351 oinp = in_pcblookup_hash_locked(inp->inp_pcbinfo, faddr, fport, 1352 laddr, lport, 0, NULL); 1353 if (oinp != NULL) { 1354 if (oinpp != NULL) 1355 *oinpp = oinp; 1356 return (EADDRINUSE); 1357 } 1358 if (lport == 0) { 1359 error = in_pcbbind_setup(inp, NULL, &laddr.s_addr, &lport, 1360 cred); 1361 if (error) 1362 return (error); 1363 } 1364 *laddrp = laddr.s_addr; 1365 *lportp = lport; 1366 *faddrp = faddr.s_addr; 1367 *fportp = fport; 1368 return (0); 1369 } 1370 1371 void 1372 in_pcbdisconnect(struct inpcb *inp) 1373 { 1374 1375 INP_WLOCK_ASSERT(inp); 1376 INP_HASH_WLOCK_ASSERT(inp->inp_pcbinfo); 1377 1378 inp->inp_faddr.s_addr = INADDR_ANY; 1379 inp->inp_fport = 0; 1380 in_pcbrehash(inp); 1381 } 1382 #endif /* INET */ 1383 1384 /* 1385 * in_pcbdetach() is responsibe for disassociating a socket from an inpcb. 1386 * For most protocols, this will be invoked immediately prior to calling 1387 * in_pcbfree(). However, with TCP the inpcb may significantly outlive the 1388 * socket, in which case in_pcbfree() is deferred. 1389 */ 1390 void 1391 in_pcbdetach(struct inpcb *inp) 1392 { 1393 1394 KASSERT(inp->inp_socket != NULL, ("%s: inp_socket == NULL", __func__)); 1395 1396 #ifdef RATELIMIT 1397 if (inp->inp_snd_tag != NULL) 1398 in_pcbdetach_txrtlmt(inp); 1399 #endif 1400 inp->inp_socket->so_pcb = NULL; 1401 inp->inp_socket = NULL; 1402 } 1403 1404 /* 1405 * in_pcbref() bumps the reference count on an inpcb in order to maintain 1406 * stability of an inpcb pointer despite the inpcb lock being released. This 1407 * is used in TCP when the inpcbinfo lock needs to be acquired or upgraded, 1408 * but where the inpcb lock may already held, or when acquiring a reference 1409 * via a pcbgroup. 1410 * 1411 * in_pcbref() should be used only to provide brief memory stability, and 1412 * must always be followed by a call to INP_WLOCK() and in_pcbrele() to 1413 * garbage collect the inpcb if it has been in_pcbfree()'d from another 1414 * context. Until in_pcbrele() has returned that the inpcb is still valid, 1415 * lock and rele are the *only* safe operations that may be performed on the 1416 * inpcb. 1417 * 1418 * While the inpcb will not be freed, releasing the inpcb lock means that the 1419 * connection's state may change, so the caller should be careful to 1420 * revalidate any cached state on reacquiring the lock. Drop the reference 1421 * using in_pcbrele(). 1422 */ 1423 void 1424 in_pcbref(struct inpcb *inp) 1425 { 1426 1427 KASSERT(inp->inp_refcount > 0, ("%s: refcount 0", __func__)); 1428 1429 refcount_acquire(&inp->inp_refcount); 1430 } 1431 1432 /* 1433 * Drop a refcount on an inpcb elevated using in_pcbref(); because a call to 1434 * in_pcbfree() may have been made between in_pcbref() and in_pcbrele(), we 1435 * return a flag indicating whether or not the inpcb remains valid. If it is 1436 * valid, we return with the inpcb lock held. 1437 * 1438 * Notice that, unlike in_pcbref(), the inpcb lock must be held to drop a 1439 * reference on an inpcb. Historically more work was done here (actually, in 1440 * in_pcbfree_internal()) but has been moved to in_pcbfree() to avoid the 1441 * need for the pcbinfo lock in in_pcbrele(). Deferring the free is entirely 1442 * about memory stability (and continued use of the write lock). 1443 */ 1444 int 1445 in_pcbrele_rlocked(struct inpcb *inp) 1446 { 1447 struct inpcbinfo *pcbinfo; 1448 1449 KASSERT(inp->inp_refcount > 0, ("%s: refcount 0", __func__)); 1450 1451 INP_RLOCK_ASSERT(inp); 1452 1453 if (refcount_release(&inp->inp_refcount) == 0) { 1454 /* 1455 * If the inpcb has been freed, let the caller know, even if 1456 * this isn't the last reference. 1457 */ 1458 if (inp->inp_flags2 & INP_FREED) { 1459 INP_RUNLOCK(inp); 1460 return (1); 1461 } 1462 return (0); 1463 } 1464 1465 KASSERT(inp->inp_socket == NULL, ("%s: inp_socket != NULL", __func__)); 1466 #ifdef TCPHPTS 1467 if (inp->inp_in_hpts || inp->inp_in_input) { 1468 struct tcp_hpts_entry *hpts; 1469 /* 1470 * We should not be on the hpts at 1471 * this point in any form. we must 1472 * get the lock to be sure. 1473 */ 1474 hpts = tcp_hpts_lock(inp); 1475 if (inp->inp_in_hpts) 1476 panic("Hpts:%p inp:%p at free still on hpts", 1477 hpts, inp); 1478 mtx_unlock(&hpts->p_mtx); 1479 hpts = tcp_input_lock(inp); 1480 if (inp->inp_in_input) 1481 panic("Hpts:%p inp:%p at free still on input hpts", 1482 hpts, inp); 1483 mtx_unlock(&hpts->p_mtx); 1484 } 1485 #endif 1486 INP_RUNLOCK(inp); 1487 pcbinfo = inp->inp_pcbinfo; 1488 uma_zfree(pcbinfo->ipi_zone, inp); 1489 return (1); 1490 } 1491 1492 int 1493 in_pcbrele_wlocked(struct inpcb *inp) 1494 { 1495 struct inpcbinfo *pcbinfo; 1496 1497 KASSERT(inp->inp_refcount > 0, ("%s: refcount 0", __func__)); 1498 1499 INP_WLOCK_ASSERT(inp); 1500 1501 if (refcount_release(&inp->inp_refcount) == 0) { 1502 /* 1503 * If the inpcb has been freed, let the caller know, even if 1504 * this isn't the last reference. 1505 */ 1506 if (inp->inp_flags2 & INP_FREED) { 1507 INP_WUNLOCK(inp); 1508 return (1); 1509 } 1510 return (0); 1511 } 1512 1513 KASSERT(inp->inp_socket == NULL, ("%s: inp_socket != NULL", __func__)); 1514 #ifdef TCPHPTS 1515 if (inp->inp_in_hpts || inp->inp_in_input) { 1516 struct tcp_hpts_entry *hpts; 1517 /* 1518 * We should not be on the hpts at 1519 * this point in any form. we must 1520 * get the lock to be sure. 1521 */ 1522 hpts = tcp_hpts_lock(inp); 1523 if (inp->inp_in_hpts) 1524 panic("Hpts:%p inp:%p at free still on hpts", 1525 hpts, inp); 1526 mtx_unlock(&hpts->p_mtx); 1527 hpts = tcp_input_lock(inp); 1528 if (inp->inp_in_input) 1529 panic("Hpts:%p inp:%p at free still on input hpts", 1530 hpts, inp); 1531 mtx_unlock(&hpts->p_mtx); 1532 } 1533 #endif 1534 INP_WUNLOCK(inp); 1535 pcbinfo = inp->inp_pcbinfo; 1536 uma_zfree(pcbinfo->ipi_zone, inp); 1537 return (1); 1538 } 1539 1540 /* 1541 * Temporary wrapper. 1542 */ 1543 int 1544 in_pcbrele(struct inpcb *inp) 1545 { 1546 1547 return (in_pcbrele_wlocked(inp)); 1548 } 1549 1550 void 1551 in_pcblist_rele_rlocked(epoch_context_t ctx) 1552 { 1553 struct in_pcblist *il; 1554 struct inpcb *inp; 1555 struct inpcbinfo *pcbinfo; 1556 int i, n; 1557 1558 il = __containerof(ctx, struct in_pcblist, il_epoch_ctx); 1559 pcbinfo = il->il_pcbinfo; 1560 n = il->il_count; 1561 INP_INFO_WLOCK(pcbinfo); 1562 for (i = 0; i < n; i++) { 1563 inp = il->il_inp_list[i]; 1564 INP_RLOCK(inp); 1565 if (!in_pcbrele_rlocked(inp)) 1566 INP_RUNLOCK(inp); 1567 } 1568 INP_INFO_WUNLOCK(pcbinfo); 1569 free(il, M_TEMP); 1570 } 1571 1572 static void 1573 inpcbport_free(epoch_context_t ctx) 1574 { 1575 struct inpcbport *phd; 1576 1577 phd = __containerof(ctx, struct inpcbport, phd_epoch_ctx); 1578 free(phd, M_PCB); 1579 } 1580 1581 static void 1582 in_pcbfree_deferred(epoch_context_t ctx) 1583 { 1584 struct inpcb *inp; 1585 struct inpcbinfo *pcbinfo; 1586 int released __unused; 1587 1588 inp = __containerof(ctx, struct inpcb, inp_epoch_ctx); 1589 pcbinfo = inp->inp_pcbinfo; 1590 1591 INP_WLOCK(inp); 1592 #ifdef INET 1593 inp_freemoptions(inp->inp_moptions); 1594 inp->inp_moptions = NULL; 1595 #endif 1596 /* XXXRW: Do as much as possible here. */ 1597 #if defined(IPSEC) || defined(IPSEC_SUPPORT) 1598 if (inp->inp_sp != NULL) 1599 ipsec_delete_pcbpolicy(inp); 1600 #endif 1601 #ifdef INET6 1602 if (inp->inp_vflag & INP_IPV6PROTO) { 1603 ip6_freepcbopts(inp->in6p_outputopts); 1604 ip6_freemoptions(inp->in6p_moptions); 1605 inp->in6p_moptions = NULL; 1606 } 1607 #endif 1608 if (inp->inp_options) 1609 (void)m_free(inp->inp_options); 1610 inp->inp_vflag = 0; 1611 crfree(inp->inp_cred); 1612 #ifdef MAC 1613 mac_inpcb_destroy(inp); 1614 #endif 1615 released = in_pcbrele_wlocked(inp); 1616 MPASS(released); 1617 } 1618 1619 /* 1620 * Unconditionally schedule an inpcb to be freed by decrementing its 1621 * reference count, which should occur only after the inpcb has been detached 1622 * from its socket. If another thread holds a temporary reference (acquired 1623 * using in_pcbref()) then the free is deferred until that reference is 1624 * released using in_pcbrele(), but the inpcb is still unlocked. Almost all 1625 * work, including removal from global lists, is done in this context, where 1626 * the pcbinfo lock is held. 1627 */ 1628 void 1629 in_pcbfree(struct inpcb *inp) 1630 { 1631 struct inpcbinfo *pcbinfo = inp->inp_pcbinfo; 1632 1633 KASSERT(inp->inp_socket == NULL, ("%s: inp_socket != NULL", __func__)); 1634 KASSERT((inp->inp_flags2 & INP_FREED) == 0, 1635 ("%s: called twice for pcb %p", __func__, inp)); 1636 if (inp->inp_flags2 & INP_FREED) { 1637 INP_WUNLOCK(inp); 1638 return; 1639 } 1640 1641 #ifdef INVARIANTS 1642 if (pcbinfo == &V_tcbinfo) { 1643 INP_INFO_LOCK_ASSERT(pcbinfo); 1644 } else { 1645 INP_INFO_WLOCK_ASSERT(pcbinfo); 1646 } 1647 #endif 1648 INP_WLOCK_ASSERT(inp); 1649 INP_LIST_WLOCK(pcbinfo); 1650 in_pcbremlists(inp); 1651 INP_LIST_WUNLOCK(pcbinfo); 1652 RO_INVALIDATE_CACHE(&inp->inp_route); 1653 /* mark as destruction in progress */ 1654 inp->inp_flags2 |= INP_FREED; 1655 INP_WUNLOCK(inp); 1656 epoch_call(net_epoch_preempt, &inp->inp_epoch_ctx, in_pcbfree_deferred); 1657 } 1658 1659 /* 1660 * in_pcbdrop() removes an inpcb from hashed lists, releasing its address and 1661 * port reservation, and preventing it from being returned by inpcb lookups. 1662 * 1663 * It is used by TCP to mark an inpcb as unused and avoid future packet 1664 * delivery or event notification when a socket remains open but TCP has 1665 * closed. This might occur as a result of a shutdown()-initiated TCP close 1666 * or a RST on the wire, and allows the port binding to be reused while still 1667 * maintaining the invariant that so_pcb always points to a valid inpcb until 1668 * in_pcbdetach(). 1669 * 1670 * XXXRW: Possibly in_pcbdrop() should also prevent future notifications by 1671 * in_pcbnotifyall() and in_pcbpurgeif0()? 1672 */ 1673 void 1674 in_pcbdrop(struct inpcb *inp) 1675 { 1676 1677 INP_WLOCK_ASSERT(inp); 1678 1679 /* 1680 * XXXRW: Possibly we should protect the setting of INP_DROPPED with 1681 * the hash lock...? 1682 */ 1683 inp->inp_flags |= INP_DROPPED; 1684 if (inp->inp_flags & INP_INHASHLIST) { 1685 struct inpcbport *phd = inp->inp_phd; 1686 1687 INP_HASH_WLOCK(inp->inp_pcbinfo); 1688 in_pcbremlbgrouphash(inp); 1689 CK_LIST_REMOVE(inp, inp_hash); 1690 CK_LIST_REMOVE(inp, inp_portlist); 1691 if (CK_LIST_FIRST(&phd->phd_pcblist) == NULL) { 1692 CK_LIST_REMOVE(phd, phd_hash); 1693 epoch_call(net_epoch_preempt, &phd->phd_epoch_ctx, inpcbport_free); 1694 } 1695 INP_HASH_WUNLOCK(inp->inp_pcbinfo); 1696 inp->inp_flags &= ~INP_INHASHLIST; 1697 #ifdef PCBGROUP 1698 in_pcbgroup_remove(inp); 1699 #endif 1700 } 1701 } 1702 1703 #ifdef INET 1704 /* 1705 * Common routines to return the socket addresses associated with inpcbs. 1706 */ 1707 struct sockaddr * 1708 in_sockaddr(in_port_t port, struct in_addr *addr_p) 1709 { 1710 struct sockaddr_in *sin; 1711 1712 sin = malloc(sizeof *sin, M_SONAME, 1713 M_WAITOK | M_ZERO); 1714 sin->sin_family = AF_INET; 1715 sin->sin_len = sizeof(*sin); 1716 sin->sin_addr = *addr_p; 1717 sin->sin_port = port; 1718 1719 return (struct sockaddr *)sin; 1720 } 1721 1722 int 1723 in_getsockaddr(struct socket *so, struct sockaddr **nam) 1724 { 1725 struct inpcb *inp; 1726 struct in_addr addr; 1727 in_port_t port; 1728 1729 inp = sotoinpcb(so); 1730 KASSERT(inp != NULL, ("in_getsockaddr: inp == NULL")); 1731 1732 INP_RLOCK(inp); 1733 port = inp->inp_lport; 1734 addr = inp->inp_laddr; 1735 INP_RUNLOCK(inp); 1736 1737 *nam = in_sockaddr(port, &addr); 1738 return 0; 1739 } 1740 1741 int 1742 in_getpeeraddr(struct socket *so, struct sockaddr **nam) 1743 { 1744 struct inpcb *inp; 1745 struct in_addr addr; 1746 in_port_t port; 1747 1748 inp = sotoinpcb(so); 1749 KASSERT(inp != NULL, ("in_getpeeraddr: inp == NULL")); 1750 1751 INP_RLOCK(inp); 1752 port = inp->inp_fport; 1753 addr = inp->inp_faddr; 1754 INP_RUNLOCK(inp); 1755 1756 *nam = in_sockaddr(port, &addr); 1757 return 0; 1758 } 1759 1760 void 1761 in_pcbnotifyall(struct inpcbinfo *pcbinfo, struct in_addr faddr, int errno, 1762 struct inpcb *(*notify)(struct inpcb *, int)) 1763 { 1764 struct inpcb *inp, *inp_temp; 1765 1766 INP_INFO_WLOCK(pcbinfo); 1767 CK_LIST_FOREACH_SAFE(inp, pcbinfo->ipi_listhead, inp_list, inp_temp) { 1768 INP_WLOCK(inp); 1769 #ifdef INET6 1770 if ((inp->inp_vflag & INP_IPV4) == 0) { 1771 INP_WUNLOCK(inp); 1772 continue; 1773 } 1774 #endif 1775 if (inp->inp_faddr.s_addr != faddr.s_addr || 1776 inp->inp_socket == NULL) { 1777 INP_WUNLOCK(inp); 1778 continue; 1779 } 1780 if ((*notify)(inp, errno)) 1781 INP_WUNLOCK(inp); 1782 } 1783 INP_INFO_WUNLOCK(pcbinfo); 1784 } 1785 1786 void 1787 in_pcbpurgeif0(struct inpcbinfo *pcbinfo, struct ifnet *ifp) 1788 { 1789 struct inpcb *inp; 1790 struct ip_moptions *imo; 1791 int i, gap; 1792 1793 INP_INFO_WLOCK(pcbinfo); 1794 CK_LIST_FOREACH(inp, pcbinfo->ipi_listhead, inp_list) { 1795 INP_WLOCK(inp); 1796 imo = inp->inp_moptions; 1797 if ((inp->inp_vflag & INP_IPV4) && 1798 imo != NULL) { 1799 /* 1800 * Unselect the outgoing interface if it is being 1801 * detached. 1802 */ 1803 if (imo->imo_multicast_ifp == ifp) 1804 imo->imo_multicast_ifp = NULL; 1805 1806 /* 1807 * Drop multicast group membership if we joined 1808 * through the interface being detached. 1809 * 1810 * XXX This can all be deferred to an epoch_call 1811 */ 1812 for (i = 0, gap = 0; i < imo->imo_num_memberships; 1813 i++) { 1814 if (imo->imo_membership[i]->inm_ifp == ifp) { 1815 IN_MULTI_LOCK_ASSERT(); 1816 in_leavegroup_locked(imo->imo_membership[i], NULL); 1817 gap++; 1818 } else if (gap != 0) 1819 imo->imo_membership[i - gap] = 1820 imo->imo_membership[i]; 1821 } 1822 imo->imo_num_memberships -= gap; 1823 } 1824 INP_WUNLOCK(inp); 1825 } 1826 INP_INFO_WUNLOCK(pcbinfo); 1827 } 1828 1829 /* 1830 * Lookup a PCB based on the local address and port. Caller must hold the 1831 * hash lock. No inpcb locks or references are acquired. 1832 */ 1833 #define INP_LOOKUP_MAPPED_PCB_COST 3 1834 struct inpcb * 1835 in_pcblookup_local(struct inpcbinfo *pcbinfo, struct in_addr laddr, 1836 u_short lport, int lookupflags, struct ucred *cred) 1837 { 1838 struct inpcb *inp; 1839 #ifdef INET6 1840 int matchwild = 3 + INP_LOOKUP_MAPPED_PCB_COST; 1841 #else 1842 int matchwild = 3; 1843 #endif 1844 int wildcard; 1845 1846 KASSERT((lookupflags & ~(INPLOOKUP_WILDCARD)) == 0, 1847 ("%s: invalid lookup flags %d", __func__, lookupflags)); 1848 1849 INP_HASH_LOCK_ASSERT(pcbinfo); 1850 1851 if ((lookupflags & INPLOOKUP_WILDCARD) == 0) { 1852 struct inpcbhead *head; 1853 /* 1854 * Look for an unconnected (wildcard foreign addr) PCB that 1855 * matches the local address and port we're looking for. 1856 */ 1857 head = &pcbinfo->ipi_hashbase[INP_PCBHASH(INADDR_ANY, lport, 1858 0, pcbinfo->ipi_hashmask)]; 1859 CK_LIST_FOREACH(inp, head, inp_hash) { 1860 #ifdef INET6 1861 /* XXX inp locking */ 1862 if ((inp->inp_vflag & INP_IPV4) == 0) 1863 continue; 1864 #endif 1865 if (inp->inp_faddr.s_addr == INADDR_ANY && 1866 inp->inp_laddr.s_addr == laddr.s_addr && 1867 inp->inp_lport == lport) { 1868 /* 1869 * Found? 1870 */ 1871 if (cred == NULL || 1872 prison_equal_ip4(cred->cr_prison, 1873 inp->inp_cred->cr_prison)) 1874 return (inp); 1875 } 1876 } 1877 /* 1878 * Not found. 1879 */ 1880 return (NULL); 1881 } else { 1882 struct inpcbporthead *porthash; 1883 struct inpcbport *phd; 1884 struct inpcb *match = NULL; 1885 /* 1886 * Best fit PCB lookup. 1887 * 1888 * First see if this local port is in use by looking on the 1889 * port hash list. 1890 */ 1891 porthash = &pcbinfo->ipi_porthashbase[INP_PCBPORTHASH(lport, 1892 pcbinfo->ipi_porthashmask)]; 1893 CK_LIST_FOREACH(phd, porthash, phd_hash) { 1894 if (phd->phd_port == lport) 1895 break; 1896 } 1897 if (phd != NULL) { 1898 /* 1899 * Port is in use by one or more PCBs. Look for best 1900 * fit. 1901 */ 1902 CK_LIST_FOREACH(inp, &phd->phd_pcblist, inp_portlist) { 1903 wildcard = 0; 1904 if (cred != NULL && 1905 !prison_equal_ip4(inp->inp_cred->cr_prison, 1906 cred->cr_prison)) 1907 continue; 1908 #ifdef INET6 1909 /* XXX inp locking */ 1910 if ((inp->inp_vflag & INP_IPV4) == 0) 1911 continue; 1912 /* 1913 * We never select the PCB that has 1914 * INP_IPV6 flag and is bound to :: if 1915 * we have another PCB which is bound 1916 * to 0.0.0.0. If a PCB has the 1917 * INP_IPV6 flag, then we set its cost 1918 * higher than IPv4 only PCBs. 1919 * 1920 * Note that the case only happens 1921 * when a socket is bound to ::, under 1922 * the condition that the use of the 1923 * mapped address is allowed. 1924 */ 1925 if ((inp->inp_vflag & INP_IPV6) != 0) 1926 wildcard += INP_LOOKUP_MAPPED_PCB_COST; 1927 #endif 1928 if (inp->inp_faddr.s_addr != INADDR_ANY) 1929 wildcard++; 1930 if (inp->inp_laddr.s_addr != INADDR_ANY) { 1931 if (laddr.s_addr == INADDR_ANY) 1932 wildcard++; 1933 else if (inp->inp_laddr.s_addr != laddr.s_addr) 1934 continue; 1935 } else { 1936 if (laddr.s_addr != INADDR_ANY) 1937 wildcard++; 1938 } 1939 if (wildcard < matchwild) { 1940 match = inp; 1941 matchwild = wildcard; 1942 if (matchwild == 0) 1943 break; 1944 } 1945 } 1946 } 1947 return (match); 1948 } 1949 } 1950 #undef INP_LOOKUP_MAPPED_PCB_COST 1951 1952 static struct inpcb * 1953 in_pcblookup_lbgroup(const struct inpcbinfo *pcbinfo, 1954 const struct in_addr *laddr, uint16_t lport, const struct in_addr *faddr, 1955 uint16_t fport, int lookupflags) 1956 { 1957 struct inpcb *local_wild = NULL; 1958 const struct inpcblbgrouphead *hdr; 1959 struct inpcblbgroup *grp; 1960 struct inpcblbgroup *grp_local_wild; 1961 1962 INP_HASH_LOCK_ASSERT(pcbinfo); 1963 1964 hdr = &pcbinfo->ipi_lbgrouphashbase[ 1965 INP_PCBLBGROUP_PORTHASH(lport, pcbinfo->ipi_lbgrouphashmask)]; 1966 1967 /* 1968 * Order of socket selection: 1969 * 1. non-wild. 1970 * 2. wild (if lookupflags contains INPLOOKUP_WILDCARD). 1971 * 1972 * NOTE: 1973 * - Load balanced group does not contain jailed sockets 1974 * - Load balanced group does not contain IPv4 mapped INET6 wild sockets 1975 */ 1976 LIST_FOREACH(grp, hdr, il_list) { 1977 #ifdef INET6 1978 if (!(grp->il_vflag & INP_IPV4)) 1979 continue; 1980 #endif 1981 1982 if (grp->il_lport == lport) { 1983 1984 uint32_t idx = 0; 1985 int pkt_hash = INP_PCBLBGROUP_PKTHASH(faddr->s_addr, 1986 lport, fport); 1987 1988 idx = pkt_hash % grp->il_inpcnt; 1989 1990 if (grp->il_laddr.s_addr == laddr->s_addr) { 1991 return (grp->il_inp[idx]); 1992 } else { 1993 if (grp->il_laddr.s_addr == INADDR_ANY && 1994 (lookupflags & INPLOOKUP_WILDCARD)) { 1995 local_wild = grp->il_inp[idx]; 1996 grp_local_wild = grp; 1997 } 1998 } 1999 } 2000 } 2001 if (local_wild != NULL) { 2002 return (local_wild); 2003 } 2004 return (NULL); 2005 } 2006 2007 #ifdef PCBGROUP 2008 /* 2009 * Lookup PCB in hash list, using pcbgroup tables. 2010 */ 2011 static struct inpcb * 2012 in_pcblookup_group(struct inpcbinfo *pcbinfo, struct inpcbgroup *pcbgroup, 2013 struct in_addr faddr, u_int fport_arg, struct in_addr laddr, 2014 u_int lport_arg, int lookupflags, struct ifnet *ifp) 2015 { 2016 struct inpcbhead *head; 2017 struct inpcb *inp, *tmpinp; 2018 u_short fport = fport_arg, lport = lport_arg; 2019 bool locked; 2020 2021 /* 2022 * First look for an exact match. 2023 */ 2024 tmpinp = NULL; 2025 INP_GROUP_LOCK(pcbgroup); 2026 head = &pcbgroup->ipg_hashbase[INP_PCBHASH(faddr.s_addr, lport, fport, 2027 pcbgroup->ipg_hashmask)]; 2028 CK_LIST_FOREACH(inp, head, inp_pcbgrouphash) { 2029 #ifdef INET6 2030 /* XXX inp locking */ 2031 if ((inp->inp_vflag & INP_IPV4) == 0) 2032 continue; 2033 #endif 2034 if (inp->inp_faddr.s_addr == faddr.s_addr && 2035 inp->inp_laddr.s_addr == laddr.s_addr && 2036 inp->inp_fport == fport && 2037 inp->inp_lport == lport) { 2038 /* 2039 * XXX We should be able to directly return 2040 * the inp here, without any checks. 2041 * Well unless both bound with SO_REUSEPORT? 2042 */ 2043 if (prison_flag(inp->inp_cred, PR_IP4)) 2044 goto found; 2045 if (tmpinp == NULL) 2046 tmpinp = inp; 2047 } 2048 } 2049 if (tmpinp != NULL) { 2050 inp = tmpinp; 2051 goto found; 2052 } 2053 2054 #ifdef RSS 2055 /* 2056 * For incoming connections, we may wish to do a wildcard 2057 * match for an RSS-local socket. 2058 */ 2059 if ((lookupflags & INPLOOKUP_WILDCARD) != 0) { 2060 struct inpcb *local_wild = NULL, *local_exact = NULL; 2061 #ifdef INET6 2062 struct inpcb *local_wild_mapped = NULL; 2063 #endif 2064 struct inpcb *jail_wild = NULL; 2065 struct inpcbhead *head; 2066 int injail; 2067 2068 /* 2069 * Order of socket selection - we always prefer jails. 2070 * 1. jailed, non-wild. 2071 * 2. jailed, wild. 2072 * 3. non-jailed, non-wild. 2073 * 4. non-jailed, wild. 2074 */ 2075 2076 head = &pcbgroup->ipg_hashbase[INP_PCBHASH(INADDR_ANY, 2077 lport, 0, pcbgroup->ipg_hashmask)]; 2078 CK_LIST_FOREACH(inp, head, inp_pcbgrouphash) { 2079 #ifdef INET6 2080 /* XXX inp locking */ 2081 if ((inp->inp_vflag & INP_IPV4) == 0) 2082 continue; 2083 #endif 2084 if (inp->inp_faddr.s_addr != INADDR_ANY || 2085 inp->inp_lport != lport) 2086 continue; 2087 2088 injail = prison_flag(inp->inp_cred, PR_IP4); 2089 if (injail) { 2090 if (prison_check_ip4(inp->inp_cred, 2091 &laddr) != 0) 2092 continue; 2093 } else { 2094 if (local_exact != NULL) 2095 continue; 2096 } 2097 2098 if (inp->inp_laddr.s_addr == laddr.s_addr) { 2099 if (injail) 2100 goto found; 2101 else 2102 local_exact = inp; 2103 } else if (inp->inp_laddr.s_addr == INADDR_ANY) { 2104 #ifdef INET6 2105 /* XXX inp locking, NULL check */ 2106 if (inp->inp_vflag & INP_IPV6PROTO) 2107 local_wild_mapped = inp; 2108 else 2109 #endif 2110 if (injail) 2111 jail_wild = inp; 2112 else 2113 local_wild = inp; 2114 } 2115 } /* LIST_FOREACH */ 2116 2117 inp = jail_wild; 2118 if (inp == NULL) 2119 inp = local_exact; 2120 if (inp == NULL) 2121 inp = local_wild; 2122 #ifdef INET6 2123 if (inp == NULL) 2124 inp = local_wild_mapped; 2125 #endif 2126 if (inp != NULL) 2127 goto found; 2128 } 2129 #endif 2130 2131 /* 2132 * Then look for a wildcard match, if requested. 2133 */ 2134 if ((lookupflags & INPLOOKUP_WILDCARD) != 0) { 2135 struct inpcb *local_wild = NULL, *local_exact = NULL; 2136 #ifdef INET6 2137 struct inpcb *local_wild_mapped = NULL; 2138 #endif 2139 struct inpcb *jail_wild = NULL; 2140 struct inpcbhead *head; 2141 int injail; 2142 2143 /* 2144 * Order of socket selection - we always prefer jails. 2145 * 1. jailed, non-wild. 2146 * 2. jailed, wild. 2147 * 3. non-jailed, non-wild. 2148 * 4. non-jailed, wild. 2149 */ 2150 head = &pcbinfo->ipi_wildbase[INP_PCBHASH(INADDR_ANY, lport, 2151 0, pcbinfo->ipi_wildmask)]; 2152 CK_LIST_FOREACH(inp, head, inp_pcbgroup_wild) { 2153 #ifdef INET6 2154 /* XXX inp locking */ 2155 if ((inp->inp_vflag & INP_IPV4) == 0) 2156 continue; 2157 #endif 2158 if (inp->inp_faddr.s_addr != INADDR_ANY || 2159 inp->inp_lport != lport) 2160 continue; 2161 2162 injail = prison_flag(inp->inp_cred, PR_IP4); 2163 if (injail) { 2164 if (prison_check_ip4(inp->inp_cred, 2165 &laddr) != 0) 2166 continue; 2167 } else { 2168 if (local_exact != NULL) 2169 continue; 2170 } 2171 2172 if (inp->inp_laddr.s_addr == laddr.s_addr) { 2173 if (injail) 2174 goto found; 2175 else 2176 local_exact = inp; 2177 } else if (inp->inp_laddr.s_addr == INADDR_ANY) { 2178 #ifdef INET6 2179 /* XXX inp locking, NULL check */ 2180 if (inp->inp_vflag & INP_IPV6PROTO) 2181 local_wild_mapped = inp; 2182 else 2183 #endif 2184 if (injail) 2185 jail_wild = inp; 2186 else 2187 local_wild = inp; 2188 } 2189 } /* LIST_FOREACH */ 2190 inp = jail_wild; 2191 if (inp == NULL) 2192 inp = local_exact; 2193 if (inp == NULL) 2194 inp = local_wild; 2195 #ifdef INET6 2196 if (inp == NULL) 2197 inp = local_wild_mapped; 2198 #endif 2199 if (inp != NULL) 2200 goto found; 2201 } /* if (lookupflags & INPLOOKUP_WILDCARD) */ 2202 INP_GROUP_UNLOCK(pcbgroup); 2203 return (NULL); 2204 2205 found: 2206 if (lookupflags & INPLOOKUP_WLOCKPCB) 2207 locked = INP_TRY_WLOCK(inp); 2208 else if (lookupflags & INPLOOKUP_RLOCKPCB) 2209 locked = INP_TRY_RLOCK(inp); 2210 else 2211 panic("%s: locking bug", __func__); 2212 if (__predict_false(locked && (inp->inp_flags2 & INP_FREED))) { 2213 if (lookupflags & INPLOOKUP_WLOCKPCB) 2214 INP_WUNLOCK(inp); 2215 else 2216 INP_RUNLOCK(inp); 2217 INP_HASH_RUNLOCK(pcbinfo); 2218 return (NULL); 2219 } else if (!locked) 2220 in_pcbref(inp); 2221 INP_GROUP_UNLOCK(pcbgroup); 2222 if (!locked) { 2223 if (lookupflags & INPLOOKUP_WLOCKPCB) { 2224 INP_WLOCK(inp); 2225 if (in_pcbrele_wlocked(inp)) 2226 return (NULL); 2227 } else { 2228 INP_RLOCK(inp); 2229 if (in_pcbrele_rlocked(inp)) 2230 return (NULL); 2231 } 2232 } 2233 #ifdef INVARIANTS 2234 if (lookupflags & INPLOOKUP_WLOCKPCB) 2235 INP_WLOCK_ASSERT(inp); 2236 else 2237 INP_RLOCK_ASSERT(inp); 2238 #endif 2239 return (inp); 2240 } 2241 #endif /* PCBGROUP */ 2242 2243 /* 2244 * Lookup PCB in hash list, using pcbinfo tables. This variation assumes 2245 * that the caller has locked the hash list, and will not perform any further 2246 * locking or reference operations on either the hash list or the connection. 2247 */ 2248 static struct inpcb * 2249 in_pcblookup_hash_locked(struct inpcbinfo *pcbinfo, struct in_addr faddr, 2250 u_int fport_arg, struct in_addr laddr, u_int lport_arg, int lookupflags, 2251 struct ifnet *ifp) 2252 { 2253 struct inpcbhead *head; 2254 struct inpcb *inp, *tmpinp; 2255 u_short fport = fport_arg, lport = lport_arg; 2256 2257 KASSERT((lookupflags & ~(INPLOOKUP_WILDCARD)) == 0, 2258 ("%s: invalid lookup flags %d", __func__, lookupflags)); 2259 2260 INP_HASH_LOCK_ASSERT(pcbinfo); 2261 2262 /* 2263 * First look for an exact match. 2264 */ 2265 tmpinp = NULL; 2266 head = &pcbinfo->ipi_hashbase[INP_PCBHASH(faddr.s_addr, lport, fport, 2267 pcbinfo->ipi_hashmask)]; 2268 CK_LIST_FOREACH(inp, head, inp_hash) { 2269 #ifdef INET6 2270 /* XXX inp locking */ 2271 if ((inp->inp_vflag & INP_IPV4) == 0) 2272 continue; 2273 #endif 2274 if (inp->inp_faddr.s_addr == faddr.s_addr && 2275 inp->inp_laddr.s_addr == laddr.s_addr && 2276 inp->inp_fport == fport && 2277 inp->inp_lport == lport) { 2278 /* 2279 * XXX We should be able to directly return 2280 * the inp here, without any checks. 2281 * Well unless both bound with SO_REUSEPORT? 2282 */ 2283 if (prison_flag(inp->inp_cred, PR_IP4)) 2284 return (inp); 2285 if (tmpinp == NULL) 2286 tmpinp = inp; 2287 } 2288 } 2289 if (tmpinp != NULL) 2290 return (tmpinp); 2291 2292 /* 2293 * Then look in lb group (for wildcard match). 2294 */ 2295 if (pcbinfo->ipi_lbgrouphashbase != NULL && 2296 (lookupflags & INPLOOKUP_WILDCARD)) { 2297 inp = in_pcblookup_lbgroup(pcbinfo, &laddr, lport, &faddr, 2298 fport, lookupflags); 2299 if (inp != NULL) { 2300 return (inp); 2301 } 2302 } 2303 2304 /* 2305 * Then look for a wildcard match, if requested. 2306 */ 2307 if ((lookupflags & INPLOOKUP_WILDCARD) != 0) { 2308 struct inpcb *local_wild = NULL, *local_exact = NULL; 2309 #ifdef INET6 2310 struct inpcb *local_wild_mapped = NULL; 2311 #endif 2312 struct inpcb *jail_wild = NULL; 2313 int injail; 2314 2315 /* 2316 * Order of socket selection - we always prefer jails. 2317 * 1. jailed, non-wild. 2318 * 2. jailed, wild. 2319 * 3. non-jailed, non-wild. 2320 * 4. non-jailed, wild. 2321 */ 2322 2323 head = &pcbinfo->ipi_hashbase[INP_PCBHASH(INADDR_ANY, lport, 2324 0, pcbinfo->ipi_hashmask)]; 2325 CK_LIST_FOREACH(inp, head, inp_hash) { 2326 #ifdef INET6 2327 /* XXX inp locking */ 2328 if ((inp->inp_vflag & INP_IPV4) == 0) 2329 continue; 2330 #endif 2331 if (inp->inp_faddr.s_addr != INADDR_ANY || 2332 inp->inp_lport != lport) 2333 continue; 2334 2335 injail = prison_flag(inp->inp_cred, PR_IP4); 2336 if (injail) { 2337 if (prison_check_ip4(inp->inp_cred, 2338 &laddr) != 0) 2339 continue; 2340 } else { 2341 if (local_exact != NULL) 2342 continue; 2343 } 2344 2345 if (inp->inp_laddr.s_addr == laddr.s_addr) { 2346 if (injail) 2347 return (inp); 2348 else 2349 local_exact = inp; 2350 } else if (inp->inp_laddr.s_addr == INADDR_ANY) { 2351 #ifdef INET6 2352 /* XXX inp locking, NULL check */ 2353 if (inp->inp_vflag & INP_IPV6PROTO) 2354 local_wild_mapped = inp; 2355 else 2356 #endif 2357 if (injail) 2358 jail_wild = inp; 2359 else 2360 local_wild = inp; 2361 } 2362 } /* LIST_FOREACH */ 2363 if (jail_wild != NULL) 2364 return (jail_wild); 2365 if (local_exact != NULL) 2366 return (local_exact); 2367 if (local_wild != NULL) 2368 return (local_wild); 2369 #ifdef INET6 2370 if (local_wild_mapped != NULL) 2371 return (local_wild_mapped); 2372 #endif 2373 } /* if ((lookupflags & INPLOOKUP_WILDCARD) != 0) */ 2374 2375 return (NULL); 2376 } 2377 2378 /* 2379 * Lookup PCB in hash list, using pcbinfo tables. This variation locks the 2380 * hash list lock, and will return the inpcb locked (i.e., requires 2381 * INPLOOKUP_LOCKPCB). 2382 */ 2383 static struct inpcb * 2384 in_pcblookup_hash(struct inpcbinfo *pcbinfo, struct in_addr faddr, 2385 u_int fport, struct in_addr laddr, u_int lport, int lookupflags, 2386 struct ifnet *ifp) 2387 { 2388 struct inpcb *inp; 2389 bool locked; 2390 2391 INP_HASH_RLOCK(pcbinfo); 2392 inp = in_pcblookup_hash_locked(pcbinfo, faddr, fport, laddr, lport, 2393 (lookupflags & ~(INPLOOKUP_RLOCKPCB | INPLOOKUP_WLOCKPCB)), ifp); 2394 if (inp != NULL) { 2395 if (lookupflags & INPLOOKUP_WLOCKPCB) 2396 locked = INP_TRY_WLOCK(inp); 2397 else if (lookupflags & INPLOOKUP_RLOCKPCB) 2398 locked = INP_TRY_RLOCK(inp); 2399 else 2400 panic("%s: locking bug", __func__); 2401 if (!locked) 2402 in_pcbref(inp); 2403 INP_HASH_RUNLOCK(pcbinfo); 2404 if (!locked) { 2405 if (lookupflags & INPLOOKUP_WLOCKPCB) { 2406 INP_WLOCK(inp); 2407 if (in_pcbrele_wlocked(inp)) 2408 return (NULL); 2409 } else { 2410 INP_RLOCK(inp); 2411 if (in_pcbrele_rlocked(inp)) 2412 return (NULL); 2413 } 2414 } 2415 #ifdef INVARIANTS 2416 if (lookupflags & INPLOOKUP_WLOCKPCB) 2417 INP_WLOCK_ASSERT(inp); 2418 else 2419 INP_RLOCK_ASSERT(inp); 2420 #endif 2421 } else 2422 INP_HASH_RUNLOCK(pcbinfo); 2423 return (inp); 2424 } 2425 2426 /* 2427 * Public inpcb lookup routines, accepting a 4-tuple, and optionally, an mbuf 2428 * from which a pre-calculated hash value may be extracted. 2429 * 2430 * Possibly more of this logic should be in in_pcbgroup.c. 2431 */ 2432 struct inpcb * 2433 in_pcblookup(struct inpcbinfo *pcbinfo, struct in_addr faddr, u_int fport, 2434 struct in_addr laddr, u_int lport, int lookupflags, struct ifnet *ifp) 2435 { 2436 #if defined(PCBGROUP) && !defined(RSS) 2437 struct inpcbgroup *pcbgroup; 2438 #endif 2439 2440 KASSERT((lookupflags & ~INPLOOKUP_MASK) == 0, 2441 ("%s: invalid lookup flags %d", __func__, lookupflags)); 2442 KASSERT((lookupflags & (INPLOOKUP_RLOCKPCB | INPLOOKUP_WLOCKPCB)) != 0, 2443 ("%s: LOCKPCB not set", __func__)); 2444 2445 /* 2446 * When not using RSS, use connection groups in preference to the 2447 * reservation table when looking up 4-tuples. When using RSS, just 2448 * use the reservation table, due to the cost of the Toeplitz hash 2449 * in software. 2450 * 2451 * XXXRW: This policy belongs in the pcbgroup code, as in principle 2452 * we could be doing RSS with a non-Toeplitz hash that is affordable 2453 * in software. 2454 */ 2455 #if defined(PCBGROUP) && !defined(RSS) 2456 if (in_pcbgroup_enabled(pcbinfo)) { 2457 pcbgroup = in_pcbgroup_bytuple(pcbinfo, laddr, lport, faddr, 2458 fport); 2459 return (in_pcblookup_group(pcbinfo, pcbgroup, faddr, fport, 2460 laddr, lport, lookupflags, ifp)); 2461 } 2462 #endif 2463 return (in_pcblookup_hash(pcbinfo, faddr, fport, laddr, lport, 2464 lookupflags, ifp)); 2465 } 2466 2467 struct inpcb * 2468 in_pcblookup_mbuf(struct inpcbinfo *pcbinfo, struct in_addr faddr, 2469 u_int fport, struct in_addr laddr, u_int lport, int lookupflags, 2470 struct ifnet *ifp, struct mbuf *m) 2471 { 2472 #ifdef PCBGROUP 2473 struct inpcbgroup *pcbgroup; 2474 #endif 2475 2476 KASSERT((lookupflags & ~INPLOOKUP_MASK) == 0, 2477 ("%s: invalid lookup flags %d", __func__, lookupflags)); 2478 KASSERT((lookupflags & (INPLOOKUP_RLOCKPCB | INPLOOKUP_WLOCKPCB)) != 0, 2479 ("%s: LOCKPCB not set", __func__)); 2480 2481 #ifdef PCBGROUP 2482 /* 2483 * If we can use a hardware-generated hash to look up the connection 2484 * group, use that connection group to find the inpcb. Otherwise 2485 * fall back on a software hash -- or the reservation table if we're 2486 * using RSS. 2487 * 2488 * XXXRW: As above, that policy belongs in the pcbgroup code. 2489 */ 2490 if (in_pcbgroup_enabled(pcbinfo) && 2491 !(M_HASHTYPE_TEST(m, M_HASHTYPE_NONE))) { 2492 pcbgroup = in_pcbgroup_byhash(pcbinfo, M_HASHTYPE_GET(m), 2493 m->m_pkthdr.flowid); 2494 if (pcbgroup != NULL) 2495 return (in_pcblookup_group(pcbinfo, pcbgroup, faddr, 2496 fport, laddr, lport, lookupflags, ifp)); 2497 #ifndef RSS 2498 pcbgroup = in_pcbgroup_bytuple(pcbinfo, laddr, lport, faddr, 2499 fport); 2500 return (in_pcblookup_group(pcbinfo, pcbgroup, faddr, fport, 2501 laddr, lport, lookupflags, ifp)); 2502 #endif 2503 } 2504 #endif 2505 return (in_pcblookup_hash(pcbinfo, faddr, fport, laddr, lport, 2506 lookupflags, ifp)); 2507 } 2508 #endif /* INET */ 2509 2510 /* 2511 * Insert PCB onto various hash lists. 2512 */ 2513 static int 2514 in_pcbinshash_internal(struct inpcb *inp, int do_pcbgroup_update) 2515 { 2516 struct inpcbhead *pcbhash; 2517 struct inpcbporthead *pcbporthash; 2518 struct inpcbinfo *pcbinfo = inp->inp_pcbinfo; 2519 struct inpcbport *phd; 2520 u_int32_t hashkey_faddr; 2521 int so_options; 2522 2523 INP_WLOCK_ASSERT(inp); 2524 INP_HASH_WLOCK_ASSERT(pcbinfo); 2525 2526 KASSERT((inp->inp_flags & INP_INHASHLIST) == 0, 2527 ("in_pcbinshash: INP_INHASHLIST")); 2528 2529 #ifdef INET6 2530 if (inp->inp_vflag & INP_IPV6) 2531 hashkey_faddr = INP6_PCBHASHKEY(&inp->in6p_faddr); 2532 else 2533 #endif 2534 hashkey_faddr = inp->inp_faddr.s_addr; 2535 2536 pcbhash = &pcbinfo->ipi_hashbase[INP_PCBHASH(hashkey_faddr, 2537 inp->inp_lport, inp->inp_fport, pcbinfo->ipi_hashmask)]; 2538 2539 pcbporthash = &pcbinfo->ipi_porthashbase[ 2540 INP_PCBPORTHASH(inp->inp_lport, pcbinfo->ipi_porthashmask)]; 2541 2542 /* 2543 * Add entry to load balance group. 2544 * Only do this if SO_REUSEPORT_LB is set. 2545 */ 2546 so_options = inp_so_options(inp); 2547 if (so_options & SO_REUSEPORT_LB) { 2548 int ret = in_pcbinslbgrouphash(inp); 2549 if (ret) { 2550 /* pcb lb group malloc fail (ret=ENOBUFS). */ 2551 return (ret); 2552 } 2553 } 2554 2555 /* 2556 * Go through port list and look for a head for this lport. 2557 */ 2558 CK_LIST_FOREACH(phd, pcbporthash, phd_hash) { 2559 if (phd->phd_port == inp->inp_lport) 2560 break; 2561 } 2562 /* 2563 * If none exists, malloc one and tack it on. 2564 */ 2565 if (phd == NULL) { 2566 phd = malloc(sizeof(struct inpcbport), M_PCB, M_NOWAIT); 2567 if (phd == NULL) { 2568 return (ENOBUFS); /* XXX */ 2569 } 2570 bzero(&phd->phd_epoch_ctx, sizeof(struct epoch_context)); 2571 phd->phd_port = inp->inp_lport; 2572 CK_LIST_INIT(&phd->phd_pcblist); 2573 CK_LIST_INSERT_HEAD(pcbporthash, phd, phd_hash); 2574 } 2575 inp->inp_phd = phd; 2576 CK_LIST_INSERT_HEAD(&phd->phd_pcblist, inp, inp_portlist); 2577 CK_LIST_INSERT_HEAD(pcbhash, inp, inp_hash); 2578 inp->inp_flags |= INP_INHASHLIST; 2579 #ifdef PCBGROUP 2580 if (do_pcbgroup_update) 2581 in_pcbgroup_update(inp); 2582 #endif 2583 return (0); 2584 } 2585 2586 /* 2587 * For now, there are two public interfaces to insert an inpcb into the hash 2588 * lists -- one that does update pcbgroups, and one that doesn't. The latter 2589 * is used only in the TCP syncache, where in_pcbinshash is called before the 2590 * full 4-tuple is set for the inpcb, and we don't want to install in the 2591 * pcbgroup until later. 2592 * 2593 * XXXRW: This seems like a misfeature. in_pcbinshash should always update 2594 * connection groups, and partially initialised inpcbs should not be exposed 2595 * to either reservation hash tables or pcbgroups. 2596 */ 2597 int 2598 in_pcbinshash(struct inpcb *inp) 2599 { 2600 2601 return (in_pcbinshash_internal(inp, 1)); 2602 } 2603 2604 int 2605 in_pcbinshash_nopcbgroup(struct inpcb *inp) 2606 { 2607 2608 return (in_pcbinshash_internal(inp, 0)); 2609 } 2610 2611 /* 2612 * Move PCB to the proper hash bucket when { faddr, fport } have been 2613 * changed. NOTE: This does not handle the case of the lport changing (the 2614 * hashed port list would have to be updated as well), so the lport must 2615 * not change after in_pcbinshash() has been called. 2616 */ 2617 void 2618 in_pcbrehash_mbuf(struct inpcb *inp, struct mbuf *m) 2619 { 2620 struct inpcbinfo *pcbinfo = inp->inp_pcbinfo; 2621 struct inpcbhead *head; 2622 u_int32_t hashkey_faddr; 2623 2624 INP_WLOCK_ASSERT(inp); 2625 INP_HASH_WLOCK_ASSERT(pcbinfo); 2626 2627 KASSERT(inp->inp_flags & INP_INHASHLIST, 2628 ("in_pcbrehash: !INP_INHASHLIST")); 2629 2630 #ifdef INET6 2631 if (inp->inp_vflag & INP_IPV6) 2632 hashkey_faddr = INP6_PCBHASHKEY(&inp->in6p_faddr); 2633 else 2634 #endif 2635 hashkey_faddr = inp->inp_faddr.s_addr; 2636 2637 head = &pcbinfo->ipi_hashbase[INP_PCBHASH(hashkey_faddr, 2638 inp->inp_lport, inp->inp_fport, pcbinfo->ipi_hashmask)]; 2639 2640 CK_LIST_REMOVE(inp, inp_hash); 2641 CK_LIST_INSERT_HEAD(head, inp, inp_hash); 2642 2643 #ifdef PCBGROUP 2644 if (m != NULL) 2645 in_pcbgroup_update_mbuf(inp, m); 2646 else 2647 in_pcbgroup_update(inp); 2648 #endif 2649 } 2650 2651 void 2652 in_pcbrehash(struct inpcb *inp) 2653 { 2654 2655 in_pcbrehash_mbuf(inp, NULL); 2656 } 2657 2658 /* 2659 * Remove PCB from various lists. 2660 */ 2661 static void 2662 in_pcbremlists(struct inpcb *inp) 2663 { 2664 struct inpcbinfo *pcbinfo = inp->inp_pcbinfo; 2665 2666 #ifdef INVARIANTS 2667 if (pcbinfo == &V_tcbinfo) { 2668 INP_INFO_RLOCK_ASSERT(pcbinfo); 2669 } else { 2670 INP_INFO_WLOCK_ASSERT(pcbinfo); 2671 } 2672 #endif 2673 2674 INP_WLOCK_ASSERT(inp); 2675 INP_LIST_WLOCK_ASSERT(pcbinfo); 2676 2677 inp->inp_gencnt = ++pcbinfo->ipi_gencnt; 2678 if (inp->inp_flags & INP_INHASHLIST) { 2679 struct inpcbport *phd = inp->inp_phd; 2680 2681 INP_HASH_WLOCK(pcbinfo); 2682 2683 /* XXX: Only do if SO_REUSEPORT_LB set? */ 2684 in_pcbremlbgrouphash(inp); 2685 2686 CK_LIST_REMOVE(inp, inp_hash); 2687 CK_LIST_REMOVE(inp, inp_portlist); 2688 if (CK_LIST_FIRST(&phd->phd_pcblist) == NULL) { 2689 CK_LIST_REMOVE(phd, phd_hash); 2690 epoch_call(net_epoch_preempt, &phd->phd_epoch_ctx, inpcbport_free); 2691 } 2692 INP_HASH_WUNLOCK(pcbinfo); 2693 inp->inp_flags &= ~INP_INHASHLIST; 2694 } 2695 CK_LIST_REMOVE(inp, inp_list); 2696 pcbinfo->ipi_count--; 2697 #ifdef PCBGROUP 2698 in_pcbgroup_remove(inp); 2699 #endif 2700 } 2701 2702 /* 2703 * Check for alternatives when higher level complains 2704 * about service problems. For now, invalidate cached 2705 * routing information. If the route was created dynamically 2706 * (by a redirect), time to try a default gateway again. 2707 */ 2708 void 2709 in_losing(struct inpcb *inp) 2710 { 2711 2712 RO_INVALIDATE_CACHE(&inp->inp_route); 2713 return; 2714 } 2715 2716 /* 2717 * A set label operation has occurred at the socket layer, propagate the 2718 * label change into the in_pcb for the socket. 2719 */ 2720 void 2721 in_pcbsosetlabel(struct socket *so) 2722 { 2723 #ifdef MAC 2724 struct inpcb *inp; 2725 2726 inp = sotoinpcb(so); 2727 KASSERT(inp != NULL, ("in_pcbsosetlabel: so->so_pcb == NULL")); 2728 2729 INP_WLOCK(inp); 2730 SOCK_LOCK(so); 2731 mac_inpcb_sosetlabel(so, inp); 2732 SOCK_UNLOCK(so); 2733 INP_WUNLOCK(inp); 2734 #endif 2735 } 2736 2737 /* 2738 * ipport_tick runs once per second, determining if random port allocation 2739 * should be continued. If more than ipport_randomcps ports have been 2740 * allocated in the last second, then we return to sequential port 2741 * allocation. We return to random allocation only once we drop below 2742 * ipport_randomcps for at least ipport_randomtime seconds. 2743 */ 2744 static void 2745 ipport_tick(void *xtp) 2746 { 2747 VNET_ITERATOR_DECL(vnet_iter); 2748 2749 VNET_LIST_RLOCK_NOSLEEP(); 2750 VNET_FOREACH(vnet_iter) { 2751 CURVNET_SET(vnet_iter); /* XXX appease INVARIANTS here */ 2752 if (V_ipport_tcpallocs <= 2753 V_ipport_tcplastcount + V_ipport_randomcps) { 2754 if (V_ipport_stoprandom > 0) 2755 V_ipport_stoprandom--; 2756 } else 2757 V_ipport_stoprandom = V_ipport_randomtime; 2758 V_ipport_tcplastcount = V_ipport_tcpallocs; 2759 CURVNET_RESTORE(); 2760 } 2761 VNET_LIST_RUNLOCK_NOSLEEP(); 2762 callout_reset(&ipport_tick_callout, hz, ipport_tick, NULL); 2763 } 2764 2765 static void 2766 ip_fini(void *xtp) 2767 { 2768 2769 callout_stop(&ipport_tick_callout); 2770 } 2771 2772 /* 2773 * The ipport_callout should start running at about the time we attach the 2774 * inet or inet6 domains. 2775 */ 2776 static void 2777 ipport_tick_init(const void *unused __unused) 2778 { 2779 2780 /* Start ipport_tick. */ 2781 callout_init(&ipport_tick_callout, 1); 2782 callout_reset(&ipport_tick_callout, 1, ipport_tick, NULL); 2783 EVENTHANDLER_REGISTER(shutdown_pre_sync, ip_fini, NULL, 2784 SHUTDOWN_PRI_DEFAULT); 2785 } 2786 SYSINIT(ipport_tick_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_MIDDLE, 2787 ipport_tick_init, NULL); 2788 2789 void 2790 inp_wlock(struct inpcb *inp) 2791 { 2792 2793 INP_WLOCK(inp); 2794 } 2795 2796 void 2797 inp_wunlock(struct inpcb *inp) 2798 { 2799 2800 INP_WUNLOCK(inp); 2801 } 2802 2803 void 2804 inp_rlock(struct inpcb *inp) 2805 { 2806 2807 INP_RLOCK(inp); 2808 } 2809 2810 void 2811 inp_runlock(struct inpcb *inp) 2812 { 2813 2814 INP_RUNLOCK(inp); 2815 } 2816 2817 #ifdef INVARIANT_SUPPORT 2818 void 2819 inp_lock_assert(struct inpcb *inp) 2820 { 2821 2822 INP_WLOCK_ASSERT(inp); 2823 } 2824 2825 void 2826 inp_unlock_assert(struct inpcb *inp) 2827 { 2828 2829 INP_UNLOCK_ASSERT(inp); 2830 } 2831 #endif 2832 2833 void 2834 inp_apply_all(void (*func)(struct inpcb *, void *), void *arg) 2835 { 2836 struct inpcb *inp; 2837 2838 INP_INFO_WLOCK(&V_tcbinfo); 2839 CK_LIST_FOREACH(inp, V_tcbinfo.ipi_listhead, inp_list) { 2840 INP_WLOCK(inp); 2841 func(inp, arg); 2842 INP_WUNLOCK(inp); 2843 } 2844 INP_INFO_WUNLOCK(&V_tcbinfo); 2845 } 2846 2847 struct socket * 2848 inp_inpcbtosocket(struct inpcb *inp) 2849 { 2850 2851 INP_WLOCK_ASSERT(inp); 2852 return (inp->inp_socket); 2853 } 2854 2855 struct tcpcb * 2856 inp_inpcbtotcpcb(struct inpcb *inp) 2857 { 2858 2859 INP_WLOCK_ASSERT(inp); 2860 return ((struct tcpcb *)inp->inp_ppcb); 2861 } 2862 2863 int 2864 inp_ip_tos_get(const struct inpcb *inp) 2865 { 2866 2867 return (inp->inp_ip_tos); 2868 } 2869 2870 void 2871 inp_ip_tos_set(struct inpcb *inp, int val) 2872 { 2873 2874 inp->inp_ip_tos = val; 2875 } 2876 2877 void 2878 inp_4tuple_get(struct inpcb *inp, uint32_t *laddr, uint16_t *lp, 2879 uint32_t *faddr, uint16_t *fp) 2880 { 2881 2882 INP_LOCK_ASSERT(inp); 2883 *laddr = inp->inp_laddr.s_addr; 2884 *faddr = inp->inp_faddr.s_addr; 2885 *lp = inp->inp_lport; 2886 *fp = inp->inp_fport; 2887 } 2888 2889 struct inpcb * 2890 so_sotoinpcb(struct socket *so) 2891 { 2892 2893 return (sotoinpcb(so)); 2894 } 2895 2896 struct tcpcb * 2897 so_sototcpcb(struct socket *so) 2898 { 2899 2900 return (sototcpcb(so)); 2901 } 2902 2903 /* 2904 * Create an external-format (``xinpcb'') structure using the information in 2905 * the kernel-format in_pcb structure pointed to by inp. This is done to 2906 * reduce the spew of irrelevant information over this interface, to isolate 2907 * user code from changes in the kernel structure, and potentially to provide 2908 * information-hiding if we decide that some of this information should be 2909 * hidden from users. 2910 */ 2911 void 2912 in_pcbtoxinpcb(const struct inpcb *inp, struct xinpcb *xi) 2913 { 2914 2915 xi->xi_len = sizeof(struct xinpcb); 2916 if (inp->inp_socket) 2917 sotoxsocket(inp->inp_socket, &xi->xi_socket); 2918 else 2919 bzero(&xi->xi_socket, sizeof(struct xsocket)); 2920 bcopy(&inp->inp_inc, &xi->inp_inc, sizeof(struct in_conninfo)); 2921 xi->inp_gencnt = inp->inp_gencnt; 2922 xi->inp_ppcb = inp->inp_ppcb; 2923 xi->inp_flow = inp->inp_flow; 2924 xi->inp_flowid = inp->inp_flowid; 2925 xi->inp_flowtype = inp->inp_flowtype; 2926 xi->inp_flags = inp->inp_flags; 2927 xi->inp_flags2 = inp->inp_flags2; 2928 xi->inp_rss_listen_bucket = inp->inp_rss_listen_bucket; 2929 xi->in6p_cksum = inp->in6p_cksum; 2930 xi->in6p_hops = inp->in6p_hops; 2931 xi->inp_ip_tos = inp->inp_ip_tos; 2932 xi->inp_vflag = inp->inp_vflag; 2933 xi->inp_ip_ttl = inp->inp_ip_ttl; 2934 xi->inp_ip_p = inp->inp_ip_p; 2935 xi->inp_ip_minttl = inp->inp_ip_minttl; 2936 } 2937 2938 #ifdef DDB 2939 static void 2940 db_print_indent(int indent) 2941 { 2942 int i; 2943 2944 for (i = 0; i < indent; i++) 2945 db_printf(" "); 2946 } 2947 2948 static void 2949 db_print_inconninfo(struct in_conninfo *inc, const char *name, int indent) 2950 { 2951 char faddr_str[48], laddr_str[48]; 2952 2953 db_print_indent(indent); 2954 db_printf("%s at %p\n", name, inc); 2955 2956 indent += 2; 2957 2958 #ifdef INET6 2959 if (inc->inc_flags & INC_ISIPV6) { 2960 /* IPv6. */ 2961 ip6_sprintf(laddr_str, &inc->inc6_laddr); 2962 ip6_sprintf(faddr_str, &inc->inc6_faddr); 2963 } else 2964 #endif 2965 { 2966 /* IPv4. */ 2967 inet_ntoa_r(inc->inc_laddr, laddr_str); 2968 inet_ntoa_r(inc->inc_faddr, faddr_str); 2969 } 2970 db_print_indent(indent); 2971 db_printf("inc_laddr %s inc_lport %u\n", laddr_str, 2972 ntohs(inc->inc_lport)); 2973 db_print_indent(indent); 2974 db_printf("inc_faddr %s inc_fport %u\n", faddr_str, 2975 ntohs(inc->inc_fport)); 2976 } 2977 2978 static void 2979 db_print_inpflags(int inp_flags) 2980 { 2981 int comma; 2982 2983 comma = 0; 2984 if (inp_flags & INP_RECVOPTS) { 2985 db_printf("%sINP_RECVOPTS", comma ? ", " : ""); 2986 comma = 1; 2987 } 2988 if (inp_flags & INP_RECVRETOPTS) { 2989 db_printf("%sINP_RECVRETOPTS", comma ? ", " : ""); 2990 comma = 1; 2991 } 2992 if (inp_flags & INP_RECVDSTADDR) { 2993 db_printf("%sINP_RECVDSTADDR", comma ? ", " : ""); 2994 comma = 1; 2995 } 2996 if (inp_flags & INP_ORIGDSTADDR) { 2997 db_printf("%sINP_ORIGDSTADDR", comma ? ", " : ""); 2998 comma = 1; 2999 } 3000 if (inp_flags & INP_HDRINCL) { 3001 db_printf("%sINP_HDRINCL", comma ? ", " : ""); 3002 comma = 1; 3003 } 3004 if (inp_flags & INP_HIGHPORT) { 3005 db_printf("%sINP_HIGHPORT", comma ? ", " : ""); 3006 comma = 1; 3007 } 3008 if (inp_flags & INP_LOWPORT) { 3009 db_printf("%sINP_LOWPORT", comma ? ", " : ""); 3010 comma = 1; 3011 } 3012 if (inp_flags & INP_ANONPORT) { 3013 db_printf("%sINP_ANONPORT", comma ? ", " : ""); 3014 comma = 1; 3015 } 3016 if (inp_flags & INP_RECVIF) { 3017 db_printf("%sINP_RECVIF", comma ? ", " : ""); 3018 comma = 1; 3019 } 3020 if (inp_flags & INP_MTUDISC) { 3021 db_printf("%sINP_MTUDISC", comma ? ", " : ""); 3022 comma = 1; 3023 } 3024 if (inp_flags & INP_RECVTTL) { 3025 db_printf("%sINP_RECVTTL", comma ? ", " : ""); 3026 comma = 1; 3027 } 3028 if (inp_flags & INP_DONTFRAG) { 3029 db_printf("%sINP_DONTFRAG", comma ? ", " : ""); 3030 comma = 1; 3031 } 3032 if (inp_flags & INP_RECVTOS) { 3033 db_printf("%sINP_RECVTOS", comma ? ", " : ""); 3034 comma = 1; 3035 } 3036 if (inp_flags & IN6P_IPV6_V6ONLY) { 3037 db_printf("%sIN6P_IPV6_V6ONLY", comma ? ", " : ""); 3038 comma = 1; 3039 } 3040 if (inp_flags & IN6P_PKTINFO) { 3041 db_printf("%sIN6P_PKTINFO", comma ? ", " : ""); 3042 comma = 1; 3043 } 3044 if (inp_flags & IN6P_HOPLIMIT) { 3045 db_printf("%sIN6P_HOPLIMIT", comma ? ", " : ""); 3046 comma = 1; 3047 } 3048 if (inp_flags & IN6P_HOPOPTS) { 3049 db_printf("%sIN6P_HOPOPTS", comma ? ", " : ""); 3050 comma = 1; 3051 } 3052 if (inp_flags & IN6P_DSTOPTS) { 3053 db_printf("%sIN6P_DSTOPTS", comma ? ", " : ""); 3054 comma = 1; 3055 } 3056 if (inp_flags & IN6P_RTHDR) { 3057 db_printf("%sIN6P_RTHDR", comma ? ", " : ""); 3058 comma = 1; 3059 } 3060 if (inp_flags & IN6P_RTHDRDSTOPTS) { 3061 db_printf("%sIN6P_RTHDRDSTOPTS", comma ? ", " : ""); 3062 comma = 1; 3063 } 3064 if (inp_flags & IN6P_TCLASS) { 3065 db_printf("%sIN6P_TCLASS", comma ? ", " : ""); 3066 comma = 1; 3067 } 3068 if (inp_flags & IN6P_AUTOFLOWLABEL) { 3069 db_printf("%sIN6P_AUTOFLOWLABEL", comma ? ", " : ""); 3070 comma = 1; 3071 } 3072 if (inp_flags & INP_TIMEWAIT) { 3073 db_printf("%sINP_TIMEWAIT", comma ? ", " : ""); 3074 comma = 1; 3075 } 3076 if (inp_flags & INP_ONESBCAST) { 3077 db_printf("%sINP_ONESBCAST", comma ? ", " : ""); 3078 comma = 1; 3079 } 3080 if (inp_flags & INP_DROPPED) { 3081 db_printf("%sINP_DROPPED", comma ? ", " : ""); 3082 comma = 1; 3083 } 3084 if (inp_flags & INP_SOCKREF) { 3085 db_printf("%sINP_SOCKREF", comma ? ", " : ""); 3086 comma = 1; 3087 } 3088 if (inp_flags & IN6P_RFC2292) { 3089 db_printf("%sIN6P_RFC2292", comma ? ", " : ""); 3090 comma = 1; 3091 } 3092 if (inp_flags & IN6P_MTU) { 3093 db_printf("IN6P_MTU%s", comma ? ", " : ""); 3094 comma = 1; 3095 } 3096 } 3097 3098 static void 3099 db_print_inpvflag(u_char inp_vflag) 3100 { 3101 int comma; 3102 3103 comma = 0; 3104 if (inp_vflag & INP_IPV4) { 3105 db_printf("%sINP_IPV4", comma ? ", " : ""); 3106 comma = 1; 3107 } 3108 if (inp_vflag & INP_IPV6) { 3109 db_printf("%sINP_IPV6", comma ? ", " : ""); 3110 comma = 1; 3111 } 3112 if (inp_vflag & INP_IPV6PROTO) { 3113 db_printf("%sINP_IPV6PROTO", comma ? ", " : ""); 3114 comma = 1; 3115 } 3116 } 3117 3118 static void 3119 db_print_inpcb(struct inpcb *inp, const char *name, int indent) 3120 { 3121 3122 db_print_indent(indent); 3123 db_printf("%s at %p\n", name, inp); 3124 3125 indent += 2; 3126 3127 db_print_indent(indent); 3128 db_printf("inp_flow: 0x%x\n", inp->inp_flow); 3129 3130 db_print_inconninfo(&inp->inp_inc, "inp_conninfo", indent); 3131 3132 db_print_indent(indent); 3133 db_printf("inp_ppcb: %p inp_pcbinfo: %p inp_socket: %p\n", 3134 inp->inp_ppcb, inp->inp_pcbinfo, inp->inp_socket); 3135 3136 db_print_indent(indent); 3137 db_printf("inp_label: %p inp_flags: 0x%x (", 3138 inp->inp_label, inp->inp_flags); 3139 db_print_inpflags(inp->inp_flags); 3140 db_printf(")\n"); 3141 3142 db_print_indent(indent); 3143 db_printf("inp_sp: %p inp_vflag: 0x%x (", inp->inp_sp, 3144 inp->inp_vflag); 3145 db_print_inpvflag(inp->inp_vflag); 3146 db_printf(")\n"); 3147 3148 db_print_indent(indent); 3149 db_printf("inp_ip_ttl: %d inp_ip_p: %d inp_ip_minttl: %d\n", 3150 inp->inp_ip_ttl, inp->inp_ip_p, inp->inp_ip_minttl); 3151 3152 db_print_indent(indent); 3153 #ifdef INET6 3154 if (inp->inp_vflag & INP_IPV6) { 3155 db_printf("in6p_options: %p in6p_outputopts: %p " 3156 "in6p_moptions: %p\n", inp->in6p_options, 3157 inp->in6p_outputopts, inp->in6p_moptions); 3158 db_printf("in6p_icmp6filt: %p in6p_cksum %d " 3159 "in6p_hops %u\n", inp->in6p_icmp6filt, inp->in6p_cksum, 3160 inp->in6p_hops); 3161 } else 3162 #endif 3163 { 3164 db_printf("inp_ip_tos: %d inp_ip_options: %p " 3165 "inp_ip_moptions: %p\n", inp->inp_ip_tos, 3166 inp->inp_options, inp->inp_moptions); 3167 } 3168 3169 db_print_indent(indent); 3170 db_printf("inp_phd: %p inp_gencnt: %ju\n", inp->inp_phd, 3171 (uintmax_t)inp->inp_gencnt); 3172 } 3173 3174 DB_SHOW_COMMAND(inpcb, db_show_inpcb) 3175 { 3176 struct inpcb *inp; 3177 3178 if (!have_addr) { 3179 db_printf("usage: show inpcb <addr>\n"); 3180 return; 3181 } 3182 inp = (struct inpcb *)addr; 3183 3184 db_print_inpcb(inp, "inpcb", 0); 3185 } 3186 #endif /* DDB */ 3187 3188 #ifdef RATELIMIT 3189 /* 3190 * Modify TX rate limit based on the existing "inp->inp_snd_tag", 3191 * if any. 3192 */ 3193 int 3194 in_pcbmodify_txrtlmt(struct inpcb *inp, uint32_t max_pacing_rate) 3195 { 3196 union if_snd_tag_modify_params params = { 3197 .rate_limit.max_rate = max_pacing_rate, 3198 }; 3199 struct m_snd_tag *mst; 3200 struct ifnet *ifp; 3201 int error; 3202 3203 mst = inp->inp_snd_tag; 3204 if (mst == NULL) 3205 return (EINVAL); 3206 3207 ifp = mst->ifp; 3208 if (ifp == NULL) 3209 return (EINVAL); 3210 3211 if (ifp->if_snd_tag_modify == NULL) { 3212 error = EOPNOTSUPP; 3213 } else { 3214 error = ifp->if_snd_tag_modify(mst, ¶ms); 3215 } 3216 return (error); 3217 } 3218 3219 /* 3220 * Query existing TX rate limit based on the existing 3221 * "inp->inp_snd_tag", if any. 3222 */ 3223 int 3224 in_pcbquery_txrtlmt(struct inpcb *inp, uint32_t *p_max_pacing_rate) 3225 { 3226 union if_snd_tag_query_params params = { }; 3227 struct m_snd_tag *mst; 3228 struct ifnet *ifp; 3229 int error; 3230 3231 mst = inp->inp_snd_tag; 3232 if (mst == NULL) 3233 return (EINVAL); 3234 3235 ifp = mst->ifp; 3236 if (ifp == NULL) 3237 return (EINVAL); 3238 3239 if (ifp->if_snd_tag_query == NULL) { 3240 error = EOPNOTSUPP; 3241 } else { 3242 error = ifp->if_snd_tag_query(mst, ¶ms); 3243 if (error == 0 && p_max_pacing_rate != NULL) 3244 *p_max_pacing_rate = params.rate_limit.max_rate; 3245 } 3246 return (error); 3247 } 3248 3249 /* 3250 * Query existing TX queue level based on the existing 3251 * "inp->inp_snd_tag", if any. 3252 */ 3253 int 3254 in_pcbquery_txrlevel(struct inpcb *inp, uint32_t *p_txqueue_level) 3255 { 3256 union if_snd_tag_query_params params = { }; 3257 struct m_snd_tag *mst; 3258 struct ifnet *ifp; 3259 int error; 3260 3261 mst = inp->inp_snd_tag; 3262 if (mst == NULL) 3263 return (EINVAL); 3264 3265 ifp = mst->ifp; 3266 if (ifp == NULL) 3267 return (EINVAL); 3268 3269 if (ifp->if_snd_tag_query == NULL) 3270 return (EOPNOTSUPP); 3271 3272 error = ifp->if_snd_tag_query(mst, ¶ms); 3273 if (error == 0 && p_txqueue_level != NULL) 3274 *p_txqueue_level = params.rate_limit.queue_level; 3275 return (error); 3276 } 3277 3278 /* 3279 * Allocate a new TX rate limit send tag from the network interface 3280 * given by the "ifp" argument and save it in "inp->inp_snd_tag": 3281 */ 3282 int 3283 in_pcbattach_txrtlmt(struct inpcb *inp, struct ifnet *ifp, 3284 uint32_t flowtype, uint32_t flowid, uint32_t max_pacing_rate) 3285 { 3286 union if_snd_tag_alloc_params params = { 3287 .rate_limit.hdr.type = (max_pacing_rate == -1U) ? 3288 IF_SND_TAG_TYPE_UNLIMITED : IF_SND_TAG_TYPE_RATE_LIMIT, 3289 .rate_limit.hdr.flowid = flowid, 3290 .rate_limit.hdr.flowtype = flowtype, 3291 .rate_limit.max_rate = max_pacing_rate, 3292 }; 3293 int error; 3294 3295 INP_WLOCK_ASSERT(inp); 3296 3297 if (inp->inp_snd_tag != NULL) 3298 return (EINVAL); 3299 3300 if (ifp->if_snd_tag_alloc == NULL) { 3301 error = EOPNOTSUPP; 3302 } else { 3303 error = ifp->if_snd_tag_alloc(ifp, ¶ms, &inp->inp_snd_tag); 3304 3305 /* 3306 * At success increment the refcount on 3307 * the send tag's network interface: 3308 */ 3309 if (error == 0) 3310 if_ref(inp->inp_snd_tag->ifp); 3311 } 3312 return (error); 3313 } 3314 3315 /* 3316 * Free an existing TX rate limit tag based on the "inp->inp_snd_tag", 3317 * if any: 3318 */ 3319 void 3320 in_pcbdetach_txrtlmt(struct inpcb *inp) 3321 { 3322 struct m_snd_tag *mst; 3323 struct ifnet *ifp; 3324 3325 INP_WLOCK_ASSERT(inp); 3326 3327 mst = inp->inp_snd_tag; 3328 inp->inp_snd_tag = NULL; 3329 3330 if (mst == NULL) 3331 return; 3332 3333 ifp = mst->ifp; 3334 if (ifp == NULL) 3335 return; 3336 3337 /* 3338 * If the device was detached while we still had reference(s) 3339 * on the ifp, we assume if_snd_tag_free() was replaced with 3340 * stubs. 3341 */ 3342 ifp->if_snd_tag_free(mst); 3343 3344 /* release reference count on network interface */ 3345 if_rele(ifp); 3346 } 3347 3348 /* 3349 * This function should be called when the INP_RATE_LIMIT_CHANGED flag 3350 * is set in the fast path and will attach/detach/modify the TX rate 3351 * limit send tag based on the socket's so_max_pacing_rate value. 3352 */ 3353 void 3354 in_pcboutput_txrtlmt(struct inpcb *inp, struct ifnet *ifp, struct mbuf *mb) 3355 { 3356 struct socket *socket; 3357 uint32_t max_pacing_rate; 3358 bool did_upgrade; 3359 int error; 3360 3361 if (inp == NULL) 3362 return; 3363 3364 socket = inp->inp_socket; 3365 if (socket == NULL) 3366 return; 3367 3368 if (!INP_WLOCKED(inp)) { 3369 /* 3370 * NOTE: If the write locking fails, we need to bail 3371 * out and use the non-ratelimited ring for the 3372 * transmit until there is a new chance to get the 3373 * write lock. 3374 */ 3375 if (!INP_TRY_UPGRADE(inp)) 3376 return; 3377 did_upgrade = 1; 3378 } else { 3379 did_upgrade = 0; 3380 } 3381 3382 /* 3383 * NOTE: The so_max_pacing_rate value is read unlocked, 3384 * because atomic updates are not required since the variable 3385 * is checked at every mbuf we send. It is assumed that the 3386 * variable read itself will be atomic. 3387 */ 3388 max_pacing_rate = socket->so_max_pacing_rate; 3389 3390 /* 3391 * NOTE: When attaching to a network interface a reference is 3392 * made to ensure the network interface doesn't go away until 3393 * all ratelimit connections are gone. The network interface 3394 * pointers compared below represent valid network interfaces, 3395 * except when comparing towards NULL. 3396 */ 3397 if (max_pacing_rate == 0 && inp->inp_snd_tag == NULL) { 3398 error = 0; 3399 } else if (!(ifp->if_capenable & IFCAP_TXRTLMT)) { 3400 if (inp->inp_snd_tag != NULL) 3401 in_pcbdetach_txrtlmt(inp); 3402 error = 0; 3403 } else if (inp->inp_snd_tag == NULL) { 3404 /* 3405 * In order to utilize packet pacing with RSS, we need 3406 * to wait until there is a valid RSS hash before we 3407 * can proceed: 3408 */ 3409 if (M_HASHTYPE_GET(mb) == M_HASHTYPE_NONE) { 3410 error = EAGAIN; 3411 } else { 3412 error = in_pcbattach_txrtlmt(inp, ifp, M_HASHTYPE_GET(mb), 3413 mb->m_pkthdr.flowid, max_pacing_rate); 3414 } 3415 } else { 3416 error = in_pcbmodify_txrtlmt(inp, max_pacing_rate); 3417 } 3418 if (error == 0 || error == EOPNOTSUPP) 3419 inp->inp_flags2 &= ~INP_RATE_LIMIT_CHANGED; 3420 if (did_upgrade) 3421 INP_DOWNGRADE(inp); 3422 } 3423 3424 /* 3425 * Track route changes for TX rate limiting. 3426 */ 3427 void 3428 in_pcboutput_eagain(struct inpcb *inp) 3429 { 3430 struct socket *socket; 3431 bool did_upgrade; 3432 3433 if (inp == NULL) 3434 return; 3435 3436 socket = inp->inp_socket; 3437 if (socket == NULL) 3438 return; 3439 3440 if (inp->inp_snd_tag == NULL) 3441 return; 3442 3443 if (!INP_WLOCKED(inp)) { 3444 /* 3445 * NOTE: If the write locking fails, we need to bail 3446 * out and use the non-ratelimited ring for the 3447 * transmit until there is a new chance to get the 3448 * write lock. 3449 */ 3450 if (!INP_TRY_UPGRADE(inp)) 3451 return; 3452 did_upgrade = 1; 3453 } else { 3454 did_upgrade = 0; 3455 } 3456 3457 /* detach rate limiting */ 3458 in_pcbdetach_txrtlmt(inp); 3459 3460 /* make sure new mbuf send tag allocation is made */ 3461 inp->inp_flags2 |= INP_RATE_LIMIT_CHANGED; 3462 3463 if (did_upgrade) 3464 INP_DOWNGRADE(inp); 3465 } 3466 #endif /* RATELIMIT */ 3467