2019-05-27 06:55:01 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* INET An implementation of the TCP/IP protocol suite for the LINUX
|
|
|
|
* operating system. INET is implemented using the BSD Socket
|
|
|
|
* interface as the means of communication with the user level.
|
|
|
|
*
|
|
|
|
* Definitions for the ICMP module.
|
|
|
|
*
|
|
|
|
* Version: @(#)icmp.h 1.0.4 05/13/93
|
|
|
|
*
|
2005-05-05 23:16:16 +00:00
|
|
|
* Authors: Ross Biro
|
2005-04-16 22:20:36 +00:00
|
|
|
* Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
|
|
|
|
*/
|
|
|
|
#ifndef _ICMP_H
|
|
|
|
#define _ICMP_H
|
|
|
|
|
|
|
|
#include <linux/icmp.h>
|
|
|
|
|
2005-12-27 04:43:12 +00:00
|
|
|
#include <net/inet_sock.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <net/snmp.h>
|
2019-02-25 16:24:15 +00:00
|
|
|
#include <net/ip.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct icmp_err {
|
|
|
|
int errno;
|
2012-04-15 05:58:06 +00:00
|
|
|
unsigned int fatal:1;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2010-01-22 10:18:25 +00:00
|
|
|
extern const struct icmp_err icmp_err_convert[];
|
2008-07-18 11:04:02 +00:00
|
|
|
#define ICMP_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.icmp_statistics, field)
|
2016-04-27 23:44:43 +00:00
|
|
|
#define __ICMP_INC_STATS(net, field) __SNMP_INC_STATS((net)->mib.icmp_statistics, field)
|
2011-11-08 13:04:43 +00:00
|
|
|
#define ICMPMSGOUT_INC_STATS(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, field+256)
|
2016-04-27 23:44:33 +00:00
|
|
|
#define ICMPMSGIN_INC_STATS(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, field)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-12-27 04:43:12 +00:00
|
|
|
struct dst_entry;
|
|
|
|
struct net_proto_family;
|
|
|
|
struct sk_buff;
|
2008-07-15 06:00:43 +00:00
|
|
|
struct net;
|
2005-12-27 04:43:12 +00:00
|
|
|
|
2019-02-25 16:24:15 +00:00
|
|
|
void __icmp_send(struct sk_buff *skb_in, int type, int code, __be32 info,
|
|
|
|
const struct ip_options *opt);
|
|
|
|
static inline void icmp_send(struct sk_buff *skb_in, int type, int code, __be32 info)
|
|
|
|
{
|
|
|
|
__icmp_send(skb_in, type, code, info, &IPCB(skb_in)->opt);
|
|
|
|
}
|
|
|
|
|
2020-02-11 19:47:05 +00:00
|
|
|
#if IS_ENABLED(CONFIG_NF_NAT)
|
|
|
|
void icmp_ndo_send(struct sk_buff *skb_in, int type, int code, __be32 info);
|
|
|
|
#else
|
net: icmp: pass zeroed opts from icmp{,v6}_ndo_send before sending
The icmp{,v6}_send functions make all sorts of use of skb->cb, casting
it with IPCB or IP6CB, assuming the skb to have come directly from the
inet layer. But when the packet comes from the ndo layer, especially
when forwarded, there's no telling what might be in skb->cb at that
point. As a result, the icmp sending code risks reading bogus memory
contents, which can result in nasty stack overflows such as this one
reported by a user:
panic+0x108/0x2ea
__stack_chk_fail+0x14/0x20
__icmp_send+0x5bd/0x5c0
icmp_ndo_send+0x148/0x160
In icmp_send, skb->cb is cast with IPCB and an ip_options struct is read
from it. The optlen parameter there is of particular note, as it can
induce writes beyond bounds. There are quite a few ways that can happen
in __ip_options_echo. For example:
// sptr/skb are attacker-controlled skb bytes
sptr = skb_network_header(skb);
// dptr/dopt points to stack memory allocated by __icmp_send
dptr = dopt->__data;
// sopt is the corrupt skb->cb in question
if (sopt->rr) {
optlen = sptr[sopt->rr+1]; // corrupt skb->cb + skb->data
soffset = sptr[sopt->rr+2]; // corrupt skb->cb + skb->data
// this now writes potentially attacker-controlled data, over
// flowing the stack:
memcpy(dptr, sptr+sopt->rr, optlen);
}
In the icmpv6_send case, the story is similar, but not as dire, as only
IP6CB(skb)->iif and IP6CB(skb)->dsthao are used. The dsthao case is
worse than the iif case, but it is passed to ipv6_find_tlv, which does
a bit of bounds checking on the value.
This is easy to simulate by doing a `memset(skb->cb, 0x41,
sizeof(skb->cb));` before calling icmp{,v6}_ndo_send, and it's only by
good fortune and the rarity of icmp sending from that context that we've
avoided reports like this until now. For example, in KASAN:
BUG: KASAN: stack-out-of-bounds in __ip_options_echo+0xa0e/0x12b0
Write of size 38 at addr ffff888006f1f80e by task ping/89
CPU: 2 PID: 89 Comm: ping Not tainted 5.10.0-rc7-debug+ #5
Call Trace:
dump_stack+0x9a/0xcc
print_address_description.constprop.0+0x1a/0x160
__kasan_report.cold+0x20/0x38
kasan_report+0x32/0x40
check_memory_region+0x145/0x1a0
memcpy+0x39/0x60
__ip_options_echo+0xa0e/0x12b0
__icmp_send+0x744/0x1700
Actually, out of the 4 drivers that do this, only gtp zeroed the cb for
the v4 case, while the rest did not. So this commit actually removes the
gtp-specific zeroing, while putting the code where it belongs in the
shared infrastructure of icmp{,v6}_ndo_send.
This commit fixes the issue by passing an empty IPCB or IP6CB along to
the functions that actually do the work. For the icmp_send, this was
already trivial, thanks to __icmp_send providing the plumbing function.
For icmpv6_send, this required a tiny bit of refactoring to make it
behave like the v4 case, after which it was straight forward.
Fixes: a2b78e9b2cac ("sunvnet: generate ICMP PTMUD messages for smaller port MTUs")
Reported-by: SinYu <liuxyon@gmail.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Link: https://lore.kernel.org/netdev/CAF=yD-LOF116aHub6RMe8vB8ZpnrrnoTdqhobEx+bvoA8AsP0w@mail.gmail.com/T/
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Link: https://lore.kernel.org/r/20210223131858.72082-1-Jason@zx2c4.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2021-02-23 13:18:58 +00:00
|
|
|
static inline void icmp_ndo_send(struct sk_buff *skb_in, int type, int code, __be32 info)
|
|
|
|
{
|
|
|
|
struct ip_options opts = { 0 };
|
|
|
|
__icmp_send(skb_in, type, code, info, &opts);
|
|
|
|
}
|
2020-02-11 19:47:05 +00:00
|
|
|
#endif
|
|
|
|
|
2013-09-20 18:23:28 +00:00
|
|
|
int icmp_rcv(struct sk_buff *skb);
|
2018-11-08 11:19:21 +00:00
|
|
|
int icmp_err(struct sk_buff *skb, u32 info);
|
2013-09-20 18:23:28 +00:00
|
|
|
int icmp_init(void);
|
|
|
|
void icmp_out_count(struct net *net, unsigned char type);
|
2021-06-26 14:07:46 +00:00
|
|
|
bool icmp_build_probe(struct sk_buff *skb, struct icmphdr *icmphdr);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* _ICMP_H */
|