public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Sami Mujawar" <sami.mujawar@arm.com>
To: "Yao, Jiewen" <jiewen.yao@intel.com>,
	"Xu, Min M" <min.m.xu@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Kinney, Michael D" <michael.d.kinney@intel.com>,
	"Gao, Liming" <gaoliming@byosoft.com.cn>,
	"Liu, Zhiguang" <zhiguang.liu@intel.com>,
	"Wang, Jian J" <jian.j.wang@intel.com>,
	"Lu, Ken" <ken.lu@intel.com>, Gerd Hoffmann <kraxel@redhat.com>,
	nd <nd@arm.com>,
	Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud@arm.com>,
	Thanu Rangarajan <Thanu.Rangarajan@arm.com>
Subject: Re: [PATCH 5/8] MdePkg: Define CC Measure EventLog ACPI Table
Date: Thu, 17 Mar 2022 13:10:16 +0000	[thread overview]
Message-ID: <0B31FA9E-11F3-46AF-BA4D-32D9AD228FE0@arm.com> (raw)
In-Reply-To: <CF32B16E-2629-4E0C-A0DF-8724310AC628@arm.com>

Hi Jiewen,

I was informed there is an ASWG ECR https://mantis.uefi.org/mantis/view.php?id=2177 for TDEL. I can see the content has been approved for ACPI 6.5.

Do you plan to update this ECR to reflect the changes for CCEL or this would be a separate request?

Regards,

Sami Mujawar

