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