2 * Copyright (c) 2000-2008 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1982, 1986, 1988, 1993
30 * The Regents of the University of California. All rights reserved.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94
63 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
64 * support for mandatory and extensible security protections. This notice
65 * is included in support of clause 2.2 (b) of the Apple Public License,
69 #include <sys/param.h>
70 #include <sys/systm.h>
72 #include <sys/protosw.h>
73 #include <sys/socket.h>
75 #include <sys/kernel.h>
76 #include <sys/sysctl.h>
78 #include <machine/endian.h>
81 #include <net/route.h>
84 #include <netinet/in.h>
85 #include <netinet/in_systm.h>
86 #include <netinet/in_var.h>
87 #include <netinet/ip.h>
88 #include <netinet/ip_icmp.h>
89 #include <netinet/ip_var.h>
90 #include <netinet/icmp_var.h>
91 #include <netinet/tcp.h>
92 #include <netinet/tcp_fsm.h>
93 #include <netinet/tcp_seq.h>
94 #include <netinet/tcp_timer.h>
95 #include <netinet/tcp_var.h>
96 #include <netinet/tcpip.h>
99 #include <netinet6/ipsec.h>
100 #include <netkey/key.h>
103 #if defined(NFAITH) && NFAITH > 0
105 #include <net/if_types.h>
108 /* XXX This one should go in sys/mbuf.h. It is used to avoid that
109 * a firewall-generated packet loops forever through the firewall.
111 #ifndef M_SKIP_FIREWALL
112 #define M_SKIP_FIREWALL 0x4000
116 #include <security/mac_framework.h>
121 * ICMP routines: error generation, receive packet processing, and
122 * routines to turnaround packets back to the originator, and
123 * host table maintenance routines.
126 struct icmpstat icmpstat
;
127 SYSCTL_STRUCT(_net_inet_icmp
, ICMPCTL_STATS
, stats
, CTLFLAG_RD
,
128 &icmpstat
, icmpstat
, "");
130 static int icmpmaskrepl
= 0;
131 SYSCTL_INT(_net_inet_icmp
, ICMPCTL_MASKREPL
, maskrepl
, CTLFLAG_RW
,
132 &icmpmaskrepl
, 0, "");
134 static int icmptimestamp
= 0;
135 SYSCTL_INT(_net_inet_icmp
, ICMPCTL_TIMESTAMP
, timestamp
, CTLFLAG_RW
,
136 &icmptimestamp
, 0, "");
138 static int drop_redirect
= 0;
139 SYSCTL_INT(_net_inet_icmp
, OID_AUTO
, drop_redirect
, CTLFLAG_RW
,
140 &drop_redirect
, 0, "");
142 static int log_redirect
= 0;
143 SYSCTL_INT(_net_inet_icmp
, OID_AUTO
, log_redirect
, CTLFLAG_RW
,
144 &log_redirect
, 0, "");
149 * ICMP error-response bandwidth limiting sysctl. If not enabled, sysctl
150 * variable content is -1 and read-only.
153 static int icmplim
= 250;
154 SYSCTL_INT(_net_inet_icmp
, ICMPCTL_ICMPLIM
, icmplim
, CTLFLAG_RW
,
158 static int icmplim
= -1;
159 SYSCTL_INT(_net_inet_icmp
, ICMPCTL_ICMPLIM
, icmplim
, CTLFLAG_RD
,
165 * ICMP broadcast echo sysctl
168 static int icmpbmcastecho
= 1;
169 SYSCTL_INT(_net_inet_icmp
, OID_AUTO
, bmcastecho
, CTLFLAG_RW
,
170 &icmpbmcastecho
, 0, "");
177 static void icmp_reflect(struct mbuf
*);
178 static void icmp_send(struct mbuf
*, struct mbuf
*);
180 extern struct protosw inetsw
[];
183 * Generate an error packet of type error
184 * in response to bad packet ip.
194 struct ip
*oip
= mtod(n
, struct ip
*), *nip
;
195 unsigned oiplen
= IP_VHL_HL(oip
->ip_vhl
) << 2;
202 printf("icmp_error(%p, %x, %d)\n", oip
, type
, code
);
204 if (type
!= ICMP_REDIRECT
)
205 icmpstat
.icps_error
++;
207 * Don't send error if not the first fragment of message.
208 * Don't error if the old packet protocol was ICMP
209 * error message, only known informational types.
211 if (oip
->ip_off
&~ (IP_MF
|IP_DF
))
213 if (oip
->ip_p
== IPPROTO_ICMP
&& type
!= ICMP_REDIRECT
&&
214 n
->m_len
>= oiplen
+ ICMP_MINLEN
&&
215 !ICMP_INFOTYPE(((struct icmp
*)((caddr_t
)oip
+ oiplen
))->icmp_type
)) {
216 icmpstat
.icps_oldicmp
++;
219 /* Don't send error in response to a multicast or broadcast packet */
220 if (n
->m_flags
& (M_BCAST
|M_MCAST
))
223 * First, formulate icmp message
225 m
= m_gethdr(M_DONTWAIT
, MT_HEADER
); /* MAC-OK */
229 if (n
->m_flags
& M_SKIP_FIREWALL
) {
230 /* set M_SKIP_FIREWALL to skip firewall check, since we're called from firewall */
231 m
->m_flags
|= M_SKIP_FIREWALL
;
235 mac_mbuf_label_associate_netlayer(n
, m
);
237 icmplen
= min(oiplen
+ 8, oip
->ip_len
);
238 if (icmplen
< sizeof(struct ip
)) {
239 printf("icmp_error: bad length\n");
243 m
->m_len
= icmplen
+ ICMP_MINLEN
;
244 MH_ALIGN(m
, m
->m_len
);
245 icp
= mtod(m
, struct icmp
*);
246 if ((u_int
)type
> ICMP_MAXTYPE
)
248 icmpstat
.icps_outhist
[type
]++;
249 icp
->icmp_type
= type
;
250 if (type
== ICMP_REDIRECT
)
251 icp
->icmp_gwaddr
.s_addr
= dest
;
255 * The following assignments assume an overlay with the
256 * zeroed icmp_void field.
258 if (type
== ICMP_PARAMPROB
) {
259 icp
->icmp_pptr
= code
;
261 } else if (type
== ICMP_UNREACH
&&
262 code
== ICMP_UNREACH_NEEDFRAG
&& nextmtu
!= 0) {
263 icp
->icmp_nextmtu
= htons(nextmtu
);
267 icp
->icmp_code
= code
;
268 m_copydata(n
, 0, icmplen
, (caddr_t
)&icp
->icmp_ip
);
272 * Convert fields to network representation.
274 #if BYTE_ORDER != BIG_ENDIAN
279 * Now, copy old ip header (without options)
280 * in front of icmp message.
282 if (m
->m_data
- sizeof(struct ip
) < m
->m_pktdat
)
284 m
->m_data
-= sizeof(struct ip
);
285 m
->m_len
+= sizeof(struct ip
);
286 m
->m_pkthdr
.len
= m
->m_len
;
287 m
->m_pkthdr
.rcvif
= n
->m_pkthdr
.rcvif
;
288 nip
= mtod(m
, struct ip
*);
289 bcopy((caddr_t
)oip
, (caddr_t
)nip
, sizeof(struct ip
));
290 nip
->ip_len
= m
->m_len
;
291 nip
->ip_vhl
= IP_VHL_BORING
;
292 nip
->ip_p
= IPPROTO_ICMP
;
300 static struct sockaddr_in icmpsrc
= { sizeof (struct sockaddr_in
), AF_INET
,
301 0 , { 0 }, { 0,0,0,0,0,0,0,0 } };
302 static struct sockaddr_in icmpdst
= { sizeof (struct sockaddr_in
), AF_INET
,
303 0 , { 0 }, { 0,0,0,0,0,0,0,0 } };
304 static struct sockaddr_in icmpgw
= { sizeof (struct sockaddr_in
), AF_INET
,
305 0 , { 0 }, { 0,0,0,0,0,0,0,0 } };
308 * Process a received ICMP message.
311 icmp_input(struct mbuf
*m
, int hlen
)
314 struct ip
*ip
= mtod(m
, struct ip
*);
315 int icmplen
= ip
->ip_len
;
317 struct in_ifaddr
*ia
;
318 void (*ctlfunc
)(int, struct sockaddr
*, void *);
322 * Locate icmp structure in mbuf, and check
323 * that not corrupted and of at least minimum length.
327 char buf
[MAX_IPv4_STR_LEN
];
328 char ipv4str
[MAX_IPv4_STR_LEN
];
330 printf("icmp_input from %s to %s, len %d\n",
331 inet_ntop(AF_INET
, &ip
->ip_src
, buf
, sizeof(buf
)),
332 inet_ntop(AF_INET
, &ip
->ip_dst
, ipv4str
, sizeof(ipv4str
)),
336 if (icmplen
< ICMP_MINLEN
) {
337 icmpstat
.icps_tooshort
++;
340 i
= hlen
+ min(icmplen
, ICMP_ADVLENMIN
);
341 if (m
->m_len
< i
&& (m
= m_pullup(m
, i
)) == 0) {
342 icmpstat
.icps_tooshort
++;
345 ip
= mtod(m
, struct ip
*);
348 icp
= mtod(m
, struct icmp
*);
349 if (in_cksum(m
, icmplen
)) {
350 icmpstat
.icps_checksum
++;
356 #if defined(NFAITH) && 0 < NFAITH
357 if (m
->m_pkthdr
.rcvif
&& m
->m_pkthdr
.rcvif
->if_type
== IFT_FAITH
) {
359 * Deliver very specific ICMP type only.
361 switch (icp
->icmp_type
) {
373 printf("icmp_input, type %d code %d\n", icp
->icmp_type
,
378 * Message type specific processing.
380 if (icp
->icmp_type
> ICMP_MAXTYPE
)
382 icmpstat
.icps_inhist
[icp
->icmp_type
]++;
383 code
= icp
->icmp_code
;
384 switch (icp
->icmp_type
) {
388 case ICMP_UNREACH_NET
:
389 case ICMP_UNREACH_HOST
:
390 case ICMP_UNREACH_SRCFAIL
:
391 case ICMP_UNREACH_NET_UNKNOWN
:
392 case ICMP_UNREACH_HOST_UNKNOWN
:
393 case ICMP_UNREACH_ISOLATED
:
394 case ICMP_UNREACH_TOSNET
:
395 case ICMP_UNREACH_TOSHOST
:
396 case ICMP_UNREACH_HOST_PRECEDENCE
:
397 case ICMP_UNREACH_PRECEDENCE_CUTOFF
:
398 code
= PRC_UNREACH_NET
;
401 case ICMP_UNREACH_NEEDFRAG
:
406 * RFC 1122, Sections 3.2.2.1 and 4.2.3.9.
407 * Treat subcodes 2,3 as immediate RST
409 case ICMP_UNREACH_PROTOCOL
:
410 case ICMP_UNREACH_PORT
:
411 code
= PRC_UNREACH_PORT
;
414 case ICMP_UNREACH_NET_PROHIB
:
415 case ICMP_UNREACH_HOST_PROHIB
:
416 case ICMP_UNREACH_FILTER_PROHIB
:
417 code
= PRC_UNREACH_ADMIN_PROHIB
;
428 code
+= PRC_TIMXCEED_INTRANS
;
434 code
= PRC_PARAMPROB
;
437 case ICMP_SOURCEQUENCH
:
443 * Problem with datagram; advise higher level routines.
445 if (icmplen
< ICMP_ADVLENMIN
|| icmplen
< ICMP_ADVLEN(icp
) ||
446 IP_VHL_HL(icp
->icmp_ip
.ip_vhl
) < (sizeof(struct ip
) >> 2)) {
447 icmpstat
.icps_badlen
++;
451 #if BYTE_ORDER != BIG_ENDIAN
452 NTOHS(icp
->icmp_ip
.ip_len
);
455 /* Discard ICMP's in response to multicast packets */
456 if (IN_MULTICAST(ntohl(icp
->icmp_ip
.ip_dst
.s_addr
)))
460 printf("deliver to protocol %d\n", icp
->icmp_ip
.ip_p
);
462 icmpsrc
.sin_addr
= icp
->icmp_ip
.ip_dst
;
465 * XXX if the packet contains [IPv4 AH TCP], we can't make a
466 * notification to TCP layer.
468 ctlfunc
= ip_protox
[icp
->icmp_ip
.ip_p
]->pr_ctlinput
;
470 (*ctlfunc
)(code
, (struct sockaddr
*)&icmpsrc
,
471 (void *)&icp
->icmp_ip
);
475 icmpstat
.icps_badcode
++;
480 && (m
->m_flags
& (M_MCAST
| M_BCAST
)) != 0) {
481 icmpstat
.icps_bmcastecho
++;
484 icp
->icmp_type
= ICMP_ECHOREPLY
;
486 if (badport_bandlim(BANDLIM_ICMP_ECHO
) < 0)
494 if (icmptimestamp
== 0)
498 && (m
->m_flags
& (M_MCAST
| M_BCAST
)) != 0) {
499 icmpstat
.icps_bmcasttstamp
++;
502 if (icmplen
< ICMP_TSLEN
) {
503 icmpstat
.icps_badlen
++;
506 icp
->icmp_type
= ICMP_TSTAMPREPLY
;
507 icp
->icmp_rtime
= iptime();
508 icp
->icmp_ttime
= icp
->icmp_rtime
; /* bogus, do later! */
510 if (badport_bandlim(BANDLIM_ICMP_TSTAMP
) < 0)
517 #define satosin(sa) ((struct sockaddr_in *)(sa))
518 if (icmpmaskrepl
== 0)
521 * We are not able to respond with all ones broadcast
522 * unless we receive it over a point-to-point interface.
524 if (icmplen
< ICMP_MASKLEN
)
526 switch (ip
->ip_dst
.s_addr
) {
528 case INADDR_BROADCAST
:
530 icmpdst
.sin_addr
= ip
->ip_src
;
534 icmpdst
.sin_addr
= ip
->ip_dst
;
536 ia
= (struct in_ifaddr
*)ifaof_ifpforaddr(
537 (struct sockaddr
*)&icmpdst
, m
->m_pkthdr
.rcvif
);
540 if (ia
->ia_ifp
== 0) {
541 ifafree(&ia
->ia_ifa
);
545 icp
->icmp_type
= ICMP_MASKREPLY
;
546 icp
->icmp_mask
= ia
->ia_sockmask
.sin_addr
.s_addr
;
547 if (ip
->ip_src
.s_addr
== 0) {
548 if (ia
->ia_ifp
->if_flags
& IFF_BROADCAST
)
549 ip
->ip_src
= satosin(&ia
->ia_broadaddr
)->sin_addr
;
550 else if (ia
->ia_ifp
->if_flags
& IFF_POINTOPOINT
)
551 ip
->ip_src
= satosin(&ia
->ia_dstaddr
)->sin_addr
;
553 ifafree(&ia
->ia_ifa
);
555 ip
->ip_len
+= hlen
; /* since ip_input deducts this */
556 icmpstat
.icps_reflect
++;
557 icmpstat
.icps_outhist
[icp
->icmp_type
]++;
563 u_int32_t src
, dst
, gw
;
565 src
= ntohl(ip
->ip_src
.s_addr
);
566 dst
= ntohl(icp
->icmp_ip
.ip_dst
.s_addr
);
567 gw
= ntohl(icp
->icmp_gwaddr
.s_addr
);
568 printf("icmp redirect from %d.%d.%d.%d: "
569 "%d.%d.%d.%d => %d.%d.%d.%d\n",
570 (int)(src
>> 24), (int)((src
>> 16) & 0xff),
571 (int)((src
>> 8) & 0xff), (int)(src
& 0xff),
572 (int)(dst
>> 24), (int)((dst
>> 16) & 0xff),
573 (int)((dst
>> 8) & 0xff), (int)(dst
& 0xff),
574 (int)(gw
>> 24), (int)((gw
>> 16) & 0xff),
575 (int)((gw
>> 8) & 0xff), (int)(gw
& 0xff));
581 if (icmplen
< ICMP_ADVLENMIN
|| icmplen
< ICMP_ADVLEN(icp
) ||
582 IP_VHL_HL(icp
->icmp_ip
.ip_vhl
) < (sizeof(struct ip
) >> 2)) {
583 icmpstat
.icps_badlen
++;
587 * Short circuit routing redirects to force
588 * immediate change in the kernel's routing
589 * tables. The message is also handed to anyone
590 * listening on a raw socket (e.g. the routing
591 * daemon for use in updating its tables).
593 icmpgw
.sin_addr
= ip
->ip_src
;
594 icmpdst
.sin_addr
= icp
->icmp_gwaddr
;
597 char buf
[MAX_IPv4_STR_LEN
];
599 printf("redirect dst %s to %s\n",
600 inet_ntop(AF_INET
, &icp
->icmp_ip
.ip_dst
, buf
, sizeof(buf
)),
601 inet_ntop(AF_INET
, &icp
->icmp_gwaddr
, ipv4str
,
605 icmpsrc
.sin_addr
= icp
->icmp_ip
.ip_dst
;
606 rtredirect(m
->m_pkthdr
.rcvif
, (struct sockaddr
*)&icmpsrc
,
607 (struct sockaddr
*)&icmpdst
, NULL
, RTF_GATEWAY
| RTF_HOST
,
608 (struct sockaddr
*)&icmpgw
, NULL
);
609 pfctlinput(PRC_REDIRECT_HOST
, (struct sockaddr
*)&icmpsrc
);
611 key_sa_routechange((struct sockaddr
*)&icmpsrc
);
616 * No kernel processing for the following;
617 * just fall through to send to raw listener.
620 case ICMP_ROUTERADVERT
:
621 case ICMP_ROUTERSOLICIT
:
622 case ICMP_TSTAMPREPLY
:
638 * Reflect the ip packet back to the source
641 icmp_reflect(struct mbuf
*m
)
643 struct ip
*ip
= mtod(m
, struct ip
*);
644 struct in_ifaddr
*ia
;
646 struct mbuf
*opts
= NULL
;
647 int optlen
= (IP_VHL_HL(ip
->ip_vhl
) << 2) - sizeof(struct ip
);
649 if (!in_canforward(ip
->ip_src
) &&
650 ((ntohl(ip
->ip_src
.s_addr
) & IN_CLASSA_NET
) !=
651 (IN_LOOPBACKNET
<< IN_CLASSA_NSHIFT
))) {
652 m_freem(m
); /* Bad return address */
653 goto done
; /* Ip_output() will check for broadcast */
656 ip
->ip_dst
= ip
->ip_src
;
658 * If the incoming packet was addressed directly to us,
659 * use dst as the src for the reply. Otherwise (broadcast
660 * or anonymous), use the address which corresponds
661 * to the incoming interface.
663 lck_rw_lock_shared(in_ifaddr_rwlock
);
664 TAILQ_FOREACH(ia
, INADDR_HASH(t
.s_addr
), ia_hash
) {
665 if (t
.s_addr
== IA_SIN(ia
)->sin_addr
.s_addr
)
669 * Slow path; check for broadcast addresses. Find a source
670 * IP address to use when replying to the broadcast request;
671 * let IP handle the source interface selection work.
673 for (ia
= in_ifaddrhead
.tqh_first
; ia
; ia
= ia
->ia_link
.tqe_next
) {
674 if (ia
->ia_ifp
&& (ia
->ia_ifp
->if_flags
& IFF_BROADCAST
) &&
675 t
.s_addr
== satosin(&ia
->ia_broadaddr
)->sin_addr
.s_addr
)
681 lck_rw_done(in_ifaddr_rwlock
);
682 icmpdst
.sin_addr
= t
;
683 if ((ia
== (struct in_ifaddr
*)0) && m
->m_pkthdr
.rcvif
)
684 ia
= (struct in_ifaddr
*)ifaof_ifpforaddr(
685 (struct sockaddr
*)&icmpdst
, m
->m_pkthdr
.rcvif
);
687 * The following happens if the packet was not addressed to us,
688 * and was received on an interface with no IP address.
690 if (ia
== (struct in_ifaddr
*)0) {
691 lck_rw_lock_shared(in_ifaddr_rwlock
);
692 ia
= in_ifaddrhead
.tqh_first
;
693 if (ia
== (struct in_ifaddr
*)0) {/* no address yet, bail out */
694 lck_rw_done(in_ifaddr_rwlock
);
699 lck_rw_done(in_ifaddr_rwlock
);
702 mac_netinet_icmp_reply(m
);
704 t
= IA_SIN(ia
)->sin_addr
;
706 ip
->ip_ttl
= ip_defttl
;
707 ifafree(&ia
->ia_ifa
);
716 * Retrieve any source routing from the incoming packet;
717 * add on any record-route or timestamp options.
719 cp
= (u_char
*) (ip
+ 1);
720 if ((opts
= ip_srcroute()) == 0 &&
721 (opts
= m_gethdr(M_DONTWAIT
, MT_HEADER
))) { /* MAC-OK */
722 opts
->m_len
= sizeof(struct in_addr
);
723 mtod(opts
, struct in_addr
*)->s_addr
= 0;
728 printf("icmp_reflect optlen %d rt %d => ",
729 optlen
, opts
->m_len
);
731 for (cnt
= optlen
; cnt
> 0; cnt
-= len
, cp
+= len
) {
732 opt
= cp
[IPOPT_OPTVAL
];
733 if (opt
== IPOPT_EOL
)
735 if (opt
== IPOPT_NOP
)
738 if (cnt
< IPOPT_OLEN
+ sizeof(*cp
))
740 len
= cp
[IPOPT_OLEN
];
741 if (len
< IPOPT_OLEN
+ sizeof(*cp
) ||
746 * Should check for overflow, but it "can't happen"
748 if (opt
== IPOPT_RR
|| opt
== IPOPT_TS
||
749 opt
== IPOPT_SECURITY
) {
751 mtod(opts
, caddr_t
) + opts
->m_len
, len
);
755 /* Terminate & pad, if necessary */
756 cnt
= opts
->m_len
% 4;
758 for (; cnt
< 4; cnt
++) {
759 *(mtod(opts
, caddr_t
) + opts
->m_len
) =
766 printf("%d\n", opts
->m_len
);
770 * Now strip out original options by copying rest of first
771 * mbuf's data back, and adjust the IP length.
773 ip
->ip_len
-= optlen
;
774 ip
->ip_vhl
= IP_VHL_BORING
;
776 if (m
->m_flags
& M_PKTHDR
)
777 m
->m_pkthdr
.len
-= optlen
;
778 optlen
+= sizeof(struct ip
);
779 bcopy((caddr_t
)ip
+ optlen
, (caddr_t
)(ip
+ 1),
780 (unsigned)(m
->m_len
- sizeof(struct ip
)));
782 m
->m_flags
&= ~(M_BCAST
|M_MCAST
);
790 * Send an icmp packet back to the ip level,
791 * after supplying a checksum.
794 icmp_send(struct mbuf
*m
, struct mbuf
*opts
)
796 struct ip
*ip
= mtod(m
, struct ip
*);
800 struct ip_out_args ipoa
= { IFSCOPE_NONE
};
802 if ((m
->m_flags
& M_PKTHDR
) && m
->m_pkthdr
.rcvif
!= NULL
)
803 ipoa
.ipoa_ifscope
= m
->m_pkthdr
.rcvif
->if_index
;
805 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
808 icp
= mtod(m
, struct icmp
*);
810 icp
->icmp_cksum
= in_cksum(m
, ip
->ip_len
- hlen
);
813 m
->m_pkthdr
.rcvif
= NULL
;
814 m
->m_pkthdr
.csum_data
= 0;
815 m
->m_pkthdr
.csum_flags
= 0;
818 char buf
[MAX_IPv4_STR_LEN
];
819 char ipv4str
[MAX_IPv4_STR_LEN
];
821 printf("icmp_send dst %s src %s\n",
822 inet_ntop(AF_INET
, &ip
->ip_dst
, buf
, sizeof(buf
)),
823 inet_ntop(AF_INET
, &ip
->ip_src
, ipv4str
, sizeof(ipv4str
)));
826 bzero(&ro
, sizeof ro
);
827 (void) ip_output(m
, opts
, &ro
, IP_OUTARGS
, NULL
, &ipoa
);
839 t
= (atv
.tv_sec
% (24*60*60)) * 1000 + atv
.tv_usec
/ 1000;
845 * Return the next larger or smaller MTU plateau (table from RFC 1191)
846 * given current value MTU. If DIR is less than zero, a larger plateau
847 * is returned; otherwise, a smaller value is returned.
850 ip_next_mtu(int mtu
, int dir
)
852 static int mtutab
[] = {
853 65535, 32000, 17914, 8166, 4352, 2002, 1492, 1006, 508, 296,
858 for (i
= 0; i
< (sizeof mtutab
) / (sizeof mtutab
[0]); i
++) {
859 if (mtu
>= mtutab
[i
])
867 return mtutab
[i
- 1];
870 if (mtutab
[i
] == 0) {
872 } else if(mtu
> mtutab
[i
]) {
875 return mtutab
[i
+ 1];
884 * badport_bandlim() - check for ICMP bandwidth limit
886 * Return 0 if it is ok to send an ICMP error response, -1 if we have
887 * hit our bandwidth limit and it is not ok.
889 * If icmplim is <= 0, the feature is disabled and 0 is returned.
891 * For now we separate the TCP and UDP subsystems w/ different 'which'
892 * values. We may eventually remove this separation (and simplify the
895 * Note that the printing of the error message is delayed so we can
896 * properly print the icmp error rate that the system was trying to do
897 * (i.e. 22000/100 pps, etc...). This can cause long delays in printing
898 * the 'final' error, but it doesn't make sense to solve the printing
899 * delay with more complex code.
903 badport_bandlim(int which
)
905 static struct timeval lticks
[BANDLIM_MAX
+ 1];
906 static int lpackets
[BANDLIM_MAX
+ 1];
910 const char *bandlimittype
[] = {
911 "Limiting icmp unreach response",
912 "Limiting icmp ping response",
913 "Limiting icmp tstamp response",
914 "Limiting closed port RST response",
915 "Limiting open port RST response"
919 * Return ok status if feature disabled or argument out of
923 if (icmplim
<= 0 || which
> BANDLIM_MAX
|| which
< 0)
926 getmicrouptime(&time
);
928 secs
= time
.tv_sec
- lticks
[which
].tv_sec
;
931 * reset stats when cumulative delta exceeds one second.
934 if ((secs
> 1) || (secs
== 1 && (lticks
[which
].tv_usec
> time
.tv_usec
))) {
935 if (lpackets
[which
] > icmplim
) {
936 printf("%s from %d to %d packets per second\n",
937 bandlimittype
[which
],
942 lticks
[which
].tv_sec
= time
.tv_sec
;
943 lticks
[which
].tv_usec
= time
.tv_usec
;
951 if (++lpackets
[which
] > icmplim
) {
962 * Non-privileged ICMP socket operations
963 * - send ICMP echo request
965 * - limited socket options
968 #include <netinet/ip_icmp.h>
969 #include <netinet/in_pcb.h>
971 extern struct domain inetdomain
;
972 extern u_int32_t rip_sendspace
;
973 extern u_int32_t rip_recvspace
;
974 extern struct inpcbinfo ripcbinfo
;
976 int rip_abort(struct socket
*);
977 int rip_bind(struct socket
*, struct sockaddr
*, struct proc
*);
978 int rip_connect(struct socket
*, struct sockaddr
*, struct proc
*);
979 int rip_detach(struct socket
*);
980 int rip_disconnect(struct socket
*);
981 int rip_shutdown(struct socket
*);
983 __private_extern__
int icmp_dgram_send(struct socket
*so
, int flags
, struct mbuf
*m
, struct sockaddr
*nam
, struct mbuf
*control
, struct proc
*p
);
984 __private_extern__
int icmp_dgram_attach(struct socket
*so
, int proto
, struct proc
*p
);
985 __private_extern__
int icmp_dgram_ctloutput(struct socket
*so
, struct sockopt
*sopt
);
987 __private_extern__
struct pr_usrreqs icmp_dgram_usrreqs
= {
988 rip_abort
, pru_accept_notsupp
, icmp_dgram_attach
, rip_bind
, rip_connect
,
989 pru_connect2_notsupp
, in_control
, rip_detach
, rip_disconnect
,
990 pru_listen_notsupp
, in_setpeeraddr
, pru_rcvd_notsupp
,
991 pru_rcvoob_notsupp
, icmp_dgram_send
, pru_sense_null
, rip_shutdown
,
992 in_setsockaddr
, sosend
, soreceive
, pru_sopoll_notsupp
995 /* Like rip_attach but without root privilege enforcement */
996 __private_extern__
int
997 icmp_dgram_attach(struct socket
*so
, __unused
int proto
, struct proc
*p
)
1002 inp
= sotoinpcb(so
);
1004 panic("icmp_dgram_attach");
1006 error
= soreserve(so
, rip_sendspace
, rip_recvspace
);
1009 error
= in_pcballoc(so
, &ripcbinfo
, p
);
1012 inp
= (struct inpcb
*)so
->so_pcb
;
1013 inp
->inp_vflag
|= INP_IPV4
;
1014 inp
->inp_ip_p
= IPPROTO_ICMP
;
1015 inp
->inp_ip_ttl
= ip_defttl
;
1020 * Raw IP socket option processing.
1022 __private_extern__
int
1023 icmp_dgram_ctloutput(struct socket
*so
, struct sockopt
*sopt
)
1027 if (sopt
->sopt_level
!= IPPROTO_IP
)
1030 switch (sopt
->sopt_name
) {
1036 case IP_RECVRETOPTS
:
1037 case IP_RECVDSTADDR
:
1039 case IP_MULTICAST_IF
:
1040 case IP_MULTICAST_TTL
:
1041 case IP_MULTICAST_LOOP
:
1042 case IP_ADD_MEMBERSHIP
:
1043 case IP_DROP_MEMBERSHIP
:
1044 case IP_MULTICAST_VIF
:
1047 case IP_IPSEC_POLICY
:
1048 #if defined(NFAITH) && NFAITH > 0
1054 #if CONFIG_FORCE_OUT_IFP
1055 case IP_FORCE_OUT_IFP
:
1057 error
= rip_ctloutput(so
, sopt
);
1068 __private_extern__
int
1069 icmp_dgram_send(struct socket
*so
, int flags
, struct mbuf
*m
, struct sockaddr
*nam
,
1070 struct mbuf
*control
, struct proc
*p
)
1073 struct inpcb
*inp
= sotoinpcb(so
);
1076 struct in_ifaddr
*ia
= NULL
;
1079 if ((inp
->inp_flags
& INP_HDRINCL
) != 0) {
1081 * This is not raw IP, we liberal only for fields TOS, id and TTL
1083 ip
= mtod(m
, struct ip
*);
1085 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
1086 /* Some sanity checks */
1087 if (m
->m_pkthdr
.len
< hlen
+ ICMP_MINLEN
) {
1091 if (IP_VHL_V(ip
->ip_vhl
) != 4)
1093 if (hlen
< 20 || hlen
> 40 || ip
->ip_len
!= m
->m_pkthdr
.len
)
1095 /* Bogus fragments can tie up peer resources */
1096 if ((ip
->ip_off
& ~IP_DF
) != 0)
1098 /* Allow only ICMP even for user provided IP header */
1099 if (ip
->ip_p
!= IPPROTO_ICMP
)
1101 /* To prevent spoofing, specified source address must be one of ours */
1102 if (ip
->ip_src
.s_addr
!= INADDR_ANY
) {
1103 socket_unlock(so
, 0);
1104 lck_rw_lock_shared(in_ifaddr_rwlock
);
1105 if (TAILQ_EMPTY(&in_ifaddrhead
)) {
1106 lck_rw_done(in_ifaddr_rwlock
);
1110 TAILQ_FOREACH(ia
, INADDR_HASH(ip
->ip_src
.s_addr
),
1112 if (IA_SIN(ia
)->sin_addr
.s_addr
==
1113 ip
->ip_src
.s_addr
) {
1114 lck_rw_done(in_ifaddr_rwlock
);
1119 lck_rw_done(in_ifaddr_rwlock
);
1124 /* Do not trust we got a valid checksum */
1127 icp
= (struct icmp
*)(((char *)m
->m_data
) + hlen
);
1128 icmplen
= m
->m_pkthdr
.len
- hlen
;
1130 if ((icmplen
= m
->m_pkthdr
.len
) < ICMP_MINLEN
) {
1133 icp
= mtod(m
, struct icmp
*);
1136 * Allow only to send request types with code 0
1138 if (icp
->icmp_code
!= 0)
1140 switch (icp
->icmp_type
) {
1154 return rip_send(so
, flags
, m
, nam
, control
, p
);
1160 #endif /* __APPLE__ */