public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] NetworkPkg/HttpDxe: TlsChildHandle is not cleared when reset
@ 2020-09-28  6:29 Abner Chang
  2020-09-28  7:21 ` Wu, Jiaxin
  2020-09-29 13:46 ` Maciej Rabeda
  0 siblings, 2 replies; 7+ messages in thread
From: Abner Chang @ 2020-09-28  6:29 UTC (permalink / raw)
  To: devel; +Cc: abner.chang, Maciej Rabeda, Wu Jiaxin, Fu Siyuan, Nickle Wang

BZ #2909,
https://bugzilla.tianocore.org/show_bug.cgi?id=2909

When Http->Configure() is invoked with HttpConfigData set to
NULL to reset the EFI HTTP instance, TLS child instance is
destroyed but HttpInstance->TlsChildHandle is not set to
NULL. After reconfiguring HTTP through Http->Configure()
and sending the HTTP request to HTTPS URL, TLS child
instance is not recreated because
HttpInstance->TlsChildHandle is not NULL.

Signed-off-by: Abner Chang <abner.chang@hpe.com>

Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>
Cc: Wu Jiaxin <jiaxin.wu@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Cc: Nickle Wang <nickle.wang@hpe.com>
---
 NetworkPkg/HttpDxe/HttpProto.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/NetworkPkg/HttpDxe/HttpProto.c b/NetworkPkg/HttpDxe/HttpProto.c
index 3c7c6ff9f0c..afc7db5a726 100644
--- a/NetworkPkg/HttpDxe/HttpProto.c
+++ b/NetworkPkg/HttpDxe/HttpProto.c
@@ -873,6 +873,7 @@ HttpCleanProtocol (
     // Destroy the TLS instance.
     //
     HttpInstance->TlsSb->DestroyChild (HttpInstance->TlsSb, HttpInstance->TlsChildHandle);
+    HttpInstance->TlsChildHandle = NULL;
   }
 
   if (HttpInstance->Tcp4ChildHandle != NULL) {
-- 
2.21.0.windows.1


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

end of thread, other threads:[~2020-10-09 10:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-28  6:29 [PATCH] NetworkPkg/HttpDxe: TlsChildHandle is not cleared when reset Abner Chang
2020-09-28  7:21 ` Wu, Jiaxin
2020-09-29 13:46 ` Maciej Rabeda
2020-10-08 13:50   ` Abner Chang
2020-10-08 16:17     ` [edk2-devel] " Maciej Rabeda
     [not found]     ` <163C10A7913BC273.18560@groups.io>
2020-10-09  9:38       ` Maciej Rabeda
2020-10-09 10:09         ` Abner Chang

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