]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit
crypto: ecdh_helper - Ensure 'len >= secret.len' in decode_key()
authorDaniele Alessandrelli <daniele.alessandrelli@intel.com>
Wed, 3 Feb 2021 11:28:37 +0000 (11:28 +0000)
committerAndrea Righi <andrea.righi@canonical.com>
Mon, 15 Mar 2021 14:09:12 +0000 (15:09 +0100)
commitd0370cd47fa39fa162ece6cd81d8f96b5772db36
treeb89a1fa15f255054614eb7dfef39a146b7d8ad9b
parentc25fb98c9332ef009037d8e68e73e7e8d97c4a8f
crypto: ecdh_helper - Ensure 'len >= secret.len' in decode_key()

[ Upstream commit a53ab94eb6850c3657392e2d2ce9b38c387a2633 ]

The length ('len' parameter) passed to crypto_ecdh_decode_key() is never
checked against the length encoded in the passed buffer ('buf'
parameter). This could lead to an out-of-bounds access when the passed
length is less than the encoded length.

Add a check to prevent that.

Fixes: 3c4b23901a0c7 ("crypto: ecdh - Add ECDH software support")
Signed-off-by: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
crypto/ecdh_helper.c