ip_output.c revision 262743
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 *    may be used to endorse or promote products derived from this software
15 *    without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 *	@(#)ip_output.c	8.3 (Berkeley) 1/21/94
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: stable/10/sys/netinet/ip_output.c 262743 2014-03-04 15:14:47Z glebius $");
34
35#include "opt_inet.h"
36#include "opt_ipfw.h"
37#include "opt_ipsec.h"
38#include "opt_kdtrace.h"
39#include "opt_mbuf_stress_test.h"
40#include "opt_mpath.h"
41#include "opt_route.h"
42#include "opt_sctp.h"
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/kernel.h>
47#include <sys/malloc.h>
48#include <sys/mbuf.h>
49#include <sys/priv.h>
50#include <sys/proc.h>
51#include <sys/protosw.h>
52#include <sys/sdt.h>
53#include <sys/socket.h>
54#include <sys/socketvar.h>
55#include <sys/sysctl.h>
56#include <sys/ucred.h>
57
58#include <net/if.h>
59#include <net/if_llatbl.h>
60#include <net/netisr.h>
61#include <net/pfil.h>
62#include <net/route.h>
63#include <net/flowtable.h>
64#ifdef RADIX_MPATH
65#include <net/radix_mpath.h>
66#endif
67#include <net/vnet.h>
68
69#include <netinet/in.h>
70#include <netinet/in_kdtrace.h>
71#include <netinet/in_systm.h>
72#include <netinet/ip.h>
73#include <netinet/in_pcb.h>
74#include <netinet/in_var.h>
75#include <netinet/ip_var.h>
76#include <netinet/ip_options.h>
77#ifdef SCTP
78#include <netinet/sctp.h>
79#include <netinet/sctp_crc32.h>
80#endif
81
82#ifdef IPSEC
83#include <netinet/ip_ipsec.h>
84#include <netipsec/ipsec.h>
85#endif /* IPSEC*/
86
87#include <machine/in_cksum.h>
88
89#include <security/mac/mac_framework.h>
90
91VNET_DEFINE(u_short, ip_id);
92
93#ifdef MBUF_STRESS_TEST
94static int mbuf_frag_size = 0;
95SYSCTL_INT(_net_inet_ip, OID_AUTO, mbuf_frag_size, CTLFLAG_RW,
96	&mbuf_frag_size, 0, "Fragment outgoing mbufs to this size");
97#endif
98
99static void	ip_mloopback
100	(struct ifnet *, struct mbuf *, struct sockaddr_in *, int);
101
102
103extern int in_mcast_loop;
104extern	struct protosw inetsw[];
105
106/*
107 * IP output.  The packet in mbuf chain m contains a skeletal IP
108 * header (with len, off, ttl, proto, tos, src, dst).
109 * The mbuf chain containing the packet will be freed.
110 * The mbuf opt, if present, will not be freed.
111 * If route ro is present and has ro_rt initialized, route lookup would be
112 * skipped and ro->ro_rt would be used. If ro is present but ro->ro_rt is NULL,
113 * then result of route lookup is stored in ro->ro_rt.
114 *
115 * In the IP forwarding case, the packet will arrive with options already
116 * inserted, so must have a NULL opt pointer.
117 */
118int
119ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro, int flags,
120    struct ip_moptions *imo, struct inpcb *inp)
121{
122	struct ip *ip;
123	struct ifnet *ifp = NULL;	/* keep compiler happy */
124	struct mbuf *m0;
125	int hlen = sizeof (struct ip);
126	int mtu;
127	int n;	/* scratchpad */
128	int error = 0;
129	struct sockaddr_in *dst;
130	const struct sockaddr_in *gw;
131	struct in_ifaddr *ia;
132	int isbroadcast;
133	uint16_t ip_len, ip_off;
134	struct route iproute;
135	struct rtentry *rte;	/* cache for ro->ro_rt */
136	struct in_addr odst;
137	struct m_tag *fwd_tag = NULL;
138#ifdef IPSEC
139	int no_route_but_check_spd = 0;
140#endif
141	M_ASSERTPKTHDR(m);
142
143	if (inp != NULL) {
144		INP_LOCK_ASSERT(inp);
145		M_SETFIB(m, inp->inp_inc.inc_fibnum);
146		if (inp->inp_flags & (INP_HW_FLOWID|INP_SW_FLOWID)) {
147			m->m_pkthdr.flowid = inp->inp_flowid;
148			m->m_flags |= M_FLOWID;
149		}
150	}
151
152	if (ro == NULL) {
153		ro = &iproute;
154		bzero(ro, sizeof (*ro));
155	}
156
157#ifdef FLOWTABLE
158	if (ro->ro_rt == NULL)
159		(void )flowtable_lookup(AF_INET, m, ro);
160#endif
161
162	if (opt) {
163		int len = 0;
164		m = ip_insertoptions(m, opt, &len);
165		if (len != 0)
166			hlen = len; /* ip->ip_hl is updated above */
167	}
168	ip = mtod(m, struct ip *);
169	ip_len = ntohs(ip->ip_len);
170	ip_off = ntohs(ip->ip_off);
171
172	/*
173	 * Fill in IP header.  If we are not allowing fragmentation,
174	 * then the ip_id field is meaningless, but we don't set it
175	 * to zero.  Doing so causes various problems when devices along
176	 * the path (routers, load balancers, firewalls, etc.) illegally
177	 * disable DF on our packet.  Note that a 16-bit counter
178	 * will wrap around in less than 10 seconds at 100 Mbit/s on a
179	 * medium with MTU 1500.  See Steven M. Bellovin, "A Technique
180	 * for Counting NATted Hosts", Proc. IMW'02, available at
181	 * <http://www.cs.columbia.edu/~smb/papers/fnat.pdf>.
182	 */
183	if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) {
184		ip->ip_v = IPVERSION;
185		ip->ip_hl = hlen >> 2;
186		ip->ip_id = ip_newid();
187		IPSTAT_INC(ips_localout);
188	} else {
189		/* Header already set, fetch hlen from there */
190		hlen = ip->ip_hl << 2;
191	}
192
193	/*
194	 * dst/gw handling:
195	 *
196	 * dst can be rewritten but always point to &ro->ro_dst
197	 * gw is readonly but can be pointed either to dst OR rt_gatewy
198	 * therefore we need restore GW if we're re-doing lookup
199	 */
200	gw = dst = (struct sockaddr_in *)&ro->ro_dst;
201again:
202	ia = NULL;
203	/*
204	 * If there is a cached route,
205	 * check that it is to the same destination
206	 * and is still up.  If not, free it and try again.
207	 * The address family should also be checked in case of sharing the
208	 * cache with IPv6.
209	 */
210	rte = ro->ro_rt;
211	if (rte && ((rte->rt_flags & RTF_UP) == 0 ||
212		    rte->rt_ifp == NULL ||
213		    !RT_LINK_IS_UP(rte->rt_ifp) ||
214			  dst->sin_family != AF_INET ||
215			  dst->sin_addr.s_addr != ip->ip_dst.s_addr)) {
216		RO_RTFREE(ro);
217		ro->ro_lle = NULL;
218		rte = NULL;
219		gw = dst;
220	}
221	if (rte == NULL && fwd_tag == NULL) {
222		bzero(dst, sizeof(*dst));
223		dst->sin_family = AF_INET;
224		dst->sin_len = sizeof(*dst);
225		dst->sin_addr = ip->ip_dst;
226	}
227	/*
228	 * If routing to interface only, short circuit routing lookup.
229	 * The use of an all-ones broadcast address implies this; an
230	 * interface is specified by the broadcast address of an interface,
231	 * or the destination address of a ptp interface.
232	 */
233	if (flags & IP_SENDONES) {
234		if ((ia = ifatoia(ifa_ifwithbroadaddr(sintosa(dst)))) == NULL &&
235		    (ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst)))) == NULL) {
236			IPSTAT_INC(ips_noroute);
237			error = ENETUNREACH;
238			goto bad;
239		}
240		ip->ip_dst.s_addr = INADDR_BROADCAST;
241		dst->sin_addr = ip->ip_dst;
242		ifp = ia->ia_ifp;
243		ip->ip_ttl = 1;
244		isbroadcast = 1;
245	} else if (flags & IP_ROUTETOIF) {
246		if ((ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst)))) == NULL &&
247		    (ia = ifatoia(ifa_ifwithnet(sintosa(dst), 0))) == NULL) {
248			IPSTAT_INC(ips_noroute);
249			error = ENETUNREACH;
250			goto bad;
251		}
252		ifp = ia->ia_ifp;
253		ip->ip_ttl = 1;
254		isbroadcast = in_broadcast(dst->sin_addr, ifp);
255	} else if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) &&
256	    imo != NULL && imo->imo_multicast_ifp != NULL) {
257		/*
258		 * Bypass the normal routing lookup for multicast
259		 * packets if the interface is specified.
260		 */
261		ifp = imo->imo_multicast_ifp;
262		IFP_TO_IA(ifp, ia);
263		isbroadcast = 0;	/* fool gcc */
264	} else {
265		/*
266		 * We want to do any cloning requested by the link layer,
267		 * as this is probably required in all cases for correct
268		 * operation (as it is for ARP).
269		 */
270		if (rte == NULL) {
271#ifdef RADIX_MPATH
272			rtalloc_mpath_fib(ro,
273			    ntohl(ip->ip_src.s_addr ^ ip->ip_dst.s_addr),
274			    inp ? inp->inp_inc.inc_fibnum : M_GETFIB(m));
275#else
276			in_rtalloc_ign(ro, 0,
277			    inp ? inp->inp_inc.inc_fibnum : M_GETFIB(m));
278#endif
279			rte = ro->ro_rt;
280		}
281		if (rte == NULL ||
282		    rte->rt_ifp == NULL ||
283		    !RT_LINK_IS_UP(rte->rt_ifp)) {
284#ifdef IPSEC
285			/*
286			 * There is no route for this packet, but it is
287			 * possible that a matching SPD entry exists.
288			 */
289			no_route_but_check_spd = 1;
290			mtu = 0; /* Silence GCC warning. */
291			goto sendit;
292#endif
293			IPSTAT_INC(ips_noroute);
294			error = EHOSTUNREACH;
295			goto bad;
296		}
297		ia = ifatoia(rte->rt_ifa);
298		ifa_ref(&ia->ia_ifa);
299		ifp = rte->rt_ifp;
300		rte->rt_rmx.rmx_pksent++;
301		if (rte->rt_flags & RTF_GATEWAY)
302			gw = (struct sockaddr_in *)rte->rt_gateway;
303		if (rte->rt_flags & RTF_HOST)
304			isbroadcast = (rte->rt_flags & RTF_BROADCAST);
305		else
306			isbroadcast = in_broadcast(gw->sin_addr, ifp);
307	}
308	/*
309	 * Calculate MTU.  If we have a route that is up, use that,
310	 * otherwise use the interface's MTU.
311	 */
312	if (rte != NULL && (rte->rt_flags & (RTF_UP|RTF_HOST))) {
313		/*
314		 * This case can happen if the user changed the MTU
315		 * of an interface after enabling IP on it.  Because
316		 * most netifs don't keep track of routes pointing to
317		 * them, there is no way for one to update all its
318		 * routes when the MTU is changed.
319		 */
320		if (rte->rt_rmx.rmx_mtu > ifp->if_mtu)
321			rte->rt_rmx.rmx_mtu = ifp->if_mtu;
322		mtu = rte->rt_rmx.rmx_mtu;
323	} else {
324		mtu = ifp->if_mtu;
325	}
326	/* Catch a possible divide by zero later. */
327	KASSERT(mtu > 0, ("%s: mtu %d <= 0, rte=%p (rt_flags=0x%08x) ifp=%p",
328	    __func__, mtu, rte, (rte != NULL) ? rte->rt_flags : 0, ifp));
329	if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) {
330		m->m_flags |= M_MCAST;
331		/*
332		 * IP destination address is multicast.  Make sure "gw"
333		 * still points to the address in "ro".  (It may have been
334		 * changed to point to a gateway address, above.)
335		 */
336		gw = dst;
337		/*
338		 * See if the caller provided any multicast options
339		 */
340		if (imo != NULL) {
341			ip->ip_ttl = imo->imo_multicast_ttl;
342			if (imo->imo_multicast_vif != -1)
343				ip->ip_src.s_addr =
344				    ip_mcast_src ?
345				    ip_mcast_src(imo->imo_multicast_vif) :
346				    INADDR_ANY;
347		} else
348			ip->ip_ttl = IP_DEFAULT_MULTICAST_TTL;
349		/*
350		 * Confirm that the outgoing interface supports multicast.
351		 */
352		if ((imo == NULL) || (imo->imo_multicast_vif == -1)) {
353			if ((ifp->if_flags & IFF_MULTICAST) == 0) {
354				IPSTAT_INC(ips_noroute);
355				error = ENETUNREACH;
356				goto bad;
357			}
358		}
359		/*
360		 * If source address not specified yet, use address
361		 * of outgoing interface.
362		 */
363		if (ip->ip_src.s_addr == INADDR_ANY) {
364			/* Interface may have no addresses. */
365			if (ia != NULL)
366				ip->ip_src = IA_SIN(ia)->sin_addr;
367		}
368
369		if ((imo == NULL && in_mcast_loop) ||
370		    (imo && imo->imo_multicast_loop)) {
371			/*
372			 * Loop back multicast datagram if not expressly
373			 * forbidden to do so, even if we are not a member
374			 * of the group; ip_input() will filter it later,
375			 * thus deferring a hash lookup and mutex acquisition
376			 * at the expense of a cheap copy using m_copym().
377			 */
378			ip_mloopback(ifp, m, dst, hlen);
379		} else {
380			/*
381			 * If we are acting as a multicast router, perform
382			 * multicast forwarding as if the packet had just
383			 * arrived on the interface to which we are about
384			 * to send.  The multicast forwarding function
385			 * recursively calls this function, using the
386			 * IP_FORWARDING flag to prevent infinite recursion.
387			 *
388			 * Multicasts that are looped back by ip_mloopback(),
389			 * above, will be forwarded by the ip_input() routine,
390			 * if necessary.
391			 */
392			if (V_ip_mrouter && (flags & IP_FORWARDING) == 0) {
393				/*
394				 * If rsvp daemon is not running, do not
395				 * set ip_moptions. This ensures that the packet
396				 * is multicast and not just sent down one link
397				 * as prescribed by rsvpd.
398				 */
399				if (!V_rsvp_on)
400					imo = NULL;
401				if (ip_mforward &&
402				    ip_mforward(ip, ifp, m, imo) != 0) {
403					m_freem(m);
404					goto done;
405				}
406			}
407		}
408
409		/*
410		 * Multicasts with a time-to-live of zero may be looped-
411		 * back, above, but must not be transmitted on a network.
412		 * Also, multicasts addressed to the loopback interface
413		 * are not sent -- the above call to ip_mloopback() will
414		 * loop back a copy. ip_input() will drop the copy if
415		 * this host does not belong to the destination group on
416		 * the loopback interface.
417		 */
418		if (ip->ip_ttl == 0 || ifp->if_flags & IFF_LOOPBACK) {
419			m_freem(m);
420			goto done;
421		}
422
423		goto sendit;
424	}
425
426	/*
427	 * If the source address is not specified yet, use the address
428	 * of the outoing interface.
429	 */
430	if (ip->ip_src.s_addr == INADDR_ANY) {
431		/* Interface may have no addresses. */
432		if (ia != NULL) {
433			ip->ip_src = IA_SIN(ia)->sin_addr;
434		}
435	}
436
437	/*
438	 * Verify that we have any chance at all of being able to queue the
439	 * packet or packet fragments, unless ALTQ is enabled on the given
440	 * interface in which case packetdrop should be done by queueing.
441	 */
442	n = ip_len / mtu + 1; /* how many fragments ? */
443	if (
444#ifdef ALTQ
445	    (!ALTQ_IS_ENABLED(&ifp->if_snd)) &&
446#endif /* ALTQ */
447	    (ifp->if_snd.ifq_len + n) >= ifp->if_snd.ifq_maxlen ) {
448		error = ENOBUFS;
449		IPSTAT_INC(ips_odropped);
450		ifp->if_snd.ifq_drops += n;
451		goto bad;
452	}
453
454	/*
455	 * Look for broadcast address and
456	 * verify user is allowed to send
457	 * such a packet.
458	 */
459	if (isbroadcast) {
460		if ((ifp->if_flags & IFF_BROADCAST) == 0) {
461			error = EADDRNOTAVAIL;
462			goto bad;
463		}
464		if ((flags & IP_ALLOWBROADCAST) == 0) {
465			error = EACCES;
466			goto bad;
467		}
468		/* don't allow broadcast messages to be fragmented */
469		if (ip_len > mtu) {
470			error = EMSGSIZE;
471			goto bad;
472		}
473		m->m_flags |= M_BCAST;
474	} else {
475		m->m_flags &= ~M_BCAST;
476	}
477
478sendit:
479#ifdef IPSEC
480	switch(ip_ipsec_output(&m, inp, &flags, &error)) {
481	case 1:
482		goto bad;
483	case -1:
484		goto done;
485	case 0:
486	default:
487		break;	/* Continue with packet processing. */
488	}
489	/*
490	 * Check if there was a route for this packet; return error if not.
491	 */
492	if (no_route_but_check_spd) {
493		IPSTAT_INC(ips_noroute);
494		error = EHOSTUNREACH;
495		goto bad;
496	}
497	/* Update variables that are affected by ipsec4_output(). */
498	ip = mtod(m, struct ip *);
499	hlen = ip->ip_hl << 2;
500#endif /* IPSEC */
501
502	/* Jump over all PFIL processing if hooks are not active. */
503	if (!PFIL_HOOKED(&V_inet_pfil_hook))
504		goto passout;
505
506	/* Run through list of hooks for output packets. */
507	odst.s_addr = ip->ip_dst.s_addr;
508	error = pfil_run_hooks(&V_inet_pfil_hook, &m, ifp, PFIL_OUT, inp);
509	if (error != 0 || m == NULL)
510		goto done;
511
512	ip = mtod(m, struct ip *);
513
514	/* See if destination IP address was changed by packet filter. */
515	if (odst.s_addr != ip->ip_dst.s_addr) {
516		m->m_flags |= M_SKIP_FIREWALL;
517		/* If destination is now ourself drop to ip_input(). */
518		if (in_localip(ip->ip_dst)) {
519			m->m_flags |= M_FASTFWD_OURS;
520			if (m->m_pkthdr.rcvif == NULL)
521				m->m_pkthdr.rcvif = V_loif;
522			if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
523				m->m_pkthdr.csum_flags |=
524				    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
525				m->m_pkthdr.csum_data = 0xffff;
526			}
527			m->m_pkthdr.csum_flags |=
528			    CSUM_IP_CHECKED | CSUM_IP_VALID;
529#ifdef SCTP
530			if (m->m_pkthdr.csum_flags & CSUM_SCTP)
531				m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
532#endif
533			error = netisr_queue(NETISR_IP, m);
534			goto done;
535		} else {
536			if (ia != NULL)
537				ifa_free(&ia->ia_ifa);
538			goto again;	/* Redo the routing table lookup. */
539		}
540	}
541
542	/* See if local, if yes, send it to netisr with IP_FASTFWD_OURS. */
543	if (m->m_flags & M_FASTFWD_OURS) {
544		if (m->m_pkthdr.rcvif == NULL)
545			m->m_pkthdr.rcvif = V_loif;
546		if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
547			m->m_pkthdr.csum_flags |=
548			    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
549			m->m_pkthdr.csum_data = 0xffff;
550		}
551#ifdef SCTP
552		if (m->m_pkthdr.csum_flags & CSUM_SCTP)
553			m->m_pkthdr.csum_flags |= CSUM_SCTP_VALID;
554#endif
555		m->m_pkthdr.csum_flags |=
556			    CSUM_IP_CHECKED | CSUM_IP_VALID;
557
558		error = netisr_queue(NETISR_IP, m);
559		goto done;
560	}
561	/* Or forward to some other address? */
562	if ((m->m_flags & M_IP_NEXTHOP) &&
563	    (fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL)) != NULL) {
564		bcopy((fwd_tag+1), dst, sizeof(struct sockaddr_in));
565		m->m_flags |= M_SKIP_FIREWALL;
566		m->m_flags &= ~M_IP_NEXTHOP;
567		m_tag_delete(m, fwd_tag);
568		if (ia != NULL)
569			ifa_free(&ia->ia_ifa);
570		goto again;
571	}
572
573passout:
574	/* 127/8 must not appear on wire - RFC1122. */
575	if ((ntohl(ip->ip_dst.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET ||
576	    (ntohl(ip->ip_src.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET) {
577		if ((ifp->if_flags & IFF_LOOPBACK) == 0) {
578			IPSTAT_INC(ips_badaddr);
579			error = EADDRNOTAVAIL;
580			goto bad;
581		}
582	}
583
584	m->m_pkthdr.csum_flags |= CSUM_IP;
585	if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA & ~ifp->if_hwassist) {
586		in_delayed_cksum(m);
587		m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
588	}
589#ifdef SCTP
590	if (m->m_pkthdr.csum_flags & CSUM_SCTP & ~ifp->if_hwassist) {
591		sctp_delayed_cksum(m, (uint32_t)(ip->ip_hl << 2));
592		m->m_pkthdr.csum_flags &= ~CSUM_SCTP;
593	}
594#endif
595
596	/*
597	 * If small enough for interface, or the interface will take
598	 * care of the fragmentation for us, we can just send directly.
599	 */
600	if (ip_len <= mtu ||
601	    (m->m_pkthdr.csum_flags & ifp->if_hwassist & CSUM_TSO) != 0 ||
602	    ((ip_off & IP_DF) == 0 && (ifp->if_hwassist & CSUM_FRAGMENT))) {
603		ip->ip_sum = 0;
604		if (m->m_pkthdr.csum_flags & CSUM_IP & ~ifp->if_hwassist) {
605			ip->ip_sum = in_cksum(m, hlen);
606			m->m_pkthdr.csum_flags &= ~CSUM_IP;
607		}
608
609		/*
610		 * Record statistics for this interface address.
611		 * With CSUM_TSO the byte/packet count will be slightly
612		 * incorrect because we count the IP+TCP headers only
613		 * once instead of for every generated packet.
614		 */
615		if (!(flags & IP_FORWARDING) && ia) {
616			if (m->m_pkthdr.csum_flags & CSUM_TSO)
617				ia->ia_ifa.if_opackets +=
618				    m->m_pkthdr.len / m->m_pkthdr.tso_segsz;
619			else
620				ia->ia_ifa.if_opackets++;
621			ia->ia_ifa.if_obytes += m->m_pkthdr.len;
622		}
623#ifdef MBUF_STRESS_TEST
624		if (mbuf_frag_size && m->m_pkthdr.len > mbuf_frag_size)
625			m = m_fragment(m, M_NOWAIT, mbuf_frag_size);
626#endif
627		/*
628		 * Reset layer specific mbuf flags
629		 * to avoid confusing lower layers.
630		 */
631		m_clrprotoflags(m);
632		IP_PROBE(send, NULL, NULL, ip, ifp, ip, NULL);
633		error = (*ifp->if_output)(ifp, m,
634		    (const struct sockaddr *)gw, ro);
635		goto done;
636	}
637
638	/* Balk when DF bit is set or the interface didn't support TSO. */
639	if ((ip_off & IP_DF) || (m->m_pkthdr.csum_flags & CSUM_TSO)) {
640		error = EMSGSIZE;
641		IPSTAT_INC(ips_cantfrag);
642		goto bad;
643	}
644
645	/*
646	 * Too large for interface; fragment if possible. If successful,
647	 * on return, m will point to a list of packets to be sent.
648	 */
649	error = ip_fragment(ip, &m, mtu, ifp->if_hwassist);
650	if (error)
651		goto bad;
652	for (; m; m = m0) {
653		m0 = m->m_nextpkt;
654		m->m_nextpkt = 0;
655		if (error == 0) {
656			/* Record statistics for this interface address. */
657			if (ia != NULL) {
658				ia->ia_ifa.if_opackets++;
659				ia->ia_ifa.if_obytes += m->m_pkthdr.len;
660			}
661			/*
662			 * Reset layer specific mbuf flags
663			 * to avoid confusing upper layers.
664			 */
665			m_clrprotoflags(m);
666
667			IP_PROBE(send, NULL, NULL, ip, ifp, ip, NULL);
668			error = (*ifp->if_output)(ifp, m,
669			    (const struct sockaddr *)gw, ro);
670		} else
671			m_freem(m);
672	}
673
674	if (error == 0)
675		IPSTAT_INC(ips_fragmented);
676
677done:
678	if (ro == &iproute)
679		RO_RTFREE(ro);
680	if (ia != NULL)
681		ifa_free(&ia->ia_ifa);
682	return (error);
683bad:
684	m_freem(m);
685	goto done;
686}
687
688/*
689 * Create a chain of fragments which fit the given mtu. m_frag points to the
690 * mbuf to be fragmented; on return it points to the chain with the fragments.
691 * Return 0 if no error. If error, m_frag may contain a partially built
692 * chain of fragments that should be freed by the caller.
693 *
694 * if_hwassist_flags is the hw offload capabilities (see if_data.ifi_hwassist)
695 */
696int
697ip_fragment(struct ip *ip, struct mbuf **m_frag, int mtu,
698    u_long if_hwassist_flags)
699{
700	int error = 0;
701	int hlen = ip->ip_hl << 2;
702	int len = (mtu - hlen) & ~7;	/* size of payload in each fragment */
703	int off;
704	struct mbuf *m0 = *m_frag;	/* the original packet		*/
705	int firstlen;
706	struct mbuf **mnext;
707	int nfrags;
708	uint16_t ip_len, ip_off;
709
710	ip_len = ntohs(ip->ip_len);
711	ip_off = ntohs(ip->ip_off);
712
713	if (ip_off & IP_DF) {	/* Fragmentation not allowed */
714		IPSTAT_INC(ips_cantfrag);
715		return EMSGSIZE;
716	}
717
718	/*
719	 * Must be able to put at least 8 bytes per fragment.
720	 */
721	if (len < 8)
722		return EMSGSIZE;
723
724	/*
725	 * If the interface will not calculate checksums on
726	 * fragmented packets, then do it here.
727	 */
728	if (m0->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
729		in_delayed_cksum(m0);
730		m0->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
731	}
732#ifdef SCTP
733	if (m0->m_pkthdr.csum_flags & CSUM_SCTP) {
734		sctp_delayed_cksum(m0, hlen);
735		m0->m_pkthdr.csum_flags &= ~CSUM_SCTP;
736	}
737#endif
738	if (len > PAGE_SIZE) {
739		/*
740		 * Fragment large datagrams such that each segment
741		 * contains a multiple of PAGE_SIZE amount of data,
742		 * plus headers. This enables a receiver to perform
743		 * page-flipping zero-copy optimizations.
744		 *
745		 * XXX When does this help given that sender and receiver
746		 * could have different page sizes, and also mtu could
747		 * be less than the receiver's page size ?
748		 */
749		int newlen;
750		struct mbuf *m;
751
752		for (m = m0, off = 0; m && (off+m->m_len) <= mtu; m = m->m_next)
753			off += m->m_len;
754
755		/*
756		 * firstlen (off - hlen) must be aligned on an
757		 * 8-byte boundary
758		 */
759		if (off < hlen)
760			goto smart_frag_failure;
761		off = ((off - hlen) & ~7) + hlen;
762		newlen = (~PAGE_MASK) & mtu;
763		if ((newlen + sizeof (struct ip)) > mtu) {
764			/* we failed, go back the default */
765smart_frag_failure:
766			newlen = len;
767			off = hlen + len;
768		}
769		len = newlen;
770
771	} else {
772		off = hlen + len;
773	}
774
775	firstlen = off - hlen;
776	mnext = &m0->m_nextpkt;		/* pointer to next packet */
777
778	/*
779	 * Loop through length of segment after first fragment,
780	 * make new header and copy data of each part and link onto chain.
781	 * Here, m0 is the original packet, m is the fragment being created.
782	 * The fragments are linked off the m_nextpkt of the original
783	 * packet, which after processing serves as the first fragment.
784	 */
785	for (nfrags = 1; off < ip_len; off += len, nfrags++) {
786		struct ip *mhip;	/* ip header on the fragment */
787		struct mbuf *m;
788		int mhlen = sizeof (struct ip);
789
790		m = m_gethdr(M_NOWAIT, MT_DATA);
791		if (m == NULL) {
792			error = ENOBUFS;
793			IPSTAT_INC(ips_odropped);
794			goto done;
795		}
796		m->m_flags |= (m0->m_flags & M_MCAST);
797		/*
798		 * In the first mbuf, leave room for the link header, then
799		 * copy the original IP header including options. The payload
800		 * goes into an additional mbuf chain returned by m_copym().
801		 */
802		m->m_data += max_linkhdr;
803		mhip = mtod(m, struct ip *);
804		*mhip = *ip;
805		if (hlen > sizeof (struct ip)) {
806			mhlen = ip_optcopy(ip, mhip) + sizeof (struct ip);
807			mhip->ip_v = IPVERSION;
808			mhip->ip_hl = mhlen >> 2;
809		}
810		m->m_len = mhlen;
811		/* XXX do we need to add ip_off below ? */
812		mhip->ip_off = ((off - hlen) >> 3) + ip_off;
813		if (off + len >= ip_len)
814			len = ip_len - off;
815		else
816			mhip->ip_off |= IP_MF;
817		mhip->ip_len = htons((u_short)(len + mhlen));
818		m->m_next = m_copym(m0, off, len, M_NOWAIT);
819		if (m->m_next == NULL) {	/* copy failed */
820			m_free(m);
821			error = ENOBUFS;	/* ??? */
822			IPSTAT_INC(ips_odropped);
823			goto done;
824		}
825		m->m_pkthdr.len = mhlen + len;
826		m->m_pkthdr.rcvif = NULL;
827#ifdef MAC
828		mac_netinet_fragment(m0, m);
829#endif
830		m->m_pkthdr.csum_flags = m0->m_pkthdr.csum_flags;
831		mhip->ip_off = htons(mhip->ip_off);
832		mhip->ip_sum = 0;
833		if (m->m_pkthdr.csum_flags & CSUM_IP & ~if_hwassist_flags) {
834			mhip->ip_sum = in_cksum(m, mhlen);
835			m->m_pkthdr.csum_flags &= ~CSUM_IP;
836		}
837		*mnext = m;
838		mnext = &m->m_nextpkt;
839	}
840	IPSTAT_ADD(ips_ofragments, nfrags);
841
842	/*
843	 * Update first fragment by trimming what's been copied out
844	 * and updating header.
845	 */
846	m_adj(m0, hlen + firstlen - ip_len);
847	m0->m_pkthdr.len = hlen + firstlen;
848	ip->ip_len = htons((u_short)m0->m_pkthdr.len);
849	ip->ip_off = htons(ip_off | IP_MF);
850	ip->ip_sum = 0;
851	if (m0->m_pkthdr.csum_flags & CSUM_IP & ~if_hwassist_flags) {
852		ip->ip_sum = in_cksum(m0, hlen);
853		m0->m_pkthdr.csum_flags &= ~CSUM_IP;
854	}
855
856done:
857	*m_frag = m0;
858	return error;
859}
860
861void
862in_delayed_cksum(struct mbuf *m)
863{
864	struct ip *ip;
865	uint16_t csum, offset, ip_len;
866
867	ip = mtod(m, struct ip *);
868	offset = ip->ip_hl << 2 ;
869	ip_len = ntohs(ip->ip_len);
870	csum = in_cksum_skip(m, ip_len, offset);
871	if (m->m_pkthdr.csum_flags & CSUM_UDP && csum == 0)
872		csum = 0xffff;
873	offset += m->m_pkthdr.csum_data;	/* checksum offset */
874
875	if (offset + sizeof(u_short) > m->m_len) {
876		printf("delayed m_pullup, m->len: %d  off: %d  p: %d\n",
877		    m->m_len, offset, ip->ip_p);
878		/*
879		 * XXX
880		 * this shouldn't happen, but if it does, the
881		 * correct behavior may be to insert the checksum
882		 * in the appropriate next mbuf in the chain.
883		 */
884		return;
885	}
886	*(u_short *)(m->m_data + offset) = csum;
887}
888
889/*
890 * IP socket option processing.
891 */
892int
893ip_ctloutput(struct socket *so, struct sockopt *sopt)
894{
895	struct	inpcb *inp = sotoinpcb(so);
896	int	error, optval;
897
898	error = optval = 0;
899	if (sopt->sopt_level != IPPROTO_IP) {
900		error = EINVAL;
901
902		if (sopt->sopt_level == SOL_SOCKET &&
903		    sopt->sopt_dir == SOPT_SET) {
904			switch (sopt->sopt_name) {
905			case SO_REUSEADDR:
906				INP_WLOCK(inp);
907				if ((so->so_options & SO_REUSEADDR) != 0)
908					inp->inp_flags2 |= INP_REUSEADDR;
909				else
910					inp->inp_flags2 &= ~INP_REUSEADDR;
911				INP_WUNLOCK(inp);
912				error = 0;
913				break;
914			case SO_REUSEPORT:
915				INP_WLOCK(inp);
916				if ((so->so_options & SO_REUSEPORT) != 0)
917					inp->inp_flags2 |= INP_REUSEPORT;
918				else
919					inp->inp_flags2 &= ~INP_REUSEPORT;
920				INP_WUNLOCK(inp);
921				error = 0;
922				break;
923			case SO_SETFIB:
924				INP_WLOCK(inp);
925				inp->inp_inc.inc_fibnum = so->so_fibnum;
926				INP_WUNLOCK(inp);
927				error = 0;
928				break;
929			default:
930				break;
931			}
932		}
933		return (error);
934	}
935
936	switch (sopt->sopt_dir) {
937	case SOPT_SET:
938		switch (sopt->sopt_name) {
939		case IP_OPTIONS:
940#ifdef notyet
941		case IP_RETOPTS:
942#endif
943		{
944			struct mbuf *m;
945			if (sopt->sopt_valsize > MLEN) {
946				error = EMSGSIZE;
947				break;
948			}
949			m = m_get(sopt->sopt_td ? M_WAITOK : M_NOWAIT, MT_DATA);
950			if (m == NULL) {
951				error = ENOBUFS;
952				break;
953			}
954			m->m_len = sopt->sopt_valsize;
955			error = sooptcopyin(sopt, mtod(m, char *), m->m_len,
956					    m->m_len);
957			if (error) {
958				m_free(m);
959				break;
960			}
961			INP_WLOCK(inp);
962			error = ip_pcbopts(inp, sopt->sopt_name, m);
963			INP_WUNLOCK(inp);
964			return (error);
965		}
966
967		case IP_BINDANY:
968			if (sopt->sopt_td != NULL) {
969				error = priv_check(sopt->sopt_td,
970				    PRIV_NETINET_BINDANY);
971				if (error)
972					break;
973			}
974			/* FALLTHROUGH */
975		case IP_TOS:
976		case IP_TTL:
977		case IP_MINTTL:
978		case IP_RECVOPTS:
979		case IP_RECVRETOPTS:
980		case IP_RECVDSTADDR:
981		case IP_RECVTTL:
982		case IP_RECVIF:
983		case IP_FAITH:
984		case IP_ONESBCAST:
985		case IP_DONTFRAG:
986		case IP_RECVTOS:
987			error = sooptcopyin(sopt, &optval, sizeof optval,
988					    sizeof optval);
989			if (error)
990				break;
991
992			switch (sopt->sopt_name) {
993			case IP_TOS:
994				inp->inp_ip_tos = optval;
995				break;
996
997			case IP_TTL:
998				inp->inp_ip_ttl = optval;
999				break;
1000
1001			case IP_MINTTL:
1002				if (optval >= 0 && optval <= MAXTTL)
1003					inp->inp_ip_minttl = optval;
1004				else
1005					error = EINVAL;
1006				break;
1007
1008#define	OPTSET(bit) do {						\
1009	INP_WLOCK(inp);							\
1010	if (optval)							\
1011		inp->inp_flags |= bit;					\
1012	else								\
1013		inp->inp_flags &= ~bit;					\
1014	INP_WUNLOCK(inp);						\
1015} while (0)
1016
1017			case IP_RECVOPTS:
1018				OPTSET(INP_RECVOPTS);
1019				break;
1020
1021			case IP_RECVRETOPTS:
1022				OPTSET(INP_RECVRETOPTS);
1023				break;
1024
1025			case IP_RECVDSTADDR:
1026				OPTSET(INP_RECVDSTADDR);
1027				break;
1028
1029			case IP_RECVTTL:
1030				OPTSET(INP_RECVTTL);
1031				break;
1032
1033			case IP_RECVIF:
1034				OPTSET(INP_RECVIF);
1035				break;
1036
1037			case IP_FAITH:
1038				OPTSET(INP_FAITH);
1039				break;
1040
1041			case IP_ONESBCAST:
1042				OPTSET(INP_ONESBCAST);
1043				break;
1044			case IP_DONTFRAG:
1045				OPTSET(INP_DONTFRAG);
1046				break;
1047			case IP_BINDANY:
1048				OPTSET(INP_BINDANY);
1049				break;
1050			case IP_RECVTOS:
1051				OPTSET(INP_RECVTOS);
1052				break;
1053			}
1054			break;
1055#undef OPTSET
1056
1057		/*
1058		 * Multicast socket options are processed by the in_mcast
1059		 * module.
1060		 */
1061		case IP_MULTICAST_IF:
1062		case IP_MULTICAST_VIF:
1063		case IP_MULTICAST_TTL:
1064		case IP_MULTICAST_LOOP:
1065		case IP_ADD_MEMBERSHIP:
1066		case IP_DROP_MEMBERSHIP:
1067		case IP_ADD_SOURCE_MEMBERSHIP:
1068		case IP_DROP_SOURCE_MEMBERSHIP:
1069		case IP_BLOCK_SOURCE:
1070		case IP_UNBLOCK_SOURCE:
1071		case IP_MSFILTER:
1072		case MCAST_JOIN_GROUP:
1073		case MCAST_LEAVE_GROUP:
1074		case MCAST_JOIN_SOURCE_GROUP:
1075		case MCAST_LEAVE_SOURCE_GROUP:
1076		case MCAST_BLOCK_SOURCE:
1077		case MCAST_UNBLOCK_SOURCE:
1078			error = inp_setmoptions(inp, sopt);
1079			break;
1080
1081		case IP_PORTRANGE:
1082			error = sooptcopyin(sopt, &optval, sizeof optval,
1083					    sizeof optval);
1084			if (error)
1085				break;
1086
1087			INP_WLOCK(inp);
1088			switch (optval) {
1089			case IP_PORTRANGE_DEFAULT:
1090				inp->inp_flags &= ~(INP_LOWPORT);
1091				inp->inp_flags &= ~(INP_HIGHPORT);
1092				break;
1093
1094			case IP_PORTRANGE_HIGH:
1095				inp->inp_flags &= ~(INP_LOWPORT);
1096				inp->inp_flags |= INP_HIGHPORT;
1097				break;
1098
1099			case IP_PORTRANGE_LOW:
1100				inp->inp_flags &= ~(INP_HIGHPORT);
1101				inp->inp_flags |= INP_LOWPORT;
1102				break;
1103
1104			default:
1105				error = EINVAL;
1106				break;
1107			}
1108			INP_WUNLOCK(inp);
1109			break;
1110
1111#ifdef IPSEC
1112		case IP_IPSEC_POLICY:
1113		{
1114			caddr_t req;
1115			struct mbuf *m;
1116
1117			if ((error = soopt_getm(sopt, &m)) != 0) /* XXX */
1118				break;
1119			if ((error = soopt_mcopyin(sopt, m)) != 0) /* XXX */
1120				break;
1121			req = mtod(m, caddr_t);
1122			error = ipsec_set_policy(inp, sopt->sopt_name, req,
1123			    m->m_len, (sopt->sopt_td != NULL) ?
1124			    sopt->sopt_td->td_ucred : NULL);
1125			m_freem(m);
1126			break;
1127		}
1128#endif /* IPSEC */
1129
1130		default:
1131			error = ENOPROTOOPT;
1132			break;
1133		}
1134		break;
1135
1136	case SOPT_GET:
1137		switch (sopt->sopt_name) {
1138		case IP_OPTIONS:
1139		case IP_RETOPTS:
1140			if (inp->inp_options)
1141				error = sooptcopyout(sopt,
1142						     mtod(inp->inp_options,
1143							  char *),
1144						     inp->inp_options->m_len);
1145			else
1146				sopt->sopt_valsize = 0;
1147			break;
1148
1149		case IP_TOS:
1150		case IP_TTL:
1151		case IP_MINTTL:
1152		case IP_RECVOPTS:
1153		case IP_RECVRETOPTS:
1154		case IP_RECVDSTADDR:
1155		case IP_RECVTTL:
1156		case IP_RECVIF:
1157		case IP_PORTRANGE:
1158		case IP_FAITH:
1159		case IP_ONESBCAST:
1160		case IP_DONTFRAG:
1161		case IP_BINDANY:
1162		case IP_RECVTOS:
1163			switch (sopt->sopt_name) {
1164
1165			case IP_TOS:
1166				optval = inp->inp_ip_tos;
1167				break;
1168
1169			case IP_TTL:
1170				optval = inp->inp_ip_ttl;
1171				break;
1172
1173			case IP_MINTTL:
1174				optval = inp->inp_ip_minttl;
1175				break;
1176
1177#define	OPTBIT(bit)	(inp->inp_flags & bit ? 1 : 0)
1178
1179			case IP_RECVOPTS:
1180				optval = OPTBIT(INP_RECVOPTS);
1181				break;
1182
1183			case IP_RECVRETOPTS:
1184				optval = OPTBIT(INP_RECVRETOPTS);
1185				break;
1186
1187			case IP_RECVDSTADDR:
1188				optval = OPTBIT(INP_RECVDSTADDR);
1189				break;
1190
1191			case IP_RECVTTL:
1192				optval = OPTBIT(INP_RECVTTL);
1193				break;
1194
1195			case IP_RECVIF:
1196				optval = OPTBIT(INP_RECVIF);
1197				break;
1198
1199			case IP_PORTRANGE:
1200				if (inp->inp_flags & INP_HIGHPORT)
1201					optval = IP_PORTRANGE_HIGH;
1202				else if (inp->inp_flags & INP_LOWPORT)
1203					optval = IP_PORTRANGE_LOW;
1204				else
1205					optval = 0;
1206				break;
1207
1208			case IP_FAITH:
1209				optval = OPTBIT(INP_FAITH);
1210				break;
1211
1212			case IP_ONESBCAST:
1213				optval = OPTBIT(INP_ONESBCAST);
1214				break;
1215			case IP_DONTFRAG:
1216				optval = OPTBIT(INP_DONTFRAG);
1217				break;
1218			case IP_BINDANY:
1219				optval = OPTBIT(INP_BINDANY);
1220				break;
1221			case IP_RECVTOS:
1222				optval = OPTBIT(INP_RECVTOS);
1223				break;
1224			}
1225			error = sooptcopyout(sopt, &optval, sizeof optval);
1226			break;
1227
1228		/*
1229		 * Multicast socket options are processed by the in_mcast
1230		 * module.
1231		 */
1232		case IP_MULTICAST_IF:
1233		case IP_MULTICAST_VIF:
1234		case IP_MULTICAST_TTL:
1235		case IP_MULTICAST_LOOP:
1236		case IP_MSFILTER:
1237			error = inp_getmoptions(inp, sopt);
1238			break;
1239
1240#ifdef IPSEC
1241		case IP_IPSEC_POLICY:
1242		{
1243			struct mbuf *m = NULL;
1244			caddr_t req = NULL;
1245			size_t len = 0;
1246
1247			if (m != 0) {
1248				req = mtod(m, caddr_t);
1249				len = m->m_len;
1250			}
1251			error = ipsec_get_policy(sotoinpcb(so), req, len, &m);
1252			if (error == 0)
1253				error = soopt_mcopyout(sopt, m); /* XXX */
1254			if (error == 0)
1255				m_freem(m);
1256			break;
1257		}
1258#endif /* IPSEC */
1259
1260		default:
1261			error = ENOPROTOOPT;
1262			break;
1263		}
1264		break;
1265	}
1266	return (error);
1267}
1268
1269/*
1270 * Routine called from ip_output() to loop back a copy of an IP multicast
1271 * packet to the input queue of a specified interface.  Note that this
1272 * calls the output routine of the loopback "driver", but with an interface
1273 * pointer that might NOT be a loopback interface -- evil, but easier than
1274 * replicating that code here.
1275 */
1276static void
1277ip_mloopback(struct ifnet *ifp, struct mbuf *m, struct sockaddr_in *dst,
1278    int hlen)
1279{
1280	register struct ip *ip;
1281	struct mbuf *copym;
1282
1283	/*
1284	 * Make a deep copy of the packet because we're going to
1285	 * modify the pack in order to generate checksums.
1286	 */
1287	copym = m_dup(m, M_NOWAIT);
1288	if (copym != NULL && (copym->m_flags & M_EXT || copym->m_len < hlen))
1289		copym = m_pullup(copym, hlen);
1290	if (copym != NULL) {
1291		/* If needed, compute the checksum and mark it as valid. */
1292		if (copym->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
1293			in_delayed_cksum(copym);
1294			copym->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
1295			copym->m_pkthdr.csum_flags |=
1296			    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
1297			copym->m_pkthdr.csum_data = 0xffff;
1298		}
1299		/*
1300		 * We don't bother to fragment if the IP length is greater
1301		 * than the interface's MTU.  Can this possibly matter?
1302		 */
1303		ip = mtod(copym, struct ip *);
1304		ip->ip_sum = 0;
1305		ip->ip_sum = in_cksum(copym, hlen);
1306#if 1 /* XXX */
1307		if (dst->sin_family != AF_INET) {
1308			printf("ip_mloopback: bad address family %d\n",
1309						dst->sin_family);
1310			dst->sin_family = AF_INET;
1311		}
1312#endif
1313		if_simloop(ifp, copym, dst->sin_family, 0);
1314	}
1315}
1316