From: "Wang, Jian J" <jian.j.wang@intel.com>
To: "Ni, Ruiyu" <ruiyu.ni@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [PATCH] MdeModulePkg/Partition: Fix media probe
Date: Thu, 25 Jan 2018 10:48:32 +0000 [thread overview]
Message-ID: <D827630B58408649ACB04F44C510003624CD3A60@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <20180125094444.385092-1-ruiyu.ni@intel.com>
Tested-by/Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
> -----Original Message-----
> From: Ni, Ruiyu
> Sent: Thursday, January 25, 2018 5:45 PM
> To: edk2-devel@lists.01.org
> Cc: Wang, Jian J <jian.j.wang@intel.com>
> Subject: [PATCH] MdeModulePkg/Partition: Fix media probe
>
> The call in ProbeMediaStatusEx() to the ReadDisk() function of the
> EFI_DISK_IO_PROTOCOL interface implemented in DiskIoDxe/DiskIo.c
> crashed in DiskIo2ReadWriteDisk() because of the NULL value of
> the destination buffer pointer.
>
> Pass the address of a buffer in the stack instead of a NULL
> pointer.
>
> The similar fix was applied to ProbeMediaStatus in commit
> df473cc1fc9acd1a623ec7e05276f2f0635c19d2
> * MdeModulePkg/PartitionDxe: Fix media probe
>
> Somehow ProbeMediaStatusEx() wasn't changed together.
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> ---
> MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c
> b/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c
> index bb9d0b70ce..46c0877cee 100644
> --- a/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c
> +++ b/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c
> @@ -4,7 +4,7 @@
> of the raw block devices media. Currently "El Torito CD-ROM", UDF, Legacy
> MBR, and GPT partition schemes are supported.
>
> -Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
> +Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
> This program and the accompanying materials
> are licensed and made available under the terms and conditions of the BSD
> License
> which accompanies this distribution. The full text of the license may be found
> at
> @@ -777,11 +777,15 @@ ProbeMediaStatusEx (
> )
> {
> EFI_STATUS Status;
> + UINT8 Buffer[1];
>
> //
> - // Read 1 byte from offset 0 but passing NULL as buffer pointer
> + // Read 1 byte from offset 0 to check if the MediaId is still valid.
> + // The reading operation is synchronious thus it is not worth it to
> + // allocate a buffer from the pool. The destination buffer for the
> + // data is in the stack.
> //
> - Status = DiskIo2->ReadDiskEx (DiskIo2, MediaId, 0, NULL, 1, NULL);
> + Status = DiskIo2->ReadDiskEx (DiskIo2, MediaId, 0, NULL, 1, (VOID*)Buffer);
> if ((Status == EFI_NO_MEDIA) || (Status == EFI_MEDIA_CHANGED)) {
> return Status;
> }
> --
> 2.15.1.windows.2
prev parent reply other threads:[~2018-01-25 10:43 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-25 9:44 [PATCH] MdeModulePkg/Partition: Fix media probe Ruiyu Ni
2018-01-25 10:48 ` Wang, Jian J [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=D827630B58408649ACB04F44C510003624CD3A60@SHSMSX103.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