in6_pcb.c revision 1.164 1 1.164 dholland /* $NetBSD: in6_pcb.c,v 1.164 2018/02/08 09:05:20 dholland Exp $ */
2 1.35 itojun /* $KAME: in6_pcb.c,v 1.84 2001/02/08 18:02:08 itojun Exp $ */
3 1.5 thorpej
4 1.2 itojun /*
5 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 1.2 itojun * All rights reserved.
7 1.23 itojun *
8 1.2 itojun * Redistribution and use in source and binary forms, with or without
9 1.2 itojun * modification, are permitted provided that the following conditions
10 1.2 itojun * are met:
11 1.2 itojun * 1. Redistributions of source code must retain the above copyright
12 1.2 itojun * notice, this list of conditions and the following disclaimer.
13 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.2 itojun * notice, this list of conditions and the following disclaimer in the
15 1.2 itojun * documentation and/or other materials provided with the distribution.
16 1.2 itojun * 3. Neither the name of the project nor the names of its contributors
17 1.2 itojun * may be used to endorse or promote products derived from this software
18 1.2 itojun * without specific prior written permission.
19 1.23 itojun *
20 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.2 itojun * SUCH DAMAGE.
31 1.2 itojun */
32 1.2 itojun
33 1.2 itojun /*
34 1.2 itojun * Copyright (c) 1982, 1986, 1991, 1993
35 1.2 itojun * The Regents of the University of California. All rights reserved.
36 1.2 itojun *
37 1.2 itojun * Redistribution and use in source and binary forms, with or without
38 1.2 itojun * modification, are permitted provided that the following conditions
39 1.2 itojun * are met:
40 1.2 itojun * 1. Redistributions of source code must retain the above copyright
41 1.2 itojun * notice, this list of conditions and the following disclaimer.
42 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
43 1.2 itojun * notice, this list of conditions and the following disclaimer in the
44 1.2 itojun * documentation and/or other materials provided with the distribution.
45 1.54 agc * 3. Neither the name of the University nor the names of its contributors
46 1.2 itojun * may be used to endorse or promote products derived from this software
47 1.2 itojun * without specific prior written permission.
48 1.2 itojun *
49 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 1.2 itojun * SUCH DAMAGE.
60 1.2 itojun *
61 1.2 itojun * @(#)in_pcb.c 8.2 (Berkeley) 1/4/94
62 1.2 itojun */
63 1.44 lukem
64 1.44 lukem #include <sys/cdefs.h>
65 1.164 dholland __KERNEL_RCSID(0, "$NetBSD: in6_pcb.c,v 1.164 2018/02/08 09:05:20 dholland Exp $");
66 1.7 thorpej
67 1.143 pooka #ifdef _KERNEL_OPT
68 1.53 perry #include "opt_inet.h"
69 1.7 thorpej #include "opt_ipsec.h"
70 1.143 pooka #endif
71 1.2 itojun
72 1.2 itojun #include <sys/param.h>
73 1.2 itojun #include <sys/systm.h>
74 1.2 itojun #include <sys/mbuf.h>
75 1.2 itojun #include <sys/protosw.h>
76 1.2 itojun #include <sys/socket.h>
77 1.2 itojun #include <sys/socketvar.h>
78 1.2 itojun #include <sys/ioctl.h>
79 1.2 itojun #include <sys/errno.h>
80 1.2 itojun #include <sys/time.h>
81 1.2 itojun #include <sys/proc.h>
82 1.71 elad #include <sys/kauth.h>
83 1.104 elad #include <sys/domain.h>
84 1.110 pooka #include <sys/once.h>
85 1.2 itojun
86 1.2 itojun #include <net/if.h>
87 1.2 itojun #include <net/route.h>
88 1.2 itojun
89 1.2 itojun #include <netinet/in.h>
90 1.2 itojun #include <netinet/in_var.h>
91 1.2 itojun #include <netinet/in_systm.h>
92 1.2 itojun #include <netinet/ip.h>
93 1.2 itojun #include <netinet/in_pcb.h>
94 1.19 itojun #include <netinet/ip6.h>
95 1.120 christos #include <netinet/portalgo.h>
96 1.11 itojun #include <netinet6/ip6_var.h>
97 1.2 itojun #include <netinet6/in6_pcb.h>
98 1.69 rpaulo #include <netinet6/scope6_var.h>
99 1.2 itojun
100 1.8 itojun #include "faith.h"
101 1.2 itojun
102 1.123 christos #ifdef IPSEC
103 1.64 jonathan #include <netipsec/ipsec.h>
104 1.64 jonathan #include <netipsec/ipsec6.h>
105 1.64 jonathan #include <netipsec/key.h>
106 1.123 christos #endif /* IPSEC */
107 1.64 jonathan
108 1.113 dyoung #include <netinet/tcp_vtw.h>
109 1.113 dyoung
110 1.99 matt const struct in6_addr zeroin6_addr;
111 1.30 itojun
112 1.60 itojun #define IN6PCBHASH_PORT(table, lport) \
113 1.60 itojun &(table)->inpt_porthashtbl[ntohs(lport) & (table)->inpt_porthash]
114 1.56 itojun #define IN6PCBHASH_BIND(table, laddr, lport) \
115 1.56 itojun &(table)->inpt_bindhashtbl[ \
116 1.56 itojun (((laddr)->s6_addr32[0] ^ (laddr)->s6_addr32[1] ^ \
117 1.56 itojun (laddr)->s6_addr32[2] ^ (laddr)->s6_addr32[3]) + ntohs(lport)) & \
118 1.56 itojun (table)->inpt_bindhash]
119 1.56 itojun #define IN6PCBHASH_CONNECT(table, faddr, fport, laddr, lport) \
120 1.56 itojun &(table)->inpt_bindhashtbl[ \
121 1.56 itojun ((((faddr)->s6_addr32[0] ^ (faddr)->s6_addr32[1] ^ \
122 1.56 itojun (faddr)->s6_addr32[2] ^ (faddr)->s6_addr32[3]) + ntohs(fport)) + \
123 1.56 itojun (((laddr)->s6_addr32[0] ^ (laddr)->s6_addr32[1] ^ \
124 1.56 itojun (laddr)->s6_addr32[2] ^ (laddr)->s6_addr32[3]) + \
125 1.56 itojun ntohs(lport))) & (table)->inpt_bindhash]
126 1.56 itojun
127 1.30 itojun int ip6_anonportmin = IPV6PORT_ANONMIN;
128 1.30 itojun int ip6_anonportmax = IPV6PORT_ANONMAX;
129 1.30 itojun int ip6_lowportmin = IPV6PORT_RESERVEDMIN;
130 1.30 itojun int ip6_lowportmax = IPV6PORT_RESERVEDMAX;
131 1.2 itojun
132 1.110 pooka static struct pool in6pcb_pool;
133 1.110 pooka
134 1.110 pooka static int
135 1.110 pooka in6pcb_poolinit(void)
136 1.110 pooka {
137 1.110 pooka
138 1.110 pooka pool_init(&in6pcb_pool, sizeof(struct in6pcb), 0, 0, 0, "in6pcbpl",
139 1.110 pooka NULL, IPL_SOFTNET);
140 1.110 pooka return 0;
141 1.110 pooka }
142 1.56 itojun
143 1.56 itojun void
144 1.87 christos in6_pcbinit(struct inpcbtable *table, int bindhashsize, int connecthashsize)
145 1.56 itojun {
146 1.110 pooka static ONCE_DECL(control);
147 1.56 itojun
148 1.56 itojun in_pcbinit(table, bindhashsize, connecthashsize);
149 1.56 itojun table->inpt_lastport = (u_int16_t)ip6_anonportmax;
150 1.110 pooka
151 1.110 pooka RUN_ONCE(&control, in6pcb_poolinit);
152 1.56 itojun }
153 1.56 itojun
154 1.2 itojun int
155 1.87 christos in6_pcballoc(struct socket *so, void *v)
156 1.2 itojun {
157 1.56 itojun struct inpcbtable *table = v;
158 1.2 itojun struct in6pcb *in6p;
159 1.46 itojun int s;
160 1.2 itojun
161 1.160 ozaki KASSERT(so->so_proto->pr_domain->dom_family == AF_INET6);
162 1.160 ozaki
163 1.56 itojun in6p = pool_get(&in6pcb_pool, PR_NOWAIT);
164 1.2 itojun if (in6p == NULL)
165 1.52 itojun return (ENOBUFS);
166 1.100 cegger memset((void *)in6p, 0, sizeof(*in6p));
167 1.56 itojun in6p->in6p_af = AF_INET6;
168 1.56 itojun in6p->in6p_table = table;
169 1.2 itojun in6p->in6p_socket = so;
170 1.2 itojun in6p->in6p_hops = -1; /* use kernel default */
171 1.2 itojun in6p->in6p_icmp6filt = NULL;
172 1.120 christos in6p->in6p_portalgo = PORTALGO_DEFAULT;
173 1.116 christos in6p->in6p_bindportonsend = false;
174 1.123 christos #if defined(IPSEC)
175 1.125 christos if (ipsec_enabled) {
176 1.125 christos int error = ipsec_init_pcbpolicy(so, &in6p->in6p_sp);
177 1.125 christos if (error != 0) {
178 1.125 christos pool_put(&in6pcb_pool, in6p);
179 1.125 christos return error;
180 1.125 christos }
181 1.161 ozaki in6p->in6p_sp->sp_inph = (struct inpcb_hdr *)in6p;
182 1.39 itojun }
183 1.43 itojun #endif /* IPSEC */
184 1.157 ozaki s = splsoftnet();
185 1.124 christos TAILQ_INSERT_HEAD(&table->inpt_queue, (struct inpcb_hdr*)in6p,
186 1.56 itojun inph_queue);
187 1.60 itojun LIST_INSERT_HEAD(IN6PCBHASH_PORT(table, in6p->in6p_lport),
188 1.60 itojun &in6p->in6p_head, inph_lhash);
189 1.56 itojun in6_pcbstate(in6p, IN6P_ATTACHED);
190 1.46 itojun splx(s);
191 1.41 itojun if (ip6_v6only)
192 1.41 itojun in6p->in6p_flags |= IN6P_IPV6_V6ONLY;
193 1.84 christos so->so_pcb = (void *)in6p;
194 1.52 itojun return (0);
195 1.2 itojun }
196 1.2 itojun
197 1.104 elad /*
198 1.104 elad * Bind address from sin6 to in6p.
199 1.104 elad */
200 1.107 elad static int
201 1.104 elad in6_pcbbind_addr(struct in6pcb *in6p, struct sockaddr_in6 *sin6, struct lwp *l)
202 1.2 itojun {
203 1.104 elad int error;
204 1.148 ozaki int s;
205 1.104 elad
206 1.104 elad /*
207 1.104 elad * We should check the family, but old programs
208 1.164 dholland * incorrectly fail to initialize it.
209 1.104 elad */
210 1.104 elad if (sin6->sin6_family != AF_INET6)
211 1.104 elad return (EAFNOSUPPORT);
212 1.2 itojun
213 1.104 elad #ifndef INET
214 1.104 elad if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr))
215 1.104 elad return (EADDRNOTAVAIL);
216 1.104 elad #endif
217 1.56 itojun
218 1.104 elad if ((error = sa6_embedscope(sin6, ip6_use_defzone)) != 0)
219 1.104 elad return (error);
220 1.69 rpaulo
221 1.148 ozaki s = pserialize_read_enter();
222 1.104 elad if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
223 1.148 ozaki if ((in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0) {
224 1.148 ozaki error = EINVAL;
225 1.148 ozaki goto out;
226 1.148 ozaki }
227 1.104 elad if (sin6->sin6_addr.s6_addr32[3]) {
228 1.104 elad struct sockaddr_in sin;
229 1.104 elad
230 1.104 elad memset(&sin, 0, sizeof(sin));
231 1.104 elad sin.sin_len = sizeof(sin);
232 1.104 elad sin.sin_family = AF_INET;
233 1.104 elad bcopy(&sin6->sin6_addr.s6_addr32[3],
234 1.104 elad &sin.sin_addr, sizeof(sin.sin_addr));
235 1.148 ozaki if (!IN_MULTICAST(sin.sin_addr.s_addr)) {
236 1.148 ozaki struct ifaddr *ifa;
237 1.148 ozaki ifa = ifa_ifwithaddr((struct sockaddr *)&sin);
238 1.148 ozaki if (ifa == NULL) {
239 1.148 ozaki error = EADDRNOTAVAIL;
240 1.148 ozaki goto out;
241 1.148 ozaki }
242 1.148 ozaki }
243 1.104 elad }
244 1.131 christos } else if (IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr)) {
245 1.131 christos // succeed
246 1.104 elad } else if (!IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
247 1.148 ozaki struct ifaddr *ifa = NULL;
248 1.104 elad
249 1.148 ozaki if ((in6p->in6p_flags & IN6P_FAITH) == 0) {
250 1.148 ozaki ifa = ifa_ifwithaddr(sin6tosa(sin6));
251 1.148 ozaki if (ifa == NULL) {
252 1.148 ozaki error = EADDRNOTAVAIL;
253 1.148 ozaki goto out;
254 1.148 ozaki }
255 1.148 ozaki }
256 1.104 elad
257 1.2 itojun /*
258 1.104 elad * bind to an anycast address might accidentally
259 1.104 elad * cause sending a packet with an anycast source
260 1.104 elad * address, so we forbid it.
261 1.104 elad *
262 1.104 elad * We should allow to bind to a deprecated address,
263 1.104 elad * since the application dare to use it.
264 1.104 elad * But, can we assume that they are careful enough
265 1.104 elad * to check if the address is deprecated or not?
266 1.104 elad * Maybe, as a safeguard, we should have a setsockopt
267 1.104 elad * flag to control the bind(2) behavior against
268 1.104 elad * deprecated addresses (default: forbid bind(2)).
269 1.2 itojun */
270 1.148 ozaki if (ifa &&
271 1.148 ozaki ifatoia6(ifa)->ia6_flags &
272 1.150 roy (IN6_IFF_ANYCAST | IN6_IFF_DUPLICATED)) {
273 1.148 ozaki error = EADDRNOTAVAIL;
274 1.148 ozaki goto out;
275 1.148 ozaki }
276 1.104 elad }
277 1.104 elad in6p->in6p_laddr = sin6->sin6_addr;
278 1.148 ozaki error = 0;
279 1.148 ozaki out:
280 1.148 ozaki pserialize_read_exit(s);
281 1.148 ozaki return error;
282 1.104 elad }
283 1.2 itojun
284 1.104 elad /*
285 1.104 elad * Bind port from sin6 to in6p.
286 1.104 elad */
287 1.107 elad static int
288 1.104 elad in6_pcbbind_port(struct in6pcb *in6p, struct sockaddr_in6 *sin6, struct lwp *l)
289 1.104 elad {
290 1.104 elad struct inpcbtable *table = in6p->in6p_table;
291 1.104 elad struct socket *so = in6p->in6p_socket;
292 1.104 elad int wild = 0, reuseport = (so->so_options & SO_REUSEPORT);
293 1.105 elad int error;
294 1.2 itojun
295 1.104 elad if ((so->so_options & (SO_REUSEADDR|SO_REUSEPORT)) == 0 &&
296 1.104 elad ((so->so_proto->pr_flags & PR_CONNREQUIRED) == 0 ||
297 1.104 elad (so->so_options & SO_ACCEPTCONN) == 0))
298 1.104 elad wild = 1;
299 1.2 itojun
300 1.105 elad if (sin6->sin6_port != 0) {
301 1.105 elad enum kauth_network_req req;
302 1.105 elad
303 1.13 itojun #ifndef IPNOPRIVPORTS
304 1.105 elad if (ntohs(sin6->sin6_port) < IPV6PORT_RESERVED)
305 1.105 elad req = KAUTH_REQ_NETWORK_BIND_PRIVPORT;
306 1.105 elad else
307 1.105 elad #endif /* IPNOPRIVPORTS */
308 1.105 elad req = KAUTH_REQ_NETWORK_BIND_PORT;
309 1.105 elad
310 1.105 elad error = kauth_authorize_network(l->l_cred, KAUTH_NETWORK_BIND,
311 1.105 elad req, so, sin6, NULL);
312 1.105 elad if (error)
313 1.109 elad return (EACCES);
314 1.105 elad }
315 1.2 itojun
316 1.104 elad if (IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr)) {
317 1.104 elad /*
318 1.104 elad * Treat SO_REUSEADDR as SO_REUSEPORT for multicast;
319 1.104 elad * allow compepte duplication of binding if
320 1.104 elad * SO_REUSEPORT is set, or if SO_REUSEADDR is set
321 1.104 elad * and a multicast address is bound on both
322 1.104 elad * new and duplicated sockets.
323 1.104 elad */
324 1.134 seanb if (so->so_options & (SO_REUSEADDR | SO_REUSEPORT))
325 1.104 elad reuseport = SO_REUSEADDR|SO_REUSEPORT;
326 1.104 elad }
327 1.104 elad
328 1.106 elad if (sin6->sin6_port != 0) {
329 1.106 elad if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
330 1.56 itojun #ifdef INET
331 1.106 elad struct inpcb *t;
332 1.113 dyoung struct vestigial_inpcb vestige;
333 1.2 itojun
334 1.106 elad t = in_pcblookup_port(table,
335 1.106 elad *(struct in_addr *)&sin6->sin6_addr.s6_addr32[3],
336 1.113 dyoung sin6->sin6_port, wild, &vestige);
337 1.106 elad if (t && (reuseport & t->inp_socket->so_options) == 0)
338 1.106 elad return (EADDRINUSE);
339 1.113 dyoung if (!t
340 1.113 dyoung && vestige.valid
341 1.113 dyoung && !(reuseport && vestige.reuse_port))
342 1.113 dyoung return EADDRINUSE;
343 1.56 itojun #else
344 1.106 elad return (EADDRNOTAVAIL);
345 1.2 itojun #endif
346 1.106 elad }
347 1.56 itojun
348 1.106 elad {
349 1.106 elad struct in6pcb *t;
350 1.113 dyoung struct vestigial_inpcb vestige;
351 1.2 itojun
352 1.106 elad t = in6_pcblookup_port(table, &sin6->sin6_addr,
353 1.113 dyoung sin6->sin6_port, wild, &vestige);
354 1.106 elad if (t && (reuseport & t->in6p_socket->so_options) == 0)
355 1.106 elad return (EADDRINUSE);
356 1.113 dyoung if (!t
357 1.113 dyoung && vestige.valid
358 1.113 dyoung && !(reuseport && vestige.reuse_port))
359 1.113 dyoung return EADDRINUSE;
360 1.106 elad }
361 1.2 itojun }
362 1.10 itojun
363 1.104 elad if (sin6->sin6_port == 0) {
364 1.10 itojun int e;
365 1.107 elad e = in6_pcbsetport(sin6, in6p, l);
366 1.56 itojun if (e != 0)
367 1.52 itojun return (e);
368 1.56 itojun } else {
369 1.104 elad in6p->in6p_lport = sin6->sin6_port;
370 1.56 itojun in6_pcbstate(in6p, IN6P_BOUND);
371 1.10 itojun }
372 1.10 itojun
373 1.60 itojun LIST_REMOVE(&in6p->in6p_head, inph_lhash);
374 1.60 itojun LIST_INSERT_HEAD(IN6PCBHASH_PORT(table, in6p->in6p_lport),
375 1.60 itojun &in6p->in6p_head, inph_lhash);
376 1.60 itojun
377 1.104 elad return (0);
378 1.104 elad }
379 1.104 elad
380 1.104 elad int
381 1.135 rtr in6_pcbbind(void *v, struct sockaddr_in6 *sin6, struct lwp *l)
382 1.104 elad {
383 1.104 elad struct in6pcb *in6p = v;
384 1.108 elad struct sockaddr_in6 lsin6;
385 1.104 elad int error;
386 1.104 elad
387 1.104 elad if (in6p->in6p_af != AF_INET6)
388 1.104 elad return (EINVAL);
389 1.104 elad
390 1.104 elad /*
391 1.104 elad * If we already have a local port or a local address it means we're
392 1.104 elad * bounded.
393 1.104 elad */
394 1.111 joerg if (in6p->in6p_lport || !(IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr) ||
395 1.111 joerg (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_laddr) &&
396 1.112 joerg in6p->in6p_laddr.s6_addr32[3] == 0)))
397 1.104 elad return (EINVAL);
398 1.104 elad
399 1.135 rtr if (NULL != sin6) {
400 1.104 elad /* We were provided a sockaddr_in6 to use. */
401 1.135 rtr if (sin6->sin6_len != sizeof(*sin6))
402 1.104 elad return (EINVAL);
403 1.104 elad } else {
404 1.104 elad /* We always bind to *something*, even if it's "anything". */
405 1.108 elad lsin6 = *((const struct sockaddr_in6 *)
406 1.108 elad in6p->in6p_socket->so_proto->pr_domain->dom_sa_any);
407 1.108 elad sin6 = &lsin6;
408 1.104 elad }
409 1.104 elad
410 1.104 elad /* Bind address. */
411 1.128 rtr error = in6_pcbbind_addr(in6p, sin6, l);
412 1.104 elad if (error)
413 1.104 elad return (error);
414 1.104 elad
415 1.104 elad /* Bind port. */
416 1.128 rtr error = in6_pcbbind_port(in6p, sin6, l);
417 1.104 elad if (error) {
418 1.104 elad /*
419 1.104 elad * Reset the address here to "any" so we don't "leak" the
420 1.104 elad * in6pcb.
421 1.104 elad */
422 1.104 elad in6p->in6p_laddr = in6addr_any;
423 1.104 elad
424 1.104 elad return (error);
425 1.104 elad }
426 1.104 elad
427 1.104 elad
428 1.57 itojun #if 0
429 1.57 itojun in6p->in6p_flowinfo = 0; /* XXX */
430 1.57 itojun #endif
431 1.52 itojun return (0);
432 1.10 itojun }
433 1.10 itojun
434 1.10 itojun /*
435 1.2 itojun * Connect from a socket to a specified address.
436 1.2 itojun * Both address and port must be specified in argument sin6.
437 1.2 itojun * If don't have a local address for this socket yet,
438 1.2 itojun * then pick one.
439 1.2 itojun */
440 1.2 itojun int
441 1.140 rtr in6_pcbconnect(void *v, struct sockaddr_in6 *sin6, struct lwp *l)
442 1.2 itojun {
443 1.56 itojun struct in6pcb *in6p = v;
444 1.2 itojun struct in6_addr *in6a = NULL;
445 1.151 ozaki struct in6_addr ia6;
446 1.2 itojun struct ifnet *ifp = NULL; /* outgoing interface */
447 1.2 itojun int error = 0;
448 1.69 rpaulo int scope_ambiguous = 0;
449 1.31 itojun #ifdef INET
450 1.2 itojun struct in6_addr mapped;
451 1.31 itojun #endif
452 1.26 itojun struct sockaddr_in6 tmp;
453 1.113 dyoung struct vestigial_inpcb vestige;
454 1.145 ozaki struct psref psref;
455 1.145 ozaki int bound;
456 1.2 itojun
457 1.2 itojun (void)&in6a; /* XXX fool gcc */
458 1.2 itojun
459 1.56 itojun if (in6p->in6p_af != AF_INET6)
460 1.56 itojun return (EINVAL);
461 1.56 itojun
462 1.137 rtr if (sin6->sin6_len != sizeof(*sin6))
463 1.137 rtr return (EINVAL);
464 1.2 itojun if (sin6->sin6_family != AF_INET6)
465 1.52 itojun return (EAFNOSUPPORT);
466 1.2 itojun if (sin6->sin6_port == 0)
467 1.52 itojun return (EADDRNOTAVAIL);
468 1.2 itojun
469 1.122 christos if (IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr) &&
470 1.122 christos in6p->in6p_socket->so_type == SOCK_STREAM)
471 1.122 christos return EADDRNOTAVAIL;
472 1.122 christos
473 1.69 rpaulo if (sin6->sin6_scope_id == 0 && !ip6_use_defzone)
474 1.69 rpaulo scope_ambiguous = 1;
475 1.69 rpaulo if ((error = sa6_embedscope(sin6, ip6_use_defzone)) != 0)
476 1.69 rpaulo return(error);
477 1.69 rpaulo
478 1.2 itojun /* sanity check for mapped address case */
479 1.2 itojun if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
480 1.41 itojun if ((in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0)
481 1.41 itojun return EINVAL;
482 1.2 itojun if (IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr))
483 1.2 itojun in6p->in6p_laddr.s6_addr16[5] = htons(0xffff);
484 1.2 itojun if (!IN6_IS_ADDR_V4MAPPED(&in6p->in6p_laddr))
485 1.2 itojun return EINVAL;
486 1.41 itojun } else
487 1.41 itojun {
488 1.2 itojun if (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_laddr))
489 1.2 itojun return EINVAL;
490 1.2 itojun }
491 1.26 itojun
492 1.26 itojun /* protect *sin6 from overwrites */
493 1.26 itojun tmp = *sin6;
494 1.26 itojun sin6 = &tmp;
495 1.2 itojun
496 1.145 ozaki bound = curlwp_bind();
497 1.2 itojun /* Source address selection. */
498 1.56 itojun if (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_laddr) &&
499 1.56 itojun in6p->in6p_laddr.s6_addr32[3] == 0) {
500 1.31 itojun #ifdef INET
501 1.148 ozaki struct sockaddr_in sin;
502 1.148 ozaki struct in_ifaddr *ia4;
503 1.148 ozaki struct psref _psref;
504 1.2 itojun
505 1.100 cegger memset(&sin, 0, sizeof(sin));
506 1.2 itojun sin.sin_len = sizeof(sin);
507 1.2 itojun sin.sin_family = AF_INET;
508 1.103 tsutsui memcpy(&sin.sin_addr, &sin6->sin6_addr.s6_addr32[3],
509 1.2 itojun sizeof(sin.sin_addr));
510 1.148 ozaki ia4 = in_selectsrc(&sin, &in6p->in6p_route,
511 1.148 ozaki in6p->in6p_socket->so_options, NULL, &error, &_psref);
512 1.148 ozaki if (ia4 == NULL) {
513 1.2 itojun if (error == 0)
514 1.2 itojun error = EADDRNOTAVAIL;
515 1.163 ozaki curlwp_bindx(bound);
516 1.52 itojun return (error);
517 1.2 itojun }
518 1.100 cegger memset(&mapped, 0, sizeof(mapped));
519 1.2 itojun mapped.s6_addr16[5] = htons(0xffff);
520 1.148 ozaki memcpy(&mapped.s6_addr32[3], &IA_SIN(ia4)->sin_addr,
521 1.148 ozaki sizeof(IA_SIN(ia4)->sin_addr));
522 1.148 ozaki ia4_release(ia4, &_psref);
523 1.2 itojun in6a = &mapped;
524 1.31 itojun #else
525 1.163 ozaki curlwp_bindx(bound);
526 1.31 itojun return EADDRNOTAVAIL;
527 1.31 itojun #endif
528 1.69 rpaulo } else {
529 1.10 itojun /*
530 1.10 itojun * XXX: in6_selectsrc might replace the bound local address
531 1.10 itojun * with the address specified by setsockopt(IPV6_PKTINFO).
532 1.10 itojun * Is it the intended behavior?
533 1.10 itojun */
534 1.151 ozaki error = in6_selectsrc(sin6, in6p->in6p_outputopts,
535 1.151 ozaki in6p->in6p_moptions, &in6p->in6p_route, &in6p->in6p_laddr,
536 1.151 ozaki &ifp, &psref, &ia6);
537 1.152 christos if (error == 0)
538 1.152 christos in6a = &ia6;
539 1.69 rpaulo if (ifp && scope_ambiguous &&
540 1.69 rpaulo (error = in6_setscope(&sin6->sin6_addr, ifp, NULL)) != 0) {
541 1.145 ozaki if_put(ifp, &psref);
542 1.145 ozaki curlwp_bindx(bound);
543 1.152 christos return error;
544 1.69 rpaulo }
545 1.69 rpaulo
546 1.152 christos if (in6a == NULL) {
547 1.145 ozaki if_put(ifp, &psref);
548 1.145 ozaki curlwp_bindx(bound);
549 1.2 itojun if (error == 0)
550 1.2 itojun error = EADDRNOTAVAIL;
551 1.152 christos return error;
552 1.2 itojun }
553 1.2 itojun }
554 1.2 itojun
555 1.145 ozaki if (ifp != NULL) {
556 1.138 ozaki in6p->in6p_ip6.ip6_hlim = (u_int8_t)in6_selecthlim(in6p, ifp);
557 1.145 ozaki if_put(ifp, &psref);
558 1.145 ozaki } else
559 1.138 ozaki in6p->in6p_ip6.ip6_hlim = (u_int8_t)in6_selecthlim_rt(in6p);
560 1.145 ozaki curlwp_bindx(bound);
561 1.2 itojun
562 1.56 itojun if (in6_pcblookup_connect(in6p->in6p_table, &sin6->sin6_addr,
563 1.56 itojun sin6->sin6_port,
564 1.56 itojun IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr) ? in6a : &in6p->in6p_laddr,
565 1.113 dyoung in6p->in6p_lport, 0, &vestige)
566 1.113 dyoung || vestige.valid)
567 1.52 itojun return (EADDRINUSE);
568 1.56 itojun if (IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr) ||
569 1.56 itojun (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_laddr) &&
570 1.56 itojun in6p->in6p_laddr.s6_addr32[3] == 0))
571 1.41 itojun {
572 1.29 itojun if (in6p->in6p_lport == 0) {
573 1.128 rtr error = in6_pcbbind(in6p, NULL, l);
574 1.68 dsl if (error != 0)
575 1.68 dsl return error;
576 1.29 itojun }
577 1.2 itojun in6p->in6p_laddr = *in6a;
578 1.2 itojun }
579 1.2 itojun in6p->in6p_faddr = sin6->sin6_addr;
580 1.2 itojun in6p->in6p_fport = sin6->sin6_port;
581 1.116 christos
582 1.116 christos /* Late bind, if needed */
583 1.116 christos if (in6p->in6p_bindportonsend) {
584 1.116 christos struct sockaddr_in6 lsin = *((const struct sockaddr_in6 *)
585 1.116 christos in6p->in6p_socket->so_proto->pr_domain->dom_sa_any);
586 1.116 christos lsin.sin6_addr = in6p->in6p_laddr;
587 1.116 christos lsin.sin6_port = 0;
588 1.116 christos
589 1.116 christos if ((error = in6_pcbbind_port(in6p, &lsin, l)) != 0)
590 1.116 christos return error;
591 1.116 christos }
592 1.116 christos
593 1.56 itojun in6_pcbstate(in6p, IN6P_CONNECTED);
594 1.57 itojun in6p->in6p_flowinfo &= ~IPV6_FLOWLABEL_MASK;
595 1.57 itojun if (ip6_auto_flowlabel)
596 1.57 itojun in6p->in6p_flowinfo |=
597 1.58 itojun (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
598 1.123 christos #if defined(IPSEC)
599 1.125 christos if (ipsec_enabled && in6p->in6p_socket->so_type == SOCK_STREAM)
600 1.40 itojun ipsec_pcbconn(in6p->in6p_sp);
601 1.40 itojun #endif
602 1.52 itojun return (0);
603 1.2 itojun }
604 1.2 itojun
605 1.2 itojun void
606 1.87 christos in6_pcbdisconnect(struct in6pcb *in6p)
607 1.2 itojun {
608 1.100 cegger memset((void *)&in6p->in6p_faddr, 0, sizeof(in6p->in6p_faddr));
609 1.2 itojun in6p->in6p_fport = 0;
610 1.56 itojun in6_pcbstate(in6p, IN6P_BOUND);
611 1.57 itojun in6p->in6p_flowinfo &= ~IPV6_FLOWLABEL_MASK;
612 1.123 christos #if defined(IPSEC)
613 1.125 christos if (ipsec_enabled)
614 1.125 christos ipsec_pcbdisconn(in6p->in6p_sp);
615 1.40 itojun #endif
616 1.61 itojun if (in6p->in6p_socket->so_state & SS_NOFDREF)
617 1.61 itojun in6_pcbdetach(in6p);
618 1.2 itojun }
619 1.2 itojun
620 1.2 itojun void
621 1.87 christos in6_pcbdetach(struct in6pcb *in6p)
622 1.2 itojun {
623 1.2 itojun struct socket *so = in6p->in6p_socket;
624 1.46 itojun int s;
625 1.2 itojun
626 1.56 itojun if (in6p->in6p_af != AF_INET6)
627 1.56 itojun return;
628 1.56 itojun
629 1.123 christos #if defined(IPSEC)
630 1.125 christos if (ipsec_enabled)
631 1.125 christos ipsec6_delete_pcbpolicy(in6p);
632 1.127 rmind #endif
633 1.127 rmind so->so_pcb = NULL;
634 1.127 rmind
635 1.157 ozaki s = splsoftnet();
636 1.127 rmind in6_pcbstate(in6p, IN6P_ATTACHED);
637 1.127 rmind LIST_REMOVE(&in6p->in6p_head, inph_lhash);
638 1.127 rmind TAILQ_REMOVE(&in6p->in6p_table->inpt_queue, &in6p->in6p_head,
639 1.127 rmind inph_queue);
640 1.127 rmind splx(s);
641 1.127 rmind
642 1.127 rmind if (in6p->in6p_options) {
643 1.2 itojun m_freem(in6p->in6p_options);
644 1.127 rmind }
645 1.96 dyoung if (in6p->in6p_outputopts != NULL) {
646 1.96 dyoung ip6_clearpktopts(in6p->in6p_outputopts, -1);
647 1.2 itojun free(in6p->in6p_outputopts, M_IP6OPT);
648 1.2 itojun }
649 1.86 dyoung rtcache_free(&in6p->in6p_route);
650 1.129 rmind ip6_freemoptions(in6p->in6p_moptions);
651 1.130 christos ip_freemoptions(in6p->in6p_v4moptions);
652 1.127 rmind sofree(so); /* drops the socket's lock */
653 1.127 rmind
654 1.73 tls pool_put(&in6pcb_pool, in6p);
655 1.98 matt mutex_enter(softnet_lock); /* reacquire it */
656 1.2 itojun }
657 1.2 itojun
658 1.2 itojun void
659 1.136 rtr in6_setsockaddr(struct in6pcb *in6p, struct sockaddr_in6 *sin6)
660 1.2 itojun {
661 1.2 itojun
662 1.56 itojun if (in6p->in6p_af != AF_INET6)
663 1.56 itojun return;
664 1.56 itojun
665 1.89 dyoung sockaddr_in6_init(sin6, &in6p->in6p_laddr, in6p->in6p_lport, 0, 0);
666 1.69 rpaulo (void)sa6_recoverscope(sin6); /* XXX: should catch errors */
667 1.2 itojun }
668 1.2 itojun
669 1.2 itojun void
670 1.136 rtr in6_setpeeraddr(struct in6pcb *in6p, struct sockaddr_in6 *sin6)
671 1.2 itojun {
672 1.2 itojun
673 1.56 itojun if (in6p->in6p_af != AF_INET6)
674 1.56 itojun return;
675 1.56 itojun
676 1.89 dyoung sockaddr_in6_init(sin6, &in6p->in6p_faddr, in6p->in6p_fport, 0, 0);
677 1.69 rpaulo (void)sa6_recoverscope(sin6); /* XXX: should catch errors */
678 1.2 itojun }
679 1.2 itojun
680 1.2 itojun /*
681 1.2 itojun * Pass some notification to all connections of a protocol
682 1.2 itojun * associated with address dst. The local address and/or port numbers
683 1.2 itojun * may be specified to limit the search. The "usual action" will be
684 1.2 itojun * taken, depending on the ctlinput cmd. The caller must filter any
685 1.2 itojun * cmds that are uninteresting (e.g., no error in the map).
686 1.2 itojun * Call the protocol specific routine (if any) to report
687 1.2 itojun * any errors for each matching socket.
688 1.2 itojun *
689 1.6 itojun * Must be called at splsoftnet.
690 1.35 itojun *
691 1.35 itojun * Note: src (4th arg) carries the flowlabel value on the original IPv6
692 1.35 itojun * header, in sin6_flowinfo member.
693 1.2 itojun */
694 1.2 itojun int
695 1.83 dyoung in6_pcbnotify(struct inpcbtable *table, const struct sockaddr *dst,
696 1.83 dyoung u_int fport_arg, const struct sockaddr *src, u_int lport_arg, int cmd,
697 1.83 dyoung void *cmdarg, void (*notify)(struct in6pcb *, int))
698 1.2 itojun {
699 1.124 christos struct inpcb_hdr *inph, *ninph;
700 1.83 dyoung struct sockaddr_in6 sa6_src;
701 1.83 dyoung const struct sockaddr_in6 *sa6_dst;
702 1.18 itojun u_int16_t fport = fport_arg, lport = lport_arg;
703 1.2 itojun int errno;
704 1.2 itojun int nmatch = 0;
705 1.35 itojun u_int32_t flowinfo;
706 1.2 itojun
707 1.59 christos if ((unsigned)cmd >= PRC_NCMDS || dst->sa_family != AF_INET6)
708 1.2 itojun return 0;
709 1.35 itojun
710 1.83 dyoung sa6_dst = (const struct sockaddr_in6 *)dst;
711 1.35 itojun if (IN6_IS_ADDR_UNSPECIFIED(&sa6_dst->sin6_addr))
712 1.2 itojun return 0;
713 1.2 itojun
714 1.2 itojun /*
715 1.35 itojun * note that src can be NULL when we get notify by local fragmentation.
716 1.35 itojun */
717 1.67 christos sa6_src = (src == NULL) ? sa6_any : *(const struct sockaddr_in6 *)src;
718 1.35 itojun flowinfo = sa6_src.sin6_flowinfo;
719 1.35 itojun
720 1.35 itojun /*
721 1.2 itojun * Redirects go to all references to the destination,
722 1.20 itojun * and use in6_rtchange to invalidate the route cache.
723 1.20 itojun * Dead host indications: also use in6_rtchange to invalidate
724 1.20 itojun * the cache, and deliver the error to all the sockets.
725 1.2 itojun * Otherwise, if we have knowledge of the local port and address,
726 1.2 itojun * deliver only to that socket.
727 1.2 itojun */
728 1.2 itojun if (PRC_IS_REDIRECT(cmd) || cmd == PRC_HOSTDEAD) {
729 1.2 itojun fport = 0;
730 1.2 itojun lport = 0;
731 1.100 cegger memset((void *)&sa6_src.sin6_addr, 0, sizeof(sa6_src.sin6_addr));
732 1.20 itojun
733 1.35 itojun if (cmd != PRC_HOSTDEAD)
734 1.35 itojun notify = in6_rtchange;
735 1.2 itojun }
736 1.20 itojun
737 1.2 itojun errno = inet6ctlerrmap[cmd];
738 1.124 christos TAILQ_FOREACH_SAFE(inph, &table->inpt_queue, inph_queue, ninph) {
739 1.124 christos struct in6pcb *in6p = (struct in6pcb *)inph;
740 1.153 ozaki struct rtentry *rt = NULL;
741 1.153 ozaki
742 1.56 itojun if (in6p->in6p_af != AF_INET6)
743 1.56 itojun continue;
744 1.20 itojun
745 1.35 itojun /*
746 1.35 itojun * Under the following condition, notify of redirects
747 1.35 itojun * to the pcb, without making address matches against inpcb.
748 1.35 itojun * - redirect notification is arrived.
749 1.35 itojun * - the inpcb is unconnected.
750 1.35 itojun * - the inpcb is caching !RTF_HOST routing entry.
751 1.35 itojun * - the ICMPv6 notification is from the gateway cached in the
752 1.35 itojun * inpcb. i.e. ICMPv6 notification is from nexthop gateway
753 1.35 itojun * the inpcb used very recently.
754 1.35 itojun *
755 1.35 itojun * This is to improve interaction between netbsd/openbsd
756 1.35 itojun * redirect handling code, and inpcb route cache code.
757 1.35 itojun * without the clause, !RTF_HOST routing entry (which carries
758 1.35 itojun * gateway used by inpcb right before the ICMPv6 redirect)
759 1.35 itojun * will be cached forever in unconnected inpcb.
760 1.35 itojun *
761 1.35 itojun * There still is a question regarding to what is TRT:
762 1.35 itojun * - On bsdi/freebsd, RTF_HOST (cloned) routing entry will be
763 1.35 itojun * generated on packet output. inpcb will always cache
764 1.35 itojun * RTF_HOST routing entry so there's no need for the clause
765 1.35 itojun * (ICMPv6 redirect will update RTF_HOST routing entry,
766 1.35 itojun * and inpcb is caching it already).
767 1.35 itojun * However, bsdi/freebsd are vulnerable to local DoS attacks
768 1.35 itojun * due to the cloned routing entries.
769 1.35 itojun * - Specwise, "destination cache" is mentioned in RFC2461.
770 1.35 itojun * Jinmei says that it implies bsdi/freebsd behavior, itojun
771 1.35 itojun * is not really convinced.
772 1.35 itojun * - Having hiwat/lowat on # of cloned host route (redirect/
773 1.35 itojun * pmtud) may be a good idea. netbsd/openbsd has it. see
774 1.35 itojun * icmp6_mtudisc_update().
775 1.35 itojun */
776 1.35 itojun if ((PRC_IS_REDIRECT(cmd) || cmd == PRC_HOSTDEAD) &&
777 1.35 itojun IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr) &&
778 1.94 dyoung (rt = rtcache_validate(&in6p->in6p_route)) != NULL &&
779 1.91 dyoung !(rt->rt_flags & RTF_HOST)) {
780 1.83 dyoung const struct sockaddr_in6 *dst6;
781 1.35 itojun
782 1.83 dyoung dst6 = (const struct sockaddr_in6 *)
783 1.86 dyoung rtcache_getdst(&in6p->in6p_route);
784 1.86 dyoung if (dst6 == NULL)
785 1.86 dyoung ;
786 1.86 dyoung else if (IN6_ARE_ADDR_EQUAL(&dst6->sin6_addr,
787 1.153 ozaki &sa6_dst->sin6_addr)) {
788 1.153 ozaki rtcache_unref(rt, &in6p->in6p_route);
789 1.35 itojun goto do_notify;
790 1.153 ozaki }
791 1.20 itojun }
792 1.153 ozaki rtcache_unref(rt, &in6p->in6p_route);
793 1.20 itojun
794 1.35 itojun /*
795 1.70 rpaulo * If the error designates a new path MTU for a destination
796 1.70 rpaulo * and the application (associated with this socket) wanted to
797 1.70 rpaulo * know the value, notify. Note that we notify for all
798 1.70 rpaulo * disconnected sockets if the corresponding application
799 1.70 rpaulo * wanted. This is because some UDP applications keep sending
800 1.70 rpaulo * sockets disconnected.
801 1.70 rpaulo * XXX: should we avoid to notify the value to TCP sockets?
802 1.70 rpaulo */
803 1.70 rpaulo if (cmd == PRC_MSGSIZE && (in6p->in6p_flags & IN6P_MTU) != 0 &&
804 1.70 rpaulo (IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr) ||
805 1.70 rpaulo IN6_ARE_ADDR_EQUAL(&in6p->in6p_faddr, &sa6_dst->sin6_addr))) {
806 1.83 dyoung ip6_notify_pmtu(in6p, (const struct sockaddr_in6 *)dst,
807 1.70 rpaulo (u_int32_t *)cmdarg);
808 1.70 rpaulo }
809 1.70 rpaulo
810 1.70 rpaulo /*
811 1.35 itojun * Detect if we should notify the error. If no source and
812 1.42 itojun * destination ports are specified, but non-zero flowinfo and
813 1.35 itojun * local address match, notify the error. This is the case
814 1.35 itojun * when the error is delivered with an encrypted buffer
815 1.35 itojun * by ESP. Otherwise, just compare addresses and ports
816 1.35 itojun * as usual.
817 1.35 itojun */
818 1.35 itojun if (lport == 0 && fport == 0 && flowinfo &&
819 1.35 itojun in6p->in6p_socket != NULL &&
820 1.35 itojun flowinfo == (in6p->in6p_flowinfo & IPV6_FLOWLABEL_MASK) &&
821 1.35 itojun IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr, &sa6_src.sin6_addr))
822 1.35 itojun goto do_notify;
823 1.35 itojun else if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_faddr,
824 1.35 itojun &sa6_dst->sin6_addr) ||
825 1.141 ozaki in6p->in6p_socket == NULL ||
826 1.20 itojun (lport && in6p->in6p_lport != lport) ||
827 1.35 itojun (!IN6_IS_ADDR_UNSPECIFIED(&sa6_src.sin6_addr) &&
828 1.35 itojun !IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr,
829 1.35 itojun &sa6_src.sin6_addr)) ||
830 1.20 itojun (fport && in6p->in6p_fport != fport))
831 1.2 itojun continue;
832 1.20 itojun
833 1.35 itojun do_notify:
834 1.35 itojun if (notify)
835 1.35 itojun (*notify)(in6p, errno);
836 1.2 itojun nmatch++;
837 1.2 itojun }
838 1.2 itojun return nmatch;
839 1.16 thorpej }
840 1.16 thorpej
841 1.16 thorpej void
842 1.87 christos in6_pcbpurgeif0(struct inpcbtable *table, struct ifnet *ifp)
843 1.16 thorpej {
844 1.124 christos struct inpcb_hdr *inph, *ninph;
845 1.37 itojun struct ip6_moptions *im6o;
846 1.37 itojun struct in6_multi_mship *imm, *nimm;
847 1.16 thorpej
848 1.144 ozaki KASSERT(ifp != NULL);
849 1.144 ozaki
850 1.124 christos TAILQ_FOREACH_SAFE(inph, &table->inpt_queue, inph_queue, ninph) {
851 1.124 christos struct in6pcb *in6p = (struct in6pcb *)inph;
852 1.159 ozaki bool need_unlock = false;
853 1.56 itojun if (in6p->in6p_af != AF_INET6)
854 1.56 itojun continue;
855 1.56 itojun
856 1.159 ozaki /* The caller holds either one of in6ps' lock */
857 1.159 ozaki if (!in6p_locked(in6p)) {
858 1.159 ozaki in6p_lock(in6p);
859 1.159 ozaki need_unlock = true;
860 1.159 ozaki }
861 1.37 itojun im6o = in6p->in6p_moptions;
862 1.37 itojun if (im6o) {
863 1.37 itojun /*
864 1.37 itojun * Unselect the outgoing interface if it is being
865 1.37 itojun * detached.
866 1.37 itojun */
867 1.144 ozaki if (im6o->im6o_multicast_if_index == ifp->if_index)
868 1.144 ozaki im6o->im6o_multicast_if_index = 0;
869 1.37 itojun
870 1.37 itojun /*
871 1.37 itojun * Drop multicast group membership if we joined
872 1.37 itojun * through the interface being detached.
873 1.37 itojun * XXX controversial - is it really legal for kernel
874 1.37 itojun * to force this?
875 1.37 itojun */
876 1.158 ozaki LIST_FOREACH_SAFE(imm, &im6o->im6o_memberships,
877 1.158 ozaki i6mm_chain, nimm) {
878 1.37 itojun if (imm->i6mm_maddr->in6m_ifp == ifp) {
879 1.37 itojun LIST_REMOVE(imm, i6mm_chain);
880 1.162 ozaki IFNET_LOCK(ifp);
881 1.45 itojun in6_leavegroup(imm);
882 1.162 ozaki IFNET_UNLOCK(ifp);
883 1.37 itojun }
884 1.37 itojun }
885 1.37 itojun }
886 1.162 ozaki
887 1.162 ozaki /* IFNET_LOCK must be taken after solock */
888 1.162 ozaki IFNET_LOCK(ifp);
889 1.133 seanb in_purgeifmcast(in6p->in6p_v4moptions, ifp);
890 1.162 ozaki IFNET_UNLOCK(ifp);
891 1.162 ozaki
892 1.159 ozaki if (need_unlock)
893 1.159 ozaki in6p_unlock(in6p);
894 1.38 itojun }
895 1.38 itojun }
896 1.38 itojun
897 1.38 itojun void
898 1.87 christos in6_pcbpurgeif(struct inpcbtable *table, struct ifnet *ifp)
899 1.38 itojun {
900 1.91 dyoung struct rtentry *rt;
901 1.124 christos struct inpcb_hdr *inph, *ninph;
902 1.38 itojun
903 1.124 christos TAILQ_FOREACH_SAFE(inph, &table->inpt_queue, inph_queue, ninph) {
904 1.124 christos struct in6pcb *in6p = (struct in6pcb *)inph;
905 1.56 itojun if (in6p->in6p_af != AF_INET6)
906 1.56 itojun continue;
907 1.94 dyoung if ((rt = rtcache_validate(&in6p->in6p_route)) != NULL &&
908 1.153 ozaki rt->rt_ifp == ifp) {
909 1.153 ozaki rtcache_unref(rt, &in6p->in6p_route);
910 1.38 itojun in6_rtchange(in6p, 0);
911 1.153 ozaki } else
912 1.153 ozaki rtcache_unref(rt, &in6p->in6p_route);
913 1.16 thorpej }
914 1.2 itojun }
915 1.2 itojun
916 1.2 itojun /*
917 1.2 itojun * Check for alternatives when higher level complains
918 1.2 itojun * about service problems. For now, invalidate cached
919 1.2 itojun * routing information. If the route was created dynamically
920 1.2 itojun * (by a redirect), time to try a default gateway again.
921 1.2 itojun */
922 1.2 itojun void
923 1.87 christos in6_losing(struct in6pcb *in6p)
924 1.2 itojun {
925 1.2 itojun struct rtentry *rt;
926 1.2 itojun struct rt_addrinfo info;
927 1.2 itojun
928 1.56 itojun if (in6p->in6p_af != AF_INET6)
929 1.56 itojun return;
930 1.56 itojun
931 1.94 dyoung if ((rt = rtcache_validate(&in6p->in6p_route)) == NULL)
932 1.94 dyoung return;
933 1.94 dyoung
934 1.94 dyoung memset(&info, 0, sizeof(info));
935 1.94 dyoung info.rti_info[RTAX_DST] = rtcache_getdst(&in6p->in6p_route);
936 1.94 dyoung info.rti_info[RTAX_GATEWAY] = rt->rt_gateway;
937 1.94 dyoung info.rti_info[RTAX_NETMASK] = rt_mask(rt);
938 1.94 dyoung rt_missmsg(RTM_LOSING, &info, rt->rt_flags, 0);
939 1.94 dyoung if (rt->rt_flags & RTF_DYNAMIC) {
940 1.153 ozaki int error;
941 1.153 ozaki struct rtentry *nrt;
942 1.153 ozaki
943 1.153 ozaki error = rtrequest(RTM_DELETE, rt_getkey(rt),
944 1.153 ozaki rt->rt_gateway, rt_mask(rt), rt->rt_flags, &nrt);
945 1.153 ozaki rtcache_unref(rt, &in6p->in6p_route);
946 1.153 ozaki if (error == 0)
947 1.154 ozaki rt_free(nrt);
948 1.153 ozaki } else
949 1.153 ozaki rtcache_unref(rt, &in6p->in6p_route);
950 1.94 dyoung /*
951 1.94 dyoung * A new route can be allocated
952 1.94 dyoung * the next time output is attempted.
953 1.94 dyoung */
954 1.94 dyoung rtcache_free(&in6p->in6p_route);
955 1.2 itojun }
956 1.2 itojun
957 1.2 itojun /*
958 1.79 dyoung * After a routing change, flush old routing. A new route can be
959 1.79 dyoung * allocated the next time output is attempted.
960 1.2 itojun */
961 1.2 itojun void
962 1.75 christos in6_rtchange(struct in6pcb *in6p, int errno)
963 1.2 itojun {
964 1.56 itojun if (in6p->in6p_af != AF_INET6)
965 1.56 itojun return;
966 1.56 itojun
967 1.86 dyoung rtcache_free(&in6p->in6p_route);
968 1.80 joerg /*
969 1.80 joerg * A new route can be allocated the next time
970 1.80 joerg * output is attempted.
971 1.80 joerg */
972 1.2 itojun }
973 1.2 itojun
974 1.2 itojun struct in6pcb *
975 1.87 christos in6_pcblookup_port(struct inpcbtable *table, struct in6_addr *laddr6,
976 1.113 dyoung u_int lport_arg, int lookup_wildcard, struct vestigial_inpcb *vp)
977 1.2 itojun {
978 1.60 itojun struct inpcbhead *head;
979 1.56 itojun struct inpcb_hdr *inph;
980 1.141 ozaki struct in6pcb *in6p, *match = NULL;
981 1.2 itojun int matchwild = 3, wildcard;
982 1.56 itojun u_int16_t lport = lport_arg;
983 1.56 itojun
984 1.113 dyoung if (vp)
985 1.113 dyoung vp->valid = 0;
986 1.113 dyoung
987 1.60 itojun head = IN6PCBHASH_PORT(table, lport);
988 1.60 itojun LIST_FOREACH(inph, head, inph_lhash) {
989 1.56 itojun in6p = (struct in6pcb *)inph;
990 1.56 itojun if (in6p->in6p_af != AF_INET6)
991 1.56 itojun continue;
992 1.2 itojun
993 1.2 itojun if (in6p->in6p_lport != lport)
994 1.2 itojun continue;
995 1.2 itojun wildcard = 0;
996 1.56 itojun if (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_faddr)) {
997 1.56 itojun if ((in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0)
998 1.2 itojun continue;
999 1.11 itojun }
1000 1.56 itojun if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr))
1001 1.56 itojun wildcard++;
1002 1.56 itojun if (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_laddr)) {
1003 1.56 itojun if ((in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0)
1004 1.56 itojun continue;
1005 1.11 itojun if (!IN6_IS_ADDR_V4MAPPED(laddr6))
1006 1.11 itojun continue;
1007 1.56 itojun
1008 1.56 itojun /* duplicate of IPv4 logic */
1009 1.56 itojun wildcard = 0;
1010 1.56 itojun if (IN6_IS_ADDR_V4MAPPED(&in6p->in6p_faddr) &&
1011 1.56 itojun in6p->in6p_faddr.s6_addr32[3])
1012 1.11 itojun wildcard++;
1013 1.56 itojun if (!in6p->in6p_laddr.s6_addr32[3]) {
1014 1.56 itojun if (laddr6->s6_addr32[3])
1015 1.56 itojun wildcard++;
1016 1.56 itojun } else {
1017 1.56 itojun if (!laddr6->s6_addr32[3])
1018 1.56 itojun wildcard++;
1019 1.56 itojun else {
1020 1.56 itojun if (in6p->in6p_laddr.s6_addr32[3] !=
1021 1.56 itojun laddr6->s6_addr32[3])
1022 1.56 itojun continue;
1023 1.56 itojun }
1024 1.56 itojun }
1025 1.56 itojun } else if (IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr)) {
1026 1.11 itojun if (IN6_IS_ADDR_V4MAPPED(laddr6)) {
1027 1.56 itojun if ((in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0)
1028 1.11 itojun continue;
1029 1.56 itojun }
1030 1.56 itojun if (!IN6_IS_ADDR_UNSPECIFIED(laddr6))
1031 1.2 itojun wildcard++;
1032 1.56 itojun } else {
1033 1.56 itojun if (IN6_IS_ADDR_V4MAPPED(laddr6)) {
1034 1.56 itojun if ((in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0)
1035 1.56 itojun continue;
1036 1.56 itojun }
1037 1.56 itojun if (IN6_IS_ADDR_UNSPECIFIED(laddr6))
1038 1.2 itojun wildcard++;
1039 1.56 itojun else {
1040 1.56 itojun if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr,
1041 1.56 itojun laddr6))
1042 1.11 itojun continue;
1043 1.56 itojun }
1044 1.2 itojun }
1045 1.56 itojun if (wildcard && !lookup_wildcard)
1046 1.2 itojun continue;
1047 1.2 itojun if (wildcard < matchwild) {
1048 1.2 itojun match = in6p;
1049 1.2 itojun matchwild = wildcard;
1050 1.2 itojun if (matchwild == 0)
1051 1.2 itojun break;
1052 1.2 itojun }
1053 1.2 itojun }
1054 1.113 dyoung if (match && matchwild == 0)
1055 1.113 dyoung return match;
1056 1.113 dyoung
1057 1.113 dyoung if (vp && table->vestige && table->vestige->init_ports6) {
1058 1.113 dyoung struct vestigial_inpcb better;
1059 1.113 dyoung void *state;
1060 1.113 dyoung
1061 1.113 dyoung state = (*table->vestige->init_ports6)(laddr6,
1062 1.113 dyoung lport_arg,
1063 1.113 dyoung lookup_wildcard);
1064 1.113 dyoung while (table->vestige
1065 1.113 dyoung && (*table->vestige->next_port6)(state, vp)) {
1066 1.113 dyoung
1067 1.113 dyoung if (vp->lport != lport)
1068 1.113 dyoung continue;
1069 1.113 dyoung wildcard = 0;
1070 1.113 dyoung if (!IN6_IS_ADDR_UNSPECIFIED(&vp->faddr.v6))
1071 1.113 dyoung wildcard++;
1072 1.113 dyoung if (IN6_IS_ADDR_UNSPECIFIED(&vp->laddr.v6)) {
1073 1.113 dyoung if (!IN6_IS_ADDR_UNSPECIFIED(laddr6))
1074 1.113 dyoung wildcard++;
1075 1.113 dyoung } else {
1076 1.113 dyoung if (IN6_IS_ADDR_V4MAPPED(laddr6)) {
1077 1.113 dyoung if (vp->v6only)
1078 1.113 dyoung continue;
1079 1.113 dyoung }
1080 1.113 dyoung if (IN6_IS_ADDR_UNSPECIFIED(laddr6))
1081 1.113 dyoung wildcard++;
1082 1.113 dyoung else {
1083 1.113 dyoung if (!IN6_ARE_ADDR_EQUAL(&vp->laddr.v6, laddr6))
1084 1.113 dyoung continue;
1085 1.113 dyoung }
1086 1.113 dyoung }
1087 1.113 dyoung if (wildcard && !lookup_wildcard)
1088 1.113 dyoung continue;
1089 1.113 dyoung if (wildcard < matchwild) {
1090 1.113 dyoung better = *vp;
1091 1.113 dyoung match = (void*)&better;
1092 1.113 dyoung
1093 1.113 dyoung matchwild = wildcard;
1094 1.113 dyoung if (matchwild == 0)
1095 1.113 dyoung break;
1096 1.113 dyoung }
1097 1.113 dyoung }
1098 1.113 dyoung
1099 1.113 dyoung if (match) {
1100 1.113 dyoung if (match != (void*)&better)
1101 1.113 dyoung return match;
1102 1.113 dyoung else {
1103 1.113 dyoung *vp = better;
1104 1.113 dyoung return 0;
1105 1.113 dyoung }
1106 1.113 dyoung }
1107 1.113 dyoung }
1108 1.52 itojun return (match);
1109 1.2 itojun }
1110 1.2 itojun
1111 1.55 itojun /*
1112 1.55 itojun * WARNING: return value (rtentry) could be IPv4 one if in6pcb is connected to
1113 1.55 itojun * IPv4 mapped address.
1114 1.55 itojun */
1115 1.2 itojun struct rtentry *
1116 1.87 christos in6_pcbrtentry(struct in6pcb *in6p)
1117 1.2 itojun {
1118 1.91 dyoung struct rtentry *rt;
1119 1.86 dyoung struct route *ro;
1120 1.90 drochner union {
1121 1.90 drochner const struct sockaddr *sa;
1122 1.90 drochner const struct sockaddr_in6 *sa6;
1123 1.90 drochner #ifdef INET
1124 1.90 drochner const struct sockaddr_in *sa4;
1125 1.90 drochner #endif
1126 1.90 drochner } cdst;
1127 1.2 itojun
1128 1.2 itojun ro = &in6p->in6p_route;
1129 1.2 itojun
1130 1.56 itojun if (in6p->in6p_af != AF_INET6)
1131 1.56 itojun return (NULL);
1132 1.56 itojun
1133 1.90 drochner cdst.sa = rtcache_getdst(ro);
1134 1.90 drochner if (cdst.sa == NULL)
1135 1.86 dyoung ;
1136 1.90 drochner #ifdef INET
1137 1.90 drochner else if (cdst.sa->sa_family == AF_INET) {
1138 1.90 drochner KASSERT(IN6_IS_ADDR_V4MAPPED(&in6p->in6p_faddr));
1139 1.90 drochner if (cdst.sa4->sin_addr.s_addr != in6p->in6p_faddr.s6_addr32[3])
1140 1.90 drochner rtcache_free(ro);
1141 1.90 drochner }
1142 1.90 drochner #endif
1143 1.90 drochner else {
1144 1.90 drochner if (!IN6_ARE_ADDR_EQUAL(&cdst.sa6->sin6_addr,
1145 1.90 drochner &in6p->in6p_faddr))
1146 1.90 drochner rtcache_free(ro);
1147 1.90 drochner }
1148 1.93 dyoung if ((rt = rtcache_validate(ro)) == NULL)
1149 1.93 dyoung rt = rtcache_update(ro, 1);
1150 1.55 itojun #ifdef INET
1151 1.91 dyoung if (rt == NULL && IN6_IS_ADDR_V4MAPPED(&in6p->in6p_faddr)) {
1152 1.86 dyoung union {
1153 1.86 dyoung struct sockaddr dst;
1154 1.86 dyoung struct sockaddr_in dst4;
1155 1.86 dyoung } u;
1156 1.86 dyoung struct in_addr addr;
1157 1.55 itojun
1158 1.86 dyoung addr.s_addr = in6p->in6p_faddr.s6_addr32[3];
1159 1.86 dyoung
1160 1.86 dyoung sockaddr_in_init(&u.dst4, &addr, 0);
1161 1.139 ozaki if (rtcache_setdst(ro, &u.dst) != 0)
1162 1.139 ozaki return NULL;
1163 1.86 dyoung
1164 1.92 dyoung rt = rtcache_init(ro);
1165 1.55 itojun } else
1166 1.55 itojun #endif
1167 1.91 dyoung if (rt == NULL && !IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr)) {
1168 1.86 dyoung union {
1169 1.86 dyoung struct sockaddr dst;
1170 1.86 dyoung struct sockaddr_in6 dst6;
1171 1.86 dyoung } u;
1172 1.86 dyoung
1173 1.86 dyoung sockaddr_in6_init(&u.dst6, &in6p->in6p_faddr, 0, 0, 0);
1174 1.139 ozaki if (rtcache_setdst(ro, &u.dst) != 0)
1175 1.139 ozaki return NULL;
1176 1.83 dyoung
1177 1.92 dyoung rt = rtcache_init(ro);
1178 1.2 itojun }
1179 1.92 dyoung return rt;
1180 1.2 itojun }
1181 1.2 itojun
1182 1.153 ozaki void
1183 1.153 ozaki in6_pcbrtentry_unref(struct rtentry *rt, struct in6pcb *in6p)
1184 1.153 ozaki {
1185 1.153 ozaki
1186 1.153 ozaki rtcache_unref(rt, &in6p->in6p_route);
1187 1.153 ozaki }
1188 1.153 ozaki
1189 1.2 itojun struct in6pcb *
1190 1.83 dyoung in6_pcblookup_connect(struct inpcbtable *table, const struct in6_addr *faddr6,
1191 1.113 dyoung u_int fport_arg, const struct in6_addr *laddr6, u_int lport_arg,
1192 1.113 dyoung int faith,
1193 1.113 dyoung struct vestigial_inpcb *vp)
1194 1.2 itojun {
1195 1.56 itojun struct inpcbhead *head;
1196 1.56 itojun struct inpcb_hdr *inph;
1197 1.2 itojun struct in6pcb *in6p;
1198 1.18 itojun u_int16_t fport = fport_arg, lport = lport_arg;
1199 1.2 itojun
1200 1.114 dyoung if (vp)
1201 1.114 dyoung vp->valid = 0;
1202 1.114 dyoung
1203 1.56 itojun head = IN6PCBHASH_CONNECT(table, faddr6, fport, laddr6, lport);
1204 1.56 itojun LIST_FOREACH(inph, head, inph_hash) {
1205 1.56 itojun in6p = (struct in6pcb *)inph;
1206 1.56 itojun if (in6p->in6p_af != AF_INET6)
1207 1.56 itojun continue;
1208 1.56 itojun
1209 1.2 itojun /* find exact match on both source and dest */
1210 1.2 itojun if (in6p->in6p_fport != fport)
1211 1.2 itojun continue;
1212 1.2 itojun if (in6p->in6p_lport != lport)
1213 1.2 itojun continue;
1214 1.2 itojun if (IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr))
1215 1.2 itojun continue;
1216 1.2 itojun if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_faddr, faddr6))
1217 1.2 itojun continue;
1218 1.2 itojun if (IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr))
1219 1.2 itojun continue;
1220 1.2 itojun if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr, laddr6))
1221 1.2 itojun continue;
1222 1.41 itojun if ((IN6_IS_ADDR_V4MAPPED(laddr6) ||
1223 1.41 itojun IN6_IS_ADDR_V4MAPPED(faddr6)) &&
1224 1.41 itojun (in6p->in6p_flags & IN6P_IPV6_V6ONLY))
1225 1.41 itojun continue;
1226 1.2 itojun return in6p;
1227 1.2 itojun }
1228 1.113 dyoung if (vp && table->vestige) {
1229 1.113 dyoung if ((*table->vestige->lookup6)(faddr6, fport_arg,
1230 1.113 dyoung laddr6, lport_arg, vp))
1231 1.141 ozaki return NULL;
1232 1.113 dyoung }
1233 1.113 dyoung
1234 1.2 itojun return NULL;
1235 1.2 itojun }
1236 1.2 itojun
1237 1.2 itojun struct in6pcb *
1238 1.87 christos in6_pcblookup_bind(struct inpcbtable *table, const struct in6_addr *laddr6,
1239 1.87 christos u_int lport_arg, int faith)
1240 1.2 itojun {
1241 1.56 itojun struct inpcbhead *head;
1242 1.56 itojun struct inpcb_hdr *inph;
1243 1.56 itojun struct in6pcb *in6p;
1244 1.18 itojun u_int16_t lport = lport_arg;
1245 1.62 atatat #ifdef INET
1246 1.56 itojun struct in6_addr zero_mapped;
1247 1.56 itojun #endif
1248 1.56 itojun
1249 1.56 itojun head = IN6PCBHASH_BIND(table, laddr6, lport);
1250 1.56 itojun LIST_FOREACH(inph, head, inph_hash) {
1251 1.56 itojun in6p = (struct in6pcb *)inph;
1252 1.56 itojun if (in6p->in6p_af != AF_INET6)
1253 1.56 itojun continue;
1254 1.2 itojun
1255 1.8 itojun if (faith && (in6p->in6p_flags & IN6P_FAITH) == 0)
1256 1.8 itojun continue;
1257 1.2 itojun if (in6p->in6p_fport != 0)
1258 1.2 itojun continue;
1259 1.2 itojun if (in6p->in6p_lport != lport)
1260 1.2 itojun continue;
1261 1.56 itojun if (IN6_IS_ADDR_V4MAPPED(laddr6) &&
1262 1.56 itojun (in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0)
1263 1.56 itojun continue;
1264 1.56 itojun if (IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr, laddr6))
1265 1.56 itojun goto out;
1266 1.56 itojun }
1267 1.56 itojun #ifdef INET
1268 1.56 itojun if (IN6_IS_ADDR_V4MAPPED(laddr6)) {
1269 1.56 itojun memset(&zero_mapped, 0, sizeof(zero_mapped));
1270 1.56 itojun zero_mapped.s6_addr16[5] = 0xffff;
1271 1.56 itojun head = IN6PCBHASH_BIND(table, &zero_mapped, lport);
1272 1.56 itojun LIST_FOREACH(inph, head, inph_hash) {
1273 1.56 itojun in6p = (struct in6pcb *)inph;
1274 1.56 itojun if (in6p->in6p_af != AF_INET6)
1275 1.56 itojun continue;
1276 1.56 itojun
1277 1.56 itojun if (faith && (in6p->in6p_flags & IN6P_FAITH) == 0)
1278 1.56 itojun continue;
1279 1.56 itojun if (in6p->in6p_fport != 0)
1280 1.56 itojun continue;
1281 1.56 itojun if (in6p->in6p_lport != lport)
1282 1.56 itojun continue;
1283 1.56 itojun if ((in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0)
1284 1.56 itojun continue;
1285 1.56 itojun if (IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr, &zero_mapped))
1286 1.56 itojun goto out;
1287 1.11 itojun }
1288 1.2 itojun }
1289 1.56 itojun #endif
1290 1.56 itojun head = IN6PCBHASH_BIND(table, &zeroin6_addr, lport);
1291 1.56 itojun LIST_FOREACH(inph, head, inph_hash) {
1292 1.56 itojun in6p = (struct in6pcb *)inph;
1293 1.56 itojun if (in6p->in6p_af != AF_INET6)
1294 1.56 itojun continue;
1295 1.56 itojun
1296 1.56 itojun if (faith && (in6p->in6p_flags & IN6P_FAITH) == 0)
1297 1.56 itojun continue;
1298 1.56 itojun if (in6p->in6p_fport != 0)
1299 1.56 itojun continue;
1300 1.56 itojun if (in6p->in6p_lport != lport)
1301 1.56 itojun continue;
1302 1.56 itojun if (IN6_IS_ADDR_V4MAPPED(laddr6) &&
1303 1.56 itojun (in6p->in6p_flags & IN6P_IPV6_V6ONLY) != 0)
1304 1.56 itojun continue;
1305 1.56 itojun if (IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr, &zeroin6_addr))
1306 1.56 itojun goto out;
1307 1.56 itojun }
1308 1.56 itojun return (NULL);
1309 1.56 itojun
1310 1.56 itojun out:
1311 1.56 itojun inph = &in6p->in6p_head;
1312 1.56 itojun if (inph != LIST_FIRST(head)) {
1313 1.56 itojun LIST_REMOVE(inph, inph_hash);
1314 1.56 itojun LIST_INSERT_HEAD(head, inph, inph_hash);
1315 1.56 itojun }
1316 1.56 itojun return in6p;
1317 1.56 itojun }
1318 1.56 itojun
1319 1.56 itojun void
1320 1.87 christos in6_pcbstate(struct in6pcb *in6p, int state)
1321 1.56 itojun {
1322 1.56 itojun
1323 1.56 itojun if (in6p->in6p_af != AF_INET6)
1324 1.56 itojun return;
1325 1.56 itojun
1326 1.56 itojun if (in6p->in6p_state > IN6P_ATTACHED)
1327 1.56 itojun LIST_REMOVE(&in6p->in6p_head, inph_hash);
1328 1.56 itojun
1329 1.56 itojun switch (state) {
1330 1.56 itojun case IN6P_BOUND:
1331 1.56 itojun LIST_INSERT_HEAD(IN6PCBHASH_BIND(in6p->in6p_table,
1332 1.56 itojun &in6p->in6p_laddr, in6p->in6p_lport), &in6p->in6p_head,
1333 1.56 itojun inph_hash);
1334 1.56 itojun break;
1335 1.56 itojun case IN6P_CONNECTED:
1336 1.56 itojun LIST_INSERT_HEAD(IN6PCBHASH_CONNECT(in6p->in6p_table,
1337 1.56 itojun &in6p->in6p_faddr, in6p->in6p_fport,
1338 1.56 itojun &in6p->in6p_laddr, in6p->in6p_lport), &in6p->in6p_head,
1339 1.56 itojun inph_hash);
1340 1.56 itojun break;
1341 1.56 itojun }
1342 1.56 itojun
1343 1.56 itojun in6p->in6p_state = state;
1344 1.2 itojun }
1345