mirror of https://github.com/acidanthera/audk.git
NetworkPkg: Httpboot will fail the 2nd time result by wrong TCP state.
If the 2nd boot quickly after the first succeed boot, it will function well. But if you wait for some time after 1nd succeed boot and boot again, the TCP state may change from established to closed wait as the http server send fin flag, then boot fail occurred. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Zhang Lubo <lubo.zhang@intel.com> Reviewed-by: Ye Ting <ting.ye@intel.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18783 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c374aa43a1
commit
a2e619821a
|
@ -317,7 +317,11 @@ EfiHttpRequest (
|
|||
if (EFI_ERROR (Status)) {
|
||||
RemotePort = HTTP_DEFAULT_PORT;
|
||||
}
|
||||
|
||||
//
|
||||
// If Configure is TRUE, it indicates the first time to call Request();
|
||||
// If ReConfigure is TRUE, it indicates the request URL is not same
|
||||
// with the previous call to Request();
|
||||
//
|
||||
Configure = TRUE;
|
||||
ReConfigure = TRUE;
|
||||
|
||||
|
@ -427,7 +431,11 @@ EfiHttpRequest (
|
|||
//
|
||||
// The request URL is different from previous calls to Request(), close existing TCP instance.
|
||||
//
|
||||
ASSERT (HttpInstance->Tcp4 != NULL &&HttpInstance->Tcp6 != NULL);
|
||||
if (!HttpInstance->LocalAddressIsIPv6) {
|
||||
ASSERT (HttpInstance->Tcp4 != NULL);
|
||||
} else {
|
||||
ASSERT (HttpInstance->Tcp6 != NULL);
|
||||
}
|
||||
HttpCloseConnection (HttpInstance);
|
||||
EfiHttpCancel (This, NULL);
|
||||
}
|
||||
|
@ -445,13 +453,12 @@ EfiHttpRequest (
|
|||
Wrap->HttpInstance = HttpInstance;
|
||||
Wrap->TcpWrap.Method = Request->Method;
|
||||
|
||||
if (Configure) {
|
||||
Status = HttpInitTcp (HttpInstance, Wrap);
|
||||
if (EFI_ERROR (Status)) {
|
||||
goto Error2;
|
||||
}
|
||||
Status = HttpInitTcp (HttpInstance, Wrap, Configure);
|
||||
if (EFI_ERROR (Status)) {
|
||||
goto Error2;
|
||||
}
|
||||
|
||||
} else {
|
||||
if (!Configure) {
|
||||
//
|
||||
// For the new HTTP token, create TX TCP token events.
|
||||
//
|
||||
|
@ -460,7 +467,7 @@ EfiHttpRequest (
|
|||
goto Error1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Create request message.
|
||||
//
|
||||
|
|
|
@ -1179,7 +1179,7 @@ HttpConnectTcp4 (
|
|||
EFI_TCP4_CONNECTION_STATE Tcp4State;
|
||||
|
||||
|
||||
if (HttpInstance->State != HTTP_STATE_TCP_CONFIGED || HttpInstance->Tcp4 == NULL) {
|
||||
if (HttpInstance->State < HTTP_STATE_TCP_CONFIGED || HttpInstance->Tcp4 == NULL) {
|
||||
return EFI_NOT_READY;
|
||||
}
|
||||
|
||||
|
@ -1196,9 +1196,11 @@ HttpConnectTcp4 (
|
|||
return Status;
|
||||
}
|
||||
|
||||
if (Tcp4State > Tcp4StateEstablished) {
|
||||
if (Tcp4State == Tcp4StateEstablished) {
|
||||
return EFI_SUCCESS;
|
||||
} else if (Tcp4State > Tcp4StateEstablished ) {
|
||||
HttpCloseConnection(HttpInstance);
|
||||
}
|
||||
}
|
||||
|
||||
return HttpCreateConnection (HttpInstance);
|
||||
}
|
||||
|
@ -1221,7 +1223,7 @@ HttpConnectTcp6 (
|
|||
EFI_STATUS Status;
|
||||
EFI_TCP6_CONNECTION_STATE Tcp6State;
|
||||
|
||||
if (HttpInstance->State != HTTP_STATE_TCP_CONFIGED || HttpInstance->Tcp6 == NULL) {
|
||||
if (HttpInstance->State < HTTP_STATE_TCP_CONFIGED || HttpInstance->Tcp6 == NULL) {
|
||||
return EFI_NOT_READY;
|
||||
}
|
||||
|
||||
|
@ -1239,8 +1241,10 @@ HttpConnectTcp6 (
|
|||
return Status;
|
||||
}
|
||||
|
||||
if (Tcp6State > Tcp6StateEstablished) {
|
||||
HttpCloseConnection (HttpInstance);
|
||||
if (Tcp6State == Tcp6StateEstablished) {
|
||||
return EFI_SUCCESS;
|
||||
} else if (Tcp6State > Tcp6StateEstablished ) {
|
||||
HttpCloseConnection(HttpInstance);
|
||||
}
|
||||
|
||||
return HttpCreateConnection (HttpInstance);
|
||||
|
@ -1251,6 +1255,7 @@ HttpConnectTcp6 (
|
|||
|
||||
@param[in] HttpInstance The HTTP instance private data.
|
||||
@param[in] Wrap The HTTP token's wrap data.
|
||||
@param[in] Configure The Flag indicates whether the first time to initialize Tcp.
|
||||
|
||||
@retval EFI_SUCCESS The initialization of TCP instance is done.
|
||||
@retval Others Other error as indicated.
|
||||
|
@ -1259,7 +1264,8 @@ HttpConnectTcp6 (
|
|||
EFI_STATUS
|
||||
HttpInitTcp (
|
||||
IN HTTP_PROTOCOL *HttpInstance,
|
||||
IN HTTP_TOKEN_WRAP *Wrap
|
||||
IN HTTP_TOKEN_WRAP *Wrap,
|
||||
IN BOOLEAN Configure
|
||||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
|
@ -1269,10 +1275,13 @@ HttpInitTcp (
|
|||
//
|
||||
// Configure TCP instance.
|
||||
//
|
||||
Status = HttpConfigureTcp4 (HttpInstance, Wrap);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
if (Configure) {
|
||||
Status = HttpConfigureTcp4 (HttpInstance, Wrap);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Connect TCP.
|
||||
//
|
||||
|
@ -1284,10 +1293,13 @@ HttpInitTcp (
|
|||
//
|
||||
// Configure TCP instance.
|
||||
//
|
||||
Status = HttpConfigureTcp6 (HttpInstance, Wrap);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
if (Configure) {
|
||||
Status = HttpConfigureTcp6 (HttpInstance, Wrap);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Connect TCP.
|
||||
//
|
||||
|
|
|
@ -456,6 +456,7 @@ HttpTcpNotReady (
|
|||
|
||||
@param[in] HttpInstance The HTTP instance private data.
|
||||
@param[in] Wrap The HTTP token's wrap data.
|
||||
@param[in] Configure The Flag indicates whether the first time to initialize Tcp.
|
||||
|
||||
@retval EFI_SUCCESS The initialization of TCP instance is done.
|
||||
@retval Others Other error as indicated.
|
||||
|
@ -464,7 +465,8 @@ HttpTcpNotReady (
|
|||
EFI_STATUS
|
||||
HttpInitTcp (
|
||||
IN HTTP_PROTOCOL *HttpInstance,
|
||||
IN HTTP_TOKEN_WRAP *Wrap
|
||||
IN HTTP_TOKEN_WRAP *Wrap,
|
||||
IN BOOLEAN Configure
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue