xref: /dragonfly/sys/netinet/ip_input.c (revision 63ab6604)
1 /*
2  * Copyright (c) 2003, 2004 Jeffrey M. Hsu.  All rights reserved.
3  * Copyright (c) 2003, 2004 The DragonFly Project.  All rights reserved.
4  *
5  * This code is derived from software contributed to The DragonFly Project
6  * by Jeffrey M. Hsu.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of The DragonFly Project nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific, prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 
34 /*
35  * Copyright (c) 1982, 1986, 1988, 1993
36  *	The Regents of the University of California.  All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  * 1. Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions and the following disclaimer.
43  * 2. Redistributions in binary form must reproduce the above copyright
44  *    notice, this list of conditions and the following disclaimer in the
45  *    documentation and/or other materials provided with the distribution.
46  * 3. All advertising materials mentioning features or use of this software
47  *    must display the following acknowledgement:
48  *	This product includes software developed by the University of
49  *	California, Berkeley and its contributors.
50  * 4. Neither the name of the University nor the names of its contributors
51  *    may be used to endorse or promote products derived from this software
52  *    without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64  * SUCH DAMAGE.
65  *
66  *	@(#)ip_input.c	8.2 (Berkeley) 1/4/94
67  * $FreeBSD: src/sys/netinet/ip_input.c,v 1.130.2.52 2003/03/07 07:01:28 silby Exp $
68  * $DragonFly: src/sys/netinet/ip_input.c,v 1.115 2008/10/28 07:09:26 sephe Exp $
69  */
70 
71 #define	_IP_VHL
72 
73 #include "opt_bootp.h"
74 #include "opt_ipfw.h"
75 #include "opt_ipdn.h"
76 #include "opt_ipdivert.h"
77 #include "opt_ipfilter.h"
78 #include "opt_ipstealth.h"
79 #include "opt_ipsec.h"
80 
81 #include <sys/param.h>
82 #include <sys/systm.h>
83 #include <sys/mbuf.h>
84 #include <sys/malloc.h>
85 #include <sys/mpipe.h>
86 #include <sys/domain.h>
87 #include <sys/protosw.h>
88 #include <sys/socket.h>
89 #include <sys/time.h>
90 #include <sys/globaldata.h>
91 #include <sys/thread.h>
92 #include <sys/kernel.h>
93 #include <sys/syslog.h>
94 #include <sys/sysctl.h>
95 #include <sys/in_cksum.h>
96 #include <sys/lock.h>
97 
98 #include <machine/stdarg.h>
99 
100 #include <net/if.h>
101 #include <net/if_types.h>
102 #include <net/if_var.h>
103 #include <net/if_dl.h>
104 #include <net/pfil.h>
105 #include <net/route.h>
106 #include <net/netisr.h>
107 
108 #include <netinet/in.h>
109 #include <netinet/in_systm.h>
110 #include <netinet/in_var.h>
111 #include <netinet/ip.h>
112 #include <netinet/in_pcb.h>
113 #include <netinet/ip_var.h>
114 #include <netinet/ip_icmp.h>
115 #include <netinet/ip_divert.h>
116 #include <netinet/ip_flow.h>
117 
118 #include <sys/thread2.h>
119 #include <sys/msgport2.h>
120 #include <net/netmsg2.h>
121 
122 #include <sys/socketvar.h>
123 
124 #include <net/ipfw/ip_fw.h>
125 #include <net/dummynet/ip_dummynet.h>
126 
127 #ifdef IPSEC
128 #include <netinet6/ipsec.h>
129 #include <netproto/key/key.h>
130 #endif
131 
132 #ifdef FAST_IPSEC
133 #include <netproto/ipsec/ipsec.h>
134 #include <netproto/ipsec/key.h>
135 #endif
136 
137 int rsvp_on = 0;
138 static int ip_rsvp_on;
139 struct socket *ip_rsvpd;
140 
141 int ip_mpsafe = 1;
142 TUNABLE_INT("net.inet.ip.mpsafe", &ip_mpsafe);
143 
144 int ipforwarding = 0;
145 SYSCTL_INT(_net_inet_ip, IPCTL_FORWARDING, forwarding, CTLFLAG_RW,
146     &ipforwarding, 0, "Enable IP forwarding between interfaces");
147 
148 static int ipsendredirects = 1; /* XXX */
149 SYSCTL_INT(_net_inet_ip, IPCTL_SENDREDIRECTS, redirect, CTLFLAG_RW,
150     &ipsendredirects, 0, "Enable sending IP redirects");
151 
152 int ip_defttl = IPDEFTTL;
153 SYSCTL_INT(_net_inet_ip, IPCTL_DEFTTL, ttl, CTLFLAG_RW,
154     &ip_defttl, 0, "Maximum TTL on IP packets");
155 
156 static int ip_dosourceroute = 0;
157 SYSCTL_INT(_net_inet_ip, IPCTL_SOURCEROUTE, sourceroute, CTLFLAG_RW,
158     &ip_dosourceroute, 0, "Enable forwarding source routed IP packets");
159 
160 static int ip_acceptsourceroute = 0;
161 SYSCTL_INT(_net_inet_ip, IPCTL_ACCEPTSOURCEROUTE, accept_sourceroute,
162     CTLFLAG_RW, &ip_acceptsourceroute, 0,
163     "Enable accepting source routed IP packets");
164 
165 static int ip_keepfaith = 0;
166 SYSCTL_INT(_net_inet_ip, IPCTL_KEEPFAITH, keepfaith, CTLFLAG_RW,
167     &ip_keepfaith, 0,
168     "Enable packet capture for FAITH IPv4->IPv6 translator daemon");
169 
170 static int nipq = 0;	/* total # of reass queues */
171 static int maxnipq;
172 SYSCTL_INT(_net_inet_ip, OID_AUTO, maxfragpackets, CTLFLAG_RW,
173     &maxnipq, 0,
174     "Maximum number of IPv4 fragment reassembly queue entries");
175 
176 static int maxfragsperpacket;
177 SYSCTL_INT(_net_inet_ip, OID_AUTO, maxfragsperpacket, CTLFLAG_RW,
178     &maxfragsperpacket, 0,
179     "Maximum number of IPv4 fragments allowed per packet");
180 
181 static int ip_sendsourcequench = 0;
182 SYSCTL_INT(_net_inet_ip, OID_AUTO, sendsourcequench, CTLFLAG_RW,
183     &ip_sendsourcequench, 0,
184     "Enable the transmission of source quench packets");
185 
186 int ip_do_randomid = 1;
187 SYSCTL_INT(_net_inet_ip, OID_AUTO, random_id, CTLFLAG_RW,
188     &ip_do_randomid, 0,
189     "Assign random ip_id values");
190 /*
191  * XXX - Setting ip_checkinterface mostly implements the receive side of
192  * the Strong ES model described in RFC 1122, but since the routing table
193  * and transmit implementation do not implement the Strong ES model,
194  * setting this to 1 results in an odd hybrid.
195  *
196  * XXX - ip_checkinterface currently must be disabled if you use ipnat
197  * to translate the destination address to another local interface.
198  *
199  * XXX - ip_checkinterface must be disabled if you add IP aliases
200  * to the loopback interface instead of the interface where the
201  * packets for those addresses are received.
202  */
203 static int ip_checkinterface = 0;
204 SYSCTL_INT(_net_inet_ip, OID_AUTO, check_interface, CTLFLAG_RW,
205     &ip_checkinterface, 0, "Verify packet arrives on correct interface");
206 
207 #ifdef DIAGNOSTIC
208 static int ipprintfs = 0;
209 #endif
210 
211 extern	int udp_mpsafe_proto;
212 extern	int tcp_mpsafe_proto;
213 
214 extern	struct domain inetdomain;
215 extern	struct protosw inetsw[];
216 u_char	ip_protox[IPPROTO_MAX];
217 struct	in_ifaddrhead in_ifaddrheads[MAXCPU];	/* first inet address */
218 struct	in_ifaddrhashhead *in_ifaddrhashtbls[MAXCPU];
219 						/* inet addr hash table */
220 u_long	in_ifaddrhmask;				/* mask for hash table */
221 
222 struct ip_stats ipstats_percpu[MAXCPU];
223 #ifdef SMP
224 static int
225 sysctl_ipstats(SYSCTL_HANDLER_ARGS)
226 {
227 	int cpu, error = 0;
228 
229 	for (cpu = 0; cpu < ncpus; ++cpu) {
230 		if ((error = SYSCTL_OUT(req, &ipstats_percpu[cpu],
231 					sizeof(struct ip_stats))))
232 			break;
233 		if ((error = SYSCTL_IN(req, &ipstats_percpu[cpu],
234 				       sizeof(struct ip_stats))))
235 			break;
236 	}
237 
238 	return (error);
239 }
240 SYSCTL_PROC(_net_inet_ip, IPCTL_STATS, stats, (CTLTYPE_OPAQUE | CTLFLAG_RW),
241     0, 0, sysctl_ipstats, "S,ip_stats", "IP statistics");
242 #else
243 SYSCTL_STRUCT(_net_inet_ip, IPCTL_STATS, stats, CTLFLAG_RW,
244     &ipstat, ip_stats, "IP statistics");
245 #endif
246 
247 /* Packet reassembly stuff */
248 #define	IPREASS_NHASH_LOG2	6
249 #define	IPREASS_NHASH		(1 << IPREASS_NHASH_LOG2)
250 #define	IPREASS_HMASK		(IPREASS_NHASH - 1)
251 #define	IPREASS_HASH(x,y)						\
252     (((((x) & 0xF) | ((((x) >> 8) & 0xF) << 4)) ^ (y)) & IPREASS_HMASK)
253 
254 static struct ipq ipq[IPREASS_NHASH];
255 
256 #ifdef IPCTL_DEFMTU
257 SYSCTL_INT(_net_inet_ip, IPCTL_DEFMTU, mtu, CTLFLAG_RW,
258     &ip_mtu, 0, "Default MTU");
259 #endif
260 
261 #ifdef IPSTEALTH
262 static int ipstealth = 0;
263 SYSCTL_INT(_net_inet_ip, OID_AUTO, stealth, CTLFLAG_RW, &ipstealth, 0, "");
264 #else
265 static const int ipstealth = 0;
266 #endif
267 
268 struct mbuf *(*ip_divert_p)(struct mbuf *, int, int);
269 
270 struct pfil_head inet_pfil_hook;
271 
272 /*
273  * struct ip_srcrt_opt is used to store packet state while it travels
274  * through the stack.
275  *
276  * XXX Note that the code even makes assumptions on the size and
277  * alignment of fields inside struct ip_srcrt so e.g. adding some
278  * fields will break the code.  This needs to be fixed.
279  *
280  * We need to save the IP options in case a protocol wants to respond
281  * to an incoming packet over the same route if the packet got here
282  * using IP source routing.  This allows connection establishment and
283  * maintenance when the remote end is on a network that is not known
284  * to us.
285  */
286 struct ip_srcrt {
287 	struct	in_addr dst;			/* final destination */
288 	char	nop;				/* one NOP to align */
289 	char	srcopt[IPOPT_OFFSET + 1];	/* OPTVAL, OLEN and OFFSET */
290 	struct	in_addr route[MAX_IPOPTLEN/sizeof(struct in_addr)];
291 };
292 
293 struct ip_srcrt_opt {
294 	int		ip_nhops;
295 	struct ip_srcrt	ip_srcrt;
296 };
297 
298 static MALLOC_DEFINE(M_IPQ, "ipq", "IP Fragment Management");
299 static struct malloc_pipe ipq_mpipe;
300 
301 static void		save_rte(struct mbuf *, u_char *, struct in_addr);
302 static int		ip_dooptions(struct mbuf *m, int, struct sockaddr_in *);
303 static void		ip_freef(struct ipq *);
304 static void		ip_input_handler(struct netmsg *);
305 
306 /*
307  * IP initialization: fill in IP protocol switch table.
308  * All protocols not implemented in kernel go to raw IP protocol handler.
309  */
310 void
311 ip_init(void)
312 {
313 	struct protosw *pr;
314 	uint32_t flags;
315 	int i;
316 #ifdef SMP
317 	int cpu;
318 #endif
319 
320 	/*
321 	 * Make sure we can handle a reasonable number of fragments but
322 	 * cap it at 4000 (XXX).
323 	 */
324 	mpipe_init(&ipq_mpipe, M_IPQ, sizeof(struct ipq),
325 		    IFQ_MAXLEN, 4000, 0, NULL);
326 	for (i = 0; i < ncpus; ++i) {
327 		TAILQ_INIT(&in_ifaddrheads[i]);
328 		in_ifaddrhashtbls[i] =
329 			hashinit(INADDR_NHASH, M_IFADDR, &in_ifaddrhmask);
330 	}
331 	pr = pffindproto(PF_INET, IPPROTO_RAW, SOCK_RAW);
332 	if (pr == NULL)
333 		panic("ip_init");
334 	for (i = 0; i < IPPROTO_MAX; i++)
335 		ip_protox[i] = pr - inetsw;
336 	for (pr = inetdomain.dom_protosw;
337 	     pr < inetdomain.dom_protoswNPROTOSW; pr++) {
338 		if (pr->pr_domain->dom_family == PF_INET && pr->pr_protocol) {
339 			if (pr->pr_protocol != IPPROTO_RAW)
340 				ip_protox[pr->pr_protocol] = pr - inetsw;
341 
342 			/* XXX */
343 			switch (pr->pr_protocol) {
344 			case IPPROTO_TCP:
345 				if (tcp_mpsafe_proto)
346 					pr->pr_flags |= PR_MPSAFE;
347 				break;
348 
349 			case IPPROTO_UDP:
350 				if (udp_mpsafe_proto)
351 					pr->pr_flags |= PR_MPSAFE;
352 				break;
353 			}
354 		}
355 	}
356 
357 	inet_pfil_hook.ph_type = PFIL_TYPE_AF;
358 	inet_pfil_hook.ph_af = AF_INET;
359 	if ((i = pfil_head_register(&inet_pfil_hook)) != 0) {
360 		kprintf("%s: WARNING: unable to register pfil hook, "
361 			"error %d\n", __func__, i);
362 	}
363 
364 	for (i = 0; i < IPREASS_NHASH; i++)
365 		ipq[i].next = ipq[i].prev = &ipq[i];
366 
367 	maxnipq = nmbclusters / 32;
368 	maxfragsperpacket = 16;
369 
370 	ip_id = time_second & 0xffff;
371 
372 	/*
373 	 * Initialize IP statistics counters for each CPU.
374 	 *
375 	 */
376 #ifdef SMP
377 	for (cpu = 0; cpu < ncpus; ++cpu) {
378 		bzero(&ipstats_percpu[cpu], sizeof(struct ip_stats));
379 	}
380 #else
381 	bzero(&ipstat, sizeof(struct ip_stats));
382 #endif
383 
384 #if defined(IPSEC) || defined(FAST_IPSEC)
385 	/* XXX IPSEC is not MPSAFE yet */
386 	flags = NETISR_FLAG_NOTMPSAFE;
387 #else
388 	if (ip_mpsafe) {
389 		kprintf("ip: MPSAFE\n");
390 		flags = NETISR_FLAG_MPSAFE;
391 	} else {
392 		flags = NETISR_FLAG_NOTMPSAFE;
393 	}
394 #endif
395 	netisr_register(NETISR_IP, ip_mport_in, ip_mport_pktinfo,
396 			ip_input_handler, flags);
397 }
398 
399 /* Do transport protocol processing. */
400 static void
401 transport_processing_oncpu(struct mbuf *m, int hlen, struct ip *ip)
402 {
403 	const struct protosw *pr = &inetsw[ip_protox[ip->ip_p]];
404 
405 	/*
406 	 * Switch out to protocol's input routine.
407 	 */
408 	PR_GET_MPLOCK(pr);
409 	pr->pr_input(m, hlen, ip->ip_p);
410 	PR_REL_MPLOCK(pr);
411 }
412 
413 static void
414 transport_processing_handler(netmsg_t netmsg)
415 {
416 	struct netmsg_packet *pmsg = (struct netmsg_packet *)netmsg;
417 	struct ip *ip;
418 	int hlen;
419 
420 	ip = mtod(pmsg->nm_packet, struct ip *);
421 	hlen = pmsg->nm_netmsg.nm_lmsg.u.ms_result;
422 
423 	transport_processing_oncpu(pmsg->nm_packet, hlen, ip);
424 	/* netmsg was embedded in the mbuf, do not reply! */
425 }
426 
427 static void
428 ip_input_handler(struct netmsg *msg0)
429 {
430 	struct mbuf *m = ((struct netmsg_packet *)msg0)->nm_packet;
431 
432 	ip_input(m);
433 	/* msg0 was embedded in the mbuf, do not reply! */
434 }
435 
436 /*
437  * IP input routine.  Checksum and byte swap header.  If fragmented
438  * try to reassemble.  Process options.  Pass to next level.
439  */
440 void
441 ip_input(struct mbuf *m)
442 {
443 	struct ip *ip;
444 	struct in_ifaddr *ia = NULL;
445 	struct in_ifaddr_container *iac;
446 	int hlen, checkif;
447 	u_short sum;
448 	struct in_addr pkt_dst;
449 	boolean_t using_srcrt = FALSE;		/* forward (by PFIL_HOOKS) */
450 	boolean_t needredispatch = FALSE;
451 	struct in_addr odst;			/* original dst address(NAT) */
452 	struct m_tag *mtag;
453 	struct sockaddr_in *next_hop = NULL;
454 #ifdef FAST_IPSEC
455 	struct tdb_ident *tdbi;
456 	struct secpolicy *sp;
457 	int error;
458 #endif
459 
460 	M_ASSERTPKTHDR(m);
461 
462 	if (m->m_pkthdr.fw_flags & IPFORWARD_MBUF_TAGGED) {
463 		/* Next hop */
464 		mtag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL);
465 		KKASSERT(mtag != NULL);
466 		next_hop = m_tag_data(mtag);
467 	}
468 
469 	if (m->m_pkthdr.fw_flags & DUMMYNET_MBUF_TAGGED) {
470 		/* dummynet already filtered us */
471 		ip = mtod(m, struct ip *);
472 		hlen = IP_VHL_HL(ip->ip_vhl) << 2;
473 		goto iphack;
474 	}
475 
476 	ipstat.ips_total++;
477 
478 	/* length checks already done in ip_mport() */
479 	KASSERT(m->m_len >= sizeof(struct ip), ("IP header not in one mbuf"));
480 	ip = mtod(m, struct ip *);
481 
482 	if (IP_VHL_V(ip->ip_vhl) != IPVERSION) {
483 		ipstat.ips_badvers++;
484 		goto bad;
485 	}
486 
487 	hlen = IP_VHL_HL(ip->ip_vhl) << 2;
488 	/* length checks already done in ip_mport() */
489 	KASSERT(hlen >= sizeof(struct ip), ("IP header len too small"));
490 	KASSERT(m->m_len >= hlen, ("complete IP header not in one mbuf"));
491 
492 	/* 127/8 must not appear on wire - RFC1122 */
493 	if ((ntohl(ip->ip_dst.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET ||
494 	    (ntohl(ip->ip_src.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET) {
495 		if (!(m->m_pkthdr.rcvif->if_flags & IFF_LOOPBACK)) {
496 			ipstat.ips_badaddr++;
497 			goto bad;
498 		}
499 	}
500 
501 	if (m->m_pkthdr.csum_flags & CSUM_IP_CHECKED) {
502 		sum = !(m->m_pkthdr.csum_flags & CSUM_IP_VALID);
503 	} else {
504 		if (hlen == sizeof(struct ip))
505 			sum = in_cksum_hdr(ip);
506 		else
507 			sum = in_cksum(m, hlen);
508 	}
509 	if (sum != 0) {
510 		ipstat.ips_badsum++;
511 		goto bad;
512 	}
513 
514 #ifdef ALTQ
515 	if (altq_input != NULL && (*altq_input)(m, AF_INET) == 0) {
516 		/* packet is dropped by traffic conditioner */
517 		return;
518 	}
519 #endif
520 	/*
521 	 * Convert fields to host representation.
522 	 */
523 	ip->ip_len = ntohs(ip->ip_len);
524 	ip->ip_off = ntohs(ip->ip_off);
525 
526 	/* length checks already done in ip_mport() */
527 	KASSERT(ip->ip_len >= hlen, ("total length less then header length"));
528 	KASSERT(m->m_pkthdr.len >= ip->ip_len, ("mbuf too short"));
529 
530 	/*
531 	 * Trim mbufs if longer than the IP header would have us expect.
532 	 */
533 	if (m->m_pkthdr.len > ip->ip_len) {
534 		if (m->m_len == m->m_pkthdr.len) {
535 			m->m_len = ip->ip_len;
536 			m->m_pkthdr.len = ip->ip_len;
537 		} else {
538 			m_adj(m, ip->ip_len - m->m_pkthdr.len);
539 		}
540 	}
541 #if defined(IPSEC) && !defined(IPSEC_FILTERGIF)
542 	/*
543 	 * Bypass packet filtering for packets from a tunnel (gif).
544 	 */
545 	if (ipsec_gethist(m, NULL))
546 		goto pass;
547 #endif
548 
549 	/*
550 	 * IpHack's section.
551 	 * Right now when no processing on packet has done
552 	 * and it is still fresh out of network we do our black
553 	 * deals with it.
554 	 * - Firewall: deny/allow/divert
555 	 * - Xlate: translate packet's addr/port (NAT).
556 	 * - Pipe: pass pkt through dummynet.
557 	 * - Wrap: fake packet's addr/port <unimpl.>
558 	 * - Encapsulate: put it in another IP and send out. <unimp.>
559 	 */
560 
561 iphack:
562 	/*
563 	 * If we've been forwarded from the output side, then
564 	 * skip the firewall a second time
565 	 */
566 	if (next_hop != NULL)
567 		goto ours;
568 
569 	/* No pfil hooks */
570 	if (!pfil_has_hooks(&inet_pfil_hook)) {
571 		if (m->m_pkthdr.fw_flags & DUMMYNET_MBUF_TAGGED) {
572 			/*
573 			 * Strip dummynet tags from stranded packets
574 			 */
575 			mtag = m_tag_find(m, PACKET_TAG_DUMMYNET, NULL);
576 			KKASSERT(mtag != NULL);
577 			m_tag_delete(m, mtag);
578 			m->m_pkthdr.fw_flags &= ~DUMMYNET_MBUF_TAGGED;
579 		}
580 		goto pass;
581 	}
582 
583 	/*
584 	 * Run through list of hooks for input packets.
585 	 *
586 	 * NB: Beware of the destination address changing (e.g.
587 	 *     by NAT rewriting). When this happens, tell
588 	 *     ip_forward to do the right thing.
589 	 */
590 	odst = ip->ip_dst;
591 	if (pfil_run_hooks(&inet_pfil_hook, &m, m->m_pkthdr.rcvif, PFIL_IN))
592 		return;
593 	if (m == NULL)	/* consumed by filter */
594 		return;
595 	ip = mtod(m, struct ip *);
596 	hlen = IP_VHL_HL(ip->ip_vhl) << 2;
597 	using_srcrt = (odst.s_addr != ip->ip_dst.s_addr);
598 
599 	if (m->m_pkthdr.fw_flags & IPFORWARD_MBUF_TAGGED) {
600 		mtag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL);
601 		KKASSERT(mtag != NULL);
602 		next_hop = m_tag_data(mtag);
603 	}
604 	if (m->m_pkthdr.fw_flags & DUMMYNET_MBUF_TAGGED) {
605 		ip_dn_queue(m);
606 		return;
607 	}
608 	if (m->m_pkthdr.fw_flags & FW_MBUF_REDISPATCH) {
609 		needredispatch = TRUE;
610 		m->m_pkthdr.fw_flags &= ~FW_MBUF_REDISPATCH;
611 	}
612 pass:
613 	/*
614 	 * Process options and, if not destined for us,
615 	 * ship it on.  ip_dooptions returns 1 when an
616 	 * error was detected (causing an icmp message
617 	 * to be sent and the original packet to be freed).
618 	 */
619 	if (hlen > sizeof(struct ip) && ip_dooptions(m, 0, next_hop))
620 		return;
621 
622 	/* greedy RSVP, snatches any PATH packet of the RSVP protocol and no
623 	 * matter if it is destined to another node, or whether it is
624 	 * a multicast one, RSVP wants it! and prevents it from being forwarded
625 	 * anywhere else. Also checks if the rsvp daemon is running before
626 	 * grabbing the packet.
627 	 */
628 	if (rsvp_on && ip->ip_p == IPPROTO_RSVP)
629 		goto ours;
630 
631 	/*
632 	 * Check our list of addresses, to see if the packet is for us.
633 	 * If we don't have any addresses, assume any unicast packet
634 	 * we receive might be for us (and let the upper layers deal
635 	 * with it).
636 	 */
637 	if (TAILQ_EMPTY(&in_ifaddrheads[mycpuid]) &&
638 	    !(m->m_flags & (M_MCAST | M_BCAST)))
639 		goto ours;
640 
641 	/*
642 	 * Cache the destination address of the packet; this may be
643 	 * changed by use of 'ipfw fwd'.
644 	 */
645 	pkt_dst = next_hop ? next_hop->sin_addr : ip->ip_dst;
646 
647 	/*
648 	 * Enable a consistency check between the destination address
649 	 * and the arrival interface for a unicast packet (the RFC 1122
650 	 * strong ES model) if IP forwarding is disabled and the packet
651 	 * is not locally generated and the packet is not subject to
652 	 * 'ipfw fwd'.
653 	 *
654 	 * XXX - Checking also should be disabled if the destination
655 	 * address is ipnat'ed to a different interface.
656 	 *
657 	 * XXX - Checking is incompatible with IP aliases added
658 	 * to the loopback interface instead of the interface where
659 	 * the packets are received.
660 	 */
661 	checkif = ip_checkinterface &&
662 		  !ipforwarding &&
663 		  m->m_pkthdr.rcvif != NULL &&
664 		  !(m->m_pkthdr.rcvif->if_flags & IFF_LOOPBACK) &&
665 		  next_hop == NULL;
666 
667 	/*
668 	 * Check for exact addresses in the hash bucket.
669 	 */
670 	LIST_FOREACH(iac, INADDR_HASH(pkt_dst.s_addr), ia_hash) {
671 		ia = iac->ia;
672 
673 		/*
674 		 * If the address matches, verify that the packet
675 		 * arrived via the correct interface if checking is
676 		 * enabled.
677 		 */
678 		if (IA_SIN(ia)->sin_addr.s_addr == pkt_dst.s_addr &&
679 		    (!checkif || ia->ia_ifp == m->m_pkthdr.rcvif))
680 			goto ours;
681 	}
682 	ia = NULL;
683 
684 	/*
685 	 * Check for broadcast addresses.
686 	 *
687 	 * Only accept broadcast packets that arrive via the matching
688 	 * interface.  Reception of forwarded directed broadcasts would
689 	 * be handled via ip_forward() and ether_output() with the loopback
690 	 * into the stack for SIMPLEX interfaces handled by ether_output().
691 	 */
692 	if (m->m_pkthdr.rcvif->if_flags & IFF_BROADCAST) {
693 		struct ifaddr_container *ifac;
694 
695 		TAILQ_FOREACH(ifac, &m->m_pkthdr.rcvif->if_addrheads[mycpuid],
696 			      ifa_link) {
697 			struct ifaddr *ifa = ifac->ifa;
698 
699 			if (ifa->ifa_addr == NULL) /* shutdown/startup race */
700 				continue;
701 			if (ifa->ifa_addr->sa_family != AF_INET)
702 				continue;
703 			ia = ifatoia(ifa);
704 			if (satosin(&ia->ia_broadaddr)->sin_addr.s_addr ==
705 								pkt_dst.s_addr)
706 				goto ours;
707 			if (ia->ia_netbroadcast.s_addr == pkt_dst.s_addr)
708 				goto ours;
709 #ifdef BOOTP_COMPAT
710 			if (IA_SIN(ia)->sin_addr.s_addr == INADDR_ANY)
711 				goto ours;
712 #endif
713 		}
714 	}
715 	if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) {
716 		struct in_multi *inm;
717 
718 		/* XXX Multicast is not MPSAFE yet */
719 		get_mplock();
720 
721 		if (ip_mrouter != NULL) {
722 			/*
723 			 * If we are acting as a multicast router, all
724 			 * incoming multicast packets are passed to the
725 			 * kernel-level multicast forwarding function.
726 			 * The packet is returned (relatively) intact; if
727 			 * ip_mforward() returns a non-zero value, the packet
728 			 * must be discarded, else it may be accepted below.
729 			 */
730 			if (ip_mforward != NULL &&
731 			    ip_mforward(ip, m->m_pkthdr.rcvif, m, NULL) != 0) {
732 				rel_mplock();
733 				ipstat.ips_cantforward++;
734 				m_freem(m);
735 				return;
736 			}
737 
738 			/*
739 			 * The process-level routing daemon needs to receive
740 			 * all multicast IGMP packets, whether or not this
741 			 * host belongs to their destination groups.
742 			 */
743 			if (ip->ip_p == IPPROTO_IGMP) {
744 				rel_mplock();
745 				goto ours;
746 			}
747 			ipstat.ips_forward++;
748 		}
749 		/*
750 		 * See if we belong to the destination multicast group on the
751 		 * arrival interface.
752 		 */
753 		IN_LOOKUP_MULTI(ip->ip_dst, m->m_pkthdr.rcvif, inm);
754 		if (inm == NULL) {
755 			rel_mplock();
756 			ipstat.ips_notmember++;
757 			m_freem(m);
758 			return;
759 		}
760 
761 		rel_mplock();
762 		goto ours;
763 	}
764 	if (ip->ip_dst.s_addr == INADDR_BROADCAST)
765 		goto ours;
766 	if (ip->ip_dst.s_addr == INADDR_ANY)
767 		goto ours;
768 
769 	/*
770 	 * FAITH(Firewall Aided Internet Translator)
771 	 */
772 	if (m->m_pkthdr.rcvif && m->m_pkthdr.rcvif->if_type == IFT_FAITH) {
773 		if (ip_keepfaith) {
774 			if (ip->ip_p == IPPROTO_TCP || ip->ip_p == IPPROTO_ICMP)
775 				goto ours;
776 		}
777 		m_freem(m);
778 		return;
779 	}
780 
781 	/*
782 	 * Not for us; forward if possible and desirable.
783 	 */
784 	if (!ipforwarding) {
785 		ipstat.ips_cantforward++;
786 		m_freem(m);
787 	} else {
788 #ifdef IPSEC
789 		/*
790 		 * Enforce inbound IPsec SPD.
791 		 */
792 		if (ipsec4_in_reject(m, NULL)) {
793 			ipsecstat.in_polvio++;
794 			goto bad;
795 		}
796 #endif
797 #ifdef FAST_IPSEC
798 		mtag = m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE, NULL);
799 		crit_enter();
800 		if (mtag != NULL) {
801 			tdbi = (struct tdb_ident *)m_tag_data(mtag);
802 			sp = ipsec_getpolicy(tdbi, IPSEC_DIR_INBOUND);
803 		} else {
804 			sp = ipsec_getpolicybyaddr(m, IPSEC_DIR_INBOUND,
805 						   IP_FORWARDING, &error);
806 		}
807 		if (sp == NULL) {	/* NB: can happen if error */
808 			crit_exit();
809 			/*XXX error stat???*/
810 			DPRINTF(("ip_input: no SP for forwarding\n"));	/*XXX*/
811 			goto bad;
812 		}
813 
814 		/*
815 		 * Check security policy against packet attributes.
816 		 */
817 		error = ipsec_in_reject(sp, m);
818 		KEY_FREESP(&sp);
819 		crit_exit();
820 		if (error) {
821 			ipstat.ips_cantforward++;
822 			goto bad;
823 		}
824 #endif
825 		ip_forward(m, using_srcrt, next_hop);
826 	}
827 	return;
828 
829 ours:
830 
831 	/*
832 	 * IPSTEALTH: Process non-routing options only
833 	 * if the packet is destined for us.
834 	 */
835 	if (ipstealth &&
836 	    hlen > sizeof(struct ip) &&
837 	    ip_dooptions(m, 1, next_hop))
838 		return;
839 
840 	/* Count the packet in the ip address stats */
841 	if (ia != NULL) {
842 		ia->ia_ifa.if_ipackets++;
843 		ia->ia_ifa.if_ibytes += m->m_pkthdr.len;
844 	}
845 
846 	/*
847 	 * If offset or IP_MF are set, must reassemble.
848 	 * Otherwise, nothing need be done.
849 	 * (We could look in the reassembly queue to see
850 	 * if the packet was previously fragmented,
851 	 * but it's not worth the time; just let them time out.)
852 	 */
853 	if (ip->ip_off & (IP_MF | IP_OFFMASK)) {
854 		/*
855 		 * Attempt reassembly; if it succeeds, proceed.
856 		 * ip_reass() will return a different mbuf.
857 		 */
858 		m = ip_reass(m);
859 		if (m == NULL)
860 			return;
861 		ip = mtod(m, struct ip *);
862 
863 		/* Get the header length of the reassembled packet */
864 		hlen = IP_VHL_HL(ip->ip_vhl) << 2;
865 
866 		needredispatch = TRUE;
867 	} else {
868 		ip->ip_len -= hlen;
869 	}
870 
871 #ifdef IPSEC
872 	/*
873 	 * enforce IPsec policy checking if we are seeing last header.
874 	 * note that we do not visit this with protocols with pcb layer
875 	 * code - like udp/tcp/raw ip.
876 	 */
877 	if ((inetsw[ip_protox[ip->ip_p]].pr_flags & PR_LASTHDR) &&
878 	    ipsec4_in_reject(m, NULL)) {
879 		ipsecstat.in_polvio++;
880 		goto bad;
881 	}
882 #endif
883 #if FAST_IPSEC
884 	/*
885 	 * enforce IPsec policy checking if we are seeing last header.
886 	 * note that we do not visit this with protocols with pcb layer
887 	 * code - like udp/tcp/raw ip.
888 	 */
889 	if (inetsw[ip_protox[ip->ip_p]].pr_flags & PR_LASTHDR) {
890 		/*
891 		 * Check if the packet has already had IPsec processing
892 		 * done.  If so, then just pass it along.  This tag gets
893 		 * set during AH, ESP, etc. input handling, before the
894 		 * packet is returned to the ip input queue for delivery.
895 		 */
896 		mtag = m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE, NULL);
897 		crit_enter();
898 		if (mtag != NULL) {
899 			tdbi = (struct tdb_ident *)m_tag_data(mtag);
900 			sp = ipsec_getpolicy(tdbi, IPSEC_DIR_INBOUND);
901 		} else {
902 			sp = ipsec_getpolicybyaddr(m, IPSEC_DIR_INBOUND,
903 						   IP_FORWARDING, &error);
904 		}
905 		if (sp != NULL) {
906 			/*
907 			 * Check security policy against packet attributes.
908 			 */
909 			error = ipsec_in_reject(sp, m);
910 			KEY_FREESP(&sp);
911 		} else {
912 			/* XXX error stat??? */
913 			error = EINVAL;
914 DPRINTF(("ip_input: no SP, packet discarded\n"));/*XXX*/
915 			goto bad;
916 		}
917 		crit_exit();
918 		if (error)
919 			goto bad;
920 	}
921 #endif /* FAST_IPSEC */
922 
923 	ipstat.ips_delivered++;
924 	if (needredispatch) {
925 		struct netmsg_packet *pmsg;
926 		lwkt_port_t port;
927 
928 		ip->ip_off = htons(ip->ip_off);
929 		ip->ip_len = htons(ip->ip_len);
930 		port = ip_mport_in(&m);
931 		if (port == NULL)
932 			return;
933 
934 		pmsg = &m->m_hdr.mh_netmsg;
935 		netmsg_init(&pmsg->nm_netmsg, &netisr_apanic_rport, MSGF_MPSAFE,
936 			    transport_processing_handler);
937 		pmsg->nm_packet = m;
938 		pmsg->nm_netmsg.nm_lmsg.u.ms_result = hlen;
939 
940 		ip = mtod(m, struct ip *);
941 		ip->ip_len = ntohs(ip->ip_len);
942 		ip->ip_off = ntohs(ip->ip_off);
943 		lwkt_sendmsg(port, &pmsg->nm_netmsg.nm_lmsg);
944 	} else {
945 		transport_processing_oncpu(m, hlen, ip);
946 	}
947 	return;
948 
949 bad:
950 	m_freem(m);
951 }
952 
953 /*
954  * Take incoming datagram fragment and try to reassemble it into
955  * whole datagram.  If a chain for reassembly of this datagram already
956  * exists, then it is given as fp; otherwise have to make a chain.
957  */
958 struct mbuf *
959 ip_reass(struct mbuf *m)
960 {
961 	struct ip *ip = mtod(m, struct ip *);
962 	struct mbuf *p = NULL, *q, *nq;
963 	struct mbuf *n;
964 	struct ipq *fp = NULL;
965 	int hlen = IP_VHL_HL(ip->ip_vhl) << 2;
966 	int i, next;
967 	u_short sum;
968 
969 	/* If maxnipq is 0, never accept fragments. */
970 	if (maxnipq == 0) {
971 		ipstat.ips_fragments++;
972 		ipstat.ips_fragdropped++;
973 		m_freem(m);
974 		return NULL;
975 	}
976 
977 	sum = IPREASS_HASH(ip->ip_src.s_addr, ip->ip_id);
978 	/*
979 	 * Look for queue of fragments of this datagram.
980 	 */
981 	for (fp = ipq[sum].next; fp != &ipq[sum]; fp = fp->next)
982 		if (ip->ip_id == fp->ipq_id &&
983 		    ip->ip_src.s_addr == fp->ipq_src.s_addr &&
984 		    ip->ip_dst.s_addr == fp->ipq_dst.s_addr &&
985 		    ip->ip_p == fp->ipq_p)
986 			goto found;
987 
988 	fp = NULL;
989 
990 	/*
991 	 * Enforce upper bound on number of fragmented packets
992 	 * for which we attempt reassembly;
993 	 * If maxnipq is -1, accept all fragments without limitation.
994 	 */
995 	if (nipq > maxnipq && maxnipq > 0) {
996 		/*
997 		 * drop something from the tail of the current queue
998 		 * before proceeding further
999 		 */
1000 		if (ipq[sum].prev == &ipq[sum]) {   /* gak */
1001 			for (i = 0; i < IPREASS_NHASH; i++) {
1002 				if (ipq[i].prev != &ipq[i]) {
1003 					ipstat.ips_fragtimeout +=
1004 					    ipq[i].prev->ipq_nfrags;
1005 					ip_freef(ipq[i].prev);
1006 					break;
1007 				}
1008 			}
1009 		} else {
1010 			ipstat.ips_fragtimeout +=
1011 			    ipq[sum].prev->ipq_nfrags;
1012 			ip_freef(ipq[sum].prev);
1013 		}
1014 	}
1015 found:
1016 	/*
1017 	 * Adjust ip_len to not reflect header,
1018 	 * convert offset of this to bytes.
1019 	 */
1020 	ip->ip_len -= hlen;
1021 	if (ip->ip_off & IP_MF) {
1022 		/*
1023 		 * Make sure that fragments have a data length
1024 		 * that's a non-zero multiple of 8 bytes.
1025 		 */
1026 		if (ip->ip_len == 0 || (ip->ip_len & 0x7) != 0) {
1027 			ipstat.ips_toosmall++; /* XXX */
1028 			m_freem(m);
1029 			return NULL;
1030 		}
1031 		m->m_flags |= M_FRAG;
1032 	} else
1033 		m->m_flags &= ~M_FRAG;
1034 	ip->ip_off <<= 3;
1035 
1036 	ipstat.ips_fragments++;
1037 	m->m_pkthdr.header = ip;
1038 
1039 	/*
1040 	 * If the hardware has not done csum over this fragment
1041 	 * then csum_data is not valid at all.
1042 	 */
1043 	if ((m->m_pkthdr.csum_flags & (CSUM_FRAG_NOT_CHECKED | CSUM_DATA_VALID))
1044 	    == (CSUM_FRAG_NOT_CHECKED | CSUM_DATA_VALID)) {
1045 		m->m_pkthdr.csum_data = 0;
1046 		m->m_pkthdr.csum_flags &= ~(CSUM_DATA_VALID | CSUM_PSEUDO_HDR);
1047 	}
1048 
1049 	/*
1050 	 * Presence of header sizes in mbufs
1051 	 * would confuse code below.
1052 	 */
1053 	m->m_data += hlen;
1054 	m->m_len -= hlen;
1055 
1056 	/*
1057 	 * If first fragment to arrive, create a reassembly queue.
1058 	 */
1059 	if (fp == NULL) {
1060 		if ((fp = mpipe_alloc_nowait(&ipq_mpipe)) == NULL)
1061 			goto dropfrag;
1062 		insque(fp, &ipq[sum]);
1063 		nipq++;
1064 		fp->ipq_nfrags = 1;
1065 		fp->ipq_ttl = IPFRAGTTL;
1066 		fp->ipq_p = ip->ip_p;
1067 		fp->ipq_id = ip->ip_id;
1068 		fp->ipq_src = ip->ip_src;
1069 		fp->ipq_dst = ip->ip_dst;
1070 		fp->ipq_frags = m;
1071 		m->m_nextpkt = NULL;
1072 		goto inserted;
1073 	} else {
1074 		fp->ipq_nfrags++;
1075 	}
1076 
1077 #define	GETIP(m)	((struct ip*)((m)->m_pkthdr.header))
1078 
1079 	/*
1080 	 * Find a segment which begins after this one does.
1081 	 */
1082 	for (p = NULL, q = fp->ipq_frags; q; p = q, q = q->m_nextpkt)
1083 		if (GETIP(q)->ip_off > ip->ip_off)
1084 			break;
1085 
1086 	/*
1087 	 * If there is a preceding segment, it may provide some of
1088 	 * our data already.  If so, drop the data from the incoming
1089 	 * segment.  If it provides all of our data, drop us, otherwise
1090 	 * stick new segment in the proper place.
1091 	 *
1092 	 * If some of the data is dropped from the the preceding
1093 	 * segment, then it's checksum is invalidated.
1094 	 */
1095 	if (p) {
1096 		i = GETIP(p)->ip_off + GETIP(p)->ip_len - ip->ip_off;
1097 		if (i > 0) {
1098 			if (i >= ip->ip_len)
1099 				goto dropfrag;
1100 			m_adj(m, i);
1101 			m->m_pkthdr.csum_flags = 0;
1102 			ip->ip_off += i;
1103 			ip->ip_len -= i;
1104 		}
1105 		m->m_nextpkt = p->m_nextpkt;
1106 		p->m_nextpkt = m;
1107 	} else {
1108 		m->m_nextpkt = fp->ipq_frags;
1109 		fp->ipq_frags = m;
1110 	}
1111 
1112 	/*
1113 	 * While we overlap succeeding segments trim them or,
1114 	 * if they are completely covered, dequeue them.
1115 	 */
1116 	for (; q != NULL && ip->ip_off + ip->ip_len > GETIP(q)->ip_off;
1117 	     q = nq) {
1118 		i = (ip->ip_off + ip->ip_len) - GETIP(q)->ip_off;
1119 		if (i < GETIP(q)->ip_len) {
1120 			GETIP(q)->ip_len -= i;
1121 			GETIP(q)->ip_off += i;
1122 			m_adj(q, i);
1123 			q->m_pkthdr.csum_flags = 0;
1124 			break;
1125 		}
1126 		nq = q->m_nextpkt;
1127 		m->m_nextpkt = nq;
1128 		ipstat.ips_fragdropped++;
1129 		fp->ipq_nfrags--;
1130 		q->m_nextpkt = NULL;
1131 		m_freem(q);
1132 	}
1133 
1134 inserted:
1135 	/*
1136 	 * Check for complete reassembly and perform frag per packet
1137 	 * limiting.
1138 	 *
1139 	 * Frag limiting is performed here so that the nth frag has
1140 	 * a chance to complete the packet before we drop the packet.
1141 	 * As a result, n+1 frags are actually allowed per packet, but
1142 	 * only n will ever be stored. (n = maxfragsperpacket.)
1143 	 *
1144 	 */
1145 	next = 0;
1146 	for (p = NULL, q = fp->ipq_frags; q; p = q, q = q->m_nextpkt) {
1147 		if (GETIP(q)->ip_off != next) {
1148 			if (fp->ipq_nfrags > maxfragsperpacket) {
1149 				ipstat.ips_fragdropped += fp->ipq_nfrags;
1150 				ip_freef(fp);
1151 			}
1152 			return (NULL);
1153 		}
1154 		next += GETIP(q)->ip_len;
1155 	}
1156 	/* Make sure the last packet didn't have the IP_MF flag */
1157 	if (p->m_flags & M_FRAG) {
1158 		if (fp->ipq_nfrags > maxfragsperpacket) {
1159 			ipstat.ips_fragdropped += fp->ipq_nfrags;
1160 			ip_freef(fp);
1161 		}
1162 		return (NULL);
1163 	}
1164 
1165 	/*
1166 	 * Reassembly is complete.  Make sure the packet is a sane size.
1167 	 */
1168 	q = fp->ipq_frags;
1169 	ip = GETIP(q);
1170 	if (next + (IP_VHL_HL(ip->ip_vhl) << 2) > IP_MAXPACKET) {
1171 		ipstat.ips_toolong++;
1172 		ipstat.ips_fragdropped += fp->ipq_nfrags;
1173 		ip_freef(fp);
1174 		return (NULL);
1175 	}
1176 
1177 	/*
1178 	 * Concatenate fragments.
1179 	 */
1180 	m = q;
1181 	n = m->m_next;
1182 	m->m_next = NULL;
1183 	m_cat(m, n);
1184 	nq = q->m_nextpkt;
1185 	q->m_nextpkt = NULL;
1186 	for (q = nq; q != NULL; q = nq) {
1187 		nq = q->m_nextpkt;
1188 		q->m_nextpkt = NULL;
1189 		m->m_pkthdr.csum_flags &= q->m_pkthdr.csum_flags;
1190 		m->m_pkthdr.csum_data += q->m_pkthdr.csum_data;
1191 		m_cat(m, q);
1192 	}
1193 
1194 	/*
1195 	 * Clean up the 1's complement checksum.  Carry over 16 bits must
1196 	 * be added back.  This assumes no more then 65535 packet fragments
1197 	 * were reassembled.  A second carry can also occur (but not a third).
1198 	 */
1199 	m->m_pkthdr.csum_data = (m->m_pkthdr.csum_data & 0xffff) +
1200 				(m->m_pkthdr.csum_data >> 16);
1201 	if (m->m_pkthdr.csum_data > 0xFFFF)
1202 		m->m_pkthdr.csum_data -= 0xFFFF;
1203 
1204 	/*
1205 	 * Create header for new ip packet by
1206 	 * modifying header of first packet;
1207 	 * dequeue and discard fragment reassembly header.
1208 	 * Make header visible.
1209 	 */
1210 	ip->ip_len = next;
1211 	ip->ip_src = fp->ipq_src;
1212 	ip->ip_dst = fp->ipq_dst;
1213 	remque(fp);
1214 	nipq--;
1215 	mpipe_free(&ipq_mpipe, fp);
1216 	m->m_len += (IP_VHL_HL(ip->ip_vhl) << 2);
1217 	m->m_data -= (IP_VHL_HL(ip->ip_vhl) << 2);
1218 	/* some debugging cruft by sklower, below, will go away soon */
1219 	if (m->m_flags & M_PKTHDR) { /* XXX this should be done elsewhere */
1220 		int plen = 0;
1221 
1222 		for (n = m; n; n = n->m_next)
1223 			plen += n->m_len;
1224 		m->m_pkthdr.len = plen;
1225 	}
1226 
1227 	ipstat.ips_reassembled++;
1228 	return (m);
1229 
1230 dropfrag:
1231 	ipstat.ips_fragdropped++;
1232 	if (fp != NULL)
1233 		fp->ipq_nfrags--;
1234 	m_freem(m);
1235 	return (NULL);
1236 
1237 #undef GETIP
1238 }
1239 
1240 /*
1241  * Free a fragment reassembly header and all
1242  * associated datagrams.
1243  */
1244 static void
1245 ip_freef(struct ipq *fp)
1246 {
1247 	struct mbuf *q;
1248 
1249 	while (fp->ipq_frags) {
1250 		q = fp->ipq_frags;
1251 		fp->ipq_frags = q->m_nextpkt;
1252 		q->m_nextpkt = NULL;
1253 		m_freem(q);
1254 	}
1255 	remque(fp);
1256 	mpipe_free(&ipq_mpipe, fp);
1257 	nipq--;
1258 }
1259 
1260 /*
1261  * IP timer processing;
1262  * if a timer expires on a reassembly
1263  * queue, discard it.
1264  */
1265 void
1266 ip_slowtimo(void)
1267 {
1268 	struct ipq *fp;
1269 	int i;
1270 
1271 	crit_enter();
1272 	for (i = 0; i < IPREASS_NHASH; i++) {
1273 		fp = ipq[i].next;
1274 		if (fp == NULL)
1275 			continue;
1276 		while (fp != &ipq[i]) {
1277 			--fp->ipq_ttl;
1278 			fp = fp->next;
1279 			if (fp->prev->ipq_ttl == 0) {
1280 				ipstat.ips_fragtimeout += fp->prev->ipq_nfrags;
1281 				ip_freef(fp->prev);
1282 			}
1283 		}
1284 	}
1285 	/*
1286 	 * If we are over the maximum number of fragments
1287 	 * (due to the limit being lowered), drain off
1288 	 * enough to get down to the new limit.
1289 	 */
1290 	if (maxnipq >= 0 && nipq > maxnipq) {
1291 		for (i = 0; i < IPREASS_NHASH; i++) {
1292 			while (nipq > maxnipq &&
1293 				(ipq[i].next != &ipq[i])) {
1294 				ipstat.ips_fragdropped +=
1295 				    ipq[i].next->ipq_nfrags;
1296 				ip_freef(ipq[i].next);
1297 			}
1298 		}
1299 	}
1300 	ipflow_slowtimo();
1301 	crit_exit();
1302 }
1303 
1304 /*
1305  * Drain off all datagram fragments.
1306  */
1307 void
1308 ip_drain(void)
1309 {
1310 	int i;
1311 
1312 	for (i = 0; i < IPREASS_NHASH; i++) {
1313 		while (ipq[i].next != &ipq[i]) {
1314 			ipstat.ips_fragdropped += ipq[i].next->ipq_nfrags;
1315 			ip_freef(ipq[i].next);
1316 		}
1317 	}
1318 	in_rtqdrain();
1319 }
1320 
1321 /*
1322  * Do option processing on a datagram,
1323  * possibly discarding it if bad options are encountered,
1324  * or forwarding it if source-routed.
1325  * The pass argument is used when operating in the IPSTEALTH
1326  * mode to tell what options to process:
1327  * [LS]SRR (pass 0) or the others (pass 1).
1328  * The reason for as many as two passes is that when doing IPSTEALTH,
1329  * non-routing options should be processed only if the packet is for us.
1330  * Returns 1 if packet has been forwarded/freed,
1331  * 0 if the packet should be processed further.
1332  */
1333 static int
1334 ip_dooptions(struct mbuf *m, int pass, struct sockaddr_in *next_hop)
1335 {
1336 	struct sockaddr_in ipaddr = { sizeof ipaddr, AF_INET };
1337 	struct ip *ip = mtod(m, struct ip *);
1338 	u_char *cp;
1339 	struct in_ifaddr *ia;
1340 	int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB;
1341 	boolean_t forward = FALSE;
1342 	struct in_addr *sin, dst;
1343 	n_time ntime;
1344 
1345 	dst = ip->ip_dst;
1346 	cp = (u_char *)(ip + 1);
1347 	cnt = (IP_VHL_HL(ip->ip_vhl) << 2) - sizeof(struct ip);
1348 	for (; cnt > 0; cnt -= optlen, cp += optlen) {
1349 		opt = cp[IPOPT_OPTVAL];
1350 		if (opt == IPOPT_EOL)
1351 			break;
1352 		if (opt == IPOPT_NOP)
1353 			optlen = 1;
1354 		else {
1355 			if (cnt < IPOPT_OLEN + sizeof(*cp)) {
1356 				code = &cp[IPOPT_OLEN] - (u_char *)ip;
1357 				goto bad;
1358 			}
1359 			optlen = cp[IPOPT_OLEN];
1360 			if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt) {
1361 				code = &cp[IPOPT_OLEN] - (u_char *)ip;
1362 				goto bad;
1363 			}
1364 		}
1365 		switch (opt) {
1366 
1367 		default:
1368 			break;
1369 
1370 		/*
1371 		 * Source routing with record.
1372 		 * Find interface with current destination address.
1373 		 * If none on this machine then drop if strictly routed,
1374 		 * or do nothing if loosely routed.
1375 		 * Record interface address and bring up next address
1376 		 * component.  If strictly routed make sure next
1377 		 * address is on directly accessible net.
1378 		 */
1379 		case IPOPT_LSRR:
1380 		case IPOPT_SSRR:
1381 			if (ipstealth && pass > 0)
1382 				break;
1383 			if (optlen < IPOPT_OFFSET + sizeof(*cp)) {
1384 				code = &cp[IPOPT_OLEN] - (u_char *)ip;
1385 				goto bad;
1386 			}
1387 			if ((off = cp[IPOPT_OFFSET]) < IPOPT_MINOFF) {
1388 				code = &cp[IPOPT_OFFSET] - (u_char *)ip;
1389 				goto bad;
1390 			}
1391 			ipaddr.sin_addr = ip->ip_dst;
1392 			ia = (struct in_ifaddr *)
1393 				ifa_ifwithaddr((struct sockaddr *)&ipaddr);
1394 			if (ia == NULL) {
1395 				if (opt == IPOPT_SSRR) {
1396 					type = ICMP_UNREACH;
1397 					code = ICMP_UNREACH_SRCFAIL;
1398 					goto bad;
1399 				}
1400 				if (!ip_dosourceroute)
1401 					goto nosourcerouting;
1402 				/*
1403 				 * Loose routing, and not at next destination
1404 				 * yet; nothing to do except forward.
1405 				 */
1406 				break;
1407 			}
1408 			off--;			/* 0 origin */
1409 			if (off > optlen - (int)sizeof(struct in_addr)) {
1410 				/*
1411 				 * End of source route.  Should be for us.
1412 				 */
1413 				if (!ip_acceptsourceroute)
1414 					goto nosourcerouting;
1415 				save_rte(m, cp, ip->ip_src);
1416 				break;
1417 			}
1418 			if (ipstealth)
1419 				goto dropit;
1420 			if (!ip_dosourceroute) {
1421 				if (ipforwarding) {
1422 					char buf[sizeof "aaa.bbb.ccc.ddd"];
1423 
1424 					/*
1425 					 * Acting as a router, so generate ICMP
1426 					 */
1427 nosourcerouting:
1428 					strcpy(buf, inet_ntoa(ip->ip_dst));
1429 					log(LOG_WARNING,
1430 					    "attempted source route from %s to %s\n",
1431 					    inet_ntoa(ip->ip_src), buf);
1432 					type = ICMP_UNREACH;
1433 					code = ICMP_UNREACH_SRCFAIL;
1434 					goto bad;
1435 				} else {
1436 					/*
1437 					 * Not acting as a router,
1438 					 * so silently drop.
1439 					 */
1440 dropit:
1441 					ipstat.ips_cantforward++;
1442 					m_freem(m);
1443 					return (1);
1444 				}
1445 			}
1446 
1447 			/*
1448 			 * locate outgoing interface
1449 			 */
1450 			memcpy(&ipaddr.sin_addr, cp + off,
1451 			    sizeof ipaddr.sin_addr);
1452 
1453 			if (opt == IPOPT_SSRR) {
1454 #define	INA	struct in_ifaddr *
1455 #define	SA	struct sockaddr *
1456 				if ((ia = (INA)ifa_ifwithdstaddr((SA)&ipaddr))
1457 									== NULL)
1458 					ia = (INA)ifa_ifwithnet((SA)&ipaddr);
1459 			} else {
1460 				ia = ip_rtaddr(ipaddr.sin_addr, NULL);
1461 			}
1462 			if (ia == NULL) {
1463 				type = ICMP_UNREACH;
1464 				code = ICMP_UNREACH_SRCFAIL;
1465 				goto bad;
1466 			}
1467 			ip->ip_dst = ipaddr.sin_addr;
1468 			memcpy(cp + off, &IA_SIN(ia)->sin_addr,
1469 			    sizeof(struct in_addr));
1470 			cp[IPOPT_OFFSET] += sizeof(struct in_addr);
1471 			/*
1472 			 * Let ip_intr's mcast routing check handle mcast pkts
1473 			 */
1474 			forward = !IN_MULTICAST(ntohl(ip->ip_dst.s_addr));
1475 			break;
1476 
1477 		case IPOPT_RR:
1478 			if (ipstealth && pass == 0)
1479 				break;
1480 			if (optlen < IPOPT_OFFSET + sizeof(*cp)) {
1481 				code = &cp[IPOPT_OFFSET] - (u_char *)ip;
1482 				goto bad;
1483 			}
1484 			if ((off = cp[IPOPT_OFFSET]) < IPOPT_MINOFF) {
1485 				code = &cp[IPOPT_OFFSET] - (u_char *)ip;
1486 				goto bad;
1487 			}
1488 			/*
1489 			 * If no space remains, ignore.
1490 			 */
1491 			off--;			/* 0 origin */
1492 			if (off > optlen - (int)sizeof(struct in_addr))
1493 				break;
1494 			memcpy(&ipaddr.sin_addr, &ip->ip_dst,
1495 			    sizeof ipaddr.sin_addr);
1496 			/*
1497 			 * locate outgoing interface; if we're the destination,
1498 			 * use the incoming interface (should be same).
1499 			 */
1500 			if ((ia = (INA)ifa_ifwithaddr((SA)&ipaddr)) == NULL &&
1501 			    (ia = ip_rtaddr(ipaddr.sin_addr, NULL)) == NULL) {
1502 				type = ICMP_UNREACH;
1503 				code = ICMP_UNREACH_HOST;
1504 				goto bad;
1505 			}
1506 			memcpy(cp + off, &IA_SIN(ia)->sin_addr,
1507 			    sizeof(struct in_addr));
1508 			cp[IPOPT_OFFSET] += sizeof(struct in_addr);
1509 			break;
1510 
1511 		case IPOPT_TS:
1512 			if (ipstealth && pass == 0)
1513 				break;
1514 			code = cp - (u_char *)ip;
1515 			if (optlen < 4 || optlen > 40) {
1516 				code = &cp[IPOPT_OLEN] - (u_char *)ip;
1517 				goto bad;
1518 			}
1519 			if ((off = cp[IPOPT_OFFSET]) < 5) {
1520 				code = &cp[IPOPT_OLEN] - (u_char *)ip;
1521 				goto bad;
1522 			}
1523 			if (off > optlen - (int)sizeof(int32_t)) {
1524 				cp[IPOPT_OFFSET + 1] += (1 << 4);
1525 				if ((cp[IPOPT_OFFSET + 1] & 0xf0) == 0) {
1526 					code = &cp[IPOPT_OFFSET] - (u_char *)ip;
1527 					goto bad;
1528 				}
1529 				break;
1530 			}
1531 			off--;				/* 0 origin */
1532 			sin = (struct in_addr *)(cp + off);
1533 			switch (cp[IPOPT_OFFSET + 1] & 0x0f) {
1534 
1535 			case IPOPT_TS_TSONLY:
1536 				break;
1537 
1538 			case IPOPT_TS_TSANDADDR:
1539 				if (off + sizeof(n_time) +
1540 				    sizeof(struct in_addr) > optlen) {
1541 					code = &cp[IPOPT_OFFSET] - (u_char *)ip;
1542 					goto bad;
1543 				}
1544 				ipaddr.sin_addr = dst;
1545 				ia = (INA)ifaof_ifpforaddr((SA)&ipaddr,
1546 							    m->m_pkthdr.rcvif);
1547 				if (ia == NULL)
1548 					continue;
1549 				memcpy(sin, &IA_SIN(ia)->sin_addr,
1550 				    sizeof(struct in_addr));
1551 				cp[IPOPT_OFFSET] += sizeof(struct in_addr);
1552 				off += sizeof(struct in_addr);
1553 				break;
1554 
1555 			case IPOPT_TS_PRESPEC:
1556 				if (off + sizeof(n_time) +
1557 				    sizeof(struct in_addr) > optlen) {
1558 					code = &cp[IPOPT_OFFSET] - (u_char *)ip;
1559 					goto bad;
1560 				}
1561 				memcpy(&ipaddr.sin_addr, sin,
1562 				    sizeof(struct in_addr));
1563 				if (ifa_ifwithaddr((SA)&ipaddr) == NULL)
1564 					continue;
1565 				cp[IPOPT_OFFSET] += sizeof(struct in_addr);
1566 				off += sizeof(struct in_addr);
1567 				break;
1568 
1569 			default:
1570 				code = &cp[IPOPT_OFFSET + 1] - (u_char *)ip;
1571 				goto bad;
1572 			}
1573 			ntime = iptime();
1574 			memcpy(cp + off, &ntime, sizeof(n_time));
1575 			cp[IPOPT_OFFSET] += sizeof(n_time);
1576 		}
1577 	}
1578 	if (forward && ipforwarding) {
1579 		ip_forward(m, TRUE, next_hop);
1580 		return (1);
1581 	}
1582 	return (0);
1583 bad:
1584 	icmp_error(m, type, code, 0, 0);
1585 	ipstat.ips_badoptions++;
1586 	return (1);
1587 }
1588 
1589 /*
1590  * Given address of next destination (final or next hop),
1591  * return internet address info of interface to be used to get there.
1592  */
1593 struct in_ifaddr *
1594 ip_rtaddr(struct in_addr dst, struct route *ro0)
1595 {
1596 	struct route sro, *ro;
1597 	struct sockaddr_in *sin;
1598 	struct in_ifaddr *ia;
1599 
1600 	if (ro0 != NULL) {
1601 		ro = ro0;
1602 	} else {
1603 		bzero(&sro, sizeof(sro));
1604 		ro = &sro;
1605 	}
1606 
1607 	sin = (struct sockaddr_in *)&ro->ro_dst;
1608 
1609 	if (ro->ro_rt == NULL || dst.s_addr != sin->sin_addr.s_addr) {
1610 		if (ro->ro_rt != NULL) {
1611 			RTFREE(ro->ro_rt);
1612 			ro->ro_rt = NULL;
1613 		}
1614 		sin->sin_family = AF_INET;
1615 		sin->sin_len = sizeof *sin;
1616 		sin->sin_addr = dst;
1617 		rtalloc_ign(ro, RTF_PRCLONING);
1618 	}
1619 
1620 	if (ro->ro_rt == NULL)
1621 		return (NULL);
1622 
1623 	ia = ifatoia(ro->ro_rt->rt_ifa);
1624 
1625 	if (ro == &sro)
1626 		RTFREE(ro->ro_rt);
1627 	return ia;
1628 }
1629 
1630 /*
1631  * Save incoming source route for use in replies,
1632  * to be picked up later by ip_srcroute if the receiver is interested.
1633  */
1634 static void
1635 save_rte(struct mbuf *m, u_char *option, struct in_addr dst)
1636 {
1637 	struct m_tag *mtag;
1638 	struct ip_srcrt_opt *opt;
1639 	unsigned olen;
1640 
1641 	mtag = m_tag_get(PACKET_TAG_IPSRCRT, sizeof(*opt), MB_DONTWAIT);
1642 	if (mtag == NULL)
1643 		return;
1644 	opt = m_tag_data(mtag);
1645 
1646 	olen = option[IPOPT_OLEN];
1647 #ifdef DIAGNOSTIC
1648 	if (ipprintfs)
1649 		kprintf("save_rte: olen %d\n", olen);
1650 #endif
1651 	if (olen > sizeof(opt->ip_srcrt) - (1 + sizeof(dst))) {
1652 		m_tag_free(mtag);
1653 		return;
1654 	}
1655 	bcopy(option, opt->ip_srcrt.srcopt, olen);
1656 	opt->ip_nhops = (olen - IPOPT_OFFSET - 1) / sizeof(struct in_addr);
1657 	opt->ip_srcrt.dst = dst;
1658 	m_tag_prepend(m, mtag);
1659 }
1660 
1661 /*
1662  * Retrieve incoming source route for use in replies,
1663  * in the same form used by setsockopt.
1664  * The first hop is placed before the options, will be removed later.
1665  */
1666 struct mbuf *
1667 ip_srcroute(struct mbuf *m0)
1668 {
1669 	struct in_addr *p, *q;
1670 	struct mbuf *m;
1671 	struct m_tag *mtag;
1672 	struct ip_srcrt_opt *opt;
1673 
1674 	if (m0 == NULL)
1675 		return NULL;
1676 
1677 	mtag = m_tag_find(m0, PACKET_TAG_IPSRCRT, NULL);
1678 	if (mtag == NULL)
1679 		return NULL;
1680 	opt = m_tag_data(mtag);
1681 
1682 	if (opt->ip_nhops == 0)
1683 		return (NULL);
1684 	m = m_get(MB_DONTWAIT, MT_HEADER);
1685 	if (m == NULL)
1686 		return (NULL);
1687 
1688 #define	OPTSIZ	(sizeof(opt->ip_srcrt.nop) + sizeof(opt->ip_srcrt.srcopt))
1689 
1690 	/* length is (nhops+1)*sizeof(addr) + sizeof(nop + srcrt header) */
1691 	m->m_len = opt->ip_nhops * sizeof(struct in_addr) +
1692 		   sizeof(struct in_addr) + OPTSIZ;
1693 #ifdef DIAGNOSTIC
1694 	if (ipprintfs) {
1695 		kprintf("ip_srcroute: nhops %d mlen %d",
1696 			opt->ip_nhops, m->m_len);
1697 	}
1698 #endif
1699 
1700 	/*
1701 	 * First save first hop for return route
1702 	 */
1703 	p = &opt->ip_srcrt.route[opt->ip_nhops - 1];
1704 	*(mtod(m, struct in_addr *)) = *p--;
1705 #ifdef DIAGNOSTIC
1706 	if (ipprintfs)
1707 		kprintf(" hops %x", ntohl(mtod(m, struct in_addr *)->s_addr));
1708 #endif
1709 
1710 	/*
1711 	 * Copy option fields and padding (nop) to mbuf.
1712 	 */
1713 	opt->ip_srcrt.nop = IPOPT_NOP;
1714 	opt->ip_srcrt.srcopt[IPOPT_OFFSET] = IPOPT_MINOFF;
1715 	memcpy(mtod(m, caddr_t) + sizeof(struct in_addr), &opt->ip_srcrt.nop,
1716 	    OPTSIZ);
1717 	q = (struct in_addr *)(mtod(m, caddr_t) +
1718 	    sizeof(struct in_addr) + OPTSIZ);
1719 #undef OPTSIZ
1720 	/*
1721 	 * Record return path as an IP source route,
1722 	 * reversing the path (pointers are now aligned).
1723 	 */
1724 	while (p >= opt->ip_srcrt.route) {
1725 #ifdef DIAGNOSTIC
1726 		if (ipprintfs)
1727 			kprintf(" %x", ntohl(q->s_addr));
1728 #endif
1729 		*q++ = *p--;
1730 	}
1731 	/*
1732 	 * Last hop goes to final destination.
1733 	 */
1734 	*q = opt->ip_srcrt.dst;
1735 	m_tag_delete(m0, mtag);
1736 #ifdef DIAGNOSTIC
1737 	if (ipprintfs)
1738 		kprintf(" %x\n", ntohl(q->s_addr));
1739 #endif
1740 	return (m);
1741 }
1742 
1743 /*
1744  * Strip out IP options.
1745  */
1746 void
1747 ip_stripoptions(struct mbuf *m)
1748 {
1749 	int datalen;
1750 	struct ip *ip = mtod(m, struct ip *);
1751 	caddr_t opts;
1752 	int optlen;
1753 
1754 	optlen = (IP_VHL_HL(ip->ip_vhl) << 2) - sizeof(struct ip);
1755 	opts = (caddr_t)(ip + 1);
1756 	datalen = m->m_len - (sizeof(struct ip) + optlen);
1757 	bcopy(opts + optlen, opts, datalen);
1758 	m->m_len -= optlen;
1759 	if (m->m_flags & M_PKTHDR)
1760 		m->m_pkthdr.len -= optlen;
1761 	ip->ip_vhl = IP_MAKE_VHL(IPVERSION, sizeof(struct ip) >> 2);
1762 }
1763 
1764 u_char inetctlerrmap[PRC_NCMDS] = {
1765 	0,		0,		0,		0,
1766 	0,		EMSGSIZE,	EHOSTDOWN,	EHOSTUNREACH,
1767 	EHOSTUNREACH,	EHOSTUNREACH,	ECONNREFUSED,	ECONNREFUSED,
1768 	EMSGSIZE,	EHOSTUNREACH,	0,		0,
1769 	0,		0,		0,		0,
1770 	ENOPROTOOPT,	ECONNREFUSED
1771 };
1772 
1773 /*
1774  * Forward a packet.  If some error occurs return the sender
1775  * an icmp packet.  Note we can't always generate a meaningful
1776  * icmp message because icmp doesn't have a large enough repertoire
1777  * of codes and types.
1778  *
1779  * If not forwarding, just drop the packet.  This could be confusing
1780  * if ipforwarding was zero but some routing protocol was advancing
1781  * us as a gateway to somewhere.  However, we must let the routing
1782  * protocol deal with that.
1783  *
1784  * The using_srcrt parameter indicates whether the packet is being forwarded
1785  * via a source route.
1786  */
1787 void
1788 ip_forward(struct mbuf *m, boolean_t using_srcrt, struct sockaddr_in *next_hop)
1789 {
1790 	struct ip *ip = mtod(m, struct ip *);
1791 	struct rtentry *rt;
1792 	struct route fwd_ro;
1793 	int error, type = 0, code = 0, destmtu = 0;
1794 	struct mbuf *mcopy;
1795 	n_long dest;
1796 	struct in_addr pkt_dst;
1797 
1798 	dest = INADDR_ANY;
1799 	/*
1800 	 * Cache the destination address of the packet; this may be
1801 	 * changed by use of 'ipfw fwd'.
1802 	 */
1803 	pkt_dst = (next_hop != NULL) ? next_hop->sin_addr : ip->ip_dst;
1804 
1805 #ifdef DIAGNOSTIC
1806 	if (ipprintfs)
1807 		kprintf("forward: src %x dst %x ttl %x\n",
1808 		       ip->ip_src.s_addr, pkt_dst.s_addr, ip->ip_ttl);
1809 #endif
1810 
1811 	if (m->m_flags & (M_BCAST | M_MCAST) || !in_canforward(pkt_dst)) {
1812 		ipstat.ips_cantforward++;
1813 		m_freem(m);
1814 		return;
1815 	}
1816 	if (!ipstealth && ip->ip_ttl <= IPTTLDEC) {
1817 		icmp_error(m, ICMP_TIMXCEED, ICMP_TIMXCEED_INTRANS, dest, 0);
1818 		return;
1819 	}
1820 
1821 	bzero(&fwd_ro, sizeof(fwd_ro));
1822 	ip_rtaddr(pkt_dst, &fwd_ro);
1823 	if (fwd_ro.ro_rt == NULL) {
1824 		icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_HOST, dest, 0);
1825 		return;
1826 	}
1827 	rt = fwd_ro.ro_rt;
1828 
1829 	/*
1830 	 * Save the IP header and at most 8 bytes of the payload,
1831 	 * in case we need to generate an ICMP message to the src.
1832 	 *
1833 	 * XXX this can be optimized a lot by saving the data in a local
1834 	 * buffer on the stack (72 bytes at most), and only allocating the
1835 	 * mbuf if really necessary. The vast majority of the packets
1836 	 * are forwarded without having to send an ICMP back (either
1837 	 * because unnecessary, or because rate limited), so we are
1838 	 * really we are wasting a lot of work here.
1839 	 *
1840 	 * We don't use m_copy() because it might return a reference
1841 	 * to a shared cluster. Both this function and ip_output()
1842 	 * assume exclusive access to the IP header in `m', so any
1843 	 * data in a cluster may change before we reach icmp_error().
1844 	 */
1845 	MGETHDR(mcopy, MB_DONTWAIT, m->m_type);
1846 	if (mcopy != NULL && !m_dup_pkthdr(mcopy, m, MB_DONTWAIT)) {
1847 		/*
1848 		 * It's probably ok if the pkthdr dup fails (because
1849 		 * the deep copy of the tag chain failed), but for now
1850 		 * be conservative and just discard the copy since
1851 		 * code below may some day want the tags.
1852 		 */
1853 		m_free(mcopy);
1854 		mcopy = NULL;
1855 	}
1856 	if (mcopy != NULL) {
1857 		mcopy->m_len = imin((IP_VHL_HL(ip->ip_vhl) << 2) + 8,
1858 		    (int)ip->ip_len);
1859 		mcopy->m_pkthdr.len = mcopy->m_len;
1860 		m_copydata(m, 0, mcopy->m_len, mtod(mcopy, caddr_t));
1861 	}
1862 
1863 	if (!ipstealth)
1864 		ip->ip_ttl -= IPTTLDEC;
1865 
1866 	/*
1867 	 * If forwarding packet using same interface that it came in on,
1868 	 * perhaps should send a redirect to sender to shortcut a hop.
1869 	 * Only send redirect if source is sending directly to us,
1870 	 * and if packet was not source routed (or has any options).
1871 	 * Also, don't send redirect if forwarding using a default route
1872 	 * or a route modified by a redirect.
1873 	 */
1874 	if (rt->rt_ifp == m->m_pkthdr.rcvif &&
1875 	    !(rt->rt_flags & (RTF_DYNAMIC | RTF_MODIFIED)) &&
1876 	    satosin(rt_key(rt))->sin_addr.s_addr != INADDR_ANY &&
1877 	    ipsendredirects && !using_srcrt && next_hop == NULL) {
1878 		u_long src = ntohl(ip->ip_src.s_addr);
1879 		struct in_ifaddr *rt_ifa = (struct in_ifaddr *)rt->rt_ifa;
1880 
1881 		if (rt_ifa != NULL &&
1882 		    (src & rt_ifa->ia_subnetmask) == rt_ifa->ia_subnet) {
1883 			if (rt->rt_flags & RTF_GATEWAY)
1884 				dest = satosin(rt->rt_gateway)->sin_addr.s_addr;
1885 			else
1886 				dest = pkt_dst.s_addr;
1887 			/*
1888 			 * Router requirements says to only send
1889 			 * host redirects.
1890 			 */
1891 			type = ICMP_REDIRECT;
1892 			code = ICMP_REDIRECT_HOST;
1893 #ifdef DIAGNOSTIC
1894 			if (ipprintfs)
1895 				kprintf("redirect (%d) to %x\n", code, dest);
1896 #endif
1897 		}
1898 	}
1899 
1900 	error = ip_output(m, NULL, &fwd_ro, IP_FORWARDING, NULL, NULL);
1901 	if (error == 0) {
1902 		ipstat.ips_forward++;
1903 		if (type == 0) {
1904 			if (mcopy) {
1905 				ipflow_create(&fwd_ro, mcopy);
1906 				m_freem(mcopy);
1907 			}
1908 			goto done;
1909 		} else {
1910 			ipstat.ips_redirectsent++;
1911 		}
1912 	} else {
1913 		ipstat.ips_cantforward++;
1914 	}
1915 
1916 	if (mcopy == NULL)
1917 		goto done;
1918 
1919 	/*
1920 	 * Send ICMP message.
1921 	 */
1922 
1923 	switch (error) {
1924 
1925 	case 0:				/* forwarded, but need redirect */
1926 		/* type, code set above */
1927 		break;
1928 
1929 	case ENETUNREACH:		/* shouldn't happen, checked above */
1930 	case EHOSTUNREACH:
1931 	case ENETDOWN:
1932 	case EHOSTDOWN:
1933 	default:
1934 		type = ICMP_UNREACH;
1935 		code = ICMP_UNREACH_HOST;
1936 		break;
1937 
1938 	case EMSGSIZE:
1939 		type = ICMP_UNREACH;
1940 		code = ICMP_UNREACH_NEEDFRAG;
1941 #ifdef IPSEC
1942 		/*
1943 		 * If the packet is routed over IPsec tunnel, tell the
1944 		 * originator the tunnel MTU.
1945 		 *	tunnel MTU = if MTU - sizeof(IP) - ESP/AH hdrsiz
1946 		 * XXX quickhack!!!
1947 		 */
1948 		if (fwd_ro.ro_rt != NULL) {
1949 			struct secpolicy *sp = NULL;
1950 			int ipsecerror;
1951 			int ipsechdr;
1952 			struct route *ro;
1953 
1954 			sp = ipsec4_getpolicybyaddr(mcopy,
1955 						    IPSEC_DIR_OUTBOUND,
1956 						    IP_FORWARDING,
1957 						    &ipsecerror);
1958 
1959 			if (sp == NULL)
1960 				destmtu = fwd_ro.ro_rt->rt_ifp->if_mtu;
1961 			else {
1962 				/* count IPsec header size */
1963 				ipsechdr = ipsec4_hdrsiz(mcopy,
1964 							 IPSEC_DIR_OUTBOUND,
1965 							 NULL);
1966 
1967 				/*
1968 				 * find the correct route for outer IPv4
1969 				 * header, compute tunnel MTU.
1970 				 *
1971 				 */
1972 				if (sp->req != NULL && sp->req->sav != NULL &&
1973 				    sp->req->sav->sah != NULL) {
1974 					ro = &sp->req->sav->sah->sa_route;
1975 					if (ro->ro_rt != NULL &&
1976 					    ro->ro_rt->rt_ifp != NULL) {
1977 						destmtu =
1978 						    ro->ro_rt->rt_ifp->if_mtu;
1979 						destmtu -= ipsechdr;
1980 					}
1981 				}
1982 
1983 				key_freesp(sp);
1984 			}
1985 		}
1986 #elif FAST_IPSEC
1987 		/*
1988 		 * If the packet is routed over IPsec tunnel, tell the
1989 		 * originator the tunnel MTU.
1990 		 *	tunnel MTU = if MTU - sizeof(IP) - ESP/AH hdrsiz
1991 		 * XXX quickhack!!!
1992 		 */
1993 		if (fwd_ro.ro_rt != NULL) {
1994 			struct secpolicy *sp = NULL;
1995 			int ipsecerror;
1996 			int ipsechdr;
1997 			struct route *ro;
1998 
1999 			sp = ipsec_getpolicybyaddr(mcopy,
2000 						   IPSEC_DIR_OUTBOUND,
2001 						   IP_FORWARDING,
2002 						   &ipsecerror);
2003 
2004 			if (sp == NULL)
2005 				destmtu = fwd_ro.ro_rt->rt_ifp->if_mtu;
2006 			else {
2007 				/* count IPsec header size */
2008 				ipsechdr = ipsec4_hdrsiz(mcopy,
2009 							 IPSEC_DIR_OUTBOUND,
2010 							 NULL);
2011 
2012 				/*
2013 				 * find the correct route for outer IPv4
2014 				 * header, compute tunnel MTU.
2015 				 */
2016 
2017 				if (sp->req != NULL &&
2018 				    sp->req->sav != NULL &&
2019 				    sp->req->sav->sah != NULL) {
2020 					ro = &sp->req->sav->sah->sa_route;
2021 					if (ro->ro_rt != NULL &&
2022 					    ro->ro_rt->rt_ifp != NULL) {
2023 						destmtu =
2024 						    ro->ro_rt->rt_ifp->if_mtu;
2025 						destmtu -= ipsechdr;
2026 					}
2027 				}
2028 
2029 				KEY_FREESP(&sp);
2030 			}
2031 		}
2032 #else /* !IPSEC && !FAST_IPSEC */
2033 		if (fwd_ro.ro_rt != NULL)
2034 			destmtu = fwd_ro.ro_rt->rt_ifp->if_mtu;
2035 #endif /*IPSEC*/
2036 		ipstat.ips_cantfrag++;
2037 		break;
2038 
2039 	case ENOBUFS:
2040 		/*
2041 		 * A router should not generate ICMP_SOURCEQUENCH as
2042 		 * required in RFC1812 Requirements for IP Version 4 Routers.
2043 		 * Source quench could be a big problem under DoS attacks,
2044 		 * or if the underlying interface is rate-limited.
2045 		 * Those who need source quench packets may re-enable them
2046 		 * via the net.inet.ip.sendsourcequench sysctl.
2047 		 */
2048 		if (!ip_sendsourcequench) {
2049 			m_freem(mcopy);
2050 			goto done;
2051 		} else {
2052 			type = ICMP_SOURCEQUENCH;
2053 			code = 0;
2054 		}
2055 		break;
2056 
2057 	case EACCES:			/* ipfw denied packet */
2058 		m_freem(mcopy);
2059 		goto done;
2060 	}
2061 	icmp_error(mcopy, type, code, dest, destmtu);
2062 done:
2063 	if (fwd_ro.ro_rt != NULL)
2064 		RTFREE(fwd_ro.ro_rt);
2065 }
2066 
2067 void
2068 ip_savecontrol(struct inpcb *inp, struct mbuf **mp, struct ip *ip,
2069 	       struct mbuf *m)
2070 {
2071 	if (inp->inp_socket->so_options & SO_TIMESTAMP) {
2072 		struct timeval tv;
2073 
2074 		microtime(&tv);
2075 		*mp = sbcreatecontrol((caddr_t) &tv, sizeof(tv),
2076 		    SCM_TIMESTAMP, SOL_SOCKET);
2077 		if (*mp)
2078 			mp = &(*mp)->m_next;
2079 	}
2080 	if (inp->inp_flags & INP_RECVDSTADDR) {
2081 		*mp = sbcreatecontrol((caddr_t) &ip->ip_dst,
2082 		    sizeof(struct in_addr), IP_RECVDSTADDR, IPPROTO_IP);
2083 		if (*mp)
2084 			mp = &(*mp)->m_next;
2085 	}
2086 	if (inp->inp_flags & INP_RECVTTL) {
2087 		*mp = sbcreatecontrol((caddr_t) &ip->ip_ttl,
2088 		    sizeof(u_char), IP_RECVTTL, IPPROTO_IP);
2089 		if (*mp)
2090 			mp = &(*mp)->m_next;
2091 	}
2092 #ifdef notyet
2093 	/* XXX
2094 	 * Moving these out of udp_input() made them even more broken
2095 	 * than they already were.
2096 	 */
2097 	/* options were tossed already */
2098 	if (inp->inp_flags & INP_RECVOPTS) {
2099 		*mp = sbcreatecontrol((caddr_t) opts_deleted_above,
2100 		    sizeof(struct in_addr), IP_RECVOPTS, IPPROTO_IP);
2101 		if (*mp)
2102 			mp = &(*mp)->m_next;
2103 	}
2104 	/* ip_srcroute doesn't do what we want here, need to fix */
2105 	if (inp->inp_flags & INP_RECVRETOPTS) {
2106 		*mp = sbcreatecontrol((caddr_t) ip_srcroute(m),
2107 		    sizeof(struct in_addr), IP_RECVRETOPTS, IPPROTO_IP);
2108 		if (*mp)
2109 			mp = &(*mp)->m_next;
2110 	}
2111 #endif
2112 	if (inp->inp_flags & INP_RECVIF) {
2113 		struct ifnet *ifp;
2114 		struct sdlbuf {
2115 			struct sockaddr_dl sdl;
2116 			u_char	pad[32];
2117 		} sdlbuf;
2118 		struct sockaddr_dl *sdp;
2119 		struct sockaddr_dl *sdl2 = &sdlbuf.sdl;
2120 
2121 		if (((ifp = m->m_pkthdr.rcvif)) &&
2122 		    ((ifp->if_index != 0) && (ifp->if_index <= if_index))) {
2123 			sdp = IF_LLSOCKADDR(ifp);
2124 			/*
2125 			 * Change our mind and don't try copy.
2126 			 */
2127 			if ((sdp->sdl_family != AF_LINK) ||
2128 			    (sdp->sdl_len > sizeof(sdlbuf))) {
2129 				goto makedummy;
2130 			}
2131 			bcopy(sdp, sdl2, sdp->sdl_len);
2132 		} else {
2133 makedummy:
2134 			sdl2->sdl_len =
2135 			    offsetof(struct sockaddr_dl, sdl_data[0]);
2136 			sdl2->sdl_family = AF_LINK;
2137 			sdl2->sdl_index = 0;
2138 			sdl2->sdl_nlen = sdl2->sdl_alen = sdl2->sdl_slen = 0;
2139 		}
2140 		*mp = sbcreatecontrol((caddr_t) sdl2, sdl2->sdl_len,
2141 			IP_RECVIF, IPPROTO_IP);
2142 		if (*mp)
2143 			mp = &(*mp)->m_next;
2144 	}
2145 }
2146 
2147 /*
2148  * XXX these routines are called from the upper part of the kernel.
2149  *
2150  * They could also be moved to ip_mroute.c, since all the RSVP
2151  *  handling is done there already.
2152  */
2153 int
2154 ip_rsvp_init(struct socket *so)
2155 {
2156 	if (so->so_type != SOCK_RAW ||
2157 	    so->so_proto->pr_protocol != IPPROTO_RSVP)
2158 		return EOPNOTSUPP;
2159 
2160 	if (ip_rsvpd != NULL)
2161 		return EADDRINUSE;
2162 
2163 	ip_rsvpd = so;
2164 	/*
2165 	 * This may seem silly, but we need to be sure we don't over-increment
2166 	 * the RSVP counter, in case something slips up.
2167 	 */
2168 	if (!ip_rsvp_on) {
2169 		ip_rsvp_on = 1;
2170 		rsvp_on++;
2171 	}
2172 
2173 	return 0;
2174 }
2175 
2176 int
2177 ip_rsvp_done(void)
2178 {
2179 	ip_rsvpd = NULL;
2180 	/*
2181 	 * This may seem silly, but we need to be sure we don't over-decrement
2182 	 * the RSVP counter, in case something slips up.
2183 	 */
2184 	if (ip_rsvp_on) {
2185 		ip_rsvp_on = 0;
2186 		rsvp_on--;
2187 	}
2188 	return 0;
2189 }
2190 
2191 void
2192 rsvp_input(struct mbuf *m, ...)	/* XXX must fixup manually */
2193 {
2194 	int off, proto;
2195 	__va_list ap;
2196 
2197 	__va_start(ap, m);
2198 	off = __va_arg(ap, int);
2199 	proto = __va_arg(ap, int);
2200 	__va_end(ap);
2201 
2202 	if (rsvp_input_p) { /* call the real one if loaded */
2203 		rsvp_input_p(m, off, proto);
2204 		return;
2205 	}
2206 
2207 	/* Can still get packets with rsvp_on = 0 if there is a local member
2208 	 * of the group to which the RSVP packet is addressed.  But in this
2209 	 * case we want to throw the packet away.
2210 	 */
2211 
2212 	if (!rsvp_on) {
2213 		m_freem(m);
2214 		return;
2215 	}
2216 
2217 	if (ip_rsvpd != NULL) {
2218 		rip_input(m, off, proto);
2219 		return;
2220 	}
2221 	/* Drop the packet */
2222 	m_freem(m);
2223 }
2224