* [PATCH 2.6.28] tcp_ipv6: fix use of uninitialized memory
@ 2008-09-12 7:05 Vegard Nossum
2008-09-12 12:44 ` Arnaldo Carvalho de Melo
0 siblings, 1 reply; 4+ messages in thread
From: Vegard Nossum @ 2008-09-12 7:05 UTC (permalink / raw)
To: David Miller, netdev
Cc: Arnaldo Carvalho de Melo, Pekka Enberg, Ingo Molnar, linux-kernel
>From 6544c4074aa5dde2e3f4d3e02f5601c1c33b770e Mon Sep 17 00:00:00 2001
From: Vegard Nossum <vegard.nossum@gmail.com>
Date: Tue, 9 Sep 2008 07:17:32 +0200
Subject: [PATCH] tcp_ipv6: fix use of uninitialized memory
inet6_rsk() is called on a struct request_sock * before we
have checked whether the socket is an ipv6 socket or a ipv6-
mapped ipv4 socket. The access that triggers this is the
inet_rsk(rsk)->inet6_rsk_offset dereference in inet6_rsk().
This is arguably not a critical error as the inet6_rsk_offset
is only used to compute a pointer which is never really used
(in the code path in question) anyway. But it might be a
latent error, so let's fix it.
Spotted by kmemcheck.
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
---
net/ipv6/tcp_ipv6.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
index 5b90b36..c9b6c13 100644
--- a/net/ipv6/tcp_ipv6.c
+++ b/net/ipv6/tcp_ipv6.c
@@ -1286,7 +1286,7 @@ static struct sock * tcp_v6_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
struct request_sock *req,
struct dst_entry *dst)
{
- struct inet6_request_sock *treq = inet6_rsk(req);
+ struct inet6_request_sock *treq;
struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
struct tcp6_sock *newtcp6sk;
struct inet_sock *newinet;
@@ -1350,6 +1350,7 @@ static struct sock * tcp_v6_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
return newsk;
}
+ treq = inet6_rsk(req);
opt = np->opt;
if (sk_acceptq_is_full(sk))
--
1.5.5.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2.6.28] tcp_ipv6: fix use of uninitialized memory
2008-09-12 7:05 [PATCH 2.6.28] tcp_ipv6: fix use of uninitialized memory Vegard Nossum
@ 2008-09-12 12:44 ` Arnaldo Carvalho de Melo
2008-09-12 23:17 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2008-09-12 12:44 UTC (permalink / raw)
To: Vegard Nossum
Cc: David Miller, netdev, Pekka Enberg, Ingo Molnar, linux-kernel
Em Fri, Sep 12, 2008 at 09:05:25AM +0200, Vegard Nossum escreveu:
> >From 6544c4074aa5dde2e3f4d3e02f5601c1c33b770e Mon Sep 17 00:00:00 2001
> From: Vegard Nossum <vegard.nossum@gmail.com>
> Date: Tue, 9 Sep 2008 07:17:32 +0200
> Subject: [PATCH] tcp_ipv6: fix use of uninitialized memory
>
> inet6_rsk() is called on a struct request_sock * before we
> have checked whether the socket is an ipv6 socket or a ipv6-
> mapped ipv4 socket. The access that triggers this is the
> inet_rsk(rsk)->inet6_rsk_offset dereference in inet6_rsk().
>
> This is arguably not a critical error as the inet6_rsk_offset
> is only used to compute a pointer which is never really used
> (in the code path in question) anyway. But it might be a
> latent error, so let's fix it.
>
> Spotted by kmemcheck.
Humm, so this was poisoned at allocation and then when inet6_rsk_offset
was accessed it noticed, interesting, thanks!
Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com>
- Arnaldo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2.6.28] tcp_ipv6: fix use of uninitialized memory
2008-09-12 12:44 ` Arnaldo Carvalho de Melo
@ 2008-09-12 23:17 ` David Miller
2008-09-14 14:48 ` Ingo Molnar
0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2008-09-12 23:17 UTC (permalink / raw)
To: acme; +Cc: vegard.nossum, netdev, penberg, mingo, linux-kernel
From: Arnaldo Carvalho de Melo <acme@redhat.com>
Date: Fri, 12 Sep 2008 09:44:05 -0300
> Em Fri, Sep 12, 2008 at 09:05:25AM +0200, Vegard Nossum escreveu:
> > >From 6544c4074aa5dde2e3f4d3e02f5601c1c33b770e Mon Sep 17 00:00:00 2001
> > From: Vegard Nossum <vegard.nossum@gmail.com>
> > Date: Tue, 9 Sep 2008 07:17:32 +0200
> > Subject: [PATCH] tcp_ipv6: fix use of uninitialized memory
> >
> > inet6_rsk() is called on a struct request_sock * before we
> > have checked whether the socket is an ipv6 socket or a ipv6-
> > mapped ipv4 socket. The access that triggers this is the
> > inet_rsk(rsk)->inet6_rsk_offset dereference in inet6_rsk().
> >
> > This is arguably not a critical error as the inet6_rsk_offset
> > is only used to compute a pointer which is never really used
> > (in the code path in question) anyway. But it might be a
> > latent error, so let's fix it.
> >
> > Spotted by kmemcheck.
>
> Humm, so this was poisoned at allocation and then when inet6_rsk_offset
> was accessed it noticed, interesting, thanks!
>
> Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Good find :) I'll add this to net-next-2.6, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2.6.28] tcp_ipv6: fix use of uninitialized memory
2008-09-12 23:17 ` David Miller
@ 2008-09-14 14:48 ` Ingo Molnar
0 siblings, 0 replies; 4+ messages in thread
From: Ingo Molnar @ 2008-09-14 14:48 UTC (permalink / raw)
To: David Miller; +Cc: acme, vegard.nossum, netdev, penberg, linux-kernel
* David Miller <davem@davemloft.net> wrote:
> From: Arnaldo Carvalho de Melo <acme@redhat.com>
> Date: Fri, 12 Sep 2008 09:44:05 -0300
>
> > Em Fri, Sep 12, 2008 at 09:05:25AM +0200, Vegard Nossum escreveu:
> > > >From 6544c4074aa5dde2e3f4d3e02f5601c1c33b770e Mon Sep 17 00:00:00 2001
> > > From: Vegard Nossum <vegard.nossum@gmail.com>
> > > Date: Tue, 9 Sep 2008 07:17:32 +0200
> > > Subject: [PATCH] tcp_ipv6: fix use of uninitialized memory
> > >
> > > inet6_rsk() is called on a struct request_sock * before we
> > > have checked whether the socket is an ipv6 socket or a ipv6-
> > > mapped ipv4 socket. The access that triggers this is the
> > > inet_rsk(rsk)->inet6_rsk_offset dereference in inet6_rsk().
> > >
> > > This is arguably not a critical error as the inet6_rsk_offset
> > > is only used to compute a pointer which is never really used
> > > (in the code path in question) anyway. But it might be a
> > > latent error, so let's fix it.
> > >
> > > Spotted by kmemcheck.
> >
> > Humm, so this was poisoned at allocation and then when inet6_rsk_offset
> > was accessed it noticed, interesting, thanks!
> >
> > Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> Good find :) I'll add this to net-next-2.6, thanks!
nice - i think kmemcheck is starting to build up a healthy list of
references :-)
Ingo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-09-14 14:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-12 7:05 [PATCH 2.6.28] tcp_ipv6: fix use of uninitialized memory Vegard Nossum
2008-09-12 12:44 ` Arnaldo Carvalho de Melo
2008-09-12 23:17 ` David Miller
2008-09-14 14:48 ` Ingo Molnar
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).