42 lines
1.5 KiB
Diff
42 lines
1.5 KiB
Diff
From 0ffa81ce9e0395b113ca3903a064ff7bcdfb4454 Mon Sep 17 00:00:00 2001
|
|
From: Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
|
|
Date: Mon, 23 Mar 2020 19:52:51 +0800
|
|
Subject: [PATCH] efi/tpm: Fix memory leak in grub_tpm1/2_log_event()
|
|
|
|
The memory requested for the event is not released here,
|
|
causing memory leaks. This patch fixes this problem.
|
|
|
|
Reference: http://git.savannah.gnu.org/cgit/grub.git/commit/?id=800de4a1d0e72022694f8773ec5fe7dca8e34ae6
|
|
|
|
Signed-off-by: Jia Zhang <zhang.jia@linux.alibaba.com>
|
|
Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
|
|
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
|
|
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
|
|
---
|
|
grub-core/commands/efi/tpm.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/grub-core/commands/efi/tpm.c b/grub-core/commands/efi/tpm.c
|
|
index 32909c1..6a6cd0d 100644
|
|
--- a/grub-core/commands/efi/tpm.c
|
|
+++ b/grub-core/commands/efi/tpm.c
|
|
@@ -247,6 +247,7 @@ grub_tpm1_log_event (grub_efi_handle_t tpm_handle, unsigned char *buf,
|
|
algorithm = TCG_ALG_SHA;
|
|
status = efi_call_7 (tpm->log_extend_event, tpm, (grub_addr_t) buf, (grub_uint64_t) size,
|
|
algorithm, event, &eventnum, &lastevent);
|
|
+ grub_free (event);
|
|
|
|
switch (status)
|
|
{
|
|
@@ -297,6 +298,7 @@ grub_tpm2_log_event (grub_efi_handle_t tpm_handle, unsigned char *buf,
|
|
|
|
status = efi_call_5 (tpm->hash_log_extend_event, tpm, 0, (grub_addr_t) buf,
|
|
(grub_uint64_t) size, event);
|
|
+ grub_free (event);
|
|
|
|
switch (status)
|
|
{
|
|
--
|
|
2.19.1
|
|
|