From: "Dandan Bi" <dandan.bi@intel.com>
To: Wenyi Xie <xiewenyi2@huawei.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>,
"Wang, Jian J" <jian.j.wang@intel.com>,
"Wu, Hao A" <hao.a.wu@intel.com>,
"Dong, Eric" <eric.dong@intel.com>
Cc: "songdongkuang@huawei.com" <songdongkuang@huawei.com>
Subject: Re: [PATCH EDK2 v1 1/1] MdeModulePkg/FileExplorerLib: Add return value check
Date: Wed, 13 Jan 2021 06:07:19 +0000 [thread overview]
Message-ID: <SJ0PR11MB4862C04E027A8185FE180120EAA90@SJ0PR11MB4862.namprd11.prod.outlook.com> (raw)
In-Reply-To: <1610435198-12504-2-git-send-email-xiewenyi2@huawei.com>
Reviewed-by: Dandan Bi <dandan.bi@intel.com>
Thanks,
Dandan
> -----Original Message-----
> From: Wenyi Xie <xiewenyi2@huawei.com>
> Sent: Tuesday, January 12, 2021 3:07 PM
> To: devel@edk2.groups.io; Wang, Jian J <jian.j.wang@intel.com>; Wu, Hao A
> <hao.a.wu@intel.com>; Bi, Dandan <dandan.bi@intel.com>; Dong, Eric
> <eric.dong@intel.com>
> Cc: songdongkuang@huawei.com; xiewenyi2@huawei.com
> Subject: [PATCH EDK2 v1 1/1] MdeModulePkg/FileExplorerLib: Add return
> value check
>
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3113
> According to FAT specification, the length of file path should not larger than
> 260. When the length exceed 260, function FatLocateOFile will return
> EFI_INVALID_PARAMETER and the parameter FileHandle will be NULL. Then
> on the top-level function,an exception happens when the NULL pointer is
> passed and be used.
> So adding return value check after calling LibGetFileHandleFromMenu, if
> return value is not success, stop calling LibFindFiles.
>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Dandan Bi <dandan.bi@intel.com>
> Cc: Eric Dong <eric.dong@intel.com>
> Signed-off-by: Wenyi Xie <xiewenyi2@huawei.com>
> ---
> MdeModulePkg/Library/FileExplorerLib/FileExplorer.c | 12 +++++++-----
> 1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/MdeModulePkg/Library/FileExplorerLib/FileExplorer.c
> b/MdeModulePkg/Library/FileExplorerLib/FileExplorer.c
> index 13a214b06af9..03630a29bc3b 100644
> --- a/MdeModulePkg/Library/FileExplorerLib/FileExplorer.c
> +++ b/MdeModulePkg/Library/FileExplorerLib/FileExplorer.c
> @@ -1408,12 +1408,14 @@ LibUpdateFileExplorer (
> if (NewFileContext->IsDir) {
> RemoveEntryList (&NewMenuEntry->Link);
> LibFreeMenu (gFileExplorerPrivate.FsOptionMenu);
> - LibGetFileHandleFromMenu (NewMenuEntry, &FileHandle);
> - Status = LibFindFiles (FileHandle, NewFileContext->FileName,
> NewFileContext->DeviceHandle);
> + Status = LibGetFileHandleFromMenu (NewMenuEntry, &FileHandle);
> if (!EFI_ERROR (Status)) {
> - LibUpdateFileExplorePage ();
> - } else {
> - LibFreeMenu (gFileExplorerPrivate.FsOptionMenu);
> + Status = LibFindFiles (FileHandle, NewFileContext->FileName,
> NewFileContext->DeviceHandle);
> + if (!EFI_ERROR (Status)) {
> + LibUpdateFileExplorePage ();
> + } else {
> + LibFreeMenu (gFileExplorerPrivate.FsOptionMenu);
> + }
> }
> LibDestroyMenuEntry (NewMenuEntry);
> }
> --
> 2.20.1.windows.1
next prev parent reply other threads:[~2021-01-13 6:07 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-12 7:06 [PATCH EDK2 v1 0/1] MdeModulePkg/FileExplorerLib: Add return value check wenyi,xie
2021-01-12 7:06 ` [PATCH EDK2 v1 1/1] " wenyi,xie
2021-01-13 6:07 ` Dandan Bi [this message]
2021-01-14 1:35 ` 回复: [edk2-devel] " gaoliming
[not found] ` <1659F55FB44C27DA.15468@groups.io>
2021-01-15 0:44 ` gaoliming
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=SJ0PR11MB4862C04E027A8185FE180120EAA90@SJ0PR11MB4862.namprd11.prod.outlook.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