* [PATCH] ping: prevent NULL pointer dereference on write to msg_name
@ 2013-11-18 6:07 Hannes Frederic Sowa
2013-11-18 21:02 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Hannes Frederic Sowa @ 2013-11-18 6:07 UTC (permalink / raw)
To: netdev
A plain read() on a socket does set msg->msg_name to NULL. So check for
NULL pointer first.
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
---
Addendum to "[v4] inet: prevent leakage of uninitialized memory to user in
recv syscalls".
net/ipv4/ping.c | 34 +++++++++++++++++++---------------
1 file changed, 19 insertions(+), 15 deletions(-)
diff --git a/net/ipv4/ping.c b/net/ipv4/ping.c
index aacefa0..91bfe04 100644
--- a/net/ipv4/ping.c
+++ b/net/ipv4/ping.c
@@ -870,11 +870,13 @@ int ping_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
if (family == AF_INET) {
struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
- sin->sin_family = AF_INET;
- sin->sin_port = 0 /* skb->h.uh->source */;
- sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
- memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
- *addr_len = sizeof(*sin);
+ if (sin) {
+ sin->sin_family = AF_INET;
+ sin->sin_port = 0 /* skb->h.uh->source */;
+ sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
+ memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
+ *addr_len = sizeof(*sin);
+ }
if (isk->cmsg_flags)
ip_cmsg_recv(msg, skb);
@@ -886,16 +888,18 @@ int ping_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
struct sockaddr_in6 *sin6 =
(struct sockaddr_in6 *)msg->msg_name;
- sin6->sin6_family = AF_INET6;
- sin6->sin6_port = 0;
- sin6->sin6_addr = ip6->saddr;
- sin6->sin6_flowinfo = 0;
- if (np->sndflow)
- sin6->sin6_flowinfo = ip6_flowinfo(ip6);
-
- sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr,
- IP6CB(skb)->iif);
- *addr_len = sizeof(*sin6);
+ if (sin6) {
+ sin6->sin6_family = AF_INET6;
+ sin6->sin6_port = 0;
+ sin6->sin6_addr = ip6->saddr;
+ sin6->sin6_flowinfo = 0;
+ if (np->sndflow)
+ sin6->sin6_flowinfo = ip6_flowinfo(ip6);
+ sin6->sin6_scope_id =
+ ipv6_iface_scope_id(&sin6->sin6_addr,
+ IP6CB(skb)->iif);
+ *addr_len = sizeof(*sin6);
+ }
if (inet6_sk(sk)->rxopt.all)
pingv6_ops.ip6_datagram_recv_ctl(sk, msg, skb);
--
1.8.3.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ping: prevent NULL pointer dereference on write to msg_name
2013-11-18 6:07 [PATCH] ping: prevent NULL pointer dereference on write to msg_name Hannes Frederic Sowa
@ 2013-11-18 21:02 ` David Miller
2013-11-18 22:15 ` Hannes Frederic Sowa
0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2013-11-18 21:02 UTC (permalink / raw)
To: hannes; +Cc: netdev
From: Hannes Frederic Sowa <hannes@stressinduktion.org>
Date: Mon, 18 Nov 2013 07:07:45 +0100
> A plain read() on a socket does set msg->msg_name to NULL. So check for
> NULL pointer first.
>
> Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
> ---
>
> Addendum to "[v4] inet: prevent leakage of uninitialized memory to user in
> recv syscalls".
Applied and queued up for -stable, thanks Hannes.
Looks like ipv6 got this case right.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ping: prevent NULL pointer dereference on write to msg_name
2013-11-18 21:02 ` David Miller
@ 2013-11-18 22:15 ` Hannes Frederic Sowa
0 siblings, 0 replies; 3+ messages in thread
From: Hannes Frederic Sowa @ 2013-11-18 22:15 UTC (permalink / raw)
To: David Miller; +Cc: netdev
On Mon, Nov 18, 2013 at 04:02:38PM -0500, David Miller wrote:
> From: Hannes Frederic Sowa <hannes@stressinduktion.org>
> Date: Mon, 18 Nov 2013 07:07:45 +0100
>
> > A plain read() on a socket does set msg->msg_name to NULL. So check for
> > NULL pointer first.
> >
> > Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
> > ---
> >
> > Addendum to "[v4] inet: prevent leakage of uninitialized memory to user in
> > recv syscalls".
>
> Applied and queued up for -stable, thanks Hannes.
>
> Looks like ipv6 got this case right.
No, IPv6 reuses the IPv4 recvmsg handler. The patch fixes that as well.
Thanks,
Hannes
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-11-18 22:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-18 6:07 [PATCH] ping: prevent NULL pointer dereference on write to msg_name Hannes Frederic Sowa
2013-11-18 21:02 ` David Miller
2013-11-18 22:15 ` Hannes Frederic Sowa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).