1 /* $FreeBSD: src/sys/netinet6/in6_pcb.c,v 1.10.2.9 2003/01/24 05:11:35 sam Exp $ */
2 /* $DragonFly: src/sys/netinet6/in6_pcb.c,v 1.33 2006/12/29 19:02:56 victor Exp $ */
3 /* $KAME: in6_pcb.c,v 1.31 2001/05/21 05:45:10 jinmei Exp $ */
6 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project 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.
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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
36 * Copyright (c) 1982, 1986, 1991, 1993
37 * The Regents of the University of California. All rights reserved.
39 * Redistribution and use in source and binary forms, with or without
40 * modification, are permitted provided that the following conditions
42 * 1. Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * 2. Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in the
46 * documentation and/or other materials provided with the distribution.
47 * 3. All advertising materials mentioning features or use of this software
48 * must display the following acknowledgement:
49 * This product includes software developed by the University of
50 * California, Berkeley and its contributors.
51 * 4. Neither the name of the University nor the names of its contributors
52 * may be used to endorse or promote products derived from this software
53 * without specific prior written permission.
55 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
56 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
58 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
59 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
61 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
63 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
64 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
67 * @(#)in_pcb.c 8.2 (Berkeley) 1/4/94
71 #include "opt_inet6.h"
72 #include "opt_ipsec.h"
74 #include <sys/param.h>
75 #include <sys/systm.h>
76 #include <sys/malloc.h>
78 #include <sys/domain.h>
79 #include <sys/protosw.h>
80 #include <sys/socket.h>
81 #include <sys/socketvar.h>
82 #include <sys/sockio.h>
83 #include <sys/errno.h>
87 #include <sys/thread2.h>
89 #include <vm/vm_zone.h>
92 #include <net/if_types.h>
93 #include <net/route.h>
95 #include <netinet/in.h>
96 #include <netinet/in_var.h>
97 #include <netinet/in_systm.h>
98 #include <netinet/ip6.h>
99 #include <netinet/ip_var.h>
100 #include <netinet6/ip6_var.h>
101 #include <netinet6/nd6.h>
102 #include <netinet/in_pcb.h>
103 #include <netinet6/in6_pcb.h>
106 #include <netinet6/ipsec.h>
108 #include <netinet6/ipsec6.h>
110 #include <netinet6/ah.h>
112 #include <netinet6/ah6.h>
114 #include <netproto/key/key.h>
118 #include <netproto/ipsec/ipsec.h>
119 #include <netproto/ipsec/ipsec6.h>
120 #include <netproto/ipsec/key.h>
122 #endif /* FAST_IPSEC */
124 struct in6_addr zeroin6_addr
;
127 in6_pcbbind(struct inpcb
*inp
, struct sockaddr
*nam
, struct thread
*td
)
129 struct socket
*so
= inp
->inp_socket
;
130 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)NULL
;
131 struct sockaddr_in6 jsin6
;
132 struct inpcbinfo
*pcbinfo
= inp
->inp_pcbinfo
;
133 struct proc
*p
= td
->td_proc
;
134 struct ucred
*cred
= NULL
;
136 int wild
= 0, reuseport
= (so
->so_options
& SO_REUSEPORT
);
138 if (!in6_ifaddr
) /* XXX broken! */
139 return (EADDRNOTAVAIL
);
140 if (inp
->inp_lport
|| !IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
))
142 if ((so
->so_options
& (SO_REUSEADDR
|SO_REUSEPORT
)) == 0)
147 sin6
= (struct sockaddr_in6
*)nam
;
148 if (nam
->sa_len
!= sizeof(*sin6
))
153 if (nam
->sa_family
!= AF_INET6
)
154 return (EAFNOSUPPORT
);
156 if (!prison_replace_wildcards(td
, nam
))
159 /* KAME hack: embed scopeid */
160 if (in6_embedscope(&sin6
->sin6_addr
, sin6
, inp
, NULL
) != 0)
162 /* this must be cleared for ifa_ifwithaddr() */
163 sin6
->sin6_scope_id
= 0;
165 lport
= sin6
->sin6_port
;
166 if (IN6_IS_ADDR_MULTICAST(&sin6
->sin6_addr
)) {
168 * Treat SO_REUSEADDR as SO_REUSEPORT for multicast;
169 * allow compepte duplication of binding if
170 * SO_REUSEPORT is set, or if SO_REUSEADDR is set
171 * and a multicast address is bound on both
172 * new and duplicated sockets.
174 if (so
->so_options
& SO_REUSEADDR
)
175 reuseport
= SO_REUSEADDR
|SO_REUSEPORT
;
176 } else if (!IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
)) {
177 struct ifaddr
*ia
= NULL
;
179 sin6
->sin6_port
= 0; /* yech... */
180 if (!prison_replace_wildcards(td
, (struct sockaddr
*)sin6
)) {
181 sin6
->sin6_addr
= kin6addr_any
;
184 if ((ia
= ifa_ifwithaddr((struct sockaddr
*)sin6
)) == 0)
185 return (EADDRNOTAVAIL
);
188 * XXX: bind to an anycast address might accidentally
189 * cause sending a packet with anycast source address.
190 * We should allow to bind to a deprecated address, since
191 * the application dare to use it.
194 ((struct in6_ifaddr
*)ia
)->ia6_flags
&
195 (IN6_IFF_ANYCAST
|IN6_IFF_NOTREADY
|IN6_IFF_DETACHED
)) {
196 return (EADDRNOTAVAIL
);
203 if (ntohs(lport
) < IPV6PORT_RESERVED
&& cred
&&
204 suser_cred(cred
, PRISON_ROOT
))
206 if (so
->so_cred
->cr_uid
!= 0 &&
207 !IN6_IS_ADDR_MULTICAST(&sin6
->sin6_addr
)) {
208 t
= in6_pcblookup_local(pcbinfo
,
209 &sin6
->sin6_addr
, lport
,
210 INPLOOKUP_WILDCARD
, cred
);
212 (!IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
) ||
213 !IN6_IS_ADDR_UNSPECIFIED(&t
->in6p_laddr
) ||
214 (t
->inp_socket
->so_options
&
215 SO_REUSEPORT
) == 0) &&
216 (so
->so_cred
->cr_uid
!=
217 t
->inp_socket
->so_cred
->cr_uid
))
219 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) == 0 &&
220 IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
)) {
221 struct sockaddr_in sin
;
223 in6_sin6_2_sin(&sin
, sin6
);
224 t
= in_pcblookup_local(pcbinfo
,
226 INPLOOKUP_WILDCARD
, cred
);
228 (so
->so_cred
->cr_uid
!=
229 t
->inp_socket
->so_cred
->cr_uid
) &&
230 (ntohl(t
->inp_laddr
.s_addr
) !=
233 INP_SOCKAF(t
->inp_socket
)))
237 if (cred
&& cred
->cr_prison
&&
238 !prison_replace_wildcards(td
, nam
))
239 return(EADDRNOTAVAIL
);
240 t
= in6_pcblookup_local(pcbinfo
, &sin6
->sin6_addr
,
242 if (t
&& (reuseport
& t
->inp_socket
->so_options
) == 0)
244 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) == 0 &&
245 IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
)) {
246 struct sockaddr_in sin
;
248 in6_sin6_2_sin(&sin
, sin6
);
249 t
= in_pcblookup_local(pcbinfo
,
253 (reuseport
& t
->inp_socket
->so_options
)
255 (ntohl(t
->inp_laddr
.s_addr
)
258 INP_SOCKAF(t
->inp_socket
)))
262 inp
->in6p_laddr
= sin6
->sin6_addr
;
267 jsin6
.sin6_addr
= inp
->in6p_laddr
;
268 jsin6
.sin6_family
= AF_INET6
;
269 if (!prison_replace_wildcards(td
, (struct sockaddr
*)&jsin6
)) {
270 inp
->in6p_laddr
= kin6addr_any
;
275 if ((e
= in6_pcbsetport(&inp
->in6p_laddr
, inp
, td
)) != 0)
279 inp
->inp_lport
= lport
;
280 if (in_pcbinsporthash(inp
) != 0) {
281 inp
->in6p_laddr
= kin6addr_any
;
290 * Transform old in6_pcbconnect() into an inner subroutine for new
291 * in6_pcbconnect(): Do some validity-checking on the remote
292 * address (in mbuf 'nam') and then determine local host address
293 * (i.e., which interface) to use to access that remote host.
295 * This preserves definition of in6_pcbconnect(), while supporting a
296 * slightly different version for T/TCP. (This is more than
297 * a bit of a kludge, but cleaning up the internal interfaces would
298 * have forced minor changes in every protocol).
302 in6_pcbladdr(struct inpcb
*inp
, struct sockaddr
*nam
,
303 struct in6_addr
**plocal_addr6
, struct thread
*td
)
305 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)nam
;
306 struct ifnet
*ifp
= NULL
;
309 if (nam
->sa_len
!= sizeof (*sin6
))
311 if (sin6
->sin6_family
!= AF_INET6
)
312 return (EAFNOSUPPORT
);
313 if (sin6
->sin6_port
== 0)
314 return (EADDRNOTAVAIL
);
316 /* KAME hack: embed scopeid */
317 if (in6_embedscope(&sin6
->sin6_addr
, sin6
, inp
, &ifp
) != 0)
322 * If the destination address is UNSPECIFIED addr,
323 * use the loopback addr, e.g ::1.
325 if (IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
))
326 sin6
->sin6_addr
= kin6addr_loopback
;
330 * XXX: in6_selectsrc might replace the bound local address
331 * with the address specified by setsockopt(IPV6_PKTINFO).
332 * Is it the intended behavior?
334 *plocal_addr6
= in6_selectsrc(sin6
, inp
->in6p_outputopts
,
337 &inp
->in6p_laddr
, &error
, td
);
338 if (*plocal_addr6
== 0) {
340 error
= EADDRNOTAVAIL
;
344 * Don't do pcblookup call here; return interface in
346 * and exit to caller, that will do the lookup.
350 if (inp
->in6p_route
.ro_rt
)
351 ifp
= inp
->in6p_route
.ro_rt
->rt_ifp
;
358 * Connect from a socket to a specified address.
359 * Both address and port must be specified in argument sin.
360 * If don't have a local address for this socket yet,
364 in6_pcbconnect(struct inpcb
*inp
, struct sockaddr
*nam
, struct thread
*td
)
366 struct in6_addr
*addr6
;
367 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)nam
;
371 * Call inner routine, to assign local interface address.
372 * in6_pcbladdr() may automatically fill in sin6_scope_id.
374 if ((error
= in6_pcbladdr(inp
, nam
, &addr6
, td
)) != 0)
377 if (in6_pcblookup_hash(inp
->inp_cpcbinfo
, &sin6
->sin6_addr
,
379 IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)
380 ? addr6
: &inp
->in6p_laddr
,
381 inp
->inp_lport
, 0, NULL
) != NULL
) {
384 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)) {
385 if (inp
->inp_lport
== 0) {
386 error
= in6_pcbbind(inp
, (struct sockaddr
*)0, td
);
390 inp
->in6p_laddr
= *addr6
;
392 inp
->in6p_faddr
= sin6
->sin6_addr
;
393 inp
->inp_fport
= sin6
->sin6_port
;
394 /* update flowinfo - draft-itojun-ipv6-flowlabel-api-00 */
395 inp
->in6p_flowinfo
&= ~IPV6_FLOWLABEL_MASK
;
396 if (inp
->in6p_flags
& IN6P_AUTOFLOWLABEL
)
397 inp
->in6p_flowinfo
|=
398 (htonl(ip6_flow_seq
++) & IPV6_FLOWLABEL_MASK
);
400 in_pcbinsconnhash(inp
);
406 * Return an IPv6 address, which is the most appropriate for given
407 * destination and user specified options.
408 * If necessary, this function lookups the routing table and return
409 * an entry to the caller for later use.
412 in6_selectsrc(struct sockaddr_in6
*dstsock
, struct ip6_pktopts
*opts
,
413 struct ip6_moptions
*mopts
, struct route_in6
*ro
,
414 struct in6_addr
*laddr
, int *errorp
, struct thread
*td
)
416 struct sockaddr_in6 jsin6
;
417 struct ucred
*cred
= NULL
;
418 struct in6_addr
*dst
;
419 struct in6_ifaddr
*ia6
= 0;
420 struct in6_pktinfo
*pi
= NULL
;
423 if (td
&& td
->td_proc
&& td
->td_proc
->p_ucred
)
424 cred
= td
->td_proc
->p_ucred
;
425 if (cred
&& cred
->cr_prison
)
427 jsin6
.sin6_family
= AF_INET6
;
428 dst
= &dstsock
->sin6_addr
;
432 * If the source address is explicitly specified by the caller,
435 if (opts
&& (pi
= opts
->ip6po_pktinfo
) &&
436 !IN6_IS_ADDR_UNSPECIFIED(&pi
->ipi6_addr
)) {
437 jsin6
.sin6_addr
= pi
->ipi6_addr
;
438 if (jailed
&& !jailed_ip(cred
->cr_prison
,
439 (struct sockaddr
*)&jsin6
)) {
442 return (&pi
->ipi6_addr
);
447 * If the source address is not specified but the socket(if any)
448 * is already bound, use the bound address.
450 if (laddr
&& !IN6_IS_ADDR_UNSPECIFIED(laddr
)) {
451 jsin6
.sin6_addr
= *laddr
;
452 if (jailed
&& !jailed_ip(cred
->cr_prison
,
453 (struct sockaddr
*)&jsin6
)) {
461 * If the caller doesn't specify the source address but
462 * the outgoing interface, use an address associated with
465 if (pi
&& pi
->ipi6_ifindex
) {
466 /* XXX boundary check is assumed to be already done. */
467 ia6
= in6_ifawithscope(ifindex2ifnet
[pi
->ipi6_ifindex
],
471 jsin6
.sin6_addr
= (&ia6
->ia_addr
)->sin6_addr
;
472 if (!jailed_ip(cred
->cr_prison
,
473 (struct sockaddr
*)&jsin6
))
478 *errorp
= EADDRNOTAVAIL
;
481 return (&satosin6(&ia6
->ia_addr
)->sin6_addr
);
485 * If the destination address is a link-local unicast address or
486 * a multicast address, and if the outgoing interface is specified
487 * by the sin6_scope_id filed, use an address associated with the
489 * XXX: We're now trying to define more specific semantics of
490 * sin6_scope_id field, so this part will be rewritten in
493 if ((IN6_IS_ADDR_LINKLOCAL(dst
) || IN6_IS_ADDR_MULTICAST(dst
)) &&
494 dstsock
->sin6_scope_id
) {
496 * I'm not sure if boundary check for scope_id is done
499 if (dstsock
->sin6_scope_id
< 0 ||
500 if_index
< dstsock
->sin6_scope_id
) {
501 *errorp
= ENXIO
; /* XXX: better error? */
504 ia6
= in6_ifawithscope(ifindex2ifnet
[dstsock
->sin6_scope_id
],
508 jsin6
.sin6_addr
= (&ia6
->ia_addr
)->sin6_addr
;
509 if (!jailed_ip(cred
->cr_prison
,
510 (struct sockaddr
*)&jsin6
))
515 *errorp
= EADDRNOTAVAIL
;
518 return (&satosin6(&ia6
->ia_addr
)->sin6_addr
);
522 * If the destination address is a multicast address and
523 * the outgoing interface for the address is specified
524 * by the caller, use an address associated with the interface.
525 * There is a sanity check here; if the destination has node-local
526 * scope, the outgoing interfacde should be a loopback address.
527 * Even if the outgoing interface is not specified, we also
528 * choose a loopback interface as the outgoing interface.
530 if (!jailed
&& IN6_IS_ADDR_MULTICAST(dst
)) {
531 struct ifnet
*ifp
= mopts
? mopts
->im6o_multicast_ifp
: NULL
;
533 if (ifp
== NULL
&& IN6_IS_ADDR_MC_NODELOCAL(dst
)) {
538 ia6
= in6_ifawithscope(ifp
, dst
);
540 *errorp
= EADDRNOTAVAIL
;
543 return (&ia6
->ia_addr
.sin6_addr
);
548 * If the next hop address for the packet is specified
549 * by caller, use an address associated with the route
553 struct sockaddr_in6
*sin6_next
;
556 if (opts
&& opts
->ip6po_nexthop
) {
557 sin6_next
= satosin6(opts
->ip6po_nexthop
);
558 rt
= nd6_lookup(&sin6_next
->sin6_addr
, 1, NULL
);
560 ia6
= in6_ifawithscope(rt
->rt_ifp
, dst
);
562 ia6
= ifatoia6(rt
->rt_ifa
);
565 jsin6
.sin6_addr
= (&ia6
->ia_addr
)->sin6_addr
;
566 if (!jailed_ip(cred
->cr_prison
,
567 (struct sockaddr
*)&jsin6
))
572 *errorp
= EADDRNOTAVAIL
;
575 return (&satosin6(&ia6
->ia_addr
)->sin6_addr
);
580 * If route is known or can be allocated now,
581 * our src addr is taken from the i/f, else punt.
585 !IN6_ARE_ADDR_EQUAL(&satosin6(&ro
->ro_dst
)->sin6_addr
, dst
)) {
589 if (ro
->ro_rt
== NULL
|| ro
->ro_rt
->rt_ifp
== NULL
) {
590 struct sockaddr_in6
*dst6
;
592 /* No route yet, so try to acquire one */
593 bzero(&ro
->ro_dst
, sizeof(struct sockaddr_in6
));
595 dst6
->sin6_family
= AF_INET6
;
596 dst6
->sin6_len
= sizeof(struct sockaddr_in6
);
597 dst6
->sin6_addr
= *dst
;
598 if (!jailed
&& IN6_IS_ADDR_MULTICAST(dst
)) {
600 rtpurelookup((struct sockaddr
*)&ro
->ro_dst
);
602 rtalloc((struct route
*)ro
);
607 * in_pcbconnect() checks out IFF_LOOPBACK to skip using
608 * the address. But we don't know why it does so.
609 * It is necessary to ensure the scope even for lo0
610 * so doesn't check out IFF_LOOPBACK.
614 ia6
= in6_ifawithscope(ro
->ro_rt
->rt_ifa
->ifa_ifp
, dst
);
616 jsin6
.sin6_addr
= (&ia6
->ia_addr
)->sin6_addr
;
617 if (!jailed_ip(cred
->cr_prison
,
618 (struct sockaddr
*)&jsin6
))
622 if (ia6
== 0) /* xxx scope error ?*/
623 ia6
= ifatoia6(ro
->ro_rt
->rt_ifa
);
626 jsin6
.sin6_addr
= (&ia6
->ia_addr
)->sin6_addr
;
627 if (!jailed_ip(cred
->cr_prison
,
628 (struct sockaddr
*)&jsin6
))
633 *errorp
= EHOSTUNREACH
; /* no route */
636 return (&satosin6(&ia6
->ia_addr
)->sin6_addr
);
639 *errorp
= EADDRNOTAVAIL
;
644 * Default hop limit selection. The precedence is as follows:
645 * 1. Hoplimit valued specified via ioctl.
646 * 2. (If the outgoing interface is detected) the current
647 * hop limit of the interface specified by router advertisement.
648 * 3. The system default hoplimit.
651 in6_selecthlim(struct in6pcb
*in6p
, struct ifnet
*ifp
)
653 if (in6p
&& in6p
->in6p_hops
>= 0)
654 return (in6p
->in6p_hops
);
656 return (ND_IFINFO(ifp
)->chlim
);
658 return (ip6_defhlim
);
663 in6_pcbdisconnect(struct inpcb
*inp
)
665 bzero((caddr_t
)&inp
->in6p_faddr
, sizeof(inp
->in6p_faddr
));
667 /* clear flowinfo - draft-itojun-ipv6-flowlabel-api-00 */
668 inp
->in6p_flowinfo
&= ~IPV6_FLOWLABEL_MASK
;
669 in_pcbremconnhash(inp
);
670 if (inp
->inp_socket
->so_state
& SS_NOFDREF
)
675 in6_pcbdetach(struct inpcb
*inp
)
677 struct socket
*so
= inp
->inp_socket
;
678 struct inpcbinfo
*ipi
= inp
->inp_pcbinfo
;
681 if (inp
->in6p_sp
!= NULL
)
682 ipsec6_delete_pcbpolicy(inp
);
684 inp
->inp_gencnt
= ++ipi
->ipi_gencnt
;
689 if (inp
->in6p_options
)
690 m_freem(inp
->in6p_options
);
691 ip6_freepcbopts(inp
->in6p_outputopts
);
692 ip6_freemoptions(inp
->in6p_moptions
);
693 if (inp
->in6p_route
.ro_rt
)
694 rtfree(inp
->in6p_route
.ro_rt
);
695 /* Check and free IPv4 related resources in case of mapped addr */
696 if (inp
->inp_options
)
697 m_free(inp
->inp_options
);
698 ip_freemoptions(inp
->inp_moptions
);
701 zfree(ipi
->ipi_zone
, inp
);
705 * The calling convention of in6_setsockaddr() and in6_setpeeraddr() was
706 * modified to match the pru_sockaddr() and pru_peeraddr() entry points
707 * in struct pr_usrreqs, so that protocols can just reference then directly
708 * without the need for a wrapper function. The socket must have a valid
709 * (i.e., non-nil) PCB, but it should be impossible to get an invalid one
710 * except through a kernel programming error, so it is acceptable to panic
711 * (or in this case trap) if the PCB is invalid. (Actually, we don't trap
712 * because there actually /is/ a programming error somewhere... XXX)
715 in6_setsockaddr(struct socket
*so
, struct sockaddr
**nam
)
718 struct sockaddr_in6
*sin6
;
721 * Do the malloc first in case it blocks.
723 MALLOC(sin6
, struct sockaddr_in6
*, sizeof *sin6
, M_SONAME
, M_WAITOK
);
724 bzero(sin6
, sizeof *sin6
);
725 sin6
->sin6_family
= AF_INET6
;
726 sin6
->sin6_len
= sizeof(*sin6
);
732 kfree(sin6
, M_SONAME
);
735 sin6
->sin6_port
= inp
->inp_lport
;
736 sin6
->sin6_addr
= inp
->in6p_laddr
;
738 if (IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
739 sin6
->sin6_scope_id
= ntohs(sin6
->sin6_addr
.s6_addr16
[1]);
741 sin6
->sin6_scope_id
= 0; /*XXX*/
742 if (IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
743 sin6
->sin6_addr
.s6_addr16
[1] = 0;
745 *nam
= (struct sockaddr
*)sin6
;
750 in6_setpeeraddr(struct socket
*so
, struct sockaddr
**nam
)
753 struct sockaddr_in6
*sin6
;
756 * Do the malloc first in case it blocks.
758 MALLOC(sin6
, struct sockaddr_in6
*, sizeof(*sin6
), M_SONAME
, M_WAITOK
);
759 bzero((caddr_t
)sin6
, sizeof (*sin6
));
760 sin6
->sin6_family
= AF_INET6
;
761 sin6
->sin6_len
= sizeof(struct sockaddr_in6
);
767 kfree(sin6
, M_SONAME
);
770 sin6
->sin6_port
= inp
->inp_fport
;
771 sin6
->sin6_addr
= inp
->in6p_faddr
;
773 if (IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
774 sin6
->sin6_scope_id
= ntohs(sin6
->sin6_addr
.s6_addr16
[1]);
776 sin6
->sin6_scope_id
= 0; /*XXX*/
777 if (IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
778 sin6
->sin6_addr
.s6_addr16
[1] = 0;
780 *nam
= (struct sockaddr
*)sin6
;
785 in6_mapped_sockaddr(struct socket
*so
, struct sockaddr
**nam
)
787 struct inpcb
*inp
= so
->so_pcb
;
792 if (inp
->inp_vflag
& INP_IPV4
) {
793 error
= in_setsockaddr(so
, nam
);
795 in6_sin_2_v4mapsin6_in_sock(nam
);
797 /* scope issues will be handled in in6_setsockaddr(). */
798 error
= in6_setsockaddr(so
, nam
);
804 in6_mapped_peeraddr(struct socket
*so
, struct sockaddr
**nam
)
806 struct inpcb
*inp
= so
->so_pcb
;
811 if (inp
->inp_vflag
& INP_IPV4
) {
812 error
= in_setpeeraddr(so
, nam
);
814 in6_sin_2_v4mapsin6_in_sock(nam
);
816 /* scope issues will be handled in in6_setpeeraddr(). */
817 error
= in6_setpeeraddr(so
, nam
);
823 * Pass some notification to all connections of a protocol
824 * associated with address dst. The local address and/or port numbers
825 * may be specified to limit the search. The "usual action" will be
826 * taken, depending on the ctlinput cmd. The caller must filter any
827 * cmds that are uninteresting (e.g., no error in the map).
828 * Call the protocol specific routine (if any) to report
829 * any errors for each matching socket.
831 * Must be called under crit_enter().
834 in6_pcbnotify(struct inpcbhead
*head
, struct sockaddr
*dst
, in_port_t fport
,
835 const struct sockaddr
*src
, in_port_t lport
, int cmd
, int arg
,
836 void (*notify
) (struct inpcb
*, int))
838 struct inpcb
*inp
, *ninp
;
839 struct sockaddr_in6 sa6_src
, *sa6_dst
;
842 if ((unsigned)cmd
>= PRC_NCMDS
|| dst
->sa_family
!= AF_INET6
)
845 sa6_dst
= (struct sockaddr_in6
*)dst
;
846 if (IN6_IS_ADDR_UNSPECIFIED(&sa6_dst
->sin6_addr
))
850 * note that src can be NULL when we get notify by local fragmentation.
852 sa6_src
= (src
== NULL
) ? sa6_any
: *(const struct sockaddr_in6
*)src
;
853 flowinfo
= sa6_src
.sin6_flowinfo
;
856 * Redirects go to all references to the destination,
857 * and use in6_rtchange to invalidate the route cache.
858 * Dead host indications: also use in6_rtchange to invalidate
859 * the cache, and deliver the error to all the sockets.
860 * Otherwise, if we have knowledge of the local port and address,
861 * deliver only to that socket.
863 if (PRC_IS_REDIRECT(cmd
) || cmd
== PRC_HOSTDEAD
) {
866 bzero((caddr_t
)&sa6_src
.sin6_addr
, sizeof(sa6_src
.sin6_addr
));
868 if (cmd
!= PRC_HOSTDEAD
)
869 notify
= in6_rtchange
;
871 if (cmd
!= PRC_MSGSIZE
)
872 arg
= inet6ctlerrmap
[cmd
];
874 for (inp
= LIST_FIRST(head
); inp
!= NULL
; inp
= ninp
) {
875 ninp
= LIST_NEXT(inp
, inp_list
);
877 if (inp
->inp_flags
& INP_PLACEMARKER
)
880 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
884 * Detect if we should notify the error. If no source and
885 * destination ports are specifed, but non-zero flowinfo and
886 * local address match, notify the error. This is the case
887 * when the error is delivered with an encrypted buffer
888 * by ESP. Otherwise, just compare addresses and ports
891 if (lport
== 0 && fport
== 0 && flowinfo
&&
892 inp
->inp_socket
!= NULL
&&
893 flowinfo
== (inp
->in6p_flowinfo
& IPV6_FLOWLABEL_MASK
) &&
894 IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
, &sa6_src
.sin6_addr
))
896 else if (!IN6_ARE_ADDR_EQUAL(&inp
->in6p_faddr
,
897 &sa6_dst
->sin6_addr
) ||
898 inp
->inp_socket
== 0 ||
899 (lport
&& inp
->inp_lport
!= lport
) ||
900 (!IN6_IS_ADDR_UNSPECIFIED(&sa6_src
.sin6_addr
) &&
901 !IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
,
902 &sa6_src
.sin6_addr
)) ||
903 (fport
&& inp
->inp_fport
!= fport
))
914 * Lookup a PCB based on the local address and port.
917 in6_pcblookup_local(struct inpcbinfo
*pcbinfo
, struct in6_addr
*laddr
,
918 u_int lport_arg
, int wild_okay
, struct ucred
*cred
)
921 int matchwild
= 3, wildcard
;
922 u_short lport
= lport_arg
;
923 struct inpcbporthead
*porthash
;
924 struct inpcbport
*phd
;
925 struct inpcb
*match
= NULL
;
928 * Best fit PCB lookup.
930 * First see if this local port is in use by looking on the
933 porthash
= &pcbinfo
->porthashbase
[INP_PCBPORTHASH(lport
,
934 pcbinfo
->porthashmask
)];
935 LIST_FOREACH(phd
, porthash
, phd_hash
) {
936 if (phd
->phd_port
== lport
)
941 * Port is in use by one or more PCBs. Look for best
944 LIST_FOREACH(inp
, &phd
->phd_pcblist
, inp_portlist
) {
946 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
948 if (!IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
))
950 if (!IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)) {
951 if (IN6_IS_ADDR_UNSPECIFIED(laddr
))
953 else if (!IN6_ARE_ADDR_EQUAL(
954 &inp
->in6p_laddr
, laddr
))
957 if (!IN6_IS_ADDR_UNSPECIFIED(laddr
))
960 if (wildcard
&& !wild_okay
)
962 if (wildcard
< matchwild
&&
965 inp
->inp_socket
->so_cred
->cr_prison
)) {
967 matchwild
= wildcard
;
971 matchwild
= wildcard
;
979 in6_pcbpurgeif0(struct in6pcb
*head
, struct ifnet
*ifp
)
982 struct ip6_moptions
*im6o
;
983 struct in6_multi_mship
*imm
, *nimm
;
985 for (in6p
= head
; in6p
!= NULL
; in6p
= LIST_NEXT(in6p
, inp_list
)) {
986 if (in6p
->in6p_flags
& INP_PLACEMARKER
)
988 im6o
= in6p
->in6p_moptions
;
989 if ((in6p
->inp_vflag
& INP_IPV6
) &&
992 * Unselect the outgoing interface if it is being
995 if (im6o
->im6o_multicast_ifp
== ifp
)
996 im6o
->im6o_multicast_ifp
= NULL
;
999 * Drop multicast group membership if we joined
1000 * through the interface being detached.
1001 * XXX controversial - is it really legal for kernel
1004 for (imm
= im6o
->im6o_memberships
.lh_first
;
1005 imm
!= NULL
; imm
= nimm
) {
1006 nimm
= imm
->i6mm_chain
.le_next
;
1007 if (imm
->i6mm_maddr
->in6m_ifp
== ifp
) {
1008 LIST_REMOVE(imm
, i6mm_chain
);
1009 in6_delmulti(imm
->i6mm_maddr
);
1010 kfree(imm
, M_IPMADDR
);
1018 * Check for alternatives when higher level complains
1019 * about service problems. For now, invalidate cached
1020 * routing information. If the route was created dynamically
1021 * (by a redirect), time to try a default gateway again.
1024 in6_losing(struct inpcb
*in6p
)
1027 struct rt_addrinfo info
;
1029 if ((rt
= in6p
->in6p_route
.ro_rt
) != NULL
) {
1030 bzero((caddr_t
)&info
, sizeof(info
));
1031 info
.rti_flags
= rt
->rt_flags
;
1032 info
.rti_info
[RTAX_DST
] = rt_key(rt
);
1033 info
.rti_info
[RTAX_GATEWAY
] = rt
->rt_gateway
;
1034 info
.rti_info
[RTAX_NETMASK
] = rt_mask(rt
);
1035 rt_missmsg(RTM_LOSING
, &info
, rt
->rt_flags
, 0);
1036 if (rt
->rt_flags
& RTF_DYNAMIC
)
1037 rtrequest1_global(RTM_DELETE
, &info
, NULL
, NULL
);
1038 in6p
->in6p_route
.ro_rt
= NULL
;
1041 * A new route can be allocated
1042 * the next time output is attempted.
1048 * After a routing change, flush old routing
1049 * and allocate a (hopefully) better one.
1052 in6_rtchange(struct inpcb
*inp
, int error
)
1054 if (inp
->in6p_route
.ro_rt
) {
1055 rtfree(inp
->in6p_route
.ro_rt
);
1056 inp
->in6p_route
.ro_rt
= 0;
1058 * A new route can be allocated the next time
1059 * output is attempted.
1065 * Lookup PCB in hash list.
1068 in6_pcblookup_hash(struct inpcbinfo
*pcbinfo
, struct in6_addr
*faddr
,
1069 u_int fport_arg
, struct in6_addr
*laddr
, u_int lport_arg
,
1070 int wildcard
, struct ifnet
*ifp
)
1072 struct inpcbhead
*head
;
1074 struct inpcb
*jinp
= NULL
;
1075 u_short fport
= fport_arg
, lport
= lport_arg
;
1078 if (faithprefix_p
!= NULL
)
1079 faith
= (*faithprefix_p
)(laddr
);
1084 * First look for an exact match.
1086 head
= &pcbinfo
->hashbase
[INP_PCBCONNHASH(faddr
->s6_addr32
[3] /* XXX */,
1088 laddr
->s6_addr32
[3], /* XXX JH */
1090 pcbinfo
->hashmask
)];
1091 LIST_FOREACH(inp
, head
, inp_hash
) {
1092 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
1094 if (IN6_ARE_ADDR_EQUAL(&inp
->in6p_faddr
, faddr
) &&
1095 IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
, laddr
) &&
1096 inp
->inp_fport
== fport
&&
1097 inp
->inp_lport
== lport
) {
1101 if (inp
->inp_socket
== NULL
||
1102 inp
->inp_socket
->so_cred
->cr_prison
== NULL
) {
1113 struct inpcontainerhead
*chead
;
1114 struct inpcontainer
*ic
;
1115 struct inpcb
*local_wild
= NULL
;
1116 struct inpcb
*jinp_wild
= NULL
;
1117 struct sockaddr_in6 jsin6
;
1121 * Order of socket selection:
1122 * 1. non-jailed, non-wild.
1123 * 2. non-jailed, wild.
1124 * 3. jailed, non-wild.
1127 jsin6
.sin6_family
= AF_INET6
;
1128 chead
= &pcbinfo
->wildcardhashbase
[INP_PCBWILDCARDHASH(lport
,
1129 pcbinfo
->wildcardhashmask
)];
1130 LIST_FOREACH(ic
, chead
, ic_list
) {
1133 if (!(inp
->inp_vflag
& INP_IPV6
))
1135 if (inp
->inp_socket
!= NULL
)
1136 cred
= inp
->inp_socket
->so_cred
;
1140 if (cred
!= NULL
&& jailed(cred
)) {
1144 jsin6
.sin6_addr
= *laddr
;
1145 if (!jailed_ip(cred
->cr_prison
,
1146 (struct sockaddr
*)&jsin6
))
1150 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
) &&
1151 inp
->inp_lport
== lport
) {
1152 if (faith
&& (inp
->inp_flags
& INP_FAITH
) == 0)
1154 if (IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
,
1156 if (cred
!= NULL
&& jailed(cred
))
1160 } else if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)) {
1161 if (cred
!= NULL
&& jailed(cred
))
1168 if (local_wild
!= NULL
)
1169 return (local_wild
);
1182 init_sin6(struct sockaddr_in6
*sin6
, struct mbuf
*m
)
1186 ip
= mtod(m
, struct ip6_hdr
*);
1187 bzero(sin6
, sizeof(*sin6
));
1188 sin6
->sin6_len
= sizeof(*sin6
);
1189 sin6
->sin6_family
= AF_INET6
;
1190 sin6
->sin6_addr
= ip
->ip6_src
;
1191 if (IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
1192 sin6
->sin6_addr
.s6_addr16
[1] = 0;
1193 sin6
->sin6_scope_id
=
1194 (m
->m_pkthdr
.rcvif
&& IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
1195 ? m
->m_pkthdr
.rcvif
->if_index
: 0;