public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v2] MdeModulePkg/SdDxe: Potential NULL pointer on Token
@ 2020-03-04  9:41 GuoMinJ
  2020-03-26  5:56 ` [edk2-devel] " Guomin Jiang
  0 siblings, 1 reply; 3+ messages in thread
From: GuoMinJ @ 2020-03-04  9:41 UTC (permalink / raw)
  To: devel; +Cc: GuoMinJ, Hao A Wu, Ray Ni

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2286

Token pointer may be NULL, it is should be check before use it.

Cc: Hao A Wu <hao.a.wu@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Signed-off-by: GuoMinJ <newexplorerj@gmail.com>
---
 MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c b/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
index 9f42abe7e2..0cc2e70b58 100644
--- a/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
+++ b/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
@@ -1367,7 +1367,12 @@ SdEraseBlocks (
     return Status;
   }
 
-  DEBUG ((EFI_D_ERROR, "SdEraseBlocks(): Lba 0x%x BlkNo 0x%x Event %p with %r\n", Lba, BlockNum, Token->Event, Status));
+  DEBUG ((DEBUG_ERROR, "SdEraseBlocks(): Lba 0x%x BlkNo 0x%x with %r, ", Lba, BlockNum, Status));
+  if ((Token != NULL) && (Token->Event != NULL)) {
+    DEBUG ((DEBUG_ERROR, "Event pointer is %p\n", Token->Event));
+  } else {
+    DEBUG ((DEBUG_ERROR, "Event is meaningless\n"));
+  }
 
   return Status;
 }
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [edk2-devel] [PATCH v2] MdeModulePkg/SdDxe: Potential NULL pointer on Token
  2020-03-04  9:41 [PATCH v2] MdeModulePkg/SdDxe: Potential NULL pointer on Token GuoMinJ
@ 2020-03-26  5:56 ` Guomin Jiang
  2020-03-26  6:05   ` Wu, Hao A
  0 siblings, 1 reply; 3+ messages in thread
From: Guomin Jiang @ 2020-03-26  5:56 UTC (permalink / raw)
  To: devel@edk2.groups.io, newexplorerj@gmail.com; +Cc: Wu, Hao A, Ni, Ray

Hi Ray, Hao

Could you please help review this changes.

Thanks.
> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> GuoMinJ
> Sent: Wednesday, March 4, 2020 5:41 PM
> To: devel@edk2.groups.io
> Cc: GuoMinJ <newexplorerj@gmail.com>; Wu, Hao A
> <hao.a.wu@intel.com>; Ni, Ray <ray.ni@intel.com>
> Subject: [edk2-devel] [PATCH v2] MdeModulePkg/SdDxe: Potential NULL
> pointer on Token
> 
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2286
> 
> Token pointer may be NULL, it is should be check before use it.
> 
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Signed-off-by: GuoMinJ <newexplorerj@gmail.com>
> ---
>  MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
> b/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
> index 9f42abe7e2..0cc2e70b58 100644
> --- a/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
> +++ b/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
> @@ -1367,7 +1367,12 @@ SdEraseBlocks (
>      return Status;
>    }
> 
> -  DEBUG ((EFI_D_ERROR, "SdEraseBlocks(): Lba 0x%x BlkNo 0x%x Event %p
> with %r\n", Lba, BlockNum, Token->Event, Status));
> +  DEBUG ((DEBUG_ERROR, "SdEraseBlocks(): Lba 0x%x BlkNo 0x%x with %r,
> + ", Lba, BlockNum, Status));  if ((Token != NULL) && (Token->Event !=
> NULL)) {
> +    DEBUG ((DEBUG_ERROR, "Event pointer is %p\n", Token->Event));  }
> + else {
> +    DEBUG ((DEBUG_ERROR, "Event is meaningless\n"));  }
> 
>    return Status;
>  }
> --
> 2.17.1
> 
> 
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [edk2-devel] [PATCH v2] MdeModulePkg/SdDxe: Potential NULL pointer on Token
  2020-03-26  5:56 ` [edk2-devel] " Guomin Jiang
@ 2020-03-26  6:05   ` Wu, Hao A
  0 siblings, 0 replies; 3+ messages in thread
From: Wu, Hao A @ 2020-03-26  6:05 UTC (permalink / raw)
  To: Jiang, Guomin, devel@edk2.groups.io, newexplorerj@gmail.com; +Cc: Ni, Ray

> -----Original Message-----
> From: Jiang, Guomin
> Sent: Thursday, March 26, 2020 1:57 PM
> To: devel@edk2.groups.io; newexplorerj@gmail.com
> Cc: Wu, Hao A; Ni, Ray
> Subject: RE: [edk2-devel] [PATCH v2] MdeModulePkg/SdDxe: Potential NULL
> pointer on Token
> 
> Hi Ray, Hao
> 
> Could you please help review this changes.


Really sorry for missing this patch.

Could you help to follow the codes in function EmmcEraseBlocks() under file:
MdeModulePkg/Bus/Sd/EmmcDxe/EmmcBlockIo.c
for the fix in SdDxe? Thanks.

Best Regards,
Hao Wu


> 
> Thanks.
> > -----Original Message-----
> > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> > GuoMinJ
> > Sent: Wednesday, March 4, 2020 5:41 PM
> > To: devel@edk2.groups.io
> > Cc: GuoMinJ <newexplorerj@gmail.com>; Wu, Hao A
> > <hao.a.wu@intel.com>; Ni, Ray <ray.ni@intel.com>
> > Subject: [edk2-devel] [PATCH v2] MdeModulePkg/SdDxe: Potential NULL
> > pointer on Token
> >
> > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2286
> >
> > Token pointer may be NULL, it is should be check before use it.
> >
> > Cc: Hao A Wu <hao.a.wu@intel.com>
> > Cc: Ray Ni <ray.ni@intel.com>
> > Signed-off-by: GuoMinJ <newexplorerj@gmail.com>
> > ---
> >  MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> >
> > diff --git a/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
> > b/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
> > index 9f42abe7e2..0cc2e70b58 100644
> > --- a/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
> > +++ b/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c
> > @@ -1367,7 +1367,12 @@ SdEraseBlocks (
> >      return Status;
> >    }
> >
> > -  DEBUG ((EFI_D_ERROR, "SdEraseBlocks(): Lba 0x%x BlkNo 0x%x Event %p
> > with %r\n", Lba, BlockNum, Token->Event, Status));
> > +  DEBUG ((DEBUG_ERROR, "SdEraseBlocks(): Lba 0x%x BlkNo 0x%x with %r,
> > + ", Lba, BlockNum, Status));  if ((Token != NULL) && (Token->Event !=
> > NULL)) {
> > +    DEBUG ((DEBUG_ERROR, "Event pointer is %p\n", Token->Event));  }
> > + else {
> > +    DEBUG ((DEBUG_ERROR, "Event is meaningless\n"));  }
> >
> >    return Status;
> >  }
> > --
> > 2.17.1
> >
> >
> > 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-26  6:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-04  9:41 [PATCH v2] MdeModulePkg/SdDxe: Potential NULL pointer on Token GuoMinJ
2020-03-26  5:56 ` [edk2-devel] " Guomin Jiang
2020-03-26  6:05   ` Wu, Hao A

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox