xref: /freebsd/sys/netinet/ip_output.c (revision 983066f05bacda3e18aae456e56feb00f70c0b55)
1c398230bSWarner Losh /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
4df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 1986, 1988, 1990, 1993
5df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
6df8bae1dSRodney W. Grimes  *
7df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
8df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
9df8bae1dSRodney W. Grimes  * are met:
10df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
12df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
13df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
14df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
16df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
17df8bae1dSRodney W. Grimes  *    without specific prior written permission.
18df8bae1dSRodney W. Grimes  *
19df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
30df8bae1dSRodney W. Grimes  *
31df8bae1dSRodney W. Grimes  *	@(#)ip_output.c	8.3 (Berkeley) 1/21/94
32df8bae1dSRodney W. Grimes  */
33df8bae1dSRodney W. Grimes 
344b421e2dSMike Silbersack #include <sys/cdefs.h>
354b421e2dSMike Silbersack __FBSDID("$FreeBSD$");
364b421e2dSMike Silbersack 
375d6d7e75SGleb Smirnoff #include "opt_inet.h"
386a800098SYoshinobu Inoue #include "opt_ipsec.h"
39b2e60773SJohn Baldwin #include "opt_kern_tls.h"
4053dcc544SMike Silbersack #include "opt_mbuf_stress_test.h"
41e440aed9SQing Li #include "opt_mpath.h"
4277a01441SJohn Baldwin #include "opt_ratelimit.h"
4357f60867SMark Johnston #include "opt_route.h"
449c423972SAdrian Chadd #include "opt_rss.h"
4577a01441SJohn Baldwin #include "opt_sctp.h"
46fbd1372aSJoerg Wunsch 
47df8bae1dSRodney W. Grimes #include <sys/param.h>
4826f9a767SRodney W. Grimes #include <sys/systm.h>
49f0f6d643SLuigi Rizzo #include <sys/kernel.h>
50b2e60773SJohn Baldwin #include <sys/ktls.h>
51cc0a3c8cSAndrey V. Elsukov #include <sys/lock.h>
52df8bae1dSRodney W. Grimes #include <sys/malloc.h>
53df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
54acd3428bSRobert Watson #include <sys/priv.h>
55c26fe973SBjoern A. Zeeb #include <sys/proc.h>
56df8bae1dSRodney W. Grimes #include <sys/protosw.h>
57cc0a3c8cSAndrey V. Elsukov #include <sys/rmlock.h>
5857f60867SMark Johnston #include <sys/sdt.h>
59df8bae1dSRodney W. Grimes #include <sys/socket.h>
60df8bae1dSRodney W. Grimes #include <sys/socketvar.h>
619d9edc56SMike Silbersack #include <sys/sysctl.h>
62c26fe973SBjoern A. Zeeb #include <sys/ucred.h>
63df8bae1dSRodney W. Grimes 
64df8bae1dSRodney W. Grimes #include <net/if.h>
6576039bc8SGleb Smirnoff #include <net/if_var.h>
663ef5e21dSQing Li #include <net/if_llatbl.h>
679b932e9eSAndre Oppermann #include <net/netisr.h>
68c21fd232SAndre Oppermann #include <net/pfil.h>
69df8bae1dSRodney W. Grimes #include <net/route.h>
70*983066f0SAlexander V. Chernikov #include <net/route/nhop.h>
71e440aed9SQing Li #ifdef RADIX_MPATH
72e440aed9SQing Li #include <net/radix_mpath.h>
73e440aed9SQing Li #endif
74b2bdc62aSAdrian Chadd #include <net/rss_config.h>
754b79449eSBjoern A. Zeeb #include <net/vnet.h>
76df8bae1dSRodney W. Grimes 
77df8bae1dSRodney W. Grimes #include <netinet/in.h>
786ca363ebSGleb Smirnoff #include <netinet/in_fib.h>
7957f60867SMark Johnston #include <netinet/in_kdtrace.h>
80df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
81df8bae1dSRodney W. Grimes #include <netinet/ip.h>
82*983066f0SAlexander V. Chernikov #include <netinet/in_fib.h>
83df8bae1dSRodney W. Grimes #include <netinet/in_pcb.h>
849c423972SAdrian Chadd #include <netinet/in_rss.h>
85df8bae1dSRodney W. Grimes #include <netinet/in_var.h>
86df8bae1dSRodney W. Grimes #include <netinet/ip_var.h>
87ef39adf0SAndre Oppermann #include <netinet/ip_options.h>
881fdbfb90STom Jones 
891fdbfb90STom Jones #include <netinet/udp.h>
901fdbfb90STom Jones #include <netinet/udp_var.h>
911fdbfb90STom Jones 
922f4afd21SRandall Stewart #ifdef SCTP
932f4afd21SRandall Stewart #include <netinet/sctp.h>
942f4afd21SRandall Stewart #include <netinet/sctp_crc32.h>
952f4afd21SRandall Stewart #endif
96df8bae1dSRodney W. Grimes 
97fcf59617SAndrey V. Elsukov #include <netipsec/ipsec_support.h>
986a800098SYoshinobu Inoue 
991dfcf0d2SAndre Oppermann #include <machine/in_cksum.h>
1001dfcf0d2SAndre Oppermann 
101aed55708SRobert Watson #include <security/mac/mac_framework.h>
102aed55708SRobert Watson 
10353dcc544SMike Silbersack #ifdef MBUF_STRESS_TEST
10405b9d121SBjoern A. Zeeb static int mbuf_frag_size = 0;
1059d9edc56SMike Silbersack SYSCTL_INT(_net_inet_ip, OID_AUTO, mbuf_frag_size, CTLFLAG_RW,
1069d9edc56SMike Silbersack 	&mbuf_frag_size, 0, "Fragment outgoing mbufs to this size");
1079d9edc56SMike Silbersack #endif
1089d9edc56SMike Silbersack 
109331dff07SAlexander V. Chernikov static void	ip_mloopback(struct ifnet *, const struct mbuf *, int);
110afed1b49SDarren Reed 
111afed1b49SDarren Reed 
1128b889dbbSBruce M Simpson extern int in_mcast_loop;
11393e0e116SJulian Elischer extern	struct protosw inetsw[];
11493e0e116SJulian Elischer 
115d9f2a782SErmal Luçi static inline int
11605fc9d78SKristof Provost ip_output_pfil(struct mbuf **mp, struct ifnet *ifp, int flags,
11705fc9d78SKristof Provost     struct inpcb *inp, struct sockaddr_in *dst, int *fibnum, int *error)
118d9f2a782SErmal Luçi {
119d9f2a782SErmal Luçi 	struct m_tag *fwd_tag = NULL;
1208f980c01SMark Johnston 	struct mbuf *m;
121d9f2a782SErmal Luçi 	struct in_addr odst;
122d9f2a782SErmal Luçi 	struct ip *ip;
12305fc9d78SKristof Provost 	int pflags = PFIL_OUT;
12405fc9d78SKristof Provost 
12505fc9d78SKristof Provost 	if (flags & IP_FORWARDING)
12605fc9d78SKristof Provost 		pflags |= PFIL_FWD;
127d9f2a782SErmal Luçi 
1288f980c01SMark Johnston 	m = *mp;
129d9f2a782SErmal Luçi 	ip = mtod(m, struct ip *);
130d9f2a782SErmal Luçi 
131d9f2a782SErmal Luçi 	/* Run through list of hooks for output packets. */
132d9f2a782SErmal Luçi 	odst.s_addr = ip->ip_dst.s_addr;
13305fc9d78SKristof Provost 	switch (pfil_run_hooks(V_inet_pfil_head, mp, ifp, pflags, inp)) {
134b252313fSGleb Smirnoff 	case PFIL_DROPPED:
1358d5c56daSGleb Smirnoff 		*error = EACCES;
136b252313fSGleb Smirnoff 		/* FALLTHROUGH */
137b252313fSGleb Smirnoff 	case PFIL_CONSUMED:
138d9f2a782SErmal Luçi 		return 1; /* Finished */
139b252313fSGleb Smirnoff 	case PFIL_PASS:
140b252313fSGleb Smirnoff 		*error = 0;
141b252313fSGleb Smirnoff 	}
142b252313fSGleb Smirnoff 	m = *mp;
143d9f2a782SErmal Luçi 	ip = mtod(m, struct ip *);
144d9f2a782SErmal Luçi 
145d9f2a782SErmal Luçi 	/* See if destination IP address was changed by packet filter. */
146d9f2a782SErmal Luçi 	if (odst.s_addr != ip->ip_dst.s_addr) {
147d9f2a782SErmal Luçi 		m->m_flags |= M_SKIP_FIREWALL;
148d9f2a782SErmal Luçi 		/* If destination is now ourself drop to ip_input(). */
149d9f2a782SErmal Luçi 		if (in_localip(ip->ip_dst)) {
150d9f2a782SErmal Luçi 			m->m_flags |= M_FASTFWD_OURS;
151d9f2a782SErmal Luçi 			if (m->m_pkthdr.rcvif == NULL)
152d9f2a782SErmal Luçi 				m->m_pkthdr.rcvif = V_loif;
153d9f2a782SErmal Luçi 			if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
154d9f2a782SErmal Luçi 				m->m_pkthdr.csum_flags |=
155d9f2a782SErmal Luçi 					CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
156d9f2a782SErmal Luçi 				m->m_pkthdr.csum_data = 0xffff;
157d9f2a782SErmal Luçi 			}
158d9f2a782SErmal Luçi 			m->m_pkthdr.csum_flags |=
159d9f2a782SErmal Luçi 				CSUM_IP_CHECKED | CSUM_IP_VALID;
160d9f2a782SErmal Luçi #ifdef SCTP
161d9f2a782SErmal Luçi 			if (m->m_pkthdr.csum_flags & CSUM_SCTP)
162d9f2a782SErmal Luçi 				m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
163d9f2a782SErmal Luçi #endif
164d9f2a782SErmal Luçi 			*error = netisr_queue(NETISR_IP, m);
165d9f2a782SErmal Luçi 			return 1; /* Finished */
166d9f2a782SErmal Luçi 		}
167d9f2a782SErmal Luçi 
168d9f2a782SErmal Luçi 		bzero(dst, sizeof(*dst));
169d9f2a782SErmal Luçi 		dst->sin_family = AF_INET;
170d9f2a782SErmal Luçi 		dst->sin_len = sizeof(*dst);
171d9f2a782SErmal Luçi 		dst->sin_addr = ip->ip_dst;
172d9f2a782SErmal Luçi 
173d9f2a782SErmal Luçi 		return -1; /* Reloop */
174d9f2a782SErmal Luçi 	}
175d9f2a782SErmal Luçi 	/* See if fib was changed by packet filter. */
176d9f2a782SErmal Luçi 	if ((*fibnum) != M_GETFIB(m)) {
177d9f2a782SErmal Luçi 		m->m_flags |= M_SKIP_FIREWALL;
178d9f2a782SErmal Luçi 		*fibnum = M_GETFIB(m);
179d9f2a782SErmal Luçi 		return -1; /* Reloop for FIB change */
180d9f2a782SErmal Luçi 	}
181d9f2a782SErmal Luçi 
182d9f2a782SErmal Luçi 	/* See if local, if yes, send it to netisr with IP_FASTFWD_OURS. */
183d9f2a782SErmal Luçi 	if (m->m_flags & M_FASTFWD_OURS) {
184d9f2a782SErmal Luçi 		if (m->m_pkthdr.rcvif == NULL)
185d9f2a782SErmal Luçi 			m->m_pkthdr.rcvif = V_loif;
186d9f2a782SErmal Luçi 		if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
187d9f2a782SErmal Luçi 			m->m_pkthdr.csum_flags |=
188d9f2a782SErmal Luçi 				CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
189d9f2a782SErmal Luçi 			m->m_pkthdr.csum_data = 0xffff;
190d9f2a782SErmal Luçi 		}
191d9f2a782SErmal Luçi #ifdef SCTP
192d9f2a782SErmal Luçi 		if (m->m_pkthdr.csum_flags & CSUM_SCTP)
193d9f2a782SErmal Luçi 			m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
194d9f2a782SErmal Luçi #endif
195d9f2a782SErmal Luçi 		m->m_pkthdr.csum_flags |=
196d9f2a782SErmal Luçi 			CSUM_IP_CHECKED | CSUM_IP_VALID;
197d9f2a782SErmal Luçi 
198d9f2a782SErmal Luçi 		*error = netisr_queue(NETISR_IP, m);
199d9f2a782SErmal Luçi 		return 1; /* Finished */
200d9f2a782SErmal Luçi 	}
201d9f2a782SErmal Luçi 	/* Or forward to some other address? */
202d9f2a782SErmal Luçi 	if ((m->m_flags & M_IP_NEXTHOP) &&
203d9f2a782SErmal Luçi 	    ((fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL)) != NULL)) {
204d9f2a782SErmal Luçi 		bcopy((fwd_tag+1), dst, sizeof(struct sockaddr_in));
205d9f2a782SErmal Luçi 		m->m_flags |= M_SKIP_FIREWALL;
206d9f2a782SErmal Luçi 		m->m_flags &= ~M_IP_NEXTHOP;
207d9f2a782SErmal Luçi 		m_tag_delete(m, fwd_tag);
208d9f2a782SErmal Luçi 
209d9f2a782SErmal Luçi 		return -1; /* Reloop for CHANGE of dst */
210d9f2a782SErmal Luçi 	}
211d9f2a782SErmal Luçi 
212d9f2a782SErmal Luçi 	return 0;
213d9f2a782SErmal Luçi }
214d9f2a782SErmal Luçi 
215fb3bc596SJohn Baldwin static int
216fb3bc596SJohn Baldwin ip_output_send(struct inpcb *inp, struct ifnet *ifp, struct mbuf *m,
21735c7bb34SRandall Stewart     const struct sockaddr_in *gw, struct route *ro, bool stamp_tag)
218fb3bc596SJohn Baldwin {
219b2e60773SJohn Baldwin #ifdef KERN_TLS
220b2e60773SJohn Baldwin 	struct ktls_session *tls = NULL;
221b2e60773SJohn Baldwin #endif
222fb3bc596SJohn Baldwin 	struct m_snd_tag *mst;
223fb3bc596SJohn Baldwin 	int error;
224fb3bc596SJohn Baldwin 
225fb3bc596SJohn Baldwin 	MPASS((m->m_pkthdr.csum_flags & CSUM_SND_TAG) == 0);
226fb3bc596SJohn Baldwin 	mst = NULL;
227fb3bc596SJohn Baldwin 
228b2e60773SJohn Baldwin #ifdef KERN_TLS
229b2e60773SJohn Baldwin 	/*
230b2e60773SJohn Baldwin 	 * If this is an unencrypted TLS record, save a reference to
231b2e60773SJohn Baldwin 	 * the record.  This local reference is used to call
232b2e60773SJohn Baldwin 	 * ktls_output_eagain after the mbuf has been freed (thus
233b2e60773SJohn Baldwin 	 * dropping the mbuf's reference) in if_output.
234b2e60773SJohn Baldwin 	 */
235b2e60773SJohn Baldwin 	if (m->m_next != NULL && mbuf_has_tls_session(m->m_next)) {
23623feb563SAndrew Gallatin 		tls = ktls_hold(m->m_next->m_ext_pgs.tls);
237b2e60773SJohn Baldwin 		mst = tls->snd_tag;
238b2e60773SJohn Baldwin 
239b2e60773SJohn Baldwin 		/*
240b2e60773SJohn Baldwin 		 * If a TLS session doesn't have a valid tag, it must
241b2e60773SJohn Baldwin 		 * have had an earlier ifp mismatch, so drop this
242b2e60773SJohn Baldwin 		 * packet.
243b2e60773SJohn Baldwin 		 */
244b2e60773SJohn Baldwin 		if (mst == NULL) {
245b2e60773SJohn Baldwin 			error = EAGAIN;
246b2e60773SJohn Baldwin 			goto done;
247b2e60773SJohn Baldwin 		}
248b2e60773SJohn Baldwin 	}
249b2e60773SJohn Baldwin #endif
250fb3bc596SJohn Baldwin #ifdef RATELIMIT
251b2e60773SJohn Baldwin 	if (inp != NULL && mst == NULL) {
252fb3bc596SJohn Baldwin 		if ((inp->inp_flags2 & INP_RATE_LIMIT_CHANGED) != 0 ||
253fb3bc596SJohn Baldwin 		    (inp->inp_snd_tag != NULL &&
254fb3bc596SJohn Baldwin 		    inp->inp_snd_tag->ifp != ifp))
255fb3bc596SJohn Baldwin 			in_pcboutput_txrtlmt(inp, ifp, m);
256fb3bc596SJohn Baldwin 
257fb3bc596SJohn Baldwin 		if (inp->inp_snd_tag != NULL)
258fb3bc596SJohn Baldwin 			mst = inp->inp_snd_tag;
259fb3bc596SJohn Baldwin 	}
260fb3bc596SJohn Baldwin #endif
26135c7bb34SRandall Stewart 	if (stamp_tag && mst != NULL) {
262fb3bc596SJohn Baldwin 		KASSERT(m->m_pkthdr.rcvif == NULL,
263fb3bc596SJohn Baldwin 		    ("trying to add a send tag to a forwarded packet"));
264fb3bc596SJohn Baldwin 		if (mst->ifp != ifp) {
265fb3bc596SJohn Baldwin 			error = EAGAIN;
266fb3bc596SJohn Baldwin 			goto done;
267fb3bc596SJohn Baldwin 		}
268fb3bc596SJohn Baldwin 
269fb3bc596SJohn Baldwin 		/* stamp send tag on mbuf */
270fb3bc596SJohn Baldwin 		m->m_pkthdr.snd_tag = m_snd_tag_ref(mst);
271fb3bc596SJohn Baldwin 		m->m_pkthdr.csum_flags |= CSUM_SND_TAG;
272fb3bc596SJohn Baldwin 	}
273fb3bc596SJohn Baldwin 
274fb3bc596SJohn Baldwin 	error = (*ifp->if_output)(ifp, m, (const struct sockaddr *)gw, ro);
275fb3bc596SJohn Baldwin 
276fb3bc596SJohn Baldwin done:
277fb3bc596SJohn Baldwin 	/* Check for route change invalidating send tags. */
278b2e60773SJohn Baldwin #ifdef KERN_TLS
279b2e60773SJohn Baldwin 	if (tls != NULL) {
280b2e60773SJohn Baldwin 		if (error == EAGAIN)
281b2e60773SJohn Baldwin 			error = ktls_output_eagain(inp, tls);
282b2e60773SJohn Baldwin 		ktls_free(tls);
283b2e60773SJohn Baldwin 	}
284b2e60773SJohn Baldwin #endif
285fb3bc596SJohn Baldwin #ifdef RATELIMIT
286fb3bc596SJohn Baldwin 	if (error == EAGAIN)
287fb3bc596SJohn Baldwin 		in_pcboutput_eagain(inp);
288fb3bc596SJohn Baldwin #endif
289fb3bc596SJohn Baldwin 	return (error);
290fb3bc596SJohn Baldwin }
291fb3bc596SJohn Baldwin 
292*983066f0SAlexander V. Chernikov /* rte<>ro_flags translation */
293*983066f0SAlexander V. Chernikov static inline void
294*983066f0SAlexander V. Chernikov rt_update_ro_flags(struct route *ro)
295*983066f0SAlexander V. Chernikov {
296*983066f0SAlexander V. Chernikov 	int nh_flags = ro->ro_nh->nh_flags;
297*983066f0SAlexander V. Chernikov 
298*983066f0SAlexander V. Chernikov 	ro->ro_flags &= ~ (RT_REJECT|RT_BLACKHOLE|RT_HAS_GW);
299*983066f0SAlexander V. Chernikov 
300*983066f0SAlexander V. Chernikov 	ro->ro_flags |= (nh_flags & NHF_REJECT) ? RT_REJECT : 0;
301*983066f0SAlexander V. Chernikov 	ro->ro_flags |= (nh_flags & NHF_BLACKHOLE) ? RT_BLACKHOLE : 0;
302*983066f0SAlexander V. Chernikov 	ro->ro_flags |= (nh_flags & NHF_GATEWAY) ? RT_HAS_GW : 0;
303*983066f0SAlexander V. Chernikov }
304*983066f0SAlexander V. Chernikov 
305df8bae1dSRodney W. Grimes /*
306df8bae1dSRodney W. Grimes  * IP output.  The packet in mbuf chain m contains a skeletal IP
307df8bae1dSRodney W. Grimes  * header (with len, off, ttl, proto, tos, src, dst).
308df8bae1dSRodney W. Grimes  * The mbuf chain containing the packet will be freed.
309df8bae1dSRodney W. Grimes  * The mbuf opt, if present, will not be freed.
310bf984051SGleb Smirnoff  * If route ro is present and has ro_rt initialized, route lookup would be
311bf984051SGleb Smirnoff  * skipped and ro->ro_rt would be used. If ro is present but ro->ro_rt is NULL,
312bf984051SGleb Smirnoff  * then result of route lookup is stored in ro->ro_rt.
313bf984051SGleb Smirnoff  *
3143de758d3SRobert Watson  * In the IP forwarding case, the packet will arrive with options already
3153de758d3SRobert Watson  * inserted, so must have a NULL opt pointer.
316df8bae1dSRodney W. Grimes  */
317df8bae1dSRodney W. Grimes int
318f2565d68SRobert Watson ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro, int flags,
319f2565d68SRobert Watson     struct ip_moptions *imo, struct inpcb *inp)
320df8bae1dSRodney W. Grimes {
321cc0a3c8cSAndrey V. Elsukov 	struct rm_priotracker in_ifa_tracker;
3221e78ac21SJeffrey Hsu 	struct ip *ip;
323fc74d005SBjoern A. Zeeb 	struct ifnet *ifp = NULL;	/* keep compiler happy */
324ac9d7e26SMax Laier 	struct mbuf *m0;
32523bf9953SPoul-Henning Kamp 	int hlen = sizeof (struct ip);
3263ae2ad08SJohn-Mark Gurney 	int mtu;
327ca8b83b0SLuigi Rizzo 	int error = 0;
3286ca363ebSGleb Smirnoff 	struct sockaddr_in *dst, sin;
3294c7a6059SGleb Smirnoff 	const struct sockaddr_in *gw;
3303c73180fSGleb Smirnoff 	struct in_ifaddr *ia;
3316ca363ebSGleb Smirnoff 	struct in_addr src;
33221d172a3SGleb Smirnoff 	int isbroadcast;
333078468edSGleb Smirnoff 	uint16_t ip_len, ip_off;
3349c57a5b6SHiroki Sato 	uint32_t fibnum;
335fcf59617SAndrey V. Elsukov #if defined(IPSEC) || defined(IPSEC_SUPPORT)
3361a499816SEdward Tomasz Napierala 	int no_route_but_check_spd = 0;
3371a499816SEdward Tomasz Napierala #endif
33877a01441SJohn Baldwin 
339ac9d7e26SMax Laier 	M_ASSERTPKTHDR(m);
340b9555453SGleb Smirnoff 	NET_EPOCH_ASSERT();
34136e8826fSMax Laier 
342bc97ba51SJulian Elischer 	if (inp != NULL) {
343baa45840SRobert Watson 		INP_LOCK_ASSERT(inp);
34462e1ba83SRobert Watson 		M_SETFIB(m, inp->inp_inc.inc_fibnum);
345c2529042SHans Petter Selasky 		if ((flags & IP_NODEFAULTFLOWID) == 0) {
34680cb9f21SKip Macy 			m->m_pkthdr.flowid = inp->inp_flowid;
3479c423972SAdrian Chadd 			M_HASHTYPE_SET(m, inp->inp_flowtype);
34880cb9f21SKip Macy 		}
34950575ce1SAndrew Gallatin #ifdef NUMA
35050575ce1SAndrew Gallatin 		m->m_pkthdr.numa_domain = inp->inp_numa_domain;
35150575ce1SAndrew Gallatin #endif
352bc97ba51SJulian Elischer 	}
35362e1ba83SRobert Watson 
354df8bae1dSRodney W. Grimes 	if (opt) {
355ca8b83b0SLuigi Rizzo 		int len = 0;
356df8bae1dSRodney W. Grimes 		m = ip_insertoptions(m, opt, &len);
357cb7641e8SMaxim Konovalov 		if (len != 0)
358ca8b83b0SLuigi Rizzo 			hlen = len; /* ip->ip_hl is updated above */
359df8bae1dSRodney W. Grimes 	}
360df8bae1dSRodney W. Grimes 	ip = mtod(m, struct ip *);
3618f134647SGleb Smirnoff 	ip_len = ntohs(ip->ip_len);
3628f134647SGleb Smirnoff 	ip_off = ntohs(ip->ip_off);
3633efc3014SJulian Elischer 
364df8bae1dSRodney W. Grimes 	if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) {
36553be11f6SPoul-Henning Kamp 		ip->ip_v = IPVERSION;
36653be11f6SPoul-Henning Kamp 		ip->ip_hl = hlen >> 2;
3676d947416SGleb Smirnoff 		ip_fillid(ip);
368df8bae1dSRodney W. Grimes 	} else {
369ca8b83b0SLuigi Rizzo 		/* Header already set, fetch hlen from there */
37053be11f6SPoul-Henning Kamp 		hlen = ip->ip_hl << 2;
371df8bae1dSRodney W. Grimes 	}
3723924dfa7SMichael Tuexen 	if ((flags & IP_FORWARDING) == 0)
3733924dfa7SMichael Tuexen 		IPSTAT_INC(ips_localout);
3749c9137eaSGarrett Wollman 
375054692a4SAlexander V. Chernikov 	/*
376054692a4SAlexander V. Chernikov 	 * dst/gw handling:
377054692a4SAlexander V. Chernikov 	 *
3783c065f2fSGleb Smirnoff 	 * gw is readonly but can point either to dst OR rt_gateway,
3793c065f2fSGleb Smirnoff 	 * therefore we need restore gw if we're redoing lookup.
380054692a4SAlexander V. Chernikov 	 */
3819c57a5b6SHiroki Sato 	fibnum = (inp != NULL) ? inp->inp_inc.inc_fibnum : M_GETFIB(m);
3826ca363ebSGleb Smirnoff 	if (ro != NULL)
3836ca363ebSGleb Smirnoff 		dst = (struct sockaddr_in *)&ro->ro_dst;
3846ca363ebSGleb Smirnoff 	else
3856ca363ebSGleb Smirnoff 		dst = &sin;
386*983066f0SAlexander V. Chernikov 	if (ro == NULL || ro->ro_nh == NULL) {
387a4a6e773SHajimu UMEMOTO 		bzero(dst, sizeof(*dst));
388df8bae1dSRodney W. Grimes 		dst->sin_family = AF_INET;
389df8bae1dSRodney W. Grimes 		dst->sin_len = sizeof(*dst);
3909b932e9eSAndre Oppermann 		dst->sin_addr = ip->ip_dst;
391df8bae1dSRodney W. Grimes 	}
3926ca363ebSGleb Smirnoff 	gw = dst;
393d9f2a782SErmal Luçi again:
39484cc0778SGeorge V. Neville-Neil 	/*
39584cc0778SGeorge V. Neville-Neil 	 * Validate route against routing table additions;
39684cc0778SGeorge V. Neville-Neil 	 * a better/more specific route might have been added.
39784cc0778SGeorge V. Neville-Neil 	 */
398*983066f0SAlexander V. Chernikov 	if (inp != NULL && ro != NULL && ro->ro_nh != NULL)
399*983066f0SAlexander V. Chernikov 		NH_VALIDATE(ro, &inp->inp_rt_cookie, fibnum);
40084cc0778SGeorge V. Neville-Neil 	/*
40184cc0778SGeorge V. Neville-Neil 	 * If there is a cached route,
40284cc0778SGeorge V. Neville-Neil 	 * check that it is to the same destination
40384cc0778SGeorge V. Neville-Neil 	 * and is still up.  If not, free it and try again.
40484cc0778SGeorge V. Neville-Neil 	 * The address family should also be checked in case of sharing the
40584cc0778SGeorge V. Neville-Neil 	 * cache with IPv6.
40684cc0778SGeorge V. Neville-Neil 	 * Also check whether routing cache needs invalidation.
40784cc0778SGeorge V. Neville-Neil 	 */
408*983066f0SAlexander V. Chernikov 	if (ro != NULL && ro->ro_nh != NULL &&
409*983066f0SAlexander V. Chernikov 	    ((!NH_IS_VALID(ro->ro_nh)) || !RT_LINK_IS_UP(ro->ro_nh->nh_ifp) ||
41084cc0778SGeorge V. Neville-Neil 	    dst->sin_family != AF_INET ||
4116ca363ebSGleb Smirnoff 	    dst->sin_addr.s_addr != ip->ip_dst.s_addr))
412fc21c53fSRyan Stone 		RO_INVALIDATE_CACHE(ro);
413d9f2a782SErmal Luçi 	ia = NULL;
414df8bae1dSRodney W. Grimes 	/*
415a3fd02d8SBruce M Simpson 	 * If routing to interface only, short circuit routing lookup.
416a3fd02d8SBruce M Simpson 	 * The use of an all-ones broadcast address implies this; an
417a3fd02d8SBruce M Simpson 	 * interface is specified by the broadcast address of an interface,
418a3fd02d8SBruce M Simpson 	 * or the destination address of a ptp interface.
419df8bae1dSRodney W. Grimes 	 */
420a3fd02d8SBruce M Simpson 	if (flags & IP_SENDONES) {
4214f8585e0SAlan Somers 		if ((ia = ifatoia(ifa_ifwithbroadaddr(sintosa(dst),
42258a39d8cSAlan Somers 						      M_GETFIB(m)))) == NULL &&
4234f8585e0SAlan Somers 		    (ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst),
42458a39d8cSAlan Somers 						    M_GETFIB(m)))) == NULL) {
42586425c62SRobert Watson 			IPSTAT_INC(ips_noroute);
426a3fd02d8SBruce M Simpson 			error = ENETUNREACH;
427a3fd02d8SBruce M Simpson 			goto bad;
428a3fd02d8SBruce M Simpson 		}
429a3fd02d8SBruce M Simpson 		ip->ip_dst.s_addr = INADDR_BROADCAST;
430a3fd02d8SBruce M Simpson 		dst->sin_addr = ip->ip_dst;
431a3fd02d8SBruce M Simpson 		ifp = ia->ia_ifp;
4326ca363ebSGleb Smirnoff 		mtu = ifp->if_mtu;
433a3fd02d8SBruce M Simpson 		ip->ip_ttl = 1;
434a3fd02d8SBruce M Simpson 		isbroadcast = 1;
4356ca363ebSGleb Smirnoff 		src = IA_SIN(ia)->sin_addr;
436a3fd02d8SBruce M Simpson 	} else if (flags & IP_ROUTETOIF) {
4374f8585e0SAlan Somers 		if ((ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst),
43858a39d8cSAlan Somers 						    M_GETFIB(m)))) == NULL &&
4394f8585e0SAlan Somers 		    (ia = ifatoia(ifa_ifwithnet(sintosa(dst), 0,
44058a39d8cSAlan Somers 						M_GETFIB(m)))) == NULL) {
44186425c62SRobert Watson 			IPSTAT_INC(ips_noroute);
442df8bae1dSRodney W. Grimes 			error = ENETUNREACH;
443df8bae1dSRodney W. Grimes 			goto bad;
444df8bae1dSRodney W. Grimes 		}
445df8bae1dSRodney W. Grimes 		ifp = ia->ia_ifp;
4466ca363ebSGleb Smirnoff 		mtu = ifp->if_mtu;
447df8bae1dSRodney W. Grimes 		ip->ip_ttl = 1;
4486c1bd558SRyan Stone 		isbroadcast = ifp->if_flags & IFF_BROADCAST ?
4496c1bd558SRyan Stone 		    in_ifaddr_broadcast(dst->sin_addr, ia) : 0;
4506ca363ebSGleb Smirnoff 		src = IA_SIN(ia)->sin_addr;
4513afefa39SDaniel C. Sobral 	} else if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) &&
45238c1bc35SRuslan Ermilov 	    imo != NULL && imo->imo_multicast_ifp != NULL) {
4533afefa39SDaniel C. Sobral 		/*
45438c1bc35SRuslan Ermilov 		 * Bypass the normal routing lookup for multicast
45538c1bc35SRuslan Ermilov 		 * packets if the interface is specified.
4563afefa39SDaniel C. Sobral 		 */
45738c1bc35SRuslan Ermilov 		ifp = imo->imo_multicast_ifp;
4586ca363ebSGleb Smirnoff 		mtu = ifp->if_mtu;
459cc0a3c8cSAndrey V. Elsukov 		IFP_TO_IA(ifp, ia, &in_ifa_tracker);
46038c1bc35SRuslan Ermilov 		isbroadcast = 0;	/* fool gcc */
46154bb7ac0SGleb Smirnoff 		/* Interface may have no addresses. */
46254bb7ac0SGleb Smirnoff 		if (ia != NULL)
4636ca363ebSGleb Smirnoff 			src = IA_SIN(ia)->sin_addr;
46454bb7ac0SGleb Smirnoff 		else
46554bb7ac0SGleb Smirnoff 			src.s_addr = INADDR_ANY;
4666ca363ebSGleb Smirnoff 	} else if (ro != NULL) {
467*983066f0SAlexander V. Chernikov 		if (ro->ro_nh == NULL) {
4682c17fe93SGarrett Wollman 			/*
4696ca363ebSGleb Smirnoff 			 * We want to do any cloning requested by the link
4706ca363ebSGleb Smirnoff 			 * layer, as this is probably required in all cases
4716ca363ebSGleb Smirnoff 			 * for correct operation (as it is for ARP).
4722c17fe93SGarrett Wollman 			 */
473e440aed9SQing Li #ifdef RADIX_MPATH
4748b07e49aSJulian Elischer 			rtalloc_mpath_fib(ro,
4758b07e49aSJulian Elischer 			    ntohl(ip->ip_src.s_addr ^ ip->ip_dst.s_addr),
4769c57a5b6SHiroki Sato 			    fibnum);
477e440aed9SQing Li #else
478*983066f0SAlexander V. Chernikov 			ro->ro_nh = fib4_lookup(fibnum, dst->sin_addr, 0,
479*983066f0SAlexander V. Chernikov 			    NHR_REF, m->m_pkthdr.flowid);
480e440aed9SQing Li #endif
481*983066f0SAlexander V. Chernikov 			if (ro->ro_nh == NULL || (!NH_IS_VALID(ro->ro_nh)) ||
482*983066f0SAlexander V. Chernikov 			    !RT_LINK_IS_UP(ro->ro_nh->nh_ifp)) {
483fcf59617SAndrey V. Elsukov #if defined(IPSEC) || defined(IPSEC_SUPPORT)
4841a499816SEdward Tomasz Napierala 				/*
4851a499816SEdward Tomasz Napierala 				 * There is no route for this packet, but it is
4861a499816SEdward Tomasz Napierala 				 * possible that a matching SPD entry exists.
4871a499816SEdward Tomasz Napierala 				 */
4881a499816SEdward Tomasz Napierala 				no_route_but_check_spd = 1;
4891a499816SEdward Tomasz Napierala 				mtu = 0; /* Silence GCC warning. */
4901a499816SEdward Tomasz Napierala 				goto sendit;
4911a499816SEdward Tomasz Napierala #endif
49286425c62SRobert Watson 				IPSTAT_INC(ips_noroute);
493df8bae1dSRodney W. Grimes 				error = EHOSTUNREACH;
494df8bae1dSRodney W. Grimes 				goto bad;
495df8bae1dSRodney W. Grimes 			}
4966ca363ebSGleb Smirnoff 		}
497*983066f0SAlexander V. Chernikov 		ia = ifatoia(ro->ro_nh->nh_ifa);
498*983066f0SAlexander V. Chernikov 		ifp = ro->ro_nh->nh_ifp;
499*983066f0SAlexander V. Chernikov 		counter_u64_add(ro->ro_nh->nh_pksent, 1);
50036402a68SAlexander V. Chernikov 		rt_update_ro_flags(ro);
501*983066f0SAlexander V. Chernikov 		if (ro->ro_nh->nh_flags & NHF_GATEWAY)
502*983066f0SAlexander V. Chernikov 			gw = &ro->ro_nh->gw4_sa;
503*983066f0SAlexander V. Chernikov 		if (ro->ro_nh->nh_flags & NHF_HOST)
504*983066f0SAlexander V. Chernikov 			isbroadcast = (ro->ro_nh->nh_flags & NHF_BROADCAST);
5056c1bd558SRyan Stone 		else if (ifp->if_flags & IFF_BROADCAST)
50690cc51a1SRyan Stone 			isbroadcast = in_ifaddr_broadcast(gw->sin_addr, ia);
5076c1bd558SRyan Stone 		else
5086c1bd558SRyan Stone 			isbroadcast = 0;
509*983066f0SAlexander V. Chernikov 		if (ro->ro_nh->nh_flags & NHF_HOST)
510*983066f0SAlexander V. Chernikov 			mtu = ro->ro_nh->nh_mtu;
5117f948f12SAlexander V. Chernikov 		else
5123ae2ad08SJohn-Mark Gurney 			mtu = ifp->if_mtu;
5136ca363ebSGleb Smirnoff 		src = IA_SIN(ia)->sin_addr;
5146ca363ebSGleb Smirnoff 	} else {
5156ca363ebSGleb Smirnoff 		struct nhop4_extended nh;
5166ca363ebSGleb Smirnoff 
5176ca363ebSGleb Smirnoff 		bzero(&nh, sizeof(nh));
5186ca363ebSGleb Smirnoff 		if (fib4_lookup_nh_ext(M_GETFIB(m), ip->ip_dst, 0, 0, &nh) !=
5196ca363ebSGleb Smirnoff 		    0) {
5206ca363ebSGleb Smirnoff #if defined(IPSEC) || defined(IPSEC_SUPPORT)
5216ca363ebSGleb Smirnoff 			/*
5226ca363ebSGleb Smirnoff 			 * There is no route for this packet, but it is
5236ca363ebSGleb Smirnoff 			 * possible that a matching SPD entry exists.
5246ca363ebSGleb Smirnoff 			 */
5256ca363ebSGleb Smirnoff 			no_route_but_check_spd = 1;
5266ca363ebSGleb Smirnoff 			mtu = 0; /* Silence GCC warning. */
5276ca363ebSGleb Smirnoff 			goto sendit;
5286ca363ebSGleb Smirnoff #endif
5296ca363ebSGleb Smirnoff 			IPSTAT_INC(ips_noroute);
5306ca363ebSGleb Smirnoff 			error = EHOSTUNREACH;
5316ca363ebSGleb Smirnoff 			goto bad;
5326ca363ebSGleb Smirnoff 		}
5336ca363ebSGleb Smirnoff 		ifp = nh.nh_ifp;
5346ca363ebSGleb Smirnoff 		mtu = nh.nh_mtu;
5356ca363ebSGleb Smirnoff 		/*
5366ca363ebSGleb Smirnoff 		 * We are rewriting here dst to be gw actually, contradicting
5376ca363ebSGleb Smirnoff 		 * comment at the beginning of the function. However, in this
5386ca363ebSGleb Smirnoff 		 * case we are always dealing with on stack dst.
5396ca363ebSGleb Smirnoff 		 * In case if pfil(9) sends us back to beginning of the
5406ca363ebSGleb Smirnoff 		 * function, the dst would be rewritten by ip_output_pfil().
5416ca363ebSGleb Smirnoff 		 */
5426ca363ebSGleb Smirnoff 		MPASS(dst == &sin);
5436ca363ebSGleb Smirnoff 		dst->sin_addr = nh.nh_addr;
5446ca363ebSGleb Smirnoff 		ia = nh.nh_ia;
5456ca363ebSGleb Smirnoff 		src = nh.nh_src;
5466ca363ebSGleb Smirnoff 		isbroadcast = (((nh.nh_flags & (NHF_HOST | NHF_BROADCAST)) ==
5476ca363ebSGleb Smirnoff 		    (NHF_HOST | NHF_BROADCAST)) ||
5486ca363ebSGleb Smirnoff 		    ((ifp->if_flags & IFF_BROADCAST) &&
5496ca363ebSGleb Smirnoff 		    in_ifaddr_broadcast(dst->sin_addr, ia)));
5506ca363ebSGleb Smirnoff 	}
5516ca363ebSGleb Smirnoff 
552c744cde4SBjoern A. Zeeb 	/* Catch a possible divide by zero later. */
553*983066f0SAlexander V. Chernikov 	KASSERT(mtu > 0, ("%s: mtu %d <= 0, ro=%p (nh_flags=0x%08x) ifp=%p",
5546ca363ebSGleb Smirnoff 	    __func__, mtu, ro,
555*983066f0SAlexander V. Chernikov 	    (ro != NULL && ro->ro_nh != NULL) ? ro->ro_nh->nh_flags : 0, ifp));
556d9f2a782SErmal Luçi 
5579b932e9eSAndre Oppermann 	if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) {
558df8bae1dSRodney W. Grimes 		m->m_flags |= M_MCAST;
559df8bae1dSRodney W. Grimes 		/*
560183e1c86SGleb Smirnoff 		 * IP destination address is multicast.  Make sure "gw"
561183e1c86SGleb Smirnoff 		 * still points to the address in "ro".  (It may have been
562183e1c86SGleb Smirnoff 		 * changed to point to a gateway address, above.)
563183e1c86SGleb Smirnoff 		 */
564183e1c86SGleb Smirnoff 		gw = dst;
565183e1c86SGleb Smirnoff 		/*
566df8bae1dSRodney W. Grimes 		 * See if the caller provided any multicast options
567df8bae1dSRodney W. Grimes 		 */
568df8bae1dSRodney W. Grimes 		if (imo != NULL) {
569df8bae1dSRodney W. Grimes 			ip->ip_ttl = imo->imo_multicast_ttl;
5701c5de19aSGarrett Wollman 			if (imo->imo_multicast_vif != -1)
5711c5de19aSGarrett Wollman 				ip->ip_src.s_addr =
572bbb4330bSLuigi Rizzo 				    ip_mcast_src ?
573bbb4330bSLuigi Rizzo 				    ip_mcast_src(imo->imo_multicast_vif) :
574bbb4330bSLuigi Rizzo 				    INADDR_ANY;
575df8bae1dSRodney W. Grimes 		} else
576df8bae1dSRodney W. Grimes 			ip->ip_ttl = IP_DEFAULT_MULTICAST_TTL;
577df8bae1dSRodney W. Grimes 		/*
578df8bae1dSRodney W. Grimes 		 * Confirm that the outgoing interface supports multicast.
579df8bae1dSRodney W. Grimes 		 */
5801c5de19aSGarrett Wollman 		if ((imo == NULL) || (imo->imo_multicast_vif == -1)) {
581df8bae1dSRodney W. Grimes 			if ((ifp->if_flags & IFF_MULTICAST) == 0) {
58286425c62SRobert Watson 				IPSTAT_INC(ips_noroute);
583df8bae1dSRodney W. Grimes 				error = ENETUNREACH;
584df8bae1dSRodney W. Grimes 				goto bad;
585df8bae1dSRodney W. Grimes 			}
5861c5de19aSGarrett Wollman 		}
587df8bae1dSRodney W. Grimes 		/*
588df8bae1dSRodney W. Grimes 		 * If source address not specified yet, use address
589df8bae1dSRodney W. Grimes 		 * of outgoing interface.
590df8bae1dSRodney W. Grimes 		 */
5916ca363ebSGleb Smirnoff 		if (ip->ip_src.s_addr == INADDR_ANY)
5926ca363ebSGleb Smirnoff 			ip->ip_src = src;
593df8bae1dSRodney W. Grimes 
5948b889dbbSBruce M Simpson 		if ((imo == NULL && in_mcast_loop) ||
5958b889dbbSBruce M Simpson 		    (imo && imo->imo_multicast_loop)) {
596df8bae1dSRodney W. Grimes 			/*
5978b889dbbSBruce M Simpson 			 * Loop back multicast datagram if not expressly
5988b889dbbSBruce M Simpson 			 * forbidden to do so, even if we are not a member
5998b889dbbSBruce M Simpson 			 * of the group; ip_input() will filter it later,
6008b889dbbSBruce M Simpson 			 * thus deferring a hash lookup and mutex acquisition
6018b889dbbSBruce M Simpson 			 * at the expense of a cheap copy using m_copym().
602df8bae1dSRodney W. Grimes 			 */
603331dff07SAlexander V. Chernikov 			ip_mloopback(ifp, m, hlen);
6048b889dbbSBruce M Simpson 		} else {
605df8bae1dSRodney W. Grimes 			/*
606df8bae1dSRodney W. Grimes 			 * If we are acting as a multicast router, perform
607df8bae1dSRodney W. Grimes 			 * multicast forwarding as if the packet had just
608df8bae1dSRodney W. Grimes 			 * arrived on the interface to which we are about
609df8bae1dSRodney W. Grimes 			 * to send.  The multicast forwarding function
610df8bae1dSRodney W. Grimes 			 * recursively calls this function, using the
611df8bae1dSRodney W. Grimes 			 * IP_FORWARDING flag to prevent infinite recursion.
612df8bae1dSRodney W. Grimes 			 *
613df8bae1dSRodney W. Grimes 			 * Multicasts that are looped back by ip_mloopback(),
614df8bae1dSRodney W. Grimes 			 * above, will be forwarded by the ip_input() routine,
615df8bae1dSRodney W. Grimes 			 * if necessary.
616df8bae1dSRodney W. Grimes 			 */
617603724d3SBjoern A. Zeeb 			if (V_ip_mrouter && (flags & IP_FORWARDING) == 0) {
618f0068c4aSGarrett Wollman 				/*
619bbb4330bSLuigi Rizzo 				 * If rsvp daemon is not running, do not
620f0068c4aSGarrett Wollman 				 * set ip_moptions. This ensures that the packet
621f0068c4aSGarrett Wollman 				 * is multicast and not just sent down one link
622f0068c4aSGarrett Wollman 				 * as prescribed by rsvpd.
623f0068c4aSGarrett Wollman 				 */
624603724d3SBjoern A. Zeeb 				if (!V_rsvp_on)
625f0068c4aSGarrett Wollman 					imo = NULL;
626bbb4330bSLuigi Rizzo 				if (ip_mforward &&
627bbb4330bSLuigi Rizzo 				    ip_mforward(ip, ifp, m, imo) != 0) {
628df8bae1dSRodney W. Grimes 					m_freem(m);
629df8bae1dSRodney W. Grimes 					goto done;
630df8bae1dSRodney W. Grimes 				}
631df8bae1dSRodney W. Grimes 			}
632df8bae1dSRodney W. Grimes 		}
6335e9ae478SGarrett Wollman 
634df8bae1dSRodney W. Grimes 		/*
635df8bae1dSRodney W. Grimes 		 * Multicasts with a time-to-live of zero may be looped-
636df8bae1dSRodney W. Grimes 		 * back, above, but must not be transmitted on a network.
637df8bae1dSRodney W. Grimes 		 * Also, multicasts addressed to the loopback interface
638df8bae1dSRodney W. Grimes 		 * are not sent -- the above call to ip_mloopback() will
6398b889dbbSBruce M Simpson 		 * loop back a copy. ip_input() will drop the copy if
6408b889dbbSBruce M Simpson 		 * this host does not belong to the destination group on
6418b889dbbSBruce M Simpson 		 * the loopback interface.
642df8bae1dSRodney W. Grimes 		 */
643f5fea3ddSPaul Traina 		if (ip->ip_ttl == 0 || ifp->if_flags & IFF_LOOPBACK) {
644df8bae1dSRodney W. Grimes 			m_freem(m);
645df8bae1dSRodney W. Grimes 			goto done;
646df8bae1dSRodney W. Grimes 		}
647df8bae1dSRodney W. Grimes 
648df8bae1dSRodney W. Grimes 		goto sendit;
649df8bae1dSRodney W. Grimes 	}
6506a7c943cSAndre Oppermann 
651df8bae1dSRodney W. Grimes 	/*
6522b25acc1SLuigi Rizzo 	 * If the source address is not specified yet, use the address
653cb459254SJohn-Mark Gurney 	 * of the outoing interface.
654df8bae1dSRodney W. Grimes 	 */
6556ca363ebSGleb Smirnoff 	if (ip->ip_src.s_addr == INADDR_ANY)
6566ca363ebSGleb Smirnoff 		ip->ip_src = src;
6576a7c943cSAndre Oppermann 
658ca7a789aSMax Laier 	/*
659df8bae1dSRodney W. Grimes 	 * Look for broadcast address and
6608c3f5566SRuslan Ermilov 	 * verify user is allowed to send
661df8bae1dSRodney W. Grimes 	 * such a packet.
662df8bae1dSRodney W. Grimes 	 */
6639f9b3dc4SGarrett Wollman 	if (isbroadcast) {
664df8bae1dSRodney W. Grimes 		if ((ifp->if_flags & IFF_BROADCAST) == 0) {
665df8bae1dSRodney W. Grimes 			error = EADDRNOTAVAIL;
666df8bae1dSRodney W. Grimes 			goto bad;
667df8bae1dSRodney W. Grimes 		}
668df8bae1dSRodney W. Grimes 		if ((flags & IP_ALLOWBROADCAST) == 0) {
669df8bae1dSRodney W. Grimes 			error = EACCES;
670df8bae1dSRodney W. Grimes 			goto bad;
671df8bae1dSRodney W. Grimes 		}
672df8bae1dSRodney W. Grimes 		/* don't allow broadcast messages to be fragmented */
6738f134647SGleb Smirnoff 		if (ip_len > mtu) {
674df8bae1dSRodney W. Grimes 			error = EMSGSIZE;
675df8bae1dSRodney W. Grimes 			goto bad;
676df8bae1dSRodney W. Grimes 		}
677df8bae1dSRodney W. Grimes 		m->m_flags |= M_BCAST;
6789f9b3dc4SGarrett Wollman 	} else {
679df8bae1dSRodney W. Grimes 		m->m_flags &= ~M_BCAST;
6809f9b3dc4SGarrett Wollman 	}
681df8bae1dSRodney W. Grimes 
682f1743588SDarren Reed sendit:
683fcf59617SAndrey V. Elsukov #if defined(IPSEC) || defined(IPSEC_SUPPORT)
684fcf59617SAndrey V. Elsukov 	if (IPSEC_ENABLED(ipv4)) {
685fcf59617SAndrey V. Elsukov 		if ((error = IPSEC_OUTPUT(ipv4, m, inp)) != 0) {
686fcf59617SAndrey V. Elsukov 			if (error == EINPROGRESS)
687fcf59617SAndrey V. Elsukov 				error = 0;
6881dfcf0d2SAndre Oppermann 			goto done;
689fcf59617SAndrey V. Elsukov 		}
69033841545SHajimu UMEMOTO 	}
6911a499816SEdward Tomasz Napierala 	/*
6921a499816SEdward Tomasz Napierala 	 * Check if there was a route for this packet; return error if not.
6931a499816SEdward Tomasz Napierala 	 */
6941a499816SEdward Tomasz Napierala 	if (no_route_but_check_spd) {
6951a499816SEdward Tomasz Napierala 		IPSTAT_INC(ips_noroute);
6961a499816SEdward Tomasz Napierala 		error = EHOSTUNREACH;
6971a499816SEdward Tomasz Napierala 		goto bad;
6981a499816SEdward Tomasz Napierala 	}
6991dfcf0d2SAndre Oppermann 	/* Update variables that are affected by ipsec4_output(). */
70033841545SHajimu UMEMOTO 	ip = mtod(m, struct ip *);
70133841545SHajimu UMEMOTO 	hlen = ip->ip_hl << 2;
702b2630c29SGeorge V. Neville-Neil #endif /* IPSEC */
70333841545SHajimu UMEMOTO 
704c21fd232SAndre Oppermann 	/* Jump over all PFIL processing if hooks are not active. */
705b252313fSGleb Smirnoff 	if (PFIL_HOOKED_OUT(V_inet_pfil_head)) {
70605fc9d78SKristof Provost 		switch (ip_output_pfil(&m, ifp, flags, inp, dst, &fibnum,
70705fc9d78SKristof Provost 		    &error)) {
708d9f2a782SErmal Luçi 		case 1: /* Finished */
709c4ac87eaSDarren Reed 			goto done;
7109b932e9eSAndre Oppermann 
711d9f2a782SErmal Luçi 		case 0: /* Continue normally */
712c4ac87eaSDarren Reed 			ip = mtod(m, struct ip *);
713d9f2a782SErmal Luçi 			break;
714fed1c7e9SSøren Schmidt 
715d9f2a782SErmal Luçi 		case -1: /* Need to try again */
716d9f2a782SErmal Luçi 			/* Reset everything for a new round */
7176ca363ebSGleb Smirnoff 			if (ro != NULL) {
718*983066f0SAlexander V. Chernikov 				RO_NHFREE(ro);
7194fb3a820SAlexander V. Chernikov 				ro->ro_prepend = NULL;
7206ca363ebSGleb Smirnoff 			}
721d9f2a782SErmal Luçi 			gw = dst;
722d9f2a782SErmal Luçi 			ip = mtod(m, struct ip *);
7239b932e9eSAndre Oppermann 			goto again;
724d9f2a782SErmal Luçi 
725d9f2a782SErmal Luçi 		}
726099dd043SAndre Oppermann 	}
7272b25acc1SLuigi Rizzo 
7286c1c6ae5SRodney W. Grimes 	/* IN_LOOPBACK must not appear on the wire - RFC1122. */
7296c1c6ae5SRodney W. Grimes 	if (IN_LOOPBACK(ntohl(ip->ip_dst.s_addr)) ||
7306c1c6ae5SRodney W. Grimes 	    IN_LOOPBACK(ntohl(ip->ip_src.s_addr))) {
73151c8ec4aSRuslan Ermilov 		if ((ifp->if_flags & IFF_LOOPBACK) == 0) {
73286425c62SRobert Watson 			IPSTAT_INC(ips_badaddr);
73351c8ec4aSRuslan Ermilov 			error = EADDRNOTAVAIL;
73451c8ec4aSRuslan Ermilov 			goto bad;
73551c8ec4aSRuslan Ermilov 		}
73651c8ec4aSRuslan Ermilov 	}
73751c8ec4aSRuslan Ermilov 
738206a3274SRuslan Ermilov 	m->m_pkthdr.csum_flags |= CSUM_IP;
739078468edSGleb Smirnoff 	if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA & ~ifp->if_hwassist) {
74082334850SJohn Baldwin 		m = mb_unmapped_to_ext(m);
74182334850SJohn Baldwin 		if (m == NULL) {
74282334850SJohn Baldwin 			IPSTAT_INC(ips_odropped);
74382334850SJohn Baldwin 			error = ENOBUFS;
74482334850SJohn Baldwin 			goto bad;
74582334850SJohn Baldwin 		}
746db4f9cc7SJonathan Lemon 		in_delayed_cksum(m);
747078468edSGleb Smirnoff 		m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
74882334850SJohn Baldwin 	} else if ((ifp->if_capenable & IFCAP_NOMAP) == 0) {
74982334850SJohn Baldwin 		m = mb_unmapped_to_ext(m);
75082334850SJohn Baldwin 		if (m == NULL) {
75182334850SJohn Baldwin 			IPSTAT_INC(ips_odropped);
75282334850SJohn Baldwin 			error = ENOBUFS;
75382334850SJohn Baldwin 			goto bad;
75482334850SJohn Baldwin 		}
755db4f9cc7SJonathan Lemon 	}
7562f4afd21SRandall Stewart #ifdef SCTP
757078468edSGleb Smirnoff 	if (m->m_pkthdr.csum_flags & CSUM_SCTP & ~ifp->if_hwassist) {
75882334850SJohn Baldwin 		m = mb_unmapped_to_ext(m);
75982334850SJohn Baldwin 		if (m == NULL) {
76082334850SJohn Baldwin 			IPSTAT_INC(ips_odropped);
76182334850SJohn Baldwin 			error = ENOBUFS;
76282334850SJohn Baldwin 			goto bad;
76382334850SJohn Baldwin 		}
7641966e5b5SRandall Stewart 		sctp_delayed_cksum(m, (uint32_t)(ip->ip_hl << 2));
765078468edSGleb Smirnoff 		m->m_pkthdr.csum_flags &= ~CSUM_SCTP;
7662f4afd21SRandall Stewart 	}
7672f4afd21SRandall Stewart #endif
768db4f9cc7SJonathan Lemon 
769e7319babSPoul-Henning Kamp 	/*
770db4f9cc7SJonathan Lemon 	 * If small enough for interface, or the interface will take
771233dcce1SAndre Oppermann 	 * care of the fragmentation for us, we can just send directly.
772df8bae1dSRodney W. Grimes 	 */
77321d172a3SGleb Smirnoff 	if (ip_len <= mtu ||
774bf7dcda3SGleb Smirnoff 	    (m->m_pkthdr.csum_flags & ifp->if_hwassist & CSUM_TSO) != 0) {
775df8bae1dSRodney W. Grimes 		ip->ip_sum = 0;
776078468edSGleb Smirnoff 		if (m->m_pkthdr.csum_flags & CSUM_IP & ~ifp->if_hwassist) {
777df8bae1dSRodney W. Grimes 			ip->ip_sum = in_cksum(m, hlen);
778078468edSGleb Smirnoff 			m->m_pkthdr.csum_flags &= ~CSUM_IP;
779078468edSGleb Smirnoff 		}
7805da9f8faSJosef Karthauser 
781233dcce1SAndre Oppermann 		/*
782233dcce1SAndre Oppermann 		 * Record statistics for this interface address.
783233dcce1SAndre Oppermann 		 * With CSUM_TSO the byte/packet count will be slightly
784233dcce1SAndre Oppermann 		 * incorrect because we count the IP+TCP headers only
785233dcce1SAndre Oppermann 		 * once instead of for every generated packet.
786233dcce1SAndre Oppermann 		 */
78738c1bc35SRuslan Ermilov 		if (!(flags & IP_FORWARDING) && ia) {
788233dcce1SAndre Oppermann 			if (m->m_pkthdr.csum_flags & CSUM_TSO)
7897caf4ab7SGleb Smirnoff 				counter_u64_add(ia->ia_ifa.ifa_opackets,
7907caf4ab7SGleb Smirnoff 				    m->m_pkthdr.len / m->m_pkthdr.tso_segsz);
791233dcce1SAndre Oppermann 			else
7927caf4ab7SGleb Smirnoff 				counter_u64_add(ia->ia_ifa.ifa_opackets, 1);
7937caf4ab7SGleb Smirnoff 
7947caf4ab7SGleb Smirnoff 			counter_u64_add(ia->ia_ifa.ifa_obytes, m->m_pkthdr.len);
7955da9f8faSJosef Karthauser 		}
79653dcc544SMike Silbersack #ifdef MBUF_STRESS_TEST
7973390d476SMike Silbersack 		if (mbuf_frag_size && m->m_pkthdr.len > mbuf_frag_size)
798eb1b1807SGleb Smirnoff 			m = m_fragment(m, M_NOWAIT, mbuf_frag_size);
7999d9edc56SMike Silbersack #endif
800147f74d1SAndre Oppermann 		/*
801147f74d1SAndre Oppermann 		 * Reset layer specific mbuf flags
802147f74d1SAndre Oppermann 		 * to avoid confusing lower layers.
803147f74d1SAndre Oppermann 		 */
80486bd0491SAndre Oppermann 		m_clrprotoflags(m);
80557f60867SMark Johnston 		IP_PROBE(send, NULL, NULL, ip, ifp, ip, NULL);
80635c7bb34SRandall Stewart 		error = ip_output_send(inp, ifp, m, gw, ro,
80735c7bb34SRandall Stewart 		    (flags & IP_NO_SND_TAG_RL) ? false : true);
808df8bae1dSRodney W. Grimes 		goto done;
809df8bae1dSRodney W. Grimes 	}
8101e78ac21SJeffrey Hsu 
811233dcce1SAndre Oppermann 	/* Balk when DF bit is set or the interface didn't support TSO. */
81221d172a3SGleb Smirnoff 	if ((ip_off & IP_DF) || (m->m_pkthdr.csum_flags & CSUM_TSO)) {
813df8bae1dSRodney W. Grimes 		error = EMSGSIZE;
81486425c62SRobert Watson 		IPSTAT_INC(ips_cantfrag);
815df8bae1dSRodney W. Grimes 		goto bad;
816df8bae1dSRodney W. Grimes 	}
8171e78ac21SJeffrey Hsu 
8181e78ac21SJeffrey Hsu 	/*
8191e78ac21SJeffrey Hsu 	 * Too large for interface; fragment if possible. If successful,
8201e78ac21SJeffrey Hsu 	 * on return, m will point to a list of packets to be sent.
8211e78ac21SJeffrey Hsu 	 */
822078468edSGleb Smirnoff 	error = ip_fragment(ip, &m, mtu, ifp->if_hwassist);
8231e78ac21SJeffrey Hsu 	if (error)
824df8bae1dSRodney W. Grimes 		goto bad;
8251e78ac21SJeffrey Hsu 	for (; m; m = m0) {
826df8bae1dSRodney W. Grimes 		m0 = m->m_nextpkt;
827b375c9ecSLuigi Rizzo 		m->m_nextpkt = 0;
82807203494SDaniel C. Sobral 		if (error == 0) {
829fe937674SJosef Karthauser 			/* Record statistics for this interface address. */
83007203494SDaniel C. Sobral 			if (ia != NULL) {
8317caf4ab7SGleb Smirnoff 				counter_u64_add(ia->ia_ifa.ifa_opackets, 1);
8327caf4ab7SGleb Smirnoff 				counter_u64_add(ia->ia_ifa.ifa_obytes,
8337caf4ab7SGleb Smirnoff 				    m->m_pkthdr.len);
83407203494SDaniel C. Sobral 			}
835147f74d1SAndre Oppermann 			/*
836147f74d1SAndre Oppermann 			 * Reset layer specific mbuf flags
837147f74d1SAndre Oppermann 			 * to avoid confusing upper layers.
838147f74d1SAndre Oppermann 			 */
83986bd0491SAndre Oppermann 			m_clrprotoflags(m);
840fe937674SJosef Karthauser 
8412e77d270SAndrey V. Elsukov 			IP_PROBE(send, NULL, NULL, mtod(m, struct ip *), ifp,
8422e77d270SAndrey V. Elsukov 			    mtod(m, struct ip *), NULL);
84335c7bb34SRandall Stewart 			error = ip_output_send(inp, ifp, m, gw, ro, true);
844fe937674SJosef Karthauser 		} else
845df8bae1dSRodney W. Grimes 			m_freem(m);
846df8bae1dSRodney W. Grimes 	}
847df8bae1dSRodney W. Grimes 
848df8bae1dSRodney W. Grimes 	if (error == 0)
84986425c62SRobert Watson 		IPSTAT_INC(ips_fragmented);
8501e78ac21SJeffrey Hsu 
851df8bae1dSRodney W. Grimes done:
852df8bae1dSRodney W. Grimes 	return (error);
853df8bae1dSRodney W. Grimes  bad:
8543528d68fSBill Paul 	m_freem(m);
855df8bae1dSRodney W. Grimes 	goto done;
856df8bae1dSRodney W. Grimes }
857df8bae1dSRodney W. Grimes 
8581e78ac21SJeffrey Hsu /*
8591e78ac21SJeffrey Hsu  * Create a chain of fragments which fit the given mtu. m_frag points to the
8601e78ac21SJeffrey Hsu  * mbuf to be fragmented; on return it points to the chain with the fragments.
8611e78ac21SJeffrey Hsu  * Return 0 if no error. If error, m_frag may contain a partially built
8621e78ac21SJeffrey Hsu  * chain of fragments that should be freed by the caller.
8631e78ac21SJeffrey Hsu  *
8641e78ac21SJeffrey Hsu  * if_hwassist_flags is the hw offload capabilities (see if_data.ifi_hwassist)
8651e78ac21SJeffrey Hsu  */
8661e78ac21SJeffrey Hsu int
8671e78ac21SJeffrey Hsu ip_fragment(struct ip *ip, struct mbuf **m_frag, int mtu,
868078468edSGleb Smirnoff     u_long if_hwassist_flags)
8691e78ac21SJeffrey Hsu {
8701e78ac21SJeffrey Hsu 	int error = 0;
8711e78ac21SJeffrey Hsu 	int hlen = ip->ip_hl << 2;
8721e78ac21SJeffrey Hsu 	int len = (mtu - hlen) & ~7;	/* size of payload in each fragment */
8731e78ac21SJeffrey Hsu 	int off;
8741e78ac21SJeffrey Hsu 	struct mbuf *m0 = *m_frag;	/* the original packet		*/
8751e78ac21SJeffrey Hsu 	int firstlen;
8761e78ac21SJeffrey Hsu 	struct mbuf **mnext;
8771e78ac21SJeffrey Hsu 	int nfrags;
87821d172a3SGleb Smirnoff 	uint16_t ip_len, ip_off;
8791e78ac21SJeffrey Hsu 
88021d172a3SGleb Smirnoff 	ip_len = ntohs(ip->ip_len);
88121d172a3SGleb Smirnoff 	ip_off = ntohs(ip->ip_off);
88221d172a3SGleb Smirnoff 
88321d172a3SGleb Smirnoff 	if (ip_off & IP_DF) {	/* Fragmentation not allowed */
88486425c62SRobert Watson 		IPSTAT_INC(ips_cantfrag);
8851e78ac21SJeffrey Hsu 		return EMSGSIZE;
8861e78ac21SJeffrey Hsu 	}
8871e78ac21SJeffrey Hsu 
8881e78ac21SJeffrey Hsu 	/*
8891e78ac21SJeffrey Hsu 	 * Must be able to put at least 8 bytes per fragment.
8901e78ac21SJeffrey Hsu 	 */
8911e78ac21SJeffrey Hsu 	if (len < 8)
8921e78ac21SJeffrey Hsu 		return EMSGSIZE;
8931e78ac21SJeffrey Hsu 
8941e78ac21SJeffrey Hsu 	/*
8951e78ac21SJeffrey Hsu 	 * If the interface will not calculate checksums on
8961e78ac21SJeffrey Hsu 	 * fragmented packets, then do it here.
8971e78ac21SJeffrey Hsu 	 */
898da2299c5SAndre Oppermann 	if (m0->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
89982334850SJohn Baldwin 		m0 = mb_unmapped_to_ext(m0);
90082334850SJohn Baldwin 		if (m0 == NULL) {
90182334850SJohn Baldwin 			error = ENOBUFS;
90282334850SJohn Baldwin 			IPSTAT_INC(ips_odropped);
90382334850SJohn Baldwin 			goto done;
90482334850SJohn Baldwin 		}
9051e78ac21SJeffrey Hsu 		in_delayed_cksum(m0);
9061e78ac21SJeffrey Hsu 		m0->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
9071e78ac21SJeffrey Hsu 	}
9082f4afd21SRandall Stewart #ifdef SCTP
909da2299c5SAndre Oppermann 	if (m0->m_pkthdr.csum_flags & CSUM_SCTP) {
91082334850SJohn Baldwin 		m0 = mb_unmapped_to_ext(m0);
91182334850SJohn Baldwin 		if (m0 == NULL) {
91282334850SJohn Baldwin 			error = ENOBUFS;
91382334850SJohn Baldwin 			IPSTAT_INC(ips_odropped);
91482334850SJohn Baldwin 			goto done;
91582334850SJohn Baldwin 		}
9161966e5b5SRandall Stewart 		sctp_delayed_cksum(m0, hlen);
9172f4afd21SRandall Stewart 		m0->m_pkthdr.csum_flags &= ~CSUM_SCTP;
9182f4afd21SRandall Stewart 	}
9192f4afd21SRandall Stewart #endif
9201e78ac21SJeffrey Hsu 	if (len > PAGE_SIZE) {
9211e78ac21SJeffrey Hsu 		/*
9221e78ac21SJeffrey Hsu 		 * Fragment large datagrams such that each segment
9231e78ac21SJeffrey Hsu 		 * contains a multiple of PAGE_SIZE amount of data,
9241e78ac21SJeffrey Hsu 		 * plus headers. This enables a receiver to perform
9251e78ac21SJeffrey Hsu 		 * page-flipping zero-copy optimizations.
9261e78ac21SJeffrey Hsu 		 *
9271e78ac21SJeffrey Hsu 		 * XXX When does this help given that sender and receiver
9281e78ac21SJeffrey Hsu 		 * could have different page sizes, and also mtu could
9291e78ac21SJeffrey Hsu 		 * be less than the receiver's page size ?
9301e78ac21SJeffrey Hsu 		 */
9311e78ac21SJeffrey Hsu 		int newlen;
9321e78ac21SJeffrey Hsu 
9339c0f6aa7SHans Petter Selasky 		off = MIN(mtu, m0->m_pkthdr.len);
9341e78ac21SJeffrey Hsu 
9351e78ac21SJeffrey Hsu 		/*
9361e78ac21SJeffrey Hsu 		 * firstlen (off - hlen) must be aligned on an
9371e78ac21SJeffrey Hsu 		 * 8-byte boundary
9381e78ac21SJeffrey Hsu 		 */
9391e78ac21SJeffrey Hsu 		if (off < hlen)
9401e78ac21SJeffrey Hsu 			goto smart_frag_failure;
9411e78ac21SJeffrey Hsu 		off = ((off - hlen) & ~7) + hlen;
9421e78ac21SJeffrey Hsu 		newlen = (~PAGE_MASK) & mtu;
9431e78ac21SJeffrey Hsu 		if ((newlen + sizeof (struct ip)) > mtu) {
9441e78ac21SJeffrey Hsu 			/* we failed, go back the default */
9451e78ac21SJeffrey Hsu smart_frag_failure:
9461e78ac21SJeffrey Hsu 			newlen = len;
9471e78ac21SJeffrey Hsu 			off = hlen + len;
9481e78ac21SJeffrey Hsu 		}
9491e78ac21SJeffrey Hsu 		len = newlen;
9501e78ac21SJeffrey Hsu 
9511e78ac21SJeffrey Hsu 	} else {
9521e78ac21SJeffrey Hsu 		off = hlen + len;
9531e78ac21SJeffrey Hsu 	}
9541e78ac21SJeffrey Hsu 
9551e78ac21SJeffrey Hsu 	firstlen = off - hlen;
9561e78ac21SJeffrey Hsu 	mnext = &m0->m_nextpkt;		/* pointer to next packet */
9571e78ac21SJeffrey Hsu 
9581e78ac21SJeffrey Hsu 	/*
9591e78ac21SJeffrey Hsu 	 * Loop through length of segment after first fragment,
9601e78ac21SJeffrey Hsu 	 * make new header and copy data of each part and link onto chain.
9611e78ac21SJeffrey Hsu 	 * Here, m0 is the original packet, m is the fragment being created.
9621e78ac21SJeffrey Hsu 	 * The fragments are linked off the m_nextpkt of the original
9631e78ac21SJeffrey Hsu 	 * packet, which after processing serves as the first fragment.
9641e78ac21SJeffrey Hsu 	 */
96521d172a3SGleb Smirnoff 	for (nfrags = 1; off < ip_len; off += len, nfrags++) {
9661e78ac21SJeffrey Hsu 		struct ip *mhip;	/* ip header on the fragment */
9671e78ac21SJeffrey Hsu 		struct mbuf *m;
9681e78ac21SJeffrey Hsu 		int mhlen = sizeof (struct ip);
9691e78ac21SJeffrey Hsu 
970dc4ad05eSGleb Smirnoff 		m = m_gethdr(M_NOWAIT, MT_DATA);
9710b17fba7SAndre Oppermann 		if (m == NULL) {
9721e78ac21SJeffrey Hsu 			error = ENOBUFS;
97386425c62SRobert Watson 			IPSTAT_INC(ips_odropped);
9741e78ac21SJeffrey Hsu 			goto done;
9751e78ac21SJeffrey Hsu 		}
976c4c4346fSHans Petter Selasky 		/*
977c4c4346fSHans Petter Selasky 		 * Make sure the complete packet header gets copied
978c4c4346fSHans Petter Selasky 		 * from the originating mbuf to the newly created
979c4c4346fSHans Petter Selasky 		 * mbuf. This also ensures that existing firewall
980c4c4346fSHans Petter Selasky 		 * classification(s), VLAN tags and so on get copied
981c4c4346fSHans Petter Selasky 		 * to the resulting fragmented packet(s):
982c4c4346fSHans Petter Selasky 		 */
983c4c4346fSHans Petter Selasky 		if (m_dup_pkthdr(m, m0, M_NOWAIT) == 0) {
984c4c4346fSHans Petter Selasky 			m_free(m);
985c4c4346fSHans Petter Selasky 			error = ENOBUFS;
986c4c4346fSHans Petter Selasky 			IPSTAT_INC(ips_odropped);
987c4c4346fSHans Petter Selasky 			goto done;
988c4c4346fSHans Petter Selasky 		}
9891e78ac21SJeffrey Hsu 		/*
9901e78ac21SJeffrey Hsu 		 * In the first mbuf, leave room for the link header, then
9911e78ac21SJeffrey Hsu 		 * copy the original IP header including options. The payload
9928b889dbbSBruce M Simpson 		 * goes into an additional mbuf chain returned by m_copym().
9931e78ac21SJeffrey Hsu 		 */
9941e78ac21SJeffrey Hsu 		m->m_data += max_linkhdr;
9951e78ac21SJeffrey Hsu 		mhip = mtod(m, struct ip *);
9961e78ac21SJeffrey Hsu 		*mhip = *ip;
9971e78ac21SJeffrey Hsu 		if (hlen > sizeof (struct ip)) {
9981e78ac21SJeffrey Hsu 			mhlen = ip_optcopy(ip, mhip) + sizeof (struct ip);
9991e78ac21SJeffrey Hsu 			mhip->ip_v = IPVERSION;
10001e78ac21SJeffrey Hsu 			mhip->ip_hl = mhlen >> 2;
10011e78ac21SJeffrey Hsu 		}
10021e78ac21SJeffrey Hsu 		m->m_len = mhlen;
100321d172a3SGleb Smirnoff 		/* XXX do we need to add ip_off below ? */
100421d172a3SGleb Smirnoff 		mhip->ip_off = ((off - hlen) >> 3) + ip_off;
1005fb86dfcdSAndre Oppermann 		if (off + len >= ip_len)
100621d172a3SGleb Smirnoff 			len = ip_len - off;
1007fb86dfcdSAndre Oppermann 		else
10081e78ac21SJeffrey Hsu 			mhip->ip_off |= IP_MF;
10091e78ac21SJeffrey Hsu 		mhip->ip_len = htons((u_short)(len + mhlen));
1010eb1b1807SGleb Smirnoff 		m->m_next = m_copym(m0, off, len, M_NOWAIT);
10110b17fba7SAndre Oppermann 		if (m->m_next == NULL) {	/* copy failed */
10121e78ac21SJeffrey Hsu 			m_free(m);
10131e78ac21SJeffrey Hsu 			error = ENOBUFS;	/* ??? */
101486425c62SRobert Watson 			IPSTAT_INC(ips_odropped);
10151e78ac21SJeffrey Hsu 			goto done;
10161e78ac21SJeffrey Hsu 		}
10171e78ac21SJeffrey Hsu 		m->m_pkthdr.len = mhlen + len;
10181e78ac21SJeffrey Hsu #ifdef MAC
101930d239bcSRobert Watson 		mac_netinet_fragment(m0, m);
10201e78ac21SJeffrey Hsu #endif
10211e78ac21SJeffrey Hsu 		mhip->ip_off = htons(mhip->ip_off);
10221e78ac21SJeffrey Hsu 		mhip->ip_sum = 0;
1023078468edSGleb Smirnoff 		if (m->m_pkthdr.csum_flags & CSUM_IP & ~if_hwassist_flags) {
10241e78ac21SJeffrey Hsu 			mhip->ip_sum = in_cksum(m, mhlen);
1025078468edSGleb Smirnoff 			m->m_pkthdr.csum_flags &= ~CSUM_IP;
1026078468edSGleb Smirnoff 		}
10271e78ac21SJeffrey Hsu 		*mnext = m;
10281e78ac21SJeffrey Hsu 		mnext = &m->m_nextpkt;
10291e78ac21SJeffrey Hsu 	}
103086425c62SRobert Watson 	IPSTAT_ADD(ips_ofragments, nfrags);
10311e78ac21SJeffrey Hsu 
10321e78ac21SJeffrey Hsu 	/*
10331e78ac21SJeffrey Hsu 	 * Update first fragment by trimming what's been copied out
10341e78ac21SJeffrey Hsu 	 * and updating header.
10351e78ac21SJeffrey Hsu 	 */
103621d172a3SGleb Smirnoff 	m_adj(m0, hlen + firstlen - ip_len);
10371e78ac21SJeffrey Hsu 	m0->m_pkthdr.len = hlen + firstlen;
10381e78ac21SJeffrey Hsu 	ip->ip_len = htons((u_short)m0->m_pkthdr.len);
103921d172a3SGleb Smirnoff 	ip->ip_off = htons(ip_off | IP_MF);
10401e78ac21SJeffrey Hsu 	ip->ip_sum = 0;
1041078468edSGleb Smirnoff 	if (m0->m_pkthdr.csum_flags & CSUM_IP & ~if_hwassist_flags) {
10421e78ac21SJeffrey Hsu 		ip->ip_sum = in_cksum(m0, hlen);
1043078468edSGleb Smirnoff 		m0->m_pkthdr.csum_flags &= ~CSUM_IP;
1044078468edSGleb Smirnoff 	}
10451e78ac21SJeffrey Hsu 
10461e78ac21SJeffrey Hsu done:
10471e78ac21SJeffrey Hsu 	*m_frag = m0;
10481e78ac21SJeffrey Hsu 	return error;
10491e78ac21SJeffrey Hsu }
10501e78ac21SJeffrey Hsu 
10511c238475SJonathan Lemon void
1052db4f9cc7SJonathan Lemon in_delayed_cksum(struct mbuf *m)
1053db4f9cc7SJonathan Lemon {
1054db4f9cc7SJonathan Lemon 	struct ip *ip;
10551fdbfb90STom Jones 	struct udphdr *uh;
10561fdbfb90STom Jones 	uint16_t cklen, csum, offset;
1057db4f9cc7SJonathan Lemon 
1058db4f9cc7SJonathan Lemon 	ip = mtod(m, struct ip *);
105953be11f6SPoul-Henning Kamp 	offset = ip->ip_hl << 2 ;
10601fdbfb90STom Jones 
10611fdbfb90STom Jones 	if (m->m_pkthdr.csum_flags & CSUM_UDP) {
10621fdbfb90STom Jones 		/* if udp header is not in the first mbuf copy udplen */
1063b6e87011STom Jones 		if (offset + sizeof(struct udphdr) > m->m_len) {
1064590d0a43SAndrey V. Elsukov 			m_copydata(m, offset + offsetof(struct udphdr,
1065590d0a43SAndrey V. Elsukov 			    uh_ulen), sizeof(cklen), (caddr_t)&cklen);
1066b6e87011STom Jones 			cklen = ntohs(cklen);
1067b6e87011STom Jones 		} else {
1068590d0a43SAndrey V. Elsukov 			uh = (struct udphdr *)mtodo(m, offset);
10691fdbfb90STom Jones 			cklen = ntohs(uh->uh_ulen);
10701fdbfb90STom Jones 		}
10711fdbfb90STom Jones 		csum = in_cksum_skip(m, cklen + offset, offset);
10721fdbfb90STom Jones 		if (csum == 0)
1073206a3274SRuslan Ermilov 			csum = 0xffff;
10741fdbfb90STom Jones 	} else {
10751fdbfb90STom Jones 		cklen = ntohs(ip->ip_len);
10761fdbfb90STom Jones 		csum = in_cksum_skip(m, cklen, offset);
10771fdbfb90STom Jones 	}
1078db4f9cc7SJonathan Lemon 	offset += m->m_pkthdr.csum_data;	/* checksum offset */
1079db4f9cc7SJonathan Lemon 
1080590d0a43SAndrey V. Elsukov 	if (offset + sizeof(csum) > m->m_len)
1081590d0a43SAndrey V. Elsukov 		m_copyback(m, offset, sizeof(csum), (caddr_t)&csum);
1082590d0a43SAndrey V. Elsukov 	else
1083590d0a43SAndrey V. Elsukov 		*(u_short *)mtodo(m, offset) = csum;
1084db4f9cc7SJonathan Lemon }
1085db4f9cc7SJonathan Lemon 
1086df8bae1dSRodney W. Grimes /*
1087df8bae1dSRodney W. Grimes  * IP socket option processing.
1088df8bae1dSRodney W. Grimes  */
1089df8bae1dSRodney W. Grimes int
1090f2565d68SRobert Watson ip_ctloutput(struct socket *so, struct sockopt *sopt)
1091df8bae1dSRodney W. Grimes {
1092cfe8b629SGarrett Wollman 	struct inpcb *inp = sotoinpcb(so);
1093cfe8b629SGarrett Wollman 	int	error, optval;
1094dc847eb6SAdrian Chadd #ifdef	RSS
1095dc847eb6SAdrian Chadd 	uint32_t rss_bucket;
1096dc847eb6SAdrian Chadd 	int retval;
1097dc847eb6SAdrian Chadd #endif
1098df8bae1dSRodney W. Grimes 
1099cfe8b629SGarrett Wollman 	error = optval = 0;
1100cfe8b629SGarrett Wollman 	if (sopt->sopt_level != IPPROTO_IP) {
1101fc06cd42SMikolaj Golub 		error = EINVAL;
1102fc06cd42SMikolaj Golub 
1103fc06cd42SMikolaj Golub 		if (sopt->sopt_level == SOL_SOCKET &&
1104fc06cd42SMikolaj Golub 		    sopt->sopt_dir == SOPT_SET) {
1105fc06cd42SMikolaj Golub 			switch (sopt->sopt_name) {
1106fc06cd42SMikolaj Golub 			case SO_REUSEADDR:
1107fc06cd42SMikolaj Golub 				INP_WLOCK(inp);
1108efdf104bSMikolaj Golub 				if ((so->so_options & SO_REUSEADDR) != 0)
1109efdf104bSMikolaj Golub 					inp->inp_flags2 |= INP_REUSEADDR;
1110fc06cd42SMikolaj Golub 				else
1111efdf104bSMikolaj Golub 					inp->inp_flags2 &= ~INP_REUSEADDR;
1112fc06cd42SMikolaj Golub 				INP_WUNLOCK(inp);
1113fc06cd42SMikolaj Golub 				error = 0;
1114fc06cd42SMikolaj Golub 				break;
1115fc06cd42SMikolaj Golub 			case SO_REUSEPORT:
1116fc06cd42SMikolaj Golub 				INP_WLOCK(inp);
1117fc06cd42SMikolaj Golub 				if ((so->so_options & SO_REUSEPORT) != 0)
1118fc06cd42SMikolaj Golub 					inp->inp_flags2 |= INP_REUSEPORT;
1119fc06cd42SMikolaj Golub 				else
1120fc06cd42SMikolaj Golub 					inp->inp_flags2 &= ~INP_REUSEPORT;
1121fc06cd42SMikolaj Golub 				INP_WUNLOCK(inp);
1122fc06cd42SMikolaj Golub 				error = 0;
1123fc06cd42SMikolaj Golub 				break;
11241a43cff9SSean Bruno 			case SO_REUSEPORT_LB:
11251a43cff9SSean Bruno 				INP_WLOCK(inp);
11261a43cff9SSean Bruno 				if ((so->so_options & SO_REUSEPORT_LB) != 0)
11271a43cff9SSean Bruno 					inp->inp_flags2 |= INP_REUSEPORT_LB;
11281a43cff9SSean Bruno 				else
11291a43cff9SSean Bruno 					inp->inp_flags2 &= ~INP_REUSEPORT_LB;
11301a43cff9SSean Bruno 				INP_WUNLOCK(inp);
11311a43cff9SSean Bruno 				error = 0;
11321a43cff9SSean Bruno 				break;
1133fc06cd42SMikolaj Golub 			case SO_SETFIB:
1134fc06cd42SMikolaj Golub 				INP_WLOCK(inp);
1135fc06cd42SMikolaj Golub 				inp->inp_inc.inc_fibnum = so->so_fibnum;
1136fc06cd42SMikolaj Golub 				INP_WUNLOCK(inp);
1137fc06cd42SMikolaj Golub 				error = 0;
1138fc06cd42SMikolaj Golub 				break;
1139f3e7afe2SHans Petter Selasky 			case SO_MAX_PACING_RATE:
1140f3e7afe2SHans Petter Selasky #ifdef RATELIMIT
1141f3e7afe2SHans Petter Selasky 				INP_WLOCK(inp);
1142f3e7afe2SHans Petter Selasky 				inp->inp_flags2 |= INP_RATE_LIMIT_CHANGED;
1143f3e7afe2SHans Petter Selasky 				INP_WUNLOCK(inp);
1144f3e7afe2SHans Petter Selasky 				error = 0;
1145f3e7afe2SHans Petter Selasky #else
1146f3e7afe2SHans Petter Selasky 				error = EOPNOTSUPP;
1147f3e7afe2SHans Petter Selasky #endif
1148f3e7afe2SHans Petter Selasky 				break;
1149fc06cd42SMikolaj Golub 			default:
1150fc06cd42SMikolaj Golub 				break;
1151fc06cd42SMikolaj Golub 			}
1152fc06cd42SMikolaj Golub 		}
1153fc06cd42SMikolaj Golub 		return (error);
1154cfe8b629SGarrett Wollman 	}
1155df8bae1dSRodney W. Grimes 
1156cfe8b629SGarrett Wollman 	switch (sopt->sopt_dir) {
1157cfe8b629SGarrett Wollman 	case SOPT_SET:
1158cfe8b629SGarrett Wollman 		switch (sopt->sopt_name) {
1159df8bae1dSRodney W. Grimes 		case IP_OPTIONS:
1160df8bae1dSRodney W. Grimes #ifdef notyet
1161df8bae1dSRodney W. Grimes 		case IP_RETOPTS:
1162df8bae1dSRodney W. Grimes #endif
1163cfe8b629SGarrett Wollman 		{
1164cfe8b629SGarrett Wollman 			struct mbuf *m;
1165cfe8b629SGarrett Wollman 			if (sopt->sopt_valsize > MLEN) {
1166cfe8b629SGarrett Wollman 				error = EMSGSIZE;
1167cfe8b629SGarrett Wollman 				break;
1168cfe8b629SGarrett Wollman 			}
1169dc4ad05eSGleb Smirnoff 			m = m_get(sopt->sopt_td ? M_WAITOK : M_NOWAIT, MT_DATA);
11700b17fba7SAndre Oppermann 			if (m == NULL) {
1171cfe8b629SGarrett Wollman 				error = ENOBUFS;
1172cfe8b629SGarrett Wollman 				break;
1173cfe8b629SGarrett Wollman 			}
1174cfe8b629SGarrett Wollman 			m->m_len = sopt->sopt_valsize;
1175cfe8b629SGarrett Wollman 			error = sooptcopyin(sopt, mtod(m, char *), m->m_len,
1176cfe8b629SGarrett Wollman 					    m->m_len);
1177635354c4SMaxim Konovalov 			if (error) {
1178635354c4SMaxim Konovalov 				m_free(m);
1179635354c4SMaxim Konovalov 				break;
1180635354c4SMaxim Konovalov 			}
11818501a69cSRobert Watson 			INP_WLOCK(inp);
1182993d9505SRobert Watson 			error = ip_pcbopts(inp, sopt->sopt_name, m);
11838501a69cSRobert Watson 			INP_WUNLOCK(inp);
1184993d9505SRobert Watson 			return (error);
1185cfe8b629SGarrett Wollman 		}
1186df8bae1dSRodney W. Grimes 
1187f44270e7SPawel Jakub Dawidek 		case IP_BINDANY:
1188f44270e7SPawel Jakub Dawidek 			if (sopt->sopt_td != NULL) {
1189f44270e7SPawel Jakub Dawidek 				error = priv_check(sopt->sopt_td,
1190f44270e7SPawel Jakub Dawidek 				    PRIV_NETINET_BINDANY);
1191f44270e7SPawel Jakub Dawidek 				if (error)
1192be9347e3SAdrian Chadd 					break;
1193be9347e3SAdrian Chadd 			}
1194cef27294SAdrian Chadd 			/* FALLTHROUGH */
11950a100a6fSAdrian Chadd 		case IP_BINDMULTI:
11960a100a6fSAdrian Chadd #ifdef	RSS
11970a100a6fSAdrian Chadd 		case IP_RSS_LISTEN_BUCKET:
11980a100a6fSAdrian Chadd #endif
1199df8bae1dSRodney W. Grimes 		case IP_TOS:
1200df8bae1dSRodney W. Grimes 		case IP_TTL:
1201936cd18dSAndre Oppermann 		case IP_MINTTL:
1202df8bae1dSRodney W. Grimes 		case IP_RECVOPTS:
1203df8bae1dSRodney W. Grimes 		case IP_RECVRETOPTS:
1204dce33a45SErmal Luçi 		case IP_ORIGDSTADDR:
1205df8bae1dSRodney W. Grimes 		case IP_RECVDSTADDR:
12064957466bSMatthew N. Dodd 		case IP_RECVTTL:
120782c23ebaSBill Fenner 		case IP_RECVIF:
12088afa2304SBruce M Simpson 		case IP_ONESBCAST:
1209b2828ad2SAndre Oppermann 		case IP_DONTFRAG:
12103cca425bSMichael Tuexen 		case IP_RECVTOS:
12119d3ddf43SAdrian Chadd 		case IP_RECVFLOWID:
12129d3ddf43SAdrian Chadd #ifdef	RSS
12139d3ddf43SAdrian Chadd 		case IP_RECVRSSBUCKETID:
12149d3ddf43SAdrian Chadd #endif
1215cfe8b629SGarrett Wollman 			error = sooptcopyin(sopt, &optval, sizeof optval,
1216cfe8b629SGarrett Wollman 					    sizeof optval);
1217cfe8b629SGarrett Wollman 			if (error)
1218cfe8b629SGarrett Wollman 				break;
1219df8bae1dSRodney W. Grimes 
1220cfe8b629SGarrett Wollman 			switch (sopt->sopt_name) {
1221df8bae1dSRodney W. Grimes 			case IP_TOS:
1222ca98b82cSDavid Greenman 				inp->inp_ip_tos = optval;
1223df8bae1dSRodney W. Grimes 				break;
1224df8bae1dSRodney W. Grimes 
1225df8bae1dSRodney W. Grimes 			case IP_TTL:
1226ca98b82cSDavid Greenman 				inp->inp_ip_ttl = optval;
1227df8bae1dSRodney W. Grimes 				break;
1228936cd18dSAndre Oppermann 
1229936cd18dSAndre Oppermann 			case IP_MINTTL:
1230a603c811SRobert Watson 				if (optval >= 0 && optval <= MAXTTL)
1231936cd18dSAndre Oppermann 					inp->inp_ip_minttl = optval;
1232936cd18dSAndre Oppermann 				else
1233936cd18dSAndre Oppermann 					error = EINVAL;
1234936cd18dSAndre Oppermann 				break;
1235936cd18dSAndre Oppermann 
1236a138d217SRobert Watson #define	OPTSET(bit) do {						\
12378501a69cSRobert Watson 	INP_WLOCK(inp);							\
1238df8bae1dSRodney W. Grimes 	if (optval)							\
1239df8bae1dSRodney W. Grimes 		inp->inp_flags |= bit;					\
1240df8bae1dSRodney W. Grimes 	else								\
1241a138d217SRobert Watson 		inp->inp_flags &= ~bit;					\
12428501a69cSRobert Watson 	INP_WUNLOCK(inp);						\
1243a138d217SRobert Watson } while (0)
1244df8bae1dSRodney W. Grimes 
12450a100a6fSAdrian Chadd #define	OPTSET2(bit, val) do {						\
12460a100a6fSAdrian Chadd 	INP_WLOCK(inp);							\
12470a100a6fSAdrian Chadd 	if (val)							\
12480a100a6fSAdrian Chadd 		inp->inp_flags2 |= bit;					\
12490a100a6fSAdrian Chadd 	else								\
12500a100a6fSAdrian Chadd 		inp->inp_flags2 &= ~bit;				\
12510a100a6fSAdrian Chadd 	INP_WUNLOCK(inp);						\
12520a100a6fSAdrian Chadd } while (0)
12530a100a6fSAdrian Chadd 
1254df8bae1dSRodney W. Grimes 			case IP_RECVOPTS:
1255df8bae1dSRodney W. Grimes 				OPTSET(INP_RECVOPTS);
1256df8bae1dSRodney W. Grimes 				break;
1257df8bae1dSRodney W. Grimes 
1258df8bae1dSRodney W. Grimes 			case IP_RECVRETOPTS:
1259df8bae1dSRodney W. Grimes 				OPTSET(INP_RECVRETOPTS);
1260df8bae1dSRodney W. Grimes 				break;
1261df8bae1dSRodney W. Grimes 
1262df8bae1dSRodney W. Grimes 			case IP_RECVDSTADDR:
1263df8bae1dSRodney W. Grimes 				OPTSET(INP_RECVDSTADDR);
1264df8bae1dSRodney W. Grimes 				break;
126582c23ebaSBill Fenner 
1266dce33a45SErmal Luçi 			case IP_ORIGDSTADDR:
1267dce33a45SErmal Luçi 				OPTSET2(INP_ORIGDSTADDR, optval);
1268dce33a45SErmal Luçi 				break;
1269dce33a45SErmal Luçi 
12704957466bSMatthew N. Dodd 			case IP_RECVTTL:
12714957466bSMatthew N. Dodd 				OPTSET(INP_RECVTTL);
12724957466bSMatthew N. Dodd 				break;
12734957466bSMatthew N. Dodd 
127482c23ebaSBill Fenner 			case IP_RECVIF:
127582c23ebaSBill Fenner 				OPTSET(INP_RECVIF);
127682c23ebaSBill Fenner 				break;
12776a800098SYoshinobu Inoue 
12788afa2304SBruce M Simpson 			case IP_ONESBCAST:
12798afa2304SBruce M Simpson 				OPTSET(INP_ONESBCAST);
12808afa2304SBruce M Simpson 				break;
1281b2828ad2SAndre Oppermann 			case IP_DONTFRAG:
1282b2828ad2SAndre Oppermann 				OPTSET(INP_DONTFRAG);
1283b2828ad2SAndre Oppermann 				break;
1284f44270e7SPawel Jakub Dawidek 			case IP_BINDANY:
1285f44270e7SPawel Jakub Dawidek 				OPTSET(INP_BINDANY);
1286be9347e3SAdrian Chadd 				break;
12873cca425bSMichael Tuexen 			case IP_RECVTOS:
12883cca425bSMichael Tuexen 				OPTSET(INP_RECVTOS);
12893cca425bSMichael Tuexen 				break;
12900a100a6fSAdrian Chadd 			case IP_BINDMULTI:
12910a100a6fSAdrian Chadd 				OPTSET2(INP_BINDMULTI, optval);
12920a100a6fSAdrian Chadd 				break;
12939d3ddf43SAdrian Chadd 			case IP_RECVFLOWID:
12949d3ddf43SAdrian Chadd 				OPTSET2(INP_RECVFLOWID, optval);
12959d3ddf43SAdrian Chadd 				break;
12960a100a6fSAdrian Chadd #ifdef	RSS
12970a100a6fSAdrian Chadd 			case IP_RSS_LISTEN_BUCKET:
12980a100a6fSAdrian Chadd 				if ((optval >= 0) &&
12990a100a6fSAdrian Chadd 				    (optval < rss_getnumbuckets())) {
13000a100a6fSAdrian Chadd 					inp->inp_rss_listen_bucket = optval;
13010a100a6fSAdrian Chadd 					OPTSET2(INP_RSS_BUCKET_SET, 1);
13020a100a6fSAdrian Chadd 				} else {
13030a100a6fSAdrian Chadd 					error = EINVAL;
13040a100a6fSAdrian Chadd 				}
13050a100a6fSAdrian Chadd 				break;
13069d3ddf43SAdrian Chadd 			case IP_RECVRSSBUCKETID:
13079d3ddf43SAdrian Chadd 				OPTSET2(INP_RECVRSSBUCKETID, optval);
13089d3ddf43SAdrian Chadd 				break;
13090a100a6fSAdrian Chadd #endif
1310df8bae1dSRodney W. Grimes 			}
1311df8bae1dSRodney W. Grimes 			break;
1312df8bae1dSRodney W. Grimes #undef OPTSET
13130a100a6fSAdrian Chadd #undef OPTSET2
1314df8bae1dSRodney W. Grimes 
131571498f30SBruce M Simpson 		/*
131671498f30SBruce M Simpson 		 * Multicast socket options are processed by the in_mcast
131771498f30SBruce M Simpson 		 * module.
131871498f30SBruce M Simpson 		 */
1319df8bae1dSRodney W. Grimes 		case IP_MULTICAST_IF:
1320f0068c4aSGarrett Wollman 		case IP_MULTICAST_VIF:
1321df8bae1dSRodney W. Grimes 		case IP_MULTICAST_TTL:
1322df8bae1dSRodney W. Grimes 		case IP_MULTICAST_LOOP:
1323df8bae1dSRodney W. Grimes 		case IP_ADD_MEMBERSHIP:
1324df8bae1dSRodney W. Grimes 		case IP_DROP_MEMBERSHIP:
132571498f30SBruce M Simpson 		case IP_ADD_SOURCE_MEMBERSHIP:
132671498f30SBruce M Simpson 		case IP_DROP_SOURCE_MEMBERSHIP:
132771498f30SBruce M Simpson 		case IP_BLOCK_SOURCE:
132871498f30SBruce M Simpson 		case IP_UNBLOCK_SOURCE:
132971498f30SBruce M Simpson 		case IP_MSFILTER:
133071498f30SBruce M Simpson 		case MCAST_JOIN_GROUP:
133171498f30SBruce M Simpson 		case MCAST_LEAVE_GROUP:
133271498f30SBruce M Simpson 		case MCAST_JOIN_SOURCE_GROUP:
133371498f30SBruce M Simpson 		case MCAST_LEAVE_SOURCE_GROUP:
133471498f30SBruce M Simpson 		case MCAST_BLOCK_SOURCE:
133571498f30SBruce M Simpson 		case MCAST_UNBLOCK_SOURCE:
133671498f30SBruce M Simpson 			error = inp_setmoptions(inp, sopt);
1337df8bae1dSRodney W. Grimes 			break;
1338df8bae1dSRodney W. Grimes 
133933b3ac06SPeter Wemm 		case IP_PORTRANGE:
1340cfe8b629SGarrett Wollman 			error = sooptcopyin(sopt, &optval, sizeof optval,
1341cfe8b629SGarrett Wollman 					    sizeof optval);
1342cfe8b629SGarrett Wollman 			if (error)
1343cfe8b629SGarrett Wollman 				break;
134433b3ac06SPeter Wemm 
13458501a69cSRobert Watson 			INP_WLOCK(inp);
134633b3ac06SPeter Wemm 			switch (optval) {
134733b3ac06SPeter Wemm 			case IP_PORTRANGE_DEFAULT:
134833b3ac06SPeter Wemm 				inp->inp_flags &= ~(INP_LOWPORT);
134933b3ac06SPeter Wemm 				inp->inp_flags &= ~(INP_HIGHPORT);
135033b3ac06SPeter Wemm 				break;
135133b3ac06SPeter Wemm 
135233b3ac06SPeter Wemm 			case IP_PORTRANGE_HIGH:
135333b3ac06SPeter Wemm 				inp->inp_flags &= ~(INP_LOWPORT);
135433b3ac06SPeter Wemm 				inp->inp_flags |= INP_HIGHPORT;
135533b3ac06SPeter Wemm 				break;
135633b3ac06SPeter Wemm 
135733b3ac06SPeter Wemm 			case IP_PORTRANGE_LOW:
135833b3ac06SPeter Wemm 				inp->inp_flags &= ~(INP_HIGHPORT);
135933b3ac06SPeter Wemm 				inp->inp_flags |= INP_LOWPORT;
136033b3ac06SPeter Wemm 				break;
136133b3ac06SPeter Wemm 
136233b3ac06SPeter Wemm 			default:
136333b3ac06SPeter Wemm 				error = EINVAL;
136433b3ac06SPeter Wemm 				break;
136533b3ac06SPeter Wemm 			}
13668501a69cSRobert Watson 			INP_WUNLOCK(inp);
1367ce8c72b1SPeter Wemm 			break;
136833b3ac06SPeter Wemm 
1369fcf59617SAndrey V. Elsukov #if defined(IPSEC) || defined(IPSEC_SUPPORT)
13706a800098SYoshinobu Inoue 		case IP_IPSEC_POLICY:
1371fcf59617SAndrey V. Elsukov 			if (IPSEC_ENABLED(ipv4)) {
1372fcf59617SAndrey V. Elsukov 				error = IPSEC_PCBCTL(ipv4, inp, sopt);
13736a800098SYoshinobu Inoue 				break;
13746a800098SYoshinobu Inoue 			}
1375fcf59617SAndrey V. Elsukov 			/* FALLTHROUGH */
1376b2630c29SGeorge V. Neville-Neil #endif /* IPSEC */
13776a800098SYoshinobu Inoue 
1378df8bae1dSRodney W. Grimes 		default:
1379df8bae1dSRodney W. Grimes 			error = ENOPROTOOPT;
1380df8bae1dSRodney W. Grimes 			break;
1381df8bae1dSRodney W. Grimes 		}
1382df8bae1dSRodney W. Grimes 		break;
1383df8bae1dSRodney W. Grimes 
1384cfe8b629SGarrett Wollman 	case SOPT_GET:
1385cfe8b629SGarrett Wollman 		switch (sopt->sopt_name) {
1386df8bae1dSRodney W. Grimes 		case IP_OPTIONS:
1387df8bae1dSRodney W. Grimes 		case IP_RETOPTS:
1388e5e3e746SMatt Macy 			INP_RLOCK(inp);
1389e5e3e746SMatt Macy 			if (inp->inp_options) {
1390e5e3e746SMatt Macy 				struct mbuf *options;
1391e5e3e746SMatt Macy 
139210731c54SMichael Tuexen 				options = m_copym(inp->inp_options, 0,
139310731c54SMichael Tuexen 				    M_COPYALL, M_NOWAIT);
1394e5e3e746SMatt Macy 				INP_RUNLOCK(inp);
1395e5e3e746SMatt Macy 				if (options != NULL) {
1396cfe8b629SGarrett Wollman 					error = sooptcopyout(sopt,
1397e5e3e746SMatt Macy 							     mtod(options, char *),
1398e5e3e746SMatt Macy 							     options->m_len);
1399e5e3e746SMatt Macy 					m_freem(options);
1400e5e3e746SMatt Macy 				} else
1401e5e3e746SMatt Macy 					error = ENOMEM;
1402e5e3e746SMatt Macy 			} else {
1403e5e3e746SMatt Macy 				INP_RUNLOCK(inp);
1404cfe8b629SGarrett Wollman 				sopt->sopt_valsize = 0;
1405e5e3e746SMatt Macy 			}
1406df8bae1dSRodney W. Grimes 			break;
1407df8bae1dSRodney W. Grimes 
1408df8bae1dSRodney W. Grimes 		case IP_TOS:
1409df8bae1dSRodney W. Grimes 		case IP_TTL:
1410936cd18dSAndre Oppermann 		case IP_MINTTL:
1411df8bae1dSRodney W. Grimes 		case IP_RECVOPTS:
1412df8bae1dSRodney W. Grimes 		case IP_RECVRETOPTS:
1413dce33a45SErmal Luçi 		case IP_ORIGDSTADDR:
1414df8bae1dSRodney W. Grimes 		case IP_RECVDSTADDR:
14154957466bSMatthew N. Dodd 		case IP_RECVTTL:
141682c23ebaSBill Fenner 		case IP_RECVIF:
1417cfe8b629SGarrett Wollman 		case IP_PORTRANGE:
14188afa2304SBruce M Simpson 		case IP_ONESBCAST:
1419b2828ad2SAndre Oppermann 		case IP_DONTFRAG:
14205f6bf451SAttilio Rao 		case IP_BINDANY:
14213cca425bSMichael Tuexen 		case IP_RECVTOS:
14220a100a6fSAdrian Chadd 		case IP_BINDMULTI:
14239c423972SAdrian Chadd 		case IP_FLOWID:
14249c423972SAdrian Chadd 		case IP_FLOWTYPE:
14259d3ddf43SAdrian Chadd 		case IP_RECVFLOWID:
14260a100a6fSAdrian Chadd #ifdef	RSS
14270a100a6fSAdrian Chadd 		case IP_RSSBUCKETID:
14289d3ddf43SAdrian Chadd 		case IP_RECVRSSBUCKETID:
14290a100a6fSAdrian Chadd #endif
1430cfe8b629SGarrett Wollman 			switch (sopt->sopt_name) {
1431df8bae1dSRodney W. Grimes 
1432df8bae1dSRodney W. Grimes 			case IP_TOS:
1433ca98b82cSDavid Greenman 				optval = inp->inp_ip_tos;
1434df8bae1dSRodney W. Grimes 				break;
1435df8bae1dSRodney W. Grimes 
1436df8bae1dSRodney W. Grimes 			case IP_TTL:
1437ca98b82cSDavid Greenman 				optval = inp->inp_ip_ttl;
1438df8bae1dSRodney W. Grimes 				break;
1439df8bae1dSRodney W. Grimes 
1440936cd18dSAndre Oppermann 			case IP_MINTTL:
1441936cd18dSAndre Oppermann 				optval = inp->inp_ip_minttl;
1442936cd18dSAndre Oppermann 				break;
1443936cd18dSAndre Oppermann 
1444df8bae1dSRodney W. Grimes #define	OPTBIT(bit)	(inp->inp_flags & bit ? 1 : 0)
14450a100a6fSAdrian Chadd #define	OPTBIT2(bit)	(inp->inp_flags2 & bit ? 1 : 0)
1446df8bae1dSRodney W. Grimes 
1447df8bae1dSRodney W. Grimes 			case IP_RECVOPTS:
1448df8bae1dSRodney W. Grimes 				optval = OPTBIT(INP_RECVOPTS);
1449df8bae1dSRodney W. Grimes 				break;
1450df8bae1dSRodney W. Grimes 
1451df8bae1dSRodney W. Grimes 			case IP_RECVRETOPTS:
1452df8bae1dSRodney W. Grimes 				optval = OPTBIT(INP_RECVRETOPTS);
1453df8bae1dSRodney W. Grimes 				break;
1454df8bae1dSRodney W. Grimes 
1455df8bae1dSRodney W. Grimes 			case IP_RECVDSTADDR:
1456df8bae1dSRodney W. Grimes 				optval = OPTBIT(INP_RECVDSTADDR);
1457df8bae1dSRodney W. Grimes 				break;
145882c23ebaSBill Fenner 
1459dce33a45SErmal Luçi 			case IP_ORIGDSTADDR:
1460dce33a45SErmal Luçi 				optval = OPTBIT2(INP_ORIGDSTADDR);
1461dce33a45SErmal Luçi 				break;
1462dce33a45SErmal Luçi 
14634957466bSMatthew N. Dodd 			case IP_RECVTTL:
14644957466bSMatthew N. Dodd 				optval = OPTBIT(INP_RECVTTL);
14654957466bSMatthew N. Dodd 				break;
14664957466bSMatthew N. Dodd 
146782c23ebaSBill Fenner 			case IP_RECVIF:
146882c23ebaSBill Fenner 				optval = OPTBIT(INP_RECVIF);
146982c23ebaSBill Fenner 				break;
1470cfe8b629SGarrett Wollman 
1471cfe8b629SGarrett Wollman 			case IP_PORTRANGE:
1472cfe8b629SGarrett Wollman 				if (inp->inp_flags & INP_HIGHPORT)
1473cfe8b629SGarrett Wollman 					optval = IP_PORTRANGE_HIGH;
1474cfe8b629SGarrett Wollman 				else if (inp->inp_flags & INP_LOWPORT)
1475cfe8b629SGarrett Wollman 					optval = IP_PORTRANGE_LOW;
1476cfe8b629SGarrett Wollman 				else
1477cfe8b629SGarrett Wollman 					optval = 0;
1478cfe8b629SGarrett Wollman 				break;
14796a800098SYoshinobu Inoue 
14808afa2304SBruce M Simpson 			case IP_ONESBCAST:
14818afa2304SBruce M Simpson 				optval = OPTBIT(INP_ONESBCAST);
14828afa2304SBruce M Simpson 				break;
1483b2828ad2SAndre Oppermann 			case IP_DONTFRAG:
1484b2828ad2SAndre Oppermann 				optval = OPTBIT(INP_DONTFRAG);
1485b2828ad2SAndre Oppermann 				break;
14865f6bf451SAttilio Rao 			case IP_BINDANY:
14875f6bf451SAttilio Rao 				optval = OPTBIT(INP_BINDANY);
14885f6bf451SAttilio Rao 				break;
14893cca425bSMichael Tuexen 			case IP_RECVTOS:
14903cca425bSMichael Tuexen 				optval = OPTBIT(INP_RECVTOS);
14913cca425bSMichael Tuexen 				break;
14929c423972SAdrian Chadd 			case IP_FLOWID:
14939c423972SAdrian Chadd 				optval = inp->inp_flowid;
14949c423972SAdrian Chadd 				break;
14959c423972SAdrian Chadd 			case IP_FLOWTYPE:
14969c423972SAdrian Chadd 				optval = inp->inp_flowtype;
14979c423972SAdrian Chadd 				break;
14989d3ddf43SAdrian Chadd 			case IP_RECVFLOWID:
14999d3ddf43SAdrian Chadd 				optval = OPTBIT2(INP_RECVFLOWID);
15009d3ddf43SAdrian Chadd 				break;
15019c423972SAdrian Chadd #ifdef	RSS
15027847796aSAdrian Chadd 			case IP_RSSBUCKETID:
15037847796aSAdrian Chadd 				retval = rss_hash2bucket(inp->inp_flowid,
15047847796aSAdrian Chadd 				    inp->inp_flowtype,
15057847796aSAdrian Chadd 				    &rss_bucket);
15067847796aSAdrian Chadd 				if (retval == 0)
15077847796aSAdrian Chadd 					optval = rss_bucket;
15087847796aSAdrian Chadd 				else
15097847796aSAdrian Chadd 					error = EINVAL;
15109c423972SAdrian Chadd 				break;
15119d3ddf43SAdrian Chadd 			case IP_RECVRSSBUCKETID:
15129d3ddf43SAdrian Chadd 				optval = OPTBIT2(INP_RECVRSSBUCKETID);
15139d3ddf43SAdrian Chadd 				break;
15149c423972SAdrian Chadd #endif
15150a100a6fSAdrian Chadd 			case IP_BINDMULTI:
15160a100a6fSAdrian Chadd 				optval = OPTBIT2(INP_BINDMULTI);
15170a100a6fSAdrian Chadd 				break;
1518df8bae1dSRodney W. Grimes 			}
1519cfe8b629SGarrett Wollman 			error = sooptcopyout(sopt, &optval, sizeof optval);
1520df8bae1dSRodney W. Grimes 			break;
1521df8bae1dSRodney W. Grimes 
152271498f30SBruce M Simpson 		/*
152371498f30SBruce M Simpson 		 * Multicast socket options are processed by the in_mcast
152471498f30SBruce M Simpson 		 * module.
152571498f30SBruce M Simpson 		 */
1526df8bae1dSRodney W. Grimes 		case IP_MULTICAST_IF:
1527f0068c4aSGarrett Wollman 		case IP_MULTICAST_VIF:
1528df8bae1dSRodney W. Grimes 		case IP_MULTICAST_TTL:
1529df8bae1dSRodney W. Grimes 		case IP_MULTICAST_LOOP:
153071498f30SBruce M Simpson 		case IP_MSFILTER:
153171498f30SBruce M Simpson 			error = inp_getmoptions(inp, sopt);
153233b3ac06SPeter Wemm 			break;
153333b3ac06SPeter Wemm 
1534fcf59617SAndrey V. Elsukov #if defined(IPSEC) || defined(IPSEC_SUPPORT)
15356a800098SYoshinobu Inoue 		case IP_IPSEC_POLICY:
1536fcf59617SAndrey V. Elsukov 			if (IPSEC_ENABLED(ipv4)) {
1537fcf59617SAndrey V. Elsukov 				error = IPSEC_PCBCTL(ipv4, inp, sopt);
15386a800098SYoshinobu Inoue 				break;
15396a800098SYoshinobu Inoue 			}
1540fcf59617SAndrey V. Elsukov 			/* FALLTHROUGH */
1541b2630c29SGeorge V. Neville-Neil #endif /* IPSEC */
15426a800098SYoshinobu Inoue 
1543df8bae1dSRodney W. Grimes 		default:
1544df8bae1dSRodney W. Grimes 			error = ENOPROTOOPT;
1545df8bae1dSRodney W. Grimes 			break;
1546df8bae1dSRodney W. Grimes 		}
1547df8bae1dSRodney W. Grimes 		break;
1548df8bae1dSRodney W. Grimes 	}
1549df8bae1dSRodney W. Grimes 	return (error);
1550df8bae1dSRodney W. Grimes }
1551df8bae1dSRodney W. Grimes 
1552df8bae1dSRodney W. Grimes /*
1553df8bae1dSRodney W. Grimes  * Routine called from ip_output() to loop back a copy of an IP multicast
1554df8bae1dSRodney W. Grimes  * packet to the input queue of a specified interface.  Note that this
1555df8bae1dSRodney W. Grimes  * calls the output routine of the loopback "driver", but with an interface
1556f5fea3ddSPaul Traina  * pointer that might NOT be a loopback interface -- evil, but easier than
1557f5fea3ddSPaul Traina  * replicating that code here.
1558df8bae1dSRodney W. Grimes  */
1559df8bae1dSRodney W. Grimes static void
1560331dff07SAlexander V. Chernikov ip_mloopback(struct ifnet *ifp, const struct mbuf *m, int hlen)
1561df8bae1dSRodney W. Grimes {
1562331dff07SAlexander V. Chernikov 	struct ip *ip;
1563df8bae1dSRodney W. Grimes 	struct mbuf *copym;
1564df8bae1dSRodney W. Grimes 
1565e4762f75SGeorge V. Neville-Neil 	/*
1566e4762f75SGeorge V. Neville-Neil 	 * Make a deep copy of the packet because we're going to
1567e4762f75SGeorge V. Neville-Neil 	 * modify the pack in order to generate checksums.
1568e4762f75SGeorge V. Neville-Neil 	 */
1569eb1b1807SGleb Smirnoff 	copym = m_dup(m, M_NOWAIT);
1570f0cace5dSRobert Watson 	if (copym != NULL && (!M_WRITABLE(copym) || copym->m_len < hlen))
157186b1d6d2SBill Fenner 		copym = m_pullup(copym, hlen);
1572df8bae1dSRodney W. Grimes 	if (copym != NULL) {
1573390cdc6aSRuslan Ermilov 		/* If needed, compute the checksum and mark it as valid. */
1574390cdc6aSRuslan Ermilov 		if (copym->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
1575390cdc6aSRuslan Ermilov 			in_delayed_cksum(copym);
1576390cdc6aSRuslan Ermilov 			copym->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
1577390cdc6aSRuslan Ermilov 			copym->m_pkthdr.csum_flags |=
1578390cdc6aSRuslan Ermilov 			    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
1579390cdc6aSRuslan Ermilov 			copym->m_pkthdr.csum_data = 0xffff;
1580390cdc6aSRuslan Ermilov 		}
1581df8bae1dSRodney W. Grimes 		/*
1582df8bae1dSRodney W. Grimes 		 * We don't bother to fragment if the IP length is greater
1583df8bae1dSRodney W. Grimes 		 * than the interface's MTU.  Can this possibly matter?
1584df8bae1dSRodney W. Grimes 		 */
15858f134647SGleb Smirnoff 		ip = mtod(copym, struct ip *);
1586df8bae1dSRodney W. Grimes 		ip->ip_sum = 0;
158786b1d6d2SBill Fenner 		ip->ip_sum = in_cksum(copym, hlen);
1588331dff07SAlexander V. Chernikov 		if_simloop(ifp, copym, AF_INET, 0);
1589df8bae1dSRodney W. Grimes 	}
1590df8bae1dSRodney W. Grimes }
1591