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)
committerHerbert Xu <herbert@gondor.apana.org.au>
Wed, 10 Feb 2021 06:55:57 +0000 (17:55 +1100)
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>
crypto/ecdh_helper.c

index 66fcb2ea815445522ca9df6a94cfb8ddb7d919c4..fca63b559f655266fab1ff432dda85b21225c906 100644 (file)
@@ -67,6 +67,9 @@ int crypto_ecdh_decode_key(const char *buf, unsigned int len,
        if (secret.type != CRYPTO_KPP_SECRET_TYPE_ECDH)
                return -EINVAL;
 
+       if (unlikely(len < secret.len))
+               return -EINVAL;
+
        ptr = ecdh_unpack_data(&params->curve_id, ptr, sizeof(params->curve_id));
        ptr = ecdh_unpack_data(&params->key_size, ptr, sizeof(params->key_size));
        if (secret.len != crypto_ecdh_key_len(params))