[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <37984F86-A7B2-4E34-9301-74C9F90BE0A2@holtmann.org>
Date: Wed, 16 Dec 2015 05:19:28 +0100
From: Marcel Holtmann <marcel@...tmann.org>
To: "David S. Miller" <davem@...emloft.net>
Cc: dvyukov@...gle.com, "Gustavo F. Padovan" <gustavo@...ovan.org>,
Johan Hedberg <johan.hedberg@...il.com>,
BlueZ development <linux-bluetooth@...r.kernel.org>,
Network Development <netdev@...r.kernel.org>,
LKML <linux-kernel@...r.kernel.org>, syzkaller@...glegroups.com,
kcc@...gle.com, glider@...gle.com, sasha.levin@...cle.com,
edumazet@...gle.com, keescook@...gle.com,
hannes@...essinduktion.org, ursula.braun@...ibm.com,
linux-s390@...r.kernel.org, lauro.venancio@...nbossa.org,
aloisio.almeida@...nbossa.org, Samuel Ortiz <sameo@...ux.intel.com>
Subject: Re: Information leak in sco_sock_bind
Hi Dave,
>> The following program leads to leak of 6 bytes from kernel stack:
>
> This should fix it:
>
> ====================
> [PATCH] bluetooth: Validate socket address length in sco_sock_bind().
>
> Signed-off-by: David S. Miller <davem@...emloft.net>
> ---
> net/bluetooth/sco.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c
> index fe12966..f52bcbf 100644
> --- a/net/bluetooth/sco.c
> +++ b/net/bluetooth/sco.c
> @@ -526,6 +526,9 @@ static int sco_sock_bind(struct socket *sock, struct sockaddr *addr,
> if (!addr || addr->sa_family != AF_BLUETOOTH)
> return -EINVAL;
>
> + if (addr_len < sizeof(struct sockaddr_sco))
> + return -EINVAL;
> +
> lock_sock(sk);
>
> if (sk->sk_state != BT_OPEN) {
thanks for the patch, but I think we do the same as we do with all the other Bluetooth socket and copy it into cleared stack variable. I have a patch for that and will ask Johan to send a pull request shortly.
Regards
Marcel
--
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