xref: /freebsd/sys/netinet/in_pcb.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * Copyright (c) 1982, 1986, 1991, 1993, 1995
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	@(#)in_pcb.c	8.4 (Berkeley) 5/24/95
34  * $FreeBSD$
35  */
36 
37 #include "opt_ipsec.h"
38 #include "opt_inet6.h"
39 
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/malloc.h>
43 #include <sys/mbuf.h>
44 #include <sys/domain.h>
45 #include <sys/protosw.h>
46 #include <sys/socket.h>
47 #include <sys/socketvar.h>
48 #include <sys/proc.h>
49 #include <sys/jail.h>
50 #include <sys/kernel.h>
51 #include <sys/sysctl.h>
52 
53 #include <machine/limits.h>
54 
55 #include <vm/vm_zone.h>
56 
57 #include <net/if.h>
58 #include <net/if_types.h>
59 #include <net/route.h>
60 
61 #include <netinet/in.h>
62 #include <netinet/in_pcb.h>
63 #include <netinet/in_var.h>
64 #include <netinet/ip_var.h>
65 #ifdef INET6
66 #include <netinet/ip6.h>
67 #include <netinet6/ip6_var.h>
68 #endif /* INET6 */
69 
70 #include "faith.h"
71 
72 #ifdef IPSEC
73 #include <netinet6/ipsec.h>
74 #include <netkey/key.h>
75 #endif /* IPSEC */
76 
77 struct	in_addr zeroin_addr;
78 
79 /*
80  * These configure the range of local port addresses assigned to
81  * "unspecified" outgoing connections/packets/whatever.
82  */
83 int	ipport_lowfirstauto  = IPPORT_RESERVED - 1;	/* 1023 */
84 int	ipport_lowlastauto = IPPORT_RESERVEDSTART;	/* 600 */
85 int	ipport_firstauto = IPPORT_RESERVED;		/* 1024 */
86 int	ipport_lastauto  = IPPORT_USERRESERVED;		/* 5000 */
87 int	ipport_hifirstauto = IPPORT_HIFIRSTAUTO;	/* 49152 */
88 int	ipport_hilastauto  = IPPORT_HILASTAUTO;		/* 65535 */
89 
90 #define RANGECHK(var, min, max) \
91 	if ((var) < (min)) { (var) = (min); } \
92 	else if ((var) > (max)) { (var) = (max); }
93 
94 static int
95 sysctl_net_ipport_check(SYSCTL_HANDLER_ARGS)
96 {
97 	int error = sysctl_handle_int(oidp,
98 		oidp->oid_arg1, oidp->oid_arg2, req);
99 	if (!error) {
100 		RANGECHK(ipport_lowfirstauto, 1, IPPORT_RESERVED - 1);
101 		RANGECHK(ipport_lowlastauto, 1, IPPORT_RESERVED - 1);
102 		RANGECHK(ipport_firstauto, IPPORT_RESERVED, USHRT_MAX);
103 		RANGECHK(ipport_lastauto, IPPORT_RESERVED, USHRT_MAX);
104 		RANGECHK(ipport_hifirstauto, IPPORT_RESERVED, USHRT_MAX);
105 		RANGECHK(ipport_hilastauto, IPPORT_RESERVED, USHRT_MAX);
106 	}
107 	return error;
108 }
109 
110 #undef RANGECHK
111 
112 SYSCTL_NODE(_net_inet_ip, IPPROTO_IP, portrange, CTLFLAG_RW, 0, "IP Ports");
113 
114 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, lowfirst, CTLTYPE_INT|CTLFLAG_RW,
115 	   &ipport_lowfirstauto, 0, &sysctl_net_ipport_check, "I", "");
116 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, lowlast, CTLTYPE_INT|CTLFLAG_RW,
117 	   &ipport_lowlastauto, 0, &sysctl_net_ipport_check, "I", "");
118 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, first, CTLTYPE_INT|CTLFLAG_RW,
119 	   &ipport_firstauto, 0, &sysctl_net_ipport_check, "I", "");
120 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, last, CTLTYPE_INT|CTLFLAG_RW,
121 	   &ipport_lastauto, 0, &sysctl_net_ipport_check, "I", "");
122 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, hifirst, CTLTYPE_INT|CTLFLAG_RW,
123 	   &ipport_hifirstauto, 0, &sysctl_net_ipport_check, "I", "");
124 SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, hilast, CTLTYPE_INT|CTLFLAG_RW,
125 	   &ipport_hilastauto, 0, &sysctl_net_ipport_check, "I", "");
126 
127 /*
128  * in_pcb.c: manage the Protocol Control Blocks.
129  *
130  * NOTE: It is assumed that most of these functions will be called at
131  * splnet(). XXX - There are, unfortunately, a few exceptions to this
132  * rule that should be fixed.
133  */
134 
135 /*
136  * Allocate a PCB and associate it with the socket.
137  */
138 int
139 in_pcballoc(so, pcbinfo, p)
140 	struct socket *so;
141 	struct inpcbinfo *pcbinfo;
142 	struct proc *p;
143 {
144 	register struct inpcb *inp;
145 
146 	inp = zalloc(pcbinfo->ipi_zone);
147 	if (inp == NULL)
148 		return (ENOBUFS);
149 	bzero((caddr_t)inp, sizeof(*inp));
150 	inp->inp_gencnt = ++pcbinfo->ipi_gencnt;
151 	inp->inp_pcbinfo = pcbinfo;
152 	inp->inp_socket = so;
153 #if defined(INET6)
154 	if (INP_SOCKAF(so) == AF_INET6 && !ip6_mapped_addr_on)
155 		inp->inp_flags |= IN6P_IPV6_V6ONLY;
156 #endif
157 	LIST_INSERT_HEAD(pcbinfo->listhead, inp, inp_list);
158 	pcbinfo->ipi_count++;
159 	so->so_pcb = (caddr_t)inp;
160 #ifdef INET6
161 	if (ip6_auto_flowlabel)
162 		inp->inp_flags |= IN6P_AUTOFLOWLABEL;
163 #endif
164 	return (0);
165 }
166 
167 int
168 in_pcbbind(inp, nam, p)
169 	register struct inpcb *inp;
170 	struct sockaddr *nam;
171 	struct proc *p;
172 {
173 	register struct socket *so = inp->inp_socket;
174 	unsigned short *lastport;
175 	struct sockaddr_in *sin;
176 	struct inpcbinfo *pcbinfo = inp->inp_pcbinfo;
177 	u_short lport = 0;
178 	int wild = 0, reuseport = (so->so_options & SO_REUSEPORT);
179 	int error, prison = 0;
180 
181 	if (TAILQ_EMPTY(&in_ifaddrhead)) /* XXX broken! */
182 		return (EADDRNOTAVAIL);
183 	if (inp->inp_lport || inp->inp_laddr.s_addr != INADDR_ANY)
184 		return (EINVAL);
185 	if ((so->so_options & (SO_REUSEADDR|SO_REUSEPORT)) == 0)
186 		wild = 1;
187 	if (nam) {
188 		sin = (struct sockaddr_in *)nam;
189 		if (nam->sa_len != sizeof (*sin))
190 			return (EINVAL);
191 #ifdef notdef
192 		/*
193 		 * We should check the family, but old programs
194 		 * incorrectly fail to initialize it.
195 		 */
196 		if (sin->sin_family != AF_INET)
197 			return (EAFNOSUPPORT);
198 #endif
199 		if (sin->sin_addr.s_addr != INADDR_ANY)
200 			if (prison_ip(p->p_ucred, 0, &sin->sin_addr.s_addr))
201 				return(EINVAL);
202 		lport = sin->sin_port;
203 		if (IN_MULTICAST(ntohl(sin->sin_addr.s_addr))) {
204 			/*
205 			 * Treat SO_REUSEADDR as SO_REUSEPORT for multicast;
206 			 * allow complete duplication of binding if
207 			 * SO_REUSEPORT is set, or if SO_REUSEADDR is set
208 			 * and a multicast address is bound on both
209 			 * new and duplicated sockets.
210 			 */
211 			if (so->so_options & SO_REUSEADDR)
212 				reuseport = SO_REUSEADDR|SO_REUSEPORT;
213 		} else if (sin->sin_addr.s_addr != INADDR_ANY) {
214 			sin->sin_port = 0;		/* yech... */
215 			if (ifa_ifwithaddr((struct sockaddr *)sin) == 0)
216 				return (EADDRNOTAVAIL);
217 		}
218 		if (lport) {
219 			struct inpcb *t;
220 			/* GROSS */
221 			if (ntohs(lport) < IPPORT_RESERVED && p &&
222 			    suser_xxx(0, p, PRISON_ROOT))
223 				return (EACCES);
224 			if (p && jailed(p->p_ucred))
225 				prison = 1;
226 			if (so->so_cred->cr_uid != 0 &&
227 			    !IN_MULTICAST(ntohl(sin->sin_addr.s_addr))) {
228 				t = in_pcblookup_local(inp->inp_pcbinfo,
229 				    sin->sin_addr, lport,
230 				    prison ? 0 :  INPLOOKUP_WILDCARD);
231 				if (t &&
232 				    (ntohl(sin->sin_addr.s_addr) != INADDR_ANY ||
233 				     ntohl(t->inp_laddr.s_addr) != INADDR_ANY ||
234 				     (t->inp_socket->so_options &
235 					 SO_REUSEPORT) == 0) &&
236 				    (so->so_cred->cr_uid !=
237 				     t->inp_socket->so_cred->cr_uid)) {
238 #if defined(INET6)
239 					if (ntohl(sin->sin_addr.s_addr) !=
240 					    INADDR_ANY ||
241 					    ntohl(t->inp_laddr.s_addr) !=
242 					    INADDR_ANY ||
243 					    INP_SOCKAF(so) ==
244 					    INP_SOCKAF(t->inp_socket))
245 #endif /* defined(INET6) */
246 					return (EADDRINUSE);
247 				}
248 			}
249 			if (prison &&
250 			    prison_ip(p->p_ucred, 0, &sin->sin_addr.s_addr))
251 				return (EADDRNOTAVAIL);
252 			t = in_pcblookup_local(pcbinfo, sin->sin_addr,
253 			    lport, prison ? 0 : wild);
254 			if (t &&
255 			    (reuseport & t->inp_socket->so_options) == 0) {
256 #if defined(INET6)
257 				if (ntohl(sin->sin_addr.s_addr) !=
258 				    INADDR_ANY ||
259 				    ntohl(t->inp_laddr.s_addr) !=
260 				    INADDR_ANY ||
261 				    INP_SOCKAF(so) ==
262 				    INP_SOCKAF(t->inp_socket))
263 #endif /* defined(INET6) */
264 				return (EADDRINUSE);
265 			}
266 		}
267 		inp->inp_laddr = sin->sin_addr;
268 	}
269 	if (lport == 0) {
270 		ushort first, last;
271 		int count;
272 
273 		if (inp->inp_laddr.s_addr != INADDR_ANY)
274 			if (prison_ip(p->p_ucred, 0, &inp->inp_laddr.s_addr )) {
275 				inp->inp_laddr.s_addr = INADDR_ANY;
276 				return (EINVAL);
277 			}
278 		inp->inp_flags |= INP_ANONPORT;
279 
280 		if (inp->inp_flags & INP_HIGHPORT) {
281 			first = ipport_hifirstauto;	/* sysctl */
282 			last  = ipport_hilastauto;
283 			lastport = &pcbinfo->lasthi;
284 		} else if (inp->inp_flags & INP_LOWPORT) {
285 			if (p && (error = suser_xxx(0, p, PRISON_ROOT))) {
286 				inp->inp_laddr.s_addr = INADDR_ANY;
287 				return error;
288 			}
289 			first = ipport_lowfirstauto;	/* 1023 */
290 			last  = ipport_lowlastauto;	/* 600 */
291 			lastport = &pcbinfo->lastlow;
292 		} else {
293 			first = ipport_firstauto;	/* sysctl */
294 			last  = ipport_lastauto;
295 			lastport = &pcbinfo->lastport;
296 		}
297 		/*
298 		 * Simple check to ensure all ports are not used up causing
299 		 * a deadlock here.
300 		 *
301 		 * We split the two cases (up and down) so that the direction
302 		 * is not being tested on each round of the loop.
303 		 */
304 		if (first > last) {
305 			/*
306 			 * counting down
307 			 */
308 			count = first - last;
309 
310 			do {
311 				if (count-- < 0) {	/* completely used? */
312 					inp->inp_laddr.s_addr = INADDR_ANY;
313 					return (EADDRNOTAVAIL);
314 				}
315 				--*lastport;
316 				if (*lastport > first || *lastport < last)
317 					*lastport = first;
318 				lport = htons(*lastport);
319 			} while (in_pcblookup_local(pcbinfo,
320 				 inp->inp_laddr, lport, wild));
321 		} else {
322 			/*
323 			 * counting up
324 			 */
325 			count = last - first;
326 
327 			do {
328 				if (count-- < 0) {	/* completely used? */
329 					/*
330 					 * Undo any address bind that may have
331 					 * occurred above.
332 					 */
333 					inp->inp_laddr.s_addr = INADDR_ANY;
334 					return (EADDRNOTAVAIL);
335 				}
336 				++*lastport;
337 				if (*lastport < first || *lastport > last)
338 					*lastport = first;
339 				lport = htons(*lastport);
340 			} while (in_pcblookup_local(pcbinfo,
341 				 inp->inp_laddr, lport, wild));
342 		}
343 	}
344 	inp->inp_lport = lport;
345 	if (prison_ip(p->p_ucred, 0, &inp->inp_laddr.s_addr)) {
346 		inp->inp_laddr.s_addr = INADDR_ANY;
347 		inp->inp_lport = 0;
348 		return(EINVAL);
349 	}
350 	if (in_pcbinshash(inp) != 0) {
351 		inp->inp_laddr.s_addr = INADDR_ANY;
352 		inp->inp_lport = 0;
353 		return (EAGAIN);
354 	}
355 	return (0);
356 }
357 
358 /*
359  *   Transform old in_pcbconnect() into an inner subroutine for new
360  *   in_pcbconnect(): Do some validity-checking on the remote
361  *   address (in mbuf 'nam') and then determine local host address
362  *   (i.e., which interface) to use to access that remote host.
363  *
364  *   This preserves definition of in_pcbconnect(), while supporting a
365  *   slightly different version for T/TCP.  (This is more than
366  *   a bit of a kludge, but cleaning up the internal interfaces would
367  *   have forced minor changes in every protocol).
368  */
369 
370 int
371 in_pcbladdr(inp, nam, plocal_sin)
372 	register struct inpcb *inp;
373 	struct sockaddr *nam;
374 	struct sockaddr_in **plocal_sin;
375 {
376 	struct in_ifaddr *ia;
377 	register struct sockaddr_in *sin = (struct sockaddr_in *)nam;
378 
379 	if (nam->sa_len != sizeof (*sin))
380 		return (EINVAL);
381 	if (sin->sin_family != AF_INET)
382 		return (EAFNOSUPPORT);
383 	if (sin->sin_port == 0)
384 		return (EADDRNOTAVAIL);
385 	if (!TAILQ_EMPTY(&in_ifaddrhead)) {
386 		/*
387 		 * If the destination address is INADDR_ANY,
388 		 * use the primary local address.
389 		 * If the supplied address is INADDR_BROADCAST,
390 		 * and the primary interface supports broadcast,
391 		 * choose the broadcast address for that interface.
392 		 */
393 #define	satosin(sa)	((struct sockaddr_in *)(sa))
394 #define sintosa(sin)	((struct sockaddr *)(sin))
395 #define ifatoia(ifa)	((struct in_ifaddr *)(ifa))
396 		if (sin->sin_addr.s_addr == INADDR_ANY)
397 		    sin->sin_addr = IA_SIN(TAILQ_FIRST(&in_ifaddrhead))->sin_addr;
398 		else if (sin->sin_addr.s_addr == (u_long)INADDR_BROADCAST &&
399 		  (TAILQ_FIRST(&in_ifaddrhead)->ia_ifp->if_flags & IFF_BROADCAST))
400 		    sin->sin_addr = satosin(&TAILQ_FIRST(&in_ifaddrhead)->ia_broadaddr)->sin_addr;
401 	}
402 	if (inp->inp_laddr.s_addr == INADDR_ANY) {
403 		register struct route *ro;
404 
405 		ia = (struct in_ifaddr *)0;
406 		/*
407 		 * If route is known or can be allocated now,
408 		 * our src addr is taken from the i/f, else punt.
409 		 */
410 		ro = &inp->inp_route;
411 		if (ro->ro_rt &&
412 		    (satosin(&ro->ro_dst)->sin_addr.s_addr !=
413 			sin->sin_addr.s_addr ||
414 		    inp->inp_socket->so_options & SO_DONTROUTE)) {
415 			RTFREE(ro->ro_rt);
416 			ro->ro_rt = (struct rtentry *)0;
417 		}
418 		if ((inp->inp_socket->so_options & SO_DONTROUTE) == 0 && /*XXX*/
419 		    (ro->ro_rt == (struct rtentry *)0 ||
420 		    ro->ro_rt->rt_ifp == (struct ifnet *)0)) {
421 			/* No route yet, so try to acquire one */
422 			ro->ro_dst.sa_family = AF_INET;
423 			ro->ro_dst.sa_len = sizeof(struct sockaddr_in);
424 			((struct sockaddr_in *) &ro->ro_dst)->sin_addr =
425 				sin->sin_addr;
426 			rtalloc(ro);
427 		}
428 		/*
429 		 * If we found a route, use the address
430 		 * corresponding to the outgoing interface
431 		 * unless it is the loopback (in case a route
432 		 * to our address on another net goes to loopback).
433 		 */
434 		if (ro->ro_rt && !(ro->ro_rt->rt_ifp->if_flags & IFF_LOOPBACK))
435 			ia = ifatoia(ro->ro_rt->rt_ifa);
436 		if (ia == 0) {
437 			u_short fport = sin->sin_port;
438 
439 			sin->sin_port = 0;
440 			ia = ifatoia(ifa_ifwithdstaddr(sintosa(sin)));
441 			if (ia == 0)
442 				ia = ifatoia(ifa_ifwithnet(sintosa(sin)));
443 			sin->sin_port = fport;
444 			if (ia == 0)
445 				ia = TAILQ_FIRST(&in_ifaddrhead);
446 			if (ia == 0)
447 				return (EADDRNOTAVAIL);
448 		}
449 		/*
450 		 * If the destination address is multicast and an outgoing
451 		 * interface has been set as a multicast option, use the
452 		 * address of that interface as our source address.
453 		 */
454 		if (IN_MULTICAST(ntohl(sin->sin_addr.s_addr)) &&
455 		    inp->inp_moptions != NULL) {
456 			struct ip_moptions *imo;
457 			struct ifnet *ifp;
458 
459 			imo = inp->inp_moptions;
460 			if (imo->imo_multicast_ifp != NULL) {
461 				ifp = imo->imo_multicast_ifp;
462 				TAILQ_FOREACH(ia, &in_ifaddrhead, ia_link)
463 					if (ia->ia_ifp == ifp)
464 						break;
465 				if (ia == 0)
466 					return (EADDRNOTAVAIL);
467 			}
468 		}
469 	/*
470 	 * Don't do pcblookup call here; return interface in plocal_sin
471 	 * and exit to caller, that will do the lookup.
472 	 */
473 		*plocal_sin = &ia->ia_addr;
474 
475 	}
476 	return(0);
477 }
478 
479 /*
480  * Outer subroutine:
481  * Connect from a socket to a specified address.
482  * Both address and port must be specified in argument sin.
483  * If don't have a local address for this socket yet,
484  * then pick one.
485  */
486 int
487 in_pcbconnect(inp, nam, p)
488 	register struct inpcb *inp;
489 	struct sockaddr *nam;
490 	struct proc *p;
491 {
492 	struct sockaddr_in *ifaddr;
493 	struct sockaddr_in *sin = (struct sockaddr_in *)nam;
494 	struct sockaddr_in sa;
495 	struct ucred *cred;
496 	int error;
497 
498 	cred = inp->inp_socket->so_cred;
499 	if (inp->inp_laddr.s_addr == INADDR_ANY && jailed(cred)) {
500 		bzero(&sa, sizeof (sa));
501 		sa.sin_addr.s_addr = htonl(cred->cr_prison->pr_ip);
502 		sa.sin_len=sizeof (sa);
503 		sa.sin_family = AF_INET;
504 		error = in_pcbbind(inp, (struct sockaddr *)&sa, p);
505 		if (error)
506 		    return (error);
507 	}
508 	/*
509 	 *   Call inner routine, to assign local interface address.
510 	 */
511 	if ((error = in_pcbladdr(inp, nam, &ifaddr)) != 0)
512 		return(error);
513 
514 	if (in_pcblookup_hash(inp->inp_pcbinfo, sin->sin_addr, sin->sin_port,
515 	    inp->inp_laddr.s_addr ? inp->inp_laddr : ifaddr->sin_addr,
516 	    inp->inp_lport, 0, NULL) != NULL) {
517 		return (EADDRINUSE);
518 	}
519 	if (inp->inp_laddr.s_addr == INADDR_ANY) {
520 		if (inp->inp_lport == 0) {
521 			error = in_pcbbind(inp, (struct sockaddr *)0, p);
522 			if (error)
523 				return (error);
524 		}
525 		inp->inp_laddr = ifaddr->sin_addr;
526 	}
527 	inp->inp_faddr = sin->sin_addr;
528 	inp->inp_fport = sin->sin_port;
529 	in_pcbrehash(inp);
530 	return (0);
531 }
532 
533 void
534 in_pcbdisconnect(inp)
535 	struct inpcb *inp;
536 {
537 
538 	inp->inp_faddr.s_addr = INADDR_ANY;
539 	inp->inp_fport = 0;
540 	in_pcbrehash(inp);
541 	if (inp->inp_socket->so_state & SS_NOFDREF)
542 		in_pcbdetach(inp);
543 }
544 
545 void
546 in_pcbdetach(inp)
547 	struct inpcb *inp;
548 {
549 	struct socket *so = inp->inp_socket;
550 	struct inpcbinfo *ipi = inp->inp_pcbinfo;
551 	struct rtentry *rt  = inp->inp_route.ro_rt;
552 
553 #ifdef IPSEC
554 	ipsec4_delete_pcbpolicy(inp);
555 #endif /*IPSEC*/
556 	inp->inp_gencnt = ++ipi->ipi_gencnt;
557 	in_pcbremlists(inp);
558 	so->so_pcb = 0;
559 	sofree(so);
560 	if (inp->inp_options)
561 		(void)m_free(inp->inp_options);
562 	if (rt) {
563 		/*
564 		 * route deletion requires reference count to be <= zero
565 		 */
566 		if ((rt->rt_flags & RTF_DELCLONE) &&
567 		    (rt->rt_flags & RTF_WASCLONED) &&
568 		    (rt->rt_refcnt <= 1)) {
569 			rt->rt_refcnt--;
570 			rt->rt_flags &= ~RTF_UP;
571 			rtrequest(RTM_DELETE, rt_key(rt),
572 				  rt->rt_gateway, rt_mask(rt),
573 				  rt->rt_flags, (struct rtentry **)0);
574 		}
575 		else
576 			rtfree(rt);
577 	}
578 	ip_freemoptions(inp->inp_moptions);
579 	inp->inp_vflag = 0;
580 	zfree(ipi->ipi_zone, inp);
581 }
582 
583 /*
584  * The calling convention of in_setsockaddr() and in_setpeeraddr() was
585  * modified to match the pru_sockaddr() and pru_peeraddr() entry points
586  * in struct pr_usrreqs, so that protocols can just reference then directly
587  * without the need for a wrapper function.  The socket must have a valid
588  * (i.e., non-nil) PCB, but it should be impossible to get an invalid one
589  * except through a kernel programming error, so it is acceptable to panic
590  * (or in this case trap) if the PCB is invalid.  (Actually, we don't trap
591  * because there actually /is/ a programming error somewhere... XXX)
592  */
593 int
594 in_setsockaddr(so, nam)
595 	struct socket *so;
596 	struct sockaddr **nam;
597 {
598 	int s;
599 	register struct inpcb *inp;
600 	register struct sockaddr_in *sin;
601 
602 	/*
603 	 * Do the malloc first in case it blocks.
604 	 */
605 	MALLOC(sin, struct sockaddr_in *, sizeof *sin, M_SONAME,
606 		M_WAITOK | M_ZERO);
607 	sin->sin_family = AF_INET;
608 	sin->sin_len = sizeof(*sin);
609 
610 	s = splnet();
611 	inp = sotoinpcb(so);
612 	if (!inp) {
613 		splx(s);
614 		free(sin, M_SONAME);
615 		return ECONNRESET;
616 	}
617 	sin->sin_port = inp->inp_lport;
618 	sin->sin_addr = inp->inp_laddr;
619 	splx(s);
620 
621 	*nam = (struct sockaddr *)sin;
622 	return 0;
623 }
624 
625 int
626 in_setpeeraddr(so, nam)
627 	struct socket *so;
628 	struct sockaddr **nam;
629 {
630 	int s;
631 	struct inpcb *inp;
632 	register struct sockaddr_in *sin;
633 
634 	/*
635 	 * Do the malloc first in case it blocks.
636 	 */
637 	MALLOC(sin, struct sockaddr_in *, sizeof *sin, M_SONAME,
638 		M_WAITOK | M_ZERO);
639 	sin->sin_family = AF_INET;
640 	sin->sin_len = sizeof(*sin);
641 
642 	s = splnet();
643 	inp = sotoinpcb(so);
644 	if (!inp) {
645 		splx(s);
646 		free(sin, M_SONAME);
647 		return ECONNRESET;
648 	}
649 	sin->sin_port = inp->inp_fport;
650 	sin->sin_addr = inp->inp_faddr;
651 	splx(s);
652 
653 	*nam = (struct sockaddr *)sin;
654 	return 0;
655 }
656 
657 void
658 in_pcbnotifyall(head, faddr, errno, notify)
659 	struct inpcbhead *head;
660 	struct in_addr faddr;
661 	int errno;
662 	void (*notify) __P((struct inpcb *, int));
663 {
664 	struct inpcb *inp, *ninp;
665 	int s;
666 
667 	s = splnet();
668 	for (inp = LIST_FIRST(head); inp != NULL; inp = ninp) {
669 		ninp = LIST_NEXT(inp, inp_list);
670 #ifdef INET6
671 		if ((inp->inp_vflag & INP_IPV4) == 0)
672 			continue;
673 #endif
674 		if (inp->inp_faddr.s_addr != faddr.s_addr ||
675 		    inp->inp_socket == NULL)
676 				continue;
677 		(*notify)(inp, errno);
678 	}
679 	splx(s);
680 }
681 
682 /*
683  * Check for alternatives when higher level complains
684  * about service problems.  For now, invalidate cached
685  * routing information.  If the route was created dynamically
686  * (by a redirect), time to try a default gateway again.
687  */
688 void
689 in_losing(inp)
690 	struct inpcb *inp;
691 {
692 	register struct rtentry *rt;
693 	struct rt_addrinfo info;
694 
695 	if ((rt = inp->inp_route.ro_rt)) {
696 		bzero((caddr_t)&info, sizeof(info));
697 		info.rti_info[RTAX_DST] =
698 			(struct sockaddr *)&inp->inp_route.ro_dst;
699 		info.rti_info[RTAX_GATEWAY] = rt->rt_gateway;
700 		info.rti_info[RTAX_NETMASK] = rt_mask(rt);
701 		rt_missmsg(RTM_LOSING, &info, rt->rt_flags, 0);
702 		if (rt->rt_flags & RTF_DYNAMIC)
703 			(void) rtrequest(RTM_DELETE, rt_key(rt),
704 				rt->rt_gateway, rt_mask(rt), rt->rt_flags,
705 				(struct rtentry **)0);
706 		inp->inp_route.ro_rt = 0;
707 		rtfree(rt);
708 		/*
709 		 * A new route can be allocated
710 		 * the next time output is attempted.
711 		 */
712 	}
713 }
714 
715 /*
716  * After a routing change, flush old routing
717  * and allocate a (hopefully) better one.
718  */
719 void
720 in_rtchange(inp, errno)
721 	register struct inpcb *inp;
722 	int errno;
723 {
724 	if (inp->inp_route.ro_rt) {
725 		rtfree(inp->inp_route.ro_rt);
726 		inp->inp_route.ro_rt = 0;
727 		/*
728 		 * A new route can be allocated the next time
729 		 * output is attempted.
730 		 */
731 	}
732 }
733 
734 /*
735  * Lookup a PCB based on the local address and port.
736  */
737 struct inpcb *
738 in_pcblookup_local(pcbinfo, laddr, lport_arg, wild_okay)
739 	struct inpcbinfo *pcbinfo;
740 	struct in_addr laddr;
741 	u_int lport_arg;
742 	int wild_okay;
743 {
744 	register struct inpcb *inp;
745 	int matchwild = 3, wildcard;
746 	u_short lport = lport_arg;
747 
748 	if (!wild_okay) {
749 		struct inpcbhead *head;
750 		/*
751 		 * Look for an unconnected (wildcard foreign addr) PCB that
752 		 * matches the local address and port we're looking for.
753 		 */
754 		head = &pcbinfo->hashbase[INP_PCBHASH(INADDR_ANY, lport, 0, pcbinfo->hashmask)];
755 		LIST_FOREACH(inp, head, inp_hash) {
756 #ifdef INET6
757 			if ((inp->inp_vflag & INP_IPV4) == 0)
758 				continue;
759 #endif
760 			if (inp->inp_faddr.s_addr == INADDR_ANY &&
761 			    inp->inp_laddr.s_addr == laddr.s_addr &&
762 			    inp->inp_lport == lport) {
763 				/*
764 				 * Found.
765 				 */
766 				return (inp);
767 			}
768 		}
769 		/*
770 		 * Not found.
771 		 */
772 		return (NULL);
773 	} else {
774 		struct inpcbporthead *porthash;
775 		struct inpcbport *phd;
776 		struct inpcb *match = NULL;
777 		/*
778 		 * Best fit PCB lookup.
779 		 *
780 		 * First see if this local port is in use by looking on the
781 		 * port hash list.
782 		 */
783 		porthash = &pcbinfo->porthashbase[INP_PCBPORTHASH(lport,
784 		    pcbinfo->porthashmask)];
785 		LIST_FOREACH(phd, porthash, phd_hash) {
786 			if (phd->phd_port == lport)
787 				break;
788 		}
789 		if (phd != NULL) {
790 			/*
791 			 * Port is in use by one or more PCBs. Look for best
792 			 * fit.
793 			 */
794 			LIST_FOREACH(inp, &phd->phd_pcblist, inp_portlist) {
795 				wildcard = 0;
796 #ifdef INET6
797 				if ((inp->inp_vflag & INP_IPV4) == 0)
798 					continue;
799 #endif
800 				if (inp->inp_faddr.s_addr != INADDR_ANY)
801 					wildcard++;
802 				if (inp->inp_laddr.s_addr != INADDR_ANY) {
803 					if (laddr.s_addr == INADDR_ANY)
804 						wildcard++;
805 					else if (inp->inp_laddr.s_addr != laddr.s_addr)
806 						continue;
807 				} else {
808 					if (laddr.s_addr != INADDR_ANY)
809 						wildcard++;
810 				}
811 				if (wildcard < matchwild) {
812 					match = inp;
813 					matchwild = wildcard;
814 					if (matchwild == 0) {
815 						break;
816 					}
817 				}
818 			}
819 		}
820 		return (match);
821 	}
822 }
823 
824 /*
825  * Lookup PCB in hash list.
826  */
827 struct inpcb *
828 in_pcblookup_hash(pcbinfo, faddr, fport_arg, laddr, lport_arg, wildcard,
829 		  ifp)
830 	struct inpcbinfo *pcbinfo;
831 	struct in_addr faddr, laddr;
832 	u_int fport_arg, lport_arg;
833 	int wildcard;
834 	struct ifnet *ifp;
835 {
836 	struct inpcbhead *head;
837 	register struct inpcb *inp;
838 	u_short fport = fport_arg, lport = lport_arg;
839 
840 	/*
841 	 * First look for an exact match.
842 	 */
843 	head = &pcbinfo->hashbase[INP_PCBHASH(faddr.s_addr, lport, fport, pcbinfo->hashmask)];
844 	LIST_FOREACH(inp, head, inp_hash) {
845 #ifdef INET6
846 		if ((inp->inp_vflag & INP_IPV4) == 0)
847 			continue;
848 #endif
849 		if (inp->inp_faddr.s_addr == faddr.s_addr &&
850 		    inp->inp_laddr.s_addr == laddr.s_addr &&
851 		    inp->inp_fport == fport &&
852 		    inp->inp_lport == lport) {
853 			/*
854 			 * Found.
855 			 */
856 			return (inp);
857 		}
858 	}
859 	if (wildcard) {
860 		struct inpcb *local_wild = NULL;
861 #if defined(INET6)
862 		struct inpcb *local_wild_mapped = NULL;
863 #endif /* defined(INET6) */
864 
865 		head = &pcbinfo->hashbase[INP_PCBHASH(INADDR_ANY, lport, 0, pcbinfo->hashmask)];
866 		LIST_FOREACH(inp, head, inp_hash) {
867 #ifdef INET6
868 			if ((inp->inp_vflag & INP_IPV4) == 0)
869 				continue;
870 #endif
871 			if (inp->inp_faddr.s_addr == INADDR_ANY &&
872 			    inp->inp_lport == lport) {
873 #if defined(NFAITH) && NFAITH > 0
874 				if (ifp && ifp->if_type == IFT_FAITH &&
875 				    (inp->inp_flags & INP_FAITH) == 0)
876 					continue;
877 #endif
878 				if (inp->inp_laddr.s_addr == laddr.s_addr)
879 					return (inp);
880 				else if (inp->inp_laddr.s_addr == INADDR_ANY) {
881 #if defined(INET6)
882 					if (INP_CHECK_SOCKAF(inp->inp_socket,
883 							     AF_INET6))
884 						local_wild_mapped = inp;
885 					else
886 #endif /* defined(INET6) */
887 					local_wild = inp;
888 				}
889 			}
890 		}
891 #if defined(INET6)
892 		if (local_wild == NULL)
893 			return (local_wild_mapped);
894 #endif /* defined(INET6) */
895 		return (local_wild);
896 	}
897 
898 	/*
899 	 * Not found.
900 	 */
901 	return (NULL);
902 }
903 
904 /*
905  * Insert PCB onto various hash lists.
906  */
907 int
908 in_pcbinshash(inp)
909 	struct inpcb *inp;
910 {
911 	struct inpcbhead *pcbhash;
912 	struct inpcbporthead *pcbporthash;
913 	struct inpcbinfo *pcbinfo = inp->inp_pcbinfo;
914 	struct inpcbport *phd;
915 	u_int32_t hashkey_faddr;
916 
917 #ifdef INET6
918 	if (inp->inp_vflag & INP_IPV6)
919 		hashkey_faddr = inp->in6p_faddr.s6_addr32[3] /* XXX */;
920 	else
921 #endif /* INET6 */
922 	hashkey_faddr = inp->inp_faddr.s_addr;
923 
924 	pcbhash = &pcbinfo->hashbase[INP_PCBHASH(hashkey_faddr,
925 		 inp->inp_lport, inp->inp_fport, pcbinfo->hashmask)];
926 
927 	pcbporthash = &pcbinfo->porthashbase[INP_PCBPORTHASH(inp->inp_lport,
928 	    pcbinfo->porthashmask)];
929 
930 	/*
931 	 * Go through port list and look for a head for this lport.
932 	 */
933 	LIST_FOREACH(phd, pcbporthash, phd_hash) {
934 		if (phd->phd_port == inp->inp_lport)
935 			break;
936 	}
937 	/*
938 	 * If none exists, malloc one and tack it on.
939 	 */
940 	if (phd == NULL) {
941 		MALLOC(phd, struct inpcbport *, sizeof(struct inpcbport), M_PCB, M_NOWAIT);
942 		if (phd == NULL) {
943 			return (ENOBUFS); /* XXX */
944 		}
945 		phd->phd_port = inp->inp_lport;
946 		LIST_INIT(&phd->phd_pcblist);
947 		LIST_INSERT_HEAD(pcbporthash, phd, phd_hash);
948 	}
949 	inp->inp_phd = phd;
950 	LIST_INSERT_HEAD(&phd->phd_pcblist, inp, inp_portlist);
951 	LIST_INSERT_HEAD(pcbhash, inp, inp_hash);
952 	return (0);
953 }
954 
955 /*
956  * Move PCB to the proper hash bucket when { faddr, fport } have  been
957  * changed. NOTE: This does not handle the case of the lport changing (the
958  * hashed port list would have to be updated as well), so the lport must
959  * not change after in_pcbinshash() has been called.
960  */
961 void
962 in_pcbrehash(inp)
963 	struct inpcb *inp;
964 {
965 	struct inpcbhead *head;
966 	u_int32_t hashkey_faddr;
967 
968 #ifdef INET6
969 	if (inp->inp_vflag & INP_IPV6)
970 		hashkey_faddr = inp->in6p_faddr.s6_addr32[3] /* XXX */;
971 	else
972 #endif /* INET6 */
973 	hashkey_faddr = inp->inp_faddr.s_addr;
974 
975 	head = &inp->inp_pcbinfo->hashbase[INP_PCBHASH(hashkey_faddr,
976 		inp->inp_lport, inp->inp_fport, inp->inp_pcbinfo->hashmask)];
977 
978 	LIST_REMOVE(inp, inp_hash);
979 	LIST_INSERT_HEAD(head, inp, inp_hash);
980 }
981 
982 /*
983  * Remove PCB from various lists.
984  */
985 void
986 in_pcbremlists(inp)
987 	struct inpcb *inp;
988 {
989 	inp->inp_gencnt = ++inp->inp_pcbinfo->ipi_gencnt;
990 	if (inp->inp_lport) {
991 		struct inpcbport *phd = inp->inp_phd;
992 
993 		LIST_REMOVE(inp, inp_hash);
994 		LIST_REMOVE(inp, inp_portlist);
995 		if (LIST_FIRST(&phd->phd_pcblist) == NULL) {
996 			LIST_REMOVE(phd, phd_hash);
997 			free(phd, M_PCB);
998 		}
999 	}
1000 	LIST_REMOVE(inp, inp_list);
1001 	inp->inp_pcbinfo->ipi_count--;
1002 }
1003 
1004 int
1005 prison_xinpcb(struct proc *p, struct inpcb *inp)
1006 {
1007 	if (!jailed(p->p_ucred))
1008 		return (0);
1009 	if (ntohl(inp->inp_laddr.s_addr) == p->p_ucred->cr_prison->pr_ip)
1010 		return (0);
1011 	return (1);
1012 }
1013