From: "Dong, Eric" <eric.dong@intel.com>
To: "Chu, Maggie" <maggie.chu@intel.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Zhang, Chao B" <chao.b.zhang@intel.com>,
"Yao, Jiewen" <jiewen.yao@intel.com>
Subject: Re: [PATCH] SecurityPkg/HddPassword: Add a PCD to skip Hdd password prompt
Date: Wed, 12 Jun 2019 01:16:20 +0000 [thread overview]
Message-ID: <ED077930C258884BBCB450DB737E662259E65B8B@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <20190610101927.19224-1-maggie.chu@intel.com>
Hi Maggie,
Reviewed-by: Eric Dong <eric.dong@intel.com>
And pushed: 9e2416ae2e1d26c6e6daa58353de519745bb322d
Thanks,
Eric
> -----Original Message-----
> From: Chu, Maggie
> Sent: Monday, June 10, 2019 6:19 PM
> To: devel@edk2.groups.io
> Cc: Zhang, Chao B <chao.b.zhang@intel.com>; Yao, Jiewen
> <jiewen.yao@intel.com>; Dong, Eric <eric.dong@intel.com>
> Subject: [PATCH] SecurityPkg/HddPassword: Add a PCD to skip Hdd
> password prompt
>
> https://bugzilla.tianocore.org/show_bug.cgi?id=1876
> Add a PCD for skipping Hdd password prompt.
> If device is in the locked status while attempting to skip password prompt,
> device will keep locked and system continue to boot.
> If device is in the unlocked status while attempting to skip password prompt,
> system will be forced shutdown.
>
> Signed-off-by: Maggie Chu <maggie.chu@intel.com>
> Cc: Chao Zhang <chao.b.zhang@intel.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Eric Dong <eric.dong@intel.com>
> ---
> SecurityPkg/HddPassword/HddPasswordDxe.c | 16 ++++++++++++++++
> SecurityPkg/HddPassword/HddPasswordDxe.inf | 4 ++++
> SecurityPkg/SecurityPkg.dec | 6 ++++++
> 3 files changed, 26 insertions(+)
>
> diff --git a/SecurityPkg/HddPassword/HddPasswordDxe.c
> b/SecurityPkg/HddPassword/HddPasswordDxe.c
> index 253af9f78f..b0d795b659 100644
> --- a/SecurityPkg/HddPassword/HddPasswordDxe.c
> +++ b/SecurityPkg/HddPassword/HddPasswordDxe.c
> @@ -1345,6 +1345,22 @@ HddPasswordRequestPassword (
> //
> if ((ConfigFormEntry->IfrData.SecurityStatus.Supported) &&
> (ConfigFormEntry->IfrData.SecurityStatus.Enabled)) {
> +
> + //
> + // Add PcdSkipHddPasswordPrompt to determin whether to skip
> password prompt.
> + // Due to board design, device may not power off during system warm
> boot, which result in
> + // security status remain unlocked status, hence we add device security
> status check here.
> + //
> + // If device is in the locked status, device keeps locked and system
> continues booting.
> + // If device is in the unlocked status, system is forced shutdown for
> security concern.
> + //
> + if (PcdGetBool (PcdSkipHddPasswordPrompt)) {
> + if (ConfigFormEntry->IfrData.SecurityStatus.Locked) {
> + return;
> + } else {
> + gRT->ResetSystem (EfiResetShutdown, EFI_SUCCESS, 0, NULL);
> + }
> + }
> //
> // As soon as the HDD password is in enabled state, we pop up a window
> to unlock hdd
> // no matter it's really in locked or unlocked state.
> diff --git a/SecurityPkg/HddPassword/HddPasswordDxe.inf
> b/SecurityPkg/HddPassword/HddPasswordDxe.inf
> index f7550079ed..06e8755ffc 100644
> --- a/SecurityPkg/HddPassword/HddPasswordDxe.inf
> +++ b/SecurityPkg/HddPassword/HddPasswordDxe.inf
> @@ -34,6 +34,7 @@
> MdePkg/MdePkg.dec
> MdeModulePkg/MdeModulePkg.dec
> CryptoPkg/CryptoPkg.dec
> + SecurityPkg/SecurityPkg.dec
>
> [LibraryClasses]
> BaseLib
> @@ -64,6 +65,9 @@
> gEfiPciIoProtocolGuid ## CONSUMES
> gEdkiiVariableLockProtocolGuid ## CONSUMES
>
> +[Pcd]
> + gEfiSecurityPkgTokenSpaceGuid.PcdSkipHddPasswordPrompt ##
> CONSUMES
> +
> [Depex]
> gEfiVariableWriteArchProtocolGuid
>
> diff --git a/SecurityPkg/SecurityPkg.dec b/SecurityPkg/SecurityPkg.dec index
> 3314f1854b..82929fe38e 100644
> --- a/SecurityPkg/SecurityPkg.dec
> +++ b/SecurityPkg/SecurityPkg.dec
> @@ -428,6 +428,12 @@
> # @Prompt Skip Opal DXE driver unlock device flow.
>
> gEfiSecurityPkgTokenSpaceGuid.PcdSkipOpalDxeUnlock|FALSE|BOOLEAN|0
> x00010020
>
> + ## Indicates if Hdd Password driver skip password prompt.<BR><BR>
> + # TRUE - Skip password prompt.<BR>
> + # FALSE - Does not skip password prompt.<BR>
> + # @Prompt Skip Hdd Password prompt.
> +
> +
> gEfiSecurityPkgTokenSpaceGuid.PcdSkipHddPasswordPrompt|FALSE|BOOLE
> AN|0
> + x00010021
> +
> [PcdsDynamic, PcdsDynamicEx]
>
> ## This PCD indicates Hash mask for TPM 2.0. Bit definition strictly follows
> TCG Algorithm Registry.<BR><BR>
> --
> 2.16.2.windows.1
prev parent reply other threads:[~2019-06-12 1:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-10 10:19 [PATCH] SecurityPkg/HddPassword: Add a PCD to skip Hdd password prompt Maggie Chu
2019-06-12 1:16 ` Dong, Eric [this message]
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=ED077930C258884BBCB450DB737E662259E65B8B@shsmsx102.ccr.corp.intel.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