xref: /freebsd/sys/netinet6/ip6_output.c (revision 3aff4ccdd714105db340d68f1a2aea2f46e99122)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the project nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  *	$KAME: ip6_output.c,v 1.279 2002/01/26 06:12:30 jinmei Exp $
32  */
33 
34 /*-
35  * Copyright (c) 1982, 1986, 1988, 1990, 1993
36  *	The Regents of the University of California.  All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  * 1. Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions and the following disclaimer.
43  * 2. Redistributions in binary form must reproduce the above copyright
44  *    notice, this list of conditions and the following disclaimer in the
45  *    documentation and/or other materials provided with the distribution.
46  * 3. Neither the name of the University nor the names of its contributors
47  *    may be used to endorse or promote products derived from this software
48  *    without specific prior written permission.
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
51  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
54  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60  * SUCH DAMAGE.
61  *
62  *	@(#)ip_output.c	8.3 (Berkeley) 1/21/94
63  */
64 
65 #include <sys/cdefs.h>
66 __FBSDID("$FreeBSD$");
67 
68 #include "opt_inet.h"
69 #include "opt_inet6.h"
70 #include "opt_ipsec.h"
71 #include "opt_kern_tls.h"
72 #include "opt_ratelimit.h"
73 #include "opt_route.h"
74 #include "opt_rss.h"
75 #include "opt_sctp.h"
76 
77 #include <sys/param.h>
78 #include <sys/kernel.h>
79 #include <sys/ktls.h>
80 #include <sys/malloc.h>
81 #include <sys/mbuf.h>
82 #include <sys/errno.h>
83 #include <sys/priv.h>
84 #include <sys/proc.h>
85 #include <sys/protosw.h>
86 #include <sys/socket.h>
87 #include <sys/socketvar.h>
88 #include <sys/syslog.h>
89 #include <sys/ucred.h>
90 
91 #include <machine/in_cksum.h>
92 
93 #include <net/if.h>
94 #include <net/if_var.h>
95 #include <net/if_private.h>
96 #include <net/if_vlan_var.h>
97 #include <net/if_llatbl.h>
98 #include <net/ethernet.h>
99 #include <net/netisr.h>
100 #include <net/route.h>
101 #include <net/route/nhop.h>
102 #include <net/pfil.h>
103 #include <net/rss_config.h>
104 #include <net/vnet.h>
105 
106 #include <netinet/in.h>
107 #include <netinet/in_var.h>
108 #include <netinet/ip_var.h>
109 #include <netinet6/in6_fib.h>
110 #include <netinet6/in6_var.h>
111 #include <netinet/ip6.h>
112 #include <netinet/icmp6.h>
113 #include <netinet6/ip6_var.h>
114 #include <netinet/in_pcb.h>
115 #include <netinet/tcp_var.h>
116 #include <netinet6/nd6.h>
117 #include <netinet6/in6_rss.h>
118 
119 #include <netipsec/ipsec_support.h>
120 #if defined(SCTP) || defined(SCTP_SUPPORT)
121 #include <netinet/sctp.h>
122 #include <netinet/sctp_crc32.h>
123 #endif
124 
125 #include <netinet6/scope6_var.h>
126 
127 extern int in6_mcast_loop;
128 
129 struct ip6_exthdrs {
130 	struct mbuf *ip6e_ip6;
131 	struct mbuf *ip6e_hbh;
132 	struct mbuf *ip6e_dest1;
133 	struct mbuf *ip6e_rthdr;
134 	struct mbuf *ip6e_dest2;
135 };
136 
137 static MALLOC_DEFINE(M_IP6OPT, "ip6opt", "IPv6 options");
138 
139 static int ip6_pcbopt(int, u_char *, int, struct ip6_pktopts **,
140 			   struct ucred *, int);
141 static int ip6_pcbopts(struct ip6_pktopts **, struct mbuf *,
142 	struct socket *, struct sockopt *);
143 static int ip6_getpcbopt(struct inpcb *, int, struct sockopt *);
144 static int ip6_setpktopt(int, u_char *, int, struct ip6_pktopts *,
145 	struct ucred *, int, int, int);
146 
147 static int ip6_copyexthdr(struct mbuf **, caddr_t, int);
148 static int ip6_insertfraghdr(struct mbuf *, struct mbuf *, int,
149 	struct ip6_frag **);
150 static int ip6_insert_jumboopt(struct ip6_exthdrs *, u_int32_t);
151 static int ip6_splithdr(struct mbuf *, struct ip6_exthdrs *);
152 static int ip6_getpmtu(struct route_in6 *, int,
153 	struct ifnet *, const struct in6_addr *, u_long *, int *, u_int,
154 	u_int);
155 static int ip6_calcmtu(struct ifnet *, const struct in6_addr *, u_long,
156 	u_long *, int *, u_int);
157 static int ip6_getpmtu_ctl(u_int, const struct in6_addr *, u_long *);
158 static int copypktopts(struct ip6_pktopts *, struct ip6_pktopts *, int);
159 
160 /*
161  * Make an extension header from option data.  hp is the source,
162  * mp is the destination, and _ol is the optlen.
163  */
164 #define	MAKE_EXTHDR(hp, mp, _ol)					\
165     do {								\
166 	if (hp) {							\
167 		struct ip6_ext *eh = (struct ip6_ext *)(hp);		\
168 		error = ip6_copyexthdr((mp), (caddr_t)(hp),		\
169 		    ((eh)->ip6e_len + 1) << 3);				\
170 		if (error)						\
171 			goto freehdrs;					\
172 		(_ol) += (*(mp))->m_len;				\
173 	}								\
174     } while (/*CONSTCOND*/ 0)
175 
176 /*
177  * Form a chain of extension headers.
178  * m is the extension header mbuf
179  * mp is the previous mbuf in the chain
180  * p is the next header
181  * i is the type of option.
182  */
183 #define MAKE_CHAIN(m, mp, p, i)\
184     do {\
185 	if (m) {\
186 		if (!hdrsplit) \
187 			panic("%s:%d: assumption failed: "\
188 			    "hdr not split: hdrsplit %d exthdrs %p",\
189 			    __func__, __LINE__, hdrsplit, &exthdrs);\
190 		*mtod((m), u_char *) = *(p);\
191 		*(p) = (i);\
192 		p = mtod((m), u_char *);\
193 		(m)->m_next = (mp)->m_next;\
194 		(mp)->m_next = (m);\
195 		(mp) = (m);\
196 	}\
197     } while (/*CONSTCOND*/ 0)
198 
199 void
200 in6_delayed_cksum(struct mbuf *m, uint32_t plen, u_short offset)
201 {
202 	u_short csum;
203 
204 	csum = in_cksum_skip(m, offset + plen, offset);
205 	if (m->m_pkthdr.csum_flags & CSUM_UDP_IPV6 && csum == 0)
206 		csum = 0xffff;
207 	offset += m->m_pkthdr.csum_data;	/* checksum offset */
208 
209 	if (offset + sizeof(csum) > m->m_len)
210 		m_copyback(m, offset, sizeof(csum), (caddr_t)&csum);
211 	else
212 		*(u_short *)mtodo(m, offset) = csum;
213 }
214 
215 static void
216 ip6_output_delayed_csum(struct mbuf *m, struct ifnet *ifp, int csum_flags,
217     int plen, int optlen)
218 {
219 
220 	KASSERT((plen >= optlen), ("%s:%d: plen %d < optlen %d, m %p, ifp %p "
221 	    "csum_flags %#x",
222 	    __func__, __LINE__, plen, optlen, m, ifp, csum_flags));
223 
224 	if (csum_flags & CSUM_DELAY_DATA_IPV6) {
225 		in6_delayed_cksum(m, plen - optlen,
226 		    sizeof(struct ip6_hdr) + optlen);
227 		m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA_IPV6;
228 	}
229 #if defined(SCTP) || defined(SCTP_SUPPORT)
230 	if (csum_flags & CSUM_SCTP_IPV6) {
231 		sctp_delayed_cksum(m, sizeof(struct ip6_hdr) + optlen);
232 		m->m_pkthdr.csum_flags &= ~CSUM_SCTP_IPV6;
233 	}
234 #endif
235 }
236 
237 int
238 ip6_fragment(struct ifnet *ifp, struct mbuf *m0, int hlen, u_char nextproto,
239     int fraglen , uint32_t id)
240 {
241 	struct mbuf *m, **mnext, *m_frgpart;
242 	struct ip6_hdr *ip6, *mhip6;
243 	struct ip6_frag *ip6f;
244 	int off;
245 	int error;
246 	int tlen = m0->m_pkthdr.len;
247 
248 	KASSERT((fraglen % 8 == 0), ("Fragment length must be a multiple of 8"));
249 
250 	m = m0;
251 	ip6 = mtod(m, struct ip6_hdr *);
252 	mnext = &m->m_nextpkt;
253 
254 	for (off = hlen; off < tlen; off += fraglen) {
255 		m = m_gethdr(M_NOWAIT, MT_DATA);
256 		if (!m) {
257 			IP6STAT_INC(ip6s_odropped);
258 			return (ENOBUFS);
259 		}
260 
261 		/*
262 		 * Make sure the complete packet header gets copied
263 		 * from the originating mbuf to the newly created
264 		 * mbuf. This also ensures that existing firewall
265 		 * classification(s), VLAN tags and so on get copied
266 		 * to the resulting fragmented packet(s):
267 		 */
268 		if (m_dup_pkthdr(m, m0, M_NOWAIT) == 0) {
269 			m_free(m);
270 			IP6STAT_INC(ip6s_odropped);
271 			return (ENOBUFS);
272 		}
273 
274 		*mnext = m;
275 		mnext = &m->m_nextpkt;
276 		m->m_data += max_linkhdr;
277 		mhip6 = mtod(m, struct ip6_hdr *);
278 		*mhip6 = *ip6;
279 		m->m_len = sizeof(*mhip6);
280 		error = ip6_insertfraghdr(m0, m, hlen, &ip6f);
281 		if (error) {
282 			IP6STAT_INC(ip6s_odropped);
283 			return (error);
284 		}
285 		ip6f->ip6f_offlg = htons((u_short)((off - hlen) & ~7));
286 		if (off + fraglen >= tlen)
287 			fraglen = tlen - off;
288 		else
289 			ip6f->ip6f_offlg |= IP6F_MORE_FRAG;
290 		mhip6->ip6_plen = htons((u_short)(fraglen + hlen +
291 		    sizeof(*ip6f) - sizeof(struct ip6_hdr)));
292 		if ((m_frgpart = m_copym(m0, off, fraglen, M_NOWAIT)) == NULL) {
293 			IP6STAT_INC(ip6s_odropped);
294 			return (ENOBUFS);
295 		}
296 		m_cat(m, m_frgpart);
297 		m->m_pkthdr.len = fraglen + hlen + sizeof(*ip6f);
298 		ip6f->ip6f_reserved = 0;
299 		ip6f->ip6f_ident = id;
300 		ip6f->ip6f_nxt = nextproto;
301 		IP6STAT_INC(ip6s_ofragments);
302 		in6_ifstat_inc(ifp, ifs6_out_fragcreat);
303 	}
304 
305 	return (0);
306 }
307 
308 static int
309 ip6_output_send(struct inpcb *inp, struct ifnet *ifp, struct ifnet *origifp,
310     struct mbuf *m, struct sockaddr_in6 *dst, struct route_in6 *ro,
311     bool stamp_tag)
312 {
313 #ifdef KERN_TLS
314 	struct ktls_session *tls = NULL;
315 #endif
316 	struct m_snd_tag *mst;
317 	int error;
318 
319 	MPASS((m->m_pkthdr.csum_flags & CSUM_SND_TAG) == 0);
320 	mst = NULL;
321 
322 #ifdef KERN_TLS
323 	/*
324 	 * If this is an unencrypted TLS record, save a reference to
325 	 * the record.  This local reference is used to call
326 	 * ktls_output_eagain after the mbuf has been freed (thus
327 	 * dropping the mbuf's reference) in if_output.
328 	 */
329 	if (m->m_next != NULL && mbuf_has_tls_session(m->m_next)) {
330 		tls = ktls_hold(m->m_next->m_epg_tls);
331 		mst = tls->snd_tag;
332 
333 		/*
334 		 * If a TLS session doesn't have a valid tag, it must
335 		 * have had an earlier ifp mismatch, so drop this
336 		 * packet.
337 		 */
338 		if (mst == NULL) {
339 			m_freem(m);
340 			error = EAGAIN;
341 			goto done;
342 		}
343 		/*
344 		 * Always stamp tags that include NIC ktls.
345 		 */
346 		stamp_tag = true;
347 	}
348 #endif
349 #ifdef RATELIMIT
350 	if (inp != NULL && mst == NULL) {
351 		if ((inp->inp_flags2 & INP_RATE_LIMIT_CHANGED) != 0 ||
352 		    (inp->inp_snd_tag != NULL &&
353 		    inp->inp_snd_tag->ifp != ifp))
354 			in_pcboutput_txrtlmt(inp, ifp, m);
355 
356 		if (inp->inp_snd_tag != NULL)
357 			mst = inp->inp_snd_tag;
358 	}
359 #endif
360 	if (stamp_tag && mst != NULL) {
361 		KASSERT(m->m_pkthdr.rcvif == NULL,
362 		    ("trying to add a send tag to a forwarded packet"));
363 		if (mst->ifp != ifp) {
364 			m_freem(m);
365 			error = EAGAIN;
366 			goto done;
367 		}
368 
369 		/* stamp send tag on mbuf */
370 		m->m_pkthdr.snd_tag = m_snd_tag_ref(mst);
371 		m->m_pkthdr.csum_flags |= CSUM_SND_TAG;
372 	}
373 
374 	error = nd6_output_ifp(ifp, origifp, m, dst, (struct route *)ro);
375 
376 done:
377 	/* Check for route change invalidating send tags. */
378 #ifdef KERN_TLS
379 	if (tls != NULL) {
380 		if (error == EAGAIN)
381 			error = ktls_output_eagain(inp, tls);
382 		ktls_free(tls);
383 	}
384 #endif
385 #ifdef RATELIMIT
386 	if (error == EAGAIN)
387 		in_pcboutput_eagain(inp);
388 #endif
389 	return (error);
390 }
391 
392 /*
393  * IP6 output.
394  * The packet in mbuf chain m contains a skeletal IP6 header (with pri, len,
395  * nxt, hlim, src, dst).
396  * This function may modify ver and hlim only.
397  * The mbuf chain containing the packet will be freed.
398  * The mbuf opt, if present, will not be freed.
399  * If route_in6 ro is present and has ro_nh initialized, route lookup would be
400  * skipped and ro->ro_nh would be used. If ro is present but ro->ro_nh is NULL,
401  * then result of route lookup is stored in ro->ro_nh.
402  *
403  * Type of "mtu": rt_mtu is u_long, ifnet.ifr_mtu is int, and nd_ifinfo.linkmtu
404  * is uint32_t.  So we use u_long to hold largest one, which is rt_mtu.
405  *
406  * ifpp - XXX: just for statistics
407  */
408 int
409 ip6_output(struct mbuf *m0, struct ip6_pktopts *opt,
410     struct route_in6 *ro, int flags, struct ip6_moptions *im6o,
411     struct ifnet **ifpp, struct inpcb *inp)
412 {
413 	struct ip6_hdr *ip6;
414 	struct ifnet *ifp, *origifp;
415 	struct mbuf *m = m0;
416 	struct mbuf *mprev;
417 	struct route_in6 *ro_pmtu;
418 	struct nhop_object *nh;
419 	struct sockaddr_in6 *dst, sin6, src_sa, dst_sa;
420 	struct in6_addr odst;
421 	u_char *nexthdrp;
422 	int tlen, len;
423 	int error = 0;
424 	int vlan_pcp = -1;
425 	struct in6_ifaddr *ia = NULL;
426 	u_long mtu;
427 	int alwaysfrag, dontfrag;
428 	u_int32_t optlen, plen = 0, unfragpartlen;
429 	struct ip6_exthdrs exthdrs;
430 	struct in6_addr src0, dst0;
431 	u_int32_t zone;
432 	bool hdrsplit;
433 	int sw_csum, tso;
434 	int needfiblookup;
435 	uint32_t fibnum;
436 	struct m_tag *fwd_tag = NULL;
437 	uint32_t id;
438 
439 	NET_EPOCH_ASSERT();
440 
441 	if (inp != NULL) {
442 		INP_LOCK_ASSERT(inp);
443 		M_SETFIB(m, inp->inp_inc.inc_fibnum);
444 		if ((flags & IP_NODEFAULTFLOWID) == 0) {
445 			/* Unconditionally set flowid. */
446 			m->m_pkthdr.flowid = inp->inp_flowid;
447 			M_HASHTYPE_SET(m, inp->inp_flowtype);
448 		}
449 		if ((inp->inp_flags2 & INP_2PCP_SET) != 0)
450 			vlan_pcp = (inp->inp_flags2 & INP_2PCP_MASK) >>
451 			    INP_2PCP_SHIFT;
452 #ifdef NUMA
453 		m->m_pkthdr.numa_domain = inp->inp_numa_domain;
454 #endif
455 	}
456 
457 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
458 	/*
459 	 * IPSec checking which handles several cases.
460 	 * FAST IPSEC: We re-injected the packet.
461 	 * XXX: need scope argument.
462 	 */
463 	if (IPSEC_ENABLED(ipv6)) {
464 		if ((error = IPSEC_OUTPUT(ipv6, m, inp)) != 0) {
465 			if (error == EINPROGRESS)
466 				error = 0;
467 			goto done;
468 		}
469 	}
470 #endif /* IPSEC */
471 
472 	/* Source address validation. */
473 	ip6 = mtod(m, struct ip6_hdr *);
474 	if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src) &&
475 	    (flags & IPV6_UNSPECSRC) == 0) {
476 		error = EOPNOTSUPP;
477 		IP6STAT_INC(ip6s_badscope);
478 		goto bad;
479 	}
480 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) {
481 		error = EOPNOTSUPP;
482 		IP6STAT_INC(ip6s_badscope);
483 		goto bad;
484 	}
485 
486 	/*
487 	 * If we are given packet options to add extension headers prepare them.
488 	 * Calculate the total length of the extension header chain.
489 	 * Keep the length of the unfragmentable part for fragmentation.
490 	 */
491 	bzero(&exthdrs, sizeof(exthdrs));
492 	optlen = 0;
493 	unfragpartlen = sizeof(struct ip6_hdr);
494 	if (opt) {
495 		/* Hop-by-Hop options header. */
496 		MAKE_EXTHDR(opt->ip6po_hbh, &exthdrs.ip6e_hbh, optlen);
497 
498 		/* Destination options header (1st part). */
499 		if (opt->ip6po_rthdr) {
500 #ifndef RTHDR_SUPPORT_IMPLEMENTED
501 			/*
502 			 * If there is a routing header, discard the packet
503 			 * right away here. RH0/1 are obsolete and we do not
504 			 * currently support RH2/3/4.
505 			 * People trying to use RH253/254 may want to disable
506 			 * this check.
507 			 * The moment we do support any routing header (again)
508 			 * this block should check the routing type more
509 			 * selectively.
510 			 */
511 			error = EINVAL;
512 			goto bad;
513 #endif
514 
515 			/*
516 			 * Destination options header (1st part).
517 			 * This only makes sense with a routing header.
518 			 * See Section 9.2 of RFC 3542.
519 			 * Disabling this part just for MIP6 convenience is
520 			 * a bad idea.  We need to think carefully about a
521 			 * way to make the advanced API coexist with MIP6
522 			 * options, which might automatically be inserted in
523 			 * the kernel.
524 			 */
525 			MAKE_EXTHDR(opt->ip6po_dest1, &exthdrs.ip6e_dest1,
526 			    optlen);
527 		}
528 		/* Routing header. */
529 		MAKE_EXTHDR(opt->ip6po_rthdr, &exthdrs.ip6e_rthdr, optlen);
530 
531 		unfragpartlen += optlen;
532 
533 		/*
534 		 * NOTE: we don't add AH/ESP length here (done in
535 		 * ip6_ipsec_output()).
536 		 */
537 
538 		/* Destination options header (2nd part). */
539 		MAKE_EXTHDR(opt->ip6po_dest2, &exthdrs.ip6e_dest2, optlen);
540 	}
541 
542 	/*
543 	 * If there is at least one extension header,
544 	 * separate IP6 header from the payload.
545 	 */
546 	hdrsplit = false;
547 	if (optlen) {
548 		if ((error = ip6_splithdr(m, &exthdrs)) != 0) {
549 			m = NULL;
550 			goto freehdrs;
551 		}
552 		m = exthdrs.ip6e_ip6;
553 		ip6 = mtod(m, struct ip6_hdr *);
554 		hdrsplit = true;
555 	}
556 
557 	/* Adjust mbuf packet header length. */
558 	m->m_pkthdr.len += optlen;
559 	plen = m->m_pkthdr.len - sizeof(*ip6);
560 
561 	/* If this is a jumbo payload, insert a jumbo payload option. */
562 	if (plen > IPV6_MAXPACKET) {
563 		if (!hdrsplit) {
564 			if ((error = ip6_splithdr(m, &exthdrs)) != 0) {
565 				m = NULL;
566 				goto freehdrs;
567 			}
568 			m = exthdrs.ip6e_ip6;
569 			ip6 = mtod(m, struct ip6_hdr *);
570 			hdrsplit = true;
571 		}
572 		if ((error = ip6_insert_jumboopt(&exthdrs, plen)) != 0)
573 			goto freehdrs;
574 		ip6->ip6_plen = 0;
575 	} else
576 		ip6->ip6_plen = htons(plen);
577 	nexthdrp = &ip6->ip6_nxt;
578 
579 	if (optlen) {
580 		/*
581 		 * Concatenate headers and fill in next header fields.
582 		 * Here we have, on "m"
583 		 *	IPv6 payload
584 		 * and we insert headers accordingly.
585 		 * Finally, we should be getting:
586 		 *	IPv6 hbh dest1 rthdr ah* [esp* dest2 payload].
587 		 *
588 		 * During the header composing process "m" points to IPv6
589 		 * header.  "mprev" points to an extension header prior to esp.
590 		 */
591 		mprev = m;
592 
593 		/*
594 		 * We treat dest2 specially.  This makes IPsec processing
595 		 * much easier.  The goal here is to make mprev point the
596 		 * mbuf prior to dest2.
597 		 *
598 		 * Result: IPv6 dest2 payload.
599 		 * m and mprev will point to IPv6 header.
600 		 */
601 		if (exthdrs.ip6e_dest2) {
602 			if (!hdrsplit)
603 				panic("%s:%d: assumption failed: "
604 				    "hdr not split: hdrsplit %d exthdrs %p",
605 				    __func__, __LINE__, hdrsplit, &exthdrs);
606 			exthdrs.ip6e_dest2->m_next = m->m_next;
607 			m->m_next = exthdrs.ip6e_dest2;
608 			*mtod(exthdrs.ip6e_dest2, u_char *) = ip6->ip6_nxt;
609 			ip6->ip6_nxt = IPPROTO_DSTOPTS;
610 		}
611 
612 		/*
613 		 * Result: IPv6 hbh dest1 rthdr dest2 payload.
614 		 * m will point to IPv6 header.  mprev will point to the
615 		 * extension header prior to dest2 (rthdr in the above case).
616 		 */
617 		MAKE_CHAIN(exthdrs.ip6e_hbh, mprev, nexthdrp, IPPROTO_HOPOPTS);
618 		MAKE_CHAIN(exthdrs.ip6e_dest1, mprev, nexthdrp,
619 			   IPPROTO_DSTOPTS);
620 		MAKE_CHAIN(exthdrs.ip6e_rthdr, mprev, nexthdrp,
621 			   IPPROTO_ROUTING);
622 	}
623 
624 	IP6STAT_INC(ip6s_localout);
625 
626 	/* Route packet. */
627 	ro_pmtu = ro;
628 	if (opt && opt->ip6po_rthdr)
629 		ro = &opt->ip6po_route;
630 	if (ro != NULL)
631 		dst = (struct sockaddr_in6 *)&ro->ro_dst;
632 	else
633 		dst = &sin6;
634 	fibnum = (inp != NULL) ? inp->inp_inc.inc_fibnum : M_GETFIB(m);
635 
636 again:
637 	/*
638 	 * If specified, try to fill in the traffic class field.
639 	 * Do not override if a non-zero value is already set.
640 	 * We check the diffserv field and the ECN field separately.
641 	 */
642 	if (opt && opt->ip6po_tclass >= 0) {
643 		int mask = 0;
644 
645 		if (IPV6_DSCP(ip6) == 0)
646 			mask |= 0xfc;
647 		if (IPV6_ECN(ip6) == 0)
648 			mask |= 0x03;
649 		if (mask != 0)
650 			ip6->ip6_flow |= htonl((opt->ip6po_tclass & mask) << 20);
651 	}
652 
653 	/* Fill in or override the hop limit field, if necessary. */
654 	if (opt && opt->ip6po_hlim != -1)
655 		ip6->ip6_hlim = opt->ip6po_hlim & 0xff;
656 	else if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
657 		if (im6o != NULL)
658 			ip6->ip6_hlim = im6o->im6o_multicast_hlim;
659 		else
660 			ip6->ip6_hlim = V_ip6_defmcasthlim;
661 	}
662 
663 	if (ro == NULL || ro->ro_nh == NULL) {
664 		bzero(dst, sizeof(*dst));
665 		dst->sin6_family = AF_INET6;
666 		dst->sin6_len = sizeof(*dst);
667 		dst->sin6_addr = ip6->ip6_dst;
668 	}
669 	/*
670 	 * Validate route against routing table changes.
671 	 * Make sure that the address family is set in route.
672 	 */
673 	nh = NULL;
674 	ifp = NULL;
675 	mtu = 0;
676 	if (ro != NULL) {
677 		if (ro->ro_nh != NULL && inp != NULL) {
678 			ro->ro_dst.sin6_family = AF_INET6; /* XXX KASSERT? */
679 			NH_VALIDATE((struct route *)ro, &inp->inp_rt_cookie,
680 			    fibnum);
681 		}
682 		if (ro->ro_nh != NULL && fwd_tag == NULL &&
683 		    (!NH_IS_VALID(ro->ro_nh) ||
684 		    ro->ro_dst.sin6_family != AF_INET6 ||
685 		    !IN6_ARE_ADDR_EQUAL(&ro->ro_dst.sin6_addr, &ip6->ip6_dst)))
686 			RO_INVALIDATE_CACHE(ro);
687 
688 		if (ro->ro_nh != NULL && fwd_tag == NULL &&
689 		    ro->ro_dst.sin6_family == AF_INET6 &&
690 		    IN6_ARE_ADDR_EQUAL(&ro->ro_dst.sin6_addr, &ip6->ip6_dst)) {
691 			/* Nexthop is valid and contains valid ifp */
692 			nh = ro->ro_nh;
693 		} else {
694 			if (ro->ro_lle)
695 				LLE_FREE(ro->ro_lle);	/* zeros ro_lle */
696 			ro->ro_lle = NULL;
697 			if (fwd_tag == NULL) {
698 				bzero(&dst_sa, sizeof(dst_sa));
699 				dst_sa.sin6_family = AF_INET6;
700 				dst_sa.sin6_len = sizeof(dst_sa);
701 				dst_sa.sin6_addr = ip6->ip6_dst;
702 			}
703 			error = in6_selectroute(&dst_sa, opt, im6o, ro, &ifp,
704 			    &nh, fibnum, m->m_pkthdr.flowid);
705 			if (error != 0) {
706 				IP6STAT_INC(ip6s_noroute);
707 				if (ifp != NULL)
708 					in6_ifstat_inc(ifp, ifs6_out_discard);
709 				goto bad;
710 			}
711 			/*
712 			 * At this point at least @ifp is not NULL
713 			 * Can be the case when dst is multicast, link-local or
714 			 * interface is explicitly specificed by the caller.
715 			 */
716 		}
717 		if (nh == NULL) {
718 			/*
719 			 * If in6_selectroute() does not return a nexthop
720 			 * dst may not have been updated.
721 			 */
722 			*dst = dst_sa;	/* XXX */
723 			origifp = ifp;
724 			mtu = ifp->if_mtu;
725 		} else {
726 			ifp = nh->nh_ifp;
727 			origifp = nh->nh_aifp;
728 			ia = (struct in6_ifaddr *)(nh->nh_ifa);
729 			counter_u64_add(nh->nh_pksent, 1);
730 		}
731 	} else {
732 		struct nhop_object *nh;
733 		struct in6_addr kdst;
734 		uint32_t scopeid;
735 
736 		if (fwd_tag == NULL) {
737 			bzero(&dst_sa, sizeof(dst_sa));
738 			dst_sa.sin6_family = AF_INET6;
739 			dst_sa.sin6_len = sizeof(dst_sa);
740 			dst_sa.sin6_addr = ip6->ip6_dst;
741 		}
742 
743 		if (IN6_IS_ADDR_MULTICAST(&dst_sa.sin6_addr) &&
744 		    im6o != NULL &&
745 		    (ifp = im6o->im6o_multicast_ifp) != NULL) {
746 			/* We do not need a route lookup. */
747 			*dst = dst_sa;	/* XXX */
748 			origifp = ifp;
749 			goto nonh6lookup;
750 		}
751 
752 		in6_splitscope(&dst_sa.sin6_addr, &kdst, &scopeid);
753 
754 		if (IN6_IS_ADDR_MC_LINKLOCAL(&dst_sa.sin6_addr) ||
755 		    IN6_IS_ADDR_MC_NODELOCAL(&dst_sa.sin6_addr)) {
756 			if (scopeid > 0) {
757 				ifp = in6_getlinkifnet(scopeid);
758 				if (ifp == NULL) {
759 					error = EHOSTUNREACH;
760 					goto bad;
761 				}
762 				*dst = dst_sa;	/* XXX */
763 				origifp = ifp;
764 				goto nonh6lookup;
765 			}
766 		}
767 
768 		nh = fib6_lookup(fibnum, &kdst, scopeid, NHR_NONE,
769 		    m->m_pkthdr.flowid);
770 		if (nh == NULL) {
771 			IP6STAT_INC(ip6s_noroute);
772 			/* No ifp in6_ifstat_inc(ifp, ifs6_out_discard); */
773 			error = EHOSTUNREACH;
774 			goto bad;
775 		}
776 
777 		ifp = nh->nh_ifp;
778 		origifp = nh->nh_aifp;
779 		ia = ifatoia6(nh->nh_ifa);
780 		if (nh->nh_flags & NHF_GATEWAY)
781 			dst->sin6_addr = nh->gw6_sa.sin6_addr;
782 		else if (fwd_tag != NULL)
783 			dst->sin6_addr = dst_sa.sin6_addr;
784 nonh6lookup:
785 		;
786 	}
787 	/*
788 	 * At this point ifp MUST be pointing to the valid transmit ifp.
789 	 * origifp MUST be valid and pointing to either the same ifp or,
790 	 * in case of loopback output, to the interface which ip6_src
791 	 * belongs to.
792 	 * Examples:
793 	 *  fe80::1%em0 -> fe80::2%em0 -> ifp=em0, origifp=em0
794 	 *  fe80::1%em0 -> fe80::1%em0 -> ifp=lo0, origifp=em0
795 	 *  ::1 -> ::1 -> ifp=lo0, origifp=lo0
796 	 *
797 	 * mtu can be 0 and will be refined later.
798 	 */
799 	KASSERT((ifp != NULL), ("output interface must not be NULL"));
800 	KASSERT((origifp != NULL), ("output address interface must not be NULL"));
801 
802 	if ((flags & IPV6_FORWARDING) == 0) {
803 		/* XXX: the FORWARDING flag can be set for mrouting. */
804 		in6_ifstat_inc(ifp, ifs6_out_request);
805 	}
806 
807 	/* Setup data structures for scope ID checks. */
808 	src0 = ip6->ip6_src;
809 	bzero(&src_sa, sizeof(src_sa));
810 	src_sa.sin6_family = AF_INET6;
811 	src_sa.sin6_len = sizeof(src_sa);
812 	src_sa.sin6_addr = ip6->ip6_src;
813 
814 	dst0 = ip6->ip6_dst;
815 	/* Re-initialize to be sure. */
816 	bzero(&dst_sa, sizeof(dst_sa));
817 	dst_sa.sin6_family = AF_INET6;
818 	dst_sa.sin6_len = sizeof(dst_sa);
819 	dst_sa.sin6_addr = ip6->ip6_dst;
820 
821 	/* Check for valid scope ID. */
822 	if (in6_setscope(&src0, origifp, &zone) == 0 &&
823 	    sa6_recoverscope(&src_sa) == 0 && zone == src_sa.sin6_scope_id &&
824 	    in6_setscope(&dst0, origifp, &zone) == 0 &&
825 	    sa6_recoverscope(&dst_sa) == 0 && zone == dst_sa.sin6_scope_id) {
826 		/*
827 		 * The outgoing interface is in the zone of the source
828 		 * and destination addresses.
829 		 *
830 		 */
831 	} else if ((origifp->if_flags & IFF_LOOPBACK) == 0 ||
832 	    sa6_recoverscope(&src_sa) != 0 ||
833 	    sa6_recoverscope(&dst_sa) != 0 ||
834 	    dst_sa.sin6_scope_id == 0 ||
835 	    (src_sa.sin6_scope_id != 0 &&
836 	    src_sa.sin6_scope_id != dst_sa.sin6_scope_id) ||
837 	    ifnet_byindex(dst_sa.sin6_scope_id) == NULL) {
838 		/*
839 		 * If the destination network interface is not a
840 		 * loopback interface, or the destination network
841 		 * address has no scope ID, or the source address has
842 		 * a scope ID set which is different from the
843 		 * destination address one, or there is no network
844 		 * interface representing this scope ID, the address
845 		 * pair is considered invalid.
846 		 */
847 		IP6STAT_INC(ip6s_badscope);
848 		in6_ifstat_inc(origifp, ifs6_out_discard);
849 		if (error == 0)
850 			error = EHOSTUNREACH; /* XXX */
851 		goto bad;
852 	}
853 	/* All scope ID checks are successful. */
854 
855 	if (nh && !IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
856 		if (opt && opt->ip6po_nextroute.ro_nh) {
857 			/*
858 			 * The nexthop is explicitly specified by the
859 			 * application.  We assume the next hop is an IPv6
860 			 * address.
861 			 */
862 			dst = (struct sockaddr_in6 *)opt->ip6po_nexthop;
863 		}
864 		else if ((nh->nh_flags & NHF_GATEWAY))
865 			dst = &nh->gw6_sa;
866 	}
867 
868 	if (!IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
869 		m->m_flags &= ~(M_BCAST | M_MCAST); /* Just in case. */
870 	} else {
871 		m->m_flags = (m->m_flags & ~M_BCAST) | M_MCAST;
872 		in6_ifstat_inc(ifp, ifs6_out_mcast);
873 
874 		/* Confirm that the outgoing interface supports multicast. */
875 		if (!(ifp->if_flags & IFF_MULTICAST)) {
876 			IP6STAT_INC(ip6s_noroute);
877 			in6_ifstat_inc(ifp, ifs6_out_discard);
878 			error = ENETUNREACH;
879 			goto bad;
880 		}
881 		if ((im6o == NULL && in6_mcast_loop) ||
882 		    (im6o && im6o->im6o_multicast_loop)) {
883 			/*
884 			 * Loop back multicast datagram if not expressly
885 			 * forbidden to do so, even if we have not joined
886 			 * the address; protocols will filter it later,
887 			 * thus deferring a hash lookup and lock acquisition
888 			 * at the expense of an m_copym().
889 			 */
890 			ip6_mloopback(ifp, m);
891 		} else {
892 			/*
893 			 * If we are acting as a multicast router, perform
894 			 * multicast forwarding as if the packet had just
895 			 * arrived on the interface to which we are about
896 			 * to send.  The multicast forwarding function
897 			 * recursively calls this function, using the
898 			 * IPV6_FORWARDING flag to prevent infinite recursion.
899 			 *
900 			 * Multicasts that are looped back by ip6_mloopback(),
901 			 * above, will be forwarded by the ip6_input() routine,
902 			 * if necessary.
903 			 */
904 			if (V_ip6_mrouter && (flags & IPV6_FORWARDING) == 0) {
905 				/*
906 				 * XXX: ip6_mforward expects that rcvif is NULL
907 				 * when it is called from the originating path.
908 				 * However, it may not always be the case.
909 				 */
910 				m->m_pkthdr.rcvif = NULL;
911 				if (ip6_mforward(ip6, ifp, m) != 0) {
912 					m_freem(m);
913 					goto done;
914 				}
915 			}
916 		}
917 		/*
918 		 * Multicasts with a hoplimit of zero may be looped back,
919 		 * above, but must not be transmitted on a network.
920 		 * Also, multicasts addressed to the loopback interface
921 		 * are not sent -- the above call to ip6_mloopback() will
922 		 * loop back a copy if this host actually belongs to the
923 		 * destination group on the loopback interface.
924 		 */
925 		if (ip6->ip6_hlim == 0 || (ifp->if_flags & IFF_LOOPBACK) ||
926 		    IN6_IS_ADDR_MC_INTFACELOCAL(&ip6->ip6_dst)) {
927 			m_freem(m);
928 			goto done;
929 		}
930 	}
931 
932 	/*
933 	 * Fill the outgoing inteface to tell the upper layer
934 	 * to increment per-interface statistics.
935 	 */
936 	if (ifpp)
937 		*ifpp = ifp;
938 
939 	/* Determine path MTU. */
940 	if ((error = ip6_getpmtu(ro_pmtu, ro != ro_pmtu, ifp, &ip6->ip6_dst,
941 		    &mtu, &alwaysfrag, fibnum, *nexthdrp)) != 0)
942 		goto bad;
943 	KASSERT(mtu > 0, ("%s:%d: mtu %ld, ro_pmtu %p ro %p ifp %p "
944 	    "alwaysfrag %d fibnum %u\n", __func__, __LINE__, mtu, ro_pmtu, ro,
945 	    ifp, alwaysfrag, fibnum));
946 
947 	/*
948 	 * The caller of this function may specify to use the minimum MTU
949 	 * in some cases.
950 	 * An advanced API option (IPV6_USE_MIN_MTU) can also override MTU
951 	 * setting.  The logic is a bit complicated; by default, unicast
952 	 * packets will follow path MTU while multicast packets will be sent at
953 	 * the minimum MTU.  If IP6PO_MINMTU_ALL is specified, all packets
954 	 * including unicast ones will be sent at the minimum MTU.  Multicast
955 	 * packets will always be sent at the minimum MTU unless
956 	 * IP6PO_MINMTU_DISABLE is explicitly specified.
957 	 * See RFC 3542 for more details.
958 	 */
959 	if (mtu > IPV6_MMTU) {
960 		if ((flags & IPV6_MINMTU))
961 			mtu = IPV6_MMTU;
962 		else if (opt && opt->ip6po_minmtu == IP6PO_MINMTU_ALL)
963 			mtu = IPV6_MMTU;
964 		else if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) &&
965 			 (opt == NULL ||
966 			  opt->ip6po_minmtu != IP6PO_MINMTU_DISABLE)) {
967 			mtu = IPV6_MMTU;
968 		}
969 	}
970 
971 	/*
972 	 * Clear embedded scope identifiers if necessary.
973 	 * in6_clearscope() will touch the addresses only when necessary.
974 	 */
975 	in6_clearscope(&ip6->ip6_src);
976 	in6_clearscope(&ip6->ip6_dst);
977 
978 	/*
979 	 * If the outgoing packet contains a hop-by-hop options header,
980 	 * it must be examined and processed even by the source node.
981 	 * (RFC 2460, section 4.)
982 	 */
983 	if (exthdrs.ip6e_hbh) {
984 		struct ip6_hbh *hbh = mtod(exthdrs.ip6e_hbh, struct ip6_hbh *);
985 		u_int32_t dummy; /* XXX unused */
986 		u_int32_t plen = 0; /* XXX: ip6_process will check the value */
987 
988 #ifdef DIAGNOSTIC
989 		if ((hbh->ip6h_len + 1) << 3 > exthdrs.ip6e_hbh->m_len)
990 			panic("ip6e_hbh is not contiguous");
991 #endif
992 		/*
993 		 *  XXX: if we have to send an ICMPv6 error to the sender,
994 		 *       we need the M_LOOP flag since icmp6_error() expects
995 		 *       the IPv6 and the hop-by-hop options header are
996 		 *       contiguous unless the flag is set.
997 		 */
998 		m->m_flags |= M_LOOP;
999 		m->m_pkthdr.rcvif = ifp;
1000 		if (ip6_process_hopopts(m, (u_int8_t *)(hbh + 1),
1001 		    ((hbh->ip6h_len + 1) << 3) - sizeof(struct ip6_hbh),
1002 		    &dummy, &plen) < 0) {
1003 			/* m was already freed at this point. */
1004 			error = EINVAL;/* better error? */
1005 			goto done;
1006 		}
1007 		m->m_flags &= ~M_LOOP; /* XXX */
1008 		m->m_pkthdr.rcvif = NULL;
1009 	}
1010 
1011 	/* Jump over all PFIL processing if hooks are not active. */
1012 	if (!PFIL_HOOKED_OUT(V_inet6_pfil_head))
1013 		goto passout;
1014 
1015 	odst = ip6->ip6_dst;
1016 	/* Run through list of hooks for output packets. */
1017 	switch (pfil_mbuf_out(V_inet6_pfil_head, &m, ifp, inp)) {
1018 	case PFIL_PASS:
1019 		ip6 = mtod(m, struct ip6_hdr *);
1020 		break;
1021 	case PFIL_DROPPED:
1022 		error = EACCES;
1023 		/* FALLTHROUGH */
1024 	case PFIL_CONSUMED:
1025 		goto done;
1026 	}
1027 
1028 	needfiblookup = 0;
1029 	/* See if destination IP address was changed by packet filter. */
1030 	if (!IN6_ARE_ADDR_EQUAL(&odst, &ip6->ip6_dst)) {
1031 		m->m_flags |= M_SKIP_FIREWALL;
1032 		/* If destination is now ourself drop to ip6_input(). */
1033 		if (in6_localip(&ip6->ip6_dst)) {
1034 			m->m_flags |= M_FASTFWD_OURS;
1035 			if (m->m_pkthdr.rcvif == NULL)
1036 				m->m_pkthdr.rcvif = V_loif;
1037 			if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA_IPV6) {
1038 				m->m_pkthdr.csum_flags |=
1039 				    CSUM_DATA_VALID_IPV6 | CSUM_PSEUDO_HDR;
1040 				m->m_pkthdr.csum_data = 0xffff;
1041 			}
1042 #if defined(SCTP) || defined(SCTP_SUPPORT)
1043 			if (m->m_pkthdr.csum_flags & CSUM_SCTP_IPV6)
1044 				m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
1045 #endif
1046 			error = netisr_queue(NETISR_IPV6, m);
1047 			goto done;
1048 		} else {
1049 			if (ro != NULL)
1050 				RO_INVALIDATE_CACHE(ro);
1051 			needfiblookup = 1; /* Redo the routing table lookup. */
1052 		}
1053 	}
1054 	/* See if fib was changed by packet filter. */
1055 	if (fibnum != M_GETFIB(m)) {
1056 		m->m_flags |= M_SKIP_FIREWALL;
1057 		fibnum = M_GETFIB(m);
1058 		if (ro != NULL)
1059 			RO_INVALIDATE_CACHE(ro);
1060 		needfiblookup = 1;
1061 	}
1062 	if (needfiblookup)
1063 		goto again;
1064 
1065 	/* See if local, if yes, send it to netisr. */
1066 	if (m->m_flags & M_FASTFWD_OURS) {
1067 		if (m->m_pkthdr.rcvif == NULL)
1068 			m->m_pkthdr.rcvif = V_loif;
1069 		if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA_IPV6) {
1070 			m->m_pkthdr.csum_flags |=
1071 			    CSUM_DATA_VALID_IPV6 | CSUM_PSEUDO_HDR;
1072 			m->m_pkthdr.csum_data = 0xffff;
1073 		}
1074 #if defined(SCTP) || defined(SCTP_SUPPORT)
1075 		if (m->m_pkthdr.csum_flags & CSUM_SCTP_IPV6)
1076 			m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
1077 #endif
1078 		error = netisr_queue(NETISR_IPV6, m);
1079 		goto done;
1080 	}
1081 	/* Or forward to some other address? */
1082 	if ((m->m_flags & M_IP6_NEXTHOP) &&
1083 	    (fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL)) != NULL) {
1084 		if (ro != NULL)
1085 			dst = (struct sockaddr_in6 *)&ro->ro_dst;
1086 		else
1087 			dst = &sin6;
1088 		bcopy((fwd_tag+1), &dst_sa, sizeof(struct sockaddr_in6));
1089 		m->m_flags |= M_SKIP_FIREWALL;
1090 		m->m_flags &= ~M_IP6_NEXTHOP;
1091 		m_tag_delete(m, fwd_tag);
1092 		goto again;
1093 	}
1094 
1095 passout:
1096 	if (vlan_pcp > -1)
1097 		EVL_APPLY_PRI(m, vlan_pcp);
1098 
1099 	/* Ensure the packet data is mapped if the interface requires it. */
1100 	if ((ifp->if_capenable & IFCAP_MEXTPG) == 0) {
1101 		m = mb_unmapped_to_ext(m);
1102 		if (m == NULL) {
1103 			IP6STAT_INC(ip6s_odropped);
1104 			return (ENOBUFS);
1105 		}
1106 	}
1107 
1108 	/*
1109 	 * Send the packet to the outgoing interface.
1110 	 * If necessary, do IPv6 fragmentation before sending.
1111 	 *
1112 	 * The logic here is rather complex:
1113 	 * 1: normal case (dontfrag == 0, alwaysfrag == 0)
1114 	 * 1-a:	send as is if tlen <= path mtu
1115 	 * 1-b:	fragment if tlen > path mtu
1116 	 *
1117 	 * 2: if user asks us not to fragment (dontfrag == 1)
1118 	 * 2-a:	send as is if tlen <= interface mtu
1119 	 * 2-b:	error if tlen > interface mtu
1120 	 *
1121 	 * 3: if we always need to attach fragment header (alwaysfrag == 1)
1122 	 *	always fragment
1123 	 *
1124 	 * 4: if dontfrag == 1 && alwaysfrag == 1
1125 	 *	error, as we cannot handle this conflicting request.
1126 	 */
1127 	sw_csum = m->m_pkthdr.csum_flags;
1128 	if (!hdrsplit) {
1129 		tso = ((sw_csum & ifp->if_hwassist &
1130 		    (CSUM_TSO | CSUM_INNER_TSO)) != 0) ? 1 : 0;
1131 		sw_csum &= ~ifp->if_hwassist;
1132 	} else
1133 		tso = 0;
1134 	/*
1135 	 * If we added extension headers, we will not do TSO and calculate the
1136 	 * checksums ourselves for now.
1137 	 * XXX-BZ  Need a framework to know when the NIC can handle it, even
1138 	 * with ext. hdrs.
1139 	 */
1140 	ip6_output_delayed_csum(m, ifp, sw_csum, plen, optlen);
1141 	/* XXX-BZ m->m_pkthdr.csum_flags &= ~ifp->if_hwassist; */
1142 	tlen = m->m_pkthdr.len;
1143 
1144 	if ((opt && (opt->ip6po_flags & IP6PO_DONTFRAG)) || tso)
1145 		dontfrag = 1;
1146 	else
1147 		dontfrag = 0;
1148 	if (dontfrag && alwaysfrag) {	/* Case 4. */
1149 		/* Conflicting request - can't transmit. */
1150 		error = EMSGSIZE;
1151 		goto bad;
1152 	}
1153 	if (dontfrag && tlen > IN6_LINKMTU(ifp) && !tso) {	/* Case 2-b. */
1154 		/*
1155 		 * Even if the DONTFRAG option is specified, we cannot send the
1156 		 * packet when the data length is larger than the MTU of the
1157 		 * outgoing interface.
1158 		 * Notify the error by sending IPV6_PATHMTU ancillary data if
1159 		 * application wanted to know the MTU value. Also return an
1160 		 * error code (this is not described in the API spec).
1161 		 */
1162 		if (inp != NULL)
1163 			ip6_notify_pmtu(inp, &dst_sa, (u_int32_t)mtu);
1164 		error = EMSGSIZE;
1165 		goto bad;
1166 	}
1167 
1168 	/* Transmit packet without fragmentation. */
1169 	if (dontfrag || (!alwaysfrag && tlen <= mtu)) {	/* Cases 1-a and 2-a. */
1170 		struct in6_ifaddr *ia6;
1171 
1172 		ip6 = mtod(m, struct ip6_hdr *);
1173 		ia6 = in6_ifawithifp(ifp, &ip6->ip6_src);
1174 		if (ia6) {
1175 			/* Record statistics for this interface address. */
1176 			counter_u64_add(ia6->ia_ifa.ifa_opackets, 1);
1177 			counter_u64_add(ia6->ia_ifa.ifa_obytes,
1178 			    m->m_pkthdr.len);
1179 		}
1180 		error = ip6_output_send(inp, ifp, origifp, m, dst, ro,
1181 		    (flags & IP_NO_SND_TAG_RL) ? false : true);
1182 		goto done;
1183 	}
1184 
1185 	/* Try to fragment the packet.  Cases 1-b and 3. */
1186 	if (mtu < IPV6_MMTU) {
1187 		/* Path MTU cannot be less than IPV6_MMTU. */
1188 		error = EMSGSIZE;
1189 		in6_ifstat_inc(ifp, ifs6_out_fragfail);
1190 		goto bad;
1191 	} else if (ip6->ip6_plen == 0) {
1192 		/* Jumbo payload cannot be fragmented. */
1193 		error = EMSGSIZE;
1194 		in6_ifstat_inc(ifp, ifs6_out_fragfail);
1195 		goto bad;
1196 	} else {
1197 		u_char nextproto;
1198 
1199 		/*
1200 		 * Too large for the destination or interface;
1201 		 * fragment if possible.
1202 		 * Must be able to put at least 8 bytes per fragment.
1203 		 */
1204 		if (mtu > IPV6_MAXPACKET)
1205 			mtu = IPV6_MAXPACKET;
1206 
1207 		len = (mtu - unfragpartlen - sizeof(struct ip6_frag)) & ~7;
1208 		if (len < 8) {
1209 			error = EMSGSIZE;
1210 			in6_ifstat_inc(ifp, ifs6_out_fragfail);
1211 			goto bad;
1212 		}
1213 
1214 		/*
1215 		 * If the interface will not calculate checksums on
1216 		 * fragmented packets, then do it here.
1217 		 * XXX-BZ handle the hw offloading case.  Need flags.
1218 		 */
1219 		ip6_output_delayed_csum(m, ifp, m->m_pkthdr.csum_flags, plen,
1220 		    optlen);
1221 
1222 		/*
1223 		 * Change the next header field of the last header in the
1224 		 * unfragmentable part.
1225 		 */
1226 		if (exthdrs.ip6e_rthdr) {
1227 			nextproto = *mtod(exthdrs.ip6e_rthdr, u_char *);
1228 			*mtod(exthdrs.ip6e_rthdr, u_char *) = IPPROTO_FRAGMENT;
1229 		} else if (exthdrs.ip6e_dest1) {
1230 			nextproto = *mtod(exthdrs.ip6e_dest1, u_char *);
1231 			*mtod(exthdrs.ip6e_dest1, u_char *) = IPPROTO_FRAGMENT;
1232 		} else if (exthdrs.ip6e_hbh) {
1233 			nextproto = *mtod(exthdrs.ip6e_hbh, u_char *);
1234 			*mtod(exthdrs.ip6e_hbh, u_char *) = IPPROTO_FRAGMENT;
1235 		} else {
1236 			ip6 = mtod(m, struct ip6_hdr *);
1237 			nextproto = ip6->ip6_nxt;
1238 			ip6->ip6_nxt = IPPROTO_FRAGMENT;
1239 		}
1240 
1241 		/*
1242 		 * Loop through length of segment after first fragment,
1243 		 * make new header and copy data of each part and link onto
1244 		 * chain.
1245 		 */
1246 		m0 = m;
1247 		id = htonl(ip6_randomid());
1248 		error = ip6_fragment(ifp, m, unfragpartlen, nextproto,len, id);
1249 		if (error != 0)
1250 			goto sendorfree;
1251 
1252 		in6_ifstat_inc(ifp, ifs6_out_fragok);
1253 	}
1254 
1255 	/* Remove leading garbage. */
1256 sendorfree:
1257 	m = m0->m_nextpkt;
1258 	m0->m_nextpkt = 0;
1259 	m_freem(m0);
1260 	for (; m; m = m0) {
1261 		m0 = m->m_nextpkt;
1262 		m->m_nextpkt = 0;
1263 		if (error == 0) {
1264 			/* Record statistics for this interface address. */
1265 			if (ia) {
1266 				counter_u64_add(ia->ia_ifa.ifa_opackets, 1);
1267 				counter_u64_add(ia->ia_ifa.ifa_obytes,
1268 				    m->m_pkthdr.len);
1269 			}
1270 			if (vlan_pcp > -1)
1271 				EVL_APPLY_PRI(m, vlan_pcp);
1272 			error = ip6_output_send(inp, ifp, origifp, m, dst, ro,
1273 			    true);
1274 		} else
1275 			m_freem(m);
1276 	}
1277 
1278 	if (error == 0)
1279 		IP6STAT_INC(ip6s_fragmented);
1280 
1281 done:
1282 	return (error);
1283 
1284 freehdrs:
1285 	m_freem(exthdrs.ip6e_hbh);	/* m_freem() checks if mbuf is NULL. */
1286 	m_freem(exthdrs.ip6e_dest1);
1287 	m_freem(exthdrs.ip6e_rthdr);
1288 	m_freem(exthdrs.ip6e_dest2);
1289 	/* FALLTHROUGH */
1290 bad:
1291 	if (m)
1292 		m_freem(m);
1293 	goto done;
1294 }
1295 
1296 static int
1297 ip6_copyexthdr(struct mbuf **mp, caddr_t hdr, int hlen)
1298 {
1299 	struct mbuf *m;
1300 
1301 	if (hlen > MCLBYTES)
1302 		return (ENOBUFS); /* XXX */
1303 
1304 	if (hlen > MLEN)
1305 		m = m_getcl(M_NOWAIT, MT_DATA, 0);
1306 	else
1307 		m = m_get(M_NOWAIT, MT_DATA);
1308 	if (m == NULL)
1309 		return (ENOBUFS);
1310 	m->m_len = hlen;
1311 	if (hdr)
1312 		bcopy(hdr, mtod(m, caddr_t), hlen);
1313 
1314 	*mp = m;
1315 	return (0);
1316 }
1317 
1318 /*
1319  * Insert jumbo payload option.
1320  */
1321 static int
1322 ip6_insert_jumboopt(struct ip6_exthdrs *exthdrs, u_int32_t plen)
1323 {
1324 	struct mbuf *mopt;
1325 	u_char *optbuf;
1326 	u_int32_t v;
1327 
1328 #define JUMBOOPTLEN	8	/* length of jumbo payload option and padding */
1329 
1330 	/*
1331 	 * If there is no hop-by-hop options header, allocate new one.
1332 	 * If there is one but it doesn't have enough space to store the
1333 	 * jumbo payload option, allocate a cluster to store the whole options.
1334 	 * Otherwise, use it to store the options.
1335 	 */
1336 	if (exthdrs->ip6e_hbh == NULL) {
1337 		mopt = m_get(M_NOWAIT, MT_DATA);
1338 		if (mopt == NULL)
1339 			return (ENOBUFS);
1340 		mopt->m_len = JUMBOOPTLEN;
1341 		optbuf = mtod(mopt, u_char *);
1342 		optbuf[1] = 0;	/* = ((JUMBOOPTLEN) >> 3) - 1 */
1343 		exthdrs->ip6e_hbh = mopt;
1344 	} else {
1345 		struct ip6_hbh *hbh;
1346 
1347 		mopt = exthdrs->ip6e_hbh;
1348 		if (M_TRAILINGSPACE(mopt) < JUMBOOPTLEN) {
1349 			/*
1350 			 * XXX assumption:
1351 			 * - exthdrs->ip6e_hbh is not referenced from places
1352 			 *   other than exthdrs.
1353 			 * - exthdrs->ip6e_hbh is not an mbuf chain.
1354 			 */
1355 			int oldoptlen = mopt->m_len;
1356 			struct mbuf *n;
1357 
1358 			/*
1359 			 * XXX: give up if the whole (new) hbh header does
1360 			 * not fit even in an mbuf cluster.
1361 			 */
1362 			if (oldoptlen + JUMBOOPTLEN > MCLBYTES)
1363 				return (ENOBUFS);
1364 
1365 			/*
1366 			 * As a consequence, we must always prepare a cluster
1367 			 * at this point.
1368 			 */
1369 			n = m_getcl(M_NOWAIT, MT_DATA, 0);
1370 			if (n == NULL)
1371 				return (ENOBUFS);
1372 			n->m_len = oldoptlen + JUMBOOPTLEN;
1373 			bcopy(mtod(mopt, caddr_t), mtod(n, caddr_t),
1374 			    oldoptlen);
1375 			optbuf = mtod(n, caddr_t) + oldoptlen;
1376 			m_freem(mopt);
1377 			mopt = exthdrs->ip6e_hbh = n;
1378 		} else {
1379 			optbuf = mtod(mopt, u_char *) + mopt->m_len;
1380 			mopt->m_len += JUMBOOPTLEN;
1381 		}
1382 		optbuf[0] = IP6OPT_PADN;
1383 		optbuf[1] = 1;
1384 
1385 		/*
1386 		 * Adjust the header length according to the pad and
1387 		 * the jumbo payload option.
1388 		 */
1389 		hbh = mtod(mopt, struct ip6_hbh *);
1390 		hbh->ip6h_len += (JUMBOOPTLEN >> 3);
1391 	}
1392 
1393 	/* fill in the option. */
1394 	optbuf[2] = IP6OPT_JUMBO;
1395 	optbuf[3] = 4;
1396 	v = (u_int32_t)htonl(plen + JUMBOOPTLEN);
1397 	bcopy(&v, &optbuf[4], sizeof(u_int32_t));
1398 
1399 	/* finally, adjust the packet header length */
1400 	exthdrs->ip6e_ip6->m_pkthdr.len += JUMBOOPTLEN;
1401 
1402 	return (0);
1403 #undef JUMBOOPTLEN
1404 }
1405 
1406 /*
1407  * Insert fragment header and copy unfragmentable header portions.
1408  */
1409 static int
1410 ip6_insertfraghdr(struct mbuf *m0, struct mbuf *m, int hlen,
1411     struct ip6_frag **frghdrp)
1412 {
1413 	struct mbuf *n, *mlast;
1414 
1415 	if (hlen > sizeof(struct ip6_hdr)) {
1416 		n = m_copym(m0, sizeof(struct ip6_hdr),
1417 		    hlen - sizeof(struct ip6_hdr), M_NOWAIT);
1418 		if (n == NULL)
1419 			return (ENOBUFS);
1420 		m->m_next = n;
1421 	} else
1422 		n = m;
1423 
1424 	/* Search for the last mbuf of unfragmentable part. */
1425 	for (mlast = n; mlast->m_next; mlast = mlast->m_next)
1426 		;
1427 
1428 	if (M_WRITABLE(mlast) &&
1429 	    M_TRAILINGSPACE(mlast) >= sizeof(struct ip6_frag)) {
1430 		/* use the trailing space of the last mbuf for the fragment hdr */
1431 		*frghdrp = (struct ip6_frag *)(mtod(mlast, caddr_t) +
1432 		    mlast->m_len);
1433 		mlast->m_len += sizeof(struct ip6_frag);
1434 		m->m_pkthdr.len += sizeof(struct ip6_frag);
1435 	} else {
1436 		/* allocate a new mbuf for the fragment header */
1437 		struct mbuf *mfrg;
1438 
1439 		mfrg = m_get(M_NOWAIT, MT_DATA);
1440 		if (mfrg == NULL)
1441 			return (ENOBUFS);
1442 		mfrg->m_len = sizeof(struct ip6_frag);
1443 		*frghdrp = mtod(mfrg, struct ip6_frag *);
1444 		mlast->m_next = mfrg;
1445 	}
1446 
1447 	return (0);
1448 }
1449 
1450 /*
1451  * Calculates IPv6 path mtu for destination @dst.
1452  * Resulting MTU is stored in @mtup.
1453  *
1454  * Returns 0 on success.
1455  */
1456 static int
1457 ip6_getpmtu_ctl(u_int fibnum, const struct in6_addr *dst, u_long *mtup)
1458 {
1459 	struct epoch_tracker et;
1460 	struct nhop_object *nh;
1461 	struct in6_addr kdst;
1462 	uint32_t scopeid;
1463 	int error;
1464 
1465 	in6_splitscope(dst, &kdst, &scopeid);
1466 
1467 	NET_EPOCH_ENTER(et);
1468 	nh = fib6_lookup(fibnum, &kdst, scopeid, NHR_NONE, 0);
1469 	if (nh != NULL)
1470 		error = ip6_calcmtu(nh->nh_ifp, dst, nh->nh_mtu, mtup, NULL, 0);
1471 	else
1472 		error = EHOSTUNREACH;
1473 	NET_EPOCH_EXIT(et);
1474 
1475 	return (error);
1476 }
1477 
1478 /*
1479  * Calculates IPv6 path MTU for @dst based on transmit @ifp,
1480  * and cached data in @ro_pmtu.
1481  * MTU from (successful) route lookup is saved (along with dst)
1482  * inside @ro_pmtu to avoid subsequent route lookups after packet
1483  * filter processing.
1484  *
1485  * Stores mtu and always-frag value into @mtup and @alwaysfragp.
1486  * Returns 0 on success.
1487  */
1488 static int
1489 ip6_getpmtu(struct route_in6 *ro_pmtu, int do_lookup,
1490     struct ifnet *ifp, const struct in6_addr *dst, u_long *mtup,
1491     int *alwaysfragp, u_int fibnum, u_int proto)
1492 {
1493 	struct nhop_object *nh;
1494 	struct in6_addr kdst;
1495 	uint32_t scopeid;
1496 	struct sockaddr_in6 *sa6_dst, sin6;
1497 	u_long mtu;
1498 
1499 	NET_EPOCH_ASSERT();
1500 
1501 	mtu = 0;
1502 	if (ro_pmtu == NULL || do_lookup) {
1503 		/*
1504 		 * Here ro_pmtu has final destination address, while
1505 		 * ro might represent immediate destination.
1506 		 * Use ro_pmtu destination since mtu might differ.
1507 		 */
1508 		if (ro_pmtu != NULL) {
1509 			sa6_dst = (struct sockaddr_in6 *)&ro_pmtu->ro_dst;
1510 			if (!IN6_ARE_ADDR_EQUAL(&sa6_dst->sin6_addr, dst))
1511 				ro_pmtu->ro_mtu = 0;
1512 		} else
1513 			sa6_dst = &sin6;
1514 
1515 		if (ro_pmtu == NULL || ro_pmtu->ro_mtu == 0) {
1516 			bzero(sa6_dst, sizeof(*sa6_dst));
1517 			sa6_dst->sin6_family = AF_INET6;
1518 			sa6_dst->sin6_len = sizeof(struct sockaddr_in6);
1519 			sa6_dst->sin6_addr = *dst;
1520 
1521 			in6_splitscope(dst, &kdst, &scopeid);
1522 			nh = fib6_lookup(fibnum, &kdst, scopeid, NHR_NONE, 0);
1523 			if (nh != NULL) {
1524 				mtu = nh->nh_mtu;
1525 				if (ro_pmtu != NULL)
1526 					ro_pmtu->ro_mtu = mtu;
1527 			}
1528 		} else
1529 			mtu = ro_pmtu->ro_mtu;
1530 	}
1531 
1532 	if (ro_pmtu != NULL && ro_pmtu->ro_nh != NULL)
1533 		mtu = ro_pmtu->ro_nh->nh_mtu;
1534 
1535 	return (ip6_calcmtu(ifp, dst, mtu, mtup, alwaysfragp, proto));
1536 }
1537 
1538 /*
1539  * Calculate MTU based on transmit @ifp, route mtu @rt_mtu and
1540  * hostcache data for @dst.
1541  * Stores mtu and always-frag value into @mtup and @alwaysfragp.
1542  *
1543  * Returns 0 on success.
1544  */
1545 static int
1546 ip6_calcmtu(struct ifnet *ifp, const struct in6_addr *dst, u_long rt_mtu,
1547     u_long *mtup, int *alwaysfragp, u_int proto)
1548 {
1549 	u_long mtu = 0;
1550 	int alwaysfrag = 0;
1551 	int error = 0;
1552 
1553 	if (rt_mtu > 0) {
1554 		u_int32_t ifmtu;
1555 		struct in_conninfo inc;
1556 
1557 		bzero(&inc, sizeof(inc));
1558 		inc.inc_flags |= INC_ISIPV6;
1559 		inc.inc6_faddr = *dst;
1560 
1561 		ifmtu = IN6_LINKMTU(ifp);
1562 
1563 		/* TCP is known to react to pmtu changes so skip hc */
1564 		if (proto != IPPROTO_TCP)
1565 			mtu = tcp_hc_getmtu(&inc);
1566 
1567 		if (mtu)
1568 			mtu = min(mtu, rt_mtu);
1569 		else
1570 			mtu = rt_mtu;
1571 		if (mtu == 0)
1572 			mtu = ifmtu;
1573 		else if (mtu < IPV6_MMTU) {
1574 			/*
1575 			 * RFC2460 section 5, last paragraph:
1576 			 * if we record ICMPv6 too big message with
1577 			 * mtu < IPV6_MMTU, transmit packets sized IPV6_MMTU
1578 			 * or smaller, with framgent header attached.
1579 			 * (fragment header is needed regardless from the
1580 			 * packet size, for translators to identify packets)
1581 			 */
1582 			alwaysfrag = 1;
1583 			mtu = IPV6_MMTU;
1584 		}
1585 	} else if (ifp) {
1586 		mtu = IN6_LINKMTU(ifp);
1587 	} else
1588 		error = EHOSTUNREACH; /* XXX */
1589 
1590 	*mtup = mtu;
1591 	if (alwaysfragp)
1592 		*alwaysfragp = alwaysfrag;
1593 	return (error);
1594 }
1595 
1596 /*
1597  * IP6 socket option processing.
1598  */
1599 int
1600 ip6_ctloutput(struct socket *so, struct sockopt *sopt)
1601 {
1602 	int optdatalen, uproto;
1603 	void *optdata;
1604 	struct inpcb *inp = sotoinpcb(so);
1605 	int error, optval;
1606 	int level, op, optname;
1607 	int optlen;
1608 	struct thread *td;
1609 #ifdef	RSS
1610 	uint32_t rss_bucket;
1611 	int retval;
1612 #endif
1613 
1614 /*
1615  * Don't use more than a quarter of mbuf clusters.  N.B.:
1616  * nmbclusters is an int, but nmbclusters * MCLBYTES may overflow
1617  * on LP64 architectures, so cast to u_long to avoid undefined
1618  * behavior.  ILP32 architectures cannot have nmbclusters
1619  * large enough to overflow for other reasons.
1620  */
1621 #define IPV6_PKTOPTIONS_MBUF_LIMIT	((u_long)nmbclusters * MCLBYTES / 4)
1622 
1623 	level = sopt->sopt_level;
1624 	op = sopt->sopt_dir;
1625 	optname = sopt->sopt_name;
1626 	optlen = sopt->sopt_valsize;
1627 	td = sopt->sopt_td;
1628 	error = 0;
1629 	optval = 0;
1630 	uproto = (int)so->so_proto->pr_protocol;
1631 
1632 	if (level != IPPROTO_IPV6) {
1633 		error = EINVAL;
1634 
1635 		if (sopt->sopt_level == SOL_SOCKET &&
1636 		    sopt->sopt_dir == SOPT_SET) {
1637 			switch (sopt->sopt_name) {
1638 			case SO_REUSEADDR:
1639 				INP_WLOCK(inp);
1640 				if ((so->so_options & SO_REUSEADDR) != 0)
1641 					inp->inp_flags2 |= INP_REUSEADDR;
1642 				else
1643 					inp->inp_flags2 &= ~INP_REUSEADDR;
1644 				INP_WUNLOCK(inp);
1645 				error = 0;
1646 				break;
1647 			case SO_REUSEPORT:
1648 				INP_WLOCK(inp);
1649 				if ((so->so_options & SO_REUSEPORT) != 0)
1650 					inp->inp_flags2 |= INP_REUSEPORT;
1651 				else
1652 					inp->inp_flags2 &= ~INP_REUSEPORT;
1653 				INP_WUNLOCK(inp);
1654 				error = 0;
1655 				break;
1656 			case SO_REUSEPORT_LB:
1657 				INP_WLOCK(inp);
1658 				if ((so->so_options & SO_REUSEPORT_LB) != 0)
1659 					inp->inp_flags2 |= INP_REUSEPORT_LB;
1660 				else
1661 					inp->inp_flags2 &= ~INP_REUSEPORT_LB;
1662 				INP_WUNLOCK(inp);
1663 				error = 0;
1664 				break;
1665 			case SO_SETFIB:
1666 				INP_WLOCK(inp);
1667 				inp->inp_inc.inc_fibnum = so->so_fibnum;
1668 				INP_WUNLOCK(inp);
1669 				error = 0;
1670 				break;
1671 			case SO_MAX_PACING_RATE:
1672 #ifdef RATELIMIT
1673 				INP_WLOCK(inp);
1674 				inp->inp_flags2 |= INP_RATE_LIMIT_CHANGED;
1675 				INP_WUNLOCK(inp);
1676 				error = 0;
1677 #else
1678 				error = EOPNOTSUPP;
1679 #endif
1680 				break;
1681 			default:
1682 				break;
1683 			}
1684 		}
1685 	} else {		/* level == IPPROTO_IPV6 */
1686 		switch (op) {
1687 		case SOPT_SET:
1688 			switch (optname) {
1689 			case IPV6_2292PKTOPTIONS:
1690 #ifdef IPV6_PKTOPTIONS
1691 			case IPV6_PKTOPTIONS:
1692 #endif
1693 			{
1694 				struct mbuf *m;
1695 
1696 				if (optlen > IPV6_PKTOPTIONS_MBUF_LIMIT) {
1697 					printf("ip6_ctloutput: mbuf limit hit\n");
1698 					error = ENOBUFS;
1699 					break;
1700 				}
1701 
1702 				error = soopt_getm(sopt, &m); /* XXX */
1703 				if (error != 0)
1704 					break;
1705 				error = soopt_mcopyin(sopt, m); /* XXX */
1706 				if (error != 0)
1707 					break;
1708 				INP_WLOCK(inp);
1709 				error = ip6_pcbopts(&inp->in6p_outputopts, m,
1710 				    so, sopt);
1711 				INP_WUNLOCK(inp);
1712 				m_freem(m); /* XXX */
1713 				break;
1714 			}
1715 
1716 			/*
1717 			 * Use of some Hop-by-Hop options or some
1718 			 * Destination options, might require special
1719 			 * privilege.  That is, normal applications
1720 			 * (without special privilege) might be forbidden
1721 			 * from setting certain options in outgoing packets,
1722 			 * and might never see certain options in received
1723 			 * packets. [RFC 2292 Section 6]
1724 			 * KAME specific note:
1725 			 *  KAME prevents non-privileged users from sending or
1726 			 *  receiving ANY hbh/dst options in order to avoid
1727 			 *  overhead of parsing options in the kernel.
1728 			 */
1729 			case IPV6_RECVHOPOPTS:
1730 			case IPV6_RECVDSTOPTS:
1731 			case IPV6_RECVRTHDRDSTOPTS:
1732 				if (td != NULL) {
1733 					error = priv_check(td,
1734 					    PRIV_NETINET_SETHDROPTS);
1735 					if (error)
1736 						break;
1737 				}
1738 				/* FALLTHROUGH */
1739 			case IPV6_UNICAST_HOPS:
1740 			case IPV6_HOPLIMIT:
1741 
1742 			case IPV6_RECVPKTINFO:
1743 			case IPV6_RECVHOPLIMIT:
1744 			case IPV6_RECVRTHDR:
1745 			case IPV6_RECVPATHMTU:
1746 			case IPV6_RECVTCLASS:
1747 			case IPV6_RECVFLOWID:
1748 #ifdef	RSS
1749 			case IPV6_RECVRSSBUCKETID:
1750 #endif
1751 			case IPV6_V6ONLY:
1752 			case IPV6_AUTOFLOWLABEL:
1753 			case IPV6_ORIGDSTADDR:
1754 			case IPV6_BINDANY:
1755 #ifdef	RSS
1756 			case IPV6_RSS_LISTEN_BUCKET:
1757 #endif
1758 			case IPV6_VLAN_PCP:
1759 				if (optname == IPV6_BINDANY && td != NULL) {
1760 					error = priv_check(td,
1761 					    PRIV_NETINET_BINDANY);
1762 					if (error)
1763 						break;
1764 				}
1765 
1766 				if (optlen != sizeof(int)) {
1767 					error = EINVAL;
1768 					break;
1769 				}
1770 				error = sooptcopyin(sopt, &optval,
1771 					sizeof optval, sizeof optval);
1772 				if (error)
1773 					break;
1774 				switch (optname) {
1775 				case IPV6_UNICAST_HOPS:
1776 					if (optval < -1 || optval >= 256)
1777 						error = EINVAL;
1778 					else {
1779 						/* -1 = kernel default */
1780 						inp->in6p_hops = optval;
1781 						if ((inp->inp_vflag &
1782 						     INP_IPV4) != 0)
1783 							inp->inp_ip_ttl = optval;
1784 					}
1785 					break;
1786 #define OPTSET(bit) \
1787 do { \
1788 	INP_WLOCK(inp); \
1789 	if (optval) \
1790 		inp->inp_flags |= (bit); \
1791 	else \
1792 		inp->inp_flags &= ~(bit); \
1793 	INP_WUNLOCK(inp); \
1794 } while (/*CONSTCOND*/ 0)
1795 #define OPTSET2292(bit) \
1796 do { \
1797 	INP_WLOCK(inp); \
1798 	inp->inp_flags |= IN6P_RFC2292; \
1799 	if (optval) \
1800 		inp->inp_flags |= (bit); \
1801 	else \
1802 		inp->inp_flags &= ~(bit); \
1803 	INP_WUNLOCK(inp); \
1804 } while (/*CONSTCOND*/ 0)
1805 #define OPTBIT(bit) (inp->inp_flags & (bit) ? 1 : 0)
1806 
1807 #define OPTSET2_N(bit, val) do {					\
1808 	if (val)							\
1809 		inp->inp_flags2 |= bit;					\
1810 	else								\
1811 		inp->inp_flags2 &= ~bit;				\
1812 } while (0)
1813 #define OPTSET2(bit, val) do {						\
1814 	INP_WLOCK(inp);							\
1815 	OPTSET2_N(bit, val);						\
1816 	INP_WUNLOCK(inp);						\
1817 } while (0)
1818 #define OPTBIT2(bit) (inp->inp_flags2 & (bit) ? 1 : 0)
1819 #define OPTSET2292_EXCLUSIVE(bit)					\
1820 do {									\
1821 	INP_WLOCK(inp);							\
1822 	if (OPTBIT(IN6P_RFC2292)) {					\
1823 		error = EINVAL;						\
1824 	} else {							\
1825 		if (optval)						\
1826 			inp->inp_flags |= (bit);			\
1827 		else							\
1828 			inp->inp_flags &= ~(bit);			\
1829 	}								\
1830 	INP_WUNLOCK(inp);						\
1831 } while (/*CONSTCOND*/ 0)
1832 
1833 				case IPV6_RECVPKTINFO:
1834 					OPTSET2292_EXCLUSIVE(IN6P_PKTINFO);
1835 					break;
1836 
1837 				case IPV6_HOPLIMIT:
1838 				{
1839 					struct ip6_pktopts **optp;
1840 
1841 					/* cannot mix with RFC2292 */
1842 					if (OPTBIT(IN6P_RFC2292)) {
1843 						error = EINVAL;
1844 						break;
1845 					}
1846 					INP_WLOCK(inp);
1847 					if (inp->inp_flags & INP_DROPPED) {
1848 						INP_WUNLOCK(inp);
1849 						return (ECONNRESET);
1850 					}
1851 					optp = &inp->in6p_outputopts;
1852 					error = ip6_pcbopt(IPV6_HOPLIMIT,
1853 					    (u_char *)&optval, sizeof(optval),
1854 					    optp, (td != NULL) ? td->td_ucred :
1855 					    NULL, uproto);
1856 					INP_WUNLOCK(inp);
1857 					break;
1858 				}
1859 
1860 				case IPV6_RECVHOPLIMIT:
1861 					OPTSET2292_EXCLUSIVE(IN6P_HOPLIMIT);
1862 					break;
1863 
1864 				case IPV6_RECVHOPOPTS:
1865 					OPTSET2292_EXCLUSIVE(IN6P_HOPOPTS);
1866 					break;
1867 
1868 				case IPV6_RECVDSTOPTS:
1869 					OPTSET2292_EXCLUSIVE(IN6P_DSTOPTS);
1870 					break;
1871 
1872 				case IPV6_RECVRTHDRDSTOPTS:
1873 					OPTSET2292_EXCLUSIVE(IN6P_RTHDRDSTOPTS);
1874 					break;
1875 
1876 				case IPV6_RECVRTHDR:
1877 					OPTSET2292_EXCLUSIVE(IN6P_RTHDR);
1878 					break;
1879 
1880 				case IPV6_RECVPATHMTU:
1881 					/*
1882 					 * We ignore this option for TCP
1883 					 * sockets.
1884 					 * (RFC3542 leaves this case
1885 					 * unspecified.)
1886 					 */
1887 					if (uproto != IPPROTO_TCP)
1888 						OPTSET(IN6P_MTU);
1889 					break;
1890 
1891 				case IPV6_RECVFLOWID:
1892 					OPTSET2(INP_RECVFLOWID, optval);
1893 					break;
1894 
1895 #ifdef	RSS
1896 				case IPV6_RECVRSSBUCKETID:
1897 					OPTSET2(INP_RECVRSSBUCKETID, optval);
1898 					break;
1899 #endif
1900 
1901 				case IPV6_V6ONLY:
1902 					INP_WLOCK(inp);
1903 					if (inp->inp_lport ||
1904 					    !IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr)) {
1905 						/*
1906 						 * The socket is already bound.
1907 						 */
1908 						INP_WUNLOCK(inp);
1909 						error = EINVAL;
1910 						break;
1911 					}
1912 					if (optval) {
1913 						inp->inp_flags |= IN6P_IPV6_V6ONLY;
1914 						inp->inp_vflag &= ~INP_IPV4;
1915 					} else {
1916 						inp->inp_flags &= ~IN6P_IPV6_V6ONLY;
1917 						inp->inp_vflag |= INP_IPV4;
1918 					}
1919 					INP_WUNLOCK(inp);
1920 					break;
1921 				case IPV6_RECVTCLASS:
1922 					/* cannot mix with RFC2292 XXX */
1923 					OPTSET2292_EXCLUSIVE(IN6P_TCLASS);
1924 					break;
1925 				case IPV6_AUTOFLOWLABEL:
1926 					OPTSET(IN6P_AUTOFLOWLABEL);
1927 					break;
1928 
1929 				case IPV6_ORIGDSTADDR:
1930 					OPTSET2(INP_ORIGDSTADDR, optval);
1931 					break;
1932 				case IPV6_BINDANY:
1933 					OPTSET(INP_BINDANY);
1934 					break;
1935 #ifdef	RSS
1936 				case IPV6_RSS_LISTEN_BUCKET:
1937 					if ((optval >= 0) &&
1938 					    (optval < rss_getnumbuckets())) {
1939 						INP_WLOCK(inp);
1940 						inp->inp_rss_listen_bucket = optval;
1941 						OPTSET2_N(INP_RSS_BUCKET_SET, 1);
1942 						INP_WUNLOCK(inp);
1943 					} else {
1944 						error = EINVAL;
1945 					}
1946 					break;
1947 #endif
1948 				case IPV6_VLAN_PCP:
1949 					if ((optval >= -1) && (optval <=
1950 					    (INP_2PCP_MASK >> INP_2PCP_SHIFT))) {
1951 						if (optval == -1) {
1952 							INP_WLOCK(inp);
1953 							inp->inp_flags2 &=
1954 							    ~(INP_2PCP_SET |
1955 							    INP_2PCP_MASK);
1956 							INP_WUNLOCK(inp);
1957 						} else {
1958 							INP_WLOCK(inp);
1959 							inp->inp_flags2 |=
1960 							    INP_2PCP_SET;
1961 							inp->inp_flags2 &=
1962 							    ~INP_2PCP_MASK;
1963 							inp->inp_flags2 |=
1964 							    optval <<
1965 							    INP_2PCP_SHIFT;
1966 							INP_WUNLOCK(inp);
1967 						}
1968 					} else
1969 						error = EINVAL;
1970 					break;
1971 				}
1972 				break;
1973 
1974 			case IPV6_TCLASS:
1975 			case IPV6_DONTFRAG:
1976 			case IPV6_USE_MIN_MTU:
1977 			case IPV6_PREFER_TEMPADDR:
1978 				if (optlen != sizeof(optval)) {
1979 					error = EINVAL;
1980 					break;
1981 				}
1982 				error = sooptcopyin(sopt, &optval,
1983 					sizeof optval, sizeof optval);
1984 				if (error)
1985 					break;
1986 				{
1987 					struct ip6_pktopts **optp;
1988 					INP_WLOCK(inp);
1989 					if (inp->inp_flags & INP_DROPPED) {
1990 						INP_WUNLOCK(inp);
1991 						return (ECONNRESET);
1992 					}
1993 					optp = &inp->in6p_outputopts;
1994 					error = ip6_pcbopt(optname,
1995 					    (u_char *)&optval, sizeof(optval),
1996 					    optp, (td != NULL) ? td->td_ucred :
1997 					    NULL, uproto);
1998 					INP_WUNLOCK(inp);
1999 					break;
2000 				}
2001 
2002 			case IPV6_2292PKTINFO:
2003 			case IPV6_2292HOPLIMIT:
2004 			case IPV6_2292HOPOPTS:
2005 			case IPV6_2292DSTOPTS:
2006 			case IPV6_2292RTHDR:
2007 				/* RFC 2292 */
2008 				if (optlen != sizeof(int)) {
2009 					error = EINVAL;
2010 					break;
2011 				}
2012 				error = sooptcopyin(sopt, &optval,
2013 					sizeof optval, sizeof optval);
2014 				if (error)
2015 					break;
2016 				switch (optname) {
2017 				case IPV6_2292PKTINFO:
2018 					OPTSET2292(IN6P_PKTINFO);
2019 					break;
2020 				case IPV6_2292HOPLIMIT:
2021 					OPTSET2292(IN6P_HOPLIMIT);
2022 					break;
2023 				case IPV6_2292HOPOPTS:
2024 					/*
2025 					 * Check super-user privilege.
2026 					 * See comments for IPV6_RECVHOPOPTS.
2027 					 */
2028 					if (td != NULL) {
2029 						error = priv_check(td,
2030 						    PRIV_NETINET_SETHDROPTS);
2031 						if (error)
2032 							return (error);
2033 					}
2034 					OPTSET2292(IN6P_HOPOPTS);
2035 					break;
2036 				case IPV6_2292DSTOPTS:
2037 					if (td != NULL) {
2038 						error = priv_check(td,
2039 						    PRIV_NETINET_SETHDROPTS);
2040 						if (error)
2041 							return (error);
2042 					}
2043 					OPTSET2292(IN6P_DSTOPTS|IN6P_RTHDRDSTOPTS); /* XXX */
2044 					break;
2045 				case IPV6_2292RTHDR:
2046 					OPTSET2292(IN6P_RTHDR);
2047 					break;
2048 				}
2049 				break;
2050 			case IPV6_PKTINFO:
2051 			case IPV6_HOPOPTS:
2052 			case IPV6_RTHDR:
2053 			case IPV6_DSTOPTS:
2054 			case IPV6_RTHDRDSTOPTS:
2055 			case IPV6_NEXTHOP:
2056 			{
2057 				/* new advanced API (RFC3542) */
2058 				u_char *optbuf;
2059 				u_char optbuf_storage[MCLBYTES];
2060 				int optlen;
2061 				struct ip6_pktopts **optp;
2062 
2063 				/* cannot mix with RFC2292 */
2064 				if (OPTBIT(IN6P_RFC2292)) {
2065 					error = EINVAL;
2066 					break;
2067 				}
2068 
2069 				/*
2070 				 * We only ensure valsize is not too large
2071 				 * here.  Further validation will be done
2072 				 * later.
2073 				 */
2074 				error = sooptcopyin(sopt, optbuf_storage,
2075 				    sizeof(optbuf_storage), 0);
2076 				if (error)
2077 					break;
2078 				optlen = sopt->sopt_valsize;
2079 				optbuf = optbuf_storage;
2080 				INP_WLOCK(inp);
2081 				if (inp->inp_flags & INP_DROPPED) {
2082 					INP_WUNLOCK(inp);
2083 					return (ECONNRESET);
2084 				}
2085 				optp = &inp->in6p_outputopts;
2086 				error = ip6_pcbopt(optname, optbuf, optlen,
2087 				    optp, (td != NULL) ? td->td_ucred : NULL,
2088 				    uproto);
2089 				INP_WUNLOCK(inp);
2090 				break;
2091 			}
2092 #undef OPTSET
2093 
2094 			case IPV6_MULTICAST_IF:
2095 			case IPV6_MULTICAST_HOPS:
2096 			case IPV6_MULTICAST_LOOP:
2097 			case IPV6_JOIN_GROUP:
2098 			case IPV6_LEAVE_GROUP:
2099 			case IPV6_MSFILTER:
2100 			case MCAST_BLOCK_SOURCE:
2101 			case MCAST_UNBLOCK_SOURCE:
2102 			case MCAST_JOIN_GROUP:
2103 			case MCAST_LEAVE_GROUP:
2104 			case MCAST_JOIN_SOURCE_GROUP:
2105 			case MCAST_LEAVE_SOURCE_GROUP:
2106 				error = ip6_setmoptions(inp, sopt);
2107 				break;
2108 
2109 			case IPV6_PORTRANGE:
2110 				error = sooptcopyin(sopt, &optval,
2111 				    sizeof optval, sizeof optval);
2112 				if (error)
2113 					break;
2114 
2115 				INP_WLOCK(inp);
2116 				switch (optval) {
2117 				case IPV6_PORTRANGE_DEFAULT:
2118 					inp->inp_flags &= ~(INP_LOWPORT);
2119 					inp->inp_flags &= ~(INP_HIGHPORT);
2120 					break;
2121 
2122 				case IPV6_PORTRANGE_HIGH:
2123 					inp->inp_flags &= ~(INP_LOWPORT);
2124 					inp->inp_flags |= INP_HIGHPORT;
2125 					break;
2126 
2127 				case IPV6_PORTRANGE_LOW:
2128 					inp->inp_flags &= ~(INP_HIGHPORT);
2129 					inp->inp_flags |= INP_LOWPORT;
2130 					break;
2131 
2132 				default:
2133 					error = EINVAL;
2134 					break;
2135 				}
2136 				INP_WUNLOCK(inp);
2137 				break;
2138 
2139 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
2140 			case IPV6_IPSEC_POLICY:
2141 				if (IPSEC_ENABLED(ipv6)) {
2142 					error = IPSEC_PCBCTL(ipv6, inp, sopt);
2143 					break;
2144 				}
2145 				/* FALLTHROUGH */
2146 #endif /* IPSEC */
2147 
2148 			default:
2149 				error = ENOPROTOOPT;
2150 				break;
2151 			}
2152 			break;
2153 
2154 		case SOPT_GET:
2155 			switch (optname) {
2156 			case IPV6_2292PKTOPTIONS:
2157 #ifdef IPV6_PKTOPTIONS
2158 			case IPV6_PKTOPTIONS:
2159 #endif
2160 				/*
2161 				 * RFC3542 (effectively) deprecated the
2162 				 * semantics of the 2292-style pktoptions.
2163 				 * Since it was not reliable in nature (i.e.,
2164 				 * applications had to expect the lack of some
2165 				 * information after all), it would make sense
2166 				 * to simplify this part by always returning
2167 				 * empty data.
2168 				 */
2169 				sopt->sopt_valsize = 0;
2170 				break;
2171 
2172 			case IPV6_RECVHOPOPTS:
2173 			case IPV6_RECVDSTOPTS:
2174 			case IPV6_RECVRTHDRDSTOPTS:
2175 			case IPV6_UNICAST_HOPS:
2176 			case IPV6_RECVPKTINFO:
2177 			case IPV6_RECVHOPLIMIT:
2178 			case IPV6_RECVRTHDR:
2179 			case IPV6_RECVPATHMTU:
2180 
2181 			case IPV6_V6ONLY:
2182 			case IPV6_PORTRANGE:
2183 			case IPV6_RECVTCLASS:
2184 			case IPV6_AUTOFLOWLABEL:
2185 			case IPV6_BINDANY:
2186 			case IPV6_FLOWID:
2187 			case IPV6_FLOWTYPE:
2188 			case IPV6_RECVFLOWID:
2189 #ifdef	RSS
2190 			case IPV6_RSSBUCKETID:
2191 			case IPV6_RECVRSSBUCKETID:
2192 #endif
2193 			case IPV6_VLAN_PCP:
2194 				switch (optname) {
2195 				case IPV6_RECVHOPOPTS:
2196 					optval = OPTBIT(IN6P_HOPOPTS);
2197 					break;
2198 
2199 				case IPV6_RECVDSTOPTS:
2200 					optval = OPTBIT(IN6P_DSTOPTS);
2201 					break;
2202 
2203 				case IPV6_RECVRTHDRDSTOPTS:
2204 					optval = OPTBIT(IN6P_RTHDRDSTOPTS);
2205 					break;
2206 
2207 				case IPV6_UNICAST_HOPS:
2208 					optval = inp->in6p_hops;
2209 					break;
2210 
2211 				case IPV6_RECVPKTINFO:
2212 					optval = OPTBIT(IN6P_PKTINFO);
2213 					break;
2214 
2215 				case IPV6_RECVHOPLIMIT:
2216 					optval = OPTBIT(IN6P_HOPLIMIT);
2217 					break;
2218 
2219 				case IPV6_RECVRTHDR:
2220 					optval = OPTBIT(IN6P_RTHDR);
2221 					break;
2222 
2223 				case IPV6_RECVPATHMTU:
2224 					optval = OPTBIT(IN6P_MTU);
2225 					break;
2226 
2227 				case IPV6_V6ONLY:
2228 					optval = OPTBIT(IN6P_IPV6_V6ONLY);
2229 					break;
2230 
2231 				case IPV6_PORTRANGE:
2232 				    {
2233 					int flags;
2234 					flags = inp->inp_flags;
2235 					if (flags & INP_HIGHPORT)
2236 						optval = IPV6_PORTRANGE_HIGH;
2237 					else if (flags & INP_LOWPORT)
2238 						optval = IPV6_PORTRANGE_LOW;
2239 					else
2240 						optval = 0;
2241 					break;
2242 				    }
2243 				case IPV6_RECVTCLASS:
2244 					optval = OPTBIT(IN6P_TCLASS);
2245 					break;
2246 
2247 				case IPV6_AUTOFLOWLABEL:
2248 					optval = OPTBIT(IN6P_AUTOFLOWLABEL);
2249 					break;
2250 
2251 				case IPV6_ORIGDSTADDR:
2252 					optval = OPTBIT2(INP_ORIGDSTADDR);
2253 					break;
2254 
2255 				case IPV6_BINDANY:
2256 					optval = OPTBIT(INP_BINDANY);
2257 					break;
2258 
2259 				case IPV6_FLOWID:
2260 					optval = inp->inp_flowid;
2261 					break;
2262 
2263 				case IPV6_FLOWTYPE:
2264 					optval = inp->inp_flowtype;
2265 					break;
2266 
2267 				case IPV6_RECVFLOWID:
2268 					optval = OPTBIT2(INP_RECVFLOWID);
2269 					break;
2270 #ifdef	RSS
2271 				case IPV6_RSSBUCKETID:
2272 					retval =
2273 					    rss_hash2bucket(inp->inp_flowid,
2274 					    inp->inp_flowtype,
2275 					    &rss_bucket);
2276 					if (retval == 0)
2277 						optval = rss_bucket;
2278 					else
2279 						error = EINVAL;
2280 					break;
2281 
2282 				case IPV6_RECVRSSBUCKETID:
2283 					optval = OPTBIT2(INP_RECVRSSBUCKETID);
2284 					break;
2285 #endif
2286 
2287 
2288 				case IPV6_VLAN_PCP:
2289 					if (OPTBIT2(INP_2PCP_SET)) {
2290 						optval = (inp->inp_flags2 &
2291 							    INP_2PCP_MASK) >>
2292 							    INP_2PCP_SHIFT;
2293 					} else {
2294 						optval = -1;
2295 					}
2296 					break;
2297 				}
2298 
2299 				if (error)
2300 					break;
2301 				error = sooptcopyout(sopt, &optval,
2302 					sizeof optval);
2303 				break;
2304 
2305 			case IPV6_PATHMTU:
2306 			{
2307 				u_long pmtu = 0;
2308 				struct ip6_mtuinfo mtuinfo;
2309 				struct in6_addr addr;
2310 
2311 				if (!(so->so_state & SS_ISCONNECTED))
2312 					return (ENOTCONN);
2313 				/*
2314 				 * XXX: we dot not consider the case of source
2315 				 * routing, or optional information to specify
2316 				 * the outgoing interface.
2317 				 * Copy faddr out of inp to avoid holding lock
2318 				 * on inp during route lookup.
2319 				 */
2320 				INP_RLOCK(inp);
2321 				bcopy(&inp->in6p_faddr, &addr, sizeof(addr));
2322 				INP_RUNLOCK(inp);
2323 				error = ip6_getpmtu_ctl(so->so_fibnum,
2324 				    &addr, &pmtu);
2325 				if (error)
2326 					break;
2327 				if (pmtu > IPV6_MAXPACKET)
2328 					pmtu = IPV6_MAXPACKET;
2329 
2330 				bzero(&mtuinfo, sizeof(mtuinfo));
2331 				mtuinfo.ip6m_mtu = (u_int32_t)pmtu;
2332 				optdata = (void *)&mtuinfo;
2333 				optdatalen = sizeof(mtuinfo);
2334 				error = sooptcopyout(sopt, optdata,
2335 				    optdatalen);
2336 				break;
2337 			}
2338 
2339 			case IPV6_2292PKTINFO:
2340 			case IPV6_2292HOPLIMIT:
2341 			case IPV6_2292HOPOPTS:
2342 			case IPV6_2292RTHDR:
2343 			case IPV6_2292DSTOPTS:
2344 				switch (optname) {
2345 				case IPV6_2292PKTINFO:
2346 					optval = OPTBIT(IN6P_PKTINFO);
2347 					break;
2348 				case IPV6_2292HOPLIMIT:
2349 					optval = OPTBIT(IN6P_HOPLIMIT);
2350 					break;
2351 				case IPV6_2292HOPOPTS:
2352 					optval = OPTBIT(IN6P_HOPOPTS);
2353 					break;
2354 				case IPV6_2292RTHDR:
2355 					optval = OPTBIT(IN6P_RTHDR);
2356 					break;
2357 				case IPV6_2292DSTOPTS:
2358 					optval = OPTBIT(IN6P_DSTOPTS|IN6P_RTHDRDSTOPTS);
2359 					break;
2360 				}
2361 				error = sooptcopyout(sopt, &optval,
2362 				    sizeof optval);
2363 				break;
2364 			case IPV6_PKTINFO:
2365 			case IPV6_HOPOPTS:
2366 			case IPV6_RTHDR:
2367 			case IPV6_DSTOPTS:
2368 			case IPV6_RTHDRDSTOPTS:
2369 			case IPV6_NEXTHOP:
2370 			case IPV6_TCLASS:
2371 			case IPV6_DONTFRAG:
2372 			case IPV6_USE_MIN_MTU:
2373 			case IPV6_PREFER_TEMPADDR:
2374 				error = ip6_getpcbopt(inp, optname, sopt);
2375 				break;
2376 
2377 			case IPV6_MULTICAST_IF:
2378 			case IPV6_MULTICAST_HOPS:
2379 			case IPV6_MULTICAST_LOOP:
2380 			case IPV6_MSFILTER:
2381 				error = ip6_getmoptions(inp, sopt);
2382 				break;
2383 
2384 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
2385 			case IPV6_IPSEC_POLICY:
2386 				if (IPSEC_ENABLED(ipv6)) {
2387 					error = IPSEC_PCBCTL(ipv6, inp, sopt);
2388 					break;
2389 				}
2390 				/* FALLTHROUGH */
2391 #endif /* IPSEC */
2392 			default:
2393 				error = ENOPROTOOPT;
2394 				break;
2395 			}
2396 			break;
2397 		}
2398 	}
2399 	return (error);
2400 }
2401 
2402 int
2403 ip6_raw_ctloutput(struct socket *so, struct sockopt *sopt)
2404 {
2405 	int error = 0, optval, optlen;
2406 	const int icmp6off = offsetof(struct icmp6_hdr, icmp6_cksum);
2407 	struct inpcb *inp = sotoinpcb(so);
2408 	int level, op, optname;
2409 
2410 	level = sopt->sopt_level;
2411 	op = sopt->sopt_dir;
2412 	optname = sopt->sopt_name;
2413 	optlen = sopt->sopt_valsize;
2414 
2415 	if (level != IPPROTO_IPV6) {
2416 		return (EINVAL);
2417 	}
2418 
2419 	switch (optname) {
2420 	case IPV6_CHECKSUM:
2421 		/*
2422 		 * For ICMPv6 sockets, no modification allowed for checksum
2423 		 * offset, permit "no change" values to help existing apps.
2424 		 *
2425 		 * RFC3542 says: "An attempt to set IPV6_CHECKSUM
2426 		 * for an ICMPv6 socket will fail."
2427 		 * The current behavior does not meet RFC3542.
2428 		 */
2429 		switch (op) {
2430 		case SOPT_SET:
2431 			if (optlen != sizeof(int)) {
2432 				error = EINVAL;
2433 				break;
2434 			}
2435 			error = sooptcopyin(sopt, &optval, sizeof(optval),
2436 					    sizeof(optval));
2437 			if (error)
2438 				break;
2439 			if (optval < -1 || (optval % 2) != 0) {
2440 				/*
2441 				 * The API assumes non-negative even offset
2442 				 * values or -1 as a special value.
2443 				 */
2444 				error = EINVAL;
2445 			} else if (inp->inp_ip_p == IPPROTO_ICMPV6) {
2446 				if (optval != icmp6off)
2447 					error = EINVAL;
2448 			} else
2449 				inp->in6p_cksum = optval;
2450 			break;
2451 
2452 		case SOPT_GET:
2453 			if (inp->inp_ip_p == IPPROTO_ICMPV6)
2454 				optval = icmp6off;
2455 			else
2456 				optval = inp->in6p_cksum;
2457 
2458 			error = sooptcopyout(sopt, &optval, sizeof(optval));
2459 			break;
2460 
2461 		default:
2462 			error = EINVAL;
2463 			break;
2464 		}
2465 		break;
2466 
2467 	default:
2468 		error = ENOPROTOOPT;
2469 		break;
2470 	}
2471 
2472 	return (error);
2473 }
2474 
2475 /*
2476  * Set up IP6 options in pcb for insertion in output packets or
2477  * specifying behavior of outgoing packets.
2478  */
2479 static int
2480 ip6_pcbopts(struct ip6_pktopts **pktopt, struct mbuf *m,
2481     struct socket *so, struct sockopt *sopt)
2482 {
2483 	struct ip6_pktopts *opt = *pktopt;
2484 	int error = 0;
2485 	struct thread *td = sopt->sopt_td;
2486 	struct epoch_tracker et;
2487 
2488 	/* turn off any old options. */
2489 	if (opt) {
2490 #ifdef DIAGNOSTIC
2491 		if (opt->ip6po_pktinfo || opt->ip6po_nexthop ||
2492 		    opt->ip6po_hbh || opt->ip6po_dest1 || opt->ip6po_dest2 ||
2493 		    opt->ip6po_rhinfo.ip6po_rhi_rthdr)
2494 			printf("ip6_pcbopts: all specified options are cleared.\n");
2495 #endif
2496 		ip6_clearpktopts(opt, -1);
2497 	} else {
2498 		opt = malloc(sizeof(*opt), M_IP6OPT, M_NOWAIT);
2499 		if (opt == NULL)
2500 			return (ENOMEM);
2501 	}
2502 	*pktopt = NULL;
2503 
2504 	if (!m || m->m_len == 0) {
2505 		/*
2506 		 * Only turning off any previous options, regardless of
2507 		 * whether the opt is just created or given.
2508 		 */
2509 		free(opt, M_IP6OPT);
2510 		return (0);
2511 	}
2512 
2513 	/*  set options specified by user. */
2514 	NET_EPOCH_ENTER(et);
2515 	if ((error = ip6_setpktopts(m, opt, NULL, (td != NULL) ?
2516 	    td->td_ucred : NULL, so->so_proto->pr_protocol)) != 0) {
2517 		ip6_clearpktopts(opt, -1); /* XXX: discard all options */
2518 		free(opt, M_IP6OPT);
2519 		NET_EPOCH_EXIT(et);
2520 		return (error);
2521 	}
2522 	NET_EPOCH_EXIT(et);
2523 	*pktopt = opt;
2524 	return (0);
2525 }
2526 
2527 /*
2528  * initialize ip6_pktopts.  beware that there are non-zero default values in
2529  * the struct.
2530  */
2531 void
2532 ip6_initpktopts(struct ip6_pktopts *opt)
2533 {
2534 
2535 	bzero(opt, sizeof(*opt));
2536 	opt->ip6po_hlim = -1;	/* -1 means default hop limit */
2537 	opt->ip6po_tclass = -1;	/* -1 means default traffic class */
2538 	opt->ip6po_minmtu = IP6PO_MINMTU_MCASTONLY;
2539 	opt->ip6po_prefer_tempaddr = IP6PO_TEMPADDR_SYSTEM;
2540 }
2541 
2542 static int
2543 ip6_pcbopt(int optname, u_char *buf, int len, struct ip6_pktopts **pktopt,
2544     struct ucred *cred, int uproto)
2545 {
2546 	struct epoch_tracker et;
2547 	struct ip6_pktopts *opt;
2548 	int ret;
2549 
2550 	if (*pktopt == NULL) {
2551 		*pktopt = malloc(sizeof(struct ip6_pktopts), M_IP6OPT,
2552 		    M_NOWAIT);
2553 		if (*pktopt == NULL)
2554 			return (ENOBUFS);
2555 		ip6_initpktopts(*pktopt);
2556 	}
2557 	opt = *pktopt;
2558 
2559 	NET_EPOCH_ENTER(et);
2560 	ret = ip6_setpktopt(optname, buf, len, opt, cred, 1, 0, uproto);
2561 	NET_EPOCH_EXIT(et);
2562 
2563 	return (ret);
2564 }
2565 
2566 #define GET_PKTOPT_VAR(field, lenexpr) do {				\
2567 	if (pktopt && pktopt->field) {					\
2568 		INP_RUNLOCK(inp);					\
2569 		optdata = malloc(sopt->sopt_valsize, M_TEMP, M_WAITOK);	\
2570 		malloc_optdata = true;					\
2571 		INP_RLOCK(inp);						\
2572 		if (inp->inp_flags & INP_DROPPED) {			\
2573 			INP_RUNLOCK(inp);				\
2574 			free(optdata, M_TEMP);				\
2575 			return (ECONNRESET);				\
2576 		}							\
2577 		pktopt = inp->in6p_outputopts;				\
2578 		if (pktopt && pktopt->field) {				\
2579 			optdatalen = min(lenexpr, sopt->sopt_valsize);	\
2580 			bcopy(pktopt->field, optdata, optdatalen);	\
2581 		} else {						\
2582 			free(optdata, M_TEMP);				\
2583 			optdata = NULL;					\
2584 			malloc_optdata = false;				\
2585 		}							\
2586 	}								\
2587 } while(0)
2588 
2589 #define GET_PKTOPT_EXT_HDR(field) GET_PKTOPT_VAR(field,			\
2590 	(((struct ip6_ext *)pktopt->field)->ip6e_len + 1) << 3)
2591 
2592 #define GET_PKTOPT_SOCKADDR(field) GET_PKTOPT_VAR(field,		\
2593 	pktopt->field->sa_len)
2594 
2595 static int
2596 ip6_getpcbopt(struct inpcb *inp, int optname, struct sockopt *sopt)
2597 {
2598 	void *optdata = NULL;
2599 	bool malloc_optdata = false;
2600 	int optdatalen = 0;
2601 	int error = 0;
2602 	struct in6_pktinfo null_pktinfo;
2603 	int deftclass = 0, on;
2604 	int defminmtu = IP6PO_MINMTU_MCASTONLY;
2605 	int defpreftemp = IP6PO_TEMPADDR_SYSTEM;
2606 	struct ip6_pktopts *pktopt;
2607 
2608 	INP_RLOCK(inp);
2609 	pktopt = inp->in6p_outputopts;
2610 
2611 	switch (optname) {
2612 	case IPV6_PKTINFO:
2613 		optdata = (void *)&null_pktinfo;
2614 		if (pktopt && pktopt->ip6po_pktinfo) {
2615 			bcopy(pktopt->ip6po_pktinfo, &null_pktinfo,
2616 			    sizeof(null_pktinfo));
2617 			in6_clearscope(&null_pktinfo.ipi6_addr);
2618 		} else {
2619 			/* XXX: we don't have to do this every time... */
2620 			bzero(&null_pktinfo, sizeof(null_pktinfo));
2621 		}
2622 		optdatalen = sizeof(struct in6_pktinfo);
2623 		break;
2624 	case IPV6_TCLASS:
2625 		if (pktopt && pktopt->ip6po_tclass >= 0)
2626 			deftclass = pktopt->ip6po_tclass;
2627 		optdata = (void *)&deftclass;
2628 		optdatalen = sizeof(int);
2629 		break;
2630 	case IPV6_HOPOPTS:
2631 		GET_PKTOPT_EXT_HDR(ip6po_hbh);
2632 		break;
2633 	case IPV6_RTHDR:
2634 		GET_PKTOPT_EXT_HDR(ip6po_rthdr);
2635 		break;
2636 	case IPV6_RTHDRDSTOPTS:
2637 		GET_PKTOPT_EXT_HDR(ip6po_dest1);
2638 		break;
2639 	case IPV6_DSTOPTS:
2640 		GET_PKTOPT_EXT_HDR(ip6po_dest2);
2641 		break;
2642 	case IPV6_NEXTHOP:
2643 		GET_PKTOPT_SOCKADDR(ip6po_nexthop);
2644 		break;
2645 	case IPV6_USE_MIN_MTU:
2646 		if (pktopt)
2647 			defminmtu = pktopt->ip6po_minmtu;
2648 		optdata = (void *)&defminmtu;
2649 		optdatalen = sizeof(int);
2650 		break;
2651 	case IPV6_DONTFRAG:
2652 		if (pktopt && ((pktopt->ip6po_flags) & IP6PO_DONTFRAG))
2653 			on = 1;
2654 		else
2655 			on = 0;
2656 		optdata = (void *)&on;
2657 		optdatalen = sizeof(on);
2658 		break;
2659 	case IPV6_PREFER_TEMPADDR:
2660 		if (pktopt)
2661 			defpreftemp = pktopt->ip6po_prefer_tempaddr;
2662 		optdata = (void *)&defpreftemp;
2663 		optdatalen = sizeof(int);
2664 		break;
2665 	default:		/* should not happen */
2666 #ifdef DIAGNOSTIC
2667 		panic("ip6_getpcbopt: unexpected option\n");
2668 #endif
2669 		INP_RUNLOCK(inp);
2670 		return (ENOPROTOOPT);
2671 	}
2672 	INP_RUNLOCK(inp);
2673 
2674 	error = sooptcopyout(sopt, optdata, optdatalen);
2675 	if (malloc_optdata)
2676 		free(optdata, M_TEMP);
2677 
2678 	return (error);
2679 }
2680 
2681 void
2682 ip6_clearpktopts(struct ip6_pktopts *pktopt, int optname)
2683 {
2684 	if (pktopt == NULL)
2685 		return;
2686 
2687 	if (optname == -1 || optname == IPV6_PKTINFO) {
2688 		if (pktopt->ip6po_pktinfo)
2689 			free(pktopt->ip6po_pktinfo, M_IP6OPT);
2690 		pktopt->ip6po_pktinfo = NULL;
2691 	}
2692 	if (optname == -1 || optname == IPV6_HOPLIMIT)
2693 		pktopt->ip6po_hlim = -1;
2694 	if (optname == -1 || optname == IPV6_TCLASS)
2695 		pktopt->ip6po_tclass = -1;
2696 	if (optname == -1 || optname == IPV6_NEXTHOP) {
2697 		if (pktopt->ip6po_nextroute.ro_nh) {
2698 			NH_FREE(pktopt->ip6po_nextroute.ro_nh);
2699 			pktopt->ip6po_nextroute.ro_nh = NULL;
2700 		}
2701 		if (pktopt->ip6po_nexthop)
2702 			free(pktopt->ip6po_nexthop, M_IP6OPT);
2703 		pktopt->ip6po_nexthop = NULL;
2704 	}
2705 	if (optname == -1 || optname == IPV6_HOPOPTS) {
2706 		if (pktopt->ip6po_hbh)
2707 			free(pktopt->ip6po_hbh, M_IP6OPT);
2708 		pktopt->ip6po_hbh = NULL;
2709 	}
2710 	if (optname == -1 || optname == IPV6_RTHDRDSTOPTS) {
2711 		if (pktopt->ip6po_dest1)
2712 			free(pktopt->ip6po_dest1, M_IP6OPT);
2713 		pktopt->ip6po_dest1 = NULL;
2714 	}
2715 	if (optname == -1 || optname == IPV6_RTHDR) {
2716 		if (pktopt->ip6po_rhinfo.ip6po_rhi_rthdr)
2717 			free(pktopt->ip6po_rhinfo.ip6po_rhi_rthdr, M_IP6OPT);
2718 		pktopt->ip6po_rhinfo.ip6po_rhi_rthdr = NULL;
2719 		if (pktopt->ip6po_route.ro_nh) {
2720 			NH_FREE(pktopt->ip6po_route.ro_nh);
2721 			pktopt->ip6po_route.ro_nh = NULL;
2722 		}
2723 	}
2724 	if (optname == -1 || optname == IPV6_DSTOPTS) {
2725 		if (pktopt->ip6po_dest2)
2726 			free(pktopt->ip6po_dest2, M_IP6OPT);
2727 		pktopt->ip6po_dest2 = NULL;
2728 	}
2729 }
2730 
2731 #define PKTOPT_EXTHDRCPY(type) \
2732 do {\
2733 	if (src->type) {\
2734 		int hlen = (((struct ip6_ext *)src->type)->ip6e_len + 1) << 3;\
2735 		dst->type = malloc(hlen, M_IP6OPT, canwait);\
2736 		if (dst->type == NULL)\
2737 			goto bad;\
2738 		bcopy(src->type, dst->type, hlen);\
2739 	}\
2740 } while (/*CONSTCOND*/ 0)
2741 
2742 static int
2743 copypktopts(struct ip6_pktopts *dst, struct ip6_pktopts *src, int canwait)
2744 {
2745 	if (dst == NULL || src == NULL)  {
2746 		printf("ip6_clearpktopts: invalid argument\n");
2747 		return (EINVAL);
2748 	}
2749 
2750 	dst->ip6po_hlim = src->ip6po_hlim;
2751 	dst->ip6po_tclass = src->ip6po_tclass;
2752 	dst->ip6po_flags = src->ip6po_flags;
2753 	dst->ip6po_minmtu = src->ip6po_minmtu;
2754 	dst->ip6po_prefer_tempaddr = src->ip6po_prefer_tempaddr;
2755 	if (src->ip6po_pktinfo) {
2756 		dst->ip6po_pktinfo = malloc(sizeof(*dst->ip6po_pktinfo),
2757 		    M_IP6OPT, canwait);
2758 		if (dst->ip6po_pktinfo == NULL)
2759 			goto bad;
2760 		*dst->ip6po_pktinfo = *src->ip6po_pktinfo;
2761 	}
2762 	if (src->ip6po_nexthop) {
2763 		dst->ip6po_nexthop = malloc(src->ip6po_nexthop->sa_len,
2764 		    M_IP6OPT, canwait);
2765 		if (dst->ip6po_nexthop == NULL)
2766 			goto bad;
2767 		bcopy(src->ip6po_nexthop, dst->ip6po_nexthop,
2768 		    src->ip6po_nexthop->sa_len);
2769 	}
2770 	PKTOPT_EXTHDRCPY(ip6po_hbh);
2771 	PKTOPT_EXTHDRCPY(ip6po_dest1);
2772 	PKTOPT_EXTHDRCPY(ip6po_dest2);
2773 	PKTOPT_EXTHDRCPY(ip6po_rthdr); /* not copy the cached route */
2774 	return (0);
2775 
2776   bad:
2777 	ip6_clearpktopts(dst, -1);
2778 	return (ENOBUFS);
2779 }
2780 #undef PKTOPT_EXTHDRCPY
2781 
2782 struct ip6_pktopts *
2783 ip6_copypktopts(struct ip6_pktopts *src, int canwait)
2784 {
2785 	int error;
2786 	struct ip6_pktopts *dst;
2787 
2788 	dst = malloc(sizeof(*dst), M_IP6OPT, canwait);
2789 	if (dst == NULL)
2790 		return (NULL);
2791 	ip6_initpktopts(dst);
2792 
2793 	if ((error = copypktopts(dst, src, canwait)) != 0) {
2794 		free(dst, M_IP6OPT);
2795 		return (NULL);
2796 	}
2797 
2798 	return (dst);
2799 }
2800 
2801 void
2802 ip6_freepcbopts(struct ip6_pktopts *pktopt)
2803 {
2804 	if (pktopt == NULL)
2805 		return;
2806 
2807 	ip6_clearpktopts(pktopt, -1);
2808 
2809 	free(pktopt, M_IP6OPT);
2810 }
2811 
2812 /*
2813  * Set IPv6 outgoing packet options based on advanced API.
2814  */
2815 int
2816 ip6_setpktopts(struct mbuf *control, struct ip6_pktopts *opt,
2817     struct ip6_pktopts *stickyopt, struct ucred *cred, int uproto)
2818 {
2819 	struct cmsghdr *cm = NULL;
2820 
2821 	if (control == NULL || opt == NULL)
2822 		return (EINVAL);
2823 
2824 	/*
2825 	 * ip6_setpktopt can call ifnet_byindex(), so it's imperative that we
2826 	 * are in the network epoch here.
2827 	 */
2828 	NET_EPOCH_ASSERT();
2829 
2830 	ip6_initpktopts(opt);
2831 	if (stickyopt) {
2832 		int error;
2833 
2834 		/*
2835 		 * If stickyopt is provided, make a local copy of the options
2836 		 * for this particular packet, then override them by ancillary
2837 		 * objects.
2838 		 * XXX: copypktopts() does not copy the cached route to a next
2839 		 * hop (if any).  This is not very good in terms of efficiency,
2840 		 * but we can allow this since this option should be rarely
2841 		 * used.
2842 		 */
2843 		if ((error = copypktopts(opt, stickyopt, M_NOWAIT)) != 0)
2844 			return (error);
2845 	}
2846 
2847 	/*
2848 	 * XXX: Currently, we assume all the optional information is stored
2849 	 * in a single mbuf.
2850 	 */
2851 	if (control->m_next)
2852 		return (EINVAL);
2853 
2854 	for (; control->m_len > 0; control->m_data += CMSG_ALIGN(cm->cmsg_len),
2855 	    control->m_len -= CMSG_ALIGN(cm->cmsg_len)) {
2856 		int error;
2857 
2858 		if (control->m_len < CMSG_LEN(0))
2859 			return (EINVAL);
2860 
2861 		cm = mtod(control, struct cmsghdr *);
2862 		if (cm->cmsg_len == 0 || cm->cmsg_len > control->m_len)
2863 			return (EINVAL);
2864 		if (cm->cmsg_level != IPPROTO_IPV6)
2865 			continue;
2866 
2867 		error = ip6_setpktopt(cm->cmsg_type, CMSG_DATA(cm),
2868 		    cm->cmsg_len - CMSG_LEN(0), opt, cred, 0, 1, uproto);
2869 		if (error)
2870 			return (error);
2871 	}
2872 
2873 	return (0);
2874 }
2875 
2876 /*
2877  * Set a particular packet option, as a sticky option or an ancillary data
2878  * item.  "len" can be 0 only when it's a sticky option.
2879  * We have 4 cases of combination of "sticky" and "cmsg":
2880  * "sticky=0, cmsg=0": impossible
2881  * "sticky=0, cmsg=1": RFC2292 or RFC3542 ancillary data
2882  * "sticky=1, cmsg=0": RFC3542 socket option
2883  * "sticky=1, cmsg=1": RFC2292 socket option
2884  */
2885 static int
2886 ip6_setpktopt(int optname, u_char *buf, int len, struct ip6_pktopts *opt,
2887     struct ucred *cred, int sticky, int cmsg, int uproto)
2888 {
2889 	int minmtupolicy, preftemp;
2890 	int error;
2891 
2892 	NET_EPOCH_ASSERT();
2893 
2894 	if (!sticky && !cmsg) {
2895 #ifdef DIAGNOSTIC
2896 		printf("ip6_setpktopt: impossible case\n");
2897 #endif
2898 		return (EINVAL);
2899 	}
2900 
2901 	/*
2902 	 * IPV6_2292xxx is for backward compatibility to RFC2292, and should
2903 	 * not be specified in the context of RFC3542.  Conversely,
2904 	 * RFC3542 types should not be specified in the context of RFC2292.
2905 	 */
2906 	if (!cmsg) {
2907 		switch (optname) {
2908 		case IPV6_2292PKTINFO:
2909 		case IPV6_2292HOPLIMIT:
2910 		case IPV6_2292NEXTHOP:
2911 		case IPV6_2292HOPOPTS:
2912 		case IPV6_2292DSTOPTS:
2913 		case IPV6_2292RTHDR:
2914 		case IPV6_2292PKTOPTIONS:
2915 			return (ENOPROTOOPT);
2916 		}
2917 	}
2918 	if (sticky && cmsg) {
2919 		switch (optname) {
2920 		case IPV6_PKTINFO:
2921 		case IPV6_HOPLIMIT:
2922 		case IPV6_NEXTHOP:
2923 		case IPV6_HOPOPTS:
2924 		case IPV6_DSTOPTS:
2925 		case IPV6_RTHDRDSTOPTS:
2926 		case IPV6_RTHDR:
2927 		case IPV6_USE_MIN_MTU:
2928 		case IPV6_DONTFRAG:
2929 		case IPV6_TCLASS:
2930 		case IPV6_PREFER_TEMPADDR: /* XXX: not an RFC3542 option */
2931 			return (ENOPROTOOPT);
2932 		}
2933 	}
2934 
2935 	switch (optname) {
2936 	case IPV6_2292PKTINFO:
2937 	case IPV6_PKTINFO:
2938 	{
2939 		struct ifnet *ifp = NULL;
2940 		struct in6_pktinfo *pktinfo;
2941 
2942 		if (len != sizeof(struct in6_pktinfo))
2943 			return (EINVAL);
2944 
2945 		pktinfo = (struct in6_pktinfo *)buf;
2946 
2947 		/*
2948 		 * An application can clear any sticky IPV6_PKTINFO option by
2949 		 * doing a "regular" setsockopt with ipi6_addr being
2950 		 * in6addr_any and ipi6_ifindex being zero.
2951 		 * [RFC 3542, Section 6]
2952 		 */
2953 		if (optname == IPV6_PKTINFO && opt->ip6po_pktinfo &&
2954 		    pktinfo->ipi6_ifindex == 0 &&
2955 		    IN6_IS_ADDR_UNSPECIFIED(&pktinfo->ipi6_addr)) {
2956 			ip6_clearpktopts(opt, optname);
2957 			break;
2958 		}
2959 
2960 		if (uproto == IPPROTO_TCP && optname == IPV6_PKTINFO &&
2961 		    sticky && !IN6_IS_ADDR_UNSPECIFIED(&pktinfo->ipi6_addr)) {
2962 			return (EINVAL);
2963 		}
2964 		if (IN6_IS_ADDR_MULTICAST(&pktinfo->ipi6_addr))
2965 			return (EINVAL);
2966 		/* validate the interface index if specified. */
2967 		if (pktinfo->ipi6_ifindex) {
2968 			ifp = ifnet_byindex(pktinfo->ipi6_ifindex);
2969 			if (ifp == NULL)
2970 				return (ENXIO);
2971 		}
2972 		if (ifp != NULL && (ifp->if_afdata[AF_INET6] == NULL ||
2973 		    (ND_IFINFO(ifp)->flags & ND6_IFF_IFDISABLED) != 0))
2974 			return (ENETDOWN);
2975 
2976 		if (ifp != NULL &&
2977 		    !IN6_IS_ADDR_UNSPECIFIED(&pktinfo->ipi6_addr)) {
2978 			struct in6_ifaddr *ia;
2979 
2980 			in6_setscope(&pktinfo->ipi6_addr, ifp, NULL);
2981 			ia = in6ifa_ifpwithaddr(ifp, &pktinfo->ipi6_addr);
2982 			if (ia == NULL)
2983 				return (EADDRNOTAVAIL);
2984 			ifa_free(&ia->ia_ifa);
2985 		}
2986 		/*
2987 		 * We store the address anyway, and let in6_selectsrc()
2988 		 * validate the specified address.  This is because ipi6_addr
2989 		 * may not have enough information about its scope zone, and
2990 		 * we may need additional information (such as outgoing
2991 		 * interface or the scope zone of a destination address) to
2992 		 * disambiguate the scope.
2993 		 * XXX: the delay of the validation may confuse the
2994 		 * application when it is used as a sticky option.
2995 		 */
2996 		if (opt->ip6po_pktinfo == NULL) {
2997 			opt->ip6po_pktinfo = malloc(sizeof(*pktinfo),
2998 			    M_IP6OPT, M_NOWAIT);
2999 			if (opt->ip6po_pktinfo == NULL)
3000 				return (ENOBUFS);
3001 		}
3002 		bcopy(pktinfo, opt->ip6po_pktinfo, sizeof(*pktinfo));
3003 		break;
3004 	}
3005 
3006 	case IPV6_2292HOPLIMIT:
3007 	case IPV6_HOPLIMIT:
3008 	{
3009 		int *hlimp;
3010 
3011 		/*
3012 		 * RFC 3542 deprecated the usage of sticky IPV6_HOPLIMIT
3013 		 * to simplify the ordering among hoplimit options.
3014 		 */
3015 		if (optname == IPV6_HOPLIMIT && sticky)
3016 			return (ENOPROTOOPT);
3017 
3018 		if (len != sizeof(int))
3019 			return (EINVAL);
3020 		hlimp = (int *)buf;
3021 		if (*hlimp < -1 || *hlimp > 255)
3022 			return (EINVAL);
3023 
3024 		opt->ip6po_hlim = *hlimp;
3025 		break;
3026 	}
3027 
3028 	case IPV6_TCLASS:
3029 	{
3030 		int tclass;
3031 
3032 		if (len != sizeof(int))
3033 			return (EINVAL);
3034 		tclass = *(int *)buf;
3035 		if (tclass < -1 || tclass > 255)
3036 			return (EINVAL);
3037 
3038 		opt->ip6po_tclass = tclass;
3039 		break;
3040 	}
3041 
3042 	case IPV6_2292NEXTHOP:
3043 	case IPV6_NEXTHOP:
3044 		if (cred != NULL) {
3045 			error = priv_check_cred(cred, PRIV_NETINET_SETHDROPTS);
3046 			if (error)
3047 				return (error);
3048 		}
3049 
3050 		if (len == 0) {	/* just remove the option */
3051 			ip6_clearpktopts(opt, IPV6_NEXTHOP);
3052 			break;
3053 		}
3054 
3055 		/* check if cmsg_len is large enough for sa_len */
3056 		if (len < sizeof(struct sockaddr) || len < *buf)
3057 			return (EINVAL);
3058 
3059 		switch (((struct sockaddr *)buf)->sa_family) {
3060 		case AF_INET6:
3061 		{
3062 			struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)buf;
3063 			int error;
3064 
3065 			if (sa6->sin6_len != sizeof(struct sockaddr_in6))
3066 				return (EINVAL);
3067 
3068 			if (IN6_IS_ADDR_UNSPECIFIED(&sa6->sin6_addr) ||
3069 			    IN6_IS_ADDR_MULTICAST(&sa6->sin6_addr)) {
3070 				return (EINVAL);
3071 			}
3072 			if ((error = sa6_embedscope(sa6, V_ip6_use_defzone))
3073 			    != 0) {
3074 				return (error);
3075 			}
3076 			break;
3077 		}
3078 		case AF_LINK:	/* should eventually be supported */
3079 		default:
3080 			return (EAFNOSUPPORT);
3081 		}
3082 
3083 		/* turn off the previous option, then set the new option. */
3084 		ip6_clearpktopts(opt, IPV6_NEXTHOP);
3085 		opt->ip6po_nexthop = malloc(*buf, M_IP6OPT, M_NOWAIT);
3086 		if (opt->ip6po_nexthop == NULL)
3087 			return (ENOBUFS);
3088 		bcopy(buf, opt->ip6po_nexthop, *buf);
3089 		break;
3090 
3091 	case IPV6_2292HOPOPTS:
3092 	case IPV6_HOPOPTS:
3093 	{
3094 		struct ip6_hbh *hbh;
3095 		int hbhlen;
3096 
3097 		/*
3098 		 * XXX: We don't allow a non-privileged user to set ANY HbH
3099 		 * options, since per-option restriction has too much
3100 		 * overhead.
3101 		 */
3102 		if (cred != NULL) {
3103 			error = priv_check_cred(cred, PRIV_NETINET_SETHDROPTS);
3104 			if (error)
3105 				return (error);
3106 		}
3107 
3108 		if (len == 0) {
3109 			ip6_clearpktopts(opt, IPV6_HOPOPTS);
3110 			break;	/* just remove the option */
3111 		}
3112 
3113 		/* message length validation */
3114 		if (len < sizeof(struct ip6_hbh))
3115 			return (EINVAL);
3116 		hbh = (struct ip6_hbh *)buf;
3117 		hbhlen = (hbh->ip6h_len + 1) << 3;
3118 		if (len != hbhlen)
3119 			return (EINVAL);
3120 
3121 		/* turn off the previous option, then set the new option. */
3122 		ip6_clearpktopts(opt, IPV6_HOPOPTS);
3123 		opt->ip6po_hbh = malloc(hbhlen, M_IP6OPT, M_NOWAIT);
3124 		if (opt->ip6po_hbh == NULL)
3125 			return (ENOBUFS);
3126 		bcopy(hbh, opt->ip6po_hbh, hbhlen);
3127 
3128 		break;
3129 	}
3130 
3131 	case IPV6_2292DSTOPTS:
3132 	case IPV6_DSTOPTS:
3133 	case IPV6_RTHDRDSTOPTS:
3134 	{
3135 		struct ip6_dest *dest, **newdest = NULL;
3136 		int destlen;
3137 
3138 		if (cred != NULL) { /* XXX: see the comment for IPV6_HOPOPTS */
3139 			error = priv_check_cred(cred, PRIV_NETINET_SETHDROPTS);
3140 			if (error)
3141 				return (error);
3142 		}
3143 
3144 		if (len == 0) {
3145 			ip6_clearpktopts(opt, optname);
3146 			break;	/* just remove the option */
3147 		}
3148 
3149 		/* message length validation */
3150 		if (len < sizeof(struct ip6_dest))
3151 			return (EINVAL);
3152 		dest = (struct ip6_dest *)buf;
3153 		destlen = (dest->ip6d_len + 1) << 3;
3154 		if (len != destlen)
3155 			return (EINVAL);
3156 
3157 		/*
3158 		 * Determine the position that the destination options header
3159 		 * should be inserted; before or after the routing header.
3160 		 */
3161 		switch (optname) {
3162 		case IPV6_2292DSTOPTS:
3163 			/*
3164 			 * The old advacned API is ambiguous on this point.
3165 			 * Our approach is to determine the position based
3166 			 * according to the existence of a routing header.
3167 			 * Note, however, that this depends on the order of the
3168 			 * extension headers in the ancillary data; the 1st
3169 			 * part of the destination options header must appear
3170 			 * before the routing header in the ancillary data,
3171 			 * too.
3172 			 * RFC3542 solved the ambiguity by introducing
3173 			 * separate ancillary data or option types.
3174 			 */
3175 			if (opt->ip6po_rthdr == NULL)
3176 				newdest = &opt->ip6po_dest1;
3177 			else
3178 				newdest = &opt->ip6po_dest2;
3179 			break;
3180 		case IPV6_RTHDRDSTOPTS:
3181 			newdest = &opt->ip6po_dest1;
3182 			break;
3183 		case IPV6_DSTOPTS:
3184 			newdest = &opt->ip6po_dest2;
3185 			break;
3186 		}
3187 
3188 		/* turn off the previous option, then set the new option. */
3189 		ip6_clearpktopts(opt, optname);
3190 		*newdest = malloc(destlen, M_IP6OPT, M_NOWAIT);
3191 		if (*newdest == NULL)
3192 			return (ENOBUFS);
3193 		bcopy(dest, *newdest, destlen);
3194 
3195 		break;
3196 	}
3197 
3198 	case IPV6_2292RTHDR:
3199 	case IPV6_RTHDR:
3200 	{
3201 		struct ip6_rthdr *rth;
3202 		int rthlen;
3203 
3204 		if (len == 0) {
3205 			ip6_clearpktopts(opt, IPV6_RTHDR);
3206 			break;	/* just remove the option */
3207 		}
3208 
3209 		/* message length validation */
3210 		if (len < sizeof(struct ip6_rthdr))
3211 			return (EINVAL);
3212 		rth = (struct ip6_rthdr *)buf;
3213 		rthlen = (rth->ip6r_len + 1) << 3;
3214 		if (len != rthlen)
3215 			return (EINVAL);
3216 
3217 		switch (rth->ip6r_type) {
3218 		case IPV6_RTHDR_TYPE_0:
3219 			if (rth->ip6r_len == 0)	/* must contain one addr */
3220 				return (EINVAL);
3221 			if (rth->ip6r_len % 2) /* length must be even */
3222 				return (EINVAL);
3223 			if (rth->ip6r_len / 2 != rth->ip6r_segleft)
3224 				return (EINVAL);
3225 			break;
3226 		default:
3227 			return (EINVAL);	/* not supported */
3228 		}
3229 
3230 		/* turn off the previous option */
3231 		ip6_clearpktopts(opt, IPV6_RTHDR);
3232 		opt->ip6po_rthdr = malloc(rthlen, M_IP6OPT, M_NOWAIT);
3233 		if (opt->ip6po_rthdr == NULL)
3234 			return (ENOBUFS);
3235 		bcopy(rth, opt->ip6po_rthdr, rthlen);
3236 
3237 		break;
3238 	}
3239 
3240 	case IPV6_USE_MIN_MTU:
3241 		if (len != sizeof(int))
3242 			return (EINVAL);
3243 		minmtupolicy = *(int *)buf;
3244 		if (minmtupolicy != IP6PO_MINMTU_MCASTONLY &&
3245 		    minmtupolicy != IP6PO_MINMTU_DISABLE &&
3246 		    minmtupolicy != IP6PO_MINMTU_ALL) {
3247 			return (EINVAL);
3248 		}
3249 		opt->ip6po_minmtu = minmtupolicy;
3250 		break;
3251 
3252 	case IPV6_DONTFRAG:
3253 		if (len != sizeof(int))
3254 			return (EINVAL);
3255 
3256 		if (uproto == IPPROTO_TCP || *(int *)buf == 0) {
3257 			/*
3258 			 * we ignore this option for TCP sockets.
3259 			 * (RFC3542 leaves this case unspecified.)
3260 			 */
3261 			opt->ip6po_flags &= ~IP6PO_DONTFRAG;
3262 		} else
3263 			opt->ip6po_flags |= IP6PO_DONTFRAG;
3264 		break;
3265 
3266 	case IPV6_PREFER_TEMPADDR:
3267 		if (len != sizeof(int))
3268 			return (EINVAL);
3269 		preftemp = *(int *)buf;
3270 		if (preftemp != IP6PO_TEMPADDR_SYSTEM &&
3271 		    preftemp != IP6PO_TEMPADDR_NOTPREFER &&
3272 		    preftemp != IP6PO_TEMPADDR_PREFER) {
3273 			return (EINVAL);
3274 		}
3275 		opt->ip6po_prefer_tempaddr = preftemp;
3276 		break;
3277 
3278 	default:
3279 		return (ENOPROTOOPT);
3280 	} /* end of switch */
3281 
3282 	return (0);
3283 }
3284 
3285 /*
3286  * Routine called from ip6_output() to loop back a copy of an IP6 multicast
3287  * packet to the input queue of a specified interface.  Note that this
3288  * calls the output routine of the loopback "driver", but with an interface
3289  * pointer that might NOT be &loif -- easier than replicating that code here.
3290  */
3291 void
3292 ip6_mloopback(struct ifnet *ifp, struct mbuf *m)
3293 {
3294 	struct mbuf *copym;
3295 	struct ip6_hdr *ip6;
3296 
3297 	copym = m_copym(m, 0, M_COPYALL, M_NOWAIT);
3298 	if (copym == NULL)
3299 		return;
3300 
3301 	/*
3302 	 * Make sure to deep-copy IPv6 header portion in case the data
3303 	 * is in an mbuf cluster, so that we can safely override the IPv6
3304 	 * header portion later.
3305 	 */
3306 	if (!M_WRITABLE(copym) ||
3307 	    copym->m_len < sizeof(struct ip6_hdr)) {
3308 		copym = m_pullup(copym, sizeof(struct ip6_hdr));
3309 		if (copym == NULL)
3310 			return;
3311 	}
3312 	ip6 = mtod(copym, struct ip6_hdr *);
3313 	/*
3314 	 * clear embedded scope identifiers if necessary.
3315 	 * in6_clearscope will touch the addresses only when necessary.
3316 	 */
3317 	in6_clearscope(&ip6->ip6_src);
3318 	in6_clearscope(&ip6->ip6_dst);
3319 	if (copym->m_pkthdr.csum_flags & CSUM_DELAY_DATA_IPV6) {
3320 		copym->m_pkthdr.csum_flags |= CSUM_DATA_VALID_IPV6 |
3321 		    CSUM_PSEUDO_HDR;
3322 		copym->m_pkthdr.csum_data = 0xffff;
3323 	}
3324 	if_simloop(ifp, copym, AF_INET6, 0);
3325 }
3326 
3327 /*
3328  * Chop IPv6 header off from the payload.
3329  */
3330 static int
3331 ip6_splithdr(struct mbuf *m, struct ip6_exthdrs *exthdrs)
3332 {
3333 	struct mbuf *mh;
3334 	struct ip6_hdr *ip6;
3335 
3336 	ip6 = mtod(m, struct ip6_hdr *);
3337 	if (m->m_len > sizeof(*ip6)) {
3338 		mh = m_gethdr(M_NOWAIT, MT_DATA);
3339 		if (mh == NULL) {
3340 			m_freem(m);
3341 			return ENOBUFS;
3342 		}
3343 		m_move_pkthdr(mh, m);
3344 		M_ALIGN(mh, sizeof(*ip6));
3345 		m->m_len -= sizeof(*ip6);
3346 		m->m_data += sizeof(*ip6);
3347 		mh->m_next = m;
3348 		m = mh;
3349 		m->m_len = sizeof(*ip6);
3350 		bcopy((caddr_t)ip6, mtod(m, caddr_t), sizeof(*ip6));
3351 	}
3352 	exthdrs->ip6e_ip6 = m;
3353 	return 0;
3354 }
3355 
3356 /*
3357  * Compute IPv6 extension header length.
3358  */
3359 int
3360 ip6_optlen(struct inpcb *inp)
3361 {
3362 	int len;
3363 
3364 	if (!inp->in6p_outputopts)
3365 		return 0;
3366 
3367 	len = 0;
3368 #define elen(x) \
3369     (((struct ip6_ext *)(x)) ? (((struct ip6_ext *)(x))->ip6e_len + 1) << 3 : 0)
3370 
3371 	len += elen(inp->in6p_outputopts->ip6po_hbh);
3372 	if (inp->in6p_outputopts->ip6po_rthdr)
3373 		/* dest1 is valid with rthdr only */
3374 		len += elen(inp->in6p_outputopts->ip6po_dest1);
3375 	len += elen(inp->in6p_outputopts->ip6po_rthdr);
3376 	len += elen(inp->in6p_outputopts->ip6po_dest2);
3377 	return len;
3378 #undef elen
3379 }
3380