xref: /freebsd/sys/netinet6/ip6_input.c (revision b1f9167f94059fd55c630891d359bcff987bd7eb)
1 /*-
2  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the project nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *	$KAME: ip6_input.c,v 1.259 2002/01/21 04:58:09 jinmei Exp $
30  */
31 
32 /*-
33  * Copyright (c) 1982, 1986, 1988, 1993
34  *	The Regents of the University of California.  All rights reserved.
35  *
36  * Redistribution and use in source and binary forms, with or without
37  * modification, are permitted provided that the following conditions
38  * are met:
39  * 1. Redistributions of source code must retain the above copyright
40  *    notice, this list of conditions and the following disclaimer.
41  * 2. Redistributions in binary form must reproduce the above copyright
42  *    notice, this list of conditions and the following disclaimer in the
43  *    documentation and/or other materials provided with the distribution.
44  * 4. Neither the name of the University nor the names of its contributors
45  *    may be used to endorse or promote products derived from this software
46  *    without specific prior written permission.
47  *
48  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58  * SUCH DAMAGE.
59  *
60  *	@(#)ip_input.c	8.2 (Berkeley) 1/4/94
61  */
62 
63 #include <sys/cdefs.h>
64 __FBSDID("$FreeBSD$");
65 
66 #include "opt_inet.h"
67 #include "opt_inet6.h"
68 #include "opt_ipfw.h"
69 #include "opt_ipsec.h"
70 #include "opt_route.h"
71 
72 #include <sys/param.h>
73 #include <sys/systm.h>
74 #include <sys/malloc.h>
75 #include <sys/mbuf.h>
76 #include <sys/proc.h>
77 #include <sys/domain.h>
78 #include <sys/protosw.h>
79 #include <sys/sdt.h>
80 #include <sys/socket.h>
81 #include <sys/socketvar.h>
82 #include <sys/errno.h>
83 #include <sys/time.h>
84 #include <sys/kernel.h>
85 #include <sys/syslog.h>
86 
87 #include <net/if.h>
88 #include <net/if_var.h>
89 #include <net/if_types.h>
90 #include <net/if_dl.h>
91 #include <net/route.h>
92 #include <net/netisr.h>
93 #include <net/pfil.h>
94 #include <net/vnet.h>
95 
96 #include <netinet/in.h>
97 #include <netinet/in_kdtrace.h>
98 #include <netinet/ip_var.h>
99 #include <netinet/in_systm.h>
100 #include <net/if_llatbl.h>
101 #ifdef INET
102 #include <netinet/ip.h>
103 #include <netinet/ip_icmp.h>
104 #endif /* INET */
105 #include <netinet/ip6.h>
106 #include <netinet6/in6_var.h>
107 #include <netinet6/ip6_var.h>
108 #include <netinet/in_pcb.h>
109 #include <netinet/icmp6.h>
110 #include <netinet6/scope6_var.h>
111 #include <netinet6/in6_ifattach.h>
112 #include <netinet6/nd6.h>
113 
114 #ifdef IPSEC
115 #include <netipsec/ipsec.h>
116 #include <netinet6/ip6_ipsec.h>
117 #include <netipsec/ipsec6.h>
118 #endif /* IPSEC */
119 
120 #include <netinet6/ip6protosw.h>
121 
122 extern struct domain inet6domain;
123 
124 u_char ip6_protox[IPPROTO_MAX];
125 VNET_DEFINE(struct in6_ifaddrhead, in6_ifaddrhead);
126 VNET_DEFINE(struct in6_ifaddrlisthead *, in6_ifaddrhashtbl);
127 VNET_DEFINE(u_long, in6_ifaddrhmask);
128 
129 static struct netisr_handler ip6_nh = {
130 	.nh_name = "ip6",
131 	.nh_handler = ip6_input,
132 	.nh_proto = NETISR_IPV6,
133 	.nh_policy = NETISR_POLICY_FLOW,
134 };
135 
136 VNET_DECLARE(struct callout, in6_tmpaddrtimer_ch);
137 #define	V_in6_tmpaddrtimer_ch		VNET(in6_tmpaddrtimer_ch)
138 
139 VNET_DEFINE(struct pfil_head, inet6_pfil_hook);
140 
141 VNET_PCPUSTAT_DEFINE(struct ip6stat, ip6stat);
142 VNET_PCPUSTAT_SYSINIT(ip6stat);
143 #ifdef VIMAGE
144 VNET_PCPUSTAT_SYSUNINIT(ip6stat);
145 #endif /* VIMAGE */
146 
147 struct rwlock in6_ifaddr_lock;
148 RW_SYSINIT(in6_ifaddr_lock, &in6_ifaddr_lock, "in6_ifaddr_lock");
149 
150 static void ip6_init2(void *);
151 static struct ip6aux *ip6_setdstifaddr(struct mbuf *, struct in6_ifaddr *);
152 static struct ip6aux *ip6_addaux(struct mbuf *);
153 static struct ip6aux *ip6_findaux(struct mbuf *m);
154 static void ip6_delaux (struct mbuf *);
155 static int ip6_hopopts_input(u_int32_t *, u_int32_t *, struct mbuf **, int *);
156 #ifdef PULLDOWN_TEST
157 static struct mbuf *ip6_pullexthdr(struct mbuf *, size_t, int);
158 #endif
159 
160 /*
161  * IP6 initialization: fill in IP6 protocol switch table.
162  * All protocols not implemented in kernel go to raw IP6 protocol handler.
163  */
164 void
165 ip6_init(void)
166 {
167 	struct ip6protosw *pr;
168 	int i;
169 
170 	TUNABLE_INT_FETCH("net.inet6.ip6.auto_linklocal",
171 	    &V_ip6_auto_linklocal);
172 	TUNABLE_INT_FETCH("net.inet6.ip6.accept_rtadv", &V_ip6_accept_rtadv);
173 	TUNABLE_INT_FETCH("net.inet6.ip6.no_radr", &V_ip6_no_radr);
174 
175 	TAILQ_INIT(&V_in6_ifaddrhead);
176 	V_in6_ifaddrhashtbl = hashinit(IN6ADDR_NHASH, M_IFADDR,
177 	    &V_in6_ifaddrhmask);
178 
179 	/* Initialize packet filter hooks. */
180 	V_inet6_pfil_hook.ph_type = PFIL_TYPE_AF;
181 	V_inet6_pfil_hook.ph_af = AF_INET6;
182 	if ((i = pfil_head_register(&V_inet6_pfil_hook)) != 0)
183 		printf("%s: WARNING: unable to register pfil hook, "
184 			"error %d\n", __func__, i);
185 
186 	scope6_init();
187 	addrsel_policy_init();
188 	nd6_init();
189 	frag6_init();
190 
191 	V_ip6_desync_factor = arc4random() % MAX_TEMP_DESYNC_FACTOR;
192 
193 	/* Skip global initialization stuff for non-default instances. */
194 	if (!IS_DEFAULT_VNET(curvnet))
195 		return;
196 
197 #ifdef DIAGNOSTIC
198 	if (sizeof(struct protosw) != sizeof(struct ip6protosw))
199 		panic("sizeof(protosw) != sizeof(ip6protosw)");
200 #endif
201 	pr = (struct ip6protosw *)pffindproto(PF_INET6, IPPROTO_RAW, SOCK_RAW);
202 	if (pr == NULL)
203 		panic("ip6_init");
204 
205 	/* Initialize the entire ip6_protox[] array to IPPROTO_RAW. */
206 	for (i = 0; i < IPPROTO_MAX; i++)
207 		ip6_protox[i] = pr - inet6sw;
208 	/*
209 	 * Cycle through IP protocols and put them into the appropriate place
210 	 * in ip6_protox[].
211 	 */
212 	for (pr = (struct ip6protosw *)inet6domain.dom_protosw;
213 	    pr < (struct ip6protosw *)inet6domain.dom_protoswNPROTOSW; pr++)
214 		if (pr->pr_domain->dom_family == PF_INET6 &&
215 		    pr->pr_protocol && pr->pr_protocol != IPPROTO_RAW) {
216 			/* Be careful to only index valid IP protocols. */
217 			if (pr->pr_protocol < IPPROTO_MAX)
218 				ip6_protox[pr->pr_protocol] = pr - inet6sw;
219 		}
220 
221 	netisr_register(&ip6_nh);
222 }
223 
224 /*
225  * The protocol to be inserted into ip6_protox[] must be already registered
226  * in inet6sw[], either statically or through pf_proto_register().
227  */
228 int
229 ip6proto_register(short ip6proto)
230 {
231 	struct ip6protosw *pr;
232 
233 	/* Sanity checks. */
234 	if (ip6proto <= 0 || ip6proto >= IPPROTO_MAX)
235 		return (EPROTONOSUPPORT);
236 
237 	/*
238 	 * The protocol slot must not be occupied by another protocol
239 	 * already.  An index pointing to IPPROTO_RAW is unused.
240 	 */
241 	pr = (struct ip6protosw *)pffindproto(PF_INET6, IPPROTO_RAW, SOCK_RAW);
242 	if (pr == NULL)
243 		return (EPFNOSUPPORT);
244 	if (ip6_protox[ip6proto] != pr - inet6sw)	/* IPPROTO_RAW */
245 		return (EEXIST);
246 
247 	/*
248 	 * Find the protocol position in inet6sw[] and set the index.
249 	 */
250 	for (pr = (struct ip6protosw *)inet6domain.dom_protosw;
251 	    pr < (struct ip6protosw *)inet6domain.dom_protoswNPROTOSW; pr++) {
252 		if (pr->pr_domain->dom_family == PF_INET6 &&
253 		    pr->pr_protocol && pr->pr_protocol == ip6proto) {
254 			ip6_protox[pr->pr_protocol] = pr - inet6sw;
255 			return (0);
256 		}
257 	}
258 	return (EPROTONOSUPPORT);
259 }
260 
261 int
262 ip6proto_unregister(short ip6proto)
263 {
264 	struct ip6protosw *pr;
265 
266 	/* Sanity checks. */
267 	if (ip6proto <= 0 || ip6proto >= IPPROTO_MAX)
268 		return (EPROTONOSUPPORT);
269 
270 	/* Check if the protocol was indeed registered. */
271 	pr = (struct ip6protosw *)pffindproto(PF_INET6, IPPROTO_RAW, SOCK_RAW);
272 	if (pr == NULL)
273 		return (EPFNOSUPPORT);
274 	if (ip6_protox[ip6proto] == pr - inet6sw)	/* IPPROTO_RAW */
275 		return (ENOENT);
276 
277 	/* Reset the protocol slot to IPPROTO_RAW. */
278 	ip6_protox[ip6proto] = pr - inet6sw;
279 	return (0);
280 }
281 
282 #ifdef VIMAGE
283 void
284 ip6_destroy()
285 {
286 	int i;
287 
288 	if ((i = pfil_head_unregister(&V_inet6_pfil_hook)) != 0)
289 		printf("%s: WARNING: unable to unregister pfil hook, "
290 		    "error %d\n", __func__, i);
291 	hashdestroy(V_in6_ifaddrhashtbl, M_IFADDR, V_in6_ifaddrhmask);
292 	nd6_destroy();
293 	callout_drain(&V_in6_tmpaddrtimer_ch);
294 }
295 #endif
296 
297 static int
298 ip6_init2_vnet(const void *unused __unused)
299 {
300 
301 	/* nd6_timer_init */
302 	callout_init(&V_nd6_timer_ch, 0);
303 	callout_reset(&V_nd6_timer_ch, hz, nd6_timer, curvnet);
304 
305 	/* timer for regeneranation of temporary addresses randomize ID */
306 	callout_init(&V_in6_tmpaddrtimer_ch, 0);
307 	callout_reset(&V_in6_tmpaddrtimer_ch,
308 		      (V_ip6_temp_preferred_lifetime - V_ip6_desync_factor -
309 		       V_ip6_temp_regen_advance) * hz,
310 		      in6_tmpaddrtimer, curvnet);
311 
312 	return (0);
313 }
314 
315 static void
316 ip6_init2(void *dummy)
317 {
318 
319 	ip6_init2_vnet(NULL);
320 }
321 
322 /* cheat */
323 /* This must be after route_init(), which is now SI_ORDER_THIRD */
324 SYSINIT(netinet6init2, SI_SUB_PROTO_DOMAIN, SI_ORDER_MIDDLE, ip6_init2, NULL);
325 
326 static int
327 ip6_input_hbh(struct mbuf *m, uint32_t *plen, uint32_t *rtalert, int *off,
328     int *nxt, int *ours)
329 {
330 	struct ip6_hdr *ip6;
331 	struct ip6_hbh *hbh;
332 
333 	if (ip6_hopopts_input(plen, rtalert, &m, off)) {
334 #if 0	/*touches NULL pointer*/
335 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_discard);
336 #endif
337 		goto out;	/* m have already been freed */
338 	}
339 
340 	/* adjust pointer */
341 	ip6 = mtod(m, struct ip6_hdr *);
342 
343 	/*
344 	 * if the payload length field is 0 and the next header field
345 	 * indicates Hop-by-Hop Options header, then a Jumbo Payload
346 	 * option MUST be included.
347 	 */
348 	if (ip6->ip6_plen == 0 && *plen == 0) {
349 		/*
350 		 * Note that if a valid jumbo payload option is
351 		 * contained, ip6_hopopts_input() must set a valid
352 		 * (non-zero) payload length to the variable plen.
353 		 */
354 		IP6STAT_INC(ip6s_badoptions);
355 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_discard);
356 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_hdrerr);
357 		icmp6_error(m, ICMP6_PARAM_PROB,
358 			    ICMP6_PARAMPROB_HEADER,
359 			    (caddr_t)&ip6->ip6_plen - (caddr_t)ip6);
360 		goto out;
361 	}
362 #ifndef PULLDOWN_TEST
363 	/* ip6_hopopts_input() ensures that mbuf is contiguous */
364 	hbh = (struct ip6_hbh *)(ip6 + 1);
365 #else
366 	IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m, sizeof(struct ip6_hdr),
367 		sizeof(struct ip6_hbh));
368 	if (hbh == NULL) {
369 		IP6STAT_INC(ip6s_tooshort);
370 		goto out;
371 	}
372 #endif
373 	*nxt = hbh->ip6h_nxt;
374 
375 	/*
376 	 * If we are acting as a router and the packet contains a
377 	 * router alert option, see if we know the option value.
378 	 * Currently, we only support the option value for MLD, in which
379 	 * case we should pass the packet to the multicast routing
380 	 * daemon.
381 	 */
382 	if (*rtalert != ~0) {
383 		switch (*rtalert) {
384 		case IP6OPT_RTALERT_MLD:
385 			if (V_ip6_forwarding)
386 				*ours = 1;
387 			break;
388 		default:
389 			/*
390 			 * RFC2711 requires unrecognized values must be
391 			 * silently ignored.
392 			 */
393 			break;
394 		}
395 	}
396 
397 	return (0);
398 
399 out:
400 	return (1);
401 }
402 
403 void
404 ip6_input(struct mbuf *m)
405 {
406 	struct ip6_hdr *ip6;
407 	int off = sizeof(struct ip6_hdr), nest;
408 	u_int32_t plen;
409 	u_int32_t rtalert = ~0;
410 	int nxt, ours = 0;
411 	struct ifnet *deliverifp = NULL, *ifp = NULL;
412 	struct in6_addr odst;
413 	struct route_in6 rin6;
414 	int srcrt = 0;
415 	struct llentry *lle = NULL;
416 	struct sockaddr_in6 dst6, *dst;
417 
418 	bzero(&rin6, sizeof(struct route_in6));
419 #ifdef IPSEC
420 	/*
421 	 * should the inner packet be considered authentic?
422 	 * see comment in ah4_input().
423 	 * NB: m cannot be NULL when passed to the input routine
424 	 */
425 
426 	m->m_flags &= ~M_AUTHIPHDR;
427 	m->m_flags &= ~M_AUTHIPDGM;
428 
429 #endif /* IPSEC */
430 
431 	/*
432 	 * make sure we don't have onion peering information into m_tag.
433 	 */
434 	ip6_delaux(m);
435 
436 	if (m->m_flags & M_FASTFWD_OURS) {
437 		/*
438 		 * Firewall changed destination to local.
439 		 */
440 		m->m_flags &= ~M_FASTFWD_OURS;
441 		ours = 1;
442 		deliverifp = m->m_pkthdr.rcvif;
443 		ip6 = mtod(m, struct ip6_hdr *);
444 		goto hbhcheck;
445 	}
446 
447 	/*
448 	 * mbuf statistics
449 	 */
450 	if (m->m_flags & M_EXT) {
451 		if (m->m_next)
452 			IP6STAT_INC(ip6s_mext2m);
453 		else
454 			IP6STAT_INC(ip6s_mext1);
455 	} else {
456 		if (m->m_next) {
457 			if (m->m_flags & M_LOOP) {
458 				IP6STAT_INC(ip6s_m2m[V_loif->if_index]);
459 			} else if (m->m_pkthdr.rcvif->if_index < IP6S_M2MMAX)
460 				IP6STAT_INC(
461 				    ip6s_m2m[m->m_pkthdr.rcvif->if_index]);
462 			else
463 				IP6STAT_INC(ip6s_m2m[0]);
464 		} else
465 			IP6STAT_INC(ip6s_m1);
466 	}
467 
468 	/* drop the packet if IPv6 operation is disabled on the IF */
469 	if ((ND_IFINFO(m->m_pkthdr.rcvif)->flags & ND6_IFF_IFDISABLED)) {
470 		m_freem(m);
471 		return;
472 	}
473 
474 	in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_receive);
475 	IP6STAT_INC(ip6s_total);
476 
477 #ifndef PULLDOWN_TEST
478 	/*
479 	 * L2 bridge code and some other code can return mbuf chain
480 	 * that does not conform to KAME requirement.  too bad.
481 	 * XXX: fails to join if interface MTU > MCLBYTES.  jumbogram?
482 	 */
483 	if (m && m->m_next != NULL && m->m_pkthdr.len < MCLBYTES) {
484 		struct mbuf *n;
485 
486 		if (m->m_pkthdr.len > MHLEN)
487 			n = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
488 		else
489 			n = m_gethdr(M_NOWAIT, MT_DATA);
490 		if (n == NULL) {
491 			m_freem(m);
492 			return;	/* ENOBUFS */
493 		}
494 
495 		m_move_pkthdr(n, m);
496 		m_copydata(m, 0, n->m_pkthdr.len, mtod(n, caddr_t));
497 		n->m_len = n->m_pkthdr.len;
498 		m_freem(m);
499 		m = n;
500 	}
501 	IP6_EXTHDR_CHECK(m, 0, sizeof(struct ip6_hdr), /* nothing */);
502 #endif
503 
504 	if (m->m_len < sizeof(struct ip6_hdr)) {
505 		struct ifnet *inifp;
506 		inifp = m->m_pkthdr.rcvif;
507 		if ((m = m_pullup(m, sizeof(struct ip6_hdr))) == NULL) {
508 			IP6STAT_INC(ip6s_toosmall);
509 			in6_ifstat_inc(inifp, ifs6_in_hdrerr);
510 			return;
511 		}
512 	}
513 
514 	ip6 = mtod(m, struct ip6_hdr *);
515 
516 	if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
517 		IP6STAT_INC(ip6s_badvers);
518 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_hdrerr);
519 		goto bad;
520 	}
521 
522 	IP6STAT_INC(ip6s_nxthist[ip6->ip6_nxt]);
523 
524 	IP_PROBE(receive, NULL, NULL, ip6, m->m_pkthdr.rcvif, NULL, ip6);
525 
526 	/*
527 	 * Check against address spoofing/corruption.
528 	 */
529 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_src) ||
530 	    IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_dst)) {
531 		/*
532 		 * XXX: "badscope" is not very suitable for a multicast source.
533 		 */
534 		IP6STAT_INC(ip6s_badscope);
535 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
536 		goto bad;
537 	}
538 	if (IN6_IS_ADDR_MC_INTFACELOCAL(&ip6->ip6_dst) &&
539 	    !(m->m_flags & M_LOOP)) {
540 		/*
541 		 * In this case, the packet should come from the loopback
542 		 * interface.  However, we cannot just check the if_flags,
543 		 * because ip6_mloopback() passes the "actual" interface
544 		 * as the outgoing/incoming interface.
545 		 */
546 		IP6STAT_INC(ip6s_badscope);
547 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
548 		goto bad;
549 	}
550 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) &&
551 	    IPV6_ADDR_MC_SCOPE(&ip6->ip6_dst) == 0) {
552 		/*
553 		 * RFC4291 2.7:
554 		 * Nodes must not originate a packet to a multicast address
555 		 * whose scop field contains the reserved value 0; if such
556 		 * a packet is received, it must be silently dropped.
557 		 */
558 		IP6STAT_INC(ip6s_badscope);
559 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
560 		goto bad;
561 	}
562 #ifdef ALTQ
563 	if (altq_input != NULL && (*altq_input)(m, AF_INET6) == 0) {
564 		/* packet is dropped by traffic conditioner */
565 		return;
566 	}
567 #endif
568 	/*
569 	 * The following check is not documented in specs.  A malicious
570 	 * party may be able to use IPv4 mapped addr to confuse tcp/udp stack
571 	 * and bypass security checks (act as if it was from 127.0.0.1 by using
572 	 * IPv6 src ::ffff:127.0.0.1).  Be cautious.
573 	 *
574 	 * This check chokes if we are in an SIIT cloud.  As none of BSDs
575 	 * support IPv4-less kernel compilation, we cannot support SIIT
576 	 * environment at all.  So, it makes more sense for us to reject any
577 	 * malicious packets for non-SIIT environment, than try to do a
578 	 * partial support for SIIT environment.
579 	 */
580 	if (IN6_IS_ADDR_V4MAPPED(&ip6->ip6_src) ||
581 	    IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst)) {
582 		IP6STAT_INC(ip6s_badscope);
583 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
584 		goto bad;
585 	}
586 #if 0
587 	/*
588 	 * Reject packets with IPv4 compatible addresses (auto tunnel).
589 	 *
590 	 * The code forbids auto tunnel relay case in RFC1933 (the check is
591 	 * stronger than RFC1933).  We may want to re-enable it if mech-xx
592 	 * is revised to forbid relaying case.
593 	 */
594 	if (IN6_IS_ADDR_V4COMPAT(&ip6->ip6_src) ||
595 	    IN6_IS_ADDR_V4COMPAT(&ip6->ip6_dst)) {
596 		IP6STAT_INC(ip6s_badscope);
597 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
598 		goto bad;
599 	}
600 #endif
601 #ifdef IPSEC
602 	/*
603 	 * Bypass packet filtering for packets previously handled by IPsec.
604 	 */
605 	if (ip6_ipsec_filtertunnel(m))
606 		goto passin;
607 #endif /* IPSEC */
608 
609 	/*
610 	 * Run through list of hooks for input packets.
611 	 *
612 	 * NB: Beware of the destination address changing
613 	 *     (e.g. by NAT rewriting).  When this happens,
614 	 *     tell ip6_forward to do the right thing.
615 	 */
616 	odst = ip6->ip6_dst;
617 
618 	/* Jump over all PFIL processing if hooks are not active. */
619 	if (!PFIL_HOOKED(&V_inet6_pfil_hook))
620 		goto passin;
621 
622 	if (pfil_run_hooks(&V_inet6_pfil_hook, &m,
623 	    m->m_pkthdr.rcvif, PFIL_IN, NULL))
624 		return;
625 	if (m == NULL)			/* consumed by filter */
626 		return;
627 	ip6 = mtod(m, struct ip6_hdr *);
628 	srcrt = !IN6_ARE_ADDR_EQUAL(&odst, &ip6->ip6_dst);
629 
630 	if (m->m_flags & M_FASTFWD_OURS) {
631 		m->m_flags &= ~M_FASTFWD_OURS;
632 		ours = 1;
633 		deliverifp = m->m_pkthdr.rcvif;
634 		goto hbhcheck;
635 	}
636 	if ((m->m_flags & M_IP6_NEXTHOP) &&
637 	    m_tag_find(m, PACKET_TAG_IPFORWARD, NULL) != NULL) {
638 		/*
639 		 * Directly ship the packet on.  This allows forwarding
640 		 * packets originally destined to us to some other directly
641 		 * connected host.
642 		 */
643 		ip6_forward(m, 1);
644 		goto out;
645 	}
646 
647 passin:
648 	/*
649 	 * Disambiguate address scope zones (if there is ambiguity).
650 	 * We first make sure that the original source or destination address
651 	 * is not in our internal form for scoped addresses.  Such addresses
652 	 * are not necessarily invalid spec-wise, but we cannot accept them due
653 	 * to the usage conflict.
654 	 * in6_setscope() then also checks and rejects the cases where src or
655 	 * dst are the loopback address and the receiving interface
656 	 * is not loopback.
657 	 */
658 	if (in6_clearscope(&ip6->ip6_src) || in6_clearscope(&ip6->ip6_dst)) {
659 		IP6STAT_INC(ip6s_badscope); /* XXX */
660 		goto bad;
661 	}
662 	if (in6_setscope(&ip6->ip6_src, m->m_pkthdr.rcvif, NULL) ||
663 	    in6_setscope(&ip6->ip6_dst, m->m_pkthdr.rcvif, NULL)) {
664 		IP6STAT_INC(ip6s_badscope);
665 		goto bad;
666 	}
667 
668 	/*
669 	 * Multicast check. Assume packet is for us to avoid
670 	 * prematurely taking locks.
671 	 */
672 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
673 		ours = 1;
674 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_mcast);
675 		deliverifp = m->m_pkthdr.rcvif;
676 		goto hbhcheck;
677 	}
678 
679 	/*
680 	 *  Unicast check
681 	 */
682 
683 	bzero(&dst6, sizeof(dst6));
684 	dst6.sin6_family = AF_INET6;
685 	dst6.sin6_len = sizeof(struct sockaddr_in6);
686 	dst6.sin6_addr = ip6->ip6_dst;
687 	ifp = m->m_pkthdr.rcvif;
688 	IF_AFDATA_RLOCK(ifp);
689 	lle = lla_lookup(LLTABLE6(ifp), 0,
690 	     (struct sockaddr *)&dst6);
691 	IF_AFDATA_RUNLOCK(ifp);
692 	if ((lle != NULL) && (lle->la_flags & LLE_IFADDR)) {
693 		struct ifaddr *ifa;
694 		struct in6_ifaddr *ia6;
695 		int bad;
696 
697 		bad = 1;
698 		IF_ADDR_RLOCK(ifp);
699 		TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
700 			if (ifa->ifa_addr->sa_family != dst6.sin6_family)
701 				continue;
702 			if (sa_equal(&dst6, ifa->ifa_addr))
703 				break;
704 		}
705 		KASSERT(ifa != NULL, ("%s: ifa not found for lle %p",
706 		    __func__, lle));
707 
708 		ia6 = (struct in6_ifaddr *)ifa;
709 		if (!(ia6->ia6_flags & IN6_IFF_NOTREADY)) {
710 			/* Count the packet in the ip address stats */
711 			counter_u64_add(ia6->ia_ifa.ifa_ipackets, 1);
712 			counter_u64_add(ia6->ia_ifa.ifa_ibytes,
713 			    m->m_pkthdr.len);
714 
715 			/*
716 			 * record address information into m_tag.
717 			 */
718 			(void)ip6_setdstifaddr(m, ia6);
719 
720 			bad = 0;
721 		} else {
722 			char ip6bufs[INET6_ADDRSTRLEN];
723 			char ip6bufd[INET6_ADDRSTRLEN];
724 			/* address is not ready, so discard the packet. */
725 			nd6log((LOG_INFO,
726 			    "ip6_input: packet to an unready address %s->%s\n",
727 			    ip6_sprintf(ip6bufs, &ip6->ip6_src),
728 			    ip6_sprintf(ip6bufd, &ip6->ip6_dst)));
729 		}
730 		IF_ADDR_RUNLOCK(ifp);
731 		LLE_RUNLOCK(lle);
732 		if (bad)
733 			goto bad;
734 		else {
735 			ours = 1;
736 			deliverifp = ifp;
737 			goto hbhcheck;
738 		}
739 	}
740 	if (lle != NULL)
741 		LLE_RUNLOCK(lle);
742 
743 	dst = &rin6.ro_dst;
744 	dst->sin6_len = sizeof(struct sockaddr_in6);
745 	dst->sin6_family = AF_INET6;
746 	dst->sin6_addr = ip6->ip6_dst;
747 	rin6.ro_rt = in6_rtalloc1((struct sockaddr *)dst, 0, 0, M_GETFIB(m));
748 	if (rin6.ro_rt)
749 		RT_UNLOCK(rin6.ro_rt);
750 
751 #define rt6_key(r) ((struct sockaddr_in6 *)((r)->rt_nodes->rn_key))
752 
753 	/*
754 	 * Accept the packet if the forwarding interface to the destination
755 	 * according to the routing table is the loopback interface,
756 	 * unless the associated route has a gateway.
757 	 * Note that this approach causes to accept a packet if there is a
758 	 * route to the loopback interface for the destination of the packet.
759 	 * But we think it's even useful in some situations, e.g. when using
760 	 * a special daemon which wants to intercept the packet.
761 	 *
762 	 * XXX: some OSes automatically make a cloned route for the destination
763 	 * of an outgoing packet.  If the outgoing interface of the packet
764 	 * is a loopback one, the kernel would consider the packet to be
765 	 * accepted, even if we have no such address assinged on the interface.
766 	 * We check the cloned flag of the route entry to reject such cases,
767 	 * assuming that route entries for our own addresses are not made by
768 	 * cloning (it should be true because in6_addloop explicitly installs
769 	 * the host route).  However, we might have to do an explicit check
770 	 * while it would be less efficient.  Or, should we rather install a
771 	 * reject route for such a case?
772 	 */
773 	if (rin6.ro_rt &&
774 	    (rin6.ro_rt->rt_flags &
775 	     (RTF_HOST|RTF_GATEWAY)) == RTF_HOST &&
776 #ifdef RTF_WASCLONED
777 	    !(rin6.ro_rt->rt_flags & RTF_WASCLONED) &&
778 #endif
779 #ifdef RTF_CLONED
780 	    !(rin6.ro_rt->rt_flags & RTF_CLONED) &&
781 #endif
782 #if 0
783 	    /*
784 	     * The check below is redundant since the comparison of
785 	     * the destination and the key of the rtentry has
786 	     * already done through looking up the routing table.
787 	     */
788 	    IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst,
789 	    &rt6_key(rin6.ro_rt)->sin6_addr)
790 #endif
791 	    rin6.ro_rt->rt_ifp->if_type == IFT_LOOP) {
792 		int free_ia6 = 0;
793 		struct in6_ifaddr *ia6;
794 
795 		/*
796 		 * found the loopback route to the interface address
797 		 */
798 		if (rin6.ro_rt->rt_gateway->sa_family == AF_LINK) {
799 			struct sockaddr_in6 dest6;
800 
801 			bzero(&dest6, sizeof(dest6));
802 			dest6.sin6_family = AF_INET6;
803 			dest6.sin6_len = sizeof(dest6);
804 			dest6.sin6_addr = ip6->ip6_dst;
805 			ia6 = (struct in6_ifaddr *)
806 			    ifa_ifwithaddr((struct sockaddr *)&dest6);
807 			if (ia6 == NULL)
808 				goto bad;
809 			free_ia6 = 1;
810 		}
811 		else
812 			ia6 = (struct in6_ifaddr *)rin6.ro_rt->rt_ifa;
813 
814 		/*
815 		 * record address information into m_tag.
816 		 */
817 		(void)ip6_setdstifaddr(m, ia6);
818 
819 		/*
820 		 * packets to a tentative, duplicated, or somehow invalid
821 		 * address must not be accepted.
822 		 */
823 		if (!(ia6->ia6_flags & IN6_IFF_NOTREADY)) {
824 			/* this address is ready */
825 			ours = 1;
826 			deliverifp = ia6->ia_ifp;	/* correct? */
827 			/* Count the packet in the ip address stats */
828 			counter_u64_add(ia6->ia_ifa.ifa_ipackets, 1);
829 			counter_u64_add(ia6->ia_ifa.ifa_ibytes,
830 			    m->m_pkthdr.len);
831 			if (free_ia6)
832 				ifa_free(&ia6->ia_ifa);
833 			goto hbhcheck;
834 		} else {
835 			char ip6bufs[INET6_ADDRSTRLEN];
836 			char ip6bufd[INET6_ADDRSTRLEN];
837 			/* address is not ready, so discard the packet. */
838 			nd6log((LOG_INFO,
839 			    "ip6_input: packet to an unready address %s->%s\n",
840 			    ip6_sprintf(ip6bufs, &ip6->ip6_src),
841 			    ip6_sprintf(ip6bufd, &ip6->ip6_dst)));
842 
843 			if (free_ia6)
844 				ifa_free(&ia6->ia_ifa);
845 			goto bad;
846 		}
847 	}
848 
849 	/*
850 	 * FAITH (Firewall Aided Internet Translator)
851 	 */
852 	if (V_ip6_keepfaith) {
853 		if (rin6.ro_rt && rin6.ro_rt->rt_ifp &&
854 		    rin6.ro_rt->rt_ifp->if_type == IFT_FAITH) {
855 			/* XXX do we need more sanity checks? */
856 			ours = 1;
857 			deliverifp = rin6.ro_rt->rt_ifp; /* faith */
858 			goto hbhcheck;
859 		}
860 	}
861 
862 	/*
863 	 * Now there is no reason to process the packet if it's not our own
864 	 * and we're not a router.
865 	 */
866 	if (!V_ip6_forwarding) {
867 		IP6STAT_INC(ip6s_cantforward);
868 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_discard);
869 		goto bad;
870 	}
871 
872   hbhcheck:
873 	/*
874 	 * record address information into m_tag, if we don't have one yet.
875 	 * note that we are unable to record it, if the address is not listed
876 	 * as our interface address (e.g. multicast addresses, addresses
877 	 * within FAITH prefixes and such).
878 	 */
879 	if (deliverifp) {
880 		struct in6_ifaddr *ia6;
881 
882  		if ((ia6 = ip6_getdstifaddr(m)) != NULL) {
883 			ifa_free(&ia6->ia_ifa);
884 		} else {
885 			ia6 = in6_ifawithifp(deliverifp, &ip6->ip6_dst);
886 			if (ia6) {
887 				if (!ip6_setdstifaddr(m, ia6)) {
888 					/*
889 					 * XXX maybe we should drop the packet here,
890 					 * as we could not provide enough information
891 					 * to the upper layers.
892 					 */
893 				}
894 				ifa_free(&ia6->ia_ifa);
895 			}
896 		}
897 	}
898 
899 	/*
900 	 * Process Hop-by-Hop options header if it's contained.
901 	 * m may be modified in ip6_hopopts_input().
902 	 * If a JumboPayload option is included, plen will also be modified.
903 	 */
904 	plen = (u_int32_t)ntohs(ip6->ip6_plen);
905 	if (ip6->ip6_nxt == IPPROTO_HOPOPTS) {
906 		int error;
907 
908 		error = ip6_input_hbh(m, &plen, &rtalert, &off, &nxt, &ours);
909 		if (error != 0)
910 			goto out;
911 	} else
912 		nxt = ip6->ip6_nxt;
913 
914 	/*
915 	 * Check that the amount of data in the buffers
916 	 * is as at least much as the IPv6 header would have us expect.
917 	 * Trim mbufs if longer than we expect.
918 	 * Drop packet if shorter than we expect.
919 	 */
920 	if (m->m_pkthdr.len - sizeof(struct ip6_hdr) < plen) {
921 		IP6STAT_INC(ip6s_tooshort);
922 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_truncated);
923 		goto bad;
924 	}
925 	if (m->m_pkthdr.len > sizeof(struct ip6_hdr) + plen) {
926 		if (m->m_len == m->m_pkthdr.len) {
927 			m->m_len = sizeof(struct ip6_hdr) + plen;
928 			m->m_pkthdr.len = sizeof(struct ip6_hdr) + plen;
929 		} else
930 			m_adj(m, sizeof(struct ip6_hdr) + plen - m->m_pkthdr.len);
931 	}
932 
933 	/*
934 	 * Forward if desirable.
935 	 */
936 	if (V_ip6_mrouter &&
937 	    IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
938 		/*
939 		 * If we are acting as a multicast router, all
940 		 * incoming multicast packets are passed to the
941 		 * kernel-level multicast forwarding function.
942 		 * The packet is returned (relatively) intact; if
943 		 * ip6_mforward() returns a non-zero value, the packet
944 		 * must be discarded, else it may be accepted below.
945 		 *
946 		 * XXX TODO: Check hlim and multicast scope here to avoid
947 		 * unnecessarily calling into ip6_mforward().
948 		 */
949 		if (ip6_mforward &&
950 		    ip6_mforward(ip6, m->m_pkthdr.rcvif, m)) {
951 			IP6STAT_INC(ip6s_cantforward);
952 			in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_discard);
953 			goto bad;
954 		}
955 	} else if (!ours) {
956 		ip6_forward(m, srcrt);
957 		goto out;
958 	}
959 
960 	ip6 = mtod(m, struct ip6_hdr *);
961 
962 	/*
963 	 * Malicious party may be able to use IPv4 mapped addr to confuse
964 	 * tcp/udp stack and bypass security checks (act as if it was from
965 	 * 127.0.0.1 by using IPv6 src ::ffff:127.0.0.1).  Be cautious.
966 	 *
967 	 * For SIIT end node behavior, you may want to disable the check.
968 	 * However, you will  become vulnerable to attacks using IPv4 mapped
969 	 * source.
970 	 */
971 	if (IN6_IS_ADDR_V4MAPPED(&ip6->ip6_src) ||
972 	    IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst)) {
973 		IP6STAT_INC(ip6s_badscope);
974 		in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
975 		goto bad;
976 	}
977 
978 	/*
979 	 * Tell launch routine the next header
980 	 */
981 	IP6STAT_INC(ip6s_delivered);
982 	in6_ifstat_inc(deliverifp, ifs6_in_deliver);
983 	nest = 0;
984 
985 	while (nxt != IPPROTO_DONE) {
986 		if (V_ip6_hdrnestlimit && (++nest > V_ip6_hdrnestlimit)) {
987 			IP6STAT_INC(ip6s_toomanyhdr);
988 			goto bad;
989 		}
990 
991 		/*
992 		 * protection against faulty packet - there should be
993 		 * more sanity checks in header chain processing.
994 		 */
995 		if (m->m_pkthdr.len < off) {
996 			IP6STAT_INC(ip6s_tooshort);
997 			in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_truncated);
998 			goto bad;
999 		}
1000 
1001 #ifdef IPSEC
1002 		/*
1003 		 * enforce IPsec policy checking if we are seeing last header.
1004 		 * note that we do not visit this with protocols with pcb layer
1005 		 * code - like udp/tcp/raw ip.
1006 		 */
1007 		if (ip6_ipsec_input(m, nxt))
1008 			goto bad;
1009 #endif /* IPSEC */
1010 
1011 		/*
1012 		 * Use mbuf flags to propagate Router Alert option to
1013 		 * ICMPv6 layer, as hop-by-hop options have been stripped.
1014 		 */
1015 		if (nxt == IPPROTO_ICMPV6 && rtalert != ~0)
1016 			m->m_flags |= M_RTALERT_MLD;
1017 
1018 		nxt = (*inet6sw[ip6_protox[nxt]].pr_input)(&m, &off, nxt);
1019 	}
1020 	goto out;
1021 bad:
1022 	m_freem(m);
1023 out:
1024 	if (rin6.ro_rt)
1025 		RTFREE(rin6.ro_rt);
1026 }
1027 
1028 /*
1029  * set/grab in6_ifaddr correspond to IPv6 destination address.
1030  * XXX backward compatibility wrapper
1031  *
1032  * XXXRW: We should bump the refcount on ia6 before sticking it in the m_tag,
1033  * and then bump it when the tag is copied, and release it when the tag is
1034  * freed.  Unfortunately, m_tags don't support deep copies (yet), so instead
1035  * we just bump the ia refcount when we receive it.  This should be fixed.
1036  */
1037 static struct ip6aux *
1038 ip6_setdstifaddr(struct mbuf *m, struct in6_ifaddr *ia6)
1039 {
1040 	struct ip6aux *ip6a;
1041 
1042 	ip6a = ip6_addaux(m);
1043 	if (ip6a)
1044 		ip6a->ip6a_dstia6 = ia6;
1045 	return ip6a;	/* NULL if failed to set */
1046 }
1047 
1048 struct in6_ifaddr *
1049 ip6_getdstifaddr(struct mbuf *m)
1050 {
1051 	struct ip6aux *ip6a;
1052 	struct in6_ifaddr *ia;
1053 
1054 	ip6a = ip6_findaux(m);
1055 	if (ip6a) {
1056 		ia = ip6a->ip6a_dstia6;
1057 		ifa_ref(&ia->ia_ifa);
1058 		return ia;
1059 	} else
1060 		return NULL;
1061 }
1062 
1063 /*
1064  * Hop-by-Hop options header processing. If a valid jumbo payload option is
1065  * included, the real payload length will be stored in plenp.
1066  *
1067  * rtalertp - XXX: should be stored more smart way
1068  */
1069 static int
1070 ip6_hopopts_input(u_int32_t *plenp, u_int32_t *rtalertp,
1071     struct mbuf **mp, int *offp)
1072 {
1073 	struct mbuf *m = *mp;
1074 	int off = *offp, hbhlen;
1075 	struct ip6_hbh *hbh;
1076 
1077 	/* validation of the length of the header */
1078 #ifndef PULLDOWN_TEST
1079 	IP6_EXTHDR_CHECK(m, off, sizeof(*hbh), -1);
1080 	hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off);
1081 	hbhlen = (hbh->ip6h_len + 1) << 3;
1082 
1083 	IP6_EXTHDR_CHECK(m, off, hbhlen, -1);
1084 	hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off);
1085 #else
1086 	IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m,
1087 		sizeof(struct ip6_hdr), sizeof(struct ip6_hbh));
1088 	if (hbh == NULL) {
1089 		IP6STAT_INC(ip6s_tooshort);
1090 		return -1;
1091 	}
1092 	hbhlen = (hbh->ip6h_len + 1) << 3;
1093 	IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m, sizeof(struct ip6_hdr),
1094 		hbhlen);
1095 	if (hbh == NULL) {
1096 		IP6STAT_INC(ip6s_tooshort);
1097 		return -1;
1098 	}
1099 #endif
1100 	off += hbhlen;
1101 	hbhlen -= sizeof(struct ip6_hbh);
1102 	if (ip6_process_hopopts(m, (u_int8_t *)hbh + sizeof(struct ip6_hbh),
1103 				hbhlen, rtalertp, plenp) < 0)
1104 		return (-1);
1105 
1106 	*offp = off;
1107 	*mp = m;
1108 	return (0);
1109 }
1110 
1111 /*
1112  * Search header for all Hop-by-hop options and process each option.
1113  * This function is separate from ip6_hopopts_input() in order to
1114  * handle a case where the sending node itself process its hop-by-hop
1115  * options header. In such a case, the function is called from ip6_output().
1116  *
1117  * The function assumes that hbh header is located right after the IPv6 header
1118  * (RFC2460 p7), opthead is pointer into data content in m, and opthead to
1119  * opthead + hbhlen is located in contiguous memory region.
1120  */
1121 int
1122 ip6_process_hopopts(struct mbuf *m, u_int8_t *opthead, int hbhlen,
1123     u_int32_t *rtalertp, u_int32_t *plenp)
1124 {
1125 	struct ip6_hdr *ip6;
1126 	int optlen = 0;
1127 	u_int8_t *opt = opthead;
1128 	u_int16_t rtalert_val;
1129 	u_int32_t jumboplen;
1130 	const int erroff = sizeof(struct ip6_hdr) + sizeof(struct ip6_hbh);
1131 
1132 	for (; hbhlen > 0; hbhlen -= optlen, opt += optlen) {
1133 		switch (*opt) {
1134 		case IP6OPT_PAD1:
1135 			optlen = 1;
1136 			break;
1137 		case IP6OPT_PADN:
1138 			if (hbhlen < IP6OPT_MINLEN) {
1139 				IP6STAT_INC(ip6s_toosmall);
1140 				goto bad;
1141 			}
1142 			optlen = *(opt + 1) + 2;
1143 			break;
1144 		case IP6OPT_ROUTER_ALERT:
1145 			/* XXX may need check for alignment */
1146 			if (hbhlen < IP6OPT_RTALERT_LEN) {
1147 				IP6STAT_INC(ip6s_toosmall);
1148 				goto bad;
1149 			}
1150 			if (*(opt + 1) != IP6OPT_RTALERT_LEN - 2) {
1151 				/* XXX stat */
1152 				icmp6_error(m, ICMP6_PARAM_PROB,
1153 				    ICMP6_PARAMPROB_HEADER,
1154 				    erroff + opt + 1 - opthead);
1155 				return (-1);
1156 			}
1157 			optlen = IP6OPT_RTALERT_LEN;
1158 			bcopy((caddr_t)(opt + 2), (caddr_t)&rtalert_val, 2);
1159 			*rtalertp = ntohs(rtalert_val);
1160 			break;
1161 		case IP6OPT_JUMBO:
1162 			/* XXX may need check for alignment */
1163 			if (hbhlen < IP6OPT_JUMBO_LEN) {
1164 				IP6STAT_INC(ip6s_toosmall);
1165 				goto bad;
1166 			}
1167 			if (*(opt + 1) != IP6OPT_JUMBO_LEN - 2) {
1168 				/* XXX stat */
1169 				icmp6_error(m, ICMP6_PARAM_PROB,
1170 				    ICMP6_PARAMPROB_HEADER,
1171 				    erroff + opt + 1 - opthead);
1172 				return (-1);
1173 			}
1174 			optlen = IP6OPT_JUMBO_LEN;
1175 
1176 			/*
1177 			 * IPv6 packets that have non 0 payload length
1178 			 * must not contain a jumbo payload option.
1179 			 */
1180 			ip6 = mtod(m, struct ip6_hdr *);
1181 			if (ip6->ip6_plen) {
1182 				IP6STAT_INC(ip6s_badoptions);
1183 				icmp6_error(m, ICMP6_PARAM_PROB,
1184 				    ICMP6_PARAMPROB_HEADER,
1185 				    erroff + opt - opthead);
1186 				return (-1);
1187 			}
1188 
1189 			/*
1190 			 * We may see jumbolen in unaligned location, so
1191 			 * we'd need to perform bcopy().
1192 			 */
1193 			bcopy(opt + 2, &jumboplen, sizeof(jumboplen));
1194 			jumboplen = (u_int32_t)htonl(jumboplen);
1195 
1196 #if 1
1197 			/*
1198 			 * if there are multiple jumbo payload options,
1199 			 * *plenp will be non-zero and the packet will be
1200 			 * rejected.
1201 			 * the behavior may need some debate in ipngwg -
1202 			 * multiple options does not make sense, however,
1203 			 * there's no explicit mention in specification.
1204 			 */
1205 			if (*plenp != 0) {
1206 				IP6STAT_INC(ip6s_badoptions);
1207 				icmp6_error(m, ICMP6_PARAM_PROB,
1208 				    ICMP6_PARAMPROB_HEADER,
1209 				    erroff + opt + 2 - opthead);
1210 				return (-1);
1211 			}
1212 #endif
1213 
1214 			/*
1215 			 * jumbo payload length must be larger than 65535.
1216 			 */
1217 			if (jumboplen <= IPV6_MAXPACKET) {
1218 				IP6STAT_INC(ip6s_badoptions);
1219 				icmp6_error(m, ICMP6_PARAM_PROB,
1220 				    ICMP6_PARAMPROB_HEADER,
1221 				    erroff + opt + 2 - opthead);
1222 				return (-1);
1223 			}
1224 			*plenp = jumboplen;
1225 
1226 			break;
1227 		default:		/* unknown option */
1228 			if (hbhlen < IP6OPT_MINLEN) {
1229 				IP6STAT_INC(ip6s_toosmall);
1230 				goto bad;
1231 			}
1232 			optlen = ip6_unknown_opt(opt, m,
1233 			    erroff + opt - opthead);
1234 			if (optlen == -1)
1235 				return (-1);
1236 			optlen += 2;
1237 			break;
1238 		}
1239 	}
1240 
1241 	return (0);
1242 
1243   bad:
1244 	m_freem(m);
1245 	return (-1);
1246 }
1247 
1248 /*
1249  * Unknown option processing.
1250  * The third argument `off' is the offset from the IPv6 header to the option,
1251  * which is necessary if the IPv6 header the and option header and IPv6 header
1252  * is not contiguous in order to return an ICMPv6 error.
1253  */
1254 int
1255 ip6_unknown_opt(u_int8_t *optp, struct mbuf *m, int off)
1256 {
1257 	struct ip6_hdr *ip6;
1258 
1259 	switch (IP6OPT_TYPE(*optp)) {
1260 	case IP6OPT_TYPE_SKIP: /* ignore the option */
1261 		return ((int)*(optp + 1));
1262 	case IP6OPT_TYPE_DISCARD:	/* silently discard */
1263 		m_freem(m);
1264 		return (-1);
1265 	case IP6OPT_TYPE_FORCEICMP: /* send ICMP even if multicasted */
1266 		IP6STAT_INC(ip6s_badoptions);
1267 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_OPTION, off);
1268 		return (-1);
1269 	case IP6OPT_TYPE_ICMP: /* send ICMP if not multicasted */
1270 		IP6STAT_INC(ip6s_badoptions);
1271 		ip6 = mtod(m, struct ip6_hdr *);
1272 		if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
1273 		    (m->m_flags & (M_BCAST|M_MCAST)))
1274 			m_freem(m);
1275 		else
1276 			icmp6_error(m, ICMP6_PARAM_PROB,
1277 				    ICMP6_PARAMPROB_OPTION, off);
1278 		return (-1);
1279 	}
1280 
1281 	m_freem(m);		/* XXX: NOTREACHED */
1282 	return (-1);
1283 }
1284 
1285 /*
1286  * Create the "control" list for this pcb.
1287  * These functions will not modify mbuf chain at all.
1288  *
1289  * With KAME mbuf chain restriction:
1290  * The routine will be called from upper layer handlers like tcp6_input().
1291  * Thus the routine assumes that the caller (tcp6_input) have already
1292  * called IP6_EXTHDR_CHECK() and all the extension headers are located in the
1293  * very first mbuf on the mbuf chain.
1294  *
1295  * ip6_savecontrol_v4 will handle those options that are possible to be
1296  * set on a v4-mapped socket.
1297  * ip6_savecontrol will directly call ip6_savecontrol_v4 to handle those
1298  * options and handle the v6-only ones itself.
1299  */
1300 struct mbuf **
1301 ip6_savecontrol_v4(struct inpcb *inp, struct mbuf *m, struct mbuf **mp,
1302     int *v4only)
1303 {
1304 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
1305 
1306 #ifdef SO_TIMESTAMP
1307 	if ((inp->inp_socket->so_options & SO_TIMESTAMP) != 0) {
1308 		struct timeval tv;
1309 
1310 		microtime(&tv);
1311 		*mp = sbcreatecontrol((caddr_t) &tv, sizeof(tv),
1312 		    SCM_TIMESTAMP, SOL_SOCKET);
1313 		if (*mp)
1314 			mp = &(*mp)->m_next;
1315 	}
1316 #endif
1317 
1318 #define IS2292(inp, x, y)	(((inp)->inp_flags & IN6P_RFC2292) ? (x) : (y))
1319 	/* RFC 2292 sec. 5 */
1320 	if ((inp->inp_flags & IN6P_PKTINFO) != 0) {
1321 		struct in6_pktinfo pi6;
1322 
1323 		if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
1324 #ifdef INET
1325 			struct ip *ip;
1326 
1327 			ip = mtod(m, struct ip *);
1328 			pi6.ipi6_addr.s6_addr32[0] = 0;
1329 			pi6.ipi6_addr.s6_addr32[1] = 0;
1330 			pi6.ipi6_addr.s6_addr32[2] = IPV6_ADDR_INT32_SMP;
1331 			pi6.ipi6_addr.s6_addr32[3] = ip->ip_dst.s_addr;
1332 #else
1333 			/* We won't hit this code */
1334 			bzero(&pi6.ipi6_addr, sizeof(struct in6_addr));
1335 #endif
1336 		} else {
1337 			bcopy(&ip6->ip6_dst, &pi6.ipi6_addr, sizeof(struct in6_addr));
1338 			in6_clearscope(&pi6.ipi6_addr);	/* XXX */
1339 		}
1340 		pi6.ipi6_ifindex =
1341 		    (m && m->m_pkthdr.rcvif) ? m->m_pkthdr.rcvif->if_index : 0;
1342 
1343 		*mp = sbcreatecontrol((caddr_t) &pi6,
1344 		    sizeof(struct in6_pktinfo),
1345 		    IS2292(inp, IPV6_2292PKTINFO, IPV6_PKTINFO), IPPROTO_IPV6);
1346 		if (*mp)
1347 			mp = &(*mp)->m_next;
1348 	}
1349 
1350 	if ((inp->inp_flags & IN6P_HOPLIMIT) != 0) {
1351 		int hlim;
1352 
1353 		if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
1354 #ifdef INET
1355 			struct ip *ip;
1356 
1357 			ip = mtod(m, struct ip *);
1358 			hlim = ip->ip_ttl;
1359 #else
1360 			/* We won't hit this code */
1361 			hlim = 0;
1362 #endif
1363 		} else {
1364 			hlim = ip6->ip6_hlim & 0xff;
1365 		}
1366 		*mp = sbcreatecontrol((caddr_t) &hlim, sizeof(int),
1367 		    IS2292(inp, IPV6_2292HOPLIMIT, IPV6_HOPLIMIT),
1368 		    IPPROTO_IPV6);
1369 		if (*mp)
1370 			mp = &(*mp)->m_next;
1371 	}
1372 
1373 	if ((inp->inp_flags & IN6P_TCLASS) != 0) {
1374 		int tclass;
1375 
1376 		if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
1377 #ifdef INET
1378 			struct ip *ip;
1379 
1380 			ip = mtod(m, struct ip *);
1381 			tclass = ip->ip_tos;
1382 #else
1383 			/* We won't hit this code */
1384 			tclass = 0;
1385 #endif
1386 		} else {
1387 			u_int32_t flowinfo;
1388 
1389 			flowinfo = (u_int32_t)ntohl(ip6->ip6_flow & IPV6_FLOWINFO_MASK);
1390 			flowinfo >>= 20;
1391 			tclass = flowinfo & 0xff;
1392 		}
1393 		*mp = sbcreatecontrol((caddr_t) &tclass, sizeof(int),
1394 		    IPV6_TCLASS, IPPROTO_IPV6);
1395 		if (*mp)
1396 			mp = &(*mp)->m_next;
1397 	}
1398 
1399 	if (v4only != NULL) {
1400 		if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
1401 			*v4only = 1;
1402 		} else {
1403 			*v4only = 0;
1404 		}
1405 	}
1406 
1407 	return (mp);
1408 }
1409 
1410 void
1411 ip6_savecontrol(struct inpcb *in6p, struct mbuf *m, struct mbuf **mp)
1412 {
1413 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
1414 	int v4only = 0;
1415 
1416 	mp = ip6_savecontrol_v4(in6p, m, mp, &v4only);
1417 	if (v4only)
1418 		return;
1419 
1420 	/*
1421 	 * IPV6_HOPOPTS socket option.  Recall that we required super-user
1422 	 * privilege for the option (see ip6_ctloutput), but it might be too
1423 	 * strict, since there might be some hop-by-hop options which can be
1424 	 * returned to normal user.
1425 	 * See also RFC 2292 section 6 (or RFC 3542 section 8).
1426 	 */
1427 	if ((in6p->inp_flags & IN6P_HOPOPTS) != 0) {
1428 		/*
1429 		 * Check if a hop-by-hop options header is contatined in the
1430 		 * received packet, and if so, store the options as ancillary
1431 		 * data. Note that a hop-by-hop options header must be
1432 		 * just after the IPv6 header, which is assured through the
1433 		 * IPv6 input processing.
1434 		 */
1435 		if (ip6->ip6_nxt == IPPROTO_HOPOPTS) {
1436 			struct ip6_hbh *hbh;
1437 			int hbhlen = 0;
1438 #ifdef PULLDOWN_TEST
1439 			struct mbuf *ext;
1440 #endif
1441 
1442 #ifndef PULLDOWN_TEST
1443 			hbh = (struct ip6_hbh *)(ip6 + 1);
1444 			hbhlen = (hbh->ip6h_len + 1) << 3;
1445 #else
1446 			ext = ip6_pullexthdr(m, sizeof(struct ip6_hdr),
1447 			    ip6->ip6_nxt);
1448 			if (ext == NULL) {
1449 				IP6STAT_INC(ip6s_tooshort);
1450 				return;
1451 			}
1452 			hbh = mtod(ext, struct ip6_hbh *);
1453 			hbhlen = (hbh->ip6h_len + 1) << 3;
1454 			if (hbhlen != ext->m_len) {
1455 				m_freem(ext);
1456 				IP6STAT_INC(ip6s_tooshort);
1457 				return;
1458 			}
1459 #endif
1460 
1461 			/*
1462 			 * XXX: We copy the whole header even if a
1463 			 * jumbo payload option is included, the option which
1464 			 * is to be removed before returning according to
1465 			 * RFC2292.
1466 			 * Note: this constraint is removed in RFC3542
1467 			 */
1468 			*mp = sbcreatecontrol((caddr_t)hbh, hbhlen,
1469 			    IS2292(in6p, IPV6_2292HOPOPTS, IPV6_HOPOPTS),
1470 			    IPPROTO_IPV6);
1471 			if (*mp)
1472 				mp = &(*mp)->m_next;
1473 #ifdef PULLDOWN_TEST
1474 			m_freem(ext);
1475 #endif
1476 		}
1477 	}
1478 
1479 	if ((in6p->inp_flags & (IN6P_RTHDR | IN6P_DSTOPTS)) != 0) {
1480 		int nxt = ip6->ip6_nxt, off = sizeof(struct ip6_hdr);
1481 
1482 		/*
1483 		 * Search for destination options headers or routing
1484 		 * header(s) through the header chain, and stores each
1485 		 * header as ancillary data.
1486 		 * Note that the order of the headers remains in
1487 		 * the chain of ancillary data.
1488 		 */
1489 		while (1) {	/* is explicit loop prevention necessary? */
1490 			struct ip6_ext *ip6e = NULL;
1491 			int elen;
1492 #ifdef PULLDOWN_TEST
1493 			struct mbuf *ext = NULL;
1494 #endif
1495 
1496 			/*
1497 			 * if it is not an extension header, don't try to
1498 			 * pull it from the chain.
1499 			 */
1500 			switch (nxt) {
1501 			case IPPROTO_DSTOPTS:
1502 			case IPPROTO_ROUTING:
1503 			case IPPROTO_HOPOPTS:
1504 			case IPPROTO_AH: /* is it possible? */
1505 				break;
1506 			default:
1507 				goto loopend;
1508 			}
1509 
1510 #ifndef PULLDOWN_TEST
1511 			if (off + sizeof(*ip6e) > m->m_len)
1512 				goto loopend;
1513 			ip6e = (struct ip6_ext *)(mtod(m, caddr_t) + off);
1514 			if (nxt == IPPROTO_AH)
1515 				elen = (ip6e->ip6e_len + 2) << 2;
1516 			else
1517 				elen = (ip6e->ip6e_len + 1) << 3;
1518 			if (off + elen > m->m_len)
1519 				goto loopend;
1520 #else
1521 			ext = ip6_pullexthdr(m, off, nxt);
1522 			if (ext == NULL) {
1523 				IP6STAT_INC(ip6s_tooshort);
1524 				return;
1525 			}
1526 			ip6e = mtod(ext, struct ip6_ext *);
1527 			if (nxt == IPPROTO_AH)
1528 				elen = (ip6e->ip6e_len + 2) << 2;
1529 			else
1530 				elen = (ip6e->ip6e_len + 1) << 3;
1531 			if (elen != ext->m_len) {
1532 				m_freem(ext);
1533 				IP6STAT_INC(ip6s_tooshort);
1534 				return;
1535 			}
1536 #endif
1537 
1538 			switch (nxt) {
1539 			case IPPROTO_DSTOPTS:
1540 				if (!(in6p->inp_flags & IN6P_DSTOPTS))
1541 					break;
1542 
1543 				*mp = sbcreatecontrol((caddr_t)ip6e, elen,
1544 				    IS2292(in6p,
1545 					IPV6_2292DSTOPTS, IPV6_DSTOPTS),
1546 				    IPPROTO_IPV6);
1547 				if (*mp)
1548 					mp = &(*mp)->m_next;
1549 				break;
1550 			case IPPROTO_ROUTING:
1551 				if (!(in6p->inp_flags & IN6P_RTHDR))
1552 					break;
1553 
1554 				*mp = sbcreatecontrol((caddr_t)ip6e, elen,
1555 				    IS2292(in6p, IPV6_2292RTHDR, IPV6_RTHDR),
1556 				    IPPROTO_IPV6);
1557 				if (*mp)
1558 					mp = &(*mp)->m_next;
1559 				break;
1560 			case IPPROTO_HOPOPTS:
1561 			case IPPROTO_AH: /* is it possible? */
1562 				break;
1563 
1564 			default:
1565 				/*
1566 				 * other cases have been filtered in the above.
1567 				 * none will visit this case.  here we supply
1568 				 * the code just in case (nxt overwritten or
1569 				 * other cases).
1570 				 */
1571 #ifdef PULLDOWN_TEST
1572 				m_freem(ext);
1573 #endif
1574 				goto loopend;
1575 
1576 			}
1577 
1578 			/* proceed with the next header. */
1579 			off += elen;
1580 			nxt = ip6e->ip6e_nxt;
1581 			ip6e = NULL;
1582 #ifdef PULLDOWN_TEST
1583 			m_freem(ext);
1584 			ext = NULL;
1585 #endif
1586 		}
1587 	  loopend:
1588 		;
1589 	}
1590 }
1591 #undef IS2292
1592 
1593 void
1594 ip6_notify_pmtu(struct inpcb *in6p, struct sockaddr_in6 *dst, u_int32_t *mtu)
1595 {
1596 	struct socket *so;
1597 	struct mbuf *m_mtu;
1598 	struct ip6_mtuinfo mtuctl;
1599 
1600 	so =  in6p->inp_socket;
1601 
1602 	if (mtu == NULL)
1603 		return;
1604 
1605 #ifdef DIAGNOSTIC
1606 	if (so == NULL)		/* I believe this is impossible */
1607 		panic("ip6_notify_pmtu: socket is NULL");
1608 #endif
1609 
1610 	bzero(&mtuctl, sizeof(mtuctl));	/* zero-clear for safety */
1611 	mtuctl.ip6m_mtu = *mtu;
1612 	mtuctl.ip6m_addr = *dst;
1613 	if (sa6_recoverscope(&mtuctl.ip6m_addr))
1614 		return;
1615 
1616 	if ((m_mtu = sbcreatecontrol((caddr_t)&mtuctl, sizeof(mtuctl),
1617 	    IPV6_PATHMTU, IPPROTO_IPV6)) == NULL)
1618 		return;
1619 
1620 	if (sbappendaddr(&so->so_rcv, (struct sockaddr *)dst, NULL, m_mtu)
1621 	    == 0) {
1622 		m_freem(m_mtu);
1623 		/* XXX: should count statistics */
1624 	} else
1625 		sorwakeup(so);
1626 
1627 	return;
1628 }
1629 
1630 #ifdef PULLDOWN_TEST
1631 /*
1632  * pull single extension header from mbuf chain.  returns single mbuf that
1633  * contains the result, or NULL on error.
1634  */
1635 static struct mbuf *
1636 ip6_pullexthdr(struct mbuf *m, size_t off, int nxt)
1637 {
1638 	struct ip6_ext ip6e;
1639 	size_t elen;
1640 	struct mbuf *n;
1641 
1642 #ifdef DIAGNOSTIC
1643 	switch (nxt) {
1644 	case IPPROTO_DSTOPTS:
1645 	case IPPROTO_ROUTING:
1646 	case IPPROTO_HOPOPTS:
1647 	case IPPROTO_AH: /* is it possible? */
1648 		break;
1649 	default:
1650 		printf("ip6_pullexthdr: invalid nxt=%d\n", nxt);
1651 	}
1652 #endif
1653 
1654 	m_copydata(m, off, sizeof(ip6e), (caddr_t)&ip6e);
1655 	if (nxt == IPPROTO_AH)
1656 		elen = (ip6e.ip6e_len + 2) << 2;
1657 	else
1658 		elen = (ip6e.ip6e_len + 1) << 3;
1659 
1660 	if (elen > MLEN)
1661 		n = m_getcl(M_NOWAIT, MT_DATA, 0);
1662 	else
1663 		n = m_get(M_NOWAIT, MT_DATA);
1664 	if (n == NULL)
1665 		return NULL;
1666 
1667 	m_copydata(m, off, elen, mtod(n, caddr_t));
1668 	n->m_len = elen;
1669 	return n;
1670 }
1671 #endif
1672 
1673 /*
1674  * Get pointer to the previous header followed by the header
1675  * currently processed.
1676  * XXX: This function supposes that
1677  *	M includes all headers,
1678  *	the next header field and the header length field of each header
1679  *	are valid, and
1680  *	the sum of each header length equals to OFF.
1681  * Because of these assumptions, this function must be called very
1682  * carefully. Moreover, it will not be used in the near future when
1683  * we develop `neater' mechanism to process extension headers.
1684  */
1685 char *
1686 ip6_get_prevhdr(struct mbuf *m, int off)
1687 {
1688 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
1689 
1690 	if (off == sizeof(struct ip6_hdr))
1691 		return (&ip6->ip6_nxt);
1692 	else {
1693 		int len, nxt;
1694 		struct ip6_ext *ip6e = NULL;
1695 
1696 		nxt = ip6->ip6_nxt;
1697 		len = sizeof(struct ip6_hdr);
1698 		while (len < off) {
1699 			ip6e = (struct ip6_ext *)(mtod(m, caddr_t) + len);
1700 
1701 			switch (nxt) {
1702 			case IPPROTO_FRAGMENT:
1703 				len += sizeof(struct ip6_frag);
1704 				break;
1705 			case IPPROTO_AH:
1706 				len += (ip6e->ip6e_len + 2) << 2;
1707 				break;
1708 			default:
1709 				len += (ip6e->ip6e_len + 1) << 3;
1710 				break;
1711 			}
1712 			nxt = ip6e->ip6e_nxt;
1713 		}
1714 		if (ip6e)
1715 			return (&ip6e->ip6e_nxt);
1716 		else
1717 			return NULL;
1718 	}
1719 }
1720 
1721 /*
1722  * get next header offset.  m will be retained.
1723  */
1724 int
1725 ip6_nexthdr(struct mbuf *m, int off, int proto, int *nxtp)
1726 {
1727 	struct ip6_hdr ip6;
1728 	struct ip6_ext ip6e;
1729 	struct ip6_frag fh;
1730 
1731 	/* just in case */
1732 	if (m == NULL)
1733 		panic("ip6_nexthdr: m == NULL");
1734 	if ((m->m_flags & M_PKTHDR) == 0 || m->m_pkthdr.len < off)
1735 		return -1;
1736 
1737 	switch (proto) {
1738 	case IPPROTO_IPV6:
1739 		if (m->m_pkthdr.len < off + sizeof(ip6))
1740 			return -1;
1741 		m_copydata(m, off, sizeof(ip6), (caddr_t)&ip6);
1742 		if (nxtp)
1743 			*nxtp = ip6.ip6_nxt;
1744 		off += sizeof(ip6);
1745 		return off;
1746 
1747 	case IPPROTO_FRAGMENT:
1748 		/*
1749 		 * terminate parsing if it is not the first fragment,
1750 		 * it does not make sense to parse through it.
1751 		 */
1752 		if (m->m_pkthdr.len < off + sizeof(fh))
1753 			return -1;
1754 		m_copydata(m, off, sizeof(fh), (caddr_t)&fh);
1755 		/* IP6F_OFF_MASK = 0xfff8(BigEndian), 0xf8ff(LittleEndian) */
1756 		if (fh.ip6f_offlg & IP6F_OFF_MASK)
1757 			return -1;
1758 		if (nxtp)
1759 			*nxtp = fh.ip6f_nxt;
1760 		off += sizeof(struct ip6_frag);
1761 		return off;
1762 
1763 	case IPPROTO_AH:
1764 		if (m->m_pkthdr.len < off + sizeof(ip6e))
1765 			return -1;
1766 		m_copydata(m, off, sizeof(ip6e), (caddr_t)&ip6e);
1767 		if (nxtp)
1768 			*nxtp = ip6e.ip6e_nxt;
1769 		off += (ip6e.ip6e_len + 2) << 2;
1770 		return off;
1771 
1772 	case IPPROTO_HOPOPTS:
1773 	case IPPROTO_ROUTING:
1774 	case IPPROTO_DSTOPTS:
1775 		if (m->m_pkthdr.len < off + sizeof(ip6e))
1776 			return -1;
1777 		m_copydata(m, off, sizeof(ip6e), (caddr_t)&ip6e);
1778 		if (nxtp)
1779 			*nxtp = ip6e.ip6e_nxt;
1780 		off += (ip6e.ip6e_len + 1) << 3;
1781 		return off;
1782 
1783 	case IPPROTO_NONE:
1784 	case IPPROTO_ESP:
1785 	case IPPROTO_IPCOMP:
1786 		/* give up */
1787 		return -1;
1788 
1789 	default:
1790 		return -1;
1791 	}
1792 
1793 	return -1;
1794 }
1795 
1796 /*
1797  * get offset for the last header in the chain.  m will be kept untainted.
1798  */
1799 int
1800 ip6_lasthdr(struct mbuf *m, int off, int proto, int *nxtp)
1801 {
1802 	int newoff;
1803 	int nxt;
1804 
1805 	if (!nxtp) {
1806 		nxt = -1;
1807 		nxtp = &nxt;
1808 	}
1809 	while (1) {
1810 		newoff = ip6_nexthdr(m, off, proto, nxtp);
1811 		if (newoff < 0)
1812 			return off;
1813 		else if (newoff < off)
1814 			return -1;	/* invalid */
1815 		else if (newoff == off)
1816 			return newoff;
1817 
1818 		off = newoff;
1819 		proto = *nxtp;
1820 	}
1821 }
1822 
1823 static struct ip6aux *
1824 ip6_addaux(struct mbuf *m)
1825 {
1826 	struct m_tag *mtag;
1827 
1828 	mtag = m_tag_find(m, PACKET_TAG_IPV6_INPUT, NULL);
1829 	if (!mtag) {
1830 		mtag = m_tag_get(PACKET_TAG_IPV6_INPUT, sizeof(struct ip6aux),
1831 		    M_NOWAIT);
1832 		if (mtag) {
1833 			m_tag_prepend(m, mtag);
1834 			bzero(mtag + 1, sizeof(struct ip6aux));
1835 		}
1836 	}
1837 	return mtag ? (struct ip6aux *)(mtag + 1) : NULL;
1838 }
1839 
1840 static struct ip6aux *
1841 ip6_findaux(struct mbuf *m)
1842 {
1843 	struct m_tag *mtag;
1844 
1845 	mtag = m_tag_find(m, PACKET_TAG_IPV6_INPUT, NULL);
1846 	return mtag ? (struct ip6aux *)(mtag + 1) : NULL;
1847 }
1848 
1849 static void
1850 ip6_delaux(struct mbuf *m)
1851 {
1852 	struct m_tag *mtag;
1853 
1854 	mtag = m_tag_find(m, PACKET_TAG_IPV6_INPUT, NULL);
1855 	if (mtag)
1856 		m_tag_delete(m, mtag);
1857 }
1858 
1859 /*
1860  * System control for IP6
1861  */
1862 
1863 u_char	inet6ctlerrmap[PRC_NCMDS] = {
1864 	0,		0,		0,		0,
1865 	0,		EMSGSIZE,	EHOSTDOWN,	EHOSTUNREACH,
1866 	EHOSTUNREACH,	EHOSTUNREACH,	ECONNREFUSED,	ECONNREFUSED,
1867 	EMSGSIZE,	EHOSTUNREACH,	0,		0,
1868 	0,		0,		0,		0,
1869 	ENOPROTOOPT
1870 };
1871