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