xref: /freebsd/sys/netinet/ip_output.c (revision 3332f1b444d4a73238e9f59cca27bfc95fe936bd)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1988, 1990, 1993
5  *	The Regents of the University of California.  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 University 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 REGENTS 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 REGENTS 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  *	@(#)ip_output.c	8.3 (Berkeley) 1/21/94
32  */
33 
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36 
37 #include "opt_inet.h"
38 #include "opt_ipsec.h"
39 #include "opt_kern_tls.h"
40 #include "opt_mbuf_stress_test.h"
41 #include "opt_ratelimit.h"
42 #include "opt_route.h"
43 #include "opt_rss.h"
44 #include "opt_sctp.h"
45 
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/kernel.h>
49 #include <sys/ktls.h>
50 #include <sys/lock.h>
51 #include <sys/malloc.h>
52 #include <sys/mbuf.h>
53 #include <sys/priv.h>
54 #include <sys/proc.h>
55 #include <sys/protosw.h>
56 #include <sys/sdt.h>
57 #include <sys/socket.h>
58 #include <sys/socketvar.h>
59 #include <sys/sysctl.h>
60 #include <sys/ucred.h>
61 
62 #include <net/if.h>
63 #include <net/if_var.h>
64 #include <net/if_vlan_var.h>
65 #include <net/if_llatbl.h>
66 #include <net/ethernet.h>
67 #include <net/netisr.h>
68 #include <net/pfil.h>
69 #include <net/route.h>
70 #include <net/route/nhop.h>
71 #include <net/rss_config.h>
72 #include <net/vnet.h>
73 
74 #include <netinet/in.h>
75 #include <netinet/in_fib.h>
76 #include <netinet/in_kdtrace.h>
77 #include <netinet/in_systm.h>
78 #include <netinet/ip.h>
79 #include <netinet/in_fib.h>
80 #include <netinet/in_pcb.h>
81 #include <netinet/in_rss.h>
82 #include <netinet/in_var.h>
83 #include <netinet/ip_var.h>
84 #include <netinet/ip_options.h>
85 #include <netinet/ip_mroute.h>
86 
87 #include <netinet/udp.h>
88 #include <netinet/udp_var.h>
89 
90 #if defined(SCTP) || defined(SCTP_SUPPORT)
91 #include <netinet/sctp.h>
92 #include <netinet/sctp_crc32.h>
93 #endif
94 
95 #include <netipsec/ipsec_support.h>
96 
97 #include <machine/in_cksum.h>
98 
99 #include <security/mac/mac_framework.h>
100 
101 #ifdef MBUF_STRESS_TEST
102 static int mbuf_frag_size = 0;
103 SYSCTL_INT(_net_inet_ip, OID_AUTO, mbuf_frag_size, CTLFLAG_RW,
104 	&mbuf_frag_size, 0, "Fragment outgoing mbufs to this size");
105 #endif
106 
107 static void	ip_mloopback(struct ifnet *, const struct mbuf *, int);
108 
109 extern int in_mcast_loop;
110 extern	struct protosw inetsw[];
111 
112 static inline int
113 ip_output_pfil(struct mbuf **mp, struct ifnet *ifp, int flags,
114     struct inpcb *inp, struct sockaddr_in *dst, int *fibnum, int *error)
115 {
116 	struct m_tag *fwd_tag = NULL;
117 	struct mbuf *m;
118 	struct in_addr odst;
119 	struct ip *ip;
120 	int pflags = PFIL_OUT;
121 
122 	if (flags & IP_FORWARDING)
123 		pflags |= PFIL_FWD;
124 
125 	m = *mp;
126 	ip = mtod(m, struct ip *);
127 
128 	/* Run through list of hooks for output packets. */
129 	odst.s_addr = ip->ip_dst.s_addr;
130 	switch (pfil_run_hooks(V_inet_pfil_head, mp, ifp, pflags, inp)) {
131 	case PFIL_DROPPED:
132 		*error = EACCES;
133 		/* FALLTHROUGH */
134 	case PFIL_CONSUMED:
135 		return 1; /* Finished */
136 	case PFIL_PASS:
137 		*error = 0;
138 	}
139 	m = *mp;
140 	ip = mtod(m, struct ip *);
141 
142 	/* See if destination IP address was changed by packet filter. */
143 	if (odst.s_addr != ip->ip_dst.s_addr) {
144 		m->m_flags |= M_SKIP_FIREWALL;
145 		/* If destination is now ourself drop to ip_input(). */
146 		if (in_localip(ip->ip_dst)) {
147 			m->m_flags |= M_FASTFWD_OURS;
148 			if (m->m_pkthdr.rcvif == NULL)
149 				m->m_pkthdr.rcvif = V_loif;
150 			if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
151 				m->m_pkthdr.csum_flags |=
152 					CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
153 				m->m_pkthdr.csum_data = 0xffff;
154 			}
155 			m->m_pkthdr.csum_flags |=
156 				CSUM_IP_CHECKED | CSUM_IP_VALID;
157 #if defined(SCTP) || defined(SCTP_SUPPORT)
158 			if (m->m_pkthdr.csum_flags & CSUM_SCTP)
159 				m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
160 #endif
161 			*error = netisr_queue(NETISR_IP, m);
162 			return 1; /* Finished */
163 		}
164 
165 		bzero(dst, sizeof(*dst));
166 		dst->sin_family = AF_INET;
167 		dst->sin_len = sizeof(*dst);
168 		dst->sin_addr = ip->ip_dst;
169 
170 		return -1; /* Reloop */
171 	}
172 	/* See if fib was changed by packet filter. */
173 	if ((*fibnum) != M_GETFIB(m)) {
174 		m->m_flags |= M_SKIP_FIREWALL;
175 		*fibnum = M_GETFIB(m);
176 		return -1; /* Reloop for FIB change */
177 	}
178 
179 	/* See if local, if yes, send it to netisr with IP_FASTFWD_OURS. */
180 	if (m->m_flags & M_FASTFWD_OURS) {
181 		if (m->m_pkthdr.rcvif == NULL)
182 			m->m_pkthdr.rcvif = V_loif;
183 		if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
184 			m->m_pkthdr.csum_flags |=
185 				CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
186 			m->m_pkthdr.csum_data = 0xffff;
187 		}
188 #if defined(SCTP) || defined(SCTP_SUPPORT)
189 		if (m->m_pkthdr.csum_flags & CSUM_SCTP)
190 			m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
191 #endif
192 		m->m_pkthdr.csum_flags |=
193 			CSUM_IP_CHECKED | CSUM_IP_VALID;
194 
195 		*error = netisr_queue(NETISR_IP, m);
196 		return 1; /* Finished */
197 	}
198 	/* Or forward to some other address? */
199 	if ((m->m_flags & M_IP_NEXTHOP) &&
200 	    ((fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL)) != NULL)) {
201 		bcopy((fwd_tag+1), dst, sizeof(struct sockaddr_in));
202 		m->m_flags |= M_SKIP_FIREWALL;
203 		m->m_flags &= ~M_IP_NEXTHOP;
204 		m_tag_delete(m, fwd_tag);
205 
206 		return -1; /* Reloop for CHANGE of dst */
207 	}
208 
209 	return 0;
210 }
211 
212 static int
213 ip_output_send(struct inpcb *inp, struct ifnet *ifp, struct mbuf *m,
214     const struct sockaddr *gw, struct route *ro, bool stamp_tag)
215 {
216 #ifdef KERN_TLS
217 	struct ktls_session *tls = NULL;
218 #endif
219 	struct m_snd_tag *mst;
220 	int error;
221 
222 	MPASS((m->m_pkthdr.csum_flags & CSUM_SND_TAG) == 0);
223 	mst = NULL;
224 
225 #ifdef KERN_TLS
226 	/*
227 	 * If this is an unencrypted TLS record, save a reference to
228 	 * the record.  This local reference is used to call
229 	 * ktls_output_eagain after the mbuf has been freed (thus
230 	 * dropping the mbuf's reference) in if_output.
231 	 */
232 	if (m->m_next != NULL && mbuf_has_tls_session(m->m_next)) {
233 		tls = ktls_hold(m->m_next->m_epg_tls);
234 		mst = tls->snd_tag;
235 
236 		/*
237 		 * If a TLS session doesn't have a valid tag, it must
238 		 * have had an earlier ifp mismatch, so drop this
239 		 * packet.
240 		 */
241 		if (mst == NULL) {
242 			error = EAGAIN;
243 			goto done;
244 		}
245 		/*
246 		 * Always stamp tags that include NIC ktls.
247 		 */
248 		stamp_tag = true;
249 	}
250 #endif
251 #ifdef RATELIMIT
252 	if (inp != NULL && mst == NULL) {
253 		if ((inp->inp_flags2 & INP_RATE_LIMIT_CHANGED) != 0 ||
254 		    (inp->inp_snd_tag != NULL &&
255 		    inp->inp_snd_tag->ifp != ifp))
256 			in_pcboutput_txrtlmt(inp, ifp, m);
257 
258 		if (inp->inp_snd_tag != NULL)
259 			mst = inp->inp_snd_tag;
260 	}
261 #endif
262 	if (stamp_tag && mst != NULL) {
263 		KASSERT(m->m_pkthdr.rcvif == NULL,
264 		    ("trying to add a send tag to a forwarded packet"));
265 		if (mst->ifp != ifp) {
266 			error = EAGAIN;
267 			goto done;
268 		}
269 
270 		/* stamp send tag on mbuf */
271 		m->m_pkthdr.snd_tag = m_snd_tag_ref(mst);
272 		m->m_pkthdr.csum_flags |= CSUM_SND_TAG;
273 	}
274 
275 	error = (*ifp->if_output)(ifp, m, gw, ro);
276 
277 done:
278 	/* Check for route change invalidating send tags. */
279 #ifdef KERN_TLS
280 	if (tls != NULL) {
281 		if (error == EAGAIN)
282 			error = ktls_output_eagain(inp, tls);
283 		ktls_free(tls);
284 	}
285 #endif
286 #ifdef RATELIMIT
287 	if (error == EAGAIN)
288 		in_pcboutput_eagain(inp);
289 #endif
290 	return (error);
291 }
292 
293 /* rte<>ro_flags translation */
294 static inline void
295 rt_update_ro_flags(struct route *ro, const struct nhop_object *nh)
296 {
297 	int nh_flags = nh->nh_flags;
298 
299 	ro->ro_flags &= ~ (RT_REJECT|RT_BLACKHOLE|RT_HAS_GW);
300 
301 	ro->ro_flags |= (nh_flags & NHF_REJECT) ? RT_REJECT : 0;
302 	ro->ro_flags |= (nh_flags & NHF_BLACKHOLE) ? RT_BLACKHOLE : 0;
303 	ro->ro_flags |= (nh_flags & NHF_GATEWAY) ? RT_HAS_GW : 0;
304 }
305 
306 /*
307  * IP output.  The packet in mbuf chain m contains a skeletal IP
308  * header (with len, off, ttl, proto, tos, src, dst).
309  * The mbuf chain containing the packet will be freed.
310  * The mbuf opt, if present, will not be freed.
311  * If route ro is present and has ro_rt initialized, route lookup would be
312  * skipped and ro->ro_rt would be used. If ro is present but ro->ro_rt is NULL,
313  * then result of route lookup is stored in ro->ro_rt.
314  *
315  * In the IP forwarding case, the packet will arrive with options already
316  * inserted, so must have a NULL opt pointer.
317  */
318 int
319 ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro, int flags,
320     struct ip_moptions *imo, struct inpcb *inp)
321 {
322 	MROUTER_RLOCK_TRACKER;
323 	struct ip *ip;
324 	struct ifnet *ifp = NULL;	/* keep compiler happy */
325 	struct mbuf *m0;
326 	int hlen = sizeof (struct ip);
327 	int mtu = 0;
328 	int error = 0;
329 	int vlan_pcp = -1;
330 	struct sockaddr_in *dst;
331 	const struct sockaddr *gw;
332 	struct in_ifaddr *ia = NULL;
333 	struct in_addr src;
334 	int isbroadcast;
335 	uint16_t ip_len, ip_off;
336 	struct route iproute;
337 	uint32_t fibnum;
338 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
339 	int no_route_but_check_spd = 0;
340 #endif
341 
342 	M_ASSERTPKTHDR(m);
343 	NET_EPOCH_ASSERT();
344 
345 	if (inp != NULL) {
346 		INP_LOCK_ASSERT(inp);
347 		M_SETFIB(m, inp->inp_inc.inc_fibnum);
348 		if ((flags & IP_NODEFAULTFLOWID) == 0) {
349 			m->m_pkthdr.flowid = inp->inp_flowid;
350 			M_HASHTYPE_SET(m, inp->inp_flowtype);
351 		}
352 		if ((inp->inp_flags2 & INP_2PCP_SET) != 0)
353 			vlan_pcp = (inp->inp_flags2 & INP_2PCP_MASK) >>
354 			    INP_2PCP_SHIFT;
355 #ifdef NUMA
356 		m->m_pkthdr.numa_domain = inp->inp_numa_domain;
357 #endif
358 	}
359 
360 	if (opt) {
361 		int len = 0;
362 		m = ip_insertoptions(m, opt, &len);
363 		if (len != 0)
364 			hlen = len; /* ip->ip_hl is updated above */
365 	}
366 	ip = mtod(m, struct ip *);
367 	ip_len = ntohs(ip->ip_len);
368 	ip_off = ntohs(ip->ip_off);
369 
370 	if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) {
371 		ip->ip_v = IPVERSION;
372 		ip->ip_hl = hlen >> 2;
373 		ip_fillid(ip);
374 	} else {
375 		/* Header already set, fetch hlen from there */
376 		hlen = ip->ip_hl << 2;
377 	}
378 	if ((flags & IP_FORWARDING) == 0)
379 		IPSTAT_INC(ips_localout);
380 
381 	/*
382 	 * dst/gw handling:
383 	 *
384 	 * gw is readonly but can point either to dst OR rt_gateway,
385 	 * therefore we need restore gw if we're redoing lookup.
386 	 */
387 	fibnum = (inp != NULL) ? inp->inp_inc.inc_fibnum : M_GETFIB(m);
388 	if (ro == NULL) {
389 		ro = &iproute;
390 		bzero(ro, sizeof (*ro));
391 	}
392 	dst = (struct sockaddr_in *)&ro->ro_dst;
393 	if (ro->ro_nh == NULL) {
394 		dst->sin_family = AF_INET;
395 		dst->sin_len = sizeof(*dst);
396 		dst->sin_addr = ip->ip_dst;
397 	}
398 	gw = (const struct sockaddr *)dst;
399 again:
400 	/*
401 	 * Validate route against routing table additions;
402 	 * a better/more specific route might have been added.
403 	 */
404 	if (inp != NULL && ro->ro_nh != NULL)
405 		NH_VALIDATE(ro, &inp->inp_rt_cookie, fibnum);
406 	/*
407 	 * If there is a cached route,
408 	 * check that it is to the same destination
409 	 * and is still up.  If not, free it and try again.
410 	 * The address family should also be checked in case of sharing the
411 	 * cache with IPv6.
412 	 * Also check whether routing cache needs invalidation.
413 	 */
414 	if (ro->ro_nh != NULL &&
415 	    ((!NH_IS_VALID(ro->ro_nh)) || dst->sin_family != AF_INET ||
416 	    dst->sin_addr.s_addr != ip->ip_dst.s_addr))
417 		RO_INVALIDATE_CACHE(ro);
418 	ia = NULL;
419 	/*
420 	 * If routing to interface only, short circuit routing lookup.
421 	 * The use of an all-ones broadcast address implies this; an
422 	 * interface is specified by the broadcast address of an interface,
423 	 * or the destination address of a ptp interface.
424 	 */
425 	if (flags & IP_SENDONES) {
426 		if ((ia = ifatoia(ifa_ifwithbroadaddr(sintosa(dst),
427 						      M_GETFIB(m)))) == NULL &&
428 		    (ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst),
429 						    M_GETFIB(m)))) == NULL) {
430 			IPSTAT_INC(ips_noroute);
431 			error = ENETUNREACH;
432 			goto bad;
433 		}
434 		ip->ip_dst.s_addr = INADDR_BROADCAST;
435 		dst->sin_addr = ip->ip_dst;
436 		ifp = ia->ia_ifp;
437 		mtu = ifp->if_mtu;
438 		ip->ip_ttl = 1;
439 		isbroadcast = 1;
440 		src = IA_SIN(ia)->sin_addr;
441 	} else if (flags & IP_ROUTETOIF) {
442 		if ((ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst),
443 						    M_GETFIB(m)))) == NULL &&
444 		    (ia = ifatoia(ifa_ifwithnet(sintosa(dst), 0,
445 						M_GETFIB(m)))) == NULL) {
446 			IPSTAT_INC(ips_noroute);
447 			error = ENETUNREACH;
448 			goto bad;
449 		}
450 		ifp = ia->ia_ifp;
451 		mtu = ifp->if_mtu;
452 		ip->ip_ttl = 1;
453 		isbroadcast = ifp->if_flags & IFF_BROADCAST ?
454 		    in_ifaddr_broadcast(dst->sin_addr, ia) : 0;
455 		src = IA_SIN(ia)->sin_addr;
456 	} else if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) &&
457 	    imo != NULL && imo->imo_multicast_ifp != NULL) {
458 		/*
459 		 * Bypass the normal routing lookup for multicast
460 		 * packets if the interface is specified.
461 		 */
462 		ifp = imo->imo_multicast_ifp;
463 		mtu = ifp->if_mtu;
464 		IFP_TO_IA(ifp, ia);
465 		isbroadcast = 0;	/* fool gcc */
466 		/* Interface may have no addresses. */
467 		if (ia != NULL)
468 			src = IA_SIN(ia)->sin_addr;
469 		else
470 			src.s_addr = INADDR_ANY;
471 	} else if (ro != &iproute) {
472 		if (ro->ro_nh == NULL) {
473 			/*
474 			 * We want to do any cloning requested by the link
475 			 * layer, as this is probably required in all cases
476 			 * for correct operation (as it is for ARP).
477 			 */
478 			uint32_t flowid;
479 			flowid = m->m_pkthdr.flowid;
480 			ro->ro_nh = fib4_lookup(fibnum, dst->sin_addr, 0,
481 			    NHR_REF, flowid);
482 
483 			if (ro->ro_nh == NULL || (!NH_IS_VALID(ro->ro_nh))) {
484 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
485 				/*
486 				 * There is no route for this packet, but it is
487 				 * possible that a matching SPD entry exists.
488 				 */
489 				no_route_but_check_spd = 1;
490 				goto sendit;
491 #endif
492 				IPSTAT_INC(ips_noroute);
493 				error = EHOSTUNREACH;
494 				goto bad;
495 			}
496 		}
497 		struct nhop_object *nh = ro->ro_nh;
498 
499 		ia = ifatoia(nh->nh_ifa);
500 		ifp = nh->nh_ifp;
501 		counter_u64_add(nh->nh_pksent, 1);
502 		rt_update_ro_flags(ro, nh);
503 		if (nh->nh_flags & NHF_GATEWAY)
504 			gw = &nh->gw_sa;
505 		if (nh->nh_flags & NHF_HOST)
506 			isbroadcast = (nh->nh_flags & NHF_BROADCAST);
507 		else if ((ifp->if_flags & IFF_BROADCAST) && (gw->sa_family == AF_INET))
508 			isbroadcast = in_ifaddr_broadcast(((const struct sockaddr_in *)gw)->sin_addr, ia);
509 		else
510 			isbroadcast = 0;
511 		mtu = nh->nh_mtu;
512 		src = IA_SIN(ia)->sin_addr;
513 	} else {
514 		struct nhop_object *nh;
515 
516 		nh = fib4_lookup(M_GETFIB(m), ip->ip_dst, 0, NHR_NONE,
517 		    m->m_pkthdr.flowid);
518 		if (nh == NULL) {
519 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
520 			/*
521 			 * There is no route for this packet, but it is
522 			 * possible that a matching SPD entry exists.
523 			 */
524 			no_route_but_check_spd = 1;
525 			goto sendit;
526 #endif
527 			IPSTAT_INC(ips_noroute);
528 			error = EHOSTUNREACH;
529 			goto bad;
530 		}
531 		ifp = nh->nh_ifp;
532 		mtu = nh->nh_mtu;
533 		rt_update_ro_flags(ro, nh);
534 		if (nh->nh_flags & NHF_GATEWAY)
535 			gw = &nh->gw_sa;
536 		ia = ifatoia(nh->nh_ifa);
537 		src = IA_SIN(ia)->sin_addr;
538 		isbroadcast = (((nh->nh_flags & (NHF_HOST | NHF_BROADCAST)) ==
539 		    (NHF_HOST | NHF_BROADCAST)) ||
540 		    ((ifp->if_flags & IFF_BROADCAST) &&
541 		    (gw->sa_family == AF_INET) &&
542 		    in_ifaddr_broadcast(((const struct sockaddr_in *)gw)->sin_addr, ia)));
543 	}
544 
545 	/* Catch a possible divide by zero later. */
546 	KASSERT(mtu > 0, ("%s: mtu %d <= 0, ro=%p (nh_flags=0x%08x) ifp=%p",
547 	    __func__, mtu, ro,
548 	    (ro != NULL && ro->ro_nh != NULL) ? ro->ro_nh->nh_flags : 0, ifp));
549 
550 	if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) {
551 		m->m_flags |= M_MCAST;
552 		/*
553 		 * IP destination address is multicast.  Make sure "gw"
554 		 * still points to the address in "ro".  (It may have been
555 		 * changed to point to a gateway address, above.)
556 		 */
557 		gw = (const struct sockaddr *)dst;
558 		/*
559 		 * See if the caller provided any multicast options
560 		 */
561 		if (imo != NULL) {
562 			ip->ip_ttl = imo->imo_multicast_ttl;
563 			if (imo->imo_multicast_vif != -1)
564 				ip->ip_src.s_addr =
565 				    ip_mcast_src ?
566 				    ip_mcast_src(imo->imo_multicast_vif) :
567 				    INADDR_ANY;
568 		} else
569 			ip->ip_ttl = IP_DEFAULT_MULTICAST_TTL;
570 		/*
571 		 * Confirm that the outgoing interface supports multicast.
572 		 */
573 		if ((imo == NULL) || (imo->imo_multicast_vif == -1)) {
574 			if ((ifp->if_flags & IFF_MULTICAST) == 0) {
575 				IPSTAT_INC(ips_noroute);
576 				error = ENETUNREACH;
577 				goto bad;
578 			}
579 		}
580 		/*
581 		 * If source address not specified yet, use address
582 		 * of outgoing interface.
583 		 */
584 		if (ip->ip_src.s_addr == INADDR_ANY)
585 			ip->ip_src = src;
586 
587 		if ((imo == NULL && in_mcast_loop) ||
588 		    (imo && imo->imo_multicast_loop)) {
589 			/*
590 			 * Loop back multicast datagram if not expressly
591 			 * forbidden to do so, even if we are not a member
592 			 * of the group; ip_input() will filter it later,
593 			 * thus deferring a hash lookup and mutex acquisition
594 			 * at the expense of a cheap copy using m_copym().
595 			 */
596 			ip_mloopback(ifp, m, hlen);
597 		} else {
598 			/*
599 			 * If we are acting as a multicast router, perform
600 			 * multicast forwarding as if the packet had just
601 			 * arrived on the interface to which we are about
602 			 * to send.  The multicast forwarding function
603 			 * recursively calls this function, using the
604 			 * IP_FORWARDING flag to prevent infinite recursion.
605 			 *
606 			 * Multicasts that are looped back by ip_mloopback(),
607 			 * above, will be forwarded by the ip_input() routine,
608 			 * if necessary.
609 			 */
610 			MROUTER_RLOCK();
611 			if (V_ip_mrouter && (flags & IP_FORWARDING) == 0) {
612 				/*
613 				 * If rsvp daemon is not running, do not
614 				 * set ip_moptions. This ensures that the packet
615 				 * is multicast and not just sent down one link
616 				 * as prescribed by rsvpd.
617 				 */
618 				if (!V_rsvp_on)
619 					imo = NULL;
620 				if (ip_mforward &&
621 				    ip_mforward(ip, ifp, m, imo) != 0) {
622 					MROUTER_RUNLOCK();
623 					m_freem(m);
624 					goto done;
625 				}
626 			}
627 			MROUTER_RUNLOCK();
628 		}
629 
630 		/*
631 		 * Multicasts with a time-to-live of zero may be looped-
632 		 * back, above, but must not be transmitted on a network.
633 		 * Also, multicasts addressed to the loopback interface
634 		 * are not sent -- the above call to ip_mloopback() will
635 		 * loop back a copy. ip_input() will drop the copy if
636 		 * this host does not belong to the destination group on
637 		 * the loopback interface.
638 		 */
639 		if (ip->ip_ttl == 0 || ifp->if_flags & IFF_LOOPBACK) {
640 			m_freem(m);
641 			goto done;
642 		}
643 
644 		goto sendit;
645 	}
646 
647 	/*
648 	 * If the source address is not specified yet, use the address
649 	 * of the outoing interface.
650 	 */
651 	if (ip->ip_src.s_addr == INADDR_ANY)
652 		ip->ip_src = src;
653 
654 	/*
655 	 * Look for broadcast address and
656 	 * verify user is allowed to send
657 	 * such a packet.
658 	 */
659 	if (isbroadcast) {
660 		if ((ifp->if_flags & IFF_BROADCAST) == 0) {
661 			error = EADDRNOTAVAIL;
662 			goto bad;
663 		}
664 		if ((flags & IP_ALLOWBROADCAST) == 0) {
665 			error = EACCES;
666 			goto bad;
667 		}
668 		/* don't allow broadcast messages to be fragmented */
669 		if (ip_len > mtu) {
670 			error = EMSGSIZE;
671 			goto bad;
672 		}
673 		m->m_flags |= M_BCAST;
674 	} else {
675 		m->m_flags &= ~M_BCAST;
676 	}
677 
678 sendit:
679 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
680 	if (IPSEC_ENABLED(ipv4)) {
681 		if ((error = IPSEC_OUTPUT(ipv4, m, inp)) != 0) {
682 			if (error == EINPROGRESS)
683 				error = 0;
684 			goto done;
685 		}
686 	}
687 	/*
688 	 * Check if there was a route for this packet; return error if not.
689 	 */
690 	if (no_route_but_check_spd) {
691 		IPSTAT_INC(ips_noroute);
692 		error = EHOSTUNREACH;
693 		goto bad;
694 	}
695 	/* Update variables that are affected by ipsec4_output(). */
696 	ip = mtod(m, struct ip *);
697 	hlen = ip->ip_hl << 2;
698 #endif /* IPSEC */
699 
700 	/* Jump over all PFIL processing if hooks are not active. */
701 	if (PFIL_HOOKED_OUT(V_inet_pfil_head)) {
702 		switch (ip_output_pfil(&m, ifp, flags, inp, dst, &fibnum,
703 		    &error)) {
704 		case 1: /* Finished */
705 			goto done;
706 
707 		case 0: /* Continue normally */
708 			ip = mtod(m, struct ip *);
709 			break;
710 
711 		case -1: /* Need to try again */
712 			/* Reset everything for a new round */
713 			if (ro != NULL) {
714 				RO_NHFREE(ro);
715 				ro->ro_prepend = NULL;
716 			}
717 			gw = (const struct sockaddr *)dst;
718 			ip = mtod(m, struct ip *);
719 			goto again;
720 		}
721 	}
722 
723 	if (vlan_pcp > -1)
724 		EVL_APPLY_PRI(m, vlan_pcp);
725 
726 	/* IN_LOOPBACK must not appear on the wire - RFC1122. */
727 	if (IN_LOOPBACK(ntohl(ip->ip_dst.s_addr)) ||
728 	    IN_LOOPBACK(ntohl(ip->ip_src.s_addr))) {
729 		if ((ifp->if_flags & IFF_LOOPBACK) == 0) {
730 			IPSTAT_INC(ips_badaddr);
731 			error = EADDRNOTAVAIL;
732 			goto bad;
733 		}
734 	}
735 
736 	m->m_pkthdr.csum_flags |= CSUM_IP;
737 	if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA & ~ifp->if_hwassist) {
738 		m = mb_unmapped_to_ext(m);
739 		if (m == NULL) {
740 			IPSTAT_INC(ips_odropped);
741 			error = ENOBUFS;
742 			goto bad;
743 		}
744 		in_delayed_cksum(m);
745 		m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
746 	} else if ((ifp->if_capenable & IFCAP_MEXTPG) == 0) {
747 		m = mb_unmapped_to_ext(m);
748 		if (m == NULL) {
749 			IPSTAT_INC(ips_odropped);
750 			error = ENOBUFS;
751 			goto bad;
752 		}
753 	}
754 #if defined(SCTP) || defined(SCTP_SUPPORT)
755 	if (m->m_pkthdr.csum_flags & CSUM_SCTP & ~ifp->if_hwassist) {
756 		m = mb_unmapped_to_ext(m);
757 		if (m == NULL) {
758 			IPSTAT_INC(ips_odropped);
759 			error = ENOBUFS;
760 			goto bad;
761 		}
762 		sctp_delayed_cksum(m, (uint32_t)(ip->ip_hl << 2));
763 		m->m_pkthdr.csum_flags &= ~CSUM_SCTP;
764 	}
765 #endif
766 
767 	/*
768 	 * If small enough for interface, or the interface will take
769 	 * care of the fragmentation for us, we can just send directly.
770 	 * Note that if_vxlan could have requested TSO even though the outer
771 	 * frame is UDP.  It is correct to not fragment such datagrams and
772 	 * instead just pass them on to the driver.
773 	 */
774 	if (ip_len <= mtu ||
775 	    (m->m_pkthdr.csum_flags & ifp->if_hwassist &
776 	    (CSUM_TSO | CSUM_INNER_TSO)) != 0) {
777 		ip->ip_sum = 0;
778 		if (m->m_pkthdr.csum_flags & CSUM_IP & ~ifp->if_hwassist) {
779 			ip->ip_sum = in_cksum(m, hlen);
780 			m->m_pkthdr.csum_flags &= ~CSUM_IP;
781 		}
782 
783 		/*
784 		 * Record statistics for this interface address.
785 		 * With CSUM_TSO the byte/packet count will be slightly
786 		 * incorrect because we count the IP+TCP headers only
787 		 * once instead of for every generated packet.
788 		 */
789 		if (!(flags & IP_FORWARDING) && ia) {
790 			if (m->m_pkthdr.csum_flags &
791 			    (CSUM_TSO | CSUM_INNER_TSO))
792 				counter_u64_add(ia->ia_ifa.ifa_opackets,
793 				    m->m_pkthdr.len / m->m_pkthdr.tso_segsz);
794 			else
795 				counter_u64_add(ia->ia_ifa.ifa_opackets, 1);
796 
797 			counter_u64_add(ia->ia_ifa.ifa_obytes, m->m_pkthdr.len);
798 		}
799 #ifdef MBUF_STRESS_TEST
800 		if (mbuf_frag_size && m->m_pkthdr.len > mbuf_frag_size)
801 			m = m_fragment(m, M_NOWAIT, mbuf_frag_size);
802 #endif
803 		/*
804 		 * Reset layer specific mbuf flags
805 		 * to avoid confusing lower layers.
806 		 */
807 		m_clrprotoflags(m);
808 		IP_PROBE(send, NULL, NULL, ip, ifp, ip, NULL);
809 		error = ip_output_send(inp, ifp, m, gw, ro,
810 		    (flags & IP_NO_SND_TAG_RL) ? false : true);
811 		goto done;
812 	}
813 
814 	/* Balk when DF bit is set or the interface didn't support TSO. */
815 	if ((ip_off & IP_DF) ||
816 	    (m->m_pkthdr.csum_flags & (CSUM_TSO | CSUM_INNER_TSO))) {
817 		error = EMSGSIZE;
818 		IPSTAT_INC(ips_cantfrag);
819 		goto bad;
820 	}
821 
822 	/*
823 	 * Too large for interface; fragment if possible. If successful,
824 	 * on return, m will point to a list of packets to be sent.
825 	 */
826 	error = ip_fragment(ip, &m, mtu, ifp->if_hwassist);
827 	if (error)
828 		goto bad;
829 	for (; m; m = m0) {
830 		m0 = m->m_nextpkt;
831 		m->m_nextpkt = 0;
832 		if (error == 0) {
833 			/* Record statistics for this interface address. */
834 			if (ia != NULL) {
835 				counter_u64_add(ia->ia_ifa.ifa_opackets, 1);
836 				counter_u64_add(ia->ia_ifa.ifa_obytes,
837 				    m->m_pkthdr.len);
838 			}
839 			/*
840 			 * Reset layer specific mbuf flags
841 			 * to avoid confusing upper layers.
842 			 */
843 			m_clrprotoflags(m);
844 
845 			IP_PROBE(send, NULL, NULL, mtod(m, struct ip *), ifp,
846 			    mtod(m, struct ip *), NULL);
847 			error = ip_output_send(inp, ifp, m, gw, ro, true);
848 		} else
849 			m_freem(m);
850 	}
851 
852 	if (error == 0)
853 		IPSTAT_INC(ips_fragmented);
854 
855 done:
856 	return (error);
857  bad:
858 	m_freem(m);
859 	goto done;
860 }
861 
862 /*
863  * Create a chain of fragments which fit the given mtu. m_frag points to the
864  * mbuf to be fragmented; on return it points to the chain with the fragments.
865  * Return 0 if no error. If error, m_frag may contain a partially built
866  * chain of fragments that should be freed by the caller.
867  *
868  * if_hwassist_flags is the hw offload capabilities (see if_data.ifi_hwassist)
869  */
870 int
871 ip_fragment(struct ip *ip, struct mbuf **m_frag, int mtu,
872     u_long if_hwassist_flags)
873 {
874 	int error = 0;
875 	int hlen = ip->ip_hl << 2;
876 	int len = (mtu - hlen) & ~7;	/* size of payload in each fragment */
877 	int off;
878 	struct mbuf *m0 = *m_frag;	/* the original packet		*/
879 	int firstlen;
880 	struct mbuf **mnext;
881 	int nfrags;
882 	uint16_t ip_len, ip_off;
883 
884 	ip_len = ntohs(ip->ip_len);
885 	ip_off = ntohs(ip->ip_off);
886 
887 	if (ip_off & IP_DF) {	/* Fragmentation not allowed */
888 		IPSTAT_INC(ips_cantfrag);
889 		return EMSGSIZE;
890 	}
891 
892 	/*
893 	 * Must be able to put at least 8 bytes per fragment.
894 	 */
895 	if (len < 8)
896 		return EMSGSIZE;
897 
898 	/*
899 	 * If the interface will not calculate checksums on
900 	 * fragmented packets, then do it here.
901 	 */
902 	if (m0->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
903 		m0 = mb_unmapped_to_ext(m0);
904 		if (m0 == NULL) {
905 			error = ENOBUFS;
906 			IPSTAT_INC(ips_odropped);
907 			goto done;
908 		}
909 		in_delayed_cksum(m0);
910 		m0->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
911 	}
912 #if defined(SCTP) || defined(SCTP_SUPPORT)
913 	if (m0->m_pkthdr.csum_flags & CSUM_SCTP) {
914 		m0 = mb_unmapped_to_ext(m0);
915 		if (m0 == NULL) {
916 			error = ENOBUFS;
917 			IPSTAT_INC(ips_odropped);
918 			goto done;
919 		}
920 		sctp_delayed_cksum(m0, hlen);
921 		m0->m_pkthdr.csum_flags &= ~CSUM_SCTP;
922 	}
923 #endif
924 	if (len > PAGE_SIZE) {
925 		/*
926 		 * Fragment large datagrams such that each segment
927 		 * contains a multiple of PAGE_SIZE amount of data,
928 		 * plus headers. This enables a receiver to perform
929 		 * page-flipping zero-copy optimizations.
930 		 *
931 		 * XXX When does this help given that sender and receiver
932 		 * could have different page sizes, and also mtu could
933 		 * be less than the receiver's page size ?
934 		 */
935 		int newlen;
936 
937 		off = MIN(mtu, m0->m_pkthdr.len);
938 
939 		/*
940 		 * firstlen (off - hlen) must be aligned on an
941 		 * 8-byte boundary
942 		 */
943 		if (off < hlen)
944 			goto smart_frag_failure;
945 		off = ((off - hlen) & ~7) + hlen;
946 		newlen = (~PAGE_MASK) & mtu;
947 		if ((newlen + sizeof (struct ip)) > mtu) {
948 			/* we failed, go back the default */
949 smart_frag_failure:
950 			newlen = len;
951 			off = hlen + len;
952 		}
953 		len = newlen;
954 
955 	} else {
956 		off = hlen + len;
957 	}
958 
959 	firstlen = off - hlen;
960 	mnext = &m0->m_nextpkt;		/* pointer to next packet */
961 
962 	/*
963 	 * Loop through length of segment after first fragment,
964 	 * make new header and copy data of each part and link onto chain.
965 	 * Here, m0 is the original packet, m is the fragment being created.
966 	 * The fragments are linked off the m_nextpkt of the original
967 	 * packet, which after processing serves as the first fragment.
968 	 */
969 	for (nfrags = 1; off < ip_len; off += len, nfrags++) {
970 		struct ip *mhip;	/* ip header on the fragment */
971 		struct mbuf *m;
972 		int mhlen = sizeof (struct ip);
973 
974 		m = m_gethdr(M_NOWAIT, MT_DATA);
975 		if (m == NULL) {
976 			error = ENOBUFS;
977 			IPSTAT_INC(ips_odropped);
978 			goto done;
979 		}
980 		/*
981 		 * Make sure the complete packet header gets copied
982 		 * from the originating mbuf to the newly created
983 		 * mbuf. This also ensures that existing firewall
984 		 * classification(s), VLAN tags and so on get copied
985 		 * to the resulting fragmented packet(s):
986 		 */
987 		if (m_dup_pkthdr(m, m0, M_NOWAIT) == 0) {
988 			m_free(m);
989 			error = ENOBUFS;
990 			IPSTAT_INC(ips_odropped);
991 			goto done;
992 		}
993 		/*
994 		 * In the first mbuf, leave room for the link header, then
995 		 * copy the original IP header including options. The payload
996 		 * goes into an additional mbuf chain returned by m_copym().
997 		 */
998 		m->m_data += max_linkhdr;
999 		mhip = mtod(m, struct ip *);
1000 		*mhip = *ip;
1001 		if (hlen > sizeof (struct ip)) {
1002 			mhlen = ip_optcopy(ip, mhip) + sizeof (struct ip);
1003 			mhip->ip_v = IPVERSION;
1004 			mhip->ip_hl = mhlen >> 2;
1005 		}
1006 		m->m_len = mhlen;
1007 		/* XXX do we need to add ip_off below ? */
1008 		mhip->ip_off = ((off - hlen) >> 3) + ip_off;
1009 		if (off + len >= ip_len)
1010 			len = ip_len - off;
1011 		else
1012 			mhip->ip_off |= IP_MF;
1013 		mhip->ip_len = htons((u_short)(len + mhlen));
1014 		m->m_next = m_copym(m0, off, len, M_NOWAIT);
1015 		if (m->m_next == NULL) {	/* copy failed */
1016 			m_free(m);
1017 			error = ENOBUFS;	/* ??? */
1018 			IPSTAT_INC(ips_odropped);
1019 			goto done;
1020 		}
1021 		m->m_pkthdr.len = mhlen + len;
1022 #ifdef MAC
1023 		mac_netinet_fragment(m0, m);
1024 #endif
1025 		mhip->ip_off = htons(mhip->ip_off);
1026 		mhip->ip_sum = 0;
1027 		if (m->m_pkthdr.csum_flags & CSUM_IP & ~if_hwassist_flags) {
1028 			mhip->ip_sum = in_cksum(m, mhlen);
1029 			m->m_pkthdr.csum_flags &= ~CSUM_IP;
1030 		}
1031 		*mnext = m;
1032 		mnext = &m->m_nextpkt;
1033 	}
1034 	IPSTAT_ADD(ips_ofragments, nfrags);
1035 
1036 	/*
1037 	 * Update first fragment by trimming what's been copied out
1038 	 * and updating header.
1039 	 */
1040 	m_adj(m0, hlen + firstlen - ip_len);
1041 	m0->m_pkthdr.len = hlen + firstlen;
1042 	ip->ip_len = htons((u_short)m0->m_pkthdr.len);
1043 	ip->ip_off = htons(ip_off | IP_MF);
1044 	ip->ip_sum = 0;
1045 	if (m0->m_pkthdr.csum_flags & CSUM_IP & ~if_hwassist_flags) {
1046 		ip->ip_sum = in_cksum(m0, hlen);
1047 		m0->m_pkthdr.csum_flags &= ~CSUM_IP;
1048 	}
1049 
1050 done:
1051 	*m_frag = m0;
1052 	return error;
1053 }
1054 
1055 void
1056 in_delayed_cksum(struct mbuf *m)
1057 {
1058 	struct ip *ip;
1059 	struct udphdr *uh;
1060 	uint16_t cklen, csum, offset;
1061 
1062 	ip = mtod(m, struct ip *);
1063 	offset = ip->ip_hl << 2 ;
1064 
1065 	if (m->m_pkthdr.csum_flags & CSUM_UDP) {
1066 		/* if udp header is not in the first mbuf copy udplen */
1067 		if (offset + sizeof(struct udphdr) > m->m_len) {
1068 			m_copydata(m, offset + offsetof(struct udphdr,
1069 			    uh_ulen), sizeof(cklen), (caddr_t)&cklen);
1070 			cklen = ntohs(cklen);
1071 		} else {
1072 			uh = (struct udphdr *)mtodo(m, offset);
1073 			cklen = ntohs(uh->uh_ulen);
1074 		}
1075 		csum = in_cksum_skip(m, cklen + offset, offset);
1076 		if (csum == 0)
1077 			csum = 0xffff;
1078 	} else {
1079 		cklen = ntohs(ip->ip_len);
1080 		csum = in_cksum_skip(m, cklen, offset);
1081 	}
1082 	offset += m->m_pkthdr.csum_data;	/* checksum offset */
1083 
1084 	if (offset + sizeof(csum) > m->m_len)
1085 		m_copyback(m, offset, sizeof(csum), (caddr_t)&csum);
1086 	else
1087 		*(u_short *)mtodo(m, offset) = csum;
1088 }
1089 
1090 /*
1091  * IP socket option processing.
1092  */
1093 int
1094 ip_ctloutput(struct socket *so, struct sockopt *sopt)
1095 {
1096 	struct inpcb *inp = sotoinpcb(so);
1097 	int	error, optval;
1098 #ifdef	RSS
1099 	uint32_t rss_bucket;
1100 	int retval;
1101 #endif
1102 
1103 	error = optval = 0;
1104 	if (sopt->sopt_level != IPPROTO_IP) {
1105 		error = EINVAL;
1106 
1107 		if (sopt->sopt_level == SOL_SOCKET &&
1108 		    sopt->sopt_dir == SOPT_SET) {
1109 			switch (sopt->sopt_name) {
1110 			case SO_REUSEADDR:
1111 				INP_WLOCK(inp);
1112 				if ((so->so_options & SO_REUSEADDR) != 0)
1113 					inp->inp_flags2 |= INP_REUSEADDR;
1114 				else
1115 					inp->inp_flags2 &= ~INP_REUSEADDR;
1116 				INP_WUNLOCK(inp);
1117 				error = 0;
1118 				break;
1119 			case SO_REUSEPORT:
1120 				INP_WLOCK(inp);
1121 				if ((so->so_options & SO_REUSEPORT) != 0)
1122 					inp->inp_flags2 |= INP_REUSEPORT;
1123 				else
1124 					inp->inp_flags2 &= ~INP_REUSEPORT;
1125 				INP_WUNLOCK(inp);
1126 				error = 0;
1127 				break;
1128 			case SO_REUSEPORT_LB:
1129 				INP_WLOCK(inp);
1130 				if ((so->so_options & SO_REUSEPORT_LB) != 0)
1131 					inp->inp_flags2 |= INP_REUSEPORT_LB;
1132 				else
1133 					inp->inp_flags2 &= ~INP_REUSEPORT_LB;
1134 				INP_WUNLOCK(inp);
1135 				error = 0;
1136 				break;
1137 			case SO_SETFIB:
1138 				INP_WLOCK(inp);
1139 				inp->inp_inc.inc_fibnum = so->so_fibnum;
1140 				INP_WUNLOCK(inp);
1141 				error = 0;
1142 				break;
1143 			case SO_MAX_PACING_RATE:
1144 #ifdef RATELIMIT
1145 				INP_WLOCK(inp);
1146 				inp->inp_flags2 |= INP_RATE_LIMIT_CHANGED;
1147 				INP_WUNLOCK(inp);
1148 				error = 0;
1149 #else
1150 				error = EOPNOTSUPP;
1151 #endif
1152 				break;
1153 			default:
1154 				break;
1155 			}
1156 		}
1157 		return (error);
1158 	}
1159 
1160 	switch (sopt->sopt_dir) {
1161 	case SOPT_SET:
1162 		switch (sopt->sopt_name) {
1163 		case IP_OPTIONS:
1164 #ifdef notyet
1165 		case IP_RETOPTS:
1166 #endif
1167 		{
1168 			struct mbuf *m;
1169 			if (sopt->sopt_valsize > MLEN) {
1170 				error = EMSGSIZE;
1171 				break;
1172 			}
1173 			m = m_get(sopt->sopt_td ? M_WAITOK : M_NOWAIT, MT_DATA);
1174 			if (m == NULL) {
1175 				error = ENOBUFS;
1176 				break;
1177 			}
1178 			m->m_len = sopt->sopt_valsize;
1179 			error = sooptcopyin(sopt, mtod(m, char *), m->m_len,
1180 					    m->m_len);
1181 			if (error) {
1182 				m_free(m);
1183 				break;
1184 			}
1185 			INP_WLOCK(inp);
1186 			error = ip_pcbopts(inp, sopt->sopt_name, m);
1187 			INP_WUNLOCK(inp);
1188 			return (error);
1189 		}
1190 
1191 		case IP_BINDANY:
1192 			if (sopt->sopt_td != NULL) {
1193 				error = priv_check(sopt->sopt_td,
1194 				    PRIV_NETINET_BINDANY);
1195 				if (error)
1196 					break;
1197 			}
1198 			/* FALLTHROUGH */
1199 		case IP_BINDMULTI:
1200 #ifdef	RSS
1201 		case IP_RSS_LISTEN_BUCKET:
1202 #endif
1203 		case IP_TOS:
1204 		case IP_TTL:
1205 		case IP_MINTTL:
1206 		case IP_RECVOPTS:
1207 		case IP_RECVRETOPTS:
1208 		case IP_ORIGDSTADDR:
1209 		case IP_RECVDSTADDR:
1210 		case IP_RECVTTL:
1211 		case IP_RECVIF:
1212 		case IP_ONESBCAST:
1213 		case IP_DONTFRAG:
1214 		case IP_RECVTOS:
1215 		case IP_RECVFLOWID:
1216 #ifdef	RSS
1217 		case IP_RECVRSSBUCKETID:
1218 #endif
1219 		case IP_VLAN_PCP:
1220 			error = sooptcopyin(sopt, &optval, sizeof optval,
1221 					    sizeof optval);
1222 			if (error)
1223 				break;
1224 
1225 			switch (sopt->sopt_name) {
1226 			case IP_TOS:
1227 				inp->inp_ip_tos = optval;
1228 				break;
1229 
1230 			case IP_TTL:
1231 				inp->inp_ip_ttl = optval;
1232 				break;
1233 
1234 			case IP_MINTTL:
1235 				if (optval >= 0 && optval <= MAXTTL)
1236 					inp->inp_ip_minttl = optval;
1237 				else
1238 					error = EINVAL;
1239 				break;
1240 
1241 #define	OPTSET(bit) do {						\
1242 	INP_WLOCK(inp);							\
1243 	if (optval)							\
1244 		inp->inp_flags |= bit;					\
1245 	else								\
1246 		inp->inp_flags &= ~bit;					\
1247 	INP_WUNLOCK(inp);						\
1248 } while (0)
1249 
1250 #define	OPTSET2(bit, val) do {						\
1251 	INP_WLOCK(inp);							\
1252 	if (val)							\
1253 		inp->inp_flags2 |= bit;					\
1254 	else								\
1255 		inp->inp_flags2 &= ~bit;				\
1256 	INP_WUNLOCK(inp);						\
1257 } while (0)
1258 
1259 			case IP_RECVOPTS:
1260 				OPTSET(INP_RECVOPTS);
1261 				break;
1262 
1263 			case IP_RECVRETOPTS:
1264 				OPTSET(INP_RECVRETOPTS);
1265 				break;
1266 
1267 			case IP_RECVDSTADDR:
1268 				OPTSET(INP_RECVDSTADDR);
1269 				break;
1270 
1271 			case IP_ORIGDSTADDR:
1272 				OPTSET2(INP_ORIGDSTADDR, optval);
1273 				break;
1274 
1275 			case IP_RECVTTL:
1276 				OPTSET(INP_RECVTTL);
1277 				break;
1278 
1279 			case IP_RECVIF:
1280 				OPTSET(INP_RECVIF);
1281 				break;
1282 
1283 			case IP_ONESBCAST:
1284 				OPTSET(INP_ONESBCAST);
1285 				break;
1286 			case IP_DONTFRAG:
1287 				OPTSET(INP_DONTFRAG);
1288 				break;
1289 			case IP_BINDANY:
1290 				OPTSET(INP_BINDANY);
1291 				break;
1292 			case IP_RECVTOS:
1293 				OPTSET(INP_RECVTOS);
1294 				break;
1295 			case IP_BINDMULTI:
1296 				OPTSET2(INP_BINDMULTI, optval);
1297 				break;
1298 			case IP_RECVFLOWID:
1299 				OPTSET2(INP_RECVFLOWID, optval);
1300 				break;
1301 #ifdef	RSS
1302 			case IP_RSS_LISTEN_BUCKET:
1303 				if ((optval >= 0) &&
1304 				    (optval < rss_getnumbuckets())) {
1305 					inp->inp_rss_listen_bucket = optval;
1306 					OPTSET2(INP_RSS_BUCKET_SET, 1);
1307 				} else {
1308 					error = EINVAL;
1309 				}
1310 				break;
1311 			case IP_RECVRSSBUCKETID:
1312 				OPTSET2(INP_RECVRSSBUCKETID, optval);
1313 				break;
1314 #endif
1315 			case IP_VLAN_PCP:
1316 				if ((optval >= -1) && (optval <=
1317 				    (INP_2PCP_MASK >> INP_2PCP_SHIFT))) {
1318 					if (optval == -1) {
1319 						INP_WLOCK(inp);
1320 						inp->inp_flags2 &=
1321 						    ~(INP_2PCP_SET |
1322 						      INP_2PCP_MASK);
1323 						INP_WUNLOCK(inp);
1324 					} else {
1325 						INP_WLOCK(inp);
1326 						inp->inp_flags2 |=
1327 						    INP_2PCP_SET;
1328 						inp->inp_flags2 &=
1329 						    ~INP_2PCP_MASK;
1330 						inp->inp_flags2 |=
1331 						    optval << INP_2PCP_SHIFT;
1332 						INP_WUNLOCK(inp);
1333 					}
1334 				} else
1335 					error = EINVAL;
1336 				break;
1337 			}
1338 			break;
1339 #undef OPTSET
1340 #undef OPTSET2
1341 
1342 		/*
1343 		 * Multicast socket options are processed by the in_mcast
1344 		 * module.
1345 		 */
1346 		case IP_MULTICAST_IF:
1347 		case IP_MULTICAST_VIF:
1348 		case IP_MULTICAST_TTL:
1349 		case IP_MULTICAST_LOOP:
1350 		case IP_ADD_MEMBERSHIP:
1351 		case IP_DROP_MEMBERSHIP:
1352 		case IP_ADD_SOURCE_MEMBERSHIP:
1353 		case IP_DROP_SOURCE_MEMBERSHIP:
1354 		case IP_BLOCK_SOURCE:
1355 		case IP_UNBLOCK_SOURCE:
1356 		case IP_MSFILTER:
1357 		case MCAST_JOIN_GROUP:
1358 		case MCAST_LEAVE_GROUP:
1359 		case MCAST_JOIN_SOURCE_GROUP:
1360 		case MCAST_LEAVE_SOURCE_GROUP:
1361 		case MCAST_BLOCK_SOURCE:
1362 		case MCAST_UNBLOCK_SOURCE:
1363 			error = inp_setmoptions(inp, sopt);
1364 			break;
1365 
1366 		case IP_PORTRANGE:
1367 			error = sooptcopyin(sopt, &optval, sizeof optval,
1368 					    sizeof optval);
1369 			if (error)
1370 				break;
1371 
1372 			INP_WLOCK(inp);
1373 			switch (optval) {
1374 			case IP_PORTRANGE_DEFAULT:
1375 				inp->inp_flags &= ~(INP_LOWPORT);
1376 				inp->inp_flags &= ~(INP_HIGHPORT);
1377 				break;
1378 
1379 			case IP_PORTRANGE_HIGH:
1380 				inp->inp_flags &= ~(INP_LOWPORT);
1381 				inp->inp_flags |= INP_HIGHPORT;
1382 				break;
1383 
1384 			case IP_PORTRANGE_LOW:
1385 				inp->inp_flags &= ~(INP_HIGHPORT);
1386 				inp->inp_flags |= INP_LOWPORT;
1387 				break;
1388 
1389 			default:
1390 				error = EINVAL;
1391 				break;
1392 			}
1393 			INP_WUNLOCK(inp);
1394 			break;
1395 
1396 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
1397 		case IP_IPSEC_POLICY:
1398 			if (IPSEC_ENABLED(ipv4)) {
1399 				error = IPSEC_PCBCTL(ipv4, inp, sopt);
1400 				break;
1401 			}
1402 			/* FALLTHROUGH */
1403 #endif /* IPSEC */
1404 
1405 		default:
1406 			error = ENOPROTOOPT;
1407 			break;
1408 		}
1409 		break;
1410 
1411 	case SOPT_GET:
1412 		switch (sopt->sopt_name) {
1413 		case IP_OPTIONS:
1414 		case IP_RETOPTS:
1415 			INP_RLOCK(inp);
1416 			if (inp->inp_options) {
1417 				struct mbuf *options;
1418 
1419 				options = m_copym(inp->inp_options, 0,
1420 				    M_COPYALL, M_NOWAIT);
1421 				INP_RUNLOCK(inp);
1422 				if (options != NULL) {
1423 					error = sooptcopyout(sopt,
1424 							     mtod(options, char *),
1425 							     options->m_len);
1426 					m_freem(options);
1427 				} else
1428 					error = ENOMEM;
1429 			} else {
1430 				INP_RUNLOCK(inp);
1431 				sopt->sopt_valsize = 0;
1432 			}
1433 			break;
1434 
1435 		case IP_TOS:
1436 		case IP_TTL:
1437 		case IP_MINTTL:
1438 		case IP_RECVOPTS:
1439 		case IP_RECVRETOPTS:
1440 		case IP_ORIGDSTADDR:
1441 		case IP_RECVDSTADDR:
1442 		case IP_RECVTTL:
1443 		case IP_RECVIF:
1444 		case IP_PORTRANGE:
1445 		case IP_ONESBCAST:
1446 		case IP_DONTFRAG:
1447 		case IP_BINDANY:
1448 		case IP_RECVTOS:
1449 		case IP_BINDMULTI:
1450 		case IP_FLOWID:
1451 		case IP_FLOWTYPE:
1452 		case IP_RECVFLOWID:
1453 #ifdef	RSS
1454 		case IP_RSSBUCKETID:
1455 		case IP_RECVRSSBUCKETID:
1456 #endif
1457 		case IP_VLAN_PCP:
1458 			switch (sopt->sopt_name) {
1459 			case IP_TOS:
1460 				optval = inp->inp_ip_tos;
1461 				break;
1462 
1463 			case IP_TTL:
1464 				optval = inp->inp_ip_ttl;
1465 				break;
1466 
1467 			case IP_MINTTL:
1468 				optval = inp->inp_ip_minttl;
1469 				break;
1470 
1471 #define	OPTBIT(bit)	(inp->inp_flags & bit ? 1 : 0)
1472 #define	OPTBIT2(bit)	(inp->inp_flags2 & bit ? 1 : 0)
1473 
1474 			case IP_RECVOPTS:
1475 				optval = OPTBIT(INP_RECVOPTS);
1476 				break;
1477 
1478 			case IP_RECVRETOPTS:
1479 				optval = OPTBIT(INP_RECVRETOPTS);
1480 				break;
1481 
1482 			case IP_RECVDSTADDR:
1483 				optval = OPTBIT(INP_RECVDSTADDR);
1484 				break;
1485 
1486 			case IP_ORIGDSTADDR:
1487 				optval = OPTBIT2(INP_ORIGDSTADDR);
1488 				break;
1489 
1490 			case IP_RECVTTL:
1491 				optval = OPTBIT(INP_RECVTTL);
1492 				break;
1493 
1494 			case IP_RECVIF:
1495 				optval = OPTBIT(INP_RECVIF);
1496 				break;
1497 
1498 			case IP_PORTRANGE:
1499 				if (inp->inp_flags & INP_HIGHPORT)
1500 					optval = IP_PORTRANGE_HIGH;
1501 				else if (inp->inp_flags & INP_LOWPORT)
1502 					optval = IP_PORTRANGE_LOW;
1503 				else
1504 					optval = 0;
1505 				break;
1506 
1507 			case IP_ONESBCAST:
1508 				optval = OPTBIT(INP_ONESBCAST);
1509 				break;
1510 			case IP_DONTFRAG:
1511 				optval = OPTBIT(INP_DONTFRAG);
1512 				break;
1513 			case IP_BINDANY:
1514 				optval = OPTBIT(INP_BINDANY);
1515 				break;
1516 			case IP_RECVTOS:
1517 				optval = OPTBIT(INP_RECVTOS);
1518 				break;
1519 			case IP_FLOWID:
1520 				optval = inp->inp_flowid;
1521 				break;
1522 			case IP_FLOWTYPE:
1523 				optval = inp->inp_flowtype;
1524 				break;
1525 			case IP_RECVFLOWID:
1526 				optval = OPTBIT2(INP_RECVFLOWID);
1527 				break;
1528 #ifdef	RSS
1529 			case IP_RSSBUCKETID:
1530 				retval = rss_hash2bucket(inp->inp_flowid,
1531 				    inp->inp_flowtype,
1532 				    &rss_bucket);
1533 				if (retval == 0)
1534 					optval = rss_bucket;
1535 				else
1536 					error = EINVAL;
1537 				break;
1538 			case IP_RECVRSSBUCKETID:
1539 				optval = OPTBIT2(INP_RECVRSSBUCKETID);
1540 				break;
1541 #endif
1542 			case IP_BINDMULTI:
1543 				optval = OPTBIT2(INP_BINDMULTI);
1544 				break;
1545 			case IP_VLAN_PCP:
1546 				if (OPTBIT2(INP_2PCP_SET)) {
1547 					optval = (inp->inp_flags2 &
1548 					    INP_2PCP_MASK) >> INP_2PCP_SHIFT;
1549 				} else {
1550 					optval = -1;
1551 				}
1552 				break;
1553 			}
1554 			error = sooptcopyout(sopt, &optval, sizeof optval);
1555 			break;
1556 
1557 		/*
1558 		 * Multicast socket options are processed by the in_mcast
1559 		 * module.
1560 		 */
1561 		case IP_MULTICAST_IF:
1562 		case IP_MULTICAST_VIF:
1563 		case IP_MULTICAST_TTL:
1564 		case IP_MULTICAST_LOOP:
1565 		case IP_MSFILTER:
1566 			error = inp_getmoptions(inp, sopt);
1567 			break;
1568 
1569 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
1570 		case IP_IPSEC_POLICY:
1571 			if (IPSEC_ENABLED(ipv4)) {
1572 				error = IPSEC_PCBCTL(ipv4, inp, sopt);
1573 				break;
1574 			}
1575 			/* FALLTHROUGH */
1576 #endif /* IPSEC */
1577 
1578 		default:
1579 			error = ENOPROTOOPT;
1580 			break;
1581 		}
1582 		break;
1583 	}
1584 	return (error);
1585 }
1586 
1587 /*
1588  * Routine called from ip_output() to loop back a copy of an IP multicast
1589  * packet to the input queue of a specified interface.  Note that this
1590  * calls the output routine of the loopback "driver", but with an interface
1591  * pointer that might NOT be a loopback interface -- evil, but easier than
1592  * replicating that code here.
1593  */
1594 static void
1595 ip_mloopback(struct ifnet *ifp, const struct mbuf *m, int hlen)
1596 {
1597 	struct ip *ip;
1598 	struct mbuf *copym;
1599 
1600 	/*
1601 	 * Make a deep copy of the packet because we're going to
1602 	 * modify the pack in order to generate checksums.
1603 	 */
1604 	copym = m_dup(m, M_NOWAIT);
1605 	if (copym != NULL && (!M_WRITABLE(copym) || copym->m_len < hlen))
1606 		copym = m_pullup(copym, hlen);
1607 	if (copym != NULL) {
1608 		/* If needed, compute the checksum and mark it as valid. */
1609 		if (copym->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
1610 			in_delayed_cksum(copym);
1611 			copym->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
1612 			copym->m_pkthdr.csum_flags |=
1613 			    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
1614 			copym->m_pkthdr.csum_data = 0xffff;
1615 		}
1616 		/*
1617 		 * We don't bother to fragment if the IP length is greater
1618 		 * than the interface's MTU.  Can this possibly matter?
1619 		 */
1620 		ip = mtod(copym, struct ip *);
1621 		ip->ip_sum = 0;
1622 		ip->ip_sum = in_cksum(copym, hlen);
1623 		if_simloop(ifp, copym, AF_INET, 0);
1624 	}
1625 }
1626