[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4A7BCA5F.9050102@hartkopp.net>
Date: Fri, 07 Aug 2009 08:31:59 +0200
From: Oliver Hartkopp <oliver@...tkopp.net>
To: Eric Dumazet <eric.dumazet@...il.com>
CC: "David S. Miller" <davem@...emloft.net>,
Linux Netdev List <netdev@...r.kernel.org>
Subject: Re: [PATCH net-2.6] can: Fix raw_getname() leak
Eric Dumazet wrote:
> raw_getname() can leak 10 bytes of kernel memory to user
>
> (two bytes hole between can_family and can_ifindex,
> 8 bytes at the end of sockaddr_can structure)
>
> Signed-off-by: Eric Dumazet <eric.dumazet@...il.com>
Acked-by: Oliver Hartkopp <oliver@...tkopp.net>
Thanks Eric!
> ---
> diff --git a/net/can/raw.c b/net/can/raw.c
> index f4cc445..db3152d 100644
> --- a/net/can/raw.c
> +++ b/net/can/raw.c
> @@ -401,6 +401,7 @@ static int raw_getname(struct socket *sock, struct sockaddr *uaddr,
> if (peer)
> return -EOPNOTSUPP;
>
> + memset(addr, 0, sizeof(*addr));
> addr->can_family = AF_CAN;
> addr->can_ifindex = ro->ifindex;
>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists