* Re: [PATCH] SecurityPkg: TcgStorageOpalLib: Initialize SupportedAttributes parameter.
[not found] <20210524064107.537-1-scottie.kuo@intel.com>
@ 2021-05-27 10:31 ` Yao, Jiewen
[not found] ` <CO1PR11MB489927DF374E8C5B86A81E07E33E9@CO1PR11MB4899.namprd11.prod.outlook.com>
0 siblings, 1 reply; 2+ messages in thread
From: Yao, Jiewen @ 2021-05-27 10:31 UTC (permalink / raw)
To: Kuo, Scottie, devel@edk2.groups.io
Cc: Zhang, Qi1, Kumar, Rahul1, Chu, Maggie, Wang, Jian J
Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com>
Hi Scottie
Please remember to add Wang, Jian J as reviewer too.
Thank you
Yao Jiewen
> -----Original Message-----
> From: Kuo, Scottie <scottie.kuo@intel.com>
> Sent: Monday, May 24, 2021 2:41 PM
> To: devel@edk2.groups.io
> Cc: Kuo, Scottie <scottie.kuo@intel.com>; Zhang, Qi1 <qi1.zhang@intel.com>;
> Kumar, Rahul1 <rahul1.kumar@intel.com>; Yao, Jiewen
> <jiewen.yao@intel.com>; Chu, Maggie <maggie.chu@intel.com>
> Subject: [PATCH] SecurityPkg: TcgStorageOpalLib: Initialize SupportedAttributes
> parameter.
>
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3408
>
> The value of SupportedAttributes in OpalGetSupportedAttributesInfo ()
> is left undetermined, if the caller doesn't initialize it.
> Initialize it in the function entry.
>
> Signed-off-by: Scottie Kuo <scottie.kuo@intel.com>
> Cc: Qi Zhang <qi1.zhang@intel.com>
> Cc: Rahul Kumar <rahul1.kumar@intel.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Maggie Chu <maggie.chu@intel.com>
> ---
> SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c
> b/SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c
> index b58597e61f..c840590e8e 100644
> --- a/SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c
> +++ b/SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c
> @@ -1,7 +1,7 @@
> /** @file
> Public API for Opal Core library.
>
> -Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
> +Copyright (c) 2016 - 2021, Intel Corporation. All rights reserved.<BR>
> SPDX-License-Identifier: BSD-2-Clause-Patent
>
> **/
> @@ -1647,6 +1647,7 @@ OpalGetSupportedAttributesInfo(
> NULL_CHECK(OpalBaseComId);
>
> ZeroMem(Buffer, BUFFER_SIZE);
> + ZeroMem(SupportedAttributes, sizeof(OPAL_DISK_SUPPORT_ATTRIBUTE));
> ASSERT(sizeof(Buffer) >= sizeof(TCG_SUPPORTED_SECURITY_PROTOCOLS));
>
> //
> --
> 2.26.2.windows.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] SecurityPkg: TcgStorageOpalLib: Initialize SupportedAttributes parameter.
[not found] ` <CO1PR11MB489927DF374E8C5B86A81E07E33E9@CO1PR11MB4899.namprd11.prod.outlook.com>
@ 2021-06-15 8:18 ` Wang, Jian J
0 siblings, 0 replies; 2+ messages in thread
From: Wang, Jian J @ 2021-06-15 8:18 UTC (permalink / raw)
To: Kuo, Scottie, Yao, Jiewen, devel@edk2.groups.io
Cc: Zhang, Qi1, Kumar, Rahul1, Chu, Maggie
Acked-by: Jian J Wang <jian.j.wang@intel.com>
> -----Original Message-----
> From: Kuo, Scottie <scottie.kuo@intel.com>
> Sent: Tuesday, June 01, 2021 5:26 PM
> To: Yao, Jiewen <jiewen.yao@intel.com>; devel@edk2.groups.io; Wang, Jian J
> <jian.j.wang@intel.com>
> Cc: Zhang, Qi1 <qi1.zhang@intel.com>; Kumar, Rahul1
> <rahul1.kumar@intel.com>; Chu, Maggie <maggie.chu@intel.com>
> Subject: RE: [PATCH] SecurityPkg: TcgStorageOpalLib: Initialize
> SupportedAttributes parameter.
>
> Hi, @Wang, Jian J
> Please help to review the patch. Thanks😊
>
> Best regards,
> Scottie
>
> -----Original Message-----
> From: Yao, Jiewen <jiewen.yao@intel.com>
> Sent: Thursday, May 27, 2021 6:32 PM
> To: Kuo, Scottie <scottie.kuo@intel.com>; devel@edk2.groups.io
> Cc: Zhang, Qi1 <qi1.zhang@intel.com>; Kumar, Rahul1
> <rahul1.kumar@intel.com>; Chu, Maggie <maggie.chu@intel.com>; Wang, Jian
> J <jian.j.wang@intel.com>
> Subject: RE: [PATCH] SecurityPkg: TcgStorageOpalLib: Initialize
> SupportedAttributes parameter.
>
> Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com>
>
> Hi Scottie
> Please remember to add Wang, Jian J as reviewer too.
>
> Thank you
> Yao Jiewen
>
> > -----Original Message-----
> > From: Kuo, Scottie <scottie.kuo@intel.com>
> > Sent: Monday, May 24, 2021 2:41 PM
> > To: devel@edk2.groups.io
> > Cc: Kuo, Scottie <scottie.kuo@intel.com>; Zhang, Qi1
> > <qi1.zhang@intel.com>; Kumar, Rahul1 <rahul1.kumar@intel.com>; Yao,
> > Jiewen <jiewen.yao@intel.com>; Chu, Maggie <maggie.chu@intel.com>
> > Subject: [PATCH] SecurityPkg: TcgStorageOpalLib: Initialize
> > SupportedAttributes parameter.
> >
> > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3408
> >
> > The value of SupportedAttributes in OpalGetSupportedAttributesInfo ()
> > is left undetermined, if the caller doesn't initialize it.
> > Initialize it in the function entry.
> >
> > Signed-off-by: Scottie Kuo <scottie.kuo@intel.com>
> > Cc: Qi Zhang <qi1.zhang@intel.com>
> > Cc: Rahul Kumar <rahul1.kumar@intel.com>
> > Cc: Jiewen Yao <jiewen.yao@intel.com>
> > Cc: Maggie Chu <maggie.chu@intel.com>
> > ---
> > SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git
> > a/SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c
> > b/SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c
> > index b58597e61f..c840590e8e 100644
> > --- a/SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c
> > +++ b/SecurityPkg/Library/TcgStorageOpalLib/TcgStorageOpalCore.c
> > @@ -1,7 +1,7 @@
> > /** @file
> > Public API for Opal Core library.
> >
> > -Copyright (c) 2016 - 2018, Intel Corporation. All rights
> > reserved.<BR>
> > +Copyright (c) 2016 - 2021, Intel Corporation. All rights
> > +reserved.<BR>
> > SPDX-License-Identifier: BSD-2-Clause-Patent
> >
> > **/
> > @@ -1647,6 +1647,7 @@ OpalGetSupportedAttributesInfo(
> > NULL_CHECK(OpalBaseComId);
> >
> > ZeroMem(Buffer, BUFFER_SIZE);
> > + ZeroMem(SupportedAttributes, sizeof(OPAL_DISK_SUPPORT_ATTRIBUTE));
> > ASSERT(sizeof(Buffer) >= sizeof(TCG_SUPPORTED_SECURITY_PROTOCOLS));
> >
> > //
> > --
> > 2.26.2.windows.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-06-15 8:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20210524064107.537-1-scottie.kuo@intel.com>
2021-05-27 10:31 ` [PATCH] SecurityPkg: TcgStorageOpalLib: Initialize SupportedAttributes parameter Yao, Jiewen
[not found] ` <CO1PR11MB489927DF374E8C5B86A81E07E33E9@CO1PR11MB4899.namprd11.prod.outlook.com>
2021-06-15 8:18 ` Wang, Jian J
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox