public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Sami Mujawar" <sami.mujawar@arm.com>
To: Stefan Berger <stefanb@linux.ibm.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "marcandre.lureau@redhat.com" <marcandre.lureau@redhat.com>,
	"kraxel@redhat.com" <kraxel@redhat.com>,
	"jiewen.yao@intel.com" <jiewen.yao@intel.com>,
	"ardb+tianocore@kernel.org" <ardb+tianocore@kernel.org>,
	"leif@nuviainc.com" <leif@nuviainc.com>,
	Stefan Berger <stefanb@linux.vnet.ibm.com>, nd <nd@arm.com>
Subject: Re: [PATCH v3 1/3] ArmVirtPkg/TPM: Add a NULL implementation of TpmPlatformHierarchyLib
Date: Thu, 23 Sep 2021 14:49:11 +0000	[thread overview]
Message-ID: <A408B437-41DB-458B-B532-DC4DD912FF52@arm.com> (raw)
In-Reply-To: <20210922163143.3069058-2-stefanb@linux.ibm.com>

Hi Stefan,

This patch looks good to me.

Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>

Regards,

Sami Mujawar

On 22/09/2021, 17:32, "Stefan Berger" <stefanb@linux.ibm.com> wrote:

    From: Stefan Berger <stefanb@linux.vnet.ibm.com>

    Add a NULL implementation of the library class TpmPlatformHierarchyLib.

    Link: https://bugzilla.tianocore.org/show_bug.cgi?id=3510
    Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
    Cc: Leif Lindholm <leif@nuviainc.com>
    Cc: Sami Mujawar <sami.mujawar@arm.com>
    Cc: Gerd Hoffmann <kraxel@redhat.com>
    Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
    ---
     .../PeiDxeTpmPlatformHierarchyLib.c           | 22 +++++++++++++
     .../PeiDxeTpmPlatformHierarchyLib.inf         | 31 +++++++++++++++++++
     SecurityPkg/SecurityPkg.dsc                   |  1 +
     3 files changed, 54 insertions(+)
     create mode 100644 SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.c
     create mode 100644 SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.inf

    diff --git a/SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.c b/SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.c
    new file mode 100644
    index 0000000000..dfc8863830
    --- /dev/null
    +++ b/SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.c
    @@ -0,0 +1,22 @@
    +/** @file

    +    Null TPM Platform Hierarchy configuration library.

    +

    +    This library provides stub functions for customizing the TPM's Platform Hierarchy.

    +

    +    Copyright (c) 2021, IBM Corporation.

    +    SPDX-License-Identifier: BSD-2-Clause-Patent

    +

    +**/

    +

    +#include <Uefi.h>

    +

    +/**

    +  A NULL implementation of ConfigureTpmPlatformHierarchy.

    +**/

    +VOID

    +EFIAPI

    +ConfigureTpmPlatformHierarchy (

    +  )

    +{

    +  /* do nothing */

    +}

    diff --git a/SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.inf b/SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.inf
    new file mode 100644
    index 0000000000..1b1e9ad592
    --- /dev/null
    +++ b/SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.inf
    @@ -0,0 +1,31 @@
    +### @file

    +#   NULL TPM Platform Hierarchy configuration library.

    +#

    +#   This library provides functions for customizing the TPM's Platform Hierarchy

    +#   Authorization Value (platformAuth) and Platform Hierarchy Authorization

    +#   Policy (platformPolicy) can be defined through this function.

    +#

    +# Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>

    +# Copyright (c) Microsoft Corporation.<BR>

    +#

    +# SPDX-License-Identifier: BSD-2-Clause-Patent

    +#

    +###

    +

    +[Defines]

    +  INF_VERSION                    = 1.27

    +  BASE_NAME                      = BasePlatform

    +  FILE_GUID                      = 8947A3F2-BfB4-45EF-968D-5C40C1CE6A58

    +  MODULE_TYPE                    = BASE

    +  VERSION_STRING                 = 1.0

    +  LIBRARY_CLASS                  = TpmPlatformHierarchyLib|PEIM DXE_DRIVER

    +

    +[LibraryClasses]

    +  BaseLib

    +

    +[Packages]

    +  MdePkg/MdePkg.dec

    +  SecurityPkg/SecurityPkg.dec

    +

    +[Sources]

    +  PeiDxeTpmPlatformHierarchyLib.c

    diff --git a/SecurityPkg/SecurityPkg.dsc b/SecurityPkg/SecurityPkg.dsc
    index f1f678c492..37318c64c5 100644
    --- a/SecurityPkg/SecurityPkg.dsc
    +++ b/SecurityPkg/SecurityPkg.dsc
    @@ -232,6 +232,7 @@
       SecurityPkg/Library/HashLibTpm2/HashLibTpm2.inf



       SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLib/PeiDxeTpmPlatformHierarchyLib.inf

    +  SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLibNull/PeiDxeTpmPlatformHierarchyLib.inf



       #

       # TCG Storage.

    -- 
    2.31.1



  reply	other threads:[~2021-09-23 14:49 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-22 16:31 [PATCH v3 0/3] ArmVirtPkg: Disable the TPM 2 platform hierarchy Stefan Berger
2021-09-22 16:31 ` [PATCH v3 1/3] ArmVirtPkg/TPM: Add a NULL implementation of TpmPlatformHierarchyLib Stefan Berger
2021-09-23 14:49   ` Sami Mujawar [this message]
2021-09-22 16:31 ` [PATCH v3 2/3] ArmVirtPkg: Reference new TPM classes in the build system for compilation Stefan Berger
2021-09-22 16:31 ` [PATCH v3 3/3] ArmVirtPkg: Disable the TPM2 platform hierarchy Stefan Berger

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=A408B437-41DB-458B-B532-DC4DD912FF52@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