* [PATCH ] ima: fix buffer overrun in ima_eventdigest_init_common
@ 2024-06-20 19:46 Samasth Norway Ananda
2024-06-21 18:11 ` Enrico Bravi
2024-06-21 22:44 ` Mimi Zohar
0 siblings, 2 replies; 4+ messages in thread
From: Samasth Norway Ananda @ 2024-06-20 19:46 UTC (permalink / raw)
To: zohar, roberto.sassu, dmitry.kasatkin
Cc: eric.snowberg, linux-integrity, samasth.norway.ananda
Function ima_eventdigest_init() can call ima_eventdigest_init_common()
with HASH_ALGO__LAST which is then used to access the array
hash_digest_size[] leading to buffer overrun. Have a conditional
statement to handle this.
Fixes: 9fab303a2cb3 ("ima: fix violation measurement list record")
Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com>
---
security/integrity/ima/ima_template_lib.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/security/integrity/ima/ima_template_lib.c b/security/integrity/ima/ima_template_lib.c
index 4183956c53af..14c000fe8312 100644
--- a/security/integrity/ima/ima_template_lib.c
+++ b/security/integrity/ima/ima_template_lib.c
@@ -320,13 +320,17 @@ static int ima_eventdigest_init_common(const u8 *digest, u32 digestsize,
if (digest)
memcpy(buffer + offset, digest, digestsize);
- else
+ else {
/*
* If digest is NULL, the event being recorded is a violation.
* Make room for the digest by increasing the offset by the
* hash algorithm digest size.
*/
- offset += hash_digest_size[hash_algo];
+ if (hash_algo < HASH_ALGO__LAST)
+ offset += hash_digest_size[hash_algo];
+ else
+ offset += IMA_DIGEST_SIZE;
+ }
return ima_write_template_field_data(buffer, offset + digestsize,
fmt, field_data);
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH ] ima: fix buffer overrun in ima_eventdigest_init_common
2024-06-20 19:46 [PATCH ] ima: fix buffer overrun in ima_eventdigest_init_common Samasth Norway Ananda
@ 2024-06-21 18:11 ` Enrico Bravi
2024-06-21 22:44 ` Mimi Zohar
1 sibling, 0 replies; 4+ messages in thread
From: Enrico Bravi @ 2024-06-21 18:11 UTC (permalink / raw)
To: Samasth Norway Ananda, zohar, roberto.sassu, dmitry.kasatkin
Cc: eric.snowberg, linux-integrity
On 6/20/2024 9:46 PM, Samasth Norway Ananda wrote:
> Function ima_eventdigest_init() can call ima_eventdigest_init_common()
> with HASH_ALGO__LAST which is then used to access the array
> hash_digest_size[] leading to buffer overrun. Have a conditional
> statement to handle this.
>
> Fixes: 9fab303a2cb3 ("ima: fix violation measurement list record")
> Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com>
Tested-by: Enrico Bravi (PhD at polito.it) <enrico.bravi@huawei.com>
> ---
> security/integrity/ima/ima_template_lib.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/security/integrity/ima/ima_template_lib.c b/security/integrity/ima/ima_template_lib.c
> index 4183956c53af..14c000fe8312 100644
> --- a/security/integrity/ima/ima_template_lib.c
> +++ b/security/integrity/ima/ima_template_lib.c
> @@ -320,13 +320,17 @@ static int ima_eventdigest_init_common(const u8 *digest, u32 digestsize,
>
> if (digest)
> memcpy(buffer + offset, digest, digestsize);
> - else
> + else {
> /*
> * If digest is NULL, the event being recorded is a violation.
> * Make room for the digest by increasing the offset by the
> * hash algorithm digest size.
> */
> - offset += hash_digest_size[hash_algo];
> + if (hash_algo < HASH_ALGO__LAST)
> + offset += hash_digest_size[hash_algo];
> + else
> + offset += IMA_DIGEST_SIZE;
> + }
>
> return ima_write_template_field_data(buffer, offset + digestsize,
> fmt, field_data);
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH ] ima: fix buffer overrun in ima_eventdigest_init_common
2024-06-20 19:46 [PATCH ] ima: fix buffer overrun in ima_eventdigest_init_common Samasth Norway Ananda
2024-06-21 18:11 ` Enrico Bravi
@ 2024-06-21 22:44 ` Mimi Zohar
2024-06-21 22:56 ` samasth.norway.ananda
1 sibling, 1 reply; 4+ messages in thread
From: Mimi Zohar @ 2024-06-21 22:44 UTC (permalink / raw)
To: Samasth Norway Ananda, roberto.sassu, dmitry.kasatkin
Cc: eric.snowberg, linux-integrity
Hi Samasth,
On Thu, 2024-06-20 at 12:46 -0700, Samasth Norway Ananda wrote:
> Function ima_eventdigest_init() can call ima_eventdigest_init_common()
> with HASH_ALGO__LAST which is then used to access the array
> hash_digest_size[] leading to buffer overrun. Have a conditional
> statement to handle this.
The original 'ima' template ("d|n") digest is not prefixed with the digest
algorithm, since it is hard coded to sha1. ima_eventdigest_init() intentionally
calls ima_eventdigest_init_common() with HASH_ALGO__LAST. To avoid ...
>
> Fixes: 9fab303a2cb3 ("ima: fix violation measurement list record")
> Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com>
> ---
> security/integrity/ima/ima_template_lib.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/security/integrity/ima/ima_template_lib.c b/security/integrity/ima/ima_template_lib.c
> index 4183956c53af..14c000fe8312 100644
> --- a/security/integrity/ima/ima_template_lib.c
> +++ b/security/integrity/ima/ima_template_lib.c
> @@ -320,13 +320,17 @@ static int ima_eventdigest_init_common(const u8 *digest, u32 digestsize,
>
> if (digest)
Please add a brace after "digest" and before "else".
Refer to the section titled "3) Placing Braces and Spaces" in "
https://www.kernel.org/doc/html/v4.10/process/coding-style.html.
> memcpy(buffer + offset, digest, digestsize);
> - else
> + else {
> /*
> * If digest is NULL, the event being recorded is a violation.
> * Make room for the digest by increasing the offset by the
> * hash algorithm digest size.
> */
Please update the comment to reflect the case when the hash algorithm isn't
specified.
> - offset += hash_digest_size[hash_algo];
> + if (hash_algo < HASH_ALGO__LAST)
> + offset += hash_digest_size[hash_algo];
> + else
> + offset += IMA_DIGEST_SIZE;
> + }
>
> return ima_write_template_field_data(buffer, offset + digestsize,
> fmt, field_data);
Please fix the other scripts/checkpatch.pl complaints.
thanks,
Mimi
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH ] ima: fix buffer overrun in ima_eventdigest_init_common
2024-06-21 22:44 ` Mimi Zohar
@ 2024-06-21 22:56 ` samasth.norway.ananda
0 siblings, 0 replies; 4+ messages in thread
From: samasth.norway.ananda @ 2024-06-21 22:56 UTC (permalink / raw)
To: Mimi Zohar, roberto.sassu, dmitry.kasatkin; +Cc: eric.snowberg, linux-integrity
On 6/21/24 3:44 PM, Mimi Zohar wrote:
> Hi Samasth,
>
> On Thu, 2024-06-20 at 12:46 -0700, Samasth Norway Ananda wrote:
>> Function ima_eventdigest_init() can call ima_eventdigest_init_common()
>> with HASH_ALGO__LAST which is then used to access the array
>> hash_digest_size[] leading to buffer overrun. Have a conditional
>> statement to handle this.
>
> The original 'ima' template ("d|n") digest is not prefixed with the digest
> algorithm, since it is hard coded to sha1. ima_eventdigest_init() intentionally
> calls ima_eventdigest_init_common() with HASH_ALGO__LAST. To avoid ...
>
>>
>> Fixes: 9fab303a2cb3 ("ima: fix violation measurement list record")
>> Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com>
>> ---
>> security/integrity/ima/ima_template_lib.c | 8 ++++++--
>> 1 file changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/security/integrity/ima/ima_template_lib.c b/security/integrity/ima/ima_template_lib.c
>> index 4183956c53af..14c000fe8312 100644
>> --- a/security/integrity/ima/ima_template_lib.c
>> +++ b/security/integrity/ima/ima_template_lib.c
>> @@ -320,13 +320,17 @@ static int ima_eventdigest_init_common(const u8 *digest, u32 digestsize,
>>
>> if (digest)
>
> Please add a brace after "digest" and before "else".
>
> Refer to the section titled "3) Placing Braces and Spaces" in "
> https://www.kernel.org/doc/html/v4.10/process/coding-style.html.
>
>
>> memcpy(buffer + offset, digest, digestsize);
>> - else
>> + else {
>> /*
>> * If digest is NULL, the event being recorded is a violation.
>> * Make room for the digest by increasing the offset by the
>> * hash algorithm digest size.
>> */
>
> Please update the comment to reflect the case when the hash algorithm isn't
> specified.
>
>> - offset += hash_digest_size[hash_algo];
>> + if (hash_algo < HASH_ALGO__LAST)
>> + offset += hash_digest_size[hash_algo];
>> + else
>> + offset += IMA_DIGEST_SIZE;
>> + }
>>
>> return ima_write_template_field_data(buffer, offset + digestsize,
>> fmt, field_data);
>
> Please fix the other scripts/checkpatch.pl complaints.
Thanks for correcting me Mimi. I should have checked that before
sending. I will make the changes and send a v2 of the patch.
>
> thanks,
>
> Mimi
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-21 22:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-20 19:46 [PATCH ] ima: fix buffer overrun in ima_eventdigest_init_common Samasth Norway Ananda
2024-06-21 18:11 ` Enrico Bravi
2024-06-21 22:44 ` Mimi Zohar
2024-06-21 22:56 ` samasth.norway.ananda
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox