1caf43b02SWarner Losh /*-
251369649SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni *
482cd038dSYoshinobu Inoue * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5fa046d87SRobert Watson * Copyright (c) 2010-2011 Juniper Networks, Inc.
682cd038dSYoshinobu Inoue * All rights reserved.
782cd038dSYoshinobu Inoue *
8fa046d87SRobert Watson * Portions of this software were developed by Robert N. M. Watson under
9fa046d87SRobert Watson * contract to Juniper Networks, Inc.
10fa046d87SRobert Watson *
1182cd038dSYoshinobu Inoue * Redistribution and use in source and binary forms, with or without
1282cd038dSYoshinobu Inoue * modification, are permitted provided that the following conditions
1382cd038dSYoshinobu Inoue * are met:
1482cd038dSYoshinobu Inoue * 1. Redistributions of source code must retain the above copyright
1582cd038dSYoshinobu Inoue * notice, this list of conditions and the following disclaimer.
1682cd038dSYoshinobu Inoue * 2. Redistributions in binary form must reproduce the above copyright
1782cd038dSYoshinobu Inoue * notice, this list of conditions and the following disclaimer in the
1882cd038dSYoshinobu Inoue * documentation and/or other materials provided with the distribution.
1982cd038dSYoshinobu Inoue * 3. Neither the name of the project nor the names of its contributors
2082cd038dSYoshinobu Inoue * may be used to endorse or promote products derived from this software
2182cd038dSYoshinobu Inoue * without specific prior written permission.
2282cd038dSYoshinobu Inoue *
2382cd038dSYoshinobu Inoue * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
2482cd038dSYoshinobu Inoue * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2582cd038dSYoshinobu Inoue * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2682cd038dSYoshinobu Inoue * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
2782cd038dSYoshinobu Inoue * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2882cd038dSYoshinobu Inoue * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2982cd038dSYoshinobu Inoue * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3082cd038dSYoshinobu Inoue * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3182cd038dSYoshinobu Inoue * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3282cd038dSYoshinobu Inoue * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3382cd038dSYoshinobu Inoue * SUCH DAMAGE.
3482cd038dSYoshinobu Inoue *
35b48287a3SDavid E. O'Brien * $KAME: in6_pcb.c,v 1.31 2001/05/21 05:45:10 jinmei Exp $
3682cd038dSYoshinobu Inoue */
3782cd038dSYoshinobu Inoue
38caf43b02SWarner Losh /*-
3982cd038dSYoshinobu Inoue * Copyright (c) 1982, 1986, 1991, 1993
4082cd038dSYoshinobu Inoue * The Regents of the University of California. All rights reserved.
4182cd038dSYoshinobu Inoue *
4282cd038dSYoshinobu Inoue * Redistribution and use in source and binary forms, with or without
4382cd038dSYoshinobu Inoue * modification, are permitted provided that the following conditions
4482cd038dSYoshinobu Inoue * are met:
4582cd038dSYoshinobu Inoue * 1. Redistributions of source code must retain the above copyright
4682cd038dSYoshinobu Inoue * notice, this list of conditions and the following disclaimer.
4782cd038dSYoshinobu Inoue * 2. Redistributions in binary form must reproduce the above copyright
4882cd038dSYoshinobu Inoue * notice, this list of conditions and the following disclaimer in the
4982cd038dSYoshinobu Inoue * documentation and/or other materials provided with the distribution.
50fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
5182cd038dSYoshinobu Inoue * may be used to endorse or promote products derived from this software
5282cd038dSYoshinobu Inoue * without specific prior written permission.
5382cd038dSYoshinobu Inoue *
5482cd038dSYoshinobu Inoue * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
5582cd038dSYoshinobu Inoue * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5682cd038dSYoshinobu Inoue * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
5782cd038dSYoshinobu Inoue * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
5882cd038dSYoshinobu Inoue * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
5982cd038dSYoshinobu Inoue * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
6082cd038dSYoshinobu Inoue * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
6182cd038dSYoshinobu Inoue * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
6282cd038dSYoshinobu Inoue * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
6382cd038dSYoshinobu Inoue * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
6482cd038dSYoshinobu Inoue * SUCH DAMAGE.
6582cd038dSYoshinobu Inoue */
6682cd038dSYoshinobu Inoue
67b48287a3SDavid E. O'Brien #include <sys/cdefs.h>
6833841545SHajimu UMEMOTO #include "opt_inet.h"
6933841545SHajimu UMEMOTO #include "opt_inet6.h"
706a800098SYoshinobu Inoue #include "opt_ipsec.h"
710c325f53SAlexander V. Chernikov #include "opt_route.h"
727527624eSRobert Watson #include "opt_rss.h"
7382cd038dSYoshinobu Inoue
74a0577692SGleb Smirnoff #include <sys/hash.h>
7582cd038dSYoshinobu Inoue #include <sys/param.h>
7682cd038dSYoshinobu Inoue #include <sys/systm.h>
7782cd038dSYoshinobu Inoue #include <sys/malloc.h>
7882cd038dSYoshinobu Inoue #include <sys/mbuf.h>
79fb59c426SYoshinobu Inoue #include <sys/domain.h>
80fdb987beSMark Johnston #include <sys/proc.h>
8182cd038dSYoshinobu Inoue #include <sys/protosw.h>
82fdb987beSMark Johnston #include <sys/smr.h>
8382cd038dSYoshinobu Inoue #include <sys/socket.h>
8482cd038dSYoshinobu Inoue #include <sys/socketvar.h>
8582cd038dSYoshinobu Inoue #include <sys/sockio.h>
86417b35a9SMark Johnston #include <sys/sysctl.h>
8782cd038dSYoshinobu Inoue #include <sys/errno.h>
8882cd038dSYoshinobu Inoue #include <sys/time.h>
89acd3428bSRobert Watson #include <sys/priv.h>
9082cd038dSYoshinobu Inoue #include <sys/proc.h>
9182cd038dSYoshinobu Inoue #include <sys/jail.h>
9282cd038dSYoshinobu Inoue
9394540027SJeff Roberson #include <vm/uma.h>
9482cd038dSYoshinobu Inoue
9582cd038dSYoshinobu Inoue #include <net/if.h>
9676039bc8SGleb Smirnoff #include <net/if_var.h>
976d768226SGeorge V. Neville-Neil #include <net/if_llatbl.h>
9882cd038dSYoshinobu Inoue #include <net/if_types.h>
9982cd038dSYoshinobu Inoue #include <net/route.h>
100983066f0SAlexander V. Chernikov #include <net/route/nhop.h>
101417b35a9SMark Johnston #include <net/vnet.h>
10282cd038dSYoshinobu Inoue
10382cd038dSYoshinobu Inoue #include <netinet/in.h>
10482cd038dSYoshinobu Inoue #include <netinet/in_var.h>
10582cd038dSYoshinobu Inoue #include <netinet/in_systm.h>
106686cdd19SJun-ichiro itojun Hagino #include <netinet/ip6.h>
107fb59c426SYoshinobu Inoue #include <netinet/ip_var.h>
108ac957cd2SJulian Elischer
10982cd038dSYoshinobu Inoue #include <netinet6/ip6_var.h>
11082cd038dSYoshinobu Inoue #include <netinet6/nd6.h>
11182cd038dSYoshinobu Inoue #include <netinet/in_pcb.h>
1120f617ae4SGleb Smirnoff #include <netinet/in_pcb_var.h>
11382cd038dSYoshinobu Inoue #include <netinet6/in6_pcb.h>
114983066f0SAlexander V. Chernikov #include <netinet6/in6_fib.h>
115a1f7e5f8SHajimu UMEMOTO #include <netinet6/scope6_var.h>
11682cd038dSYoshinobu Inoue
117417b35a9SMark Johnston SYSCTL_DECL(_net_inet6);
118417b35a9SMark Johnston SYSCTL_DECL(_net_inet6_ip6);
119417b35a9SMark Johnston VNET_DEFINE_STATIC(int, connect_in6addr_wild) = 1;
120417b35a9SMark Johnston #define V_connect_in6addr_wild VNET(connect_in6addr_wild)
121417b35a9SMark Johnston SYSCTL_INT(_net_inet6_ip6, OID_AUTO, connect_in6addr_wild,
122417b35a9SMark Johnston CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(connect_in6addr_wild), 0,
123417b35a9SMark Johnston "Allow connecting to the unspecified address for connect(2)");
124417b35a9SMark Johnston
12582cd038dSYoshinobu Inoue int
in6_pcbsetport(struct in6_addr * laddr,struct inpcb * inp,struct ucred * cred)126147f018aSGleb Smirnoff in6_pcbsetport(struct in6_addr *laddr, struct inpcb *inp, struct ucred *cred)
127147f018aSGleb Smirnoff {
128147f018aSGleb Smirnoff struct socket *so = inp->inp_socket;
129147f018aSGleb Smirnoff u_int16_t lport = 0;
130147f018aSGleb Smirnoff int error, lookupflags = 0;
131147f018aSGleb Smirnoff #ifdef INVARIANTS
132147f018aSGleb Smirnoff struct inpcbinfo *pcbinfo = inp->inp_pcbinfo;
133147f018aSGleb Smirnoff #endif
134147f018aSGleb Smirnoff
135147f018aSGleb Smirnoff INP_WLOCK_ASSERT(inp);
136147f018aSGleb Smirnoff INP_HASH_WLOCK_ASSERT(pcbinfo);
137147f018aSGleb Smirnoff
138147f018aSGleb Smirnoff error = prison_local_ip6(cred, laddr,
139147f018aSGleb Smirnoff ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0));
140147f018aSGleb Smirnoff if (error)
141147f018aSGleb Smirnoff return(error);
142147f018aSGleb Smirnoff
143147f018aSGleb Smirnoff /* XXX: this is redundant when called from in6_pcbbind */
144147f018aSGleb Smirnoff if ((so->so_options & (SO_REUSEADDR|SO_REUSEPORT|SO_REUSEPORT_LB)) == 0)
145147f018aSGleb Smirnoff lookupflags = INPLOOKUP_WILDCARD;
146147f018aSGleb Smirnoff
147147f018aSGleb Smirnoff inp->inp_flags |= INP_ANONPORT;
148147f018aSGleb Smirnoff
149147f018aSGleb Smirnoff error = in_pcb_lport(inp, NULL, &lport, cred, lookupflags);
150147f018aSGleb Smirnoff if (error != 0)
151147f018aSGleb Smirnoff return (error);
152147f018aSGleb Smirnoff
153147f018aSGleb Smirnoff inp->inp_lport = lport;
154147f018aSGleb Smirnoff if (in_pcbinshash(inp) != 0) {
155147f018aSGleb Smirnoff inp->in6p_laddr = in6addr_any;
156147f018aSGleb Smirnoff inp->inp_lport = 0;
157147f018aSGleb Smirnoff return (EAGAIN);
158147f018aSGleb Smirnoff }
159147f018aSGleb Smirnoff
160147f018aSGleb Smirnoff return (0);
161147f018aSGleb Smirnoff }
162147f018aSGleb Smirnoff
1631a43cff9SSean Bruno /*
16401f8ce83SMark Johnston * Determine whether the inpcb can be bound to the specified address/port tuple.
1651a43cff9SSean Bruno */
16601f8ce83SMark Johnston static int
in6_pcbbind_avail(struct inpcb * inp,const struct sockaddr_in6 * sin6,int fib,int sooptions,int lookupflags,struct ucred * cred)167bbd0084bSMark Johnston in6_pcbbind_avail(struct inpcb *inp, const struct sockaddr_in6 *sin6, int fib,
16801f8ce83SMark Johnston int sooptions, int lookupflags, struct ucred *cred)
16901f8ce83SMark Johnston {
17001f8ce83SMark Johnston const struct in6_addr *laddr;
17101f8ce83SMark Johnston int reuseport, reuseport_lb;
17201f8ce83SMark Johnston u_short lport;
1731a43cff9SSean Bruno
17401f8ce83SMark Johnston INP_LOCK_ASSERT(inp);
17501f8ce83SMark Johnston INP_HASH_LOCK_ASSERT(inp->inp_pcbinfo);
17607385abdSRobert Watson
17701f8ce83SMark Johnston laddr = &sin6->sin6_addr;
17882cd038dSYoshinobu Inoue lport = sin6->sin6_port;
17901f8ce83SMark Johnston
18001f8ce83SMark Johnston reuseport = (sooptions & SO_REUSEPORT);
18101f8ce83SMark Johnston reuseport_lb = (sooptions & SO_REUSEPORT_LB);
18201f8ce83SMark Johnston
18301f8ce83SMark Johnston if (IN6_IS_ADDR_MULTICAST(laddr)) {
18482cd038dSYoshinobu Inoue /*
18582cd038dSYoshinobu Inoue * Treat SO_REUSEADDR as SO_REUSEPORT for multicast;
18682cd038dSYoshinobu Inoue * allow compepte duplication of binding if
18782cd038dSYoshinobu Inoue * SO_REUSEPORT is set, or if SO_REUSEADDR is set
18882cd038dSYoshinobu Inoue * and a multicast address is bound on both
18982cd038dSYoshinobu Inoue * new and duplicated sockets.
19082cd038dSYoshinobu Inoue */
19101f8ce83SMark Johnston if ((sooptions & (SO_REUSEADDR | SO_REUSEPORT)) != 0)
19282cd038dSYoshinobu Inoue reuseport = SO_REUSEADDR | SO_REUSEPORT;
1931a43cff9SSean Bruno /*
1941a43cff9SSean Bruno * XXX: How to deal with SO_REUSEPORT_LB here?
1951a43cff9SSean Bruno * Treat same as SO_REUSEPORT for now.
1961a43cff9SSean Bruno */
19701f8ce83SMark Johnston if ((sooptions & (SO_REUSEADDR | SO_REUSEPORT_LB)) != 0)
1981a43cff9SSean Bruno reuseport_lb = SO_REUSEADDR | SO_REUSEPORT_LB;
19901f8ce83SMark Johnston } else if (!IN6_IS_ADDR_UNSPECIFIED(laddr)) {
20001f8ce83SMark Johnston struct sockaddr_in6 sin6;
201a68cc388SGleb Smirnoff struct epoch_tracker et;
2028c0fec80SRobert Watson struct ifaddr *ifa;
20382cd038dSYoshinobu Inoue
20401f8ce83SMark Johnston memset(&sin6, 0, sizeof(sin6));
20501f8ce83SMark Johnston sin6.sin6_family = AF_INET6;
20601f8ce83SMark Johnston sin6.sin6_len = sizeof(sin6);
20701f8ce83SMark Johnston sin6.sin6_addr = *laddr;
20801f8ce83SMark Johnston
209a68cc388SGleb Smirnoff NET_EPOCH_ENTER(et);
21001f8ce83SMark Johnston if ((ifa = ifa_ifwithaddr((const struct sockaddr *)&sin6)) ==
21101f8ce83SMark Johnston NULL && (inp->inp_flags & INP_BINDANY) == 0) {
212a68cc388SGleb Smirnoff NET_EPOCH_EXIT(et);
21382cd038dSYoshinobu Inoue return (EADDRNOTAVAIL);
214f44270e7SPawel Jakub Dawidek }
21582cd038dSYoshinobu Inoue
21682cd038dSYoshinobu Inoue /*
21782cd038dSYoshinobu Inoue * XXX: bind to an anycast address might accidentally
21882cd038dSYoshinobu Inoue * cause sending a packet with anycast source address.
21933841545SHajimu UMEMOTO * We should allow to bind to a deprecated address, since
2207efe5d92SHajimu UMEMOTO * the application dares to use it.
22182cd038dSYoshinobu Inoue */
2228c0fec80SRobert Watson if (ifa != NULL &&
2238c0fec80SRobert Watson ((struct in6_ifaddr *)ifa)->ia6_flags &
22433841545SHajimu UMEMOTO (IN6_IFF_ANYCAST | IN6_IFF_NOTREADY | IN6_IFF_DETACHED)) {
225a68cc388SGleb Smirnoff NET_EPOCH_EXIT(et);
22682cd038dSYoshinobu Inoue return (EADDRNOTAVAIL);
22782cd038dSYoshinobu Inoue }
228a68cc388SGleb Smirnoff NET_EPOCH_EXIT(et);
22982cd038dSYoshinobu Inoue }
23001f8ce83SMark Johnston
23101f8ce83SMark Johnston if (lport != 0) {
23282cd038dSYoshinobu Inoue struct inpcb *t;
23382cd038dSYoshinobu Inoue
234603724d3SBjoern A. Zeeb if (ntohs(lport) <= V_ipport_reservedhigh &&
235603724d3SBjoern A. Zeeb ntohs(lport) >= V_ipport_reservedlow &&
236cc426dd3SMateusz Guzik priv_check_cred(cred, PRIV_NETINET_RESERVEDPORT))
23782cd038dSYoshinobu Inoue return (EACCES);
23845a77bf2SMark Johnston
23901f8ce83SMark Johnston if (!IN6_IS_ADDR_MULTICAST(laddr) &&
24001f8ce83SMark Johnston priv_check_cred(inp->inp_cred, PRIV_NETINET_REUSEPORT) !=
24101f8ce83SMark Johnston 0) {
242c9756953SMark Johnston /*
243c9756953SMark Johnston * If a socket owned by a different user is already
244c9756953SMark Johnston * bound to this port, fail. In particular, SO_REUSE*
245c9756953SMark Johnston * can only be used to share a port among sockets owned
246c9756953SMark Johnston * by the same user.
247c9756953SMark Johnston *
248c9756953SMark Johnston * However, we can share a port with a connected socket
249c9756953SMark Johnston * which has a unique 4-tuple.
250c9756953SMark Johnston */
25101f8ce83SMark Johnston t = in6_pcblookup_local(inp->inp_pcbinfo, laddr, lport,
2529a413162SMark Johnston RT_ALL_FIBS, INPLOOKUP_WILDCARD, cred);
2533aff4ccdSMark Johnston if (t != NULL &&
25401f8ce83SMark Johnston (inp->inp_socket->so_type != SOCK_STREAM ||
255f66145c6SYaroslav Tykhiy IN6_IS_ADDR_UNSPECIFIED(&t->in6p_faddr)) &&
25601f8ce83SMark Johnston (inp->inp_cred->cr_uid != t->inp_cred->cr_uid))
25782cd038dSYoshinobu Inoue return (EADDRINUSE);
258c7c0d948SAdrian Chadd
25967107f45SBjoern A. Zeeb #ifdef INET
26033841545SHajimu UMEMOTO if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0 &&
26101f8ce83SMark Johnston IN6_IS_ADDR_UNSPECIFIED(laddr)) {
262fb59c426SYoshinobu Inoue struct sockaddr_in sin;
263fb59c426SYoshinobu Inoue
264fb59c426SYoshinobu Inoue in6_sin6_2_sin(&sin, sin6);
26501f8ce83SMark Johnston t = in_pcblookup_local(inp->inp_pcbinfo,
2669a413162SMark Johnston sin.sin_addr, lport, RT_ALL_FIBS,
2679a413162SMark Johnston INPLOOKUP_WILDCARD, cred);
2683aff4ccdSMark Johnston if (t != NULL &&
26901f8ce83SMark Johnston (inp->inp_socket->so_type != SOCK_STREAM ||
27045a77bf2SMark Johnston in_nullhost(t->inp_faddr)) &&
27186d02c5cSBjoern A. Zeeb (inp->inp_cred->cr_uid !=
27286d02c5cSBjoern A. Zeeb t->inp_cred->cr_uid))
273fb59c426SYoshinobu Inoue return (EADDRINUSE);
274fb59c426SYoshinobu Inoue }
27567107f45SBjoern A. Zeeb #endif
27682cd038dSYoshinobu Inoue }
27701f8ce83SMark Johnston t = in6_pcblookup_local(inp->inp_pcbinfo, laddr, lport,
278bbd0084bSMark Johnston fib, lookupflags, cred);
27945a77bf2SMark Johnston if (t != NULL && ((reuseport | reuseport_lb) &
28045a77bf2SMark Johnston t->inp_socket->so_options) == 0)
28129381b36SMikolaj Golub return (EADDRINUSE);
28267107f45SBjoern A. Zeeb #ifdef INET
28333841545SHajimu UMEMOTO if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0 &&
28401f8ce83SMark Johnston IN6_IS_ADDR_UNSPECIFIED(laddr)) {
285fb59c426SYoshinobu Inoue struct sockaddr_in sin;
286fb59c426SYoshinobu Inoue
287fb59c426SYoshinobu Inoue in6_sin6_2_sin(&sin, sin6);
28801f8ce83SMark Johnston t = in_pcblookup_local(inp->inp_pcbinfo, sin.sin_addr,
2899a413162SMark Johnston lport, RT_ALL_FIBS, lookupflags, cred);
29045a77bf2SMark Johnston if (t != NULL && ((reuseport | reuseport_lb) &
29145a77bf2SMark Johnston t->inp_socket->so_options) == 0 &&
29245a77bf2SMark Johnston (!in_nullhost(t->inp_laddr) ||
2931a43cff9SSean Bruno (t->inp_vflag & INP_IPV6PROTO) != 0)) {
294fb59c426SYoshinobu Inoue return (EADDRINUSE);
295fb59c426SYoshinobu Inoue }
2961a43cff9SSean Bruno }
29767107f45SBjoern A. Zeeb #endif
29882cd038dSYoshinobu Inoue }
29901f8ce83SMark Johnston return (0);
30001f8ce83SMark Johnston }
30101f8ce83SMark Johnston
30201f8ce83SMark Johnston int
in6_pcbbind(struct inpcb * inp,struct sockaddr_in6 * sin6,int flags,struct ucred * cred)303bbd0084bSMark Johnston in6_pcbbind(struct inpcb *inp, struct sockaddr_in6 *sin6, int flags,
304bbd0084bSMark Johnston struct ucred *cred)
30501f8ce83SMark Johnston {
30601f8ce83SMark Johnston struct socket *so = inp->inp_socket;
30701f8ce83SMark Johnston u_short lport = 0;
308bbd0084bSMark Johnston int error, fib, lookupflags, sooptions;
30901f8ce83SMark Johnston
31001f8ce83SMark Johnston INP_WLOCK_ASSERT(inp);
311ffb3d384SMark Johnston INP_HASH_WLOCK_ASSERT(inp->inp_pcbinfo);
31201f8ce83SMark Johnston
31301f8ce83SMark Johnston if (inp->inp_lport || !IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr))
31401f8ce83SMark Johnston return (EINVAL);
31501f8ce83SMark Johnston
31601f8ce83SMark Johnston lookupflags = 0;
31701f8ce83SMark Johnston sooptions = atomic_load_int(&so->so_options);
31801f8ce83SMark Johnston if ((sooptions & (SO_REUSEADDR | SO_REUSEPORT | SO_REUSEPORT_LB)) == 0)
31901f8ce83SMark Johnston lookupflags = INPLOOKUP_WILDCARD;
32001f8ce83SMark Johnston if (sin6 == NULL) {
32101f8ce83SMark Johnston if ((error = prison_local_ip6(cred, &inp->in6p_laddr,
32201f8ce83SMark Johnston ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0))) != 0)
32301f8ce83SMark Johnston return (error);
32401f8ce83SMark Johnston } else {
32501f8ce83SMark Johnston KASSERT(sin6->sin6_family == AF_INET6,
32601f8ce83SMark Johnston ("%s: invalid address family for %p", __func__, sin6));
32701f8ce83SMark Johnston KASSERT(sin6->sin6_len == sizeof(*sin6),
32801f8ce83SMark Johnston ("%s: invalid address length for %p", __func__, sin6));
32901f8ce83SMark Johnston
33001f8ce83SMark Johnston if ((error = sa6_embedscope(sin6, V_ip6_use_defzone)) != 0)
33101f8ce83SMark Johnston return(error);
33201f8ce83SMark Johnston
33301f8ce83SMark Johnston if ((error = prison_local_ip6(cred, &sin6->sin6_addr,
33401f8ce83SMark Johnston ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0))) != 0)
33501f8ce83SMark Johnston return (error);
33601f8ce83SMark Johnston
337bbd0084bSMark Johnston fib = (flags & INPBIND_FIB) != 0 ? inp->inp_inc.inc_fibnum :
338bbd0084bSMark Johnston RT_ALL_FIBS;
339bbd0084bSMark Johnston
34001f8ce83SMark Johnston /* See if this address/port combo is available. */
341bbd0084bSMark Johnston error = in6_pcbbind_avail(inp, sin6, fib, sooptions, lookupflags,
34201f8ce83SMark Johnston cred);
34301f8ce83SMark Johnston if (error != 0)
34401f8ce83SMark Johnston return (error);
34501f8ce83SMark Johnston
34601f8ce83SMark Johnston lport = sin6->sin6_port;
34782cd038dSYoshinobu Inoue inp->in6p_laddr = sin6->sin6_addr;
34882cd038dSYoshinobu Inoue }
349bbd0084bSMark Johnston if ((flags & INPBIND_FIB) != 0)
350bbd0084bSMark Johnston inp->inp_flags |= INP_BOUNDFIB;
35182cd038dSYoshinobu Inoue if (lport == 0) {
3524616026fSErmal Luçi if ((error = in6_pcbsetport(&inp->in6p_laddr, inp, cred)) != 0) {
3534a2b2562SBjoern A. Zeeb /* Undo an address bind that may have occurred. */
354bbd0084bSMark Johnston inp->inp_flags &= ~INP_BOUNDFIB;
3554a2b2562SBjoern A. Zeeb inp->in6p_laddr = in6addr_any;
356b89e82ddSJamie Gritton return (error);
3574a2b2562SBjoern A. Zeeb }
35855fd3bafSBjoern A. Zeeb } else {
35982cd038dSYoshinobu Inoue inp->inp_lport = lport;
36082cd038dSYoshinobu Inoue if (in_pcbinshash(inp) != 0) {
361bbd0084bSMark Johnston inp->inp_flags &= ~INP_BOUNDFIB;
36282cd038dSYoshinobu Inoue inp->in6p_laddr = in6addr_any;
36382cd038dSYoshinobu Inoue inp->inp_lport = 0;
36482cd038dSYoshinobu Inoue return (EAGAIN);
36582cd038dSYoshinobu Inoue }
366686cdd19SJun-ichiro itojun Hagino }
36782cd038dSYoshinobu Inoue return (0);
36882cd038dSYoshinobu Inoue }
36982cd038dSYoshinobu Inoue
37082cd038dSYoshinobu Inoue /*
37182cd038dSYoshinobu Inoue * Transform old in6_pcbconnect() into an inner subroutine for new
37282cd038dSYoshinobu Inoue * in6_pcbconnect(): Do some validity-checking on the remote
37382cd038dSYoshinobu Inoue * address (in mbuf 'nam') and then determine local host address
37482cd038dSYoshinobu Inoue * (i.e., which interface) to use to access that remote host.
37582cd038dSYoshinobu Inoue *
37682cd038dSYoshinobu Inoue * This preserves definition of in6_pcbconnect(), while supporting a
37782cd038dSYoshinobu Inoue * slightly different version for T/TCP. (This is more than
37882cd038dSYoshinobu Inoue * a bit of a kludge, but cleaning up the internal interfaces would
37982cd038dSYoshinobu Inoue * have forced minor changes in every protocol).
38082cd038dSYoshinobu Inoue */
381a7e201bbSAndrey V. Elsukov static int
in6_pcbladdr(struct inpcb * inp,struct sockaddr_in6 * sin6,struct in6_addr * plocal_addr6,bool sas_required)382f161d294SMark Johnston in6_pcbladdr(struct inpcb *inp, struct sockaddr_in6 *sin6,
3830bf5377bSAndrey V. Elsukov struct in6_addr *plocal_addr6, bool sas_required)
38482cd038dSYoshinobu Inoue {
38582cd038dSYoshinobu Inoue int error = 0;
386a1f7e5f8SHajimu UMEMOTO int scope_ambiguous = 0;
38788d166bfSBjoern A. Zeeb struct in6_addr in6a;
38882cd038dSYoshinobu Inoue
3893d76be28SGleb Smirnoff NET_EPOCH_ASSERT();
3908501a69cSRobert Watson INP_WLOCK_ASSERT(inp);
391fa046d87SRobert Watson INP_HASH_WLOCK_ASSERT(inp->inp_pcbinfo); /* XXXRW: why? */
3928deea4a8SRobert Watson
39382cd038dSYoshinobu Inoue if (sin6->sin6_port == 0)
39482cd038dSYoshinobu Inoue return (EADDRNOTAVAIL);
39582cd038dSYoshinobu Inoue
396603724d3SBjoern A. Zeeb if (sin6->sin6_scope_id == 0 && !V_ip6_use_defzone)
397a1f7e5f8SHajimu UMEMOTO scope_ambiguous = 1;
398603724d3SBjoern A. Zeeb if ((error = sa6_embedscope(sin6, V_ip6_use_defzone)) != 0)
399a1f7e5f8SHajimu UMEMOTO return(error);
400a1f7e5f8SHajimu UMEMOTO
401417b35a9SMark Johnston if (V_connect_in6addr_wild && !CK_STAILQ_EMPTY(&V_in6_ifaddrhead)) {
40282cd038dSYoshinobu Inoue /*
40382cd038dSYoshinobu Inoue * If the destination address is UNSPECIFIED addr,
40482cd038dSYoshinobu Inoue * use the loopback addr, e.g ::1.
40582cd038dSYoshinobu Inoue */
40682cd038dSYoshinobu Inoue if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr))
40782cd038dSYoshinobu Inoue sin6->sin6_addr = in6addr_loopback;
4080c605af3SMark Johnston } else if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
4090c605af3SMark Johnston return (ENETUNREACH);
41082cd038dSYoshinobu Inoue }
4110c605af3SMark Johnston
412b89e82ddSJamie Gritton if ((error = prison_remote_ip6(inp->inp_cred, &sin6->sin6_addr)) != 0)
413b89e82ddSJamie Gritton return (error);
414a1f7e5f8SHajimu UMEMOTO
4150bf5377bSAndrey V. Elsukov if (sas_required) {
416601c0b8bSAlexander V. Chernikov error = in6_selectsrc_socket(sin6, inp->in6p_outputopts,
417601c0b8bSAlexander V. Chernikov inp, inp->inp_cred, scope_ambiguous, &in6a, NULL);
41888d166bfSBjoern A. Zeeb if (error)
41988d166bfSBjoern A. Zeeb return (error);
4200bf5377bSAndrey V. Elsukov } else {
4210bf5377bSAndrey V. Elsukov /*
4220bf5377bSAndrey V. Elsukov * Source address selection isn't required when syncache
4230bf5377bSAndrey V. Elsukov * has already established connection and both source and
4240bf5377bSAndrey V. Elsukov * destination addresses was chosen.
4250bf5377bSAndrey V. Elsukov *
4260bf5377bSAndrey V. Elsukov * This also includes the case when fwd_tag was used to
4270bf5377bSAndrey V. Elsukov * select source address in tcp_input().
4280bf5377bSAndrey V. Elsukov */
4290bf5377bSAndrey V. Elsukov in6a = inp->in6p_laddr;
4300bf5377bSAndrey V. Elsukov }
4310bf5377bSAndrey V. Elsukov
432713264f6SMark Johnston if (IN6_IS_ADDR_UNSPECIFIED(&in6a))
433713264f6SMark Johnston return (EHOSTUNREACH);
43488d166bfSBjoern A. Zeeb /*
43588d166bfSBjoern A. Zeeb * Do not update this earlier, in case we return with an error.
43688d166bfSBjoern A. Zeeb *
437601c0b8bSAlexander V. Chernikov * XXX: this in6_selectsrc_socket result might replace the bound local
438681ffdf9SBjoern A. Zeeb * address with the address specified by setsockopt(IPV6_PKTINFO).
43988d166bfSBjoern A. Zeeb * Is it the intended behavior?
44088d166bfSBjoern A. Zeeb */
44188d166bfSBjoern A. Zeeb *plocal_addr6 = in6a;
44288d166bfSBjoern A. Zeeb
44382cd038dSYoshinobu Inoue /*
44482cd038dSYoshinobu Inoue * Don't do pcblookup call here; return interface in
44582cd038dSYoshinobu Inoue * plocal_addr6
44682cd038dSYoshinobu Inoue * and exit to caller, that will do the lookup.
44782cd038dSYoshinobu Inoue */
448a1f7e5f8SHajimu UMEMOTO
44982cd038dSYoshinobu Inoue return (0);
45082cd038dSYoshinobu Inoue }
45182cd038dSYoshinobu Inoue
45282cd038dSYoshinobu Inoue /*
45382cd038dSYoshinobu Inoue * Outer subroutine:
45482cd038dSYoshinobu Inoue * Connect from a socket to a specified address.
45582cd038dSYoshinobu Inoue * Both address and port must be specified in argument sin.
45682cd038dSYoshinobu Inoue * If don't have a local address for this socket yet,
45782cd038dSYoshinobu Inoue * then pick one.
45882cd038dSYoshinobu Inoue */
45982cd038dSYoshinobu Inoue int
in6_pcbconnect(struct inpcb * inp,struct sockaddr_in6 * sin6,struct ucred * cred,bool sas_required)460a9d22cceSGleb Smirnoff in6_pcbconnect(struct inpcb *inp, struct sockaddr_in6 *sin6, struct ucred *cred,
4610bf5377bSAndrey V. Elsukov bool sas_required)
46282cd038dSYoshinobu Inoue {
463fa046d87SRobert Watson struct inpcbinfo *pcbinfo = inp->inp_pcbinfo;
46425102351SMike Karels struct sockaddr_in6 laddr6;
46582cd038dSYoshinobu Inoue int error;
46682cd038dSYoshinobu Inoue
4673d76be28SGleb Smirnoff NET_EPOCH_ASSERT();
4683d76be28SGleb Smirnoff INP_WLOCK_ASSERT(inp);
4693d76be28SGleb Smirnoff INP_HASH_WLOCK_ASSERT(pcbinfo);
470f161d294SMark Johnston KASSERT(sin6->sin6_family == AF_INET6,
471f161d294SMark Johnston ("%s: invalid address family for %p", __func__, sin6));
472f161d294SMark Johnston KASSERT(sin6->sin6_len == sizeof(*sin6),
473f161d294SMark Johnston ("%s: invalid address length for %p", __func__, sin6));
474fdb987beSMark Johnston KASSERT(IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr),
475fdb987beSMark Johnston ("%s: inp is already connected", __func__));
476f161d294SMark Johnston
47725102351SMike Karels bzero(&laddr6, sizeof(laddr6));
47825102351SMike Karels laddr6.sin6_family = AF_INET6;
47925102351SMike Karels
4800c325f53SAlexander V. Chernikov #ifdef ROUTE_MPATH
4810c325f53SAlexander V. Chernikov if (CALC_FLOWID_OUTBOUND) {
4820c325f53SAlexander V. Chernikov uint32_t hash_type, hash_val;
4830c325f53SAlexander V. Chernikov
4840c325f53SAlexander V. Chernikov hash_val = fib6_calc_software_hash(&inp->in6p_laddr,
4850c325f53SAlexander V. Chernikov &sin6->sin6_addr, 0, sin6->sin6_port,
4860c325f53SAlexander V. Chernikov inp->inp_socket->so_proto->pr_protocol, &hash_type);
4870c325f53SAlexander V. Chernikov inp->inp_flowid = hash_val;
4880c325f53SAlexander V. Chernikov inp->inp_flowtype = hash_type;
4890c325f53SAlexander V. Chernikov }
4900c325f53SAlexander V. Chernikov #endif
49182cd038dSYoshinobu Inoue /*
49282cd038dSYoshinobu Inoue * Call inner routine, to assign local interface address.
49388ff5695SSUZUKI Shinsuke * in6_pcbladdr() may automatically fill in sin6_scope_id.
49482cd038dSYoshinobu Inoue */
4950bf5377bSAndrey V. Elsukov if ((error = in6_pcbladdr(inp, sin6, &laddr6.sin6_addr,
4960bf5377bSAndrey V. Elsukov sas_required)) != 0)
49782cd038dSYoshinobu Inoue return (error);
49882cd038dSYoshinobu Inoue
499fa046d87SRobert Watson if (in6_pcblookup_hash_locked(pcbinfo, &sin6->sin6_addr,
5004130ea61SMark Johnston sin6->sin6_port, IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr) ?
5014130ea61SMark Johnston &laddr6.sin6_addr : &inp->in6p_laddr, inp->inp_lport, 0,
502da806e8dSMark Johnston M_NODOM, RT_ALL_FIBS) != NULL)
50382cd038dSYoshinobu Inoue return (EADDRINUSE);
50482cd038dSYoshinobu Inoue if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr)) {
50582cd038dSYoshinobu Inoue if (inp->inp_lport == 0) {
50625102351SMike Karels error = in_pcb_lport_dest(inp,
50725102351SMike Karels (struct sockaddr *) &laddr6, &inp->inp_lport,
508440598ddSJonathan T. Looney (struct sockaddr *) sin6, sin6->sin6_port, cred,
509440598ddSJonathan T. Looney INPLOOKUP_WILDCARD);
5104616026fSErmal Luçi if (error)
51182cd038dSYoshinobu Inoue return (error);
51282cd038dSYoshinobu Inoue }
51325102351SMike Karels inp->in6p_laddr = laddr6.sin6_addr;
51482cd038dSYoshinobu Inoue }
51582cd038dSYoshinobu Inoue inp->in6p_faddr = sin6->sin6_addr;
51682cd038dSYoshinobu Inoue inp->inp_fport = sin6->sin6_port;
51733841545SHajimu UMEMOTO /* update flowinfo - draft-itojun-ipv6-flowlabel-api-00 */
518fc384fa5SBjoern A. Zeeb inp->inp_flow &= ~IPV6_FLOWLABEL_MASK;
519fc384fa5SBjoern A. Zeeb if (inp->inp_flags & IN6P_AUTOFLOWLABEL)
520fc384fa5SBjoern A. Zeeb inp->inp_flow |=
521b79274baSHajimu UMEMOTO (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
52282cd038dSYoshinobu Inoue
523fdb987beSMark Johnston if ((inp->inp_flags & INP_INHASHLIST) != 0) {
524db0ac6deSCy Schubert in_pcbrehash(inp);
525fe1274eeSMichael Tuexen } else {
526*5f42f87fSGleb Smirnoff error = in_pcbinshash(inp);
527*5f42f87fSGleb Smirnoff MPASS(error == 0);
528fe1274eeSMichael Tuexen }
5292cb64cb2SGeorge V. Neville-Neil
53082cd038dSYoshinobu Inoue return (0);
53182cd038dSYoshinobu Inoue }
53282cd038dSYoshinobu Inoue
53382cd038dSYoshinobu Inoue void
in6_pcbdisconnect(struct inpcb * inp)5341272577eSXin LI in6_pcbdisconnect(struct inpcb *inp)
53582cd038dSYoshinobu Inoue {
53607385abdSRobert Watson
5378501a69cSRobert Watson INP_WLOCK_ASSERT(inp);
538fa046d87SRobert Watson INP_HASH_WLOCK_ASSERT(inp->inp_pcbinfo);
539fdb987beSMark Johnston KASSERT(inp->inp_smr == SMR_SEQ_INVALID,
540fdb987beSMark Johnston ("%s: inp %p was already disconnected", __func__, inp));
54107385abdSRobert Watson
542fdb987beSMark Johnston in_pcbremhash_locked(inp);
543fdb987beSMark Johnston
544fdb987beSMark Johnston /* See the comment in in_pcbinshash(). */
545fdb987beSMark Johnston inp->inp_smr = smr_advance(inp->inp_pcbinfo->ipi_smr);
546fdb987beSMark Johnston
547fdb987beSMark Johnston /* XXX-MJ torn writes are visible to SMR lookup */
5482589ec0fSMark Johnston memset(&inp->in6p_laddr, 0, sizeof(inp->in6p_laddr));
5492589ec0fSMark Johnston memset(&inp->in6p_faddr, 0, sizeof(inp->in6p_faddr));
55082cd038dSYoshinobu Inoue inp->inp_fport = 0;
55133841545SHajimu UMEMOTO /* clear flowinfo - draft-itojun-ipv6-flowlabel-api-00 */
552fc384fa5SBjoern A. Zeeb inp->inp_flow &= ~IPV6_FLOWLABEL_MASK;
55382cd038dSYoshinobu Inoue }
55482cd038dSYoshinobu Inoue
55582cd038dSYoshinobu Inoue int
in6_getsockaddr(struct socket * so,struct sockaddr * sa)5560fac350cSGleb Smirnoff in6_getsockaddr(struct socket *so, struct sockaddr *sa)
55782cd038dSYoshinobu Inoue {
5583e85b721SEd Maste struct inpcb *inp;
55982cd038dSYoshinobu Inoue
56082cd038dSYoshinobu Inoue inp = sotoinpcb(so);
56154d642bbSRobert Watson KASSERT(inp != NULL, ("in6_getsockaddr: inp == NULL"));
56248477723SRobert Watson
5630fac350cSGleb Smirnoff *(struct sockaddr_in6 *)sa = (struct sockaddr_in6 ){
5640fac350cSGleb Smirnoff .sin6_len = sizeof(struct sockaddr_in6),
5650fac350cSGleb Smirnoff .sin6_family = AF_INET6,
5660fac350cSGleb Smirnoff .sin6_port = inp->inp_lport,
5670fac350cSGleb Smirnoff .sin6_addr = inp->in6p_laddr,
5680fac350cSGleb Smirnoff };
5690fac350cSGleb Smirnoff /* XXX: should catch errors */
5700fac350cSGleb Smirnoff (void)sa6_recoverscope((struct sockaddr_in6 *)sa);
57182cd038dSYoshinobu Inoue
5720fac350cSGleb Smirnoff return (0);
57382cd038dSYoshinobu Inoue }
57482cd038dSYoshinobu Inoue
57582cd038dSYoshinobu Inoue int
in6_getpeeraddr(struct socket * so,struct sockaddr * sa)5760fac350cSGleb Smirnoff in6_getpeeraddr(struct socket *so, struct sockaddr *sa)
57782cd038dSYoshinobu Inoue {
57882cd038dSYoshinobu Inoue struct inpcb *inp;
57982cd038dSYoshinobu Inoue
58082cd038dSYoshinobu Inoue inp = sotoinpcb(so);
58154d642bbSRobert Watson KASSERT(inp != NULL, ("in6_getpeeraddr: inp == NULL"));
58248477723SRobert Watson
5830fac350cSGleb Smirnoff *(struct sockaddr_in6 *)sa = (struct sockaddr_in6 ){
5840fac350cSGleb Smirnoff .sin6_len = sizeof(struct sockaddr_in6),
5850fac350cSGleb Smirnoff .sin6_family = AF_INET6,
5860fac350cSGleb Smirnoff .sin6_port = inp->inp_fport,
5870fac350cSGleb Smirnoff .sin6_addr = inp->in6p_faddr,
5880fac350cSGleb Smirnoff };
5890fac350cSGleb Smirnoff /* XXX: should catch errors */
5900fac350cSGleb Smirnoff (void)sa6_recoverscope((struct sockaddr_in6 *)sa);
59182cd038dSYoshinobu Inoue
5920fac350cSGleb Smirnoff return (0);
59382cd038dSYoshinobu Inoue }
59482cd038dSYoshinobu Inoue
59582cd038dSYoshinobu Inoue int
in6_mapped_sockaddr(struct socket * so,struct sockaddr * sa)5960fac350cSGleb Smirnoff in6_mapped_sockaddr(struct socket *so, struct sockaddr *sa)
59782cd038dSYoshinobu Inoue {
59882cd038dSYoshinobu Inoue int error;
599042fb58dSLexi Winter #ifdef INET
600042fb58dSLexi Winter struct inpcb *inp;
60182cd038dSYoshinobu Inoue
60248477723SRobert Watson inp = sotoinpcb(so);
60348477723SRobert Watson KASSERT(inp != NULL, ("in6_mapped_sockaddr: inp == NULL"));
60448477723SRobert Watson
6055fac4178SHajimu UMEMOTO if ((inp->inp_vflag & (INP_IPV4 | INP_IPV6)) == INP_IPV4) {
6060fac350cSGleb Smirnoff struct sockaddr_in sin;
6070fac350cSGleb Smirnoff
6080fac350cSGleb Smirnoff error = in_getsockaddr(so, (struct sockaddr *)&sin);
609369dc8ceSEivind Eklund if (error == 0)
6100fac350cSGleb Smirnoff in6_sin_2_v4mapsin6(&sin, (struct sockaddr_in6 *)sa);
61167107f45SBjoern A. Zeeb } else
61267107f45SBjoern A. Zeeb #endif
61367107f45SBjoern A. Zeeb {
61454d642bbSRobert Watson /* scope issues will be handled in in6_getsockaddr(). */
6150fac350cSGleb Smirnoff error = in6_getsockaddr(so, sa);
6167efe5d92SHajimu UMEMOTO }
61782cd038dSYoshinobu Inoue
61882cd038dSYoshinobu Inoue return error;
61982cd038dSYoshinobu Inoue }
62082cd038dSYoshinobu Inoue
62182cd038dSYoshinobu Inoue int
in6_mapped_peeraddr(struct socket * so,struct sockaddr * sa)6220fac350cSGleb Smirnoff in6_mapped_peeraddr(struct socket *so, struct sockaddr *sa)
62382cd038dSYoshinobu Inoue {
62482cd038dSYoshinobu Inoue int error;
625042fb58dSLexi Winter #ifdef INET
626042fb58dSLexi Winter struct inpcb *inp;
62782cd038dSYoshinobu Inoue
62848477723SRobert Watson inp = sotoinpcb(so);
62948477723SRobert Watson KASSERT(inp != NULL, ("in6_mapped_peeraddr: inp == NULL"));
63048477723SRobert Watson
6315fac4178SHajimu UMEMOTO if ((inp->inp_vflag & (INP_IPV4 | INP_IPV6)) == INP_IPV4) {
6320fac350cSGleb Smirnoff struct sockaddr_in sin;
6330fac350cSGleb Smirnoff
6340fac350cSGleb Smirnoff error = in_getpeeraddr(so, (struct sockaddr *)&sin);
635369dc8ceSEivind Eklund if (error == 0)
6360fac350cSGleb Smirnoff in6_sin_2_v4mapsin6(&sin, (struct sockaddr_in6 *)sa);
63782cd038dSYoshinobu Inoue } else
63867107f45SBjoern A. Zeeb #endif
639042fb58dSLexi Winter {
64054d642bbSRobert Watson /* scope issues will be handled in in6_getpeeraddr(). */
6410fac350cSGleb Smirnoff error = in6_getpeeraddr(so, sa);
642042fb58dSLexi Winter }
64382cd038dSYoshinobu Inoue
64482cd038dSYoshinobu Inoue return error;
64582cd038dSYoshinobu Inoue }
64682cd038dSYoshinobu Inoue
64782cd038dSYoshinobu Inoue /*
64882cd038dSYoshinobu Inoue * Pass some notification to all connections of a protocol
64982cd038dSYoshinobu Inoue * associated with address dst. The local address and/or port numbers
65082cd038dSYoshinobu Inoue * may be specified to limit the search. The "usual action" will be
65182cd038dSYoshinobu Inoue * taken, depending on the ctlinput cmd. The caller must filter any
65282cd038dSYoshinobu Inoue * cmds that are uninteresting (e.g., no error in the map).
65382cd038dSYoshinobu Inoue * Call the protocol specific routine (if any) to report
65482cd038dSYoshinobu Inoue * any errors for each matching socket.
65582cd038dSYoshinobu Inoue */
656db0ac6deSCy Schubert static bool
inp_match6(const struct inpcb * inp,void * v __unused)657db0ac6deSCy Schubert inp_match6(const struct inpcb *inp, void *v __unused)
658db0ac6deSCy Schubert {
659db0ac6deSCy Schubert
660db0ac6deSCy Schubert return ((inp->inp_vflag & INP_IPV6) != 0);
661db0ac6deSCy Schubert }
662fcb3f813SGleb Smirnoff
66382cd038dSYoshinobu Inoue void
in6_pcbnotify(struct inpcbinfo * pcbinfo,struct sockaddr_in6 * sa6_dst,u_int fport_arg,const struct sockaddr_in6 * src,u_int lport_arg,int errno,void * cmdarg,struct inpcb * (* notify)(struct inpcb *,int))66443d39ca7SGleb Smirnoff in6_pcbnotify(struct inpcbinfo *pcbinfo, struct sockaddr_in6 *sa6_dst,
66543d39ca7SGleb Smirnoff u_int fport_arg, const struct sockaddr_in6 *src, u_int lport_arg,
666fcb3f813SGleb Smirnoff int errno, void *cmdarg,
6679233d8f3SDavid E. O'Brien struct inpcb *(*notify)(struct inpcb *, int))
66882cd038dSYoshinobu Inoue {
669db0ac6deSCy Schubert struct inpcb_iterator inpi = INP_ITERATOR(pcbinfo, INPLOOKUP_WLOCKPCB,
670db0ac6deSCy Schubert inp_match6, NULL);
671db0ac6deSCy Schubert struct inpcb *inp;
67243d39ca7SGleb Smirnoff struct sockaddr_in6 sa6_src;
67382cd038dSYoshinobu Inoue u_short fport = fport_arg, lport = lport_arg;
67433841545SHajimu UMEMOTO u_int32_t flowinfo;
67533841545SHajimu UMEMOTO
67633841545SHajimu UMEMOTO if (IN6_IS_ADDR_UNSPECIFIED(&sa6_dst->sin6_addr))
67782cd038dSYoshinobu Inoue return;
67882cd038dSYoshinobu Inoue
67982cd038dSYoshinobu Inoue /*
68033841545SHajimu UMEMOTO * note that src can be NULL when we get notify by local fragmentation.
68133841545SHajimu UMEMOTO */
68243d39ca7SGleb Smirnoff sa6_src = (src == NULL) ? sa6_any : *src;
68333841545SHajimu UMEMOTO flowinfo = sa6_src.sin6_flowinfo;
68433841545SHajimu UMEMOTO
685db0ac6deSCy Schubert while ((inp = inp_next(&inpi)) != NULL) {
686db0ac6deSCy Schubert INP_WLOCK_ASSERT(inp);
687686cdd19SJun-ichiro itojun Hagino /*
688efddf5c6SHajimu UMEMOTO * If the error designates a new path MTU for a destination
689efddf5c6SHajimu UMEMOTO * and the application (associated with this socket) wanted to
6908f1beb88SAndrey V. Elsukov * know the value, notify.
691efddf5c6SHajimu UMEMOTO * XXX: should we avoid to notify the value to TCP sockets?
692efddf5c6SHajimu UMEMOTO */
693fcb3f813SGleb Smirnoff if (errno == EMSGSIZE && cmdarg != NULL)
69443d39ca7SGleb Smirnoff ip6_notify_pmtu(inp, sa6_dst, *(uint32_t *)cmdarg);
695efddf5c6SHajimu UMEMOTO
696efddf5c6SHajimu UMEMOTO /*
69733841545SHajimu UMEMOTO * Detect if we should notify the error. If no source and
69804389c85SGordon Bergling * destination ports are specified, but non-zero flowinfo and
69933841545SHajimu UMEMOTO * local address match, notify the error. This is the case
70033841545SHajimu UMEMOTO * when the error is delivered with an encrypted buffer
70133841545SHajimu UMEMOTO * by ESP. Otherwise, just compare addresses and ports
70233841545SHajimu UMEMOTO * as usual.
703686cdd19SJun-ichiro itojun Hagino */
70433841545SHajimu UMEMOTO if (lport == 0 && fport == 0 && flowinfo &&
70533841545SHajimu UMEMOTO inp->inp_socket != NULL &&
706fc384fa5SBjoern A. Zeeb flowinfo == (inp->inp_flow & IPV6_FLOWLABEL_MASK) &&
70733841545SHajimu UMEMOTO IN6_ARE_ADDR_EQUAL(&inp->in6p_laddr, &sa6_src.sin6_addr))
70833841545SHajimu UMEMOTO goto do_notify;
70933841545SHajimu UMEMOTO else if (!IN6_ARE_ADDR_EQUAL(&inp->in6p_faddr,
71033841545SHajimu UMEMOTO &sa6_dst->sin6_addr) ||
71182cd038dSYoshinobu Inoue inp->inp_socket == 0 ||
71282cd038dSYoshinobu Inoue (lport && inp->inp_lport != lport) ||
71333841545SHajimu UMEMOTO (!IN6_IS_ADDR_UNSPECIFIED(&sa6_src.sin6_addr) &&
71433841545SHajimu UMEMOTO !IN6_ARE_ADDR_EQUAL(&inp->in6p_laddr,
71533841545SHajimu UMEMOTO &sa6_src.sin6_addr)) ||
716f31f65a7SRobert Watson (fport && inp->inp_fport != fport)) {
71782cd038dSYoshinobu Inoue continue;
718f31f65a7SRobert Watson }
719686cdd19SJun-ichiro itojun Hagino
72033841545SHajimu UMEMOTO do_notify:
721db0ac6deSCy Schubert if (notify)
722db0ac6deSCy Schubert (*notify)(inp, errno);
72382cd038dSYoshinobu Inoue }
72482cd038dSYoshinobu Inoue }
72582cd038dSYoshinobu Inoue
72682cd038dSYoshinobu Inoue /*
727fa046d87SRobert Watson * Lookup a PCB based on the local address and port. Caller must hold the
728fa046d87SRobert Watson * hash lock. No inpcb locks or references are acquired.
72982cd038dSYoshinobu Inoue */
73082cd038dSYoshinobu Inoue struct inpcb *
in6_pcblookup_local(struct inpcbinfo * pcbinfo,const struct in6_addr * laddr,u_short lport,int fib,int lookupflags,struct ucred * cred)73152ef944bSMark Johnston in6_pcblookup_local(struct inpcbinfo *pcbinfo, const struct in6_addr *laddr,
7329a413162SMark Johnston u_short lport, int fib, int lookupflags, struct ucred *cred)
73382cd038dSYoshinobu Inoue {
7343e85b721SEd Maste struct inpcb *inp;
73582cd038dSYoshinobu Inoue int matchwild = 3, wildcard;
73682cd038dSYoshinobu Inoue
73768e0d7e0SRobert Watson KASSERT((lookupflags & ~(INPLOOKUP_WILDCARD)) == 0,
73868e0d7e0SRobert Watson ("%s: invalid lookup flags %d", __func__, lookupflags));
7399a413162SMark Johnston KASSERT(fib == RT_ALL_FIBS || (fib >= 0 && fib < V_rt_numfibs),
7409a413162SMark Johnston ("%s: invalid fib %d", __func__, fib));
74168e0d7e0SRobert Watson
742c17cd08fSGleb Smirnoff INP_HASH_LOCK_ASSERT(pcbinfo);
7438deea4a8SRobert Watson
74468e0d7e0SRobert Watson if ((lookupflags & INPLOOKUP_WILDCARD) == 0) {
74582cd038dSYoshinobu Inoue struct inpcbhead *head;
74682cd038dSYoshinobu Inoue /*
74782cd038dSYoshinobu Inoue * Look for an unconnected (wildcard foreign addr) PCB that
74882cd038dSYoshinobu Inoue * matches the local address and port we're looking for.
74982cd038dSYoshinobu Inoue */
750fdb987beSMark Johnston head = &pcbinfo->ipi_hash_wild[INP_PCBHASH_WILD(lport,
7511b44e5ffSAndrey V. Elsukov pcbinfo->ipi_hashmask)];
752fdb987beSMark Johnston CK_LIST_FOREACH(inp, head, inp_hash_wild) {
753413628a7SBjoern A. Zeeb /* XXX inp locking */
754369dc8ceSEivind Eklund if ((inp->inp_vflag & INP_IPV6) == 0)
75582cd038dSYoshinobu Inoue continue;
75682cd038dSYoshinobu Inoue if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr) &&
75782cd038dSYoshinobu Inoue IN6_ARE_ADDR_EQUAL(&inp->in6p_laddr, laddr) &&
7589a413162SMark Johnston inp->inp_lport == lport && (fib == RT_ALL_FIBS ||
7599a413162SMark Johnston inp->inp_inc.inc_fibnum == fib)) {
760413628a7SBjoern A. Zeeb /* Found. */
761ac1750ddSMark Johnston if (prison_equal_ip6(cred->cr_prison,
7620304c731SJamie Gritton inp->inp_cred->cr_prison))
76382cd038dSYoshinobu Inoue return (inp);
76482cd038dSYoshinobu Inoue }
76582cd038dSYoshinobu Inoue }
76682cd038dSYoshinobu Inoue /*
76782cd038dSYoshinobu Inoue * Not found.
76882cd038dSYoshinobu Inoue */
76982cd038dSYoshinobu Inoue return (NULL);
77082cd038dSYoshinobu Inoue } else {
7715f539170SGleb Smirnoff struct inpcbhead *porthash;
77282cd038dSYoshinobu Inoue struct inpcb *match = NULL;
7735f539170SGleb Smirnoff
77482cd038dSYoshinobu Inoue /*
77582cd038dSYoshinobu Inoue * Port is in use by one or more PCBs. Look for best
77682cd038dSYoshinobu Inoue * fit.
77782cd038dSYoshinobu Inoue */
7785f539170SGleb Smirnoff porthash = &pcbinfo->ipi_porthashbase[INP_PCBPORTHASH(lport,
7795f539170SGleb Smirnoff pcbinfo->ipi_porthashmask)];
7805f539170SGleb Smirnoff CK_LIST_FOREACH(inp, porthash, inp_portlist) {
7815f539170SGleb Smirnoff if (inp->inp_lport != lport)
7825f539170SGleb Smirnoff continue;
783ac1750ddSMark Johnston if (!prison_equal_ip6(cred->cr_prison,
7840304c731SJamie Gritton inp->inp_cred->cr_prison))
785413628a7SBjoern A. Zeeb continue;
786413628a7SBjoern A. Zeeb /* XXX inp locking */
787369dc8ceSEivind Eklund if ((inp->inp_vflag & INP_IPV6) == 0)
78882cd038dSYoshinobu Inoue continue;
7899a413162SMark Johnston if (fib != RT_ALL_FIBS &&
7909a413162SMark Johnston inp->inp_inc.inc_fibnum != fib)
7919a413162SMark Johnston continue;
7925f539170SGleb Smirnoff wildcard = 0;
79382cd038dSYoshinobu Inoue if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr))
79482cd038dSYoshinobu Inoue wildcard++;
7955f539170SGleb Smirnoff if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr)) {
79682cd038dSYoshinobu Inoue if (IN6_IS_ADDR_UNSPECIFIED(laddr))
79782cd038dSYoshinobu Inoue wildcard++;
79882cd038dSYoshinobu Inoue else if (!IN6_ARE_ADDR_EQUAL(
79982cd038dSYoshinobu Inoue &inp->in6p_laddr, laddr))
80082cd038dSYoshinobu Inoue continue;
80182cd038dSYoshinobu Inoue } else {
80282cd038dSYoshinobu Inoue if (!IN6_IS_ADDR_UNSPECIFIED(laddr))
80382cd038dSYoshinobu Inoue wildcard++;
80482cd038dSYoshinobu Inoue }
80582cd038dSYoshinobu Inoue if (wildcard < matchwild) {
80682cd038dSYoshinobu Inoue match = inp;
80782cd038dSYoshinobu Inoue matchwild = wildcard;
808413628a7SBjoern A. Zeeb if (matchwild == 0)
80982cd038dSYoshinobu Inoue break;
81082cd038dSYoshinobu Inoue }
81182cd038dSYoshinobu Inoue }
81282cd038dSYoshinobu Inoue return (match);
81382cd038dSYoshinobu Inoue }
81482cd038dSYoshinobu Inoue }
81582cd038dSYoshinobu Inoue
816db0ac6deSCy Schubert static bool
in6_multi_match(const struct inpcb * inp,void * v __unused)817db0ac6deSCy Schubert in6_multi_match(const struct inpcb *inp, void *v __unused)
818db0ac6deSCy Schubert {
819db0ac6deSCy Schubert
820db0ac6deSCy Schubert if ((inp->inp_vflag & INP_IPV6) && inp->in6p_moptions != NULL)
821db0ac6deSCy Schubert return (true);
822db0ac6deSCy Schubert else
823db0ac6deSCy Schubert return (false);
824db0ac6deSCy Schubert }
825db0ac6deSCy Schubert
826e43cc4aeSHajimu UMEMOTO void
in6_pcbpurgeif0(struct inpcbinfo * pcbinfo,struct ifnet * ifp)8271272577eSXin LI in6_pcbpurgeif0(struct inpcbinfo *pcbinfo, struct ifnet *ifp)
828e43cc4aeSHajimu UMEMOTO {
829db0ac6deSCy Schubert struct inpcb_iterator inpi = INP_ITERATOR(pcbinfo, INPLOOKUP_RLOCKPCB,
830db0ac6deSCy Schubert in6_multi_match, NULL);
8310ecd976eSBjoern A. Zeeb struct inpcb *inp;
83259854ecfSHans Petter Selasky struct in6_multi *inm;
83359854ecfSHans Petter Selasky struct in6_mfilter *imf;
834e43cc4aeSHajimu UMEMOTO struct ip6_moptions *im6o;
835e43cc4aeSHajimu UMEMOTO
836db0ac6deSCy Schubert IN6_MULTI_LOCK_ASSERT();
837db0ac6deSCy Schubert
838db0ac6deSCy Schubert while ((inp = inp_next(&inpi)) != NULL) {
839db0ac6deSCy Schubert INP_RLOCK_ASSERT(inp);
840db0ac6deSCy Schubert
8410ecd976eSBjoern A. Zeeb im6o = inp->in6p_moptions;
842e43cc4aeSHajimu UMEMOTO /*
84333cde130SBruce M Simpson * Unselect the outgoing ifp for multicast if it
84433cde130SBruce M Simpson * is being detached.
845e43cc4aeSHajimu UMEMOTO */
846e43cc4aeSHajimu UMEMOTO if (im6o->im6o_multicast_ifp == ifp)
847e43cc4aeSHajimu UMEMOTO im6o->im6o_multicast_ifp = NULL;
848e43cc4aeSHajimu UMEMOTO /*
849e43cc4aeSHajimu UMEMOTO * Drop multicast group membership if we joined
850e43cc4aeSHajimu UMEMOTO * through the interface being detached.
851e43cc4aeSHajimu UMEMOTO */
85259854ecfSHans Petter Selasky restart:
85359854ecfSHans Petter Selasky IP6_MFILTER_FOREACH(imf, &im6o->im6o_head) {
85459854ecfSHans Petter Selasky if ((inm = imf->im6f_in6m) == NULL)
85559854ecfSHans Petter Selasky continue;
85659854ecfSHans Petter Selasky if (inm->in6m_ifp != ifp)
85759854ecfSHans Petter Selasky continue;
85859854ecfSHans Petter Selasky ip6_mfilter_remove(&im6o->im6o_head, imf);
85959854ecfSHans Petter Selasky in6_leavegroup_locked(inm, NULL);
86059854ecfSHans Petter Selasky ip6_mfilter_free(imf);
86159854ecfSHans Petter Selasky goto restart;
862e43cc4aeSHajimu UMEMOTO }
863e43cc4aeSHajimu UMEMOTO }
864e43cc4aeSHajimu UMEMOTO }
865e43cc4aeSHajimu UMEMOTO
86682cd038dSYoshinobu Inoue /*
86782cd038dSYoshinobu Inoue * Check for alternatives when higher level complains
86882cd038dSYoshinobu Inoue * about service problems. For now, invalidate cached
86982cd038dSYoshinobu Inoue * routing information. If the route was created dynamically
87082cd038dSYoshinobu Inoue * (by a redirect), time to try a default gateway again.
87182cd038dSYoshinobu Inoue */
87282cd038dSYoshinobu Inoue void
in6_losing(struct inpcb * inp)873ec86402eSBjoern A. Zeeb in6_losing(struct inpcb *inp)
87482cd038dSYoshinobu Inoue {
8751272577eSXin LI
876ec86402eSBjoern A. Zeeb RO_INVALIDATE_CACHE(&inp->inp_route6);
87782cd038dSYoshinobu Inoue }
87882cd038dSYoshinobu Inoue
87982cd038dSYoshinobu Inoue /*
88082cd038dSYoshinobu Inoue * After a routing change, flush old routing
88182cd038dSYoshinobu Inoue * and allocate a (hopefully) better one.
88282cd038dSYoshinobu Inoue */
8833ce144eaSJeffrey Hsu struct inpcb *
in6_rtchange(struct inpcb * inp,int errno __unused)884ec86402eSBjoern A. Zeeb in6_rtchange(struct inpcb *inp, int errno __unused)
88582cd038dSYoshinobu Inoue {
88684cc0778SGeorge V. Neville-Neil
887ec86402eSBjoern A. Zeeb RO_INVALIDATE_CACHE(&inp->inp_route6);
8883ce144eaSJeffrey Hsu return inp;
88982cd038dSYoshinobu Inoue }
89082cd038dSYoshinobu Inoue
891d93ec8cbSMark Johnston static bool
in6_pcblookup_lb_match(const struct inpcblbgroup * grp,int domain,int fib)892da806e8dSMark Johnston in6_pcblookup_lb_match(const struct inpcblbgroup *grp, int domain, int fib)
893d93ec8cbSMark Johnston {
894da806e8dSMark Johnston return ((domain == M_NODOM || domain == grp->il_numa_domain) &&
895da806e8dSMark Johnston (fib == RT_ALL_FIBS || fib == grp->il_fibnum));
896d93ec8cbSMark Johnston }
897d93ec8cbSMark Johnston
8981a43cff9SSean Bruno static struct inpcb *
in6_pcblookup_lbgroup(const struct inpcbinfo * pcbinfo,const struct in6_addr * faddr,uint16_t fport,const struct in6_addr * laddr,uint16_t lport,uint8_t domain,int fib)8991a43cff9SSean Bruno in6_pcblookup_lbgroup(const struct inpcbinfo *pcbinfo,
9004130ea61SMark Johnston const struct in6_addr *faddr, uint16_t fport, const struct in6_addr *laddr,
901da806e8dSMark Johnston uint16_t lport, uint8_t domain, int fib)
9021a43cff9SSean Bruno {
9031a43cff9SSean Bruno const struct inpcblbgrouphead *hdr;
9041a43cff9SSean Bruno struct inpcblbgroup *grp;
905d93ec8cbSMark Johnston struct inpcblbgroup *jail_exact, *jail_wild, *local_exact, *local_wild;
906a600aabeSMark Johnston struct inpcb *inp;
907a600aabeSMark Johnston u_int count;
9081a43cff9SSean Bruno
9091a43cff9SSean Bruno INP_HASH_LOCK_ASSERT(pcbinfo);
910da806e8dSMark Johnston NET_EPOCH_ASSERT();
9111a43cff9SSean Bruno
9129d2877fcSMark Johnston hdr = &pcbinfo->ipi_lbgrouphashbase[
9139d2877fcSMark Johnston INP_PCBPORTHASH(lport, pcbinfo->ipi_lbgrouphashmask)];
9141a43cff9SSean Bruno
9151a43cff9SSean Bruno /*
916d93ec8cbSMark Johnston * Search for an LB group match based on the following criteria:
917d93ec8cbSMark Johnston * - prefer jailed groups to non-jailed groups
918d93ec8cbSMark Johnston * - prefer exact source address matches to wildcard matches
919d93ec8cbSMark Johnston * - prefer groups bound to the specified NUMA domain
9201a43cff9SSean Bruno */
921d93ec8cbSMark Johnston jail_exact = jail_wild = local_exact = local_wild = NULL;
92254af3d0dSMark Johnston CK_LIST_FOREACH(grp, hdr, il_list) {
923d93ec8cbSMark Johnston bool injail;
924d93ec8cbSMark Johnston
9254b82a7b6SAndrew Gallatin #ifdef INET
9264b82a7b6SAndrew Gallatin if (!(grp->il_vflag & INP_IPV6))
9274b82a7b6SAndrew Gallatin continue;
9284b82a7b6SAndrew Gallatin #endif
929d3a4b0daSMark Johnston if (grp->il_lport != lport)
930d3a4b0daSMark Johnston continue;
9311a43cff9SSean Bruno
932d93ec8cbSMark Johnston injail = prison_flag(grp->il_cred, PR_IP6) != 0;
933d93ec8cbSMark Johnston if (injail && prison_check_ip6_locked(grp->il_cred->cr_prison,
934d93ec8cbSMark Johnston laddr) != 0)
935d93ec8cbSMark Johnston continue;
936d93ec8cbSMark Johnston
937a034518aSAndrew Gallatin if (IN6_ARE_ADDR_EQUAL(&grp->il6_laddr, laddr)) {
938d93ec8cbSMark Johnston if (injail) {
939d93ec8cbSMark Johnston jail_exact = grp;
940da806e8dSMark Johnston if (in6_pcblookup_lb_match(grp, domain, fib))
941d93ec8cbSMark Johnston /* This is a perfect match. */
942d93ec8cbSMark Johnston goto out;
943d93ec8cbSMark Johnston } else if (local_exact == NULL ||
944da806e8dSMark Johnston in6_pcblookup_lb_match(grp, domain, fib)) {
945d93ec8cbSMark Johnston local_exact = grp;
946a034518aSAndrew Gallatin }
9474130ea61SMark Johnston } else if (IN6_IS_ADDR_UNSPECIFIED(&grp->il6_laddr)) {
948d93ec8cbSMark Johnston if (injail) {
949d93ec8cbSMark Johnston if (jail_wild == NULL ||
950da806e8dSMark Johnston in6_pcblookup_lb_match(grp, domain, fib))
951d93ec8cbSMark Johnston jail_wild = grp;
952d93ec8cbSMark Johnston } else if (local_wild == NULL ||
953da806e8dSMark Johnston in6_pcblookup_lb_match(grp, domain, fib)) {
954d93ec8cbSMark Johnston local_wild = grp;
955d93ec8cbSMark Johnston }
956d93ec8cbSMark Johnston }
957d93ec8cbSMark Johnston }
958d93ec8cbSMark Johnston
959d93ec8cbSMark Johnston if (jail_exact != NULL)
960d93ec8cbSMark Johnston grp = jail_exact;
961d93ec8cbSMark Johnston else if (jail_wild != NULL)
962d93ec8cbSMark Johnston grp = jail_wild;
963d93ec8cbSMark Johnston else if (local_exact != NULL)
964d93ec8cbSMark Johnston grp = local_exact;
965a034518aSAndrew Gallatin else
966d93ec8cbSMark Johnston grp = local_wild;
967d93ec8cbSMark Johnston if (grp == NULL)
968d93ec8cbSMark Johnston return (NULL);
969d93ec8cbSMark Johnston out:
970a600aabeSMark Johnston /*
971a600aabeSMark Johnston * Synchronize with in_pcblbgroup_insert().
972a600aabeSMark Johnston */
973a600aabeSMark Johnston count = atomic_load_acq_int(&grp->il_inpcnt);
974a600aabeSMark Johnston if (count == 0)
975a600aabeSMark Johnston return (NULL);
976a600aabeSMark Johnston inp = grp->il_inp[INP6_PCBLBGROUP_PKTHASH(faddr, lport, fport) % count];
977a600aabeSMark Johnston KASSERT(inp != NULL, ("%s: inp == NULL", __func__));
978a600aabeSMark Johnston return (inp);
9791a43cff9SSean Bruno }
9801a43cff9SSean Bruno
9813e98dcb3SMark Johnston static bool
in6_pcblookup_exact_match(const struct inpcb * inp,const struct in6_addr * faddr,u_short fport,const struct in6_addr * laddr,u_short lport)9823e98dcb3SMark Johnston in6_pcblookup_exact_match(const struct inpcb *inp, const struct in6_addr *faddr,
9833e98dcb3SMark Johnston u_short fport, const struct in6_addr *laddr, u_short lport)
9843e98dcb3SMark Johnston {
9853e98dcb3SMark Johnston /* XXX inp locking */
9863e98dcb3SMark Johnston if ((inp->inp_vflag & INP_IPV6) == 0)
9873e98dcb3SMark Johnston return (false);
9883e98dcb3SMark Johnston if (IN6_ARE_ADDR_EQUAL(&inp->in6p_faddr, faddr) &&
9893e98dcb3SMark Johnston IN6_ARE_ADDR_EQUAL(&inp->in6p_laddr, laddr) &&
9903e98dcb3SMark Johnston inp->inp_fport == fport && inp->inp_lport == lport)
9913e98dcb3SMark Johnston return (true);
9923e98dcb3SMark Johnston return (false);
9933e98dcb3SMark Johnston }
9943e98dcb3SMark Johnston
9954130ea61SMark Johnston static struct inpcb *
in6_pcblookup_hash_exact(struct inpcbinfo * pcbinfo,const struct in6_addr * faddr,u_short fport,const struct in6_addr * laddr,u_short lport)9967b92493aSMark Johnston in6_pcblookup_hash_exact(struct inpcbinfo *pcbinfo,
9977b92493aSMark Johnston const struct in6_addr *faddr, u_short fport,
9987b92493aSMark Johnston const struct in6_addr *laddr, u_short lport)
99982cd038dSYoshinobu Inoue {
100082cd038dSYoshinobu Inoue struct inpcbhead *head;
10013e98dcb3SMark Johnston struct inpcb *inp;
100268e0d7e0SRobert Watson
1003fa046d87SRobert Watson INP_HASH_LOCK_ASSERT(pcbinfo);
10048deea4a8SRobert Watson
100582cd038dSYoshinobu Inoue /*
100682cd038dSYoshinobu Inoue * First look for an exact match.
100782cd038dSYoshinobu Inoue */
1008fdb987beSMark Johnston head = &pcbinfo->ipi_hash_exact[INP6_PCBHASH(faddr, lport, fport,
1009a0577692SGleb Smirnoff pcbinfo->ipi_hashmask)];
1010fdb987beSMark Johnston CK_LIST_FOREACH(inp, head, inp_hash_exact) {
10113e98dcb3SMark Johnston if (in6_pcblookup_exact_match(inp, faddr, fport, laddr, lport))
101282cd038dSYoshinobu Inoue return (inp);
101382cd038dSYoshinobu Inoue }
10143e98dcb3SMark Johnston return (NULL);
10153e98dcb3SMark Johnston }
10163e98dcb3SMark Johnston
10173e98dcb3SMark Johnston typedef enum {
10183e98dcb3SMark Johnston INPLOOKUP_MATCH_NONE = 0,
10193e98dcb3SMark Johnston INPLOOKUP_MATCH_WILD = 1,
10203e98dcb3SMark Johnston INPLOOKUP_MATCH_LADDR = 2,
10213e98dcb3SMark Johnston } inp_lookup_match_t;
10223e98dcb3SMark Johnston
10233e98dcb3SMark Johnston static inp_lookup_match_t
in6_pcblookup_wild_match(const struct inpcb * inp,const struct in6_addr * laddr,u_short lport,int fib)10243e98dcb3SMark Johnston in6_pcblookup_wild_match(const struct inpcb *inp, const struct in6_addr *laddr,
1025da806e8dSMark Johnston u_short lport, int fib)
10263e98dcb3SMark Johnston {
10273e98dcb3SMark Johnston /* XXX inp locking */
10283e98dcb3SMark Johnston if ((inp->inp_vflag & INP_IPV6) == 0)
10293e98dcb3SMark Johnston return (INPLOOKUP_MATCH_NONE);
10303e98dcb3SMark Johnston if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr) ||
10313e98dcb3SMark Johnston inp->inp_lport != lport)
10323e98dcb3SMark Johnston return (INPLOOKUP_MATCH_NONE);
1033da806e8dSMark Johnston if (fib != RT_ALL_FIBS && inp->inp_inc.inc_fibnum != fib)
1034da806e8dSMark Johnston return (INPLOOKUP_MATCH_NONE);
10353e98dcb3SMark Johnston if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr))
10363e98dcb3SMark Johnston return (INPLOOKUP_MATCH_WILD);
10373e98dcb3SMark Johnston if (IN6_ARE_ADDR_EQUAL(&inp->in6p_laddr, laddr))
10383e98dcb3SMark Johnston return (INPLOOKUP_MATCH_LADDR);
10393e98dcb3SMark Johnston return (INPLOOKUP_MATCH_NONE);
10404130ea61SMark Johnston }
104182cd038dSYoshinobu Inoue
10427b92493aSMark Johnston #define INP_LOOKUP_AGAIN ((struct inpcb *)(uintptr_t)-1)
10437b92493aSMark Johnston
10447b92493aSMark Johnston static struct inpcb *
in6_pcblookup_hash_wild_smr(struct inpcbinfo * pcbinfo,const struct in6_addr * laddr,u_short lport,int fib,const inp_lookup_t lockflags)10457b92493aSMark Johnston in6_pcblookup_hash_wild_smr(struct inpcbinfo *pcbinfo,
1046da806e8dSMark Johnston const struct in6_addr *laddr, u_short lport, int fib,
1047da806e8dSMark Johnston const inp_lookup_t lockflags)
10487b92493aSMark Johnston {
10497b92493aSMark Johnston struct inpcbhead *head;
10507b92493aSMark Johnston struct inpcb *inp;
10517b92493aSMark Johnston
10527b92493aSMark Johnston KASSERT(SMR_ENTERED(pcbinfo->ipi_smr),
10537b92493aSMark Johnston ("%s: not in SMR read section", __func__));
10547b92493aSMark Johnston
10557b92493aSMark Johnston head = &pcbinfo->ipi_hash_wild[INP_PCBHASH_WILD(lport,
10567b92493aSMark Johnston pcbinfo->ipi_hashmask)];
10577b92493aSMark Johnston CK_LIST_FOREACH(inp, head, inp_hash_wild) {
10587b92493aSMark Johnston inp_lookup_match_t match;
10597b92493aSMark Johnston
1060da806e8dSMark Johnston match = in6_pcblookup_wild_match(inp, laddr, lport, fib);
10617b92493aSMark Johnston if (match == INPLOOKUP_MATCH_NONE)
10627b92493aSMark Johnston continue;
10637b92493aSMark Johnston
10647b92493aSMark Johnston if (__predict_true(inp_smr_lock(inp, lockflags))) {
1065da806e8dSMark Johnston match = in6_pcblookup_wild_match(inp, laddr, lport,
1066da806e8dSMark Johnston fib);
1067a306ed50SMark Johnston if (match != INPLOOKUP_MATCH_NONE &&
1068a306ed50SMark Johnston prison_check_ip6_locked(inp->inp_cred->cr_prison,
1069a306ed50SMark Johnston laddr) == 0)
10707b92493aSMark Johnston return (inp);
10717b92493aSMark Johnston inp_unlock(inp, lockflags);
10727b92493aSMark Johnston }
10737b92493aSMark Johnston
10747b92493aSMark Johnston /*
10757b92493aSMark Johnston * The matching socket disappeared out from under us. Fall back
10767b92493aSMark Johnston * to a serialized lookup.
10777b92493aSMark Johnston */
10787b92493aSMark Johnston return (INP_LOOKUP_AGAIN);
10797b92493aSMark Johnston }
10807b92493aSMark Johnston return (NULL);
10817b92493aSMark Johnston }
10827b92493aSMark Johnston
10834130ea61SMark Johnston static struct inpcb *
in6_pcblookup_hash_wild_locked(struct inpcbinfo * pcbinfo,const struct in6_addr * laddr,u_short lport,int fib)10844130ea61SMark Johnston in6_pcblookup_hash_wild_locked(struct inpcbinfo *pcbinfo,
1085da806e8dSMark Johnston const struct in6_addr *laddr, u_short lport, int fib)
10864130ea61SMark Johnston {
10874130ea61SMark Johnston struct inpcbhead *head;
10884130ea61SMark Johnston struct inpcb *inp, *jail_wild, *local_exact, *local_wild;
1089d93ec8cbSMark Johnston
10903e98dcb3SMark Johnston INP_HASH_LOCK_ASSERT(pcbinfo);
10913e98dcb3SMark Johnston
1092d93ec8cbSMark Johnston /*
1093413628a7SBjoern A. Zeeb * Order of socket selection - we always prefer jails.
1094413628a7SBjoern A. Zeeb * 1. jailed, non-wild.
1095413628a7SBjoern A. Zeeb * 2. jailed, wild.
1096413628a7SBjoern A. Zeeb * 3. non-jailed, non-wild.
1097413628a7SBjoern A. Zeeb * 4. non-jailed, wild.
1098413628a7SBjoern A. Zeeb */
1099fdb987beSMark Johnston head = &pcbinfo->ipi_hash_wild[INP_PCBHASH_WILD(lport,
11001b44e5ffSAndrey V. Elsukov pcbinfo->ipi_hashmask)];
11014130ea61SMark Johnston local_wild = local_exact = jail_wild = NULL;
1102fdb987beSMark Johnston CK_LIST_FOREACH(inp, head, inp_hash_wild) {
11033e98dcb3SMark Johnston inp_lookup_match_t match;
11044130ea61SMark Johnston bool injail;
11054130ea61SMark Johnston
1106da806e8dSMark Johnston match = in6_pcblookup_wild_match(inp, laddr, lport, fib);
11073e98dcb3SMark Johnston if (match == INPLOOKUP_MATCH_NONE)
110882cd038dSYoshinobu Inoue continue;
1109413628a7SBjoern A. Zeeb
11104130ea61SMark Johnston injail = prison_flag(inp->inp_cred, PR_IP6) != 0;
1111413628a7SBjoern A. Zeeb if (injail) {
1112185e659cSGleb Smirnoff if (prison_check_ip6_locked(
1113185e659cSGleb Smirnoff inp->inp_cred->cr_prison, laddr) != 0)
1114413628a7SBjoern A. Zeeb continue;
1115413628a7SBjoern A. Zeeb } else {
1116413628a7SBjoern A. Zeeb if (local_exact != NULL)
1117413628a7SBjoern A. Zeeb continue;
1118413628a7SBjoern A. Zeeb }
1119413628a7SBjoern A. Zeeb
11203e98dcb3SMark Johnston if (match == INPLOOKUP_MATCH_LADDR) {
1121413628a7SBjoern A. Zeeb if (injail)
112282cd038dSYoshinobu Inoue return (inp);
1123413628a7SBjoern A. Zeeb else
1124413628a7SBjoern A. Zeeb local_exact = inp;
11253e98dcb3SMark Johnston } else {
1126413628a7SBjoern A. Zeeb if (injail)
1127413628a7SBjoern A. Zeeb jail_wild = inp;
1128413628a7SBjoern A. Zeeb else
112982cd038dSYoshinobu Inoue local_wild = inp;
113082cd038dSYoshinobu Inoue }
11314130ea61SMark Johnston }
1132413628a7SBjoern A. Zeeb
1133413628a7SBjoern A. Zeeb if (jail_wild != NULL)
1134413628a7SBjoern A. Zeeb return (jail_wild);
1135413628a7SBjoern A. Zeeb if (local_exact != NULL)
1136413628a7SBjoern A. Zeeb return (local_exact);
1137413628a7SBjoern A. Zeeb if (local_wild != NULL)
113882cd038dSYoshinobu Inoue return (local_wild);
113982cd038dSYoshinobu Inoue return (NULL);
114082cd038dSYoshinobu Inoue }
114182cd038dSYoshinobu Inoue
11424130ea61SMark Johnston struct inpcb *
in6_pcblookup_hash_locked(struct inpcbinfo * pcbinfo,const struct in6_addr * faddr,u_int fport_arg,const struct in6_addr * laddr,u_int lport_arg,int lookupflags,uint8_t numa_domain,int fib)11437b92493aSMark Johnston in6_pcblookup_hash_locked(struct inpcbinfo *pcbinfo,
11447b92493aSMark Johnston const struct in6_addr *faddr, u_int fport_arg,
11457b92493aSMark Johnston const struct in6_addr *laddr, u_int lport_arg,
1146da806e8dSMark Johnston int lookupflags, uint8_t numa_domain, int fib)
11474130ea61SMark Johnston {
11484130ea61SMark Johnston struct inpcb *inp;
11494130ea61SMark Johnston u_short fport = fport_arg, lport = lport_arg;
11504130ea61SMark Johnston
1151da806e8dSMark Johnston KASSERT((lookupflags & ~(INPLOOKUP_WILDCARD | INPLOOKUP_FIB)) == 0,
11524130ea61SMark Johnston ("%s: invalid lookup flags %d", __func__, lookupflags));
11534130ea61SMark Johnston KASSERT(!IN6_IS_ADDR_UNSPECIFIED(faddr),
11544130ea61SMark Johnston ("%s: invalid foreign address", __func__));
11554130ea61SMark Johnston KASSERT(!IN6_IS_ADDR_UNSPECIFIED(laddr),
11564130ea61SMark Johnston ("%s: invalid local address", __func__));
11574130ea61SMark Johnston INP_HASH_LOCK_ASSERT(pcbinfo);
11584130ea61SMark Johnston
11594130ea61SMark Johnston inp = in6_pcblookup_hash_exact(pcbinfo, faddr, fport, laddr, lport);
11604130ea61SMark Johnston if (inp != NULL)
11614130ea61SMark Johnston return (inp);
11624130ea61SMark Johnston
11634130ea61SMark Johnston if ((lookupflags & INPLOOKUP_WILDCARD) != 0) {
11644130ea61SMark Johnston inp = in6_pcblookup_lbgroup(pcbinfo, faddr, fport, laddr,
1165da806e8dSMark Johnston lport, numa_domain, fib);
11664130ea61SMark Johnston if (inp == NULL) {
116721d7ac8cSMark Johnston inp = in6_pcblookup_hash_wild_locked(pcbinfo,
1168da806e8dSMark Johnston laddr, lport, fib);
11694130ea61SMark Johnston }
11704130ea61SMark Johnston }
11714130ea61SMark Johnston return (inp);
11724130ea61SMark Johnston }
11734130ea61SMark Johnston
1174fa046d87SRobert Watson static struct inpcb *
in6_pcblookup_hash(struct inpcbinfo * pcbinfo,const struct in6_addr * faddr,u_int fport,const struct in6_addr * laddr,u_int lport,int lookupflags,uint8_t numa_domain,int fib)11757b92493aSMark Johnston in6_pcblookup_hash(struct inpcbinfo *pcbinfo, const struct in6_addr *faddr,
11767b92493aSMark Johnston u_int fport, const struct in6_addr *laddr, u_int lport, int lookupflags,
1177da806e8dSMark Johnston uint8_t numa_domain, int fib)
1178fa046d87SRobert Watson {
1179fa046d87SRobert Watson struct inpcb *inp;
11807b92493aSMark Johnston const inp_lookup_t lockflags = lookupflags & INPLOOKUP_LOCKMASK;
11817b92493aSMark Johnston
11827b92493aSMark Johnston KASSERT((lookupflags & (INPLOOKUP_RLOCKPCB | INPLOOKUP_WLOCKPCB)) != 0,
11837b92493aSMark Johnston ("%s: LOCKPCB not set", __func__));
11847b92493aSMark Johnston
11857b92493aSMark Johnston INP_HASH_WLOCK(pcbinfo);
11867b92493aSMark Johnston inp = in6_pcblookup_hash_locked(pcbinfo, faddr, fport, laddr, lport,
1187da806e8dSMark Johnston lookupflags & ~INPLOOKUP_LOCKMASK, numa_domain, fib);
11887b92493aSMark Johnston if (inp != NULL && !inp_trylock(inp, lockflags)) {
11897b92493aSMark Johnston in_pcbref(inp);
11907b92493aSMark Johnston INP_HASH_WUNLOCK(pcbinfo);
11917b92493aSMark Johnston inp_lock(inp, lockflags);
11927b92493aSMark Johnston if (in_pcbrele(inp, lockflags))
11937b92493aSMark Johnston /* XXX-MJ or retry until we get a negative match? */
11947b92493aSMark Johnston inp = NULL;
11957b92493aSMark Johnston } else {
11967b92493aSMark Johnston INP_HASH_WUNLOCK(pcbinfo);
11977b92493aSMark Johnston }
11987b92493aSMark Johnston return (inp);
11997b92493aSMark Johnston }
12007b92493aSMark Johnston
12017b92493aSMark Johnston static struct inpcb *
in6_pcblookup_hash_smr(struct inpcbinfo * pcbinfo,const struct in6_addr * faddr,u_int fport_arg,const struct in6_addr * laddr,u_int lport_arg,int lookupflags,uint8_t numa_domain,int fib)120252ef944bSMark Johnston in6_pcblookup_hash_smr(struct inpcbinfo *pcbinfo, const struct in6_addr *faddr,
120352ef944bSMark Johnston u_int fport_arg, const struct in6_addr *laddr, u_int lport_arg,
1204da806e8dSMark Johnston int lookupflags, uint8_t numa_domain, int fib)
12057b92493aSMark Johnston {
12067b92493aSMark Johnston struct inpcb *inp;
12077b92493aSMark Johnston const inp_lookup_t lockflags = lookupflags & INPLOOKUP_LOCKMASK;
12087b92493aSMark Johnston const u_short fport = fport_arg, lport = lport_arg;
1209fa046d87SRobert Watson
1210675e2618SMark Johnston KASSERT((lookupflags & ~INPLOOKUP_MASK) == 0,
1211675e2618SMark Johnston ("%s: invalid lookup flags %d", __func__, lookupflags));
1212675e2618SMark Johnston KASSERT((lookupflags & (INPLOOKUP_RLOCKPCB | INPLOOKUP_WLOCKPCB)) != 0,
1213675e2618SMark Johnston ("%s: LOCKPCB not set", __func__));
1214675e2618SMark Johnston
1215db0ac6deSCy Schubert smr_enter(pcbinfo->ipi_smr);
12167b92493aSMark Johnston inp = in6_pcblookup_hash_exact(pcbinfo, faddr, fport, laddr, lport);
1217fa046d87SRobert Watson if (inp != NULL) {
12187b92493aSMark Johnston if (__predict_true(inp_smr_lock(inp, lockflags))) {
12197b92493aSMark Johnston if (__predict_true(in6_pcblookup_exact_match(inp,
12207b92493aSMark Johnston faddr, fport, laddr, lport)))
12217b92493aSMark Johnston return (inp);
12227b92493aSMark Johnston inp_unlock(inp, lockflags);
12237b92493aSMark Johnston }
12247b92493aSMark Johnston /*
12257b92493aSMark Johnston * We failed to lock the inpcb, or its connection state changed
12267b92493aSMark Johnston * out from under us. Fall back to a precise search.
12277b92493aSMark Johnston */
12287b92493aSMark Johnston return (in6_pcblookup_hash(pcbinfo, faddr, fport, laddr, lport,
1229da806e8dSMark Johnston lookupflags, numa_domain, fib));
12307b92493aSMark Johnston }
12317b92493aSMark Johnston
12327b92493aSMark Johnston if ((lookupflags & INPLOOKUP_WILDCARD) != 0) {
12337b92493aSMark Johnston inp = in6_pcblookup_lbgroup(pcbinfo, faddr, fport,
1234da806e8dSMark Johnston laddr, lport, numa_domain, fib);
12357b92493aSMark Johnston if (inp != NULL) {
12367b92493aSMark Johnston if (__predict_true(inp_smr_lock(inp, lockflags))) {
12377b92493aSMark Johnston if (__predict_true(in6_pcblookup_wild_match(inp,
1238da806e8dSMark Johnston laddr, lport, fib) != INPLOOKUP_MATCH_NONE))
12397b92493aSMark Johnston return (inp);
12407b92493aSMark Johnston inp_unlock(inp, lockflags);
12417b92493aSMark Johnston }
12427b92493aSMark Johnston inp = INP_LOOKUP_AGAIN;
12437b92493aSMark Johnston } else {
124421d7ac8cSMark Johnston inp = in6_pcblookup_hash_wild_smr(pcbinfo, laddr, lport,
1245da806e8dSMark Johnston fib, lockflags);
12467b92493aSMark Johnston }
12477b92493aSMark Johnston if (inp == INP_LOOKUP_AGAIN) {
12487b92493aSMark Johnston return (in6_pcblookup_hash(pcbinfo, faddr, fport, laddr,
1249da806e8dSMark Johnston lport, lookupflags, numa_domain, fib));
12507b92493aSMark Johnston }
12517b92493aSMark Johnston }
12527b92493aSMark Johnston
12537b92493aSMark Johnston if (inp == NULL)
1254db0ac6deSCy Schubert smr_exit(pcbinfo->ipi_smr);
1255db0ac6deSCy Schubert
1256fa046d87SRobert Watson return (inp);
1257fa046d87SRobert Watson }
1258fa046d87SRobert Watson
1259fa046d87SRobert Watson /*
1260d3c1f003SRobert Watson * Public inpcb lookup routines, accepting a 4-tuple, and optionally, an mbuf
1261d3c1f003SRobert Watson * from which a pre-calculated hash value may be extracted.
1262fa046d87SRobert Watson */
1263fa046d87SRobert Watson struct inpcb *
in6_pcblookup(struct inpcbinfo * pcbinfo,const struct in6_addr * faddr,u_int fport,const struct in6_addr * laddr,u_int lport,int lookupflags,struct ifnet * ifp)126452ef944bSMark Johnston in6_pcblookup(struct inpcbinfo *pcbinfo, const struct in6_addr *faddr,
126552ef944bSMark Johnston u_int fport, const struct in6_addr *laddr, u_int lport, int lookupflags,
1266da806e8dSMark Johnston struct ifnet *ifp)
1267fa046d87SRobert Watson {
1268da806e8dSMark Johnston int fib;
1269da806e8dSMark Johnston
1270da806e8dSMark Johnston fib = (lookupflags & INPLOOKUP_FIB) ? if_getfib(ifp) : RT_ALL_FIBS;
12714130ea61SMark Johnston return (in6_pcblookup_hash_smr(pcbinfo, faddr, fport, laddr, lport,
1272da806e8dSMark Johnston lookupflags, M_NODOM, fib));
1273d3c1f003SRobert Watson }
1274d3c1f003SRobert Watson
1275d3c1f003SRobert Watson struct inpcb *
in6_pcblookup_mbuf(struct inpcbinfo * pcbinfo,const struct in6_addr * faddr,u_int fport,const struct in6_addr * laddr,u_int lport,int lookupflags,struct ifnet * ifp __unused,struct mbuf * m)127652ef944bSMark Johnston in6_pcblookup_mbuf(struct inpcbinfo *pcbinfo, const struct in6_addr *faddr,
127752ef944bSMark Johnston u_int fport, const struct in6_addr *laddr, u_int lport, int lookupflags,
12784130ea61SMark Johnston struct ifnet *ifp __unused, struct mbuf *m)
1279d3c1f003SRobert Watson {
1280da806e8dSMark Johnston int fib;
1281da806e8dSMark Johnston
1282da806e8dSMark Johnston M_ASSERTPKTHDR(m);
1283da806e8dSMark Johnston fib = (lookupflags & INPLOOKUP_FIB) ? M_GETFIB(m) : RT_ALL_FIBS;
12844130ea61SMark Johnston return (in6_pcblookup_hash_smr(pcbinfo, faddr, fport, laddr, lport,
1285da806e8dSMark Johnston lookupflags, m->m_pkthdr.numa_domain, fib));
1286fa046d87SRobert Watson }
1287fa046d87SRobert Watson
128882cd038dSYoshinobu Inoue void
init_sin6(struct sockaddr_in6 * sin6,struct mbuf * m,int srcordst)1289dce33a45SErmal Luçi init_sin6(struct sockaddr_in6 *sin6, struct mbuf *m, int srcordst)
129082cd038dSYoshinobu Inoue {
129182cd038dSYoshinobu Inoue struct ip6_hdr *ip;
129282cd038dSYoshinobu Inoue
129382cd038dSYoshinobu Inoue ip = mtod(m, struct ip6_hdr *);
129482cd038dSYoshinobu Inoue bzero(sin6, sizeof(*sin6));
129582cd038dSYoshinobu Inoue sin6->sin6_len = sizeof(*sin6);
129682cd038dSYoshinobu Inoue sin6->sin6_family = AF_INET6;
1297dce33a45SErmal Luçi sin6->sin6_addr = srcordst ? ip->ip6_dst : ip->ip6_src;
1298a1f7e5f8SHajimu UMEMOTO
1299a1f7e5f8SHajimu UMEMOTO (void)sa6_recoverscope(sin6); /* XXX: should catch errors... */
130082cd038dSYoshinobu Inoue
130182cd038dSYoshinobu Inoue return;
130282cd038dSYoshinobu Inoue }
1303