From: "Saloni Kasbekar" <saloni.kasbekar@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
"nicklew@nvidia.com" <nicklew@nvidia.com>
Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>,
Siyuan Fu <siyuan.fu@intel.com>,
Abner Chang <abner.chang@amd.com>,
Igor Kulchytskyy <igork@ami.com>,
Nick Ramirez <nramirez@nvidia.com>
Subject: Re: [edk2-devel] [PATCH 2/2] NetworkPkg/HttpDxe: fix driver binding start issue.
Date: Wed, 28 Jun 2023 19:06:48 +0000 [thread overview]
Message-ID: <BY5PR11MB3861A12CB41A5D6DB1424A88F124A@BY5PR11MB3861.namprd11.prod.outlook.com> (raw)
In-Reply-To: <MW4PR12MB7031E1D4480B6EA80CF369EBD924A@MW4PR12MB7031.namprd12.prod.outlook.com>
Hi Nickle,
We would want to do the FreePool even if the Uninstall fails (like in the case where we failed to install the multiple protocol interfaces and then went to ON_ERROR). Do you think it's better if we change it to -
if (HttpService != NULL) {
HttpCleanService (HttpService, UsingIpv6);
Status = gBS->UninstallMultipleProtocolInterfaces (
&ControllerHandle,
&gEfiHttpServiceBindingProtocolGuid,
&HttpService->ServiceBinding,
NULL
);
if ((HttpService->Tcp4ChildHandle == NULL) && (HttpService->Tcp6ChildHandle == NULL)) {
FreePool (HttpService);
}
}
Thanks,
Saloni
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Nickle Wang via groups.io
Sent: Tuesday, June 27, 2023 5:56 PM
To: devel@edk2.groups.io; Nickle Wang <nicklew@nvidia.com>
Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>; Siyuan Fu <siyuan.fu@intel.com>; Abner Chang <abner.chang@amd.com>; Igor Kulchytskyy <igork@ami.com>; Nick Ramirez <nramirez@nvidia.com>
Subject: Re: [edk2-devel] [PATCH 2/2] NetworkPkg/HttpDxe: fix driver binding start issue.
May I know if someone can help to review this patch?
Thanks,
Nickle
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Nickle
> Wang via groups.io
> Sent: Friday, February 10, 2023 8:34 PM
> To: devel@edk2.groups.io
> Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>; Siyuan Fu
> <siyuan.fu@intel.com>; Abner Chang <abner.chang@amd.com>; Igor
> Kulchytskyy <igork@ami.com>; Nick Ramirez <nramirez@nvidia.com>
> Subject: [edk2-devel] [PATCH 2/2] NetworkPkg/HttpDxe: fix driver
> binding start issue.
>
> External email: Use caution opening links or attachments
>
>
> When failure happens in HttpDxeStart, the error handling code release
> the memory buffer but it does not uninstall HTTP service bindnig
> protocol. As the result, application can still locate this protocol
> and invoke service binding fucntions in released memory pool.
>
> Signed-off-by: Nickle Wang <nicklew@nvidia.com>
> Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>
> Cc: Siyuan Fu <siyuan.fu@intel.com>
> Cc: Abner Chang <abner.chang@amd.com>
> Cc: Igor Kulchytskyy <igork@ami.com>
> Cc: Nick Ramirez <nramirez@nvidia.com>
> ---
> NetworkPkg/HttpDxe/HttpDriver.c | 13 +++++++++++--
> 1 file changed, 11 insertions(+), 2 deletions(-)
>
> diff --git a/NetworkPkg/HttpDxe/HttpDriver.c
> b/NetworkPkg/HttpDxe/HttpDriver.c index 5d918d3c4d..f6d1263cad 100644
> --- a/NetworkPkg/HttpDxe/HttpDriver.c
> +++ b/NetworkPkg/HttpDxe/HttpDriver.c
> @@ -3,6 +3,7 @@
>
> Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
> (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
> + Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
>
> SPDX-License-Identifier: BSD-2-Clause-Patent
>
> @@ -464,8 +465,16 @@ ON_ERROR:
>
> if (HttpService != NULL) {
> HttpCleanService (HttpService, UsingIpv6);
> - if ((HttpService->Tcp4ChildHandle == NULL) && (HttpService-
> >Tcp6ChildHandle == NULL)) {
> - FreePool (HttpService);
> + Status = gBS->UninstallMultipleProtocolInterfaces (
> + &ControllerHandle,
> + &gEfiHttpServiceBindingProtocolGuid,
> + &HttpService->ServiceBinding,
> + NULL
> + );
> + if (!EFI_ERROR (Status)) {
> + if ((HttpService->Tcp4ChildHandle == NULL) && (HttpService-
> >Tcp6ChildHandle == NULL)) {
> + FreePool (HttpService);
> + }
> }
> }
>
> --
> 2.39.1.windows.1
>
>
>
>
>
next prev parent reply other threads:[~2023-06-28 19:06 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <174276A45CE2816B.5513@groups.io>
2023-06-28 0:55 ` [edk2-devel] [PATCH 2/2] NetworkPkg/HttpDxe: fix driver binding start issue Nickle Wang
2023-06-28 19:06 ` Saloni Kasbekar [this message]
2023-06-28 22:29 ` Nickle Wang
2023-06-29 22:28 ` Saloni Kasbekar
2023-07-13 6:54 ` Nickle Wang
2023-07-13 16:12 ` Saloni Kasbekar
2023-07-20 0:26 ` Michael D Kinney
2023-07-20 1:41 ` Michael D Kinney
2023-07-20 16:42 ` Ard Biesheuvel
2023-07-20 17:07 ` Michael D Kinney
2023-07-20 17:19 ` Ard Biesheuvel
2023-07-24 21:53 ` Michael D Kinney
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=BY5PR11MB3861A12CB41A5D6DB1424A88F124A@BY5PR11MB3861.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