2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1982, 1986, 1988, 1993
24 * The Regents of the University of California. All rights reserved.
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
29 * 1. Redistributions of source code must retain the above copyright
30 * notice, this list of conditions and the following disclaimer.
31 * 2. Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in the
33 * documentation and/or other materials provided with the distribution.
34 * 3. All advertising materials mentioning features or use of this software
35 * must display the following acknowledgement:
36 * This product includes software developed by the University of
37 * California, Berkeley and its contributors.
38 * 4. Neither the name of the University nor the names of its contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
42 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * @(#)ip_input.c 8.2 (Berkeley) 1/4/94
55 * $FreeBSD: src/sys/netinet/ip_input.c,v 1.130.2.25 2001/08/29 21:41:37 jesper Exp $
60 #include <sys/param.h>
61 #include <sys/systm.h>
63 #include <sys/malloc.h>
64 #include <sys/domain.h>
65 #include <sys/protosw.h>
66 #include <sys/socket.h>
68 #include <sys/kernel.h>
69 #include <sys/syslog.h>
70 #include <sys/sysctl.h>
72 #include <kern/queue.h>
75 #include <net/if_var.h>
76 #include <net/if_dl.h>
77 #include <net/route.h>
78 #include <net/netisr.h>
80 #include <netinet/in.h>
81 #include <netinet/in_systm.h>
82 #include <netinet/in_var.h>
83 #include <netinet/ip.h>
84 #include <netinet/in_pcb.h>
85 #include <netinet/ip_var.h>
86 #include <netinet/ip_icmp.h>
87 #include <sys/socketvar.h>
89 #include <netinet/ip_fw.h>
91 /* needed for AUTOCONFIGURING: */
92 #include <netinet/udp.h>
93 #include <netinet/udp_var.h>
94 #include <netinet/bootp.h>
96 #include <sys/kdebug.h>
98 #define DBG_LAYER_BEG NETDBG_CODE(DBG_NETIP, 0)
99 #define DBG_LAYER_END NETDBG_CODE(DBG_NETIP, 2)
100 #define DBG_FNC_IP_INPUT NETDBG_CODE(DBG_NETIP, (2 << 8))
104 #include <netinet6/ipsec.h>
105 #include <netkey/key.h>
109 #if defined(NFAITH) && NFAITH > 0
110 #include <net/if_types.h>
114 #include <netinet/ip_dummynet.h>
118 extern int ipsec_bypass
;
122 static int ip_rsvp_on
;
123 struct socket
*ip_rsvpd
;
125 int ipforwarding
= 0;
126 SYSCTL_INT(_net_inet_ip
, IPCTL_FORWARDING
, forwarding
, CTLFLAG_RW
,
127 &ipforwarding
, 0, "Enable IP forwarding between interfaces");
129 static int ipsendredirects
= 1; /* XXX */
130 SYSCTL_INT(_net_inet_ip
, IPCTL_SENDREDIRECTS
, redirect
, CTLFLAG_RW
,
131 &ipsendredirects
, 0, "Enable sending IP redirects");
133 int ip_defttl
= IPDEFTTL
;
134 SYSCTL_INT(_net_inet_ip
, IPCTL_DEFTTL
, ttl
, CTLFLAG_RW
,
135 &ip_defttl
, 0, "Maximum TTL on IP packets");
137 static int ip_dosourceroute
= 0;
138 SYSCTL_INT(_net_inet_ip
, IPCTL_SOURCEROUTE
, sourceroute
, CTLFLAG_RW
,
139 &ip_dosourceroute
, 0, "Enable forwarding source routed IP packets");
141 static int ip_acceptsourceroute
= 0;
142 SYSCTL_INT(_net_inet_ip
, IPCTL_ACCEPTSOURCEROUTE
, accept_sourceroute
,
143 CTLFLAG_RW
, &ip_acceptsourceroute
, 0,
144 "Enable accepting source routed IP packets");
146 static int ip_keepfaith
= 0;
147 SYSCTL_INT(_net_inet_ip
, IPCTL_KEEPFAITH
, keepfaith
, CTLFLAG_RW
,
149 "Enable packet capture for FAITH IPv4->IPv6 translater daemon");
151 static int nipq
= 0; /* total # of reass queues */
152 static int maxnipq
= 0;
153 SYSCTL_INT(_net_inet_ip
, OID_AUTO
, maxfragpackets
, CTLFLAG_RW
,
155 "Maximum number of IPv4 fragment reassembly queue entries");
157 static int maxfragsperpacket
;
158 SYSCTL_INT(_net_inet_ip
, OID_AUTO
, maxfragsperpacket
, CTLFLAG_RW
,
159 &maxfragsperpacket
, 0,
160 "Maximum number of IPv4 fragments allowed per packet");
163 * XXX - Setting ip_checkinterface mostly implements the receive side of
164 * the Strong ES model described in RFC 1122, but since the routing table
165 * and transmit implementation do not implement the Strong ES model,
166 * setting this to 1 results in an odd hybrid.
168 * XXX - ip_checkinterface currently must be disabled if you use ipnat
169 * to translate the destination address to another local interface.
171 * XXX - ip_checkinterface must be disabled if you add IP aliases
172 * to the loopback interface instead of the interface where the
173 * packets for those addresses are received.
175 static int ip_checkinterface
= 0;
176 SYSCTL_INT(_net_inet_ip
, OID_AUTO
, check_interface
, CTLFLAG_RW
,
177 &ip_checkinterface
, 0, "Verify packet arrives on correct interface");
180 static int ipprintfs
= 0;
183 extern struct domain inetdomain
;
184 extern struct protosw inetsw
[];
185 struct protosw
*ip_protox
[IPPROTO_MAX
];
186 static int ipqmaxlen
= IFQ_MAXLEN
;
187 struct in_ifaddrhead in_ifaddrhead
; /* first inet address */
188 struct ifqueue ipintrq
;
189 SYSCTL_INT(_net_inet_ip
, IPCTL_INTRQMAXLEN
, intr_queue_maxlen
, CTLFLAG_RW
,
190 &ipintrq
.ifq_maxlen
, 0, "Maximum size of the IP input queue");
191 SYSCTL_INT(_net_inet_ip
, IPCTL_INTRQDROPS
, intr_queue_drops
, CTLFLAG_RD
,
192 &ipintrq
.ifq_drops
, 0, "Number of packets dropped from the IP input queue");
194 struct ipstat ipstat
;
195 SYSCTL_STRUCT(_net_inet_ip
, IPCTL_STATS
, stats
, CTLFLAG_RD
,
196 &ipstat
, ipstat
, "IP statistics (struct ipstat, netinet/ip_var.h)");
198 /* Packet reassembly stuff */
199 #define IPREASS_NHASH_LOG2 6
200 #define IPREASS_NHASH (1 << IPREASS_NHASH_LOG2)
201 #define IPREASS_HMASK (IPREASS_NHASH - 1)
202 #define IPREASS_HASH(x,y) \
203 (((((x) & 0xF) | ((((x) >> 8) & 0xF) << 4)) ^ (y)) & IPREASS_HMASK)
205 static struct ipq ipq
[IPREASS_NHASH
];
206 const int ipintrq_present
= 1;
209 SYSCTL_INT(_net_inet_ip
, IPCTL_DEFMTU
, mtu
, CTLFLAG_RW
,
210 &ip_mtu
, 0, "Default MTU");
214 static int ipstealth
= 0;
215 SYSCTL_INT(_net_inet_ip
, OID_AUTO
, stealth
, CTLFLAG_RW
,
221 ip_fw_chk_t
*ip_fw_chk_ptr
;
222 ip_fw_ctl_t
*ip_fw_ctl_ptr
;
226 ip_dn_ctl_t
*ip_dn_ctl_ptr
;
229 int (*fr_checkp
) __P((struct ip
*, int, struct ifnet
*, int, struct mbuf
**)) = NULL
;
231 SYSCTL_NODE(_net_inet_ip
, OID_AUTO
, linklocal
, CTLFLAG_RW
, 0, "link local");
233 struct ip_linklocal_stat ip_linklocal_stat
;
234 SYSCTL_STRUCT(_net_inet_ip_linklocal
, OID_AUTO
, stat
, CTLFLAG_RD
,
235 &ip_linklocal_stat
, ip_linklocal_stat
,
236 "Number of link local packets with TTL less than 255");
238 SYSCTL_NODE(_net_inet_ip_linklocal
, OID_AUTO
, in
, CTLFLAG_RW
, 0, "link local input");
240 int ip_linklocal_in_allowbadttl
= 0;
241 SYSCTL_INT(_net_inet_ip_linklocal_in
, OID_AUTO
, allowbadttl
, CTLFLAG_RW
,
242 &ip_linklocal_in_allowbadttl
, 0,
243 "Allow incoming link local packets with TTL less than 255");
247 * We need to save the IP options in case a protocol wants to respond
248 * to an incoming packet over the same route if the packet got here
249 * using IP source routing. This allows connection establishment and
250 * maintenance when the remote end is on a network that is not known
253 static int ip_nhops
= 0;
254 static struct ip_srcrt
{
255 struct in_addr dst
; /* final destination */
256 char nop
; /* one NOP to align */
257 char srcopt
[IPOPT_OFFSET
+ 1]; /* OPTVAL, OLEN and OFFSET */
258 struct in_addr route
[MAX_IPOPTLEN
/sizeof(struct in_addr
)];
261 struct sockaddr_in
*ip_fw_fwd_addr
;
264 extern struct mbuf
* m_dup(register struct mbuf
*m
, int how
);
267 static void save_rte
__P((u_char
*, struct in_addr
));
268 static int ip_dooptions
__P((struct mbuf
*));
269 static void ip_forward
__P((struct mbuf
*, int));
270 static void ip_freef
__P((struct ipq
*));
273 static struct mbuf
*ip_reass
__P((struct mbuf
*,
274 struct ipq
*, struct ipq
*, u_int32_t
*, u_int16_t
*));
276 static struct mbuf
*ip_reass
__P((struct mbuf
*,
277 struct ipq
*, struct ipq
*, u_int16_t
*, u_int16_t
*));
280 static struct mbuf
*ip_reass
__P((struct mbuf
*, struct ipq
*, struct ipq
*));
282 static struct in_ifaddr
*ip_rtaddr
__P((struct in_addr
));
283 void ipintr
__P((void));
286 extern u_short ip_id
;
289 extern u_long route_generation
;
290 extern int apple_hwcksum_rx
;
293 * IP initialization: fill in IP protocol switch table.
294 * All protocols not implemented in kernel go to raw IP protocol handler.
299 register struct protosw
*pr
;
301 static ip_initialized
= 0;
305 TAILQ_INIT(&in_ifaddrhead
);
306 pr
= pffindproto(PF_INET
, IPPROTO_RAW
, SOCK_RAW
);
309 for (i
= 0; i
< IPPROTO_MAX
; i
++)
311 for (pr
= inetdomain
.dom_protosw
; pr
; pr
= pr
->pr_next
)
312 { if(!((unsigned int)pr
->pr_domain
)) continue; /* If uninitialized, skip */
313 if (pr
->pr_domain
->dom_family
== PF_INET
&&
314 pr
->pr_protocol
&& pr
->pr_protocol
!= IPPROTO_RAW
)
315 ip_protox
[pr
->pr_protocol
] = pr
;
317 for (i
= 0; i
< IPREASS_NHASH
; i
++)
318 ipq
[i
].next
= ipq
[i
].prev
= &ipq
[i
];
320 maxnipq
= nmbclusters
/ 32;
321 maxfragsperpacket
= 16;
324 ip_id
= time_second
& 0xffff;
326 ipintrq
.ifq_maxlen
= ipqmaxlen
;
331 /* Initialize the PF_INET domain, and add in the pre-defined protos */
335 register struct protosw
*pr
;
336 register struct domain
*dp
;
337 static inetdomain_initted
= 0;
338 extern int in_proto_count
;
340 if (!inetdomain_initted
)
342 kprintf("Initing %d protosw entries\n", in_proto_count
);
345 for (i
=0, pr
= &inetsw
[0]; i
<in_proto_count
; i
++, pr
++)
346 net_add_proto(pr
, dp
);
347 inetdomain_initted
= 1;
351 static struct sockaddr_in ipaddr
= { sizeof(ipaddr
), AF_INET
};
352 static struct route ipforward_rt
;
355 * Ip input routine. Checksum and byte swap header. If fragmented
356 * try to reassemble. Process options. Pass to next level.
359 ip_input(struct mbuf
*m
)
363 struct in_ifaddr
*ia
= NULL
;
364 int i
, hlen
, mff
, checkif
;
366 u_int16_t divert_cookie
; /* firewall cookie */
367 struct in_addr pkt_dst
;
369 u_int16_t divert_info
= 0; /* packet divert/tee info */
371 struct ip_fw_chain
*rule
= NULL
;
374 /* Get and reset firewall cookie */
375 divert_cookie
= ip_divert_cookie
;
376 ip_divert_cookie
= 0;
381 #if IPFIREWALL && DUMMYNET
383 * dummynet packet are prepended a vestigial mbuf with
384 * m_type = MT_DUMMYNET and m_data pointing to the matching
387 if (m
->m_type
== MT_DUMMYNET
) {
388 rule
= (struct ip_fw_chain
*)(m
->m_data
) ;
390 ip
= mtod(m
, struct ip
*);
391 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
398 if (m
== NULL
|| (m
->m_flags
& M_PKTHDR
) == 0)
399 panic("ip_input no HDR");
403 if (m
->m_pkthdr
.len
< sizeof(struct ip
))
406 if (m
->m_len
< sizeof (struct ip
) &&
407 (m
= m_pullup(m
, sizeof (struct ip
))) == 0) {
408 ipstat
.ips_toosmall
++;
411 ip
= mtod(m
, struct ip
*);
413 KERNEL_DEBUG(DBG_LAYER_BEG
, ip
->ip_dst
.s_addr
,
414 ip
->ip_src
.s_addr
, ip
->ip_p
, ip
->ip_off
, ip
->ip_len
);
416 if (IP_VHL_V(ip
->ip_vhl
) != IPVERSION
) {
417 ipstat
.ips_badvers
++;
421 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
422 if (hlen
< sizeof(struct ip
)) { /* minimum header length */
423 ipstat
.ips_badhlen
++;
426 if (hlen
> m
->m_len
) {
427 if ((m
= m_pullup(m
, hlen
)) == 0) {
428 ipstat
.ips_badhlen
++;
431 ip
= mtod(m
, struct ip
*);
434 /* 127/8 must not appear on wire - RFC1122 */
435 if ((ntohl(ip
->ip_dst
.s_addr
) >> IN_CLASSA_NSHIFT
) == IN_LOOPBACKNET
||
436 (ntohl(ip
->ip_src
.s_addr
) >> IN_CLASSA_NSHIFT
) == IN_LOOPBACKNET
) {
437 if ((m
->m_pkthdr
.rcvif
->if_flags
& IFF_LOOPBACK
) == 0) {
438 ipstat
.ips_badaddr
++;
443 /* IPv4 Link-Local Addresses as defined in <draft-ietf-zeroconf-ipv4-linklocal-05.txt> */
444 if ((IN_LINKLOCAL(ntohl(ip
->ip_dst
.s_addr
)) ||
445 IN_LINKLOCAL(ntohl(ip
->ip_src
.s_addr
)))) {
446 ip_linklocal_stat
.iplls_in_total
++;
447 if (ip
->ip_ttl
!= MAXTTL
) {
448 ip_linklocal_stat
.iplls_in_badttl
++;
449 /* Silently drop link local traffic with bad TTL */
450 if (ip_linklocal_in_allowbadttl
!= 0)
454 if ((IF_HWASSIST_CSUM_FLAGS(m
->m_pkthdr
.rcvif
->if_hwassist
) == 0)
455 || (apple_hwcksum_rx
== 0) ||
456 ((m
->m_pkthdr
.csum_flags
& CSUM_TCP_SUM16
) && ip
->ip_p
!= IPPROTO_TCP
))
457 m
->m_pkthdr
.csum_flags
= 0; /* invalidate HW generated checksum flags */
459 if (m
->m_pkthdr
.csum_flags
& CSUM_IP_CHECKED
) {
460 sum
= !(m
->m_pkthdr
.csum_flags
& CSUM_IP_VALID
);
462 sum
= in_cksum(m
, hlen
);
470 * Convert fields to host representation.
473 if (ip
->ip_len
< hlen
) {
480 * Check that the amount of data in the buffers
481 * is as at least much as the IP header would have us expect.
482 * Trim mbufs if longer than we expect.
483 * Drop packet if shorter than we expect.
485 if (m
->m_pkthdr
.len
< ip
->ip_len
) {
487 ipstat
.ips_tooshort
++;
490 if (m
->m_pkthdr
.len
> ip
->ip_len
) {
491 /* Invalidate hwcksuming */
492 m
->m_pkthdr
.csum_flags
= 0;
493 m
->m_pkthdr
.csum_data
= 0;
495 if (m
->m_len
== m
->m_pkthdr
.len
) {
496 m
->m_len
= ip
->ip_len
;
497 m
->m_pkthdr
.len
= ip
->ip_len
;
499 m_adj(m
, ip
->ip_len
- m
->m_pkthdr
.len
);
503 if (ipsec_bypass
== 0 && ipsec_gethist(m
, NULL
))
509 * Right now when no processing on packet has done
510 * and it is still fresh out of network we do our black
512 * - Firewall: deny/allow/divert
513 * - Xlate: translate packet's addr/port (NAT).
514 * - Pipe: pass pkt through dummynet.
515 * - Wrap: fake packet's addr/port <unimpl.>
516 * - Encapsulate: put it in another IP and send out. <unimp.>
519 #if defined(IPFIREWALL) && defined(DUMMYNET)
523 * Check if we want to allow this packet to be processed.
524 * Consider it to be bad if not.
529 if ((*fr_checkp
)(ip
, hlen
, m
->m_pkthdr
.rcvif
, 0, &m1
) || !m1
)
531 ip
= mtod(m
= m1
, struct ip
*);
533 if (fw_enable
&& ip_fw_chk_ptr
) {
534 #if IPFIREWALL_FORWARD
536 * If we've been forwarded from the output side, then
537 * skip the firewall a second time
541 #endif /* IPFIREWALL_FORWARD */
543 * See the comment in ip_output for the return values
544 * produced by the firewall.
546 i
= (*ip_fw_chk_ptr
)(&ip
,
547 hlen
, NULL
, &divert_cookie
, &m
, &rule
, &ip_fw_fwd_addr
);
548 if ( (i
& IP_FW_PORT_DENY_FLAG
) || m
== NULL
) { /* drop */
553 ip
= mtod(m
, struct ip
*); /* just in case m changed */
554 if (i
== 0 && ip_fw_fwd_addr
== NULL
) /* common case */
557 if ((i
& IP_FW_PORT_DYNT_FLAG
) != 0) {
558 /* send packet to the appropriate pipe */
559 dummynet_io(i
&0xffff,DN_TO_IP_IN
,m
,NULL
,NULL
,0, rule
);
564 if (i
!= 0 && (i
& IP_FW_PORT_DYNT_FLAG
) == 0) {
565 /* Divert or tee packet */
570 #if IPFIREWALL_FORWARD
571 if (i
== 0 && ip_fw_fwd_addr
!= NULL
)
575 * if we get here, the packet must be dropped
583 * Process options and, if not destined for us,
584 * ship it on. ip_dooptions returns 1 when an
585 * error was detected (causing an icmp message
586 * to be sent and the original packet to be freed).
588 ip_nhops
= 0; /* for source routed packets */
589 if (hlen
> sizeof (struct ip
) && ip_dooptions(m
)) {
590 #if IPFIREWALL_FORWARD
591 ip_fw_fwd_addr
= NULL
;
596 /* greedy RSVP, snatches any PATH packet of the RSVP protocol and no
597 * matter if it is destined to another node, or whether it is
598 * a multicast one, RSVP wants it! and prevents it from being forwarded
599 * anywhere else. Also checks if the rsvp daemon is running before
600 * grabbing the packet.
602 if (rsvp_on
&& ip
->ip_p
==IPPROTO_RSVP
)
606 * Check our list of addresses, to see if the packet is for us.
607 * If we don't have any addresses, assume any unicast packet
608 * we receive might be for us (and let the upper layers deal
611 if (TAILQ_EMPTY(&in_ifaddrhead
) &&
612 (m
->m_flags
& (M_MCAST
|M_BCAST
)) == 0)
616 * Cache the destination address of the packet; this may be
617 * changed by use of 'ipfw fwd'.
619 pkt_dst
= ip_fw_fwd_addr
== NULL
?
620 ip
->ip_dst
: ip_fw_fwd_addr
->sin_addr
;
623 * Enable a consistency check between the destination address
624 * and the arrival interface for a unicast packet (the RFC 1122
625 * strong ES model) if IP forwarding is disabled and the packet
626 * is not locally generated and the packet is not subject to
629 * XXX - Checking also should be disabled if the destination
630 * address is ipnat'ed to a different interface.
632 * XXX - Checking is incompatible with IP aliases added
633 * to the loopback interface instead of the interface where
634 * the packets are received.
636 checkif
= ip_checkinterface
&& (ipforwarding
== 0) &&
637 ((m
->m_pkthdr
.rcvif
->if_flags
& IFF_LOOPBACK
) == 0) &&
638 (ip_fw_fwd_addr
== NULL
);
640 TAILQ_FOREACH(ia
, &in_ifaddrhead
, ia_link
) {
641 #define satosin(sa) ((struct sockaddr_in *)(sa))
643 if (IA_SIN(ia
)->sin_addr
.s_addr
== INADDR_ANY
)
647 * If the address matches, verify that the packet
648 * arrived via the correct interface if checking is
651 if (IA_SIN(ia
)->sin_addr
.s_addr
== pkt_dst
.s_addr
&&
652 (!checkif
|| ia
->ia_ifp
== m
->m_pkthdr
.rcvif
))
655 * Only accept broadcast packets that arrive via the
656 * matching interface. Reception of forwarded directed
657 * broadcasts would be handled via ip_forward() and
658 * ether_output() with the loopback into the stack for
659 * SIMPLEX interfaces handled by ether_output().
661 if ((!checkif
|| ia
->ia_ifp
== m
->m_pkthdr
.rcvif
) &&
662 ia
->ia_ifp
&& ia
->ia_ifp
->if_flags
& IFF_BROADCAST
) {
663 if (satosin(&ia
->ia_broadaddr
)->sin_addr
.s_addr
==
666 if (ia
->ia_netbroadcast
.s_addr
== pkt_dst
.s_addr
)
670 if (IN_MULTICAST(ntohl(ip
->ip_dst
.s_addr
))) {
671 struct in_multi
*inm
;
674 * If we are acting as a multicast router, all
675 * incoming multicast packets are passed to the
676 * kernel-level multicast forwarding function.
677 * The packet is returned (relatively) intact; if
678 * ip_mforward() returns a non-zero value, the packet
679 * must be discarded, else it may be accepted below.
681 if (ip_mforward(ip
, m
->m_pkthdr
.rcvif
, m
, 0) != 0) {
682 ipstat
.ips_cantforward
++;
688 * The process-level routing daemon needs to receive
689 * all multicast IGMP packets, whether or not this
690 * host belongs to their destination groups.
692 if (ip
->ip_p
== IPPROTO_IGMP
)
694 ipstat
.ips_forward
++;
697 * See if we belong to the destination multicast group on the
700 IN_LOOKUP_MULTI(ip
->ip_dst
, m
->m_pkthdr
.rcvif
, inm
);
702 ipstat
.ips_notmember
++;
708 if (ip
->ip_dst
.s_addr
== (u_long
)INADDR_BROADCAST
)
710 if (ip
->ip_dst
.s_addr
== INADDR_ANY
)
713 /* Allow DHCP/BootP responses through */
714 if (m
->m_pkthdr
.rcvif
!= NULL
715 && (m
->m_pkthdr
.rcvif
->if_eflags
& IFEF_AUTOCONFIGURING
)
716 && hlen
== sizeof(struct ip
)
717 && ip
->ip_p
== IPPROTO_UDP
) {
719 if (m
->m_len
< sizeof(struct udpiphdr
)
720 && (m
= m_pullup(m
, sizeof(struct udpiphdr
))) == 0) {
721 udpstat
.udps_hdrops
++;
724 ui
= mtod(m
, struct udpiphdr
*);
725 if (ntohs(ui
->ui_dport
) == IPPORT_BOOTPC
) {
728 ip
= mtod(m
, struct ip
*); /* in case it changed */
731 #if defined(NFAITH) && 0 < NFAITH
733 * FAITH(Firewall Aided Internet Translator)
735 if (m
->m_pkthdr
.rcvif
&& m
->m_pkthdr
.rcvif
->if_type
== IFT_FAITH
) {
737 if (ip
->ip_p
== IPPROTO_TCP
|| ip
->ip_p
== IPPROTO_ICMP
)
745 * Not for us; forward if possible and desirable.
747 if (ipforwarding
== 0) {
748 ipstat
.ips_cantforward
++;
752 #if IPFIREWALL_FORWARD
753 ip_fw_fwd_addr
= NULL
;
759 /* Darwin does not have an if_data in ifaddr */
760 /* Count the packet in the ip address stats */
762 ia
->ia_ifa
.if_ipackets
++;
763 ia
->ia_ifa
.if_ibytes
+= m
->m_pkthdr
.len
;
768 * If offset or IP_MF are set, must reassemble.
769 * Otherwise, nothing need be done.
770 * (We could look in the reassembly queue to see
771 * if the packet was previously fragmented,
772 * but it's not worth the time; just let them time out.)
774 if (ip
->ip_off
& (IP_MF
| IP_OFFMASK
| IP_RF
)) {
776 /* If maxnipq is 0, never accept fragments. */
778 ipstat
.ips_fragments
++;
779 ipstat
.ips_fragdropped
++;
783 sum
= IPREASS_HASH(ip
->ip_src
.s_addr
, ip
->ip_id
);
785 * Look for queue of fragments
788 for (fp
= ipq
[sum
].next
; fp
!= &ipq
[sum
]; fp
= fp
->next
)
789 if (ip
->ip_id
== fp
->ipq_id
&&
790 ip
->ip_src
.s_addr
== fp
->ipq_src
.s_addr
&&
791 ip
->ip_dst
.s_addr
== fp
->ipq_dst
.s_addr
&&
792 ip
->ip_p
== fp
->ipq_p
)
798 * Enforce upper bound on number of fragmented packets
799 * for which we attempt reassembly;
800 * If maxnipq is -1, accept all fragments without limitation.
802 if ((nipq
> maxnipq
) && (maxnipq
> 0)) {
804 * drop something from the tail of the current queue
805 * before proceeding further
807 if (ipq
[sum
].prev
== &ipq
[sum
]) { /* gak */
808 for (i
= 0; i
< IPREASS_NHASH
; i
++) {
809 if (ipq
[i
].prev
!= &ipq
[i
]) {
810 ipstat
.ips_fragtimeout
+=
811 ipq
[i
].prev
->ipq_nfrags
;
812 ip_freef(ipq
[i
].prev
);
817 ipstat
.ips_fragtimeout
+= ipq
[sum
].prev
->ipq_nfrags
;
818 ip_freef(ipq
[sum
].prev
);
823 * Adjust ip_len to not reflect header,
824 * convert offset of this to bytes.
827 if (ip
->ip_off
& IP_MF
) {
829 * Make sure that fragments have a data length
830 * that's a non-zero multiple of 8 bytes.
832 if (ip
->ip_len
== 0 || (ip
->ip_len
& 0x7) != 0) {
833 ipstat
.ips_toosmall
++; /* XXX */
836 m
->m_flags
|= M_FRAG
;
838 m
->m_flags
&= ~M_FRAG
;
842 * Attempt reassembly; if it succeeds, proceed.
843 * ip_reass() will return a different mbuf, and update
844 * the divert info in divert_info and args.divert_rule.
846 ipstat
.ips_fragments
++;
847 m
->m_pkthdr
.header
= ip
;
850 fp
, &ipq
[sum
], &divert_info
, &divert_cookie
);
852 m
= ip_reass(m
, fp
, &ipq
[sum
]);
855 #if IPFIREWALL_FORWARD
856 ip_fw_fwd_addr
= NULL
;
860 ipstat
.ips_reassembled
++;
861 ip
= mtod(m
, struct ip
*);
862 /* Get the header length of the reassembled packet */
863 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
865 /* Restore original checksum before diverting packet */
866 if (divert_info
!= 0) {
871 ip
->ip_sum
= in_cksum(m
, hlen
);
882 * Divert or tee packet to the divert protocol if required.
884 * If divert_info is zero then cookie should be too, so we shouldn't
885 * need to clear them here. Assume divert_packet() does so also.
887 if (divert_info
!= 0) {
888 struct mbuf
*clone
= NULL
;
890 /* Clone packet if we're doing a 'tee' */
891 if ((divert_info
& IP_FW_PORT_TEE_FLAG
) != 0)
892 clone
= m_dup(m
, M_DONTWAIT
);
894 /* Restore packet header fields to original values */
899 /* Deliver packet to divert input routine */
900 ip_divert_cookie
= divert_cookie
;
901 divert_packet(m
, 1, divert_info
& 0xffff);
902 ipstat
.ips_delivered
++;
904 /* If 'tee', continue with original packet */
908 ip
= mtod(m
, struct ip
*);
914 * enforce IPsec policy checking if we are seeing last header.
915 * note that we do not visit this with protocols with pcb layer
916 * code - like udp/tcp/raw ip.
918 if (ipsec_bypass
== 0 && (ip_protox
[ip
->ip_p
]->pr_flags
& PR_LASTHDR
) != 0 &&
919 ipsec4_in_reject(m
, NULL
)) {
920 ipsecstat
.in_polvio
++;
926 * Switch out to protocol's input routine.
928 ipstat
.ips_delivered
++;
930 KERNEL_DEBUG(DBG_LAYER_END
, ip
->ip_dst
.s_addr
,
931 ip
->ip_src
.s_addr
, ip
->ip_p
, ip
->ip_off
, ip
->ip_len
);
933 (*ip_protox
[ip
->ip_p
]->pr_input
)(m
, hlen
);
934 #if IPFIREWALL_FORWARD
935 ip_fw_fwd_addr
= NULL
; /* tcp needed it */
940 #if IPFIREWALL_FORWARD
941 ip_fw_fwd_addr
= NULL
;
943 KERNEL_DEBUG(DBG_LAYER_END
, 0,0,0,0,0);
948 * IP software interrupt routine - to go away sometime soon
956 KERNEL_DEBUG(DBG_FNC_IP_INPUT
| DBG_FUNC_START
, 0,0,0,0,0);
960 IF_DEQUEUE(&ipintrq
, m
);
963 KERNEL_DEBUG(DBG_FNC_IP_INPUT
| DBG_FUNC_END
, 0,0,0,0,0);
971 NETISR_SET(NETISR_IP
, ipintr
);
974 * Take incoming datagram fragment and try to reassemble it into
975 * whole datagram. If a chain for reassembly of this datagram already
976 * exists, then it is given as fp; otherwise have to make a chain.
978 * When IPDIVERT enabled, keep additional state with each packet that
979 * tells us if we need to divert or tee the packet we're building.
984 ip_reass(m
, fp
, where
, divinfo
, divcookie
)
986 ip_reass(m
, fp
, where
)
988 register struct mbuf
*m
;
989 register struct ipq
*fp
;
997 u_int16_t
*divcookie
;
1000 struct ip
*ip
= mtod(m
, struct ip
*);
1001 register struct mbuf
*p
= 0, *q
, *nq
;
1003 int hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
1007 * Presence of header sizes in mbufs
1008 * would confuse code below.
1013 if (m
->m_pkthdr
.csum_flags
& CSUM_TCP_SUM16
)
1014 m
->m_pkthdr
.csum_flags
= 0;
1016 * If first fragment to arrive, create a reassembly queue.
1019 if ((t
= m_get(M_DONTWAIT
, MT_FTABLE
)) == NULL
)
1021 fp
= mtod(t
, struct ipq
*);
1022 insque((void*)fp
, (void*)where
);
1025 fp
->ipq_ttl
= IPFRAGTTL
;
1026 fp
->ipq_p
= ip
->ip_p
;
1027 fp
->ipq_id
= ip
->ip_id
;
1028 fp
->ipq_src
= ip
->ip_src
;
1029 fp
->ipq_dst
= ip
->ip_dst
;
1031 m
->m_nextpkt
= NULL
;
1034 fp
->ipq_div_info
= 0;
1038 fp
->ipq_div_cookie
= 0;
1045 #define GETIP(m) ((struct ip*)((m)->m_pkthdr.header))
1048 * Find a segment which begins after this one does.
1050 for (p
= NULL
, q
= fp
->ipq_frags
; q
; p
= q
, q
= q
->m_nextpkt
)
1051 if (GETIP(q
)->ip_off
> ip
->ip_off
)
1055 * If there is a preceding segment, it may provide some of
1056 * our data already. If so, drop the data from the incoming
1057 * segment. If it provides all of our data, drop us, otherwise
1058 * stick new segment in the proper place.
1060 * If some of the data is dropped from the the preceding
1061 * segment, then it's checksum is invalidated.
1064 i
= GETIP(p
)->ip_off
+ GETIP(p
)->ip_len
- ip
->ip_off
;
1066 if (i
>= ip
->ip_len
)
1069 m
->m_pkthdr
.csum_flags
= 0;
1073 m
->m_nextpkt
= p
->m_nextpkt
;
1076 m
->m_nextpkt
= fp
->ipq_frags
;
1081 * While we overlap succeeding segments trim them or,
1082 * if they are completely covered, dequeue them.
1084 for (; q
!= NULL
&& ip
->ip_off
+ ip
->ip_len
> GETIP(q
)->ip_off
;
1086 i
= (ip
->ip_off
+ ip
->ip_len
) -
1088 if (i
< GETIP(q
)->ip_len
) {
1089 GETIP(q
)->ip_len
-= i
;
1090 GETIP(q
)->ip_off
+= i
;
1092 q
->m_pkthdr
.csum_flags
= 0;
1097 ipstat
.ips_fragdropped
++;
1106 * Transfer firewall instructions to the fragment structure.
1107 * Only trust info in the fragment at offset 0.
1109 if (ip
->ip_off
== 0) {
1111 fp
->ipq_div_info
= *divinfo
;
1113 fp
->ipq_divert
= *divinfo
;
1115 fp
->ipq_div_cookie
= *divcookie
;
1122 * Check for complete reassembly and perform frag per packet
1125 * Frag limiting is performed here so that the nth frag has
1126 * a chance to complete the packet before we drop the packet.
1127 * As a result, n+1 frags are actually allowed per packet, but
1128 * only n will ever be stored. (n = maxfragsperpacket.)
1132 for (p
= NULL
, q
= fp
->ipq_frags
; q
; p
= q
, q
= q
->m_nextpkt
) {
1133 if (GETIP(q
)->ip_off
!= next
) {
1134 if (fp
->ipq_nfrags
> maxfragsperpacket
) {
1135 ipstat
.ips_fragdropped
+= fp
->ipq_nfrags
;
1140 next
+= GETIP(q
)->ip_len
;
1142 /* Make sure the last packet didn't have the IP_MF flag */
1143 if (p
->m_flags
& M_FRAG
) {
1144 if (fp
->ipq_nfrags
> maxfragsperpacket
) {
1145 ipstat
.ips_fragdropped
+= fp
->ipq_nfrags
;
1152 * Reassembly is complete. Make sure the packet is a sane size.
1156 if (next
+ (IP_VHL_HL(ip
->ip_vhl
) << 2) > IP_MAXPACKET
) {
1157 ipstat
.ips_toolong
++;
1158 ipstat
.ips_fragdropped
+= fp
->ipq_nfrags
;
1164 * Concatenate fragments.
1172 for (q
= nq
; q
!= NULL
; q
= nq
) {
1174 q
->m_nextpkt
= NULL
;
1175 m
->m_pkthdr
.csum_flags
&= q
->m_pkthdr
.csum_flags
;
1176 m
->m_pkthdr
.csum_data
+= q
->m_pkthdr
.csum_data
;
1182 * Extract firewall instructions from the fragment structure.
1185 *divinfo
= fp
->ipq_div_info
;
1187 *divinfo
= fp
->ipq_divert
;
1189 *divcookie
= fp
->ipq_div_cookie
;
1193 * Create header for new ip packet by
1194 * modifying header of first packet;
1195 * dequeue and discard fragment reassembly header.
1196 * Make header visible.
1199 ip
->ip_src
= fp
->ipq_src
;
1200 ip
->ip_dst
= fp
->ipq_dst
;
1203 (void) m_free(dtom(fp
));
1204 m
->m_len
+= (IP_VHL_HL(ip
->ip_vhl
) << 2);
1205 m
->m_data
-= (IP_VHL_HL(ip
->ip_vhl
) << 2);
1206 /* some debugging cruft by sklower, below, will go away soon */
1207 if (m
->m_flags
& M_PKTHDR
) { /* XXX this should be done elsewhere */
1208 register int plen
= 0;
1209 for (t
= m
; t
; t
= t
->m_next
)
1211 m
->m_pkthdr
.len
= plen
;
1220 ipstat
.ips_fragdropped
++;
1230 * Free a fragment reassembly header and all
1231 * associated datagrams.
1237 register struct mbuf
*q
;
1239 while (fp
->ipq_frags
) {
1241 fp
->ipq_frags
= q
->m_nextpkt
;
1245 (void) m_free(dtom(fp
));
1250 * IP timer processing;
1251 * if a timer expires on a reassembly
1252 * queue, discard it.
1257 register struct ipq
*fp
;
1261 for (i
= 0; i
< IPREASS_NHASH
; i
++) {
1265 while (fp
!= &ipq
[i
]) {
1268 if (fp
->prev
->ipq_ttl
== 0) {
1269 ipstat
.ips_fragtimeout
+= fp
->prev
->ipq_nfrags
;
1275 * If we are over the maximum number of fragments
1276 * (due to the limit being lowered), drain off
1277 * enough to get down to the new limit.
1279 if (maxnipq
>= 0 && nipq
> maxnipq
) {
1280 for (i
= 0; i
< IPREASS_NHASH
; i
++) {
1281 while (nipq
> maxnipq
&&
1282 (ipq
[i
].next
!= &ipq
[i
])) {
1283 ipstat
.ips_fragdropped
+=
1284 ipq
[i
].next
->ipq_nfrags
;
1285 ip_freef(ipq
[i
].next
);
1294 * Drain off all datagram fragments.
1301 for (i
= 0; i
< IPREASS_NHASH
; i
++) {
1302 while (ipq
[i
].next
!= &ipq
[i
]) {
1303 ipstat
.ips_fragdropped
+= ipq
[i
].next
->ipq_nfrags
;
1304 ip_freef(ipq
[i
].next
);
1311 * Do option processing on a datagram,
1312 * possibly discarding it if bad options are encountered,
1313 * or forwarding it if source-routed.
1314 * Returns 1 if packet has been forwarded/freed,
1315 * 0 if the packet should be processed further.
1321 register struct ip
*ip
= mtod(m
, struct ip
*);
1322 register u_char
*cp
;
1323 register struct ip_timestamp
*ipt
;
1324 register struct in_ifaddr
*ia
;
1325 int opt
, optlen
, cnt
, off
, code
, type
= ICMP_PARAMPROB
, forward
= 0;
1326 struct in_addr
*sin
, dst
;
1330 cp
= (u_char
*)(ip
+ 1);
1331 cnt
= (IP_VHL_HL(ip
->ip_vhl
) << 2) - sizeof (struct ip
);
1332 for (; cnt
> 0; cnt
-= optlen
, cp
+= optlen
) {
1333 opt
= cp
[IPOPT_OPTVAL
];
1334 if (opt
== IPOPT_EOL
)
1336 if (opt
== IPOPT_NOP
)
1339 if (cnt
< IPOPT_OLEN
+ sizeof(*cp
)) {
1340 code
= &cp
[IPOPT_OLEN
] - (u_char
*)ip
;
1343 optlen
= cp
[IPOPT_OLEN
];
1344 if (optlen
< IPOPT_OLEN
+ sizeof(*cp
) || optlen
> cnt
) {
1345 code
= &cp
[IPOPT_OLEN
] - (u_char
*)ip
;
1355 * Source routing with record.
1356 * Find interface with current destination address.
1357 * If none on this machine then drop if strictly routed,
1358 * or do nothing if loosely routed.
1359 * Record interface address and bring up next address
1360 * component. If strictly routed make sure next
1361 * address is on directly accessible net.
1365 if (optlen
< IPOPT_OFFSET
+ sizeof(*cp
)) {
1366 code
= &cp
[IPOPT_OLEN
] - (u_char
*)ip
;
1369 if ((off
= cp
[IPOPT_OFFSET
]) < IPOPT_MINOFF
) {
1370 code
= &cp
[IPOPT_OFFSET
] - (u_char
*)ip
;
1373 ipaddr
.sin_addr
= ip
->ip_dst
;
1374 ia
= (struct in_ifaddr
*)
1375 ifa_ifwithaddr((struct sockaddr
*)&ipaddr
);
1377 if (opt
== IPOPT_SSRR
) {
1378 type
= ICMP_UNREACH
;
1379 code
= ICMP_UNREACH_SRCFAIL
;
1382 if (!ip_dosourceroute
)
1383 goto nosourcerouting
;
1385 * Loose routing, and not at next destination
1386 * yet; nothing to do except forward.
1390 off
--; /* 0 origin */
1391 if (off
> optlen
- (int)sizeof(struct in_addr
)) {
1393 * End of source route. Should be for us.
1395 if (!ip_acceptsourceroute
)
1396 goto nosourcerouting
;
1397 save_rte(cp
, ip
->ip_src
);
1401 if (!ip_dosourceroute
) {
1403 char buf
[16]; /* aaa.bbb.ccc.ddd\0 */
1405 * Acting as a router, so generate ICMP
1408 strcpy(buf
, inet_ntoa(ip
->ip_dst
));
1410 "attempted source route from %s to %s\n",
1411 inet_ntoa(ip
->ip_src
), buf
);
1412 type
= ICMP_UNREACH
;
1413 code
= ICMP_UNREACH_SRCFAIL
;
1417 * Not acting as a router, so silently drop.
1419 ipstat
.ips_cantforward
++;
1426 * locate outgoing interface
1428 (void)memcpy(&ipaddr
.sin_addr
, cp
+ off
,
1429 sizeof(ipaddr
.sin_addr
));
1431 if (opt
== IPOPT_SSRR
) {
1432 #define INA struct in_ifaddr *
1433 #define SA struct sockaddr *
1434 if ((ia
= (INA
)ifa_ifwithdstaddr((SA
)&ipaddr
)) == 0)
1435 ia
= (INA
)ifa_ifwithnet((SA
)&ipaddr
);
1437 ia
= ip_rtaddr(ipaddr
.sin_addr
);
1439 type
= ICMP_UNREACH
;
1440 code
= ICMP_UNREACH_SRCFAIL
;
1443 ip
->ip_dst
= ipaddr
.sin_addr
;
1444 (void)memcpy(cp
+ off
, &(IA_SIN(ia
)->sin_addr
),
1445 sizeof(struct in_addr
));
1446 cp
[IPOPT_OFFSET
] += sizeof(struct in_addr
);
1448 * Let ip_intr's mcast routing check handle mcast pkts
1450 forward
= !IN_MULTICAST(ntohl(ip
->ip_dst
.s_addr
));
1454 if (optlen
< IPOPT_OFFSET
+ sizeof(*cp
)) {
1455 code
= &cp
[IPOPT_OFFSET
] - (u_char
*)ip
;
1458 if ((off
= cp
[IPOPT_OFFSET
]) < IPOPT_MINOFF
) {
1459 code
= &cp
[IPOPT_OFFSET
] - (u_char
*)ip
;
1463 * If no space remains, ignore.
1465 off
--; /* 0 origin */
1466 if (off
> optlen
- (int)sizeof(struct in_addr
))
1468 (void)memcpy(&ipaddr
.sin_addr
, &ip
->ip_dst
,
1469 sizeof(ipaddr
.sin_addr
));
1471 * locate outgoing interface; if we're the destination,
1472 * use the incoming interface (should be same).
1474 if ((ia
= (INA
)ifa_ifwithaddr((SA
)&ipaddr
)) == 0 &&
1475 (ia
= ip_rtaddr(ipaddr
.sin_addr
)) == 0) {
1476 type
= ICMP_UNREACH
;
1477 code
= ICMP_UNREACH_HOST
;
1480 (void)memcpy(cp
+ off
, &(IA_SIN(ia
)->sin_addr
),
1481 sizeof(struct in_addr
));
1482 cp
[IPOPT_OFFSET
] += sizeof(struct in_addr
);
1486 code
= cp
- (u_char
*)ip
;
1487 ipt
= (struct ip_timestamp
*)cp
;
1488 if (ipt
->ipt_len
< 4 || ipt
->ipt_len
> 40) {
1489 code
= (u_char
*)&ipt
->ipt_len
- (u_char
*)ip
;
1492 if (ipt
->ipt_ptr
< 5) {
1493 code
= (u_char
*)&ipt
->ipt_ptr
- (u_char
*)ip
;
1497 ipt
->ipt_len
- (int)sizeof(int32_t)) {
1498 if (++ipt
->ipt_oflw
== 0) {
1499 code
= (u_char
*)&ipt
->ipt_ptr
-
1505 sin
= (struct in_addr
*)(cp
+ ipt
->ipt_ptr
- 1);
1506 switch (ipt
->ipt_flg
) {
1508 case IPOPT_TS_TSONLY
:
1511 case IPOPT_TS_TSANDADDR
:
1512 if (ipt
->ipt_ptr
- 1 + sizeof(n_time
) +
1513 sizeof(struct in_addr
) > ipt
->ipt_len
) {
1514 code
= (u_char
*)&ipt
->ipt_ptr
-
1518 ipaddr
.sin_addr
= dst
;
1519 ia
= (INA
)ifaof_ifpforaddr((SA
)&ipaddr
,
1523 (void)memcpy(sin
, &IA_SIN(ia
)->sin_addr
,
1524 sizeof(struct in_addr
));
1525 ipt
->ipt_ptr
+= sizeof(struct in_addr
);
1528 case IPOPT_TS_PRESPEC
:
1529 if (ipt
->ipt_ptr
- 1 + sizeof(n_time
) +
1530 sizeof(struct in_addr
) > ipt
->ipt_len
) {
1531 code
= (u_char
*)&ipt
->ipt_ptr
-
1535 (void)memcpy(&ipaddr
.sin_addr
, sin
,
1536 sizeof(struct in_addr
));
1537 if (ifa_ifwithaddr((SA
)&ipaddr
) == 0)
1539 ipt
->ipt_ptr
+= sizeof(struct in_addr
);
1543 /* XXX can't take &ipt->ipt_flg */
1544 code
= (u_char
*)&ipt
->ipt_ptr
-
1549 (void)memcpy(cp
+ ipt
->ipt_ptr
- 1, &ntime
,
1551 ipt
->ipt_ptr
+= sizeof(n_time
);
1554 if (forward
&& ipforwarding
) {
1560 ip
->ip_len
-= IP_VHL_HL(ip
->ip_vhl
) << 2; /* XXX icmp_error adds in hdr length */
1561 icmp_error(m
, type
, code
, 0, 0);
1562 ipstat
.ips_badoptions
++;
1567 * Given address of next destination (final or next hop),
1568 * return internet address info of interface to be used to get there.
1570 static struct in_ifaddr
*
1574 register struct sockaddr_in
*sin
;
1576 sin
= (struct sockaddr_in
*) &ipforward_rt
.ro_dst
;
1578 if (ipforward_rt
.ro_rt
== 0 || dst
.s_addr
!= sin
->sin_addr
.s_addr
||
1579 ipforward_rt
.ro_rt
->generation_id
!= route_generation
) {
1580 if (ipforward_rt
.ro_rt
) {
1581 rtfree(ipforward_rt
.ro_rt
);
1582 ipforward_rt
.ro_rt
= 0;
1584 sin
->sin_family
= AF_INET
;
1585 sin
->sin_len
= sizeof(*sin
);
1586 sin
->sin_addr
= dst
;
1588 rtalloc_ign(&ipforward_rt
, RTF_PRCLONING
);
1590 if (ipforward_rt
.ro_rt
== 0)
1591 return ((struct in_ifaddr
*)0);
1592 return ((struct in_ifaddr
*) ipforward_rt
.ro_rt
->rt_ifa
);
1596 * Save incoming source route for use in replies,
1597 * to be picked up later by ip_srcroute if the receiver is interested.
1600 save_rte(option
, dst
)
1606 olen
= option
[IPOPT_OLEN
];
1609 printf("save_rte: olen %d\n", olen
);
1611 if (olen
> sizeof(ip_srcrt
) - (1 + sizeof(dst
)))
1613 bcopy(option
, ip_srcrt
.srcopt
, olen
);
1614 ip_nhops
= (olen
- IPOPT_OFFSET
- 1) / sizeof(struct in_addr
);
1619 * Retrieve incoming source route for use in replies,
1620 * in the same form used by setsockopt.
1621 * The first hop is placed before the options, will be removed later.
1626 register struct in_addr
*p
, *q
;
1627 register struct mbuf
*m
;
1630 return ((struct mbuf
*)0);
1631 m
= m_get(M_DONTWAIT
, MT_HEADER
);
1633 return ((struct mbuf
*)0);
1635 #define OPTSIZ (sizeof(ip_srcrt.nop) + sizeof(ip_srcrt.srcopt))
1637 /* length is (nhops+1)*sizeof(addr) + sizeof(nop + srcrt header) */
1638 m
->m_len
= ip_nhops
* sizeof(struct in_addr
) + sizeof(struct in_addr
) +
1642 printf("ip_srcroute: nhops %d mlen %d", ip_nhops
, m
->m_len
);
1646 * First save first hop for return route
1648 p
= &ip_srcrt
.route
[ip_nhops
- 1];
1649 *(mtod(m
, struct in_addr
*)) = *p
--;
1652 printf(" hops %lx", (u_long
)ntohl(mtod(m
, struct in_addr
*)->s_addr
));
1656 * Copy option fields and padding (nop) to mbuf.
1658 ip_srcrt
.nop
= IPOPT_NOP
;
1659 ip_srcrt
.srcopt
[IPOPT_OFFSET
] = IPOPT_MINOFF
;
1660 (void)memcpy(mtod(m
, caddr_t
) + sizeof(struct in_addr
),
1661 &ip_srcrt
.nop
, OPTSIZ
);
1662 q
= (struct in_addr
*)(mtod(m
, caddr_t
) +
1663 sizeof(struct in_addr
) + OPTSIZ
);
1666 * Record return path as an IP source route,
1667 * reversing the path (pointers are now aligned).
1669 while (p
>= ip_srcrt
.route
) {
1672 printf(" %lx", (u_long
)ntohl(q
->s_addr
));
1677 * Last hop goes to final destination.
1682 printf(" %lx\n", (u_long
)ntohl(q
->s_addr
));
1688 * Strip out IP options, at higher
1689 * level protocol in the kernel.
1690 * Second argument is buffer to which options
1691 * will be moved, and return value is their length.
1692 * XXX should be deleted; last arg currently ignored.
1695 ip_stripoptions(m
, mopt
)
1696 register struct mbuf
*m
;
1700 struct ip
*ip
= mtod(m
, struct ip
*);
1701 register caddr_t opts
;
1704 olen
= (IP_VHL_HL(ip
->ip_vhl
) << 2) - sizeof (struct ip
);
1705 opts
= (caddr_t
)(ip
+ 1);
1706 i
= m
->m_len
- (sizeof (struct ip
) + olen
);
1707 bcopy(opts
+ olen
, opts
, (unsigned)i
);
1709 if (m
->m_flags
& M_PKTHDR
)
1710 m
->m_pkthdr
.len
-= olen
;
1711 ip
->ip_vhl
= IP_MAKE_VHL(IPVERSION
, sizeof(struct ip
) >> 2);
1714 u_char inetctlerrmap
[PRC_NCMDS
] = {
1716 0, EMSGSIZE
, EHOSTDOWN
, EHOSTUNREACH
,
1717 EHOSTUNREACH
, EHOSTUNREACH
, ECONNREFUSED
, ECONNREFUSED
,
1718 EMSGSIZE
, EHOSTUNREACH
, 0, 0,
1720 ENOPROTOOPT
, ECONNREFUSED
1724 * Forward a packet. If some error occurs return the sender
1725 * an icmp packet. Note we can't always generate a meaningful
1726 * icmp message because icmp doesn't have a large enough repertoire
1727 * of codes and types.
1729 * If not forwarding, just drop the packet. This could be confusing
1730 * if ipforwarding was zero but some routing protocol was advancing
1731 * us as a gateway to somewhere. However, we must let the routing
1732 * protocol deal with that.
1734 * The srcrt parameter indicates whether the packet is being forwarded
1735 * via a source route.
1738 ip_forward(m
, srcrt
)
1742 register struct ip
*ip
= mtod(m
, struct ip
*);
1743 register struct sockaddr_in
*sin
;
1744 register struct rtentry
*rt
;
1745 int error
, type
= 0, code
= 0;
1748 struct ifnet
*destifp
;
1750 struct ifnet dummyifp
;
1756 printf("forward: src %lx dst %lx ttl %x\n",
1757 (u_long
)ip
->ip_src
.s_addr
, (u_long
)ip
->ip_dst
.s_addr
,
1762 if (m
->m_flags
& (M_BCAST
|M_MCAST
) || in_canforward(ip
->ip_dst
) == 0) {
1763 ipstat
.ips_cantforward
++;
1770 if (ip
->ip_ttl
<= IPTTLDEC
) {
1771 icmp_error(m
, ICMP_TIMXCEED
, ICMP_TIMXCEED_INTRANS
,
1779 sin
= (struct sockaddr_in
*)&ipforward_rt
.ro_dst
;
1780 if ((rt
= ipforward_rt
.ro_rt
) == 0 ||
1781 ip
->ip_dst
.s_addr
!= sin
->sin_addr
.s_addr
||
1782 ipforward_rt
.ro_rt
->generation_id
!= route_generation
) {
1783 if (ipforward_rt
.ro_rt
) {
1784 rtfree(ipforward_rt
.ro_rt
);
1785 ipforward_rt
.ro_rt
= 0;
1787 sin
->sin_family
= AF_INET
;
1788 sin
->sin_len
= sizeof(*sin
);
1789 sin
->sin_addr
= ip
->ip_dst
;
1791 rtalloc_ign(&ipforward_rt
, RTF_PRCLONING
);
1792 if (ipforward_rt
.ro_rt
== 0) {
1793 icmp_error(m
, ICMP_UNREACH
, ICMP_UNREACH_HOST
, dest
, 0);
1796 rt
= ipforward_rt
.ro_rt
;
1800 * Save the IP header and at most 8 bytes of the payload,
1801 * in case we need to generate an ICMP message to the src.
1803 * We don't use m_copy() because it might return a reference
1804 * to a shared cluster. Both this function and ip_output()
1805 * assume exclusive access to the IP header in `m', so any
1806 * data in a cluster may change before we reach icmp_error().
1808 MGET(mcopy
, M_DONTWAIT
, m
->m_type
);
1809 if (mcopy
!= NULL
) {
1810 M_COPY_PKTHDR(mcopy
, m
);
1811 mcopy
->m_len
= imin((IP_VHL_HL(ip
->ip_vhl
) << 2) + 8,
1813 m_copydata(m
, 0, mcopy
->m_len
, mtod(mcopy
, caddr_t
));
1819 ip
->ip_ttl
-= IPTTLDEC
;
1825 * If forwarding packet using same interface that it came in on,
1826 * perhaps should send a redirect to sender to shortcut a hop.
1827 * Only send redirect if source is sending directly to us,
1828 * and if packet was not source routed (or has any options).
1829 * Also, don't send redirect if forwarding using a default route
1830 * or a route modified by a redirect.
1832 #define satosin(sa) ((struct sockaddr_in *)(sa))
1833 if (rt
->rt_ifp
== m
->m_pkthdr
.rcvif
&&
1834 (rt
->rt_flags
& (RTF_DYNAMIC
|RTF_MODIFIED
)) == 0 &&
1835 satosin(rt_key(rt
))->sin_addr
.s_addr
!= 0 &&
1836 ipsendredirects
&& !srcrt
) {
1837 #define RTA(rt) ((struct in_ifaddr *)(rt->rt_ifa))
1838 u_long src
= ntohl(ip
->ip_src
.s_addr
);
1841 (src
& RTA(rt
)->ia_subnetmask
) == RTA(rt
)->ia_subnet
) {
1842 if (rt
->rt_flags
& RTF_GATEWAY
)
1843 dest
= satosin(rt
->rt_gateway
)->sin_addr
.s_addr
;
1845 dest
= ip
->ip_dst
.s_addr
;
1846 /* Router requirements says to only send host redirects */
1847 type
= ICMP_REDIRECT
;
1848 code
= ICMP_REDIRECT_HOST
;
1851 printf("redirect (%d) to %lx\n", code
, (u_long
)dest
);
1856 error
= ip_output(m
, (struct mbuf
*)0, &ipforward_rt
,
1859 ipstat
.ips_cantforward
++;
1861 ipstat
.ips_forward
++;
1863 ipstat
.ips_redirectsent
++;
1866 ipflow_create(&ipforward_rt
, mcopy
);
1878 case 0: /* forwarded, but need redirect */
1879 /* type, code set above */
1882 case ENETUNREACH
: /* shouldn't happen, checked above */
1887 type
= ICMP_UNREACH
;
1888 code
= ICMP_UNREACH_HOST
;
1892 type
= ICMP_UNREACH
;
1893 code
= ICMP_UNREACH_NEEDFRAG
;
1895 if (ipforward_rt
.ro_rt
)
1896 destifp
= ipforward_rt
.ro_rt
->rt_ifp
;
1899 * If the packet is routed over IPsec tunnel, tell the
1900 * originator the tunnel MTU.
1901 * tunnel MTU = if MTU - sizeof(IP) - ESP/AH hdrsiz
1904 if (ipforward_rt
.ro_rt
) {
1905 struct secpolicy
*sp
= NULL
;
1911 destifp
= ipforward_rt
.ro_rt
->rt_ifp
;
1912 ipstat
.ips_cantfrag
++;
1916 sp
= ipsec4_getpolicybyaddr(mcopy
,
1922 destifp
= ipforward_rt
.ro_rt
->rt_ifp
;
1924 /* count IPsec header size */
1925 ipsechdr
= ipsec4_hdrsiz(mcopy
,
1930 * find the correct route for outer IPv4
1931 * header, compute tunnel MTU.
1934 * The "dummyifp" code relies upon the fact
1935 * that icmp_error() touches only ifp->if_mtu.
1940 && sp
->req
->sav
!= NULL
1941 && sp
->req
->sav
->sah
!= NULL
) {
1942 ro
= &sp
->req
->sav
->sah
->sa_route
;
1943 if (ro
->ro_rt
&& ro
->ro_rt
->rt_ifp
) {
1945 ro
->ro_rt
->rt_ifp
->if_mtu
;
1946 dummyifp
.if_mtu
-= ipsechdr
;
1947 destifp
= &dummyifp
;
1955 ipstat
.ips_cantfrag
++;
1959 type
= ICMP_SOURCEQUENCH
;
1963 case EACCES
: /* ipfw denied packet */
1967 icmp_error(mcopy
, type
, code
, dest
, destifp
);
1971 ip_savecontrol(inp
, mp
, ip
, m
)
1972 register struct inpcb
*inp
;
1973 register struct mbuf
**mp
;
1974 register struct ip
*ip
;
1975 register struct mbuf
*m
;
1977 if (inp
->inp_socket
->so_options
& SO_TIMESTAMP
) {
1981 *mp
= sbcreatecontrol((caddr_t
) &tv
, sizeof(tv
),
1982 SCM_TIMESTAMP
, SOL_SOCKET
);
1984 mp
= &(*mp
)->m_next
;
1986 if (inp
->inp_flags
& INP_RECVDSTADDR
) {
1987 *mp
= sbcreatecontrol((caddr_t
) &ip
->ip_dst
,
1988 sizeof(struct in_addr
), IP_RECVDSTADDR
, IPPROTO_IP
);
1990 mp
= &(*mp
)->m_next
;
1994 * Moving these out of udp_input() made them even more broken
1995 * than they already were.
1997 /* options were tossed already */
1998 if (inp
->inp_flags
& INP_RECVOPTS
) {
1999 *mp
= sbcreatecontrol((caddr_t
) opts_deleted_above
,
2000 sizeof(struct in_addr
), IP_RECVOPTS
, IPPROTO_IP
);
2002 mp
= &(*mp
)->m_next
;
2004 /* ip_srcroute doesn't do what we want here, need to fix */
2005 if (inp
->inp_flags
& INP_RECVRETOPTS
) {
2006 *mp
= sbcreatecontrol((caddr_t
) ip_srcroute(),
2007 sizeof(struct in_addr
), IP_RECVRETOPTS
, IPPROTO_IP
);
2009 mp
= &(*mp
)->m_next
;
2012 if (inp
->inp_flags
& INP_RECVIF
) {
2015 struct sockaddr_dl sdl
;
2018 struct sockaddr_dl
*sdp
;
2019 struct sockaddr_dl
*sdl2
= &sdlbuf
.sdl
;
2021 if (((ifp
= m
->m_pkthdr
.rcvif
))
2022 && ( ifp
->if_index
&& (ifp
->if_index
<= if_index
))) {
2023 sdp
= (struct sockaddr_dl
*)(ifnet_addrs
2024 [ifp
->if_index
- 1]->ifa_addr
);
2026 * Change our mind and don't try copy.
2028 if ((sdp
->sdl_family
!= AF_LINK
)
2029 || (sdp
->sdl_len
> sizeof(sdlbuf
))) {
2032 bcopy(sdp
, sdl2
, sdp
->sdl_len
);
2036 = offsetof(struct sockaddr_dl
, sdl_data
[0]);
2037 sdl2
->sdl_family
= AF_LINK
;
2038 sdl2
->sdl_index
= 0;
2039 sdl2
->sdl_nlen
= sdl2
->sdl_alen
= sdl2
->sdl_slen
= 0;
2041 *mp
= sbcreatecontrol((caddr_t
) sdl2
, sdl2
->sdl_len
,
2042 IP_RECVIF
, IPPROTO_IP
);
2044 mp
= &(*mp
)->m_next
;
2046 if (inp
->inp_flags
& INP_RECVTTL
) {
2047 *mp
= sbcreatecontrol((caddr_t
)&ip
->ip_ttl
, sizeof(ip
->ip_ttl
), IP_RECVTTL
, IPPROTO_IP
);
2048 if (*mp
) mp
= &(*mp
)->m_next
;
2053 ip_rsvp_init(struct socket
*so
)
2055 if (so
->so_type
!= SOCK_RAW
||
2056 so
->so_proto
->pr_protocol
!= IPPROTO_RSVP
)
2059 if (ip_rsvpd
!= NULL
)
2064 * This may seem silly, but we need to be sure we don't over-increment
2065 * the RSVP counter, in case something slips up.
2080 * This may seem silly, but we need to be sure we don't over-decrement
2081 * the RSVP counter, in case something slips up.