On 10/03/2022, 10:27, "Sami Mujawar" <Sami.Mujawar@arm.com> wrote:

    Hi Jiewen,

    Please find my response inline marked [SAMI].

    Regards,

    Sami Mujawar

    On 10/03/2022, 05:49, "Yao, Jiewen" <jiewen.yao@intel.com> wrote:

        HI Sami
        I think it is OK to update signature to `CCEL`. That means it will be applicable for other CC, right?
    [SAMI] Yes, the same table can then be used by other CC. 

        Then, I recommend we add CcType there.

        typedef struct {
          EFI_ACPI_DESCRIPTION_HEADER    Header;
          EFI_CC_TYPE               CcType; <== new field.
          UINT16                         Rsvd;
          UINT64                         Laml;
          UINT64                         Lasa;
        } EFI_CC_EVENTLOG_ACPI_TABLE;

        Do you agree?
    [SAMI] Agree, the above suggestion looks good to me. 

        Thank you
        Yao Jiewen

        > -----Original Message-----
        > From: Sami Mujawar <sami.mujawar@arm.com>
        > Sent: Wednesday, March 9, 2022 11:35 PM
        > To: Xu, Min M <min.m.xu@intel.com>; devel@edk2.groups.io
        > Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming
        > <gaoliming@byosoft.com.cn>; Liu, Zhiguang <zhiguang.liu@intel.com>; Yao,
        > Jiewen <jiewen.yao@intel.com>; Wang, Jian J <jian.j.wang@intel.com>; Lu, Ken
        > <ken.lu@intel.com>; Gerd Hoffmann <kraxel@redhat.com>; nd <nd@arm.com>;
        > Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud@arm.com>;
        > thanu.rangarajan@arm.com
        > Subject: Re: [PATCH 5/8] MdePkg: Define CC Measure EventLog ACPI Table
        > 
        > Hi Min,
        > 
        > Thank you for this patch.
        > 
        > Please find my response inline marked [SAMI].
        > 
        > Regards,
        > 
        > Sami Mujawar
        > 
        > 
        > On 02/03/2022 12:28 AM, Min Xu wrote:
        > > RFC: https://bugzilla.tianocore.org/show_bug.cgi?id=3853
        > >
        > > TDVF set up an ACPI table (EFI_CC_EVENTLOG_ACPI_TABLE) to pass the
        > > event-log information. The event log created by the TD owner contains
        > > the hashes to reconstruct the MRTD and RTMR registers.
        > >
        > > Please refer to Sec 4.3.3 in blow link:
        > > https://www.intel.com/content/dam/develop/external/us/en/documents/
        > > intel-tdx-guest-hypervisor-communication-interface-1.0-344426-002.pdf
        > >
        > > Cc: Michael D Kinney <michael.d.kinney@intel.com>
        > > Cc: Liming Gao <gaoliming@byosoft.com.cn>
        > > Cc: Zhiguang Liu <zhiguang.liu@intel.com>
        > > Cc: Jiewen Yao <jiewen.yao@intel.com>
        > > Cc: Jian J Wang <jian.j.wang@intel.com>
        > > Cc: Ken Lu <ken.lu@intel.com>
        > > Cc: Sami Mujawar <sami.mujawar@arm.com>
        > > Cc: Gerd Hoffmann <kraxel@redhat.com>
        > > Signed-off-by: Min Xu <min.m.xu@intel.com>
        > > ---
        > >   MdePkg/Include/Protocol/CcMeasurement.h | 20 ++++++++++++++++++++
        > >   1 file changed, 20 insertions(+)
        > >
        > > diff --git a/MdePkg/Include/Protocol/CcMeasurement.h
        > b/MdePkg/Include/Protocol/CcMeasurement.h
        > > index 83eaafaf10a6..86de226c1d82 100644
        > > --- a/MdePkg/Include/Protocol/CcMeasurement.h
        > > +++ b/MdePkg/Include/Protocol/CcMeasurement.h
        > > @@ -307,4 +307,24 @@ extern EFI_GUID  gEfiCcFinalEventsTableGuid;
        > >
        > >   extern EFI_GUID  gCcEventEntryHobGuid;
        > >
        > > +//
        > > +// Define the CC Measure EventLog ACPI Table
        > > +//
        > > +#pragma pack(1)
        > > +
        > > +typedef struct {
        > > +  EFI_ACPI_DESCRIPTION_HEADER    Header;
        > > +  UINT32                         Rsvd;
        > > +  UINT64                         Laml;
        > > +  UINT64                         Lasa;
        > > +} EFI_CC_EVENTLOG_ACPI_TABLE;
        > > +
        > > +#pragma pack()
        > > +
        > > +//
        > > +// Define the signature and revision of CC Measurement EventLog ACPI Table
        > for Td guest
        > > +//
        > > +#define EFI_CC_EVENTLOG_ACPI_TABLE_TD_SIGNATURE  SIGNATURE_32('T',
        > 'D', 'E', 'L')
        > > +#define EFI_CC_EVENTLOG_ACPI_TABLE_TD_REVISION   1
        > [SAMI] I can see that the above macros have the _TD_ infix. Is the
        > intention here that each architecture shall define its own signature and
        > revision?
        > Would it be possible to make the signature generic across architectures,
        > e.g. "SIGNATURE_32('C', 'C', 'E', 'L')" ?
        > [/SAMI]
        > > +
        > >   #endif




  reply	other threads:[~2022-03-17 13:10 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-02  0:27 [PATCH 0/8] Enable RTMR based measurement and measure boot for Td guest Min Xu
2022-03-02  0:28 ` [PATCH 1/8] Security: Add HashLibBaseCryptoRouterTdx Min Xu
2022-03-02  0:28 ` [PATCH 2/8] CryptoPkg: Add SecCryptLib Min Xu
2022-03-02  0:28 ` [PATCH 3/8] MdePkg: Add definition of EFI_CC_EVENT_HOB_GUID Min Xu
2022-03-02  1:52   ` 回复: " gaoliming
2022-03-03  7:13     ` [edk2-devel] " Min Xu
2022-03-02  0:28 ` [PATCH 4/8] OvmfPkg/IntelTdx: Measure Td HobList and Configuration FV Min Xu
2022-03-02  0:28 ` [PATCH 5/8] MdePkg: Define CC Measure EventLog ACPI Table Min Xu
2022-03-09 15:35   ` Sami Mujawar
2022-03-10  5:48     ` Yao, Jiewen
2022-03-10 10:27       ` Sami Mujawar
2022-03-17 13:10         ` Sami Mujawar [this message]
2022-03-17 13:23           ` Yao, Jiewen
2022-03-17 13:25             ` Samer El-Haj-Mahmoud
2022-03-17 13:33               ` [edk2-devel] " Yao, Jiewen
2022-03-02  0:28 ` [PATCH 6/8] OvmfPkg: Add PCDs for LAML/LASA field in CC EVENTLOG ACPI table Min Xu
2022-03-02  0:28 ` [PATCH 7/8] OvmfPkg/IntelTdx: Add TdTcg2Dxe Min Xu
2022-03-02  0:28 ` [PATCH 8/8] OvmfPkg/IntelTdx: Enable RTMR based measurement and measure boot Min Xu

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-list 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=0B31FA9E-11F3-46AF-BA4D-32D9AD228FE0@arm.com \
    --to=devel@edk2.groups.io \
    /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