public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "gaoliming" <gaoliming@byosoft.com.cn>
To: "'Rebecca Cran'" <quic_rcran@quicinc.com>, <devel@edk2.groups.io>
Cc: "'Jian J Wang'" <jian.j.wang@intel.com>,
	"'Zhichao Gao'" <zhichao.gao@intel.com>,
	"'Ray Ni'" <ray.ni@intel.com>
Subject: 回复: [edk2-devel] [PATCH 1/1] MdeModulePkg/UefiBootManagerLib: Convert BmLoadOption to Variable Policy
Date: Thu, 27 Jan 2022 09:14:50 +0800	[thread overview]
Message-ID: <000d01d8131b$4898fc60$d9caf520$@byosoft.com.cn> (raw)
In-Reply-To: <522e1720-5f37-44c2-8d0a-d4a5e37827e2@quicinc.com>

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: Rebecca Cran <quic_rcran@quicinc.com>
> 发送时间: 2022年1月27日 7:23
> 收件人: devel@edk2.groups.io
> 抄送: Jian J Wang <jian.j.wang@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Zhichao Gao <zhichao.gao@intel.com>; Ray Ni
> <ray.ni@intel.com>
> 主题: Re: [edk2-devel] [PATCH 1/1] MdeModulePkg/UefiBootManagerLib:
> Convert BmLoadOption to Variable Policy
> 
> It's been a week since I sent this out: could someone review it please?
> 
> 
> Thanks.
> Rebecca Cran
> 
> On 1/19/22 14:01, Rebecca Cran wrote:
> > Since the Variable Lock protocol is deprecated, convert locking of
> > PlatformRecovery#### in EfiBootManagerLoadOptionToVariable to use the
> > Variable Policy protocol.
> >
> > Cc: Jian J Wang <jian.j.wang@intel.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Cc: Zhichao Gao <zhichao.gao@intel.com>
> > Cc: Ray Ni <ray.ni@intel.com>
> >
> > Signed-off-by: Rebecca Cran <quic_rcran@quicinc.com>
> > ---
> >   MdeModulePkg/Library/UefiBootManagerLib/BmLoadOption.c
> | 33 +++++++++++++-------
> >   MdeModulePkg/Library/UefiBootManagerLib/InternalBm.h
> |  1 -
> >   MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf |
> 3 +-
> >   3 files changed, 24 insertions(+), 13 deletions(-)
> >
> > diff --git a/MdeModulePkg/Library/UefiBootManagerLib/BmLoadOption.c
> b/MdeModulePkg/Library/UefiBootManagerLib/BmLoadOption.c
> > index 32a9cbb425fa..2087f0b91df7 100644
> > --- a/MdeModulePkg/Library/UefiBootManagerLib/BmLoadOption.c
> > +++ b/MdeModulePkg/Library/UefiBootManagerLib/BmLoadOption.c
> > @@ -9,6 +9,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
> >
> >   #include "InternalBm.h"
> >
> > +#include <Library/VariablePolicyHelperLib.h>
> > +
> >   GLOBAL_REMOVE_IF_UNREFERENCED
> >   CHAR16  *mBmLoadOptionName[] = {
> >     L"Driver",
> > @@ -169,15 +171,15 @@ EfiBootManagerLoadOptionToVariable (
> >     IN CONST EFI_BOOT_MANAGER_LOAD_OPTION  *Option
> >     )
> >   {
> > -  EFI_STATUS                    Status;
> > -  UINTN                         VariableSize;
> > -  UINT8                         *Variable;
> > -  UINT8                         *Ptr;
> > -  CHAR16
> OptionName[BM_OPTION_NAME_LEN];
> > -  CHAR16                        *Description;
> > -  CHAR16                        NullChar;
> > -  EDKII_VARIABLE_LOCK_PROTOCOL  *VariableLock;
> > -  UINT32                        VariableAttributes;
> > +  EFI_STATUS                      Status;
> > +  UINTN                           VariableSize;
> > +  UINT8                           *Variable;
> > +  UINT8                           *Ptr;
> > +  CHAR16
> OptionName[BM_OPTION_NAME_LEN];
> > +  CHAR16                          *Description;
> > +  CHAR16                          NullChar;
> > +  EDKII_VARIABLE_POLICY_PROTOCOL  *VariablePolicy;
> > +  UINT32                          VariableAttributes;
> >
> >     if ((Option->OptionNumber == LoadOptionNumberUnassigned) ||
> >         (Option->FilePath == NULL) ||
> > @@ -242,9 +244,18 @@ structure.
> >       //
> >       // Lock the PlatformRecovery####
> >       //
> > -    Status = gBS->LocateProtocol (&gEdkiiVariableLockProtocolGuid, NULL,
> (VOID **)&VariableLock);
> > +    Status = gBS->LocateProtocol (&gEdkiiVariablePolicyProtocolGuid,
> NULL, (VOID **)&VariablePolicy);
> >       if (!EFI_ERROR (Status)) {
> > -      Status = VariableLock->RequestToLock (VariableLock, OptionName,
> &gEfiGlobalVariableGuid);
> > +      Status = RegisterBasicVariablePolicy (
> > +                 VariablePolicy,
> > +                 &gEfiGlobalVariableGuid,
> > +                 OptionName,
> > +                 VARIABLE_POLICY_NO_MIN_SIZE,
> > +                 VARIABLE_POLICY_NO_MAX_SIZE,
> > +                 VARIABLE_POLICY_NO_MUST_ATTR,
> > +                 VARIABLE_POLICY_NO_CANT_ATTR,
> > +                 VARIABLE_POLICY_TYPE_LOCK_NOW
> > +                 );
> >         ASSERT_EFI_ERROR (Status);
> >       }
> >
> > diff --git a/MdeModulePkg/Library/UefiBootManagerLib/InternalBm.h
> b/MdeModulePkg/Library/UefiBootManagerLib/InternalBm.h
> > index a9b0d485cace..b7dfe2a7e0bd 100644
> > --- a/MdeModulePkg/Library/UefiBootManagerLib/InternalBm.h
> > +++ b/MdeModulePkg/Library/UefiBootManagerLib/InternalBm.h
> > @@ -39,7 +39,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
> >   #include <Protocol/BootLogo.h>
> >   #include <Protocol/DriverHealth.h>
> >   #include <Protocol/FormBrowser2.h>
> > -#include <Protocol/VariableLock.h>
> >   #include <Protocol/RamDisk.h>
> >   #include <Protocol/DeferredImageLoad.h>
> >   #include <Protocol/PlatformBootManager.h>
> > diff --git
> a/MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
> b/MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
> > index cf5908692fa7..fe05d5f1cc9d 100644
> > --- a/MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
> > +++
> b/MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
> > @@ -62,6 +62,7 @@
> >     PerformanceLib
> >     HiiLib
> >     SortLib
> > +  VariablePolicyHelperLib
> >
> >   [Guids]
> >     ## SOMETIMES_CONSUMES ## SystemTable (The identifier of
> memory type information type in system table)
> > @@ -99,7 +100,7 @@
> >     gEfiDevicePathProtocolGuid                    ##
> SOMETIMES_CONSUMES
> >     gEfiBootLogoProtocolGuid                      ##
> SOMETIMES_CONSUMES
> >     gEfiSimpleTextInputExProtocolGuid             ##
> SOMETIMES_CONSUMES
> > -  gEdkiiVariableLockProtocolGuid                ##
> SOMETIMES_CONSUMES
> > +  gEdkiiVariablePolicyProtocolGuid              ##
> SOMETIMES_CONSUMES
> >     gEfiGraphicsOutputProtocolGuid                ##
> SOMETIMES_CONSUMES
> >     gEfiUsbIoProtocolGuid                         ##
> SOMETIMES_CONSUMES
> >     gEfiNvmExpressPassThruProtocolGuid            ##
> SOMETIMES_CONSUMES





      reply	other threads:[~2022-01-27  1:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <16CBC7B9F156E53A.7993@groups.io>
2022-01-26 23:23 ` [edk2-devel] [PATCH 1/1] MdeModulePkg/UefiBootManagerLib: Convert BmLoadOption to Variable Policy Rebecca Cran
2022-01-27  1:14   ` gaoliming [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='000d01d8131b$4898fc60$d9caf520$@byosoft.com.cn' \
    --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