public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Wang, Jian J" <jian.j.wang@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"Zhang, Qi1" <qi1.zhang@intel.com>
Cc: "Yao, Jiewen" <jiewen.yao@intel.com>,
	Chao Zhang <chao.b.zhang@intel.com>,
	"Kumar, Rahul1" <rahul1.kumar@intel.com>
Subject: Re: [edk2-devel] [PATCH v4 1/2] SecurityPkg/Tpm2CommandLib: add a new function
Date: Mon, 3 Aug 2020 14:33:13 +0000	[thread overview]
Message-ID: <SN6PR11MB3312175874DDF60BA2FBBE23B64D0@SN6PR11MB3312.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20200728082040.13955-2-qi1.zhang@intel.com>



Reviewed-by: Jian J Wang <jian.j.wang@intel.com>

Regards,
Jian

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Qi Zhang
> Sent: Tuesday, July 28, 2020 4:21 PM
> To: devel@edk2.groups.io
> Cc: Zhang, Qi1 <qi1.zhang@intel.com>; Yao, Jiewen <jiewen.yao@intel.com>;
> Wang, Jian J <jian.j.wang@intel.com>; Chao Zhang <chao.b.zhang@intel.com>;
> Kumar, Rahul1 <rahul1.kumar@intel.com>
> Subject: [edk2-devel] [PATCH v4 1/2] SecurityPkg/Tpm2CommandLib: add a new
> function
> 
> From: "Zhang, Qi" <qi1.zhang@intel.com>
> 
>  Tpm2GetCapabilityIsCommandImplemented
> 
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2793
> 
> check if the commad is supported by comparing the command code with
> command index.
> 
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Chao Zhang <chao.b.zhang@intel.com>
> Cc: Rahul Kumar <rahul1.kumar@intel.com>
> Signed-off-by: Qi Zhang <qi1.zhang@intel.com>
> ---
>  SecurityPkg/Include/Library/Tpm2CommandLib.h  | 16 ++++++++
>  .../Library/Tpm2CommandLib/Tpm2Capability.c   | 40 +++++++++++++++++++
>  2 files changed, 56 insertions(+)
> 
> diff --git a/SecurityPkg/Include/Library/Tpm2CommandLib.h
> b/SecurityPkg/Include/Library/Tpm2CommandLib.h
> index ce381e786b..ee8eb62295 100644
> --- a/SecurityPkg/Include/Library/Tpm2CommandLib.h
> +++ b/SecurityPkg/Include/Library/Tpm2CommandLib.h
> @@ -790,6 +790,22 @@ Tpm2GetCapabilityAlgorithmSet (
>    OUT     UINT32      *AlgorithmSet
> 
>    );
> 
> 
> 
> +/**
> 
> +  This function will query if the command is supported.
> 
> +
> 
> +  @param[In]  Command         TPM_CC command starts from TPM_CC_FIRST.
> 
> +  @param[out] IsCmdImpl       The command is supported or not.
> 
> +
> 
> +  @retval EFI_SUCCESS            Operation completed successfully.
> 
> +  @retval EFI_DEVICE_ERROR       The command was unsuccessful.
> 
> +**/
> 
> +EFI_STATUS
> 
> +EFIAPI
> 
> +Tpm2GetCapabilityIsCommandImplemented (
> 
> +  IN      TPM_CC      Command,
> 
> +  OUT     BOOLEAN     *IsCmdImpl
> 
> +  );
> 
> +
> 
>  /**
> 
>    This command is used to check to see if specific combinations of algorithm
> parameters are supported.
> 
> 
> 
> diff --git a/SecurityPkg/Library/Tpm2CommandLib/Tpm2Capability.c
> b/SecurityPkg/Library/Tpm2CommandLib/Tpm2Capability.c
> index 85b11c7715..17c0c3a151 100644
> --- a/SecurityPkg/Library/Tpm2CommandLib/Tpm2Capability.c
> +++ b/SecurityPkg/Library/Tpm2CommandLib/Tpm2Capability.c
> @@ -39,6 +39,8 @@ typedef struct {
> 
> 
>  #pragma pack()
> 
> 
> 
> +#define TPMA_CC_COMMANDINDEX_MASK  0x2000FFFF
> 
> +
> 
>  /**
> 
>    This command returns various information regarding the TPM and its current
> state.
> 
> 
> 
> @@ -628,6 +630,44 @@ Tpm2GetCapabilityAlgorithmSet (
>    return EFI_SUCCESS;
> 
>  }
> 
> 
> 
> +/**
> 
> +  This function will query if the command is supported.
> 
> +
> 
> +  @param[In]  Command         TPM_CC command starts from TPM_CC_FIRST.
> 
> +  @param[out] IsCmdImpl       The command is supported or not.
> 
> +
> 
> +  @retval EFI_SUCCESS            Operation completed successfully.
> 
> +  @retval EFI_DEVICE_ERROR       The command was unsuccessful.
> 
> +**/
> 
> +EFI_STATUS
> 
> +EFIAPI
> 
> +Tpm2GetCapabilityIsCommandImplemented (
> 
> +  IN      TPM_CC      Command,
> 
> +  OUT     BOOLEAN     *IsCmdImpl
> 
> +  )
> 
> +{
> 
> +  TPMS_CAPABILITY_DATA    TpmCap;
> 
> +  TPMI_YES_NO             MoreData;
> 
> +  EFI_STATUS              Status;
> 
> +  UINT32                  Attribute;
> 
> +
> 
> +  Status = Tpm2GetCapability (
> 
> +             TPM_CAP_COMMANDS,
> 
> +             Command,
> 
> +             1,
> 
> +             &MoreData,
> 
> +             &TpmCap
> 
> +             );
> 
> +  if (EFI_ERROR (Status)) {
> 
> +    return Status;
> 
> +  }
> 
> +
> 
> +  CopyMem (&Attribute, &TpmCap.data.command.commandAttributes[0],
> sizeof (UINT32));
> 
> +  *IsCmdImpl = (Command == (SwapBytes32(Attribute) &
> TPMA_CC_COMMANDINDEX_MASK));
> 
> +
> 
> +  return EFI_SUCCESS;
> 
> +}
> 
> +
> 
>  /**
> 
>    This command is used to check to see if specific combinations of algorithm
> parameters are supported.
> 
> 
> 
> --
> 2.26.2.windows.1
> 
> 
> -=-=-=-=-=-=
> Groups.io Links: You receive all messages sent to this group.
> 
> View/Reply Online (#63392): https://edk2.groups.io/g/devel/message/63392
> Mute This Topic: https://groups.io/mt/75840053/1768734
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub  [jian.j.wang@intel.com]
> -=-=-=-=-=-=


  reply	other threads:[~2020-08-03 14:33 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-28  8:20 [PATCH v4 0/2] refine TPM2 operation pull down list Qi Zhang
2020-07-28  8:20 ` [PATCH v4 1/2] SecurityPkg/Tpm2CommandLib: add a new function Qi Zhang
2020-08-03 14:33   ` Wang, Jian J [this message]
2020-07-28  8:20 ` [PATCH v4 2/2] SecurityPkg/Tcg2Config: remove TPM2_ChangEPS if it is not supported Qi Zhang
2020-08-03 14:32   ` [edk2-devel] " Wang, Jian J
2020-08-03 14:35 ` [PATCH v4 0/2] refine TPM2 operation pull down list Wang, Jian J

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=SN6PR11MB3312175874DDF60BA2FBBE23B64D0@SN6PR11MB3312.namprd11.prod.outlook.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