From: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
To: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Cc: Ard Biesheuvel <ardb@kernel.org>,
linux-kernel@vger.kernel.org, linux-efi@vger.kernel.org
Subject: Re: [PATCH v2 2/2] efi/libstub: Add get_event_log() support for CC platforms
Date: Sun, 18 Feb 2024 23:34:23 -0800 [thread overview]
Message-ID: <7feb889f-f78e-4caa-a2f4-9d41acf6ca76@linux.intel.com> (raw)
In-Reply-To: <CAC_iWjJ_TS66KG7uGOQFiKGfZNKjnod6u7zua4LVK-EJHEUv8w@mail.gmail.com>
Hi Ilias,
On 2/18/24 11:03 PM, Ilias Apalodimas wrote:
> On Thu, 15 Feb 2024 at 05:02, Kuppuswamy Sathyanarayanan
> <sathyanarayanan.kuppuswamy@linux.intel.com> wrote:
>> To allow event log info access after boot, EFI boot stub extracts
>> the event log information and installs it in an EFI configuration
>> table. Currently, EFI boot stub only supports installation of event
>> log only for TPM 1.2 and TPM 2.0 protocols. Extend the same support
>> for CC protocol. Since CC platform also uses TCG2 format, reuse TPM2
>> support code as much as possible.
>>
>> Link: https://uefi.org/specs/UEFI/2.10/38_Confidential_Computing.html#efi-cc-measurement-protocol [1]
>> Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
> [...]
>
>> +void efi_retrieve_eventlog(void)
>> +{
>> + efi_physical_addr_t log_location = 0, log_last_entry = 0;
>> + efi_guid_t cc_guid = EFI_CC_MEASUREMENT_PROTOCOL_GUID;
>> + efi_guid_t tpm2_guid = EFI_TCG2_PROTOCOL_GUID;
>> + int version = EFI_TCG2_EVENT_LOG_FORMAT_TCG_2;
>> + efi_tcg2_protocol_t *tpm2 = NULL;
>> + efi_cc_protocol_t *cc = NULL;
>> + efi_bool_t truncated;
>> + efi_status_t status;
>> +
>> + status = efi_bs_call(locate_protocol, &tpm2_guid, NULL, (void **)&tpm2);
>> + if (status == EFI_SUCCESS) {
>> + status = efi_call_proto(tpm2, get_event_log, version, &log_location,
>> + &log_last_entry, &truncated);
>> +
>> + if (status != EFI_SUCCESS || !log_location) {
>> + version = EFI_TCG2_EVENT_LOG_FORMAT_TCG_1_2;
>> + status = efi_call_proto(tpm2, get_event_log, version,
>> + &log_location, &log_last_entry,
>> + &truncated);
>> + if (status != EFI_SUCCESS || !log_location)
>> + return;
>> + }
>> +
>> + efi_retrieve_tcg2_eventlog(version, log_location, log_last_entry,
>> + truncated);
>> + return;
>> + }
>> +
>> + status = efi_bs_call(locate_protocol, &cc_guid, NULL, (void **)&cc);
>> + if (status == EFI_SUCCESS) {
>> + version = EFI_CC_EVENT_LOG_FORMAT_TCG_2;
>> + status = efi_call_proto(cc, get_event_log, version, &log_location,
>> + &log_last_entry, &truncated);
>> + if (status != EFI_SUCCESS || !log_location)
>> + return;
>> +
>> + efi_retrieve_tcg2_eventlog(version, log_location, log_last_entry,
>> + truncated);
>> + return;
>> + }
>> +}
> [...]
>
> I haven't looked into CC measurements much, but do we always want to
> prioritize the tcg2 protocol? IOW if you have firmware that implements
> both, shouldn't we prefer the CC protocol for VMs?
According the UEFI specification, sec "Conidential computing", if a firmware implements
the TPM, then it should be used and CC interfaces should not be published. So I think
we should check for TPM first, if it does not exist then try for CC.
https://uefi.org/specs/UEFI/2.10/38_Confidential_Computing.html#confidential-computing
> Thanks
> /Ilias
--
Sathyanarayanan Kuppuswamy
Linux Kernel Developer
next prev parent reply other threads:[~2024-02-19 7:34 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-15 3:00 [PATCH v2 0/2] Add measurement and event log " Kuppuswamy Sathyanarayanan
2024-02-15 3:00 ` [PATCH v2 1/2] efi/libstub: Add Confidential Computing (CC) measurement support Kuppuswamy Sathyanarayanan
2024-02-19 6:38 ` Ilias Apalodimas
2024-02-24 7:37 ` Kuppuswamy Sathyanarayanan
2024-02-27 13:22 ` Ilias Apalodimas
2024-03-04 10:41 ` Ard Biesheuvel
2024-02-15 3:00 ` [PATCH v2 2/2] efi/libstub: Add get_event_log() support for CC platforms Kuppuswamy Sathyanarayanan
2024-02-19 7:03 ` Ilias Apalodimas
2024-02-19 7:34 ` Kuppuswamy Sathyanarayanan [this message]
2024-02-23 13:24 ` Ilias Apalodimas
2024-02-24 7:31 ` Kuppuswamy Sathyanarayanan
2024-02-27 13:19 ` Ilias Apalodimas
2024-02-29 3:23 ` Kuppuswamy Sathyanarayanan
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=7feb889f-f78e-4caa-a2f4-9d41acf6ca76@linux.intel.com \
--to=sathyanarayanan.kuppuswamy@linux.intel.com \
--cc=ardb@kernel.org \
--cc=ilias.apalodimas@linaro.org \
--cc=linux-efi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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
Powered by JetHome