xref: /freebsd/sys/netinet/ip_output.c (revision 57f6086735175ec16d6ba1b51128a7ae2dadd373)
1c398230bSWarner Losh /*-
2df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 1986, 1988, 1990, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
6df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
7df8bae1dSRodney W. Grimes  * are met:
8df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
9df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
10df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
12df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
13df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
14df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
15df8bae1dSRodney W. Grimes  *    without specific prior written permission.
16df8bae1dSRodney W. Grimes  *
17df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
28df8bae1dSRodney W. Grimes  *
29df8bae1dSRodney W. Grimes  *	@(#)ip_output.c	8.3 (Berkeley) 1/21/94
30df8bae1dSRodney W. Grimes  */
31df8bae1dSRodney W. Grimes 
324b421e2dSMike Silbersack #include <sys/cdefs.h>
334b421e2dSMike Silbersack __FBSDID("$FreeBSD$");
344b421e2dSMike Silbersack 
351f7e052cSJulian Elischer #include "opt_ipfw.h"
366a800098SYoshinobu Inoue #include "opt_ipsec.h"
37*57f60867SMark Johnston #include "opt_kdtrace.h"
3853dcc544SMike Silbersack #include "opt_mbuf_stress_test.h"
39e440aed9SQing Li #include "opt_mpath.h"
40*57f60867SMark Johnston #include "opt_route.h"
412f4afd21SRandall Stewart #include "opt_sctp.h"
42fbd1372aSJoerg Wunsch 
43df8bae1dSRodney W. Grimes #include <sys/param.h>
4426f9a767SRodney W. Grimes #include <sys/systm.h>
45f0f6d643SLuigi Rizzo #include <sys/kernel.h>
46df8bae1dSRodney W. Grimes #include <sys/malloc.h>
47df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
48acd3428bSRobert Watson #include <sys/priv.h>
49c26fe973SBjoern A. Zeeb #include <sys/proc.h>
50df8bae1dSRodney W. Grimes #include <sys/protosw.h>
51*57f60867SMark Johnston #include <sys/sdt.h>
52df8bae1dSRodney W. Grimes #include <sys/socket.h>
53df8bae1dSRodney W. Grimes #include <sys/socketvar.h>
549d9edc56SMike Silbersack #include <sys/sysctl.h>
55c26fe973SBjoern A. Zeeb #include <sys/ucred.h>
56df8bae1dSRodney W. Grimes 
57df8bae1dSRodney W. Grimes #include <net/if.h>
583ef5e21dSQing Li #include <net/if_llatbl.h>
599b932e9eSAndre Oppermann #include <net/netisr.h>
60c21fd232SAndre Oppermann #include <net/pfil.h>
61df8bae1dSRodney W. Grimes #include <net/route.h>
6265111ec7SKip Macy #include <net/flowtable.h>
63e440aed9SQing Li #ifdef RADIX_MPATH
64e440aed9SQing Li #include <net/radix_mpath.h>
65e440aed9SQing Li #endif
664b79449eSBjoern A. Zeeb #include <net/vnet.h>
67df8bae1dSRodney W. Grimes 
68df8bae1dSRodney W. Grimes #include <netinet/in.h>
69*57f60867SMark Johnston #include <netinet/in_kdtrace.h>
70df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
71df8bae1dSRodney W. Grimes #include <netinet/ip.h>
72df8bae1dSRodney W. Grimes #include <netinet/in_pcb.h>
73df8bae1dSRodney W. Grimes #include <netinet/in_var.h>
74df8bae1dSRodney W. Grimes #include <netinet/ip_var.h>
75ef39adf0SAndre Oppermann #include <netinet/ip_options.h>
762f4afd21SRandall Stewart #ifdef SCTP
772f4afd21SRandall Stewart #include <netinet/sctp.h>
782f4afd21SRandall Stewart #include <netinet/sctp_crc32.h>
792f4afd21SRandall Stewart #endif
80df8bae1dSRodney W. Grimes 
81b2630c29SGeorge V. Neville-Neil #ifdef IPSEC
822cb64cb2SGeorge V. Neville-Neil #include <netinet/ip_ipsec.h>
831dfcf0d2SAndre Oppermann #include <netipsec/ipsec.h>
84b2630c29SGeorge V. Neville-Neil #endif /* IPSEC*/
856a800098SYoshinobu Inoue 
861dfcf0d2SAndre Oppermann #include <machine/in_cksum.h>
871dfcf0d2SAndre Oppermann 
88aed55708SRobert Watson #include <security/mac/mac_framework.h>
89aed55708SRobert Watson 
90eddfbb76SRobert Watson VNET_DEFINE(u_short, ip_id);
91f23b4c91SGarrett Wollman 
9253dcc544SMike Silbersack #ifdef MBUF_STRESS_TEST
9305b9d121SBjoern A. Zeeb static int mbuf_frag_size = 0;
949d9edc56SMike Silbersack SYSCTL_INT(_net_inet_ip, OID_AUTO, mbuf_frag_size, CTLFLAG_RW,
959d9edc56SMike Silbersack 	&mbuf_frag_size, 0, "Fragment outgoing mbufs to this size");
969d9edc56SMike Silbersack #endif
979d9edc56SMike Silbersack 
98df8bae1dSRodney W. Grimes static void	ip_mloopback
994d77a549SAlfred Perlstein 	(struct ifnet *, struct mbuf *, struct sockaddr_in *, int);
100afed1b49SDarren Reed 
101afed1b49SDarren Reed 
1028b889dbbSBruce M Simpson extern int in_mcast_loop;
10393e0e116SJulian Elischer extern	struct protosw inetsw[];
10493e0e116SJulian Elischer 
105df8bae1dSRodney W. Grimes /*
106df8bae1dSRodney W. Grimes  * IP output.  The packet in mbuf chain m contains a skeletal IP
107df8bae1dSRodney W. Grimes  * header (with len, off, ttl, proto, tos, src, dst).
108df8bae1dSRodney W. Grimes  * The mbuf chain containing the packet will be freed.
109df8bae1dSRodney W. Grimes  * The mbuf opt, if present, will not be freed.
110bf984051SGleb Smirnoff  * If route ro is present and has ro_rt initialized, route lookup would be
111bf984051SGleb Smirnoff  * skipped and ro->ro_rt would be used. If ro is present but ro->ro_rt is NULL,
112bf984051SGleb Smirnoff  * then result of route lookup is stored in ro->ro_rt.
113bf984051SGleb Smirnoff  *
1143de758d3SRobert Watson  * In the IP forwarding case, the packet will arrive with options already
1153de758d3SRobert Watson  * inserted, so must have a NULL opt pointer.
116df8bae1dSRodney W. Grimes  */
117df8bae1dSRodney W. Grimes int
118f2565d68SRobert Watson ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro, int flags,
119f2565d68SRobert Watson     struct ip_moptions *imo, struct inpcb *inp)
120df8bae1dSRodney W. Grimes {
1211e78ac21SJeffrey Hsu 	struct ip *ip;
122fc74d005SBjoern A. Zeeb 	struct ifnet *ifp = NULL;	/* keep compiler happy */
123ac9d7e26SMax Laier 	struct mbuf *m0;
12423bf9953SPoul-Henning Kamp 	int hlen = sizeof (struct ip);
1253ae2ad08SJohn-Mark Gurney 	int mtu;
126ca8b83b0SLuigi Rizzo 	int n;	/* scratchpad */
127ca8b83b0SLuigi Rizzo 	int error = 0;
128ca8b83b0SLuigi Rizzo 	struct sockaddr_in *dst;
1294c7a6059SGleb Smirnoff 	const struct sockaddr_in *gw;
1303c73180fSGleb Smirnoff 	struct in_ifaddr *ia;
13121d172a3SGleb Smirnoff 	int isbroadcast;
132078468edSGleb Smirnoff 	uint16_t ip_len, ip_off;
133e3f406b3SRuslan Ermilov 	struct route iproute;
134ec396e61SLuigi Rizzo 	struct rtentry *rte;	/* cache for ro->ro_rt */
1359b932e9eSAndre Oppermann 	struct in_addr odst;
1369b932e9eSAndre Oppermann 	struct m_tag *fwd_tag = NULL;
1371a499816SEdward Tomasz Napierala #ifdef IPSEC
1381a499816SEdward Tomasz Napierala 	int no_route_but_check_spd = 0;
1391a499816SEdward Tomasz Napierala #endif
140ac9d7e26SMax Laier 	M_ASSERTPKTHDR(m);
14136e8826fSMax Laier 
142bc97ba51SJulian Elischer 	if (inp != NULL) {
143baa45840SRobert Watson 		INP_LOCK_ASSERT(inp);
14462e1ba83SRobert Watson 		M_SETFIB(m, inp->inp_inc.inc_fibnum);
14580cb9f21SKip Macy 		if (inp->inp_flags & (INP_HW_FLOWID|INP_SW_FLOWID)) {
14680cb9f21SKip Macy 			m->m_pkthdr.flowid = inp->inp_flowid;
14780cb9f21SKip Macy 			m->m_flags |= M_FLOWID;
14880cb9f21SKip Macy 		}
149bc97ba51SJulian Elischer 	}
15062e1ba83SRobert Watson 
15162e1ba83SRobert Watson 	if (ro == NULL) {
15262e1ba83SRobert Watson 		ro = &iproute;
15362e1ba83SRobert Watson 		bzero(ro, sizeof (*ro));
154bf984051SGleb Smirnoff 	}
15562e1ba83SRobert Watson 
15653be8fcaSBjoern A. Zeeb #ifdef FLOWTABLE
157bf984051SGleb Smirnoff 	if (ro->ro_rt == NULL) {
158d4121a02SKip Macy 		struct flentry *fle;
159d4121a02SKip Macy 
16062e1ba83SRobert Watson 		/*
16162e1ba83SRobert Watson 		 * The flow table returns route entries valid for up to 30
16262e1ba83SRobert Watson 		 * seconds; we rely on the remainder of ip_output() taking no
16362e1ba83SRobert Watson 		 * longer than that long for the stability of ro_rt. The
16462e1ba83SRobert Watson 		 * flow ID assignment must have happened before this point.
16562e1ba83SRobert Watson 		 */
166bf984051SGleb Smirnoff 		fle = flowtable_lookup_mbuf(V_ip_ft, m, AF_INET);
167bf984051SGleb Smirnoff 		if (fle != NULL)
168d4121a02SKip Macy 			flow_to_route(fle, ro);
169d4121a02SKip Macy 	}
17053be8fcaSBjoern A. Zeeb #endif
1712b25acc1SLuigi Rizzo 
172df8bae1dSRodney W. Grimes 	if (opt) {
173ca8b83b0SLuigi Rizzo 		int len = 0;
174df8bae1dSRodney W. Grimes 		m = ip_insertoptions(m, opt, &len);
175cb7641e8SMaxim Konovalov 		if (len != 0)
176ca8b83b0SLuigi Rizzo 			hlen = len; /* ip->ip_hl is updated above */
177df8bae1dSRodney W. Grimes 	}
178df8bae1dSRodney W. Grimes 	ip = mtod(m, struct ip *);
1798f134647SGleb Smirnoff 	ip_len = ntohs(ip->ip_len);
1808f134647SGleb Smirnoff 	ip_off = ntohs(ip->ip_off);
1813efc3014SJulian Elischer 
182df8bae1dSRodney W. Grimes 	/*
1836e49b1feSGarrett Wollman 	 * Fill in IP header.  If we are not allowing fragmentation,
184e0f630eaSAndre Oppermann 	 * then the ip_id field is meaningless, but we don't set it
185e0f630eaSAndre Oppermann 	 * to zero.  Doing so causes various problems when devices along
186e0f630eaSAndre Oppermann 	 * the path (routers, load balancers, firewalls, etc.) illegally
187e0f630eaSAndre Oppermann 	 * disable DF on our packet.  Note that a 16-bit counter
1886e49b1feSGarrett Wollman 	 * will wrap around in less than 10 seconds at 100 Mbit/s on a
1896e49b1feSGarrett Wollman 	 * medium with MTU 1500.  See Steven M. Bellovin, "A Technique
1906e49b1feSGarrett Wollman 	 * for Counting NATted Hosts", Proc. IMW'02, available at
1914d09f5a0SGleb Smirnoff 	 * <http://www.cs.columbia.edu/~smb/papers/fnat.pdf>.
192df8bae1dSRodney W. Grimes 	 */
193df8bae1dSRodney W. Grimes 	if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) {
19453be11f6SPoul-Henning Kamp 		ip->ip_v = IPVERSION;
19553be11f6SPoul-Henning Kamp 		ip->ip_hl = hlen >> 2;
1961f44b0a1SDavid Malone 		ip->ip_id = ip_newid();
19786425c62SRobert Watson 		IPSTAT_INC(ips_localout);
198df8bae1dSRodney W. Grimes 	} else {
199ca8b83b0SLuigi Rizzo 		/* Header already set, fetch hlen from there */
20053be11f6SPoul-Henning Kamp 		hlen = ip->ip_hl << 2;
201df8bae1dSRodney W. Grimes 	}
2029c9137eaSGarrett Wollman 
2034c7a6059SGleb Smirnoff 	gw = dst = (struct sockaddr_in *)&ro->ro_dst;
2049b932e9eSAndre Oppermann again:
2053c73180fSGleb Smirnoff 	ia = NULL;
206df8bae1dSRodney W. Grimes 	/*
207df8bae1dSRodney W. Grimes 	 * If there is a cached route,
208df8bae1dSRodney W. Grimes 	 * check that it is to the same destination
209df8bae1dSRodney W. Grimes 	 * and is still up.  If not, free it and try again.
210a4a6e773SHajimu UMEMOTO 	 * The address family should also be checked in case of sharing the
211a4a6e773SHajimu UMEMOTO 	 * cache with IPv6.
212df8bae1dSRodney W. Grimes 	 */
213ec396e61SLuigi Rizzo 	rte = ro->ro_rt;
214ec396e61SLuigi Rizzo 	if (rte && ((rte->rt_flags & RTF_UP) == 0 ||
215c7ea0aa6SQing Li 		    rte->rt_ifp == NULL ||
216c7ea0aa6SQing Li 		    !RT_LINK_IS_UP(rte->rt_ifp) ||
217a4a6e773SHajimu UMEMOTO 			  dst->sin_family != AF_INET ||
2189b932e9eSAndre Oppermann 			  dst->sin_addr.s_addr != ip->ip_dst.s_addr)) {
219bf984051SGleb Smirnoff 		RO_RTFREE(ro);
220bf984051SGleb Smirnoff 		ro->ro_lle = NULL;
221bf984051SGleb Smirnoff 		rte = NULL;
222df8bae1dSRodney W. Grimes 	}
223ec396e61SLuigi Rizzo 	if (rte == NULL && fwd_tag == NULL) {
224a4a6e773SHajimu UMEMOTO 		bzero(dst, sizeof(*dst));
225df8bae1dSRodney W. Grimes 		dst->sin_family = AF_INET;
226df8bae1dSRodney W. Grimes 		dst->sin_len = sizeof(*dst);
2279b932e9eSAndre Oppermann 		dst->sin_addr = ip->ip_dst;
228df8bae1dSRodney W. Grimes 	}
229df8bae1dSRodney W. Grimes 	/*
230a3fd02d8SBruce M Simpson 	 * If routing to interface only, short circuit routing lookup.
231a3fd02d8SBruce M Simpson 	 * The use of an all-ones broadcast address implies this; an
232a3fd02d8SBruce M Simpson 	 * interface is specified by the broadcast address of an interface,
233a3fd02d8SBruce M Simpson 	 * or the destination address of a ptp interface.
234df8bae1dSRodney W. Grimes 	 */
235a3fd02d8SBruce M Simpson 	if (flags & IP_SENDONES) {
236a3fd02d8SBruce M Simpson 		if ((ia = ifatoia(ifa_ifwithbroadaddr(sintosa(dst)))) == NULL &&
237a3fd02d8SBruce M Simpson 		    (ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst)))) == NULL) {
23886425c62SRobert Watson 			IPSTAT_INC(ips_noroute);
239a3fd02d8SBruce M Simpson 			error = ENETUNREACH;
240a3fd02d8SBruce M Simpson 			goto bad;
241a3fd02d8SBruce M Simpson 		}
242a3fd02d8SBruce M Simpson 		ip->ip_dst.s_addr = INADDR_BROADCAST;
243a3fd02d8SBruce M Simpson 		dst->sin_addr = ip->ip_dst;
244a3fd02d8SBruce M Simpson 		ifp = ia->ia_ifp;
245a3fd02d8SBruce M Simpson 		ip->ip_ttl = 1;
246a3fd02d8SBruce M Simpson 		isbroadcast = 1;
247a3fd02d8SBruce M Simpson 	} else if (flags & IP_ROUTETOIF) {
2480b17fba7SAndre Oppermann 		if ((ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst)))) == NULL &&
2490ed6142bSQing Li 		    (ia = ifatoia(ifa_ifwithnet(sintosa(dst), 0))) == NULL) {
25086425c62SRobert Watson 			IPSTAT_INC(ips_noroute);
251df8bae1dSRodney W. Grimes 			error = ENETUNREACH;
252df8bae1dSRodney W. Grimes 			goto bad;
253df8bae1dSRodney W. Grimes 		}
254df8bae1dSRodney W. Grimes 		ifp = ia->ia_ifp;
255df8bae1dSRodney W. Grimes 		ip->ip_ttl = 1;
2569f9b3dc4SGarrett Wollman 		isbroadcast = in_broadcast(dst->sin_addr, ifp);
2573afefa39SDaniel C. Sobral 	} else if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) &&
25838c1bc35SRuslan Ermilov 	    imo != NULL && imo->imo_multicast_ifp != NULL) {
2593afefa39SDaniel C. Sobral 		/*
26038c1bc35SRuslan Ermilov 		 * Bypass the normal routing lookup for multicast
26138c1bc35SRuslan Ermilov 		 * packets if the interface is specified.
2623afefa39SDaniel C. Sobral 		 */
26338c1bc35SRuslan Ermilov 		ifp = imo->imo_multicast_ifp;
26438c1bc35SRuslan Ermilov 		IFP_TO_IA(ifp, ia);
26538c1bc35SRuslan Ermilov 		isbroadcast = 0;	/* fool gcc */
266df8bae1dSRodney W. Grimes 	} else {
2672c17fe93SGarrett Wollman 		/*
26897d8d152SAndre Oppermann 		 * We want to do any cloning requested by the link layer,
26997d8d152SAndre Oppermann 		 * as this is probably required in all cases for correct
27097d8d152SAndre Oppermann 		 * operation (as it is for ARP).
2712c17fe93SGarrett Wollman 		 */
272ec396e61SLuigi Rizzo 		if (rte == NULL) {
273e440aed9SQing Li #ifdef RADIX_MPATH
2748b07e49aSJulian Elischer 			rtalloc_mpath_fib(ro,
2758b07e49aSJulian Elischer 			    ntohl(ip->ip_src.s_addr ^ ip->ip_dst.s_addr),
2768b07e49aSJulian Elischer 			    inp ? inp->inp_inc.inc_fibnum : M_GETFIB(m));
277e440aed9SQing Li #else
2788b07e49aSJulian Elischer 			in_rtalloc_ign(ro, 0,
2798b07e49aSJulian Elischer 			    inp ? inp->inp_inc.inc_fibnum : M_GETFIB(m));
280e440aed9SQing Li #endif
281ec396e61SLuigi Rizzo 			rte = ro->ro_rt;
282ec396e61SLuigi Rizzo 		}
283c7ea0aa6SQing Li 		if (rte == NULL ||
284c7ea0aa6SQing Li 		    rte->rt_ifp == NULL ||
285c7ea0aa6SQing Li 		    !RT_LINK_IS_UP(rte->rt_ifp)) {
2861a499816SEdward Tomasz Napierala #ifdef IPSEC
2871a499816SEdward Tomasz Napierala 			/*
2881a499816SEdward Tomasz Napierala 			 * There is no route for this packet, but it is
2891a499816SEdward Tomasz Napierala 			 * possible that a matching SPD entry exists.
2901a499816SEdward Tomasz Napierala 			 */
2911a499816SEdward Tomasz Napierala 			no_route_but_check_spd = 1;
2921a499816SEdward Tomasz Napierala 			mtu = 0; /* Silence GCC warning. */
2931a499816SEdward Tomasz Napierala 			goto sendit;
2941a499816SEdward Tomasz Napierala #endif
29586425c62SRobert Watson 			IPSTAT_INC(ips_noroute);
296df8bae1dSRodney W. Grimes 			error = EHOSTUNREACH;
297df8bae1dSRodney W. Grimes 			goto bad;
298df8bae1dSRodney W. Grimes 		}
299ec396e61SLuigi Rizzo 		ia = ifatoia(rte->rt_ifa);
3008c0fec80SRobert Watson 		ifa_ref(&ia->ia_ifa);
301ec396e61SLuigi Rizzo 		ifp = rte->rt_ifp;
302ec396e61SLuigi Rizzo 		rte->rt_rmx.rmx_pksent++;
303ec396e61SLuigi Rizzo 		if (rte->rt_flags & RTF_GATEWAY)
3044c7a6059SGleb Smirnoff 			gw = (struct sockaddr_in *)rte->rt_gateway;
305ec396e61SLuigi Rizzo 		if (rte->rt_flags & RTF_HOST)
306ec396e61SLuigi Rizzo 			isbroadcast = (rte->rt_flags & RTF_BROADCAST);
3079f9b3dc4SGarrett Wollman 		else
3084c7a6059SGleb Smirnoff 			isbroadcast = in_broadcast(gw->sin_addr, ifp);
309df8bae1dSRodney W. Grimes 	}
3103ae2ad08SJohn-Mark Gurney 	/*
3113ae2ad08SJohn-Mark Gurney 	 * Calculate MTU.  If we have a route that is up, use that,
3123ae2ad08SJohn-Mark Gurney 	 * otherwise use the interface's MTU.
3133ae2ad08SJohn-Mark Gurney 	 */
314ec396e61SLuigi Rizzo 	if (rte != NULL && (rte->rt_flags & (RTF_UP|RTF_HOST))) {
3153ae2ad08SJohn-Mark Gurney 		/*
3163ae2ad08SJohn-Mark Gurney 		 * This case can happen if the user changed the MTU
3173ae2ad08SJohn-Mark Gurney 		 * of an interface after enabling IP on it.  Because
3183ae2ad08SJohn-Mark Gurney 		 * most netifs don't keep track of routes pointing to
3193ae2ad08SJohn-Mark Gurney 		 * them, there is no way for one to update all its
3203ae2ad08SJohn-Mark Gurney 		 * routes when the MTU is changed.
3213ae2ad08SJohn-Mark Gurney 		 */
322ec396e61SLuigi Rizzo 		if (rte->rt_rmx.rmx_mtu > ifp->if_mtu)
323ec396e61SLuigi Rizzo 			rte->rt_rmx.rmx_mtu = ifp->if_mtu;
324ec396e61SLuigi Rizzo 		mtu = rte->rt_rmx.rmx_mtu;
3253ae2ad08SJohn-Mark Gurney 	} else {
3263ae2ad08SJohn-Mark Gurney 		mtu = ifp->if_mtu;
3273ae2ad08SJohn-Mark Gurney 	}
328c744cde4SBjoern A. Zeeb 	/* Catch a possible divide by zero later. */
329c744cde4SBjoern A. Zeeb 	KASSERT(mtu > 0, ("%s: mtu %d <= 0, rte=%p (rt_flags=0x%08x) ifp=%p",
330c744cde4SBjoern A. Zeeb 	    __func__, mtu, rte, (rte != NULL) ? rte->rt_flags : 0, ifp));
3319b932e9eSAndre Oppermann 	if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) {
332df8bae1dSRodney W. Grimes 		m->m_flags |= M_MCAST;
333df8bae1dSRodney W. Grimes 		/*
334df8bae1dSRodney W. Grimes 		 * See if the caller provided any multicast options
335df8bae1dSRodney W. Grimes 		 */
336df8bae1dSRodney W. Grimes 		if (imo != NULL) {
337df8bae1dSRodney W. Grimes 			ip->ip_ttl = imo->imo_multicast_ttl;
3381c5de19aSGarrett Wollman 			if (imo->imo_multicast_vif != -1)
3391c5de19aSGarrett Wollman 				ip->ip_src.s_addr =
340bbb4330bSLuigi Rizzo 				    ip_mcast_src ?
341bbb4330bSLuigi Rizzo 				    ip_mcast_src(imo->imo_multicast_vif) :
342bbb4330bSLuigi Rizzo 				    INADDR_ANY;
343df8bae1dSRodney W. Grimes 		} else
344df8bae1dSRodney W. Grimes 			ip->ip_ttl = IP_DEFAULT_MULTICAST_TTL;
345df8bae1dSRodney W. Grimes 		/*
346df8bae1dSRodney W. Grimes 		 * Confirm that the outgoing interface supports multicast.
347df8bae1dSRodney W. Grimes 		 */
3481c5de19aSGarrett Wollman 		if ((imo == NULL) || (imo->imo_multicast_vif == -1)) {
349df8bae1dSRodney W. Grimes 			if ((ifp->if_flags & IFF_MULTICAST) == 0) {
35086425c62SRobert Watson 				IPSTAT_INC(ips_noroute);
351df8bae1dSRodney W. Grimes 				error = ENETUNREACH;
352df8bae1dSRodney W. Grimes 				goto bad;
353df8bae1dSRodney W. Grimes 			}
3541c5de19aSGarrett Wollman 		}
355df8bae1dSRodney W. Grimes 		/*
356df8bae1dSRodney W. Grimes 		 * If source address not specified yet, use address
357df8bae1dSRodney W. Grimes 		 * of outgoing interface.
358df8bae1dSRodney W. Grimes 		 */
359df8bae1dSRodney W. Grimes 		if (ip->ip_src.s_addr == INADDR_ANY) {
36038c1bc35SRuslan Ermilov 			/* Interface may have no addresses. */
36138c1bc35SRuslan Ermilov 			if (ia != NULL)
36238c1bc35SRuslan Ermilov 				ip->ip_src = IA_SIN(ia)->sin_addr;
363df8bae1dSRodney W. Grimes 		}
364df8bae1dSRodney W. Grimes 
3658b889dbbSBruce M Simpson 		if ((imo == NULL && in_mcast_loop) ||
3668b889dbbSBruce M Simpson 		    (imo && imo->imo_multicast_loop)) {
367df8bae1dSRodney W. Grimes 			/*
3688b889dbbSBruce M Simpson 			 * Loop back multicast datagram if not expressly
3698b889dbbSBruce M Simpson 			 * forbidden to do so, even if we are not a member
3708b889dbbSBruce M Simpson 			 * of the group; ip_input() will filter it later,
3718b889dbbSBruce M Simpson 			 * thus deferring a hash lookup and mutex acquisition
3728b889dbbSBruce M Simpson 			 * at the expense of a cheap copy using m_copym().
373df8bae1dSRodney W. Grimes 			 */
37486b1d6d2SBill Fenner 			ip_mloopback(ifp, m, dst, hlen);
3758b889dbbSBruce M Simpson 		} else {
376df8bae1dSRodney W. Grimes 			/*
377df8bae1dSRodney W. Grimes 			 * If we are acting as a multicast router, perform
378df8bae1dSRodney W. Grimes 			 * multicast forwarding as if the packet had just
379df8bae1dSRodney W. Grimes 			 * arrived on the interface to which we are about
380df8bae1dSRodney W. Grimes 			 * to send.  The multicast forwarding function
381df8bae1dSRodney W. Grimes 			 * recursively calls this function, using the
382df8bae1dSRodney W. Grimes 			 * IP_FORWARDING flag to prevent infinite recursion.
383df8bae1dSRodney W. Grimes 			 *
384df8bae1dSRodney W. Grimes 			 * Multicasts that are looped back by ip_mloopback(),
385df8bae1dSRodney W. Grimes 			 * above, will be forwarded by the ip_input() routine,
386df8bae1dSRodney W. Grimes 			 * if necessary.
387df8bae1dSRodney W. Grimes 			 */
388603724d3SBjoern A. Zeeb 			if (V_ip_mrouter && (flags & IP_FORWARDING) == 0) {
389f0068c4aSGarrett Wollman 				/*
390bbb4330bSLuigi Rizzo 				 * If rsvp daemon is not running, do not
391f0068c4aSGarrett Wollman 				 * set ip_moptions. This ensures that the packet
392f0068c4aSGarrett Wollman 				 * is multicast and not just sent down one link
393f0068c4aSGarrett Wollman 				 * as prescribed by rsvpd.
394f0068c4aSGarrett Wollman 				 */
395603724d3SBjoern A. Zeeb 				if (!V_rsvp_on)
396f0068c4aSGarrett Wollman 					imo = NULL;
397bbb4330bSLuigi Rizzo 				if (ip_mforward &&
398bbb4330bSLuigi Rizzo 				    ip_mforward(ip, ifp, m, imo) != 0) {
399df8bae1dSRodney W. Grimes 					m_freem(m);
400df8bae1dSRodney W. Grimes 					goto done;
401df8bae1dSRodney W. Grimes 				}
402df8bae1dSRodney W. Grimes 			}
403df8bae1dSRodney W. Grimes 		}
4045e9ae478SGarrett Wollman 
405df8bae1dSRodney W. Grimes 		/*
406df8bae1dSRodney W. Grimes 		 * Multicasts with a time-to-live of zero may be looped-
407df8bae1dSRodney W. Grimes 		 * back, above, but must not be transmitted on a network.
408df8bae1dSRodney W. Grimes 		 * Also, multicasts addressed to the loopback interface
409df8bae1dSRodney W. Grimes 		 * are not sent -- the above call to ip_mloopback() will
4108b889dbbSBruce M Simpson 		 * loop back a copy. ip_input() will drop the copy if
4118b889dbbSBruce M Simpson 		 * this host does not belong to the destination group on
4128b889dbbSBruce M Simpson 		 * the loopback interface.
413df8bae1dSRodney W. Grimes 		 */
414f5fea3ddSPaul Traina 		if (ip->ip_ttl == 0 || ifp->if_flags & IFF_LOOPBACK) {
415df8bae1dSRodney W. Grimes 			m_freem(m);
416df8bae1dSRodney W. Grimes 			goto done;
417df8bae1dSRodney W. Grimes 		}
418df8bae1dSRodney W. Grimes 
419df8bae1dSRodney W. Grimes 		goto sendit;
420df8bae1dSRodney W. Grimes 	}
4216a7c943cSAndre Oppermann 
422df8bae1dSRodney W. Grimes 	/*
4232b25acc1SLuigi Rizzo 	 * If the source address is not specified yet, use the address
424cb459254SJohn-Mark Gurney 	 * of the outoing interface.
425df8bae1dSRodney W. Grimes 	 */
426f9e354dfSJulian Elischer 	if (ip->ip_src.s_addr == INADDR_ANY) {
42738c1bc35SRuslan Ermilov 		/* Interface may have no addresses. */
42838c1bc35SRuslan Ermilov 		if (ia != NULL) {
429df8bae1dSRodney W. Grimes 			ip->ip_src = IA_SIN(ia)->sin_addr;
430f9e354dfSJulian Elischer 		}
43138c1bc35SRuslan Ermilov 	}
4326a7c943cSAndre Oppermann 
433ca7a789aSMax Laier 	/*
434ca7a789aSMax Laier 	 * Verify that we have any chance at all of being able to queue the
435ca7a789aSMax Laier 	 * packet or packet fragments, unless ALTQ is enabled on the given
436ca7a789aSMax Laier 	 * interface in which case packetdrop should be done by queueing.
437ca7a789aSMax Laier 	 */
4388f134647SGleb Smirnoff 	n = ip_len / mtu + 1; /* how many fragments ? */
439ca8b83b0SLuigi Rizzo 	if (
44002b199f1SMax Laier #ifdef ALTQ
441ca8b83b0SLuigi Rizzo 	    (!ALTQ_IS_ENABLED(&ifp->if_snd)) &&
442ca7a789aSMax Laier #endif /* ALTQ */
443ca8b83b0SLuigi Rizzo 	    (ifp->if_snd.ifq_len + n) >= ifp->if_snd.ifq_maxlen ) {
444b5390296SDavid Greenman 		error = ENOBUFS;
44586425c62SRobert Watson 		IPSTAT_INC(ips_odropped);
446ca8b83b0SLuigi Rizzo 		ifp->if_snd.ifq_drops += n;
447b5390296SDavid Greenman 		goto bad;
448b5390296SDavid Greenman 	}
449b5390296SDavid Greenman 
450b5390296SDavid Greenman 	/*
451df8bae1dSRodney W. Grimes 	 * Look for broadcast address and
4528c3f5566SRuslan Ermilov 	 * verify user is allowed to send
453df8bae1dSRodney W. Grimes 	 * such a packet.
454df8bae1dSRodney W. Grimes 	 */
4559f9b3dc4SGarrett Wollman 	if (isbroadcast) {
456df8bae1dSRodney W. Grimes 		if ((ifp->if_flags & IFF_BROADCAST) == 0) {
457df8bae1dSRodney W. Grimes 			error = EADDRNOTAVAIL;
458df8bae1dSRodney W. Grimes 			goto bad;
459df8bae1dSRodney W. Grimes 		}
460df8bae1dSRodney W. Grimes 		if ((flags & IP_ALLOWBROADCAST) == 0) {
461df8bae1dSRodney W. Grimes 			error = EACCES;
462df8bae1dSRodney W. Grimes 			goto bad;
463df8bae1dSRodney W. Grimes 		}
464df8bae1dSRodney W. Grimes 		/* don't allow broadcast messages to be fragmented */
4658f134647SGleb Smirnoff 		if (ip_len > mtu) {
466df8bae1dSRodney W. Grimes 			error = EMSGSIZE;
467df8bae1dSRodney W. Grimes 			goto bad;
468df8bae1dSRodney W. Grimes 		}
469df8bae1dSRodney W. Grimes 		m->m_flags |= M_BCAST;
4709f9b3dc4SGarrett Wollman 	} else {
471df8bae1dSRodney W. Grimes 		m->m_flags &= ~M_BCAST;
4729f9b3dc4SGarrett Wollman 	}
473df8bae1dSRodney W. Grimes 
474f1743588SDarren Reed sendit:
475b2630c29SGeorge V. Neville-Neil #ifdef IPSEC
4764f7418a0SEdward Tomasz Napierala 	switch(ip_ipsec_output(&m, inp, &flags, &error)) {
4771dfcf0d2SAndre Oppermann 	case 1:
47833841545SHajimu UMEMOTO 		goto bad;
4791dfcf0d2SAndre Oppermann 	case -1:
4801dfcf0d2SAndre Oppermann 		goto done;
4811dfcf0d2SAndre Oppermann 	case 0:
48233841545SHajimu UMEMOTO 	default:
4831dfcf0d2SAndre Oppermann 		break;	/* Continue with packet processing. */
48433841545SHajimu UMEMOTO 	}
4851a499816SEdward Tomasz Napierala 	/*
4861a499816SEdward Tomasz Napierala 	 * Check if there was a route for this packet; return error if not.
4871a499816SEdward Tomasz Napierala 	 */
4881a499816SEdward Tomasz Napierala 	if (no_route_but_check_spd) {
4891a499816SEdward Tomasz Napierala 		IPSTAT_INC(ips_noroute);
4901a499816SEdward Tomasz Napierala 		error = EHOSTUNREACH;
4911a499816SEdward Tomasz Napierala 		goto bad;
4921a499816SEdward Tomasz Napierala 	}
4931dfcf0d2SAndre Oppermann 	/* Update variables that are affected by ipsec4_output(). */
49433841545SHajimu UMEMOTO 	ip = mtod(m, struct ip *);
49533841545SHajimu UMEMOTO 	hlen = ip->ip_hl << 2;
496b2630c29SGeorge V. Neville-Neil #endif /* IPSEC */
49733841545SHajimu UMEMOTO 
498c21fd232SAndre Oppermann 	/* Jump over all PFIL processing if hooks are not active. */
4990b4b0b0fSJulian Elischer 	if (!PFIL_HOOKED(&V_inet_pfil_hook))
500c21fd232SAndre Oppermann 		goto passout;
501c21fd232SAndre Oppermann 
502c21fd232SAndre Oppermann 	/* Run through list of hooks for output packets. */
5039b932e9eSAndre Oppermann 	odst.s_addr = ip->ip_dst.s_addr;
5040b4b0b0fSJulian Elischer 	error = pfil_run_hooks(&V_inet_pfil_hook, &m, ifp, PFIL_OUT, inp);
505134ea224SSam Leffler 	if (error != 0 || m == NULL)
506c4ac87eaSDarren Reed 		goto done;
5079b932e9eSAndre Oppermann 
508c4ac87eaSDarren Reed 	ip = mtod(m, struct ip *);
509fed1c7e9SSøren Schmidt 
5109b932e9eSAndre Oppermann 	/* See if destination IP address was changed by packet filter. */
5119b932e9eSAndre Oppermann 	if (odst.s_addr != ip->ip_dst.s_addr) {
5129b932e9eSAndre Oppermann 		m->m_flags |= M_SKIP_FIREWALL;
513f4fca2d8SAndre Oppermann 		/* If destination is now ourself drop to ip_input(). */
5149b932e9eSAndre Oppermann 		if (in_localip(ip->ip_dst)) {
5159b932e9eSAndre Oppermann 			m->m_flags |= M_FASTFWD_OURS;
516f9e354dfSJulian Elischer 			if (m->m_pkthdr.rcvif == NULL)
517603724d3SBjoern A. Zeeb 				m->m_pkthdr.rcvif = V_loif;
51820c822f3SJonathan Lemon 			if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
51920c822f3SJonathan Lemon 				m->m_pkthdr.csum_flags |=
52020c822f3SJonathan Lemon 				    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
521ac9d7e26SMax Laier 				m->m_pkthdr.csum_data = 0xffff;
52220c822f3SJonathan Lemon 			}
52320c822f3SJonathan Lemon 			m->m_pkthdr.csum_flags |=
52420c822f3SJonathan Lemon 			    CSUM_IP_CHECKED | CSUM_IP_VALID;
5252f4afd21SRandall Stewart #ifdef SCTP
5262f4afd21SRandall Stewart 			if (m->m_pkthdr.csum_flags & CSUM_SCTP)
5272f4afd21SRandall Stewart 				m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
5282f4afd21SRandall Stewart #endif
5299b932e9eSAndre Oppermann 			error = netisr_queue(NETISR_IP, m);
5309b932e9eSAndre Oppermann 			goto done;
5313c73180fSGleb Smirnoff 		} else {
5323c73180fSGleb Smirnoff 			if (ia != NULL)
5333c73180fSGleb Smirnoff 				ifa_free(&ia->ia_ifa);
534f4fca2d8SAndre Oppermann 			goto again;	/* Redo the routing table lookup. */
5359b932e9eSAndre Oppermann 		}
5363c73180fSGleb Smirnoff 	}
5379b932e9eSAndre Oppermann 
5389b932e9eSAndre Oppermann 	/* See if local, if yes, send it to netisr with IP_FASTFWD_OURS. */
5399b932e9eSAndre Oppermann 	if (m->m_flags & M_FASTFWD_OURS) {
5409b932e9eSAndre Oppermann 		if (m->m_pkthdr.rcvif == NULL)
541603724d3SBjoern A. Zeeb 			m->m_pkthdr.rcvif = V_loif;
5429b932e9eSAndre Oppermann 		if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
5439b932e9eSAndre Oppermann 			m->m_pkthdr.csum_flags |=
5449b932e9eSAndre Oppermann 			    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
5459b932e9eSAndre Oppermann 			m->m_pkthdr.csum_data = 0xffff;
5469b932e9eSAndre Oppermann 		}
5472f4afd21SRandall Stewart #ifdef SCTP
5482f4afd21SRandall Stewart 		if (m->m_pkthdr.csum_flags & CSUM_SCTP)
5492f4afd21SRandall Stewart 			m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
5502f4afd21SRandall Stewart #endif
5519b932e9eSAndre Oppermann 		m->m_pkthdr.csum_flags |=
5529b932e9eSAndre Oppermann 			    CSUM_IP_CHECKED | CSUM_IP_VALID;
5539b932e9eSAndre Oppermann 
5549b932e9eSAndre Oppermann 		error = netisr_queue(NETISR_IP, m);
555f9e354dfSJulian Elischer 		goto done;
556f9e354dfSJulian Elischer 	}
5579b932e9eSAndre Oppermann 	/* Or forward to some other address? */
558ffdbf9daSAndrey V. Elsukov 	if ((m->m_flags & M_IP_NEXTHOP) &&
559ffdbf9daSAndrey V. Elsukov 	    (fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL)) != NULL) {
5609b932e9eSAndre Oppermann 		bcopy((fwd_tag+1), dst, sizeof(struct sockaddr_in));
5619b932e9eSAndre Oppermann 		m->m_flags |= M_SKIP_FIREWALL;
562ffdbf9daSAndrey V. Elsukov 		m->m_flags &= ~M_IP_NEXTHOP;
5639b932e9eSAndre Oppermann 		m_tag_delete(m, fwd_tag);
5643c73180fSGleb Smirnoff 		if (ia != NULL)
5653c73180fSGleb Smirnoff 			ifa_free(&ia->ia_ifa);
5669b932e9eSAndre Oppermann 		goto again;
567099dd043SAndre Oppermann 	}
5682b25acc1SLuigi Rizzo 
569c21fd232SAndre Oppermann passout:
57051c8ec4aSRuslan Ermilov 	/* 127/8 must not appear on wire - RFC1122. */
57151c8ec4aSRuslan Ermilov 	if ((ntohl(ip->ip_dst.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET ||
57251c8ec4aSRuslan Ermilov 	    (ntohl(ip->ip_src.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET) {
57351c8ec4aSRuslan Ermilov 		if ((ifp->if_flags & IFF_LOOPBACK) == 0) {
57486425c62SRobert Watson 			IPSTAT_INC(ips_badaddr);
57551c8ec4aSRuslan Ermilov 			error = EADDRNOTAVAIL;
57651c8ec4aSRuslan Ermilov 			goto bad;
57751c8ec4aSRuslan Ermilov 		}
57851c8ec4aSRuslan Ermilov 	}
57951c8ec4aSRuslan Ermilov 
580206a3274SRuslan Ermilov 	m->m_pkthdr.csum_flags |= CSUM_IP;
581078468edSGleb Smirnoff 	if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA & ~ifp->if_hwassist) {
582db4f9cc7SJonathan Lemon 		in_delayed_cksum(m);
583078468edSGleb Smirnoff 		m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
584db4f9cc7SJonathan Lemon 	}
5852f4afd21SRandall Stewart #ifdef SCTP
586078468edSGleb Smirnoff 	if (m->m_pkthdr.csum_flags & CSUM_SCTP & ~ifp->if_hwassist) {
5871966e5b5SRandall Stewart 		sctp_delayed_cksum(m, (uint32_t)(ip->ip_hl << 2));
588078468edSGleb Smirnoff 		m->m_pkthdr.csum_flags &= ~CSUM_SCTP;
5892f4afd21SRandall Stewart 	}
5902f4afd21SRandall Stewart #endif
591db4f9cc7SJonathan Lemon 
592e7319babSPoul-Henning Kamp 	/*
593db4f9cc7SJonathan Lemon 	 * If small enough for interface, or the interface will take
594233dcce1SAndre Oppermann 	 * care of the fragmentation for us, we can just send directly.
595df8bae1dSRodney W. Grimes 	 */
59621d172a3SGleb Smirnoff 	if (ip_len <= mtu ||
597233dcce1SAndre Oppermann 	    (m->m_pkthdr.csum_flags & ifp->if_hwassist & CSUM_TSO) != 0 ||
59821d172a3SGleb Smirnoff 	    ((ip_off & IP_DF) == 0 && (ifp->if_hwassist & CSUM_FRAGMENT))) {
599df8bae1dSRodney W. Grimes 		ip->ip_sum = 0;
600078468edSGleb Smirnoff 		if (m->m_pkthdr.csum_flags & CSUM_IP & ~ifp->if_hwassist) {
601df8bae1dSRodney W. Grimes 			ip->ip_sum = in_cksum(m, hlen);
602078468edSGleb Smirnoff 			m->m_pkthdr.csum_flags &= ~CSUM_IP;
603078468edSGleb Smirnoff 		}
6045da9f8faSJosef Karthauser 
605233dcce1SAndre Oppermann 		/*
606233dcce1SAndre Oppermann 		 * Record statistics for this interface address.
607233dcce1SAndre Oppermann 		 * With CSUM_TSO the byte/packet count will be slightly
608233dcce1SAndre Oppermann 		 * incorrect because we count the IP+TCP headers only
609233dcce1SAndre Oppermann 		 * once instead of for every generated packet.
610233dcce1SAndre Oppermann 		 */
61138c1bc35SRuslan Ermilov 		if (!(flags & IP_FORWARDING) && ia) {
612233dcce1SAndre Oppermann 			if (m->m_pkthdr.csum_flags & CSUM_TSO)
6133dbee59bSBruce M Simpson 				ia->ia_ifa.if_opackets +=
614233dcce1SAndre Oppermann 				    m->m_pkthdr.len / m->m_pkthdr.tso_segsz;
615233dcce1SAndre Oppermann 			else
6163dbee59bSBruce M Simpson 				ia->ia_ifa.if_opackets++;
6173dbee59bSBruce M Simpson 			ia->ia_ifa.if_obytes += m->m_pkthdr.len;
6185da9f8faSJosef Karthauser 		}
61953dcc544SMike Silbersack #ifdef MBUF_STRESS_TEST
6203390d476SMike Silbersack 		if (mbuf_frag_size && m->m_pkthdr.len > mbuf_frag_size)
621eb1b1807SGleb Smirnoff 			m = m_fragment(m, M_NOWAIT, mbuf_frag_size);
6229d9edc56SMike Silbersack #endif
623147f74d1SAndre Oppermann 		/*
624147f74d1SAndre Oppermann 		 * Reset layer specific mbuf flags
625147f74d1SAndre Oppermann 		 * to avoid confusing lower layers.
626147f74d1SAndre Oppermann 		 */
62786bd0491SAndre Oppermann 		m_clrprotoflags(m);
628*57f60867SMark Johnston 		IP_PROBE(send, NULL, NULL, ip, ifp, ip, NULL);
62947e8d432SGleb Smirnoff 		error = (*ifp->if_output)(ifp, m,
63047e8d432SGleb Smirnoff 		    (const struct sockaddr *)gw, ro);
631df8bae1dSRodney W. Grimes 		goto done;
632df8bae1dSRodney W. Grimes 	}
6331e78ac21SJeffrey Hsu 
634233dcce1SAndre Oppermann 	/* Balk when DF bit is set or the interface didn't support TSO. */
63521d172a3SGleb Smirnoff 	if ((ip_off & IP_DF) || (m->m_pkthdr.csum_flags & CSUM_TSO)) {
636df8bae1dSRodney W. Grimes 		error = EMSGSIZE;
63786425c62SRobert Watson 		IPSTAT_INC(ips_cantfrag);
638df8bae1dSRodney W. Grimes 		goto bad;
639df8bae1dSRodney W. Grimes 	}
6401e78ac21SJeffrey Hsu 
6411e78ac21SJeffrey Hsu 	/*
6421e78ac21SJeffrey Hsu 	 * Too large for interface; fragment if possible. If successful,
6431e78ac21SJeffrey Hsu 	 * on return, m will point to a list of packets to be sent.
6441e78ac21SJeffrey Hsu 	 */
645078468edSGleb Smirnoff 	error = ip_fragment(ip, &m, mtu, ifp->if_hwassist);
6461e78ac21SJeffrey Hsu 	if (error)
647df8bae1dSRodney W. Grimes 		goto bad;
6481e78ac21SJeffrey Hsu 	for (; m; m = m0) {
649df8bae1dSRodney W. Grimes 		m0 = m->m_nextpkt;
650b375c9ecSLuigi Rizzo 		m->m_nextpkt = 0;
65107203494SDaniel C. Sobral 		if (error == 0) {
652fe937674SJosef Karthauser 			/* Record statistics for this interface address. */
65307203494SDaniel C. Sobral 			if (ia != NULL) {
6543dbee59bSBruce M Simpson 				ia->ia_ifa.if_opackets++;
6553dbee59bSBruce M Simpson 				ia->ia_ifa.if_obytes += m->m_pkthdr.len;
65607203494SDaniel C. Sobral 			}
657147f74d1SAndre Oppermann 			/*
658147f74d1SAndre Oppermann 			 * Reset layer specific mbuf flags
659147f74d1SAndre Oppermann 			 * to avoid confusing upper layers.
660147f74d1SAndre Oppermann 			 */
66186bd0491SAndre Oppermann 			m_clrprotoflags(m);
662fe937674SJosef Karthauser 
663*57f60867SMark Johnston 			IP_PROBE(send, NULL, NULL, ip, ifp, ip, NULL);
664df8bae1dSRodney W. Grimes 			error = (*ifp->if_output)(ifp, m,
66547e8d432SGleb Smirnoff 			    (const struct sockaddr *)gw, ro);
666fe937674SJosef Karthauser 		} else
667df8bae1dSRodney W. Grimes 			m_freem(m);
668df8bae1dSRodney W. Grimes 	}
669df8bae1dSRodney W. Grimes 
670df8bae1dSRodney W. Grimes 	if (error == 0)
67186425c62SRobert Watson 		IPSTAT_INC(ips_fragmented);
6721e78ac21SJeffrey Hsu 
673df8bae1dSRodney W. Grimes done:
674bf984051SGleb Smirnoff 	if (ro == &iproute)
675bf984051SGleb Smirnoff 		RO_RTFREE(ro);
6768c0fec80SRobert Watson 	if (ia != NULL)
6778c0fec80SRobert Watson 		ifa_free(&ia->ia_ifa);
678df8bae1dSRodney W. Grimes 	return (error);
679df8bae1dSRodney W. Grimes bad:
6803528d68fSBill Paul 	m_freem(m);
681df8bae1dSRodney W. Grimes 	goto done;
682df8bae1dSRodney W. Grimes }
683df8bae1dSRodney W. Grimes 
6841e78ac21SJeffrey Hsu /*
6851e78ac21SJeffrey Hsu  * Create a chain of fragments which fit the given mtu. m_frag points to the
6861e78ac21SJeffrey Hsu  * mbuf to be fragmented; on return it points to the chain with the fragments.
6871e78ac21SJeffrey Hsu  * Return 0 if no error. If error, m_frag may contain a partially built
6881e78ac21SJeffrey Hsu  * chain of fragments that should be freed by the caller.
6891e78ac21SJeffrey Hsu  *
6901e78ac21SJeffrey Hsu  * if_hwassist_flags is the hw offload capabilities (see if_data.ifi_hwassist)
6911e78ac21SJeffrey Hsu  */
6921e78ac21SJeffrey Hsu int
6931e78ac21SJeffrey Hsu ip_fragment(struct ip *ip, struct mbuf **m_frag, int mtu,
694078468edSGleb Smirnoff     u_long if_hwassist_flags)
6951e78ac21SJeffrey Hsu {
6961e78ac21SJeffrey Hsu 	int error = 0;
6971e78ac21SJeffrey Hsu 	int hlen = ip->ip_hl << 2;
6981e78ac21SJeffrey Hsu 	int len = (mtu - hlen) & ~7;	/* size of payload in each fragment */
6991e78ac21SJeffrey Hsu 	int off;
7001e78ac21SJeffrey Hsu 	struct mbuf *m0 = *m_frag;	/* the original packet		*/
7011e78ac21SJeffrey Hsu 	int firstlen;
7021e78ac21SJeffrey Hsu 	struct mbuf **mnext;
7031e78ac21SJeffrey Hsu 	int nfrags;
70421d172a3SGleb Smirnoff 	uint16_t ip_len, ip_off;
7051e78ac21SJeffrey Hsu 
70621d172a3SGleb Smirnoff 	ip_len = ntohs(ip->ip_len);
70721d172a3SGleb Smirnoff 	ip_off = ntohs(ip->ip_off);
70821d172a3SGleb Smirnoff 
70921d172a3SGleb Smirnoff 	if (ip_off & IP_DF) {	/* Fragmentation not allowed */
71086425c62SRobert Watson 		IPSTAT_INC(ips_cantfrag);
7111e78ac21SJeffrey Hsu 		return EMSGSIZE;
7121e78ac21SJeffrey Hsu 	}
7131e78ac21SJeffrey Hsu 
7141e78ac21SJeffrey Hsu 	/*
7151e78ac21SJeffrey Hsu 	 * Must be able to put at least 8 bytes per fragment.
7161e78ac21SJeffrey Hsu 	 */
7171e78ac21SJeffrey Hsu 	if (len < 8)
7181e78ac21SJeffrey Hsu 		return EMSGSIZE;
7191e78ac21SJeffrey Hsu 
7201e78ac21SJeffrey Hsu 	/*
7211e78ac21SJeffrey Hsu 	 * If the interface will not calculate checksums on
7221e78ac21SJeffrey Hsu 	 * fragmented packets, then do it here.
7231e78ac21SJeffrey Hsu 	 */
724da2299c5SAndre Oppermann 	if (m0->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
7251e78ac21SJeffrey Hsu 		in_delayed_cksum(m0);
7261e78ac21SJeffrey Hsu 		m0->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
7271e78ac21SJeffrey Hsu 	}
7282f4afd21SRandall Stewart #ifdef SCTP
729da2299c5SAndre Oppermann 	if (m0->m_pkthdr.csum_flags & CSUM_SCTP) {
7301966e5b5SRandall Stewart 		sctp_delayed_cksum(m0, hlen);
7312f4afd21SRandall Stewart 		m0->m_pkthdr.csum_flags &= ~CSUM_SCTP;
7322f4afd21SRandall Stewart 	}
7332f4afd21SRandall Stewart #endif
7341e78ac21SJeffrey Hsu 	if (len > PAGE_SIZE) {
7351e78ac21SJeffrey Hsu 		/*
7361e78ac21SJeffrey Hsu 		 * Fragment large datagrams such that each segment
7371e78ac21SJeffrey Hsu 		 * contains a multiple of PAGE_SIZE amount of data,
7381e78ac21SJeffrey Hsu 		 * plus headers. This enables a receiver to perform
7391e78ac21SJeffrey Hsu 		 * page-flipping zero-copy optimizations.
7401e78ac21SJeffrey Hsu 		 *
7411e78ac21SJeffrey Hsu 		 * XXX When does this help given that sender and receiver
7421e78ac21SJeffrey Hsu 		 * could have different page sizes, and also mtu could
7431e78ac21SJeffrey Hsu 		 * be less than the receiver's page size ?
7441e78ac21SJeffrey Hsu 		 */
7451e78ac21SJeffrey Hsu 		int newlen;
7461e78ac21SJeffrey Hsu 		struct mbuf *m;
7471e78ac21SJeffrey Hsu 
7481e78ac21SJeffrey Hsu 		for (m = m0, off = 0; m && (off+m->m_len) <= mtu; m = m->m_next)
7491e78ac21SJeffrey Hsu 			off += m->m_len;
7501e78ac21SJeffrey Hsu 
7511e78ac21SJeffrey Hsu 		/*
7521e78ac21SJeffrey Hsu 		 * firstlen (off - hlen) must be aligned on an
7531e78ac21SJeffrey Hsu 		 * 8-byte boundary
7541e78ac21SJeffrey Hsu 		 */
7551e78ac21SJeffrey Hsu 		if (off < hlen)
7561e78ac21SJeffrey Hsu 			goto smart_frag_failure;
7571e78ac21SJeffrey Hsu 		off = ((off - hlen) & ~7) + hlen;
7581e78ac21SJeffrey Hsu 		newlen = (~PAGE_MASK) & mtu;
7591e78ac21SJeffrey Hsu 		if ((newlen + sizeof (struct ip)) > mtu) {
7601e78ac21SJeffrey Hsu 			/* we failed, go back the default */
7611e78ac21SJeffrey Hsu smart_frag_failure:
7621e78ac21SJeffrey Hsu 			newlen = len;
7631e78ac21SJeffrey Hsu 			off = hlen + len;
7641e78ac21SJeffrey Hsu 		}
7651e78ac21SJeffrey Hsu 		len = newlen;
7661e78ac21SJeffrey Hsu 
7671e78ac21SJeffrey Hsu 	} else {
7681e78ac21SJeffrey Hsu 		off = hlen + len;
7691e78ac21SJeffrey Hsu 	}
7701e78ac21SJeffrey Hsu 
7711e78ac21SJeffrey Hsu 	firstlen = off - hlen;
7721e78ac21SJeffrey Hsu 	mnext = &m0->m_nextpkt;		/* pointer to next packet */
7731e78ac21SJeffrey Hsu 
7741e78ac21SJeffrey Hsu 	/*
7751e78ac21SJeffrey Hsu 	 * Loop through length of segment after first fragment,
7761e78ac21SJeffrey Hsu 	 * make new header and copy data of each part and link onto chain.
7771e78ac21SJeffrey Hsu 	 * Here, m0 is the original packet, m is the fragment being created.
7781e78ac21SJeffrey Hsu 	 * The fragments are linked off the m_nextpkt of the original
7791e78ac21SJeffrey Hsu 	 * packet, which after processing serves as the first fragment.
7801e78ac21SJeffrey Hsu 	 */
78121d172a3SGleb Smirnoff 	for (nfrags = 1; off < ip_len; off += len, nfrags++) {
7821e78ac21SJeffrey Hsu 		struct ip *mhip;	/* ip header on the fragment */
7831e78ac21SJeffrey Hsu 		struct mbuf *m;
7841e78ac21SJeffrey Hsu 		int mhlen = sizeof (struct ip);
7851e78ac21SJeffrey Hsu 
786dc4ad05eSGleb Smirnoff 		m = m_gethdr(M_NOWAIT, MT_DATA);
7870b17fba7SAndre Oppermann 		if (m == NULL) {
7881e78ac21SJeffrey Hsu 			error = ENOBUFS;
78986425c62SRobert Watson 			IPSTAT_INC(ips_odropped);
7901e78ac21SJeffrey Hsu 			goto done;
7911e78ac21SJeffrey Hsu 		}
792fb86dfcdSAndre Oppermann 		m->m_flags |= (m0->m_flags & M_MCAST);
7931e78ac21SJeffrey Hsu 		/*
7941e78ac21SJeffrey Hsu 		 * In the first mbuf, leave room for the link header, then
7951e78ac21SJeffrey Hsu 		 * copy the original IP header including options. The payload
7968b889dbbSBruce M Simpson 		 * goes into an additional mbuf chain returned by m_copym().
7971e78ac21SJeffrey Hsu 		 */
7981e78ac21SJeffrey Hsu 		m->m_data += max_linkhdr;
7991e78ac21SJeffrey Hsu 		mhip = mtod(m, struct ip *);
8001e78ac21SJeffrey Hsu 		*mhip = *ip;
8011e78ac21SJeffrey Hsu 		if (hlen > sizeof (struct ip)) {
8021e78ac21SJeffrey Hsu 			mhlen = ip_optcopy(ip, mhip) + sizeof (struct ip);
8031e78ac21SJeffrey Hsu 			mhip->ip_v = IPVERSION;
8041e78ac21SJeffrey Hsu 			mhip->ip_hl = mhlen >> 2;
8051e78ac21SJeffrey Hsu 		}
8061e78ac21SJeffrey Hsu 		m->m_len = mhlen;
80721d172a3SGleb Smirnoff 		/* XXX do we need to add ip_off below ? */
80821d172a3SGleb Smirnoff 		mhip->ip_off = ((off - hlen) >> 3) + ip_off;
809fb86dfcdSAndre Oppermann 		if (off + len >= ip_len)
81021d172a3SGleb Smirnoff 			len = ip_len - off;
811fb86dfcdSAndre Oppermann 		else
8121e78ac21SJeffrey Hsu 			mhip->ip_off |= IP_MF;
8131e78ac21SJeffrey Hsu 		mhip->ip_len = htons((u_short)(len + mhlen));
814eb1b1807SGleb Smirnoff 		m->m_next = m_copym(m0, off, len, M_NOWAIT);
8150b17fba7SAndre Oppermann 		if (m->m_next == NULL) {	/* copy failed */
8161e78ac21SJeffrey Hsu 			m_free(m);
8171e78ac21SJeffrey Hsu 			error = ENOBUFS;	/* ??? */
81886425c62SRobert Watson 			IPSTAT_INC(ips_odropped);
8191e78ac21SJeffrey Hsu 			goto done;
8201e78ac21SJeffrey Hsu 		}
8211e78ac21SJeffrey Hsu 		m->m_pkthdr.len = mhlen + len;
822fc74a9f9SBrooks Davis 		m->m_pkthdr.rcvif = NULL;
8231e78ac21SJeffrey Hsu #ifdef MAC
82430d239bcSRobert Watson 		mac_netinet_fragment(m0, m);
8251e78ac21SJeffrey Hsu #endif
8261e78ac21SJeffrey Hsu 		m->m_pkthdr.csum_flags = m0->m_pkthdr.csum_flags;
8271e78ac21SJeffrey Hsu 		mhip->ip_off = htons(mhip->ip_off);
8281e78ac21SJeffrey Hsu 		mhip->ip_sum = 0;
829078468edSGleb Smirnoff 		if (m->m_pkthdr.csum_flags & CSUM_IP & ~if_hwassist_flags) {
8301e78ac21SJeffrey Hsu 			mhip->ip_sum = in_cksum(m, mhlen);
831078468edSGleb Smirnoff 			m->m_pkthdr.csum_flags &= ~CSUM_IP;
832078468edSGleb Smirnoff 		}
8331e78ac21SJeffrey Hsu 		*mnext = m;
8341e78ac21SJeffrey Hsu 		mnext = &m->m_nextpkt;
8351e78ac21SJeffrey Hsu 	}
83686425c62SRobert Watson 	IPSTAT_ADD(ips_ofragments, nfrags);
8371e78ac21SJeffrey Hsu 
8381e78ac21SJeffrey Hsu 	/*
8391e78ac21SJeffrey Hsu 	 * Update first fragment by trimming what's been copied out
8401e78ac21SJeffrey Hsu 	 * and updating header.
8411e78ac21SJeffrey Hsu 	 */
84221d172a3SGleb Smirnoff 	m_adj(m0, hlen + firstlen - ip_len);
8431e78ac21SJeffrey Hsu 	m0->m_pkthdr.len = hlen + firstlen;
8441e78ac21SJeffrey Hsu 	ip->ip_len = htons((u_short)m0->m_pkthdr.len);
84521d172a3SGleb Smirnoff 	ip->ip_off = htons(ip_off | IP_MF);
8461e78ac21SJeffrey Hsu 	ip->ip_sum = 0;
847078468edSGleb Smirnoff 	if (m0->m_pkthdr.csum_flags & CSUM_IP & ~if_hwassist_flags) {
8481e78ac21SJeffrey Hsu 		ip->ip_sum = in_cksum(m0, hlen);
849078468edSGleb Smirnoff 		m0->m_pkthdr.csum_flags &= ~CSUM_IP;
850078468edSGleb Smirnoff 	}
8511e78ac21SJeffrey Hsu 
8521e78ac21SJeffrey Hsu done:
8531e78ac21SJeffrey Hsu 	*m_frag = m0;
8541e78ac21SJeffrey Hsu 	return error;
8551e78ac21SJeffrey Hsu }
8561e78ac21SJeffrey Hsu 
8571c238475SJonathan Lemon void
858db4f9cc7SJonathan Lemon in_delayed_cksum(struct mbuf *m)
859db4f9cc7SJonathan Lemon {
860db4f9cc7SJonathan Lemon 	struct ip *ip;
86123e9c6dcSGleb Smirnoff 	uint16_t csum, offset, ip_len;
862db4f9cc7SJonathan Lemon 
863db4f9cc7SJonathan Lemon 	ip = mtod(m, struct ip *);
86453be11f6SPoul-Henning Kamp 	offset = ip->ip_hl << 2 ;
86523e9c6dcSGleb Smirnoff 	ip_len = ntohs(ip->ip_len);
86623e9c6dcSGleb Smirnoff 	csum = in_cksum_skip(m, ip_len, offset);
867206a3274SRuslan Ermilov 	if (m->m_pkthdr.csum_flags & CSUM_UDP && csum == 0)
868206a3274SRuslan Ermilov 		csum = 0xffff;
869db4f9cc7SJonathan Lemon 	offset += m->m_pkthdr.csum_data;	/* checksum offset */
870db4f9cc7SJonathan Lemon 
871db4f9cc7SJonathan Lemon 	if (offset + sizeof(u_short) > m->m_len) {
872db4f9cc7SJonathan Lemon 		printf("delayed m_pullup, m->len: %d  off: %d  p: %d\n",
873db4f9cc7SJonathan Lemon 		    m->m_len, offset, ip->ip_p);
874db4f9cc7SJonathan Lemon 		/*
875db4f9cc7SJonathan Lemon 		 * XXX
876db4f9cc7SJonathan Lemon 		 * this shouldn't happen, but if it does, the
877db4f9cc7SJonathan Lemon 		 * correct behavior may be to insert the checksum
8788f8d29f6SAndre Oppermann 		 * in the appropriate next mbuf in the chain.
879db4f9cc7SJonathan Lemon 		 */
8808f8d29f6SAndre Oppermann 		return;
881db4f9cc7SJonathan Lemon 	}
882db4f9cc7SJonathan Lemon 	*(u_short *)(m->m_data + offset) = csum;
883db4f9cc7SJonathan Lemon }
884db4f9cc7SJonathan Lemon 
885df8bae1dSRodney W. Grimes /*
886df8bae1dSRodney W. Grimes  * IP socket option processing.
887df8bae1dSRodney W. Grimes  */
888df8bae1dSRodney W. Grimes int
889f2565d68SRobert Watson ip_ctloutput(struct socket *so, struct sockopt *sopt)
890df8bae1dSRodney W. Grimes {
891cfe8b629SGarrett Wollman 	struct	inpcb *inp = sotoinpcb(so);
892cfe8b629SGarrett Wollman 	int	error, optval;
893df8bae1dSRodney W. Grimes 
894cfe8b629SGarrett Wollman 	error = optval = 0;
895cfe8b629SGarrett Wollman 	if (sopt->sopt_level != IPPROTO_IP) {
896fc06cd42SMikolaj Golub 		error = EINVAL;
897fc06cd42SMikolaj Golub 
898fc06cd42SMikolaj Golub 		if (sopt->sopt_level == SOL_SOCKET &&
899fc06cd42SMikolaj Golub 		    sopt->sopt_dir == SOPT_SET) {
900fc06cd42SMikolaj Golub 			switch (sopt->sopt_name) {
901fc06cd42SMikolaj Golub 			case SO_REUSEADDR:
902fc06cd42SMikolaj Golub 				INP_WLOCK(inp);
903efdf104bSMikolaj Golub 				if ((so->so_options & SO_REUSEADDR) != 0)
904efdf104bSMikolaj Golub 					inp->inp_flags2 |= INP_REUSEADDR;
905fc06cd42SMikolaj Golub 				else
906efdf104bSMikolaj Golub 					inp->inp_flags2 &= ~INP_REUSEADDR;
907fc06cd42SMikolaj Golub 				INP_WUNLOCK(inp);
908fc06cd42SMikolaj Golub 				error = 0;
909fc06cd42SMikolaj Golub 				break;
910fc06cd42SMikolaj Golub 			case SO_REUSEPORT:
911fc06cd42SMikolaj Golub 				INP_WLOCK(inp);
912fc06cd42SMikolaj Golub 				if ((so->so_options & SO_REUSEPORT) != 0)
913fc06cd42SMikolaj Golub 					inp->inp_flags2 |= INP_REUSEPORT;
914fc06cd42SMikolaj Golub 				else
915fc06cd42SMikolaj Golub 					inp->inp_flags2 &= ~INP_REUSEPORT;
916fc06cd42SMikolaj Golub 				INP_WUNLOCK(inp);
917fc06cd42SMikolaj Golub 				error = 0;
918fc06cd42SMikolaj Golub 				break;
919fc06cd42SMikolaj Golub 			case SO_SETFIB:
920fc06cd42SMikolaj Golub 				INP_WLOCK(inp);
921fc06cd42SMikolaj Golub 				inp->inp_inc.inc_fibnum = so->so_fibnum;
922fc06cd42SMikolaj Golub 				INP_WUNLOCK(inp);
923fc06cd42SMikolaj Golub 				error = 0;
924fc06cd42SMikolaj Golub 				break;
925fc06cd42SMikolaj Golub 			default:
926fc06cd42SMikolaj Golub 				break;
927fc06cd42SMikolaj Golub 			}
928fc06cd42SMikolaj Golub 		}
929fc06cd42SMikolaj Golub 		return (error);
930cfe8b629SGarrett Wollman 	}
931df8bae1dSRodney W. Grimes 
932cfe8b629SGarrett Wollman 	switch (sopt->sopt_dir) {
933cfe8b629SGarrett Wollman 	case SOPT_SET:
934cfe8b629SGarrett Wollman 		switch (sopt->sopt_name) {
935df8bae1dSRodney W. Grimes 		case IP_OPTIONS:
936df8bae1dSRodney W. Grimes #ifdef notyet
937df8bae1dSRodney W. Grimes 		case IP_RETOPTS:
938df8bae1dSRodney W. Grimes #endif
939cfe8b629SGarrett Wollman 		{
940cfe8b629SGarrett Wollman 			struct mbuf *m;
941cfe8b629SGarrett Wollman 			if (sopt->sopt_valsize > MLEN) {
942cfe8b629SGarrett Wollman 				error = EMSGSIZE;
943cfe8b629SGarrett Wollman 				break;
944cfe8b629SGarrett Wollman 			}
945dc4ad05eSGleb Smirnoff 			m = m_get(sopt->sopt_td ? M_WAITOK : M_NOWAIT, MT_DATA);
9460b17fba7SAndre Oppermann 			if (m == NULL) {
947cfe8b629SGarrett Wollman 				error = ENOBUFS;
948cfe8b629SGarrett Wollman 				break;
949cfe8b629SGarrett Wollman 			}
950cfe8b629SGarrett Wollman 			m->m_len = sopt->sopt_valsize;
951cfe8b629SGarrett Wollman 			error = sooptcopyin(sopt, mtod(m, char *), m->m_len,
952cfe8b629SGarrett Wollman 					    m->m_len);
953635354c4SMaxim Konovalov 			if (error) {
954635354c4SMaxim Konovalov 				m_free(m);
955635354c4SMaxim Konovalov 				break;
956635354c4SMaxim Konovalov 			}
9578501a69cSRobert Watson 			INP_WLOCK(inp);
958993d9505SRobert Watson 			error = ip_pcbopts(inp, sopt->sopt_name, m);
9598501a69cSRobert Watson 			INP_WUNLOCK(inp);
960993d9505SRobert Watson 			return (error);
961cfe8b629SGarrett Wollman 		}
962df8bae1dSRodney W. Grimes 
963f44270e7SPawel Jakub Dawidek 		case IP_BINDANY:
964f44270e7SPawel Jakub Dawidek 			if (sopt->sopt_td != NULL) {
965f44270e7SPawel Jakub Dawidek 				error = priv_check(sopt->sopt_td,
966f44270e7SPawel Jakub Dawidek 				    PRIV_NETINET_BINDANY);
967f44270e7SPawel Jakub Dawidek 				if (error)
968be9347e3SAdrian Chadd 					break;
969be9347e3SAdrian Chadd 			}
970cef27294SAdrian Chadd 			/* FALLTHROUGH */
971df8bae1dSRodney W. Grimes 		case IP_TOS:
972df8bae1dSRodney W. Grimes 		case IP_TTL:
973936cd18dSAndre Oppermann 		case IP_MINTTL:
974df8bae1dSRodney W. Grimes 		case IP_RECVOPTS:
975df8bae1dSRodney W. Grimes 		case IP_RECVRETOPTS:
976df8bae1dSRodney W. Grimes 		case IP_RECVDSTADDR:
9774957466bSMatthew N. Dodd 		case IP_RECVTTL:
97882c23ebaSBill Fenner 		case IP_RECVIF:
9796a800098SYoshinobu Inoue 		case IP_FAITH:
9808afa2304SBruce M Simpson 		case IP_ONESBCAST:
981b2828ad2SAndre Oppermann 		case IP_DONTFRAG:
9823cca425bSMichael Tuexen 		case IP_RECVTOS:
983cfe8b629SGarrett Wollman 			error = sooptcopyin(sopt, &optval, sizeof optval,
984cfe8b629SGarrett Wollman 					    sizeof optval);
985cfe8b629SGarrett Wollman 			if (error)
986cfe8b629SGarrett Wollman 				break;
987df8bae1dSRodney W. Grimes 
988cfe8b629SGarrett Wollman 			switch (sopt->sopt_name) {
989df8bae1dSRodney W. Grimes 			case IP_TOS:
990ca98b82cSDavid Greenman 				inp->inp_ip_tos = optval;
991df8bae1dSRodney W. Grimes 				break;
992df8bae1dSRodney W. Grimes 
993df8bae1dSRodney W. Grimes 			case IP_TTL:
994ca98b82cSDavid Greenman 				inp->inp_ip_ttl = optval;
995df8bae1dSRodney W. Grimes 				break;
996936cd18dSAndre Oppermann 
997936cd18dSAndre Oppermann 			case IP_MINTTL:
998a603c811SRobert Watson 				if (optval >= 0 && optval <= MAXTTL)
999936cd18dSAndre Oppermann 					inp->inp_ip_minttl = optval;
1000936cd18dSAndre Oppermann 				else
1001936cd18dSAndre Oppermann 					error = EINVAL;
1002936cd18dSAndre Oppermann 				break;
1003936cd18dSAndre Oppermann 
1004a138d217SRobert Watson #define	OPTSET(bit) do {						\
10058501a69cSRobert Watson 	INP_WLOCK(inp);							\
1006df8bae1dSRodney W. Grimes 	if (optval)							\
1007df8bae1dSRodney W. Grimes 		inp->inp_flags |= bit;					\
1008df8bae1dSRodney W. Grimes 	else								\
1009a138d217SRobert Watson 		inp->inp_flags &= ~bit;					\
10108501a69cSRobert Watson 	INP_WUNLOCK(inp);						\
1011a138d217SRobert Watson } while (0)
1012df8bae1dSRodney W. Grimes 
1013df8bae1dSRodney W. Grimes 			case IP_RECVOPTS:
1014df8bae1dSRodney W. Grimes 				OPTSET(INP_RECVOPTS);
1015df8bae1dSRodney W. Grimes 				break;
1016df8bae1dSRodney W. Grimes 
1017df8bae1dSRodney W. Grimes 			case IP_RECVRETOPTS:
1018df8bae1dSRodney W. Grimes 				OPTSET(INP_RECVRETOPTS);
1019df8bae1dSRodney W. Grimes 				break;
1020df8bae1dSRodney W. Grimes 
1021df8bae1dSRodney W. Grimes 			case IP_RECVDSTADDR:
1022df8bae1dSRodney W. Grimes 				OPTSET(INP_RECVDSTADDR);
1023df8bae1dSRodney W. Grimes 				break;
102482c23ebaSBill Fenner 
10254957466bSMatthew N. Dodd 			case IP_RECVTTL:
10264957466bSMatthew N. Dodd 				OPTSET(INP_RECVTTL);
10274957466bSMatthew N. Dodd 				break;
10284957466bSMatthew N. Dodd 
102982c23ebaSBill Fenner 			case IP_RECVIF:
103082c23ebaSBill Fenner 				OPTSET(INP_RECVIF);
103182c23ebaSBill Fenner 				break;
10326a800098SYoshinobu Inoue 
10336a800098SYoshinobu Inoue 			case IP_FAITH:
10346a800098SYoshinobu Inoue 				OPTSET(INP_FAITH);
10356a800098SYoshinobu Inoue 				break;
10368afa2304SBruce M Simpson 
10378afa2304SBruce M Simpson 			case IP_ONESBCAST:
10388afa2304SBruce M Simpson 				OPTSET(INP_ONESBCAST);
10398afa2304SBruce M Simpson 				break;
1040b2828ad2SAndre Oppermann 			case IP_DONTFRAG:
1041b2828ad2SAndre Oppermann 				OPTSET(INP_DONTFRAG);
1042b2828ad2SAndre Oppermann 				break;
1043f44270e7SPawel Jakub Dawidek 			case IP_BINDANY:
1044f44270e7SPawel Jakub Dawidek 				OPTSET(INP_BINDANY);
1045be9347e3SAdrian Chadd 				break;
10463cca425bSMichael Tuexen 			case IP_RECVTOS:
10473cca425bSMichael Tuexen 				OPTSET(INP_RECVTOS);
10483cca425bSMichael Tuexen 				break;
1049df8bae1dSRodney W. Grimes 			}
1050df8bae1dSRodney W. Grimes 			break;
1051df8bae1dSRodney W. Grimes #undef OPTSET
1052df8bae1dSRodney W. Grimes 
105371498f30SBruce M Simpson 		/*
105471498f30SBruce M Simpson 		 * Multicast socket options are processed by the in_mcast
105571498f30SBruce M Simpson 		 * module.
105671498f30SBruce M Simpson 		 */
1057df8bae1dSRodney W. Grimes 		case IP_MULTICAST_IF:
1058f0068c4aSGarrett Wollman 		case IP_MULTICAST_VIF:
1059df8bae1dSRodney W. Grimes 		case IP_MULTICAST_TTL:
1060df8bae1dSRodney W. Grimes 		case IP_MULTICAST_LOOP:
1061df8bae1dSRodney W. Grimes 		case IP_ADD_MEMBERSHIP:
1062df8bae1dSRodney W. Grimes 		case IP_DROP_MEMBERSHIP:
106371498f30SBruce M Simpson 		case IP_ADD_SOURCE_MEMBERSHIP:
106471498f30SBruce M Simpson 		case IP_DROP_SOURCE_MEMBERSHIP:
106571498f30SBruce M Simpson 		case IP_BLOCK_SOURCE:
106671498f30SBruce M Simpson 		case IP_UNBLOCK_SOURCE:
106771498f30SBruce M Simpson 		case IP_MSFILTER:
106871498f30SBruce M Simpson 		case MCAST_JOIN_GROUP:
106971498f30SBruce M Simpson 		case MCAST_LEAVE_GROUP:
107071498f30SBruce M Simpson 		case MCAST_JOIN_SOURCE_GROUP:
107171498f30SBruce M Simpson 		case MCAST_LEAVE_SOURCE_GROUP:
107271498f30SBruce M Simpson 		case MCAST_BLOCK_SOURCE:
107371498f30SBruce M Simpson 		case MCAST_UNBLOCK_SOURCE:
107471498f30SBruce M Simpson 			error = inp_setmoptions(inp, sopt);
1075df8bae1dSRodney W. Grimes 			break;
1076df8bae1dSRodney W. Grimes 
107733b3ac06SPeter Wemm 		case IP_PORTRANGE:
1078cfe8b629SGarrett Wollman 			error = sooptcopyin(sopt, &optval, sizeof optval,
1079cfe8b629SGarrett Wollman 					    sizeof optval);
1080cfe8b629SGarrett Wollman 			if (error)
1081cfe8b629SGarrett Wollman 				break;
108233b3ac06SPeter Wemm 
10838501a69cSRobert Watson 			INP_WLOCK(inp);
108433b3ac06SPeter Wemm 			switch (optval) {
108533b3ac06SPeter Wemm 			case IP_PORTRANGE_DEFAULT:
108633b3ac06SPeter Wemm 				inp->inp_flags &= ~(INP_LOWPORT);
108733b3ac06SPeter Wemm 				inp->inp_flags &= ~(INP_HIGHPORT);
108833b3ac06SPeter Wemm 				break;
108933b3ac06SPeter Wemm 
109033b3ac06SPeter Wemm 			case IP_PORTRANGE_HIGH:
109133b3ac06SPeter Wemm 				inp->inp_flags &= ~(INP_LOWPORT);
109233b3ac06SPeter Wemm 				inp->inp_flags |= INP_HIGHPORT;
109333b3ac06SPeter Wemm 				break;
109433b3ac06SPeter Wemm 
109533b3ac06SPeter Wemm 			case IP_PORTRANGE_LOW:
109633b3ac06SPeter Wemm 				inp->inp_flags &= ~(INP_HIGHPORT);
109733b3ac06SPeter Wemm 				inp->inp_flags |= INP_LOWPORT;
109833b3ac06SPeter Wemm 				break;
109933b3ac06SPeter Wemm 
110033b3ac06SPeter Wemm 			default:
110133b3ac06SPeter Wemm 				error = EINVAL;
110233b3ac06SPeter Wemm 				break;
110333b3ac06SPeter Wemm 			}
11048501a69cSRobert Watson 			INP_WUNLOCK(inp);
1105ce8c72b1SPeter Wemm 			break;
110633b3ac06SPeter Wemm 
1107b2630c29SGeorge V. Neville-Neil #ifdef IPSEC
11086a800098SYoshinobu Inoue 		case IP_IPSEC_POLICY:
11096a800098SYoshinobu Inoue 		{
11106a800098SYoshinobu Inoue 			caddr_t req;
11116a800098SYoshinobu Inoue 			struct mbuf *m;
11126a800098SYoshinobu Inoue 
11136a800098SYoshinobu Inoue 			if ((error = soopt_getm(sopt, &m)) != 0) /* XXX */
11146a800098SYoshinobu Inoue 				break;
11156a800098SYoshinobu Inoue 			if ((error = soopt_mcopyin(sopt, m)) != 0) /* XXX */
11166a800098SYoshinobu Inoue 				break;
11176a800098SYoshinobu Inoue 			req = mtod(m, caddr_t);
111897aa4a51SBjoern A. Zeeb 			error = ipsec_set_policy(inp, sopt->sopt_name, req,
1119c26fe973SBjoern A. Zeeb 			    m->m_len, (sopt->sopt_td != NULL) ?
1120c26fe973SBjoern A. Zeeb 			    sopt->sopt_td->td_ucred : NULL);
11216a800098SYoshinobu Inoue 			m_freem(m);
11226a800098SYoshinobu Inoue 			break;
11236a800098SYoshinobu Inoue 		}
1124b2630c29SGeorge V. Neville-Neil #endif /* IPSEC */
11256a800098SYoshinobu Inoue 
1126df8bae1dSRodney W. Grimes 		default:
1127df8bae1dSRodney W. Grimes 			error = ENOPROTOOPT;
1128df8bae1dSRodney W. Grimes 			break;
1129df8bae1dSRodney W. Grimes 		}
1130df8bae1dSRodney W. Grimes 		break;
1131df8bae1dSRodney W. Grimes 
1132cfe8b629SGarrett Wollman 	case SOPT_GET:
1133cfe8b629SGarrett Wollman 		switch (sopt->sopt_name) {
1134df8bae1dSRodney W. Grimes 		case IP_OPTIONS:
1135df8bae1dSRodney W. Grimes 		case IP_RETOPTS:
1136cfe8b629SGarrett Wollman 			if (inp->inp_options)
1137cfe8b629SGarrett Wollman 				error = sooptcopyout(sopt,
1138cfe8b629SGarrett Wollman 						     mtod(inp->inp_options,
1139cfe8b629SGarrett Wollman 							  char *),
1140cfe8b629SGarrett Wollman 						     inp->inp_options->m_len);
1141cfe8b629SGarrett Wollman 			else
1142cfe8b629SGarrett Wollman 				sopt->sopt_valsize = 0;
1143df8bae1dSRodney W. Grimes 			break;
1144df8bae1dSRodney W. Grimes 
1145df8bae1dSRodney W. Grimes 		case IP_TOS:
1146df8bae1dSRodney W. Grimes 		case IP_TTL:
1147936cd18dSAndre Oppermann 		case IP_MINTTL:
1148df8bae1dSRodney W. Grimes 		case IP_RECVOPTS:
1149df8bae1dSRodney W. Grimes 		case IP_RECVRETOPTS:
1150df8bae1dSRodney W. Grimes 		case IP_RECVDSTADDR:
11514957466bSMatthew N. Dodd 		case IP_RECVTTL:
115282c23ebaSBill Fenner 		case IP_RECVIF:
1153cfe8b629SGarrett Wollman 		case IP_PORTRANGE:
11546a800098SYoshinobu Inoue 		case IP_FAITH:
11558afa2304SBruce M Simpson 		case IP_ONESBCAST:
1156b2828ad2SAndre Oppermann 		case IP_DONTFRAG:
11575f6bf451SAttilio Rao 		case IP_BINDANY:
11583cca425bSMichael Tuexen 		case IP_RECVTOS:
1159cfe8b629SGarrett Wollman 			switch (sopt->sopt_name) {
1160df8bae1dSRodney W. Grimes 
1161df8bae1dSRodney W. Grimes 			case IP_TOS:
1162ca98b82cSDavid Greenman 				optval = inp->inp_ip_tos;
1163df8bae1dSRodney W. Grimes 				break;
1164df8bae1dSRodney W. Grimes 
1165df8bae1dSRodney W. Grimes 			case IP_TTL:
1166ca98b82cSDavid Greenman 				optval = inp->inp_ip_ttl;
1167df8bae1dSRodney W. Grimes 				break;
1168df8bae1dSRodney W. Grimes 
1169936cd18dSAndre Oppermann 			case IP_MINTTL:
1170936cd18dSAndre Oppermann 				optval = inp->inp_ip_minttl;
1171936cd18dSAndre Oppermann 				break;
1172936cd18dSAndre Oppermann 
1173df8bae1dSRodney W. Grimes #define	OPTBIT(bit)	(inp->inp_flags & bit ? 1 : 0)
1174df8bae1dSRodney W. Grimes 
1175df8bae1dSRodney W. Grimes 			case IP_RECVOPTS:
1176df8bae1dSRodney W. Grimes 				optval = OPTBIT(INP_RECVOPTS);
1177df8bae1dSRodney W. Grimes 				break;
1178df8bae1dSRodney W. Grimes 
1179df8bae1dSRodney W. Grimes 			case IP_RECVRETOPTS:
1180df8bae1dSRodney W. Grimes 				optval = OPTBIT(INP_RECVRETOPTS);
1181df8bae1dSRodney W. Grimes 				break;
1182df8bae1dSRodney W. Grimes 
1183df8bae1dSRodney W. Grimes 			case IP_RECVDSTADDR:
1184df8bae1dSRodney W. Grimes 				optval = OPTBIT(INP_RECVDSTADDR);
1185df8bae1dSRodney W. Grimes 				break;
118682c23ebaSBill Fenner 
11874957466bSMatthew N. Dodd 			case IP_RECVTTL:
11884957466bSMatthew N. Dodd 				optval = OPTBIT(INP_RECVTTL);
11894957466bSMatthew N. Dodd 				break;
11904957466bSMatthew N. Dodd 
119182c23ebaSBill Fenner 			case IP_RECVIF:
119282c23ebaSBill Fenner 				optval = OPTBIT(INP_RECVIF);
119382c23ebaSBill Fenner 				break;
1194cfe8b629SGarrett Wollman 
1195cfe8b629SGarrett Wollman 			case IP_PORTRANGE:
1196cfe8b629SGarrett Wollman 				if (inp->inp_flags & INP_HIGHPORT)
1197cfe8b629SGarrett Wollman 					optval = IP_PORTRANGE_HIGH;
1198cfe8b629SGarrett Wollman 				else if (inp->inp_flags & INP_LOWPORT)
1199cfe8b629SGarrett Wollman 					optval = IP_PORTRANGE_LOW;
1200cfe8b629SGarrett Wollman 				else
1201cfe8b629SGarrett Wollman 					optval = 0;
1202cfe8b629SGarrett Wollman 				break;
12036a800098SYoshinobu Inoue 
12046a800098SYoshinobu Inoue 			case IP_FAITH:
12056a800098SYoshinobu Inoue 				optval = OPTBIT(INP_FAITH);
12066a800098SYoshinobu Inoue 				break;
12078afa2304SBruce M Simpson 
12088afa2304SBruce M Simpson 			case IP_ONESBCAST:
12098afa2304SBruce M Simpson 				optval = OPTBIT(INP_ONESBCAST);
12108afa2304SBruce M Simpson 				break;
1211b2828ad2SAndre Oppermann 			case IP_DONTFRAG:
1212b2828ad2SAndre Oppermann 				optval = OPTBIT(INP_DONTFRAG);
1213b2828ad2SAndre Oppermann 				break;
12145f6bf451SAttilio Rao 			case IP_BINDANY:
12155f6bf451SAttilio Rao 				optval = OPTBIT(INP_BINDANY);
12165f6bf451SAttilio Rao 				break;
12173cca425bSMichael Tuexen 			case IP_RECVTOS:
12183cca425bSMichael Tuexen 				optval = OPTBIT(INP_RECVTOS);
12193cca425bSMichael Tuexen 				break;
1220df8bae1dSRodney W. Grimes 			}
1221cfe8b629SGarrett Wollman 			error = sooptcopyout(sopt, &optval, sizeof optval);
1222df8bae1dSRodney W. Grimes 			break;
1223df8bae1dSRodney W. Grimes 
122471498f30SBruce M Simpson 		/*
122571498f30SBruce M Simpson 		 * Multicast socket options are processed by the in_mcast
122671498f30SBruce M Simpson 		 * module.
122771498f30SBruce M Simpson 		 */
1228df8bae1dSRodney W. Grimes 		case IP_MULTICAST_IF:
1229f0068c4aSGarrett Wollman 		case IP_MULTICAST_VIF:
1230df8bae1dSRodney W. Grimes 		case IP_MULTICAST_TTL:
1231df8bae1dSRodney W. Grimes 		case IP_MULTICAST_LOOP:
123271498f30SBruce M Simpson 		case IP_MSFILTER:
123371498f30SBruce M Simpson 			error = inp_getmoptions(inp, sopt);
123433b3ac06SPeter Wemm 			break;
123533b3ac06SPeter Wemm 
1236b2630c29SGeorge V. Neville-Neil #ifdef IPSEC
12376a800098SYoshinobu Inoue 		case IP_IPSEC_POLICY:
12386a800098SYoshinobu Inoue 		{
1239f63e7634SYoshinobu Inoue 			struct mbuf *m = NULL;
12406a800098SYoshinobu Inoue 			caddr_t req = NULL;
1241686cdd19SJun-ichiro itojun Hagino 			size_t len = 0;
12426a800098SYoshinobu Inoue 
1243686cdd19SJun-ichiro itojun Hagino 			if (m != 0) {
12446a800098SYoshinobu Inoue 				req = mtod(m, caddr_t);
1245686cdd19SJun-ichiro itojun Hagino 				len = m->m_len;
1246686cdd19SJun-ichiro itojun Hagino 			}
124797aa4a51SBjoern A. Zeeb 			error = ipsec_get_policy(sotoinpcb(so), req, len, &m);
12486a800098SYoshinobu Inoue 			if (error == 0)
12496a800098SYoshinobu Inoue 				error = soopt_mcopyout(sopt, m); /* XXX */
1250f63e7634SYoshinobu Inoue 			if (error == 0)
12516a800098SYoshinobu Inoue 				m_freem(m);
12526a800098SYoshinobu Inoue 			break;
12536a800098SYoshinobu Inoue 		}
1254b2630c29SGeorge V. Neville-Neil #endif /* IPSEC */
12556a800098SYoshinobu Inoue 
1256df8bae1dSRodney W. Grimes 		default:
1257df8bae1dSRodney W. Grimes 			error = ENOPROTOOPT;
1258df8bae1dSRodney W. Grimes 			break;
1259df8bae1dSRodney W. Grimes 		}
1260df8bae1dSRodney W. Grimes 		break;
1261df8bae1dSRodney W. Grimes 	}
1262df8bae1dSRodney W. Grimes 	return (error);
1263df8bae1dSRodney W. Grimes }
1264df8bae1dSRodney W. Grimes 
1265df8bae1dSRodney W. Grimes /*
1266df8bae1dSRodney W. Grimes  * Routine called from ip_output() to loop back a copy of an IP multicast
1267df8bae1dSRodney W. Grimes  * packet to the input queue of a specified interface.  Note that this
1268df8bae1dSRodney W. Grimes  * calls the output routine of the loopback "driver", but with an interface
1269f5fea3ddSPaul Traina  * pointer that might NOT be a loopback interface -- evil, but easier than
1270f5fea3ddSPaul Traina  * replicating that code here.
1271df8bae1dSRodney W. Grimes  */
1272df8bae1dSRodney W. Grimes static void
1273f2565d68SRobert Watson ip_mloopback(struct ifnet *ifp, struct mbuf *m, struct sockaddr_in *dst,
1274f2565d68SRobert Watson     int hlen)
1275df8bae1dSRodney W. Grimes {
1276b375c9ecSLuigi Rizzo 	register struct ip *ip;
1277df8bae1dSRodney W. Grimes 	struct mbuf *copym;
1278df8bae1dSRodney W. Grimes 
1279e4762f75SGeorge V. Neville-Neil 	/*
1280e4762f75SGeorge V. Neville-Neil 	 * Make a deep copy of the packet because we're going to
1281e4762f75SGeorge V. Neville-Neil 	 * modify the pack in order to generate checksums.
1282e4762f75SGeorge V. Neville-Neil 	 */
1283eb1b1807SGleb Smirnoff 	copym = m_dup(m, M_NOWAIT);
128486b1d6d2SBill Fenner 	if (copym != NULL && (copym->m_flags & M_EXT || copym->m_len < hlen))
128586b1d6d2SBill Fenner 		copym = m_pullup(copym, hlen);
1286df8bae1dSRodney W. Grimes 	if (copym != NULL) {
1287390cdc6aSRuslan Ermilov 		/* If needed, compute the checksum and mark it as valid. */
1288390cdc6aSRuslan Ermilov 		if (copym->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
1289390cdc6aSRuslan Ermilov 			in_delayed_cksum(copym);
1290390cdc6aSRuslan Ermilov 			copym->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
1291390cdc6aSRuslan Ermilov 			copym->m_pkthdr.csum_flags |=
1292390cdc6aSRuslan Ermilov 			    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
1293390cdc6aSRuslan Ermilov 			copym->m_pkthdr.csum_data = 0xffff;
1294390cdc6aSRuslan Ermilov 		}
1295df8bae1dSRodney W. Grimes 		/*
1296df8bae1dSRodney W. Grimes 		 * We don't bother to fragment if the IP length is greater
1297df8bae1dSRodney W. Grimes 		 * than the interface's MTU.  Can this possibly matter?
1298df8bae1dSRodney W. Grimes 		 */
12998f134647SGleb Smirnoff 		ip = mtod(copym, struct ip *);
1300df8bae1dSRodney W. Grimes 		ip->ip_sum = 0;
130186b1d6d2SBill Fenner 		ip->ip_sum = in_cksum(copym, hlen);
1302201c2527SJulian Elischer #if 1 /* XXX */
1303201c2527SJulian Elischer 		if (dst->sin_family != AF_INET) {
13042b8a366cSJulian Elischer 			printf("ip_mloopback: bad address family %d\n",
1305201c2527SJulian Elischer 						dst->sin_family);
1306201c2527SJulian Elischer 			dst->sin_family = AF_INET;
1307201c2527SJulian Elischer 		}
1308201c2527SJulian Elischer #endif
130906a429a3SArchie Cobbs 		if_simloop(ifp, copym, dst->sin_family, 0);
1310df8bae1dSRodney W. Grimes 	}
1311df8bae1dSRodney W. Grimes }
1312