From: Gregory Price <gourry@gourry.net>
To: Usama Arif <usamaarif642@gmail.com>
Cc: ardb@kernel.org, linux-efi@vger.kernel.org,
linux-kernel@vger.kernel.org, leitao@debian.org
Subject: Re: [PATCH] efi: reserve memory for tpm_log only if TPM final events table is valid
Date: Fri, 30 Aug 2024 17:58:54 -0400 [thread overview]
Message-ID: <ZtJAnkd3Rkh5Amfb@PC2K9PVX.TheFacebook.com> (raw)
In-Reply-To: <1a31390d-f452-4d53-84a9-b9fb2af71e4c@gmail.com>
On Fri, Aug 30, 2024 at 10:52:48PM +0100, Usama Arif wrote:
>
>
> On 30/08/2024 17:49, Usama Arif wrote:
> >
> >
> > On 30/08/2024 17:42, Gregory Price wrote:
> >> On Fri, Aug 30, 2024 at 10:28:52PM +0100, Usama Arif wrote:
> >>> If efi.tpm_log is corrupted, log_tbl->size can be garbage (and
> >>> negative). This can result in a large memblock reservation, resulting
> >>> in the kernel booting without sufficient memory. Move the memblock
> >>> reservation after log_tbl->version check, and check the value of
> >>> both tbl_size and memblock_reserve.
> >>>
> >>> Signed-off-by: Usama Arif <usamaarif642@gmail.com>
> >>> ---
> >>> drivers/firmware/efi/tpm.c | 16 +++++++++++++---
> >>> 1 file changed, 13 insertions(+), 3 deletions(-)
> >>>
> >>> diff --git a/drivers/firmware/efi/tpm.c b/drivers/firmware/efi/tpm.c
> >>> index e8d69bd548f3..cfc6a065f441 100644
> >>> --- a/drivers/firmware/efi/tpm.c
> >>> +++ b/drivers/firmware/efi/tpm.c
> >>> @@ -59,9 +59,6 @@ int __init efi_tpm_eventlog_init(void)
> >>> return -ENOMEM;
> >>> }
> >>>
> >>> - tbl_size = sizeof(*log_tbl) + log_tbl->size;
> >>> - memblock_reserve(efi.tpm_log, tbl_size);
> >>> -
> >>> if (efi.tpm_final_log == EFI_INVALID_TABLE_ADDR) {
> >>> pr_info("TPM Final Events table not present\n");
> >>> goto out;
> >>
> >> The final event table is not present in TCG 1_2 format, but the
> >> tpm log still needs to be mapped. So this change is incorrect for
> >> v1_2.
> >
> > hmm so we have
> >
> > if (efi.tpm_final_log == EFI_INVALID_TABLE_ADDR) {
> > pr_info("TPM Final Events table not present\n");
> > goto out;
> > } else if (log_tbl->version != EFI_TCG2_EVENT_LOG_FORMAT_TCG_2) {
> > pr_warn(FW_BUG "TPM Final Events table invalid\n");
> > goto out;
> > }
> >
> > If the format is TCG 1_2, then log_tbl is not used?
> >
>
> Ah its the case that log_tbl->size will be valid, even if its TCG 2.
> Got it, Thanks!
No, not necessarily. The corruption issue is entirely separate from the
patches here. size can technically be 0xffffffff and treated as valid
because as far as I can see the spec does not define a maximum size.
the tl;dr here is that the above checks on tpm_final_log and log_tbl->version
gate mapping/operating on the final log - but do not have anything to
say about the event log.
There isn't really a good sanity check for whether or not to memblock_reserve
the log. Possibly you add a LOG_FORMAT_MAX and check if version >= MAX,
but again that should be separate from the change that checks the return
value of the memblock_reserve call.
~Gregory
next prev parent reply other threads:[~2024-08-30 21:59 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-30 21:28 [PATCH] efi: reserve memory for tpm_log only if TPM final events table is valid Usama Arif
2024-08-30 21:42 ` Gregory Price
2024-08-30 21:49 ` Usama Arif
2024-08-30 21:52 ` Usama Arif
2024-08-30 21:58 ` Gregory Price [this message]
2024-08-30 22:24 ` Usama Arif
2024-08-30 21:54 ` Gregory Price
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZtJAnkd3Rkh5Amfb@PC2K9PVX.TheFacebook.com \
--to=gourry@gourry.net \
--cc=ardb@kernel.org \
--cc=leitao@debian.org \
--cc=linux-efi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=usamaarif642@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox