All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] efi_loader: fix possible buffer overflow
@ 2021-04-14  2:55 Masahisa Kojima
  2021-04-14  5:43 ` Ilias Apalodimas
  0 siblings, 1 reply; 3+ messages in thread
From: Masahisa Kojima @ 2021-04-14  2:55 UTC (permalink / raw
  To: u-boot

Variable "final" will have SHA512 digest, but currently
the array size is not sufficient. Let's fix it.

Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
---
 lib/efi_loader/efi_tcg2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/efi_loader/efi_tcg2.c b/lib/efi_loader/efi_tcg2.c
index ed86a220fb..d5eca68769 100644
--- a/lib/efi_loader/efi_tcg2.c
+++ b/lib/efi_loader/efi_tcg2.c
@@ -515,7 +515,7 @@ static efi_status_t tcg2_create_digest(const u8 *input, u32 length,
 	sha1_context ctx;
 	sha256_context ctx_256;
 	sha512_context ctx_512;
-	u8 final[TPM2_ALG_SHA512];
+	u8 final[TPM2_SHA512_DIGEST_SIZE];
 	efi_status_t ret;
 	u32 active;
 	int i;
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] efi_loader: fix possible buffer overflow
  2021-04-14  2:55 [PATCH] efi_loader: fix possible buffer overflow Masahisa Kojima
@ 2021-04-14  5:43 ` Ilias Apalodimas
  2021-04-14 10:49   ` Heinrich Schuchardt
  0 siblings, 1 reply; 3+ messages in thread
From: Ilias Apalodimas @ 2021-04-14  5:43 UTC (permalink / raw
  To: u-boot

On Wed, Apr 14, 2021 at 11:55:49AM +0900, Masahisa Kojima wrote:
> Variable "final" will have SHA512 digest, but currently
> the array size is not sufficient. Let's fix it.
> 
> Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
> ---
>  lib/efi_loader/efi_tcg2.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/efi_loader/efi_tcg2.c b/lib/efi_loader/efi_tcg2.c
> index ed86a220fb..d5eca68769 100644
> --- a/lib/efi_loader/efi_tcg2.c
> +++ b/lib/efi_loader/efi_tcg2.c
> @@ -515,7 +515,7 @@ static efi_status_t tcg2_create_digest(const u8 *input, u32 length,
>  	sha1_context ctx;
>  	sha256_context ctx_256;
>  	sha512_context ctx_512;
> -	u8 final[TPM2_ALG_SHA512];
> +	u8 final[TPM2_SHA512_DIGEST_SIZE];
>  	efi_status_t ret;
>  	u32 active;
>  	int i;
> -- 
> 2.17.1
> 

Thanks!

Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] efi_loader: fix possible buffer overflow
  2021-04-14  5:43 ` Ilias Apalodimas
@ 2021-04-14 10:49   ` Heinrich Schuchardt
  0 siblings, 0 replies; 3+ messages in thread
From: Heinrich Schuchardt @ 2021-04-14 10:49 UTC (permalink / raw
  To: u-boot

On 4/14/21 7:43 AM, Ilias Apalodimas wrote:
> On Wed, Apr 14, 2021 at 11:55:49AM +0900, Masahisa Kojima wrote:
>> Variable "final" will have SHA512 digest, but currently
>> the array size is not sufficient. Let's fix it.
>>
>> Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
>> ---
>>   lib/efi_loader/efi_tcg2.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/lib/efi_loader/efi_tcg2.c b/lib/efi_loader/efi_tcg2.c
>> index ed86a220fb..d5eca68769 100644
>> --- a/lib/efi_loader/efi_tcg2.c
>> +++ b/lib/efi_loader/efi_tcg2.c
>> @@ -515,7 +515,7 @@ static efi_status_t tcg2_create_digest(const u8 *input, u32 length,
>>   	sha1_context ctx;
>>   	sha256_context ctx_256;
>>   	sha512_context ctx_512;
>> -	u8 final[TPM2_ALG_SHA512];
>> +	u8 final[TPM2_SHA512_DIGEST_SIZE];
>>   	efi_status_t ret;
>>   	u32 active;
>>   	int i;
>> --
>> 2.17.1
>>
>
> Thanks!
>
> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
>

I have queued the patch for my next pull request.

Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-04-14 10:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-14  2:55 [PATCH] efi_loader: fix possible buffer overflow Masahisa Kojima
2021-04-14  5:43 ` Ilias Apalodimas
2021-04-14 10:49   ` Heinrich Schuchardt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.