diff options
| author | Eric Dumazet <[email protected]> | 2017-06-03 16:29:25 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2017-06-05 02:56:55 +0000 |
| commit | 77d4b1d36926a9b8387c6b53eeba42bcaaffcea3 (patch) | |
| tree | e2dbe835481d25e7d33cc2afceebc6f03f10173b /net/ipv6/raw.c | |
| parent | net: dsa: Fix stale cpu_switch reference after unbind then bind (diff) | |
| download | kernel-77d4b1d36926a9b8387c6b53eeba42bcaaffcea3.tar.gz kernel-77d4b1d36926a9b8387c6b53eeba42bcaaffcea3.zip | |
net: ping: do not abuse udp_poll()
Alexander reported various KASAN messages triggered in recent kernels
The problem is that ping sockets should not use udp_poll() in the first
place, and recent changes in UDP stack finally exposed this old bug.
Fixes: c319b4d76b9e ("net: ipv4: add IPPROTO_ICMP socket kind")
Fixes: 6d0bfe226116 ("net: ipv6: Add IPv6 support to the ping socket.")
Signed-off-by: Eric Dumazet <[email protected]>
Reported-by: Sasha Levin <[email protected]>
Cc: Solar Designer <[email protected]>
Cc: Vasiliy Kulikov <[email protected]>
Cc: Lorenzo Colitti <[email protected]>
Acked-By: Lorenzo Colitti <[email protected]>
Tested-By: Lorenzo Colitti <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv6/raw.c')
| -rw-r--r-- | net/ipv6/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/raw.c b/net/ipv6/raw.c index 1f992d9e261d..60be012fe708 100644 --- a/net/ipv6/raw.c +++ b/net/ipv6/raw.c @@ -1338,7 +1338,7 @@ void raw6_proc_exit(void) #endif /* CONFIG_PROC_FS */ /* Same as inet6_dgram_ops, sans udp_poll. */ -static const struct proto_ops inet6_sockraw_ops = { +const struct proto_ops inet6_sockraw_ops = { .family = PF_INET6, .owner = THIS_MODULE, .release = inet6_release, |
