xref: /freebsd/sys/netinet/ip_icmp.c (revision ca4cd20c4afeb68ae30c4cc1103280590a099fe7)
1c398230bSWarner Losh /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
4df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 1986, 1988, 1993
5df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
6df8bae1dSRodney W. Grimes  *
7df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
8df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
9df8bae1dSRodney W. Grimes  * are met:
10df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
12df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
13df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
14df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
16df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
17df8bae1dSRodney W. Grimes  *    without specific prior written permission.
18df8bae1dSRodney W. Grimes  *
19df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
30df8bae1dSRodney W. Grimes  *
31df8bae1dSRodney W. Grimes  *	@(#)ip_icmp.c	8.2 (Berkeley) 1/4/94
32df8bae1dSRodney W. Grimes  */
33df8bae1dSRodney W. Grimes 
344b421e2dSMike Silbersack #include <sys/cdefs.h>
354b421e2dSMike Silbersack __FBSDID("$FreeBSD$");
364b421e2dSMike Silbersack 
37b8e463e6SBjoern A. Zeeb #include "opt_inet.h"
386a800098SYoshinobu Inoue 
39df8bae1dSRodney W. Grimes #include <sys/param.h>
40df8bae1dSRodney W. Grimes #include <sys/systm.h>
41df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
42df8bae1dSRodney W. Grimes #include <sys/protosw.h>
43df8bae1dSRodney W. Grimes #include <sys/socket.h>
44df8bae1dSRodney W. Grimes #include <sys/time.h>
45df8bae1dSRodney W. Grimes #include <sys/kernel.h>
46cc0a3c8cSAndrey V. Elsukov #include <sys/lock.h>
47b5e8ce9fSBruce Evans #include <sys/sysctl.h>
4840fe9effSAndre Oppermann #include <sys/syslog.h>
49df8bae1dSRodney W. Grimes 
50df8bae1dSRodney W. Grimes #include <net/if.h>
5176039bc8SGleb Smirnoff #include <net/if_var.h>
529494d596SBrooks Davis #include <net/if_types.h>
53df8bae1dSRodney W. Grimes #include <net/route.h>
54da187ddbSAlexander V. Chernikov #include <net/route/route_ctl.h>
559ac7c6cfSAlexander V. Chernikov #include <net/route/nhop.h>
56eddfbb76SRobert Watson #include <net/vnet.h>
57df8bae1dSRodney W. Grimes 
58df8bae1dSRodney W. Grimes #include <netinet/in.h>
599977be4aSAlexander V. Chernikov #include <netinet/in_fib.h>
6097d8d152SAndre Oppermann #include <netinet/in_pcb.h>
61df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
62df8bae1dSRodney W. Grimes #include <netinet/in_var.h>
63df8bae1dSRodney W. Grimes #include <netinet/ip.h>
64df8bae1dSRodney W. Grimes #include <netinet/ip_icmp.h>
65b5e8ce9fSBruce Evans #include <netinet/ip_var.h>
66ef39adf0SAndre Oppermann #include <netinet/ip_options.h>
67f88d0cfeSMichael Tuexen #include <netinet/sctp.h>
6897d8d152SAndre Oppermann #include <netinet/tcp.h>
6997d8d152SAndre Oppermann #include <netinet/tcp_var.h>
7097d8d152SAndre Oppermann #include <netinet/tcpip.h>
71df8bae1dSRodney W. Grimes #include <netinet/icmp_var.h>
72df8bae1dSRodney W. Grimes 
73b8e463e6SBjoern A. Zeeb #ifdef INET
74b9234fafSSam Leffler 
7572a52a35SJonathan Lemon #include <machine/in_cksum.h>
7672a52a35SJonathan Lemon 
77aed55708SRobert Watson #include <security/mac/mac_framework.h>
78b8e463e6SBjoern A. Zeeb #endif /* INET */
79aed55708SRobert Watson 
80df8bae1dSRodney W. Grimes /*
81df8bae1dSRodney W. Grimes  * ICMP routines: error generation, receive packet processing, and
82df8bae1dSRodney W. Grimes  * routines to turnaround packets back to the originator, and
83df8bae1dSRodney W. Grimes  * host table maintenance routines.
84df8bae1dSRodney W. Grimes  */
855f901c92SAndrew Turner VNET_DEFINE_STATIC(int, icmplim) = 200;
86b8e463e6SBjoern A. Zeeb #define	V_icmplim			VNET(icmplim)
876df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_VNET | CTLFLAG_RW,
88b8e463e6SBjoern A. Zeeb 	&VNET_NAME(icmplim), 0,
89b8e463e6SBjoern A. Zeeb 	"Maximum number of ICMP responses per second");
90b8e463e6SBjoern A. Zeeb 
91*ca4cd20cSGeorge V. Neville-Neil VNET_DEFINE_STATIC(int, icmplim_curr_jitter) = 0;
92*ca4cd20cSGeorge V. Neville-Neil #define V_icmplim_curr_jitter		VNET(icmplim_curr_jitter)
93*ca4cd20cSGeorge V. Neville-Neil VNET_DEFINE_STATIC(int, icmplim_jitter) = 16;
94*ca4cd20cSGeorge V. Neville-Neil #define	V_icmplim_jitter		VNET(icmplim_jitter)
95*ca4cd20cSGeorge V. Neville-Neil SYSCTL_INT(_net_inet_icmp, OID_AUTO, icmplim_jitter, CTLFLAG_VNET | CTLFLAG_RW,
96*ca4cd20cSGeorge V. Neville-Neil 	&VNET_NAME(icmplim_jitter), 0,
97*ca4cd20cSGeorge V. Neville-Neil 	"Random icmplim jitter adjustment limit");
98*ca4cd20cSGeorge V. Neville-Neil 
995f901c92SAndrew Turner VNET_DEFINE_STATIC(int, icmplim_output) = 1;
100b8e463e6SBjoern A. Zeeb #define	V_icmplim_output		VNET(icmplim_output)
1016df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_icmp, OID_AUTO, icmplim_output, CTLFLAG_VNET | CTLFLAG_RW,
102b8e463e6SBjoern A. Zeeb 	&VNET_NAME(icmplim_output), 0,
103316efdb3SEitan Adler 	"Enable logging of ICMP response rate limiting");
104b8e463e6SBjoern A. Zeeb 
105b8e463e6SBjoern A. Zeeb #ifdef INET
1065b7cb97cSAndrey V. Elsukov VNET_PCPUSTAT_DEFINE(struct icmpstat, icmpstat);
1075b7cb97cSAndrey V. Elsukov VNET_PCPUSTAT_SYSINIT(icmpstat);
1085b7cb97cSAndrey V. Elsukov SYSCTL_VNET_PCPUSTAT(_net_inet_icmp, ICMPCTL_STATS, stats, struct icmpstat,
1095b7cb97cSAndrey V. Elsukov     icmpstat, "ICMP statistics (struct icmpstat, netinet/icmp_var.h)");
1105b7cb97cSAndrey V. Elsukov 
1115b7cb97cSAndrey V. Elsukov #ifdef VIMAGE
1125b7cb97cSAndrey V. Elsukov VNET_PCPUSTAT_SYSUNINIT(icmpstat);
1135b7cb97cSAndrey V. Elsukov #endif /* VIMAGE */
114eddfbb76SRobert Watson 
1155f901c92SAndrew Turner VNET_DEFINE_STATIC(int, icmpmaskrepl) = 0;
11682cea7e6SBjoern A. Zeeb #define	V_icmpmaskrepl			VNET(icmpmaskrepl)
1176df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_icmp, ICMPCTL_MASKREPL, maskrepl, CTLFLAG_VNET | CTLFLAG_RW,
118eddfbb76SRobert Watson 	&VNET_NAME(icmpmaskrepl), 0,
119e8800f3cSMark Johnston 	"Reply to ICMP Address Mask Request packets");
12057842a38SMatthew N. Dodd 
1215f901c92SAndrew Turner VNET_DEFINE_STATIC(u_int, icmpmaskfake) = 0;
12282cea7e6SBjoern A. Zeeb #define	V_icmpmaskfake			VNET(icmpmaskfake)
1236df8a710SGleb Smirnoff SYSCTL_UINT(_net_inet_icmp, OID_AUTO, maskfake, CTLFLAG_VNET | CTLFLAG_RW,
124eddfbb76SRobert Watson 	&VNET_NAME(icmpmaskfake), 0,
125e8800f3cSMark Johnston 	"Fake reply to ICMP Address Mask Request packets");
1260312fbe9SPoul-Henning Kamp 
1273c2824b9SAlexander V. Chernikov VNET_DEFINE(int, drop_redirect) = 0;
128670e8b3bSAlexander V. Chernikov #define	V_drop_redirect			VNET(drop_redirect)
129670e8b3bSAlexander V. Chernikov SYSCTL_INT(_net_inet_icmp, OID_AUTO, drop_redirect, CTLFLAG_VNET | CTLFLAG_RW,
130e8800f3cSMark Johnston 	&VNET_NAME(drop_redirect), 0,
131e8800f3cSMark Johnston 	"Ignore ICMP redirects");
13218d3153eSDag-Erling Smørgrav 
1335f901c92SAndrew Turner VNET_DEFINE_STATIC(int, log_redirect) = 0;
13482cea7e6SBjoern A. Zeeb #define	V_log_redirect			VNET(log_redirect)
1356df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_icmp, OID_AUTO, log_redirect, CTLFLAG_VNET | CTLFLAG_RW,
136eddfbb76SRobert Watson 	&VNET_NAME(log_redirect), 0,
137eddfbb76SRobert Watson 	"Log ICMP redirects to the console");
1386c3b5f69SDag-Erling Smørgrav 
13934a5582cSAlexander V. Chernikov VNET_DEFINE_STATIC(int, redirtimeout) = 60 * 10; /* 10 minutes */
14034a5582cSAlexander V. Chernikov #define	V_redirtimeout			VNET(redirtimeout)
14134a5582cSAlexander V. Chernikov SYSCTL_INT(_net_inet_icmp, OID_AUTO, redirtimeout, CTLFLAG_VNET | CTLFLAG_RW,
14234a5582cSAlexander V. Chernikov 	&VNET_NAME(redirtimeout), 0,
14334a5582cSAlexander V. Chernikov 	"Delay in seconds before expiring redirect route");
14434a5582cSAlexander V. Chernikov 
1455f901c92SAndrew Turner VNET_DEFINE_STATIC(char, reply_src[IFNAMSIZ]);
14682cea7e6SBjoern A. Zeeb #define	V_reply_src			VNET(reply_src)
1476df8a710SGleb Smirnoff SYSCTL_STRING(_net_inet_icmp, OID_AUTO, reply_src, CTLFLAG_VNET | CTLFLAG_RW,
148eddfbb76SRobert Watson 	&VNET_NAME(reply_src), IFNAMSIZ,
149e8800f3cSMark Johnston 	"ICMP reply source for non-local packets");
150b74d89bbSAndre Oppermann 
1515f901c92SAndrew Turner VNET_DEFINE_STATIC(int, icmp_rfi) = 0;
15282cea7e6SBjoern A. Zeeb #define	V_icmp_rfi			VNET(icmp_rfi)
1536df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_icmp, OID_AUTO, reply_from_interface, CTLFLAG_VNET | CTLFLAG_RW,
154eddfbb76SRobert Watson 	&VNET_NAME(icmp_rfi), 0,
155eddfbb76SRobert Watson 	"ICMP reply from incoming interface for non-local packets");
1568de9ac5eSRandall Stewart /* Router requirements RFC 1812 section 4.3.2.3 requires 576 - 28. */
1571e0582fdSAndrew Turner VNET_DEFINE_STATIC(int, icmp_quotelen) = 548;
15882cea7e6SBjoern A. Zeeb #define	V_icmp_quotelen			VNET(icmp_quotelen)
1596df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_icmp, OID_AUTO, quotelen, CTLFLAG_VNET | CTLFLAG_RW,
160eddfbb76SRobert Watson 	&VNET_NAME(icmp_quotelen), 0,
161eddfbb76SRobert Watson 	"Number of bytes from original packet to quote in ICMP reply");
162e875dfb8SAndre Oppermann 
1635f901c92SAndrew Turner VNET_DEFINE_STATIC(int, icmpbmcastecho) = 0;
16482cea7e6SBjoern A. Zeeb #define	V_icmpbmcastecho		VNET(icmpbmcastecho)
1656df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_icmp, OID_AUTO, bmcastecho, CTLFLAG_VNET | CTLFLAG_RW,
166eddfbb76SRobert Watson 	&VNET_NAME(icmpbmcastecho), 0,
167e8800f3cSMark Johnston 	"Reply to multicast ICMP Echo Request and Timestamp packets");
1687022ea0aSGarrett Wollman 
1695f901c92SAndrew Turner VNET_DEFINE_STATIC(int, icmptstamprepl) = 1;
17000cb6befSMark Johnston #define	V_icmptstamprepl		VNET(icmptstamprepl)
1717762bbc3SMark Johnston SYSCTL_INT(_net_inet_icmp, OID_AUTO, tstamprepl, CTLFLAG_VNET | CTLFLAG_RW,
172e8800f3cSMark Johnston 	&VNET_NAME(icmptstamprepl), 0,
173e8800f3cSMark Johnston 	"Respond to ICMP Timestamp packets");
17451508de1SMatthew Dillon 
175410634efSEugene Grosbein VNET_DEFINE_STATIC(int, error_keeptags) = 0;
176410634efSEugene Grosbein #define	V_error_keeptags		VNET(error_keeptags)
177410634efSEugene Grosbein SYSCTL_INT(_net_inet_icmp, OID_AUTO, error_keeptags, CTLFLAG_VNET | CTLFLAG_RW,
178410634efSEugene Grosbein 	&VNET_NAME(error_keeptags), 0,
179410634efSEugene Grosbein 	"ICMP error response keeps copy of mbuf_tags of original packet");
180410634efSEugene Grosbein 
181df8bae1dSRodney W. Grimes #ifdef ICMPPRINTFS
182df8bae1dSRodney W. Grimes int	icmpprintfs = 0;
183df8bae1dSRodney W. Grimes #endif
184df8bae1dSRodney W. Grimes 
1854d77a549SAlfred Perlstein static void	icmp_reflect(struct mbuf *);
18602c1c707SAndre Oppermann static void	icmp_send(struct mbuf *, struct mbuf *);
18734a5582cSAlexander V. Chernikov static int	icmp_verify_redirect_gateway(struct sockaddr_in *,
18834a5582cSAlexander V. Chernikov     struct sockaddr_in *, struct sockaddr_in *, u_int);
1890312fbe9SPoul-Henning Kamp 
190df8bae1dSRodney W. Grimes extern	struct protosw inetsw[];
191df8bae1dSRodney W. Grimes 
192df8bae1dSRodney W. Grimes /*
193315e3e38SRobert Watson  * Kernel module interface for updating icmpstat.  The argument is an index
194315e3e38SRobert Watson  * into icmpstat treated as an array of u_long.  While this encodes the
195315e3e38SRobert Watson  * general layout of icmpstat into the caller, it doesn't encode its
196315e3e38SRobert Watson  * location, so that future changes to add, for example, per-CPU stats
197315e3e38SRobert Watson  * support won't cause binary compatibility problems for kernel modules.
198315e3e38SRobert Watson  */
199315e3e38SRobert Watson void
200315e3e38SRobert Watson kmod_icmpstat_inc(int statnum)
201315e3e38SRobert Watson {
202315e3e38SRobert Watson 
2035b7cb97cSAndrey V. Elsukov 	counter_u64_add(VNET(icmpstat)[statnum], 1);
204315e3e38SRobert Watson }
205315e3e38SRobert Watson 
206315e3e38SRobert Watson /*
207df8bae1dSRodney W. Grimes  * Generate an error packet of type error
208df8bae1dSRodney W. Grimes  * in response to bad packet ip.
209df8bae1dSRodney W. Grimes  */
210df8bae1dSRodney W. Grimes void
211d685b6eeSLuigi Rizzo icmp_error(struct mbuf *n, int type, int code, uint32_t dest, int mtu)
212df8bae1dSRodney W. Grimes {
213f415d666SAndrey V. Elsukov 	struct ip *oip, *nip;
2143e85b721SEd Maste 	struct icmp *icp;
2153e85b721SEd Maste 	struct mbuf *m;
216f415d666SAndrey V. Elsukov 	unsigned icmplen, icmpelen, nlen, oiphlen;
217df8bae1dSRodney W. Grimes 
218f415d666SAndrey V. Elsukov 	KASSERT((u_int)type <= ICMP_MAXTYPE, ("%s: illegal ICMP type",
219f415d666SAndrey V. Elsukov 	    __func__));
220f415d666SAndrey V. Elsukov 
221df8bae1dSRodney W. Grimes 	if (type != ICMP_REDIRECT)
222e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_error);
223df8bae1dSRodney W. Grimes 	/*
224e86ebebcSAndre Oppermann 	 * Don't send error:
225e86ebebcSAndre Oppermann 	 *  if the original packet was encrypted.
226e86ebebcSAndre Oppermann 	 *  if not the first fragment of message.
227e86ebebcSAndre Oppermann 	 *  in response to a multicast or broadcast packet.
228e86ebebcSAndre Oppermann 	 *  if the old packet protocol was an ICMP error message.
229df8bae1dSRodney W. Grimes 	 */
230cad1917dSHajimu UMEMOTO 	if (n->m_flags & M_DECRYPTED)
231cad1917dSHajimu UMEMOTO 		goto freeit;
232e86ebebcSAndre Oppermann 	if (n->m_flags & (M_BCAST|M_MCAST))
233e86ebebcSAndre Oppermann 		goto freeit;
234f415d666SAndrey V. Elsukov 
235f415d666SAndrey V. Elsukov 	/* Drop if IP header plus 8 bytes is not contiguous in first mbuf. */
236f415d666SAndrey V. Elsukov 	if (n->m_len < sizeof(struct ip) + ICMP_MINLEN)
237f415d666SAndrey V. Elsukov 		goto freeit;
238f415d666SAndrey V. Elsukov 	oip = mtod(n, struct ip *);
239f415d666SAndrey V. Elsukov 	oiphlen = oip->ip_hl << 2;
240f415d666SAndrey V. Elsukov 	if (n->m_len < oiphlen + ICMP_MINLEN)
241f415d666SAndrey V. Elsukov 		goto freeit;
242f415d666SAndrey V. Elsukov #ifdef ICMPPRINTFS
243f415d666SAndrey V. Elsukov 	if (icmpprintfs)
244f415d666SAndrey V. Elsukov 		printf("icmp_error(%p, %x, %d)\n", oip, type, code);
245f415d666SAndrey V. Elsukov #endif
246f415d666SAndrey V. Elsukov 	if (oip->ip_off & htons(~(IP_MF|IP_DF)))
247f415d666SAndrey V. Elsukov 		goto freeit;
248df8bae1dSRodney W. Grimes 	if (oip->ip_p == IPPROTO_ICMP && type != ICMP_REDIRECT &&
249f415d666SAndrey V. Elsukov 	    !ICMP_INFOTYPE(((struct icmp *)((caddr_t)oip +
250f415d666SAndrey V. Elsukov 		oiphlen))->icmp_type)) {
251e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_oldicmp);
252df8bae1dSRodney W. Grimes 		goto freeit;
253df8bae1dSRodney W. Grimes 	}
254df8bae1dSRodney W. Grimes 	/*
255e86ebebcSAndre Oppermann 	 * Calculate length to quote from original packet and
256e86ebebcSAndre Oppermann 	 * prevent the ICMP mbuf from overflowing.
257a4641f4eSPedro F. Giffuni 	 * Unfortunately this is non-trivial since ip_forward()
258e86ebebcSAndre Oppermann 	 * sends us truncated packets.
259df8bae1dSRodney W. Grimes 	 */
260e86ebebcSAndre Oppermann 	nlen = m_length(n, NULL);
261e86ebebcSAndre Oppermann 	if (oip->ip_p == IPPROTO_TCP) {
262e86ebebcSAndre Oppermann 		struct tcphdr *th;
263e86ebebcSAndre Oppermann 		int tcphlen;
264e86ebebcSAndre Oppermann 
265e86ebebcSAndre Oppermann 		if (oiphlen + sizeof(struct tcphdr) > n->m_len &&
266e86ebebcSAndre Oppermann 		    n->m_next == NULL)
267e86ebebcSAndre Oppermann 			goto stdreply;
268e86ebebcSAndre Oppermann 		if (n->m_len < oiphlen + sizeof(struct tcphdr) &&
269f415d666SAndrey V. Elsukov 		    (n = m_pullup(n, oiphlen + sizeof(struct tcphdr))) == NULL)
270e86ebebcSAndre Oppermann 			goto freeit;
271f415d666SAndrey V. Elsukov 		oip = mtod(n, struct ip *);
272f415d666SAndrey V. Elsukov 		th = mtodo(n, oiphlen);
273e86ebebcSAndre Oppermann 		tcphlen = th->th_off << 2;
274e86ebebcSAndre Oppermann 		if (tcphlen < sizeof(struct tcphdr))
275e86ebebcSAndre Oppermann 			goto freeit;
2768f134647SGleb Smirnoff 		if (ntohs(oip->ip_len) < oiphlen + tcphlen)
277e86ebebcSAndre Oppermann 			goto freeit;
278e86ebebcSAndre Oppermann 		if (oiphlen + tcphlen > n->m_len && n->m_next == NULL)
279e86ebebcSAndre Oppermann 			goto stdreply;
280e86ebebcSAndre Oppermann 		if (n->m_len < oiphlen + tcphlen &&
281f415d666SAndrey V. Elsukov 		    (n = m_pullup(n, oiphlen + tcphlen)) == NULL)
282e86ebebcSAndre Oppermann 			goto freeit;
28354e67534SJonathan T. Looney 		oip = mtod(n, struct ip *);
2848f134647SGleb Smirnoff 		icmpelen = max(tcphlen, min(V_icmp_quotelen,
2858f134647SGleb Smirnoff 		    ntohs(oip->ip_len) - oiphlen));
286f88d0cfeSMichael Tuexen 	} else if (oip->ip_p == IPPROTO_SCTP) {
287f88d0cfeSMichael Tuexen 		struct sctphdr *sh;
288f88d0cfeSMichael Tuexen 		struct sctp_chunkhdr *ch;
289f88d0cfeSMichael Tuexen 
290f88d0cfeSMichael Tuexen 		if (ntohs(oip->ip_len) < oiphlen + sizeof(struct sctphdr))
291f88d0cfeSMichael Tuexen 			goto stdreply;
292f88d0cfeSMichael Tuexen 		if (oiphlen + sizeof(struct sctphdr) > n->m_len &&
293f88d0cfeSMichael Tuexen 		    n->m_next == NULL)
294f88d0cfeSMichael Tuexen 			goto stdreply;
295f88d0cfeSMichael Tuexen 		if (n->m_len < oiphlen + sizeof(struct sctphdr) &&
296f88d0cfeSMichael Tuexen 		    (n = m_pullup(n, oiphlen + sizeof(struct sctphdr))) == NULL)
297f88d0cfeSMichael Tuexen 			goto freeit;
298f415d666SAndrey V. Elsukov 		oip = mtod(n, struct ip *);
299f88d0cfeSMichael Tuexen 		icmpelen = max(sizeof(struct sctphdr),
300f88d0cfeSMichael Tuexen 		    min(V_icmp_quotelen, ntohs(oip->ip_len) - oiphlen));
301f415d666SAndrey V. Elsukov 		sh = mtodo(n, oiphlen);
302f88d0cfeSMichael Tuexen 		if (ntohl(sh->v_tag) == 0 &&
303f415d666SAndrey V. Elsukov 		    ntohs(oip->ip_len) >= oiphlen +
304f415d666SAndrey V. Elsukov 		    sizeof(struct sctphdr) + 8 &&
305f88d0cfeSMichael Tuexen 		    (n->m_len >= oiphlen + sizeof(struct sctphdr) + 8 ||
306f88d0cfeSMichael Tuexen 		     n->m_next != NULL)) {
307f88d0cfeSMichael Tuexen 			if (n->m_len < oiphlen + sizeof(struct sctphdr) + 8 &&
308f415d666SAndrey V. Elsukov 			    (n = m_pullup(n, oiphlen +
309f415d666SAndrey V. Elsukov 			    sizeof(struct sctphdr) + 8)) == NULL)
310f88d0cfeSMichael Tuexen 				goto freeit;
311f415d666SAndrey V. Elsukov 			oip = mtod(n, struct ip *);
312f415d666SAndrey V. Elsukov 			sh = mtodo(n, oiphlen);
313f88d0cfeSMichael Tuexen 			ch = (struct sctp_chunkhdr *)(sh + 1);
314f88d0cfeSMichael Tuexen 			if (ch->chunk_type == SCTP_INITIATION) {
315f88d0cfeSMichael Tuexen 				icmpelen = max(sizeof(struct sctphdr) + 8,
316f415d666SAndrey V. Elsukov 				    min(V_icmp_quotelen, ntohs(oip->ip_len) -
317f415d666SAndrey V. Elsukov 				    oiphlen));
318f88d0cfeSMichael Tuexen 			}
319f88d0cfeSMichael Tuexen 		}
320e86ebebcSAndre Oppermann 	} else
321f415d666SAndrey V. Elsukov stdreply:	icmpelen = max(8, min(V_icmp_quotelen, ntohs(oip->ip_len) -
322f415d666SAndrey V. Elsukov 		    oiphlen));
323e86ebebcSAndre Oppermann 
324e86ebebcSAndre Oppermann 	icmplen = min(oiphlen + icmpelen, nlen);
325e86ebebcSAndre Oppermann 	if (icmplen < sizeof(struct ip))
326e86ebebcSAndre Oppermann 		goto freeit;
327e86ebebcSAndre Oppermann 
328e86ebebcSAndre Oppermann 	if (MHLEN > sizeof(struct ip) + ICMP_MINLEN + icmplen)
329eb1b1807SGleb Smirnoff 		m = m_gethdr(M_NOWAIT, MT_DATA);
330e86ebebcSAndre Oppermann 	else
331eb1b1807SGleb Smirnoff 		m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
332df8bae1dSRodney W. Grimes 	if (m == NULL)
333df8bae1dSRodney W. Grimes 		goto freeit;
3340070e096SRobert Watson #ifdef MAC
335a13e21f7SRobert Watson 	mac_netinet_icmp_reply(n, m);
3360070e096SRobert Watson #endif
337f415d666SAndrey V. Elsukov 	icmplen = min(icmplen, M_TRAILINGSPACE(m) -
338f415d666SAndrey V. Elsukov 	    sizeof(struct ip) - ICMP_MINLEN);
3392bfaf585SEd Maste 	m_align(m, sizeof(struct ip) + ICMP_MINLEN + icmplen);
3402bfaf585SEd Maste 	m->m_data += sizeof(struct ip);
341e86ebebcSAndre Oppermann 	m->m_len = ICMP_MINLEN + icmplen;
3426b773dffSAndre Oppermann 
3438b07e49aSJulian Elischer 	/* XXX MRT  make the outgoing packet use the same FIB
3448b07e49aSJulian Elischer 	 * that was associated with the incoming packet
3458b07e49aSJulian Elischer 	 */
3468b07e49aSJulian Elischer 	M_SETFIB(m, M_GETFIB(n));
347df8bae1dSRodney W. Grimes 	icp = mtod(m, struct icmp *);
348e27b0c87SRobert Watson 	ICMPSTAT_INC(icps_outhist[type]);
349df8bae1dSRodney W. Grimes 	icp->icmp_type = type;
350df8bae1dSRodney W. Grimes 	if (type == ICMP_REDIRECT)
351df8bae1dSRodney W. Grimes 		icp->icmp_gwaddr.s_addr = dest;
352df8bae1dSRodney W. Grimes 	else {
353df8bae1dSRodney W. Grimes 		icp->icmp_void = 0;
354df8bae1dSRodney W. Grimes 		/*
355df8bae1dSRodney W. Grimes 		 * The following assignments assume an overlay with the
356e86ebebcSAndre Oppermann 		 * just zeroed icmp_void field.
357df8bae1dSRodney W. Grimes 		 */
358df8bae1dSRodney W. Grimes 		if (type == ICMP_PARAMPROB) {
359df8bae1dSRodney W. Grimes 			icp->icmp_pptr = code;
360df8bae1dSRodney W. Grimes 			code = 0;
361df8bae1dSRodney W. Grimes 		} else if (type == ICMP_UNREACH &&
362c773494eSAndre Oppermann 			code == ICMP_UNREACH_NEEDFRAG && mtu) {
363c773494eSAndre Oppermann 			icp->icmp_nextmtu = htons(mtu);
364df8bae1dSRodney W. Grimes 		}
365df8bae1dSRodney W. Grimes 	}
366df8bae1dSRodney W. Grimes 	icp->icmp_code = code;
36704287599SRuslan Ermilov 
36804287599SRuslan Ermilov 	/*
369e86ebebcSAndre Oppermann 	 * Copy the quotation into ICMP message and
370e86ebebcSAndre Oppermann 	 * convert quoted IP header back to network representation.
37104287599SRuslan Ermilov 	 */
372e86ebebcSAndre Oppermann 	m_copydata(n, 0, icmplen, (caddr_t)&icp->icmp_ip);
373e86ebebcSAndre Oppermann 	nip = &icp->icmp_ip;
374df8bae1dSRodney W. Grimes 
375df8bae1dSRodney W. Grimes 	/*
376e86ebebcSAndre Oppermann 	 * Set up ICMP message mbuf and copy old IP header (without options
377e86ebebcSAndre Oppermann 	 * in front of ICMP message.
378c550f220SMax Laier 	 * If the original mbuf was meant to bypass the firewall, the error
379c550f220SMax Laier 	 * reply should bypass as well.
380c550f220SMax Laier 	 */
381c550f220SMax Laier 	m->m_flags |= n->m_flags & M_SKIP_FIREWALL;
3822bfaf585SEd Maste 	KASSERT(M_LEADINGSPACE(m) >= sizeof(struct ip),
3832bfaf585SEd Maste 	    ("insufficient space for ip header"));
384df8bae1dSRodney W. Grimes 	m->m_data -= sizeof(struct ip);
385df8bae1dSRodney W. Grimes 	m->m_len += sizeof(struct ip);
386df8bae1dSRodney W. Grimes 	m->m_pkthdr.len = m->m_len;
387df8bae1dSRodney W. Grimes 	m->m_pkthdr.rcvif = n->m_pkthdr.rcvif;
388df8bae1dSRodney W. Grimes 	nip = mtod(m, struct ip *);
389df8bae1dSRodney W. Grimes 	bcopy((caddr_t)oip, (caddr_t)nip, sizeof(struct ip));
3908f134647SGleb Smirnoff 	nip->ip_len = htons(m->m_len);
39153be11f6SPoul-Henning Kamp 	nip->ip_v = IPVERSION;
39253be11f6SPoul-Henning Kamp 	nip->ip_hl = 5;
393df8bae1dSRodney W. Grimes 	nip->ip_p = IPPROTO_ICMP;
394df8bae1dSRodney W. Grimes 	nip->ip_tos = 0;
39541ea685cSAndrey V. Elsukov 	nip->ip_off = 0;
396410634efSEugene Grosbein 
397410634efSEugene Grosbein 	if (V_error_keeptags)
398410634efSEugene Grosbein 		m_tag_copy_chain(m, n, M_NOWAIT);
399410634efSEugene Grosbein 
400df8bae1dSRodney W. Grimes 	icmp_reflect(m);
401df8bae1dSRodney W. Grimes 
402df8bae1dSRodney W. Grimes freeit:
403df8bae1dSRodney W. Grimes 	m_freem(n);
404df8bae1dSRodney W. Grimes }
405df8bae1dSRodney W. Grimes 
406df8bae1dSRodney W. Grimes /*
407df8bae1dSRodney W. Grimes  * Process a received ICMP message.
408df8bae1dSRodney W. Grimes  */
4098f5a8818SKevin Lo int
4108f5a8818SKevin Lo icmp_input(struct mbuf **mp, int *offp, int proto)
411df8bae1dSRodney W. Grimes {
41216d6c90fSAndre Oppermann 	struct icmp *icp;
413df8bae1dSRodney W. Grimes 	struct in_ifaddr *ia;
4148f5a8818SKevin Lo 	struct mbuf *m = *mp;
41516d6c90fSAndre Oppermann 	struct ip *ip = mtod(m, struct ip *);
41616d6c90fSAndre Oppermann 	struct sockaddr_in icmpsrc, icmpdst, icmpgw;
4178f5a8818SKevin Lo 	int hlen = *offp;
4188f5a8818SKevin Lo 	int icmplen = ntohs(ip->ip_len) - *offp;
41916d6c90fSAndre Oppermann 	int i, code;
4204d77a549SAlfred Perlstein 	void (*ctlfunc)(int, struct sockaddr *, void *);
4218b07e49aSJulian Elischer 	int fibnum;
422df8bae1dSRodney W. Grimes 
423b8a6e03fSGleb Smirnoff 	NET_EPOCH_ASSERT();
424b8a6e03fSGleb Smirnoff 
4258f5a8818SKevin Lo 	*mp = NULL;
4268f5a8818SKevin Lo 
427df8bae1dSRodney W. Grimes 	/*
428df8bae1dSRodney W. Grimes 	 * Locate icmp structure in mbuf, and check
429df8bae1dSRodney W. Grimes 	 * that not corrupted and of at least minimum length.
430df8bae1dSRodney W. Grimes 	 */
431df8bae1dSRodney W. Grimes #ifdef ICMPPRINTFS
4322b758395SGarrett Wollman 	if (icmpprintfs) {
4338144690aSEric van Gyzen 		char srcbuf[INET_ADDRSTRLEN];
4348144690aSEric van Gyzen 		char dstbuf[INET_ADDRSTRLEN];
4358144690aSEric van Gyzen 
4362b758395SGarrett Wollman 		printf("icmp_input from %s to %s, len %d\n",
4378144690aSEric van Gyzen 		    inet_ntoa_r(ip->ip_src, srcbuf),
4388144690aSEric van Gyzen 		    inet_ntoa_r(ip->ip_dst, dstbuf), icmplen);
4392b758395SGarrett Wollman 	}
440df8bae1dSRodney W. Grimes #endif
441df8bae1dSRodney W. Grimes 	if (icmplen < ICMP_MINLEN) {
442e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_tooshort);
443df8bae1dSRodney W. Grimes 		goto freeit;
444df8bae1dSRodney W. Grimes 	}
445df8bae1dSRodney W. Grimes 	i = hlen + min(icmplen, ICMP_ADVLENMIN);
446852da713SBjoern A. Zeeb 	if (m->m_len < i && (m = m_pullup(m, i)) == NULL)  {
447e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_tooshort);
4488f5a8818SKevin Lo 		return (IPPROTO_DONE);
449df8bae1dSRodney W. Grimes 	}
450df8bae1dSRodney W. Grimes 	ip = mtod(m, struct ip *);
451df8bae1dSRodney W. Grimes 	m->m_len -= hlen;
452df8bae1dSRodney W. Grimes 	m->m_data += hlen;
453df8bae1dSRodney W. Grimes 	icp = mtod(m, struct icmp *);
454df8bae1dSRodney W. Grimes 	if (in_cksum(m, icmplen)) {
455e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_checksum);
456df8bae1dSRodney W. Grimes 		goto freeit;
457df8bae1dSRodney W. Grimes 	}
458df8bae1dSRodney W. Grimes 	m->m_len += hlen;
459df8bae1dSRodney W. Grimes 	m->m_data -= hlen;
460df8bae1dSRodney W. Grimes 
461df8bae1dSRodney W. Grimes #ifdef ICMPPRINTFS
462df8bae1dSRodney W. Grimes 	if (icmpprintfs)
463df8bae1dSRodney W. Grimes 		printf("icmp_input, type %d code %d\n", icp->icmp_type,
464df8bae1dSRodney W. Grimes 		    icp->icmp_code);
465df8bae1dSRodney W. Grimes #endif
4665b7ee6edSGarrett Wollman 
4675b7ee6edSGarrett Wollman 	/*
4685b7ee6edSGarrett Wollman 	 * Message type specific processing.
4695b7ee6edSGarrett Wollman 	 */
470df8bae1dSRodney W. Grimes 	if (icp->icmp_type > ICMP_MAXTYPE)
471df8bae1dSRodney W. Grimes 		goto raw;
47216d6c90fSAndre Oppermann 
47316d6c90fSAndre Oppermann 	/* Initialize */
47416d6c90fSAndre Oppermann 	bzero(&icmpsrc, sizeof(icmpsrc));
47516d6c90fSAndre Oppermann 	icmpsrc.sin_len = sizeof(struct sockaddr_in);
47616d6c90fSAndre Oppermann 	icmpsrc.sin_family = AF_INET;
47716d6c90fSAndre Oppermann 	bzero(&icmpdst, sizeof(icmpdst));
47816d6c90fSAndre Oppermann 	icmpdst.sin_len = sizeof(struct sockaddr_in);
47916d6c90fSAndre Oppermann 	icmpdst.sin_family = AF_INET;
48016d6c90fSAndre Oppermann 	bzero(&icmpgw, sizeof(icmpgw));
48116d6c90fSAndre Oppermann 	icmpgw.sin_len = sizeof(struct sockaddr_in);
48216d6c90fSAndre Oppermann 	icmpgw.sin_family = AF_INET;
48316d6c90fSAndre Oppermann 
484e27b0c87SRobert Watson 	ICMPSTAT_INC(icps_inhist[icp->icmp_type]);
485df8bae1dSRodney W. Grimes 	code = icp->icmp_code;
486df8bae1dSRodney W. Grimes 	switch (icp->icmp_type) {
487df8bae1dSRodney W. Grimes 	case ICMP_UNREACH:
488df8bae1dSRodney W. Grimes 		switch (code) {
489df8bae1dSRodney W. Grimes 			case ICMP_UNREACH_NET:
490df8bae1dSRodney W. Grimes 			case ICMP_UNREACH_HOST:
491df8bae1dSRodney W. Grimes 			case ICMP_UNREACH_SRCFAIL:
492e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_NET_UNKNOWN:
493e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_HOST_UNKNOWN:
494e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_ISOLATED:
495e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_TOSNET:
496e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_TOSHOST:
497e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_HOST_PRECEDENCE:
498e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_PRECEDENCE_CUTOFF:
499e4bb5b05SJonathan Lemon 				code = PRC_UNREACH_NET;
500df8bae1dSRodney W. Grimes 				break;
501df8bae1dSRodney W. Grimes 
502df8bae1dSRodney W. Grimes 			case ICMP_UNREACH_NEEDFRAG:
503df8bae1dSRodney W. Grimes 				code = PRC_MSGSIZE;
504df8bae1dSRodney W. Grimes 				break;
505df8bae1dSRodney W. Grimes 
506e4bb5b05SJonathan Lemon 			/*
507e4bb5b05SJonathan Lemon 			 * RFC 1122, Sections 3.2.2.1 and 4.2.3.9.
508e4bb5b05SJonathan Lemon 			 * Treat subcodes 2,3 as immediate RST
509e4bb5b05SJonathan Lemon 			 */
510e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_PROTOCOL:
5113e146575SMichael Tuexen 				code = PRC_UNREACH_PROTOCOL;
5123e146575SMichael Tuexen 				break;
513e4bb5b05SJonathan Lemon 			case ICMP_UNREACH_PORT:
514b77d155dSJesper Skriver 				code = PRC_UNREACH_PORT;
515b11d7a4aSPoul-Henning Kamp 				break;
51690fcbbd6SPoul-Henning Kamp 
51790fcbbd6SPoul-Henning Kamp 			case ICMP_UNREACH_NET_PROHIB:
51890fcbbd6SPoul-Henning Kamp 			case ICMP_UNREACH_HOST_PROHIB:
5199c4b2574SPaul Traina 			case ICMP_UNREACH_FILTER_PROHIB:
52090fcbbd6SPoul-Henning Kamp 				code = PRC_UNREACH_ADMIN_PROHIB;
521b11d7a4aSPoul-Henning Kamp 				break;
522b11d7a4aSPoul-Henning Kamp 
523df8bae1dSRodney W. Grimes 			default:
524df8bae1dSRodney W. Grimes 				goto badcode;
525df8bae1dSRodney W. Grimes 		}
526df8bae1dSRodney W. Grimes 		goto deliver;
527df8bae1dSRodney W. Grimes 
528df8bae1dSRodney W. Grimes 	case ICMP_TIMXCEED:
529df8bae1dSRodney W. Grimes 		if (code > 1)
530df8bae1dSRodney W. Grimes 			goto badcode;
531df8bae1dSRodney W. Grimes 		code += PRC_TIMXCEED_INTRANS;
532df8bae1dSRodney W. Grimes 		goto deliver;
533df8bae1dSRodney W. Grimes 
534df8bae1dSRodney W. Grimes 	case ICMP_PARAMPROB:
535df8bae1dSRodney W. Grimes 		if (code > 1)
536df8bae1dSRodney W. Grimes 			goto badcode;
537df8bae1dSRodney W. Grimes 		code = PRC_PARAMPROB;
538df8bae1dSRodney W. Grimes 	deliver:
539df8bae1dSRodney W. Grimes 		/*
540df8bae1dSRodney W. Grimes 		 * Problem with datagram; advise higher level routines.
541df8bae1dSRodney W. Grimes 		 */
542df8bae1dSRodney W. Grimes 		if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
54353be11f6SPoul-Henning Kamp 		    icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) {
544e27b0c87SRobert Watson 			ICMPSTAT_INC(icps_badlen);
545df8bae1dSRodney W. Grimes 			goto freeit;
546df8bae1dSRodney W. Grimes 		}
5475b7ee6edSGarrett Wollman 		/* Discard ICMP's in response to multicast packets */
5485b7ee6edSGarrett Wollman 		if (IN_MULTICAST(ntohl(icp->icmp_ip.ip_dst.s_addr)))
5495b7ee6edSGarrett Wollman 			goto badcode;
550df8bae1dSRodney W. Grimes #ifdef ICMPPRINTFS
551df8bae1dSRodney W. Grimes 		if (icmpprintfs)
552df8bae1dSRodney W. Grimes 			printf("deliver to protocol %d\n", icp->icmp_ip.ip_p);
553df8bae1dSRodney W. Grimes #endif
554df8bae1dSRodney W. Grimes 		icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
5556a800098SYoshinobu Inoue 		/*
5566a800098SYoshinobu Inoue 		 * XXX if the packet contains [IPv4 AH TCP], we can't make a
5576a800098SYoshinobu Inoue 		 * notification to TCP layer.
5586a800098SYoshinobu Inoue 		 */
559f77b8427SMichael Tuexen 		i = sizeof(struct ip) + min(icmplen, ICMP_ADVLENPREF(icp));
560f77b8427SMichael Tuexen 		ip_stripoptions(m);
561f77b8427SMichael Tuexen 		if (m->m_len < i && (m = m_pullup(m, i)) == NULL) {
562f77b8427SMichael Tuexen 			/* This should actually not happen */
563f77b8427SMichael Tuexen 			ICMPSTAT_INC(icps_tooshort);
564f77b8427SMichael Tuexen 			return (IPPROTO_DONE);
565f77b8427SMichael Tuexen 		}
566f77b8427SMichael Tuexen 		ip = mtod(m, struct ip *);
567f77b8427SMichael Tuexen 		icp = (struct icmp *)(ip + 1);
568f77b8427SMichael Tuexen 		/*
569f77b8427SMichael Tuexen 		 * The upper layer handler can rely on:
570f77b8427SMichael Tuexen 		 * - The outer IP header has no options.
571f77b8427SMichael Tuexen 		 * - The outer IP header, the ICMP header, the inner IP header,
572f77b8427SMichael Tuexen 		 *   and the first n bytes of the inner payload are contiguous.
573f77b8427SMichael Tuexen 		 *   n is at least 8, but might be larger based on
574f77b8427SMichael Tuexen 		 *   ICMP_ADVLENPREF. See its definition in ip_icmp.h.
575f77b8427SMichael Tuexen 		 */
576623ae52eSPoul-Henning Kamp 		ctlfunc = inetsw[ip_protox[icp->icmp_ip.ip_p]].pr_ctlinput;
577623ae52eSPoul-Henning Kamp 		if (ctlfunc)
578df8bae1dSRodney W. Grimes 			(*ctlfunc)(code, (struct sockaddr *)&icmpsrc,
579b62d102cSBruce Evans 				   (void *)&icp->icmp_ip);
580df8bae1dSRodney W. Grimes 		break;
581df8bae1dSRodney W. Grimes 
582df8bae1dSRodney W. Grimes 	badcode:
583e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_badcode);
584df8bae1dSRodney W. Grimes 		break;
585df8bae1dSRodney W. Grimes 
586df8bae1dSRodney W. Grimes 	case ICMP_ECHO:
5878b615593SMarko Zec 		if (!V_icmpbmcastecho
588d311884fSDavid Greenman 		    && (m->m_flags & (M_MCAST | M_BCAST)) != 0) {
589e27b0c87SRobert Watson 			ICMPSTAT_INC(icps_bmcastecho);
5907022ea0aSGarrett Wollman 			break;
5917022ea0aSGarrett Wollman 		}
592a57815efSBosko Milekic 		if (badport_bandlim(BANDLIM_ICMP_ECHO) < 0)
59309f81a46SBosko Milekic 			goto freeit;
594382a6bbcSJonathan T. Looney 		icp->icmp_type = ICMP_ECHOREPLY;
595df8bae1dSRodney W. Grimes 		goto reflect;
596df8bae1dSRodney W. Grimes 
597df8bae1dSRodney W. Grimes 	case ICMP_TSTAMP:
59800cb6befSMark Johnston 		if (V_icmptstamprepl == 0)
59900cb6befSMark Johnston 			break;
6008b615593SMarko Zec 		if (!V_icmpbmcastecho
601d311884fSDavid Greenman 		    && (m->m_flags & (M_MCAST | M_BCAST)) != 0) {
602e27b0c87SRobert Watson 			ICMPSTAT_INC(icps_bmcasttstamp);
603fe0fb8abSGarrett Wollman 			break;
604fe0fb8abSGarrett Wollman 		}
605df8bae1dSRodney W. Grimes 		if (icmplen < ICMP_TSLEN) {
606e27b0c87SRobert Watson 			ICMPSTAT_INC(icps_badlen);
607df8bae1dSRodney W. Grimes 			break;
608df8bae1dSRodney W. Grimes 		}
609382a6bbcSJonathan T. Looney 		if (badport_bandlim(BANDLIM_ICMP_TSTAMP) < 0)
610382a6bbcSJonathan T. Looney 			goto freeit;
611df8bae1dSRodney W. Grimes 		icp->icmp_type = ICMP_TSTAMPREPLY;
612df8bae1dSRodney W. Grimes 		icp->icmp_rtime = iptime();
613df8bae1dSRodney W. Grimes 		icp->icmp_ttime = icp->icmp_rtime;	/* bogus, do later! */
614df8bae1dSRodney W. Grimes 		goto reflect;
615df8bae1dSRodney W. Grimes 
616df8bae1dSRodney W. Grimes 	case ICMP_MASKREQ:
6178b615593SMarko Zec 		if (V_icmpmaskrepl == 0)
618df8bae1dSRodney W. Grimes 			break;
619df8bae1dSRodney W. Grimes 		/*
620df8bae1dSRodney W. Grimes 		 * We are not able to respond with all ones broadcast
621df8bae1dSRodney W. Grimes 		 * unless we receive it over a point-to-point interface.
622df8bae1dSRodney W. Grimes 		 */
623df8bae1dSRodney W. Grimes 		if (icmplen < ICMP_MASKLEN)
624df8bae1dSRodney W. Grimes 			break;
625df8bae1dSRodney W. Grimes 		switch (ip->ip_dst.s_addr) {
626df8bae1dSRodney W. Grimes 		case INADDR_BROADCAST:
627df8bae1dSRodney W. Grimes 		case INADDR_ANY:
628df8bae1dSRodney W. Grimes 			icmpdst.sin_addr = ip->ip_src;
629df8bae1dSRodney W. Grimes 			break;
630df8bae1dSRodney W. Grimes 
631df8bae1dSRodney W. Grimes 		default:
632df8bae1dSRodney W. Grimes 			icmpdst.sin_addr = ip->ip_dst;
633df8bae1dSRodney W. Grimes 		}
634df8bae1dSRodney W. Grimes 		ia = (struct in_ifaddr *)ifaof_ifpforaddr(
635df8bae1dSRodney W. Grimes 			    (struct sockaddr *)&icmpdst, m->m_pkthdr.rcvif);
6368c0fec80SRobert Watson 		if (ia == NULL)
637df8bae1dSRodney W. Grimes 			break;
6384f6c66ccSMatt Macy 		if (ia->ia_ifp == NULL)
6397e6f7714SPoul-Henning Kamp 			break;
640df8bae1dSRodney W. Grimes 		icp->icmp_type = ICMP_MASKREPLY;
6418b615593SMarko Zec 		if (V_icmpmaskfake == 0)
642df8bae1dSRodney W. Grimes 			icp->icmp_mask = ia->ia_sockmask.sin_addr.s_addr;
64357842a38SMatthew N. Dodd 		else
6448b615593SMarko Zec 			icp->icmp_mask = V_icmpmaskfake;
645df8bae1dSRodney W. Grimes 		if (ip->ip_src.s_addr == 0) {
646df8bae1dSRodney W. Grimes 			if (ia->ia_ifp->if_flags & IFF_BROADCAST)
647df8bae1dSRodney W. Grimes 			    ip->ip_src = satosin(&ia->ia_broadaddr)->sin_addr;
648df8bae1dSRodney W. Grimes 			else if (ia->ia_ifp->if_flags & IFF_POINTOPOINT)
649df8bae1dSRodney W. Grimes 			    ip->ip_src = satosin(&ia->ia_dstaddr)->sin_addr;
650df8bae1dSRodney W. Grimes 		}
651df8bae1dSRodney W. Grimes reflect:
652e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_reflect);
653e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_outhist[icp->icmp_type]);
654df8bae1dSRodney W. Grimes 		icmp_reflect(m);
6558f5a8818SKevin Lo 		return (IPPROTO_DONE);
656df8bae1dSRodney W. Grimes 
657df8bae1dSRodney W. Grimes 	case ICMP_REDIRECT:
6588b615593SMarko Zec 		if (V_log_redirect) {
65918d3153eSDag-Erling Smørgrav 			u_long src, dst, gw;
66018d3153eSDag-Erling Smørgrav 
66118d3153eSDag-Erling Smørgrav 			src = ntohl(ip->ip_src.s_addr);
66218d3153eSDag-Erling Smørgrav 			dst = ntohl(icp->icmp_ip.ip_dst.s_addr);
66318d3153eSDag-Erling Smørgrav 			gw = ntohl(icp->icmp_gwaddr.s_addr);
66418d3153eSDag-Erling Smørgrav 			printf("icmp redirect from %d.%d.%d.%d: "
66518d3153eSDag-Erling Smørgrav 			       "%d.%d.%d.%d => %d.%d.%d.%d\n",
66618d3153eSDag-Erling Smørgrav 			       (int)(src >> 24), (int)((src >> 16) & 0xff),
66718d3153eSDag-Erling Smørgrav 			       (int)((src >> 8) & 0xff), (int)(src & 0xff),
66818d3153eSDag-Erling Smørgrav 			       (int)(dst >> 24), (int)((dst >> 16) & 0xff),
66918d3153eSDag-Erling Smørgrav 			       (int)((dst >> 8) & 0xff), (int)(dst & 0xff),
67018d3153eSDag-Erling Smørgrav 			       (int)(gw >> 24), (int)((gw >> 16) & 0xff),
67118d3153eSDag-Erling Smørgrav 			       (int)((gw >> 8) & 0xff), (int)(gw & 0xff));
67218d3153eSDag-Erling Smørgrav 		}
67387c3bd27SAndre Oppermann 		/*
67487c3bd27SAndre Oppermann 		 * RFC1812 says we must ignore ICMP redirects if we
67587c3bd27SAndre Oppermann 		 * are acting as router.
67687c3bd27SAndre Oppermann 		 */
6778b615593SMarko Zec 		if (V_drop_redirect || V_ipforwarding)
67818d3153eSDag-Erling Smørgrav 			break;
679df8bae1dSRodney W. Grimes 		if (code > 3)
680df8bae1dSRodney W. Grimes 			goto badcode;
681df8bae1dSRodney W. Grimes 		if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
68253be11f6SPoul-Henning Kamp 		    icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) {
683e27b0c87SRobert Watson 			ICMPSTAT_INC(icps_badlen);
684df8bae1dSRodney W. Grimes 			break;
685df8bae1dSRodney W. Grimes 		}
686df8bae1dSRodney W. Grimes 		/*
687df8bae1dSRodney W. Grimes 		 * Short circuit routing redirects to force
688df8bae1dSRodney W. Grimes 		 * immediate change in the kernel's routing
689df8bae1dSRodney W. Grimes 		 * tables.  The message is also handed to anyone
690df8bae1dSRodney W. Grimes 		 * listening on a raw socket (e.g. the routing
691df8bae1dSRodney W. Grimes 		 * daemon for use in updating its tables).
692df8bae1dSRodney W. Grimes 		 */
693df8bae1dSRodney W. Grimes 		icmpgw.sin_addr = ip->ip_src;
694df8bae1dSRodney W. Grimes 		icmpdst.sin_addr = icp->icmp_gwaddr;
695df8bae1dSRodney W. Grimes #ifdef	ICMPPRINTFS
6962b758395SGarrett Wollman 		if (icmpprintfs) {
6978144690aSEric van Gyzen 			char dstbuf[INET_ADDRSTRLEN];
6988144690aSEric van Gyzen 			char gwbuf[INET_ADDRSTRLEN];
6992b758395SGarrett Wollman 
7002b758395SGarrett Wollman 			printf("redirect dst %s to %s\n",
7018144690aSEric van Gyzen 			       inet_ntoa_r(icp->icmp_ip.ip_dst, dstbuf),
7028144690aSEric van Gyzen 			       inet_ntoa_r(icp->icmp_gwaddr, gwbuf));
7032b758395SGarrett Wollman 		}
704df8bae1dSRodney W. Grimes #endif
705df8bae1dSRodney W. Grimes 		icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
70634a5582cSAlexander V. Chernikov 
70734a5582cSAlexander V. Chernikov 		/*
70834a5582cSAlexander V. Chernikov 		 * RFC 1122 says network (code 0,2) redirects SHOULD
70934a5582cSAlexander V. Chernikov 		 * be treated identically to the host redirects.
71034a5582cSAlexander V. Chernikov 		 * Given that, ignore network masks.
71134a5582cSAlexander V. Chernikov 		 */
71234a5582cSAlexander V. Chernikov 
71334a5582cSAlexander V. Chernikov 		/*
71434a5582cSAlexander V. Chernikov 		 * Variable values:
71534a5582cSAlexander V. Chernikov 		 * icmpsrc: route destination
71634a5582cSAlexander V. Chernikov 		 * icmpdst: route gateway
71734a5582cSAlexander V. Chernikov 		 * icmpgw: message source
71834a5582cSAlexander V. Chernikov 		 */
71934a5582cSAlexander V. Chernikov 
72034a5582cSAlexander V. Chernikov 		if (icmp_verify_redirect_gateway(&icmpgw, &icmpsrc, &icmpdst,
72134a5582cSAlexander V. Chernikov 		    M_GETFIB(m)) != 0) {
72234a5582cSAlexander V. Chernikov 			/* TODO: increment bad redirects here */
72334a5582cSAlexander V. Chernikov 			break;
72434a5582cSAlexander V. Chernikov 		}
72534a5582cSAlexander V. Chernikov 
7268b07e49aSJulian Elischer 		for ( fibnum = 0; fibnum < rt_numfibs; fibnum++) {
72734a5582cSAlexander V. Chernikov 			rib_add_redirect(fibnum, (struct sockaddr *)&icmpsrc,
728df8bae1dSRodney W. Grimes 			    (struct sockaddr *)&icmpdst,
72934a5582cSAlexander V. Chernikov 			    (struct sockaddr *)&icmpgw, m->m_pkthdr.rcvif,
73034a5582cSAlexander V. Chernikov 			    RTF_GATEWAY, V_redirtimeout);
7318b07e49aSJulian Elischer 		}
732df8bae1dSRodney W. Grimes 		pfctlinput(PRC_REDIRECT_HOST, (struct sockaddr *)&icmpsrc);
733df8bae1dSRodney W. Grimes 		break;
734df8bae1dSRodney W. Grimes 
735df8bae1dSRodney W. Grimes 	/*
736df8bae1dSRodney W. Grimes 	 * No kernel processing for the following;
737df8bae1dSRodney W. Grimes 	 * just fall through to send to raw listener.
738df8bae1dSRodney W. Grimes 	 */
739df8bae1dSRodney W. Grimes 	case ICMP_ECHOREPLY:
740df8bae1dSRodney W. Grimes 	case ICMP_ROUTERADVERT:
741df8bae1dSRodney W. Grimes 	case ICMP_ROUTERSOLICIT:
742df8bae1dSRodney W. Grimes 	case ICMP_TSTAMPREPLY:
743df8bae1dSRodney W. Grimes 	case ICMP_IREQREPLY:
744df8bae1dSRodney W. Grimes 	case ICMP_MASKREPLY:
745d1f79a3bSAlexander V. Chernikov 	case ICMP_SOURCEQUENCH:
746df8bae1dSRodney W. Grimes 	default:
747df8bae1dSRodney W. Grimes 		break;
748df8bae1dSRodney W. Grimes 	}
749df8bae1dSRodney W. Grimes 
750df8bae1dSRodney W. Grimes raw:
7518f5a8818SKevin Lo 	*mp = m;
7528f5a8818SKevin Lo 	rip_input(mp, offp, proto);
7538f5a8818SKevin Lo 	return (IPPROTO_DONE);
754df8bae1dSRodney W. Grimes 
755df8bae1dSRodney W. Grimes freeit:
756df8bae1dSRodney W. Grimes 	m_freem(m);
7578f5a8818SKevin Lo 	return (IPPROTO_DONE);
758df8bae1dSRodney W. Grimes }
759df8bae1dSRodney W. Grimes 
760df8bae1dSRodney W. Grimes /*
761df8bae1dSRodney W. Grimes  * Reflect the ip packet back to the source
762df8bae1dSRodney W. Grimes  */
7630312fbe9SPoul-Henning Kamp static void
764f2565d68SRobert Watson icmp_reflect(struct mbuf *m)
765df8bae1dSRodney W. Grimes {
766ca925d9cSJonathan Lemon 	struct ip *ip = mtod(m, struct ip *);
767ca925d9cSJonathan Lemon 	struct ifaddr *ifa;
76833c4f96dSRobert Watson 	struct ifnet *ifp;
769ca925d9cSJonathan Lemon 	struct in_ifaddr *ia;
770df8bae1dSRodney W. Grimes 	struct in_addr t;
7713553b300SAlexander V. Chernikov 	struct nhop_object *nh;
77299d628d5SPedro F. Giffuni 	struct mbuf *opts = NULL;
77353be11f6SPoul-Henning Kamp 	int optlen = (ip->ip_hl << 2) - sizeof(struct ip);
774df8bae1dSRodney W. Grimes 
775b8a6e03fSGleb Smirnoff 	NET_EPOCH_ASSERT();
776b8a6e03fSGleb Smirnoff 
7776b9ff6b7SGeorge V. Neville-Neil 	if (IN_MULTICAST(ntohl(ip->ip_src.s_addr)) ||
7786b9ff6b7SGeorge V. Neville-Neil 	    IN_EXPERIMENTAL(ntohl(ip->ip_src.s_addr)) ||
7796b9ff6b7SGeorge V. Neville-Neil 	    IN_ZERONET(ntohl(ip->ip_src.s_addr)) ) {
780df8bae1dSRodney W. Grimes 		m_freem(m);	/* Bad return address */
781e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_badaddr);
782df8bae1dSRodney W. Grimes 		goto done;	/* Ip_output() will check for broadcast */
783df8bae1dSRodney W. Grimes 	}
7846b9ff6b7SGeorge V. Neville-Neil 
785df8bae1dSRodney W. Grimes 	t = ip->ip_dst;
786df8bae1dSRodney W. Grimes 	ip->ip_dst = ip->ip_src;
7871488eac8SAndre Oppermann 
788df8bae1dSRodney W. Grimes 	/*
7891488eac8SAndre Oppermann 	 * Source selection for ICMP replies:
7901488eac8SAndre Oppermann 	 *
7911488eac8SAndre Oppermann 	 * If the incoming packet was addressed directly to one of our
7921488eac8SAndre Oppermann 	 * own addresses, use dst as the src for the reply.
793df8bae1dSRodney W. Grimes 	 */
794c8ee75f2SGleb Smirnoff 	CK_LIST_FOREACH(ia, INADDR_HASH(t.s_addr), ia_hash) {
79533c4f96dSRobert Watson 		if (t.s_addr == IA_SIN(ia)->sin_addr.s_addr) {
79633c4f96dSRobert Watson 			t = IA_SIN(ia)->sin_addr;
797ca925d9cSJonathan Lemon 			goto match;
79833c4f96dSRobert Watson 		}
79933c4f96dSRobert Watson 	}
8002d9cfabaSRobert Watson 
8011488eac8SAndre Oppermann 	/*
8021488eac8SAndre Oppermann 	 * If the incoming packet was addressed to one of our broadcast
8031488eac8SAndre Oppermann 	 * addresses, use the first non-broadcast address which corresponds
8041488eac8SAndre Oppermann 	 * to the incoming interface.
8051488eac8SAndre Oppermann 	 */
80633c4f96dSRobert Watson 	ifp = m->m_pkthdr.rcvif;
80733c4f96dSRobert Watson 	if (ifp != NULL && ifp->if_flags & IFF_BROADCAST) {
808d7c5a620SMatt Macy 		CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
809ca925d9cSJonathan Lemon 			if (ifa->ifa_addr->sa_family != AF_INET)
810ca925d9cSJonathan Lemon 				continue;
811ca925d9cSJonathan Lemon 			ia = ifatoia(ifa);
812ca925d9cSJonathan Lemon 			if (satosin(&ia->ia_broadaddr)->sin_addr.s_addr ==
81333c4f96dSRobert Watson 			    t.s_addr) {
81433c4f96dSRobert Watson 				t = IA_SIN(ia)->sin_addr;
815ca925d9cSJonathan Lemon 				goto match;
816df8bae1dSRodney W. Grimes 			}
817ca925d9cSJonathan Lemon 		}
81833c4f96dSRobert Watson 	}
8191488eac8SAndre Oppermann 	/*
820a0866c8dSAndre Oppermann 	 * If the packet was transiting through us, use the address of
821a0866c8dSAndre Oppermann 	 * the interface the packet came through in.  If that interface
822a0866c8dSAndre Oppermann 	 * doesn't have a suitable IP address, the normal selection
823a0866c8dSAndre Oppermann 	 * criteria apply.
824a0866c8dSAndre Oppermann 	 */
82533c4f96dSRobert Watson 	if (V_icmp_rfi && ifp != NULL) {
826d7c5a620SMatt Macy 		CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
827a0866c8dSAndre Oppermann 			if (ifa->ifa_addr->sa_family != AF_INET)
828a0866c8dSAndre Oppermann 				continue;
829a0866c8dSAndre Oppermann 			ia = ifatoia(ifa);
83033c4f96dSRobert Watson 			t = IA_SIN(ia)->sin_addr;
831a0866c8dSAndre Oppermann 			goto match;
832a0866c8dSAndre Oppermann 		}
833a0866c8dSAndre Oppermann 	}
834a0866c8dSAndre Oppermann 	/*
835b74d89bbSAndre Oppermann 	 * If the incoming packet was not addressed directly to us, use
836b74d89bbSAndre Oppermann 	 * designated interface for icmp replies specified by sysctl
837b74d89bbSAndre Oppermann 	 * net.inet.icmp.reply_src (default not set). Otherwise continue
838b74d89bbSAndre Oppermann 	 * with normal source selection.
839b74d89bbSAndre Oppermann 	 */
84033c4f96dSRobert Watson 	if (V_reply_src[0] != '\0' && (ifp = ifunit(V_reply_src))) {
841d7c5a620SMatt Macy 		CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
842b74d89bbSAndre Oppermann 			if (ifa->ifa_addr->sa_family != AF_INET)
843b74d89bbSAndre Oppermann 				continue;
844b74d89bbSAndre Oppermann 			ia = ifatoia(ifa);
84533c4f96dSRobert Watson 			t = IA_SIN(ia)->sin_addr;
846b74d89bbSAndre Oppermann 			goto match;
847b74d89bbSAndre Oppermann 		}
848b74d89bbSAndre Oppermann 	}
849b74d89bbSAndre Oppermann 	/*
8501488eac8SAndre Oppermann 	 * If the packet was transiting through us, use the address of
8511488eac8SAndre Oppermann 	 * the interface that is the closest to the packet source.
8521488eac8SAndre Oppermann 	 * When we don't have a route back to the packet source, stop here
8531488eac8SAndre Oppermann 	 * and drop the packet.
8541488eac8SAndre Oppermann 	 */
8553553b300SAlexander V. Chernikov 	nh = fib4_lookup(M_GETFIB(m), ip->ip_dst, 0, NHR_NONE, 0);
8563553b300SAlexander V. Chernikov 	if (nh == NULL) {
8570d4bef5dSDima Dorfman 		m_freem(m);
858e27b0c87SRobert Watson 		ICMPSTAT_INC(icps_noroute);
8590d4bef5dSDima Dorfman 		goto done;
8600d4bef5dSDima Dorfman 	}
8613553b300SAlexander V. Chernikov 	t = IA_SIN(ifatoia(nh->nh_ifa))->sin_addr;
862ca925d9cSJonathan Lemon match:
863baee0c3eSRobert Watson #ifdef MAC
864a13e21f7SRobert Watson 	mac_netinet_icmp_replyinplace(m);
865baee0c3eSRobert Watson #endif
866df8bae1dSRodney W. Grimes 	ip->ip_src = t;
867603724d3SBjoern A. Zeeb 	ip->ip_ttl = V_ip_defttl;
868df8bae1dSRodney W. Grimes 
869df8bae1dSRodney W. Grimes 	if (optlen > 0) {
8703e85b721SEd Maste 		u_char *cp;
871df8bae1dSRodney W. Grimes 		int opt, cnt;
872df8bae1dSRodney W. Grimes 		u_int len;
873df8bae1dSRodney W. Grimes 
874df8bae1dSRodney W. Grimes 		/*
875df8bae1dSRodney W. Grimes 		 * Retrieve any source routing from the incoming packet;
876df8bae1dSRodney W. Grimes 		 * add on any record-route or timestamp options.
877df8bae1dSRodney W. Grimes 		 */
878df8bae1dSRodney W. Grimes 		cp = (u_char *) (ip + 1);
87999d628d5SPedro F. Giffuni 		if ((opts = ip_srcroute(m)) == NULL &&
880eb1b1807SGleb Smirnoff 		    (opts = m_gethdr(M_NOWAIT, MT_DATA))) {
881df8bae1dSRodney W. Grimes 			opts->m_len = sizeof(struct in_addr);
882df8bae1dSRodney W. Grimes 			mtod(opts, struct in_addr *)->s_addr = 0;
883df8bae1dSRodney W. Grimes 		}
884df8bae1dSRodney W. Grimes 		if (opts) {
885df8bae1dSRodney W. Grimes #ifdef ICMPPRINTFS
886df8bae1dSRodney W. Grimes 		    if (icmpprintfs)
887df8bae1dSRodney W. Grimes 			    printf("icmp_reflect optlen %d rt %d => ",
888df8bae1dSRodney W. Grimes 				optlen, opts->m_len);
889df8bae1dSRodney W. Grimes #endif
890df8bae1dSRodney W. Grimes 		    for (cnt = optlen; cnt > 0; cnt -= len, cp += len) {
891df8bae1dSRodney W. Grimes 			    opt = cp[IPOPT_OPTVAL];
892df8bae1dSRodney W. Grimes 			    if (opt == IPOPT_EOL)
893df8bae1dSRodney W. Grimes 				    break;
894df8bae1dSRodney W. Grimes 			    if (opt == IPOPT_NOP)
895df8bae1dSRodney W. Grimes 				    len = 1;
896df8bae1dSRodney W. Grimes 			    else {
897707d00a3SJonathan Lemon 				    if (cnt < IPOPT_OLEN + sizeof(*cp))
898707d00a3SJonathan Lemon 					    break;
899df8bae1dSRodney W. Grimes 				    len = cp[IPOPT_OLEN];
900707d00a3SJonathan Lemon 				    if (len < IPOPT_OLEN + sizeof(*cp) ||
901707d00a3SJonathan Lemon 				        len > cnt)
902df8bae1dSRodney W. Grimes 					    break;
903df8bae1dSRodney W. Grimes 			    }
904df8bae1dSRodney W. Grimes 			    /*
905df8bae1dSRodney W. Grimes 			     * Should check for overflow, but it "can't happen"
906df8bae1dSRodney W. Grimes 			     */
907df8bae1dSRodney W. Grimes 			    if (opt == IPOPT_RR || opt == IPOPT_TS ||
908df8bae1dSRodney W. Grimes 				opt == IPOPT_SECURITY) {
909df8bae1dSRodney W. Grimes 				    bcopy((caddr_t)cp,
910df8bae1dSRodney W. Grimes 					mtod(opts, caddr_t) + opts->m_len, len);
911df8bae1dSRodney W. Grimes 				    opts->m_len += len;
912df8bae1dSRodney W. Grimes 			    }
913df8bae1dSRodney W. Grimes 		    }
914df8bae1dSRodney W. Grimes 		    /* Terminate & pad, if necessary */
915623ae52eSPoul-Henning Kamp 		    cnt = opts->m_len % 4;
916623ae52eSPoul-Henning Kamp 		    if (cnt) {
917df8bae1dSRodney W. Grimes 			    for (; cnt < 4; cnt++) {
918df8bae1dSRodney W. Grimes 				    *(mtod(opts, caddr_t) + opts->m_len) =
919df8bae1dSRodney W. Grimes 					IPOPT_EOL;
920df8bae1dSRodney W. Grimes 				    opts->m_len++;
921df8bae1dSRodney W. Grimes 			    }
922df8bae1dSRodney W. Grimes 		    }
923df8bae1dSRodney W. Grimes #ifdef ICMPPRINTFS
924df8bae1dSRodney W. Grimes 		    if (icmpprintfs)
925df8bae1dSRodney W. Grimes 			    printf("%d\n", opts->m_len);
926df8bae1dSRodney W. Grimes #endif
927df8bae1dSRodney W. Grimes 		}
9289e2a372fSGleb Smirnoff 		ip_stripoptions(m);
929df8bae1dSRodney W. Grimes 	}
9309c855a36SSam Leffler 	m_tag_delete_nonpersistent(m);
931df8bae1dSRodney W. Grimes 	m->m_flags &= ~(M_BCAST|M_MCAST);
93202c1c707SAndre Oppermann 	icmp_send(m, opts);
933df8bae1dSRodney W. Grimes done:
934df8bae1dSRodney W. Grimes 	if (opts)
935df8bae1dSRodney W. Grimes 		(void)m_free(opts);
936df8bae1dSRodney W. Grimes }
937df8bae1dSRodney W. Grimes 
938df8bae1dSRodney W. Grimes /*
93934a5582cSAlexander V. Chernikov  * Verifies if redirect message is valid, according to RFC 1122
94034a5582cSAlexander V. Chernikov  *
94134a5582cSAlexander V. Chernikov  * @src: sockaddr with address of redirect originator
94234a5582cSAlexander V. Chernikov  * @dst: sockaddr with destination in question
94334a5582cSAlexander V. Chernikov  * @gateway: new proposed gateway
94434a5582cSAlexander V. Chernikov  *
94534a5582cSAlexander V. Chernikov  * Returns 0 on success.
94634a5582cSAlexander V. Chernikov  */
94734a5582cSAlexander V. Chernikov static int
94834a5582cSAlexander V. Chernikov icmp_verify_redirect_gateway(struct sockaddr_in *src, struct sockaddr_in *dst,
94934a5582cSAlexander V. Chernikov     struct sockaddr_in *gateway, u_int fibnum)
95034a5582cSAlexander V. Chernikov {
9519ac7c6cfSAlexander V. Chernikov 	struct nhop_object *nh;
95234a5582cSAlexander V. Chernikov 	struct ifaddr *ifa;
95334a5582cSAlexander V. Chernikov 
95434a5582cSAlexander V. Chernikov 	NET_EPOCH_ASSERT();
95534a5582cSAlexander V. Chernikov 
95634a5582cSAlexander V. Chernikov 	/* Verify the gateway is directly reachable. */
95734a5582cSAlexander V. Chernikov 	if ((ifa = ifa_ifwithnet((struct sockaddr *)gateway, 0, fibnum))==NULL)
95834a5582cSAlexander V. Chernikov 		return (ENETUNREACH);
95934a5582cSAlexander V. Chernikov 
96034a5582cSAlexander V. Chernikov 	/* TODO: fib-aware. */
96134a5582cSAlexander V. Chernikov 	if (ifa_ifwithaddr_check((struct sockaddr *)gateway))
96234a5582cSAlexander V. Chernikov 		return (EHOSTUNREACH);
96334a5582cSAlexander V. Chernikov 
9649ac7c6cfSAlexander V. Chernikov 	nh = fib4_lookup(fibnum, dst->sin_addr, 0, NHR_NONE, 0);
9659ac7c6cfSAlexander V. Chernikov 	if (nh == NULL)
96634a5582cSAlexander V. Chernikov 		return (EINVAL);
96734a5582cSAlexander V. Chernikov 
96834a5582cSAlexander V. Chernikov 	/*
96934a5582cSAlexander V. Chernikov 	 * If the redirect isn't from our current router for this dst,
97034a5582cSAlexander V. Chernikov 	 * it's either old or wrong.  If it redirects us to ourselves,
97134a5582cSAlexander V. Chernikov 	 * we have a routing loop, perhaps as a result of an interface
97234a5582cSAlexander V. Chernikov 	 * going down recently.
97334a5582cSAlexander V. Chernikov 	 */
9749ac7c6cfSAlexander V. Chernikov 	if (!sa_equal((struct sockaddr *)src, &nh->gw_sa))
97534a5582cSAlexander V. Chernikov 		return (EINVAL);
9769ac7c6cfSAlexander V. Chernikov 	if (nh->nh_ifa != ifa && ifa->ifa_addr->sa_family != AF_LINK)
97734a5582cSAlexander V. Chernikov 		return (EINVAL);
97834a5582cSAlexander V. Chernikov 
97934a5582cSAlexander V. Chernikov 	/* If host route already exists, ignore redirect. */
9809ac7c6cfSAlexander V. Chernikov 	if (nh->nh_flags & NHF_HOST)
98134a5582cSAlexander V. Chernikov 		return (EEXIST);
98234a5582cSAlexander V. Chernikov 
98334a5582cSAlexander V. Chernikov 	/* If the prefix is directly reachable, ignore redirect. */
9849ac7c6cfSAlexander V. Chernikov 	if (!(nh->nh_flags & NHF_GATEWAY))
98534a5582cSAlexander V. Chernikov 		return (EEXIST);
98634a5582cSAlexander V. Chernikov 
98734a5582cSAlexander V. Chernikov 	return (0);
98834a5582cSAlexander V. Chernikov }
98934a5582cSAlexander V. Chernikov 
99034a5582cSAlexander V. Chernikov /*
991df8bae1dSRodney W. Grimes  * Send an icmp packet back to the ip level,
992df8bae1dSRodney W. Grimes  * after supplying a checksum.
993df8bae1dSRodney W. Grimes  */
9940312fbe9SPoul-Henning Kamp static void
995f2565d68SRobert Watson icmp_send(struct mbuf *m, struct mbuf *opts)
996df8bae1dSRodney W. Grimes {
9973e85b721SEd Maste 	struct ip *ip = mtod(m, struct ip *);
9983e85b721SEd Maste 	int hlen;
9993e85b721SEd Maste 	struct icmp *icp;
1000df8bae1dSRodney W. Grimes 
100153be11f6SPoul-Henning Kamp 	hlen = ip->ip_hl << 2;
1002df8bae1dSRodney W. Grimes 	m->m_data += hlen;
1003df8bae1dSRodney W. Grimes 	m->m_len -= hlen;
1004df8bae1dSRodney W. Grimes 	icp = mtod(m, struct icmp *);
1005df8bae1dSRodney W. Grimes 	icp->icmp_cksum = 0;
10068f134647SGleb Smirnoff 	icp->icmp_cksum = in_cksum(m, ntohs(ip->ip_len) - hlen);
1007df8bae1dSRodney W. Grimes 	m->m_data -= hlen;
1008df8bae1dSRodney W. Grimes 	m->m_len += hlen;
100994446a2eSArchie Cobbs 	m->m_pkthdr.rcvif = (struct ifnet *)0;
1010df8bae1dSRodney W. Grimes #ifdef ICMPPRINTFS
10112b758395SGarrett Wollman 	if (icmpprintfs) {
10128144690aSEric van Gyzen 		char dstbuf[INET_ADDRSTRLEN];
10138144690aSEric van Gyzen 		char srcbuf[INET_ADDRSTRLEN];
10148144690aSEric van Gyzen 
10152b758395SGarrett Wollman 		printf("icmp_send dst %s src %s\n",
10168144690aSEric van Gyzen 		    inet_ntoa_r(ip->ip_dst, dstbuf),
10178144690aSEric van Gyzen 		    inet_ntoa_r(ip->ip_src, srcbuf));
10182b758395SGarrett Wollman 	}
1019df8bae1dSRodney W. Grimes #endif
102002c1c707SAndre Oppermann 	(void) ip_output(m, opts, NULL, 0, NULL, NULL);
1021df8bae1dSRodney W. Grimes }
1022df8bae1dSRodney W. Grimes 
1023d685b6eeSLuigi Rizzo /*
102461f26caeSWarner Losh  * Return milliseconds since 00:00 UTC in network format.
1025d685b6eeSLuigi Rizzo  */
1026d685b6eeSLuigi Rizzo uint32_t
1027f2565d68SRobert Watson iptime(void)
1028df8bae1dSRodney W. Grimes {
1029df8bae1dSRodney W. Grimes 	struct timeval atv;
1030df8bae1dSRodney W. Grimes 	u_long t;
1031df8bae1dSRodney W. Grimes 
103216cd6db0SBill Fumerola 	getmicrotime(&atv);
1033df8bae1dSRodney W. Grimes 	t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000;
1034df8bae1dSRodney W. Grimes 	return (htonl(t));
1035df8bae1dSRodney W. Grimes }
1036df8bae1dSRodney W. Grimes 
10375cbf3e08SGarrett Wollman /*
10385cbf3e08SGarrett Wollman  * Return the next larger or smaller MTU plateau (table from RFC 1191)
10395cbf3e08SGarrett Wollman  * given current value MTU.  If DIR is less than zero, a larger plateau
10405cbf3e08SGarrett Wollman  * is returned; otherwise, a smaller value is returned.
10415cbf3e08SGarrett Wollman  */
10421aedbd9cSAndre Oppermann int
1043f2565d68SRobert Watson ip_next_mtu(int mtu, int dir)
10445cbf3e08SGarrett Wollman {
10455cbf3e08SGarrett Wollman 	static int mtutab[] = {
10464c037f8dSAndre Oppermann 		65535, 32000, 17914, 8166, 4352, 2002, 1492, 1280, 1006, 508,
10474c037f8dSAndre Oppermann 		296, 68, 0
10485cbf3e08SGarrett Wollman 	};
104906003a1eSAndre Oppermann 	int i, size;
10505cbf3e08SGarrett Wollman 
105106003a1eSAndre Oppermann 	size = (sizeof mtutab) / (sizeof mtutab[0]);
105206003a1eSAndre Oppermann 	if (dir >= 0) {
10531c0b0f52SGleb Smirnoff 		for (i = 0; i < size; i++)
105406003a1eSAndre Oppermann 			if (mtu > mtutab[i])
10555cbf3e08SGarrett Wollman 				return mtutab[i];
10565cbf3e08SGarrett Wollman 	} else {
105706003a1eSAndre Oppermann 		for (i = size - 1; i >= 0; i--)
105806003a1eSAndre Oppermann 			if (mtu < mtutab[i])
105906003a1eSAndre Oppermann 				return mtutab[i];
106006003a1eSAndre Oppermann 		if (mtu == mtutab[0])
106106003a1eSAndre Oppermann 			return mtutab[0];
10625cbf3e08SGarrett Wollman 	}
106306003a1eSAndre Oppermann 	return 0;
10645cbf3e08SGarrett Wollman }
1065b8e463e6SBjoern A. Zeeb #endif /* INET */
106651508de1SMatthew Dillon 
106751508de1SMatthew Dillon /*
106851508de1SMatthew Dillon  * badport_bandlim() - check for ICMP bandwidth limit
106951508de1SMatthew Dillon  *
107051508de1SMatthew Dillon  *	Return 0 if it is ok to send an ICMP error response, -1 if we have
107151508de1SMatthew Dillon  *	hit our bandwidth limit and it is not ok.
107251508de1SMatthew Dillon  *
107351508de1SMatthew Dillon  *	If icmplim is <= 0, the feature is disabled and 0 is returned.
107451508de1SMatthew Dillon  *
107551508de1SMatthew Dillon  *	For now we separate the TCP and UDP subsystems w/ different 'which'
107651508de1SMatthew Dillon  *	values.  We may eventually remove this separation (and simplify the
107751508de1SMatthew Dillon  *	code further).
107851508de1SMatthew Dillon  *
107951508de1SMatthew Dillon  *	Note that the printing of the error message is delayed so we can
108051508de1SMatthew Dillon  *	properly print the icmp error rate that the system was trying to do
108151508de1SMatthew Dillon  *	(i.e. 22000/100 pps, etc...).  This can cause long delays in printing
108251508de1SMatthew Dillon  *	the 'final' error, but it doesn't make sense to solve the printing
108351508de1SMatthew Dillon  *	delay with more complex code.
108451508de1SMatthew Dillon  */
10853cbee8caSGleb Smirnoff struct icmp_rate {
10863cbee8caSGleb Smirnoff 	const char *descr;
10873cbee8caSGleb Smirnoff 	struct counter_rate cr;
10883cbee8caSGleb Smirnoff };
10895f901c92SAndrew Turner VNET_DEFINE_STATIC(struct icmp_rate, icmp_rates[BANDLIM_MAX]) = {
109000f21882SSam Leffler 	{ "icmp unreach response" },
109100f21882SSam Leffler 	{ "icmp ping response" },
109200f21882SSam Leffler 	{ "icmp tstamp response" },
109300f21882SSam Leffler 	{ "closed port RST response" },
109408af97b7SRobert Watson 	{ "open port RST response" },
10955ad9e57bSMichael Tuexen 	{ "icmp6 unreach response" },
10965ad9e57bSMichael Tuexen 	{ "sctp ootb response" }
109709f81a46SBosko Milekic };
10983cbee8caSGleb Smirnoff #define	V_icmp_rates	VNET(icmp_rates)
109951508de1SMatthew Dillon 
11003cbee8caSGleb Smirnoff static void
11013cbee8caSGleb Smirnoff icmp_bandlimit_init(void)
11023cbee8caSGleb Smirnoff {
110351508de1SMatthew Dillon 
11043cbee8caSGleb Smirnoff 	for (int i = 0; i < BANDLIM_MAX; i++) {
11053cbee8caSGleb Smirnoff 		V_icmp_rates[i].cr.cr_rate = counter_u64_alloc(M_WAITOK);
11063cbee8caSGleb Smirnoff 		V_icmp_rates[i].cr.cr_ticks = ticks;
110751508de1SMatthew Dillon 	}
11083cbee8caSGleb Smirnoff }
11093cbee8caSGleb Smirnoff VNET_SYSINIT(icmp_bandlimit, SI_SUB_PROTO_DOMAIN, SI_ORDER_ANY,
11103cbee8caSGleb Smirnoff     icmp_bandlimit_init, NULL);
11113cbee8caSGleb Smirnoff 
11123cbee8caSGleb Smirnoff static void
11133cbee8caSGleb Smirnoff icmp_bandlimit_uninit(void)
11143cbee8caSGleb Smirnoff {
11153cbee8caSGleb Smirnoff 
11163cbee8caSGleb Smirnoff 	for (int i = 0; i < BANDLIM_MAX; i++)
11173cbee8caSGleb Smirnoff 		counter_u64_free(V_icmp_rates[i].cr.cr_rate);
11183cbee8caSGleb Smirnoff }
11193cbee8caSGleb Smirnoff VNET_SYSUNINIT(icmp_bandlimit, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD,
11203cbee8caSGleb Smirnoff     icmp_bandlimit_uninit, NULL);
11213cbee8caSGleb Smirnoff 
11223cbee8caSGleb Smirnoff int
11233cbee8caSGleb Smirnoff badport_bandlim(int which)
11243cbee8caSGleb Smirnoff {
11253cbee8caSGleb Smirnoff 	int64_t pps;
11263cbee8caSGleb Smirnoff 
11273cbee8caSGleb Smirnoff 	if (V_icmplim == 0 || which == BANDLIM_UNLIMITED)
11283cbee8caSGleb Smirnoff 		return (0);
11293cbee8caSGleb Smirnoff 
11303cbee8caSGleb Smirnoff 	KASSERT(which >= 0 && which < BANDLIM_MAX,
11313cbee8caSGleb Smirnoff 	    ("%s: which %d", __func__, which));
11323cbee8caSGleb Smirnoff 
1133*ca4cd20cSGeorge V. Neville-Neil 	if ((V_icmplim + V_icmplim_curr_jitter) <= 0)
1134*ca4cd20cSGeorge V. Neville-Neil 		V_icmplim_curr_jitter = -V_icmplim + 1;
1135*ca4cd20cSGeorge V. Neville-Neil 
1136*ca4cd20cSGeorge V. Neville-Neil 	pps = counter_ratecheck(&V_icmp_rates[which].cr, V_icmplim +
1137*ca4cd20cSGeorge V. Neville-Neil 	    V_icmplim_curr_jitter);
1138*ca4cd20cSGeorge V. Neville-Neil 	if (pps > 0) {
1139*ca4cd20cSGeorge V. Neville-Neil 		/*
1140*ca4cd20cSGeorge V. Neville-Neil 		 * Adjust limit +/- to jitter the measurement to deny a
1141*ca4cd20cSGeorge V. Neville-Neil 		 * side-channel port scan as in CVE-2020-25705
1142*ca4cd20cSGeorge V. Neville-Neil 		 */
1143*ca4cd20cSGeorge V. Neville-Neil 		if (V_icmplim_jitter > 0) {
1144*ca4cd20cSGeorge V. Neville-Neil 			int32_t inc =
1145*ca4cd20cSGeorge V. Neville-Neil 			    arc4random_uniform(V_icmplim_jitter * 2 +1)
1146*ca4cd20cSGeorge V. Neville-Neil 			    - V_icmplim_jitter;
1147*ca4cd20cSGeorge V. Neville-Neil 
1148*ca4cd20cSGeorge V. Neville-Neil 			V_icmplim_curr_jitter = inc;
1149*ca4cd20cSGeorge V. Neville-Neil 		}
1150*ca4cd20cSGeorge V. Neville-Neil 	}
11513cbee8caSGleb Smirnoff 	if (pps == -1)
11523cbee8caSGleb Smirnoff 		return (-1);
11533cbee8caSGleb Smirnoff 	if (pps > 0 && V_icmplim_output)
11548c70a353SGleb Smirnoff 		log(LOG_NOTICE, "Limiting %s from %jd to %d packets/sec\n",
1155*ca4cd20cSGeorge V. Neville-Neil 		    V_icmp_rates[which].descr, (intmax_t )pps, V_icmplim +
1156*ca4cd20cSGeorge V. Neville-Neil 		    V_icmplim_curr_jitter);
11573cbee8caSGleb Smirnoff 	return (0);
115851508de1SMatthew Dillon }
1159