]> git.proxmox.com Git - mirror_edk2.git/blobdiff - NetworkPkg/IScsiDxe/IScsiDriver.c
OvmfPkg: raise DXEFV size to 13 MB in the traditional platform FDFs
[mirror_edk2.git] / NetworkPkg / IScsiDxe / IScsiDriver.c
index 269c1aec5c9fcfdb9b6f014633ddbc3340625efd..ba4abd4ef585e86c7a681ec5601fa775031798b6 100644 (file)
@@ -1,22 +1,17 @@
 /** @file\r
   The entry point of IScsi driver.\r
 \r
-Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2019, NVIDIA Corporation. All rights reserved.\r
+Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>\r
 (C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR>\r
 \r
-This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
 #include "IScsiImpl.h"\r
 \r
-EFI_DRIVER_BINDING_PROTOCOL gIScsiIp4DriverBinding = {\r
+EFI_DRIVER_BINDING_PROTOCOL  gIScsiIp4DriverBinding = {\r
   IScsiIp4DriverBindingSupported,\r
   IScsiIp4DriverBindingStart,\r
   IScsiIp4DriverBindingStop,\r
@@ -25,7 +20,7 @@ EFI_DRIVER_BINDING_PROTOCOL gIScsiIp4DriverBinding = {
   NULL\r
 };\r
 \r
-EFI_DRIVER_BINDING_PROTOCOL gIScsiIp6DriverBinding = {\r
+EFI_DRIVER_BINDING_PROTOCOL  gIScsiIp6DriverBinding = {\r
   IScsiIp6DriverBindingSupported,\r
   IScsiIp6DriverBindingStart,\r
   IScsiIp6DriverBindingStop,\r
@@ -34,19 +29,19 @@ EFI_DRIVER_BINDING_PROTOCOL gIScsiIp6DriverBinding = {
   NULL\r
 };\r
 \r
-EFI_GUID                    gIScsiV4PrivateGuid = ISCSI_V4_PRIVATE_GUID;\r
-EFI_GUID                    gIScsiV6PrivateGuid = ISCSI_V6_PRIVATE_GUID;\r
-ISCSI_PRIVATE_DATA          *mPrivate           = NULL;\r
+EFI_GUID            gIScsiV4PrivateGuid = ISCSI_V4_PRIVATE_GUID;\r
+EFI_GUID            gIScsiV6PrivateGuid = ISCSI_V6_PRIVATE_GUID;\r
+ISCSI_PRIVATE_DATA  *mPrivate           = NULL;\r
 \r
 /**\r
-  Tests to see if this driver supports the RemainingDevicePath. \r
-\r
-  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This \r
-                                   parameter is ignored by device drivers, and is optional for bus \r
-                                   drivers. For bus drivers, if this parameter is not NULL, then \r
-                                   the bus driver must determine if the bus controller specified \r
-                                   by ControllerHandle and the child controller specified \r
-                                   by RemainingDevicePath are both supported by this \r
+  Tests to see if this driver supports the RemainingDevicePath.\r
+\r
+  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This\r
+                                   parameter is ignored by device drivers, and is optional for bus\r
+                                   drivers. For bus drivers, if this parameter is not NULL, then\r
+                                   the bus driver must determine if the bus controller specified\r
+                                   by ControllerHandle and the child controller specified\r
+                                   by RemainingDevicePath are both supported by this\r
                                    bus driver.\r
 \r
   @retval EFI_SUCCESS              The RemainingDevicePath is supported or NULL.\r
@@ -55,7 +50,7 @@ ISCSI_PRIVATE_DATA          *mPrivate           = NULL;
 **/\r
 EFI_STATUS\r
 IScsiIsDevicePathSupported (\r
-  IN EFI_DEVICE_PATH_PROTOCOL     *RemainingDevicePath OPTIONAL\r
+  IN EFI_DEVICE_PATH_PROTOCOL  *RemainingDevicePath OPTIONAL\r
   )\r
 {\r
   EFI_DEVICE_PATH_PROTOCOL  *CurrentDevicePath;\r
@@ -87,36 +82,37 @@ IScsiIsDevicePathSupported (
 **/\r
 EFI_STATUS\r
 IScsiCheckAip (\r
+  VOID\r
   )\r
 {\r
-  UINTN                            AipHandleCount;\r
-  EFI_HANDLE                       *AipHandleBuffer;\r
-  UINTN                            AipIndex;\r
-  EFI_ADAPTER_INFORMATION_PROTOCOL *Aip;\r
-  EFI_EXT_SCSI_PASS_THRU_PROTOCOL  *ExtScsiPassThru;\r
-  EFI_GUID                         *InfoTypesBuffer;\r
-  UINTN                            InfoTypeBufferCount;\r
-  UINTN                            TypeIndex;\r
-  VOID                             *InfoBlock;\r
-  UINTN                            InfoBlockSize;\r
-  BOOLEAN                          Supported;\r
-  EFI_ADAPTER_INFO_NETWORK_BOOT    *NetworkBoot;\r
-  EFI_STATUS                       Status;\r
-  UINT8                            NetworkBootPolicy;\r
+  UINTN                             AipHandleCount;\r
+  EFI_HANDLE                        *AipHandleBuffer;\r
+  UINTN                             AipIndex;\r
+  EFI_ADAPTER_INFORMATION_PROTOCOL  *Aip;\r
+  EFI_EXT_SCSI_PASS_THRU_PROTOCOL   *ExtScsiPassThru;\r
+  EFI_GUID                          *InfoTypesBuffer;\r
+  UINTN                             InfoTypeBufferCount;\r
+  UINTN                             TypeIndex;\r
+  VOID                              *InfoBlock;\r
+  UINTN                             InfoBlockSize;\r
+  BOOLEAN                           Supported;\r
+  EFI_ADAPTER_INFO_NETWORK_BOOT     *NetworkBoot;\r
+  EFI_STATUS                        Status;\r
+  UINT8                             NetworkBootPolicy;\r
 \r
   //\r
   // Check any AIP instances exist in system.\r
   //\r
   AipHandleCount  = 0;\r
   AipHandleBuffer = NULL;\r
-  Status = gBS->LocateHandleBuffer (\r
-                  ByProtocol,\r
-                  &gEfiAdapterInformationProtocolGuid,\r
-                  NULL,\r
-                  &AipHandleCount,\r
-                  &AipHandleBuffer\r
-                  );\r
-  if (EFI_ERROR (Status) || AipHandleCount == 0) {\r
+  Status          = gBS->LocateHandleBuffer (\r
+                           ByProtocol,\r
+                           &gEfiAdapterInformationProtocolGuid,\r
+                           NULL,\r
+                           &AipHandleCount,\r
+                           &AipHandleBuffer\r
+                           );\r
+  if (EFI_ERROR (Status) || (AipHandleCount == 0)) {\r
     return EFI_NOT_FOUND;\r
   }\r
 \r
@@ -128,7 +124,7 @@ IScsiCheckAip (
     Status = gBS->HandleProtocol (\r
                     AipHandleBuffer[AipIndex],\r
                     &gEfiAdapterInformationProtocolGuid,\r
-                    (VOID *) &Aip\r
+                    (VOID *)&Aip\r
                     );\r
     ASSERT_EFI_ERROR (Status);\r
     ASSERT (Aip != NULL);\r
@@ -136,18 +132,19 @@ IScsiCheckAip (
     Status = gBS->HandleProtocol (\r
                     AipHandleBuffer[AipIndex],\r
                     &gEfiExtScsiPassThruProtocolGuid,\r
-                    (VOID *) &ExtScsiPassThru\r
+                    (VOID *)&ExtScsiPassThru\r
                     );\r
-    if (EFI_ERROR (Status) || ExtScsiPassThru == NULL) {\r
+    if (EFI_ERROR (Status) || (ExtScsiPassThru == NULL)) {\r
       continue;\r
     }\r
 \r
     InfoTypesBuffer     = NULL;\r
     InfoTypeBufferCount = 0;\r
-    Status = Aip->GetSupportedTypes (Aip, &InfoTypesBuffer, &InfoTypeBufferCount);\r
-    if (EFI_ERROR (Status) || InfoTypesBuffer == NULL) {\r
+    Status              = Aip->GetSupportedTypes (Aip, &InfoTypesBuffer, &InfoTypeBufferCount);\r
+    if (EFI_ERROR (Status) || (InfoTypesBuffer == NULL)) {\r
       continue;\r
     }\r
+\r
     //\r
     // Check whether the AIP instance has Network boot information block.\r
     //\r
@@ -169,33 +166,35 @@ IScsiCheckAip (
     //\r
     InfoBlock     = NULL;\r
     InfoBlockSize = 0;\r
-    Status = Aip->GetInformation (Aip, &gEfiAdapterInfoNetworkBootGuid, &InfoBlock, &InfoBlockSize);\r
-    if (EFI_ERROR (Status) || InfoBlock == NULL) {\r
+    Status        = Aip->GetInformation (Aip, &gEfiAdapterInfoNetworkBootGuid, &InfoBlock, &InfoBlockSize);\r
+    if (EFI_ERROR (Status) || (InfoBlock == NULL)) {\r
       continue;\r
     }\r
 \r
     //\r
     // Check whether the network boot policy matches.\r
     //\r
-    NetworkBoot = (EFI_ADAPTER_INFO_NETWORK_BOOT *) InfoBlock;\r
+    NetworkBoot       = (EFI_ADAPTER_INFO_NETWORK_BOOT *)InfoBlock;\r
     NetworkBootPolicy = PcdGet8 (PcdIScsiAIPNetworkBootPolicy);\r
 \r
     if (NetworkBootPolicy == STOP_UEFI_ISCSI_IF_HBA_INSTALL_AIP) {\r
       Status = EFI_SUCCESS;\r
       goto Exit;\r
     }\r
-    if (((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_SUPPORT_IP4) != 0 &&\r
+\r
+    if ((((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_SUPPORT_IP4) != 0) &&\r
          !NetworkBoot->iScsiIpv4BootCapablity) ||\r
-         ((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_SUPPORT_IP6) != 0 &&\r
+        (((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_SUPPORT_IP6) != 0) &&\r
          !NetworkBoot->iScsiIpv6BootCapablity) ||\r
-         ((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_SUPPORT_OFFLOAD) != 0 &&\r
+        (((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_SUPPORT_OFFLOAD) != 0) &&\r
          !NetworkBoot->OffloadCapability) ||\r
-         ((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_SUPPORT_MPIO) != 0 &&\r
+        (((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_SUPPORT_MPIO) != 0) &&\r
          !NetworkBoot->iScsiMpioCapability) ||\r
-         ((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_CONFIGURED_IP4) != 0 &&\r
+        (((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_CONFIGURED_IP4) != 0) &&\r
          !NetworkBoot->iScsiIpv4Boot) ||\r
-         ((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_CONFIGURED_IP6) != 0 &&\r
-         !NetworkBoot->iScsiIpv6Boot)) {\r
+        (((NetworkBootPolicy & STOP_UEFI_ISCSI_IF_AIP_CONFIGURED_IP6) != 0) &&\r
+         !NetworkBoot->iScsiIpv6Boot))\r
+    {\r
       FreePool (InfoBlock);\r
       continue;\r
     }\r
@@ -210,9 +209,11 @@ Exit:
   if (InfoBlock != NULL) {\r
     FreePool (InfoBlock);\r
   }\r
+\r
   if (AipHandleBuffer != NULL) {\r
     FreePool (AipHandleBuffer);\r
   }\r
+\r
   return Status;\r
 }\r
 \r
@@ -221,15 +222,15 @@ Exit:
   IScsiIp4(6)DriverBindingSupported.\r
 \r
   @param[in]  This                 A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
-  @param[in]  ControllerHandle     The handle of the controller to test. This handle \r
-                                   must support a protocol interface that supplies \r
+  @param[in]  ControllerHandle     The handle of the controller to test. This handle\r
+                                   must support a protocol interface that supplies\r
                                    an I/O abstraction to the driver.\r
-  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This \r
-                                   parameter is ignored by device drivers, and is optional for bus \r
-                                   drivers. For bus drivers, if this parameter is not NULL, then \r
-                                   the bus driver must determine if the bus controller specified \r
-                                   by ControllerHandle and the child controller specified \r
-                                   by RemainingDevicePath are both supported by this \r
+  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This\r
+                                   parameter is ignored by device drivers, and is optional for bus\r
+                                   drivers. For bus drivers, if this parameter is not NULL, then\r
+                                   the bus driver must determine if the bus controller specified\r
+                                   by ControllerHandle and the child controller specified\r
+                                   by RemainingDevicePath are both supported by this\r
                                    bus driver.\r
   @param[in]  IpVersion            IP_VERSION_4 or IP_VERSION_6.\r
 \r
@@ -250,23 +251,22 @@ IScsiSupported (
   IN UINT8                        IpVersion\r
   )\r
 {\r
-  EFI_STATUS                Status;\r
-  EFI_GUID                  *IScsiServiceBindingGuid;\r
-  EFI_GUID                  *TcpServiceBindingGuid;\r
-  EFI_GUID                  *DhcpServiceBindingGuid;\r
-  EFI_GUID                  *DnsServiceBindingGuid;\r
+  EFI_STATUS  Status;\r
+  EFI_GUID    *IScsiServiceBindingGuid;\r
+  EFI_GUID    *TcpServiceBindingGuid;\r
+  EFI_GUID    *DhcpServiceBindingGuid;\r
+  EFI_GUID    *DnsServiceBindingGuid;\r
 \r
   if (IpVersion == IP_VERSION_4) {\r
-    IScsiServiceBindingGuid  = &gIScsiV4PrivateGuid;\r
-    TcpServiceBindingGuid    = &gEfiTcp4ServiceBindingProtocolGuid;\r
-    DhcpServiceBindingGuid   = &gEfiDhcp4ServiceBindingProtocolGuid;\r
-    DnsServiceBindingGuid    = &gEfiDns4ServiceBindingProtocolGuid;\r
-\r
+    IScsiServiceBindingGuid = &gIScsiV4PrivateGuid;\r
+    TcpServiceBindingGuid   = &gEfiTcp4ServiceBindingProtocolGuid;\r
+    DhcpServiceBindingGuid  = &gEfiDhcp4ServiceBindingProtocolGuid;\r
+    DnsServiceBindingGuid   = &gEfiDns4ServiceBindingProtocolGuid;\r
   } else {\r
-    IScsiServiceBindingGuid  = &gIScsiV6PrivateGuid;\r
-    TcpServiceBindingGuid    = &gEfiTcp6ServiceBindingProtocolGuid;\r
-    DhcpServiceBindingGuid   = &gEfiDhcp6ServiceBindingProtocolGuid;\r
-    DnsServiceBindingGuid    = &gEfiDns6ServiceBindingProtocolGuid;\r
+    IScsiServiceBindingGuid = &gIScsiV6PrivateGuid;\r
+    TcpServiceBindingGuid   = &gEfiTcp6ServiceBindingProtocolGuid;\r
+    DhcpServiceBindingGuid  = &gEfiDhcp6ServiceBindingProtocolGuid;\r
+    DnsServiceBindingGuid   = &gEfiDns6ServiceBindingProtocolGuid;\r
   }\r
 \r
   Status = gBS->OpenProtocol (\r
@@ -329,7 +329,6 @@ IScsiSupported (
   return EFI_SUCCESS;\r
 }\r
 \r
-\r
 /**\r
   Start to manage the controller. This is the worker function for\r
   IScsiIp4(6)DriverBindingStart.\r
@@ -338,7 +337,7 @@ IScsiSupported (
   @param[in]  ControllerHandle     Handle of the controller.\r
   @param[in]  IpVersion            IP_VERSION_4 or IP_VERSION_6.\r
 \r
-  @retval EFI_SUCCES            This driver was started.\r
+  @retval EFI_SUCCESS           This driver was started.\r
   @retval EFI_ALREADY_STARTED   This driver is already running on this device.\r
   @retval EFI_INVALID_PARAMETER Any input parameter is invalid.\r
   @retval EFI_NOT_FOUND         There is no sufficient information to establish\r
@@ -351,33 +350,33 @@ IScsiSupported (
 **/\r
 EFI_STATUS\r
 IScsiStart (\r
-  IN EFI_HANDLE                   Image,\r
-  IN EFI_HANDLE                   ControllerHandle,\r
-  IN UINT8                        IpVersion\r
+  IN EFI_HANDLE  Image,\r
+  IN EFI_HANDLE  ControllerHandle,\r
+  IN UINT8       IpVersion\r
   )\r
 {\r
-  EFI_STATUS                      Status;\r
-  ISCSI_DRIVER_DATA               *Private;\r
-  LIST_ENTRY                      *Entry;\r
-  LIST_ENTRY                      *NextEntry;\r
-  ISCSI_ATTEMPT_CONFIG_NVDATA     *AttemptConfigData;\r
-  ISCSI_SESSION                   *Session;\r
-  UINT8                           Index;\r
-  EFI_EXT_SCSI_PASS_THRU_PROTOCOL *ExistIScsiExtScsiPassThru;\r
-  ISCSI_DRIVER_DATA               *ExistPrivate;\r
-  UINT8                           *AttemptConfigOrder;\r
-  UINTN                           AttemptConfigOrderSize;\r
-  UINT8                           BootSelected;\r
-  EFI_HANDLE                      *HandleBuffer;\r
-  UINTN                           NumberOfHandles;\r
-  EFI_DEVICE_PATH_PROTOCOL        *DevicePath;\r
-  EFI_GUID                        *IScsiPrivateGuid;\r
-  EFI_GUID                        *TcpServiceBindingGuid;\r
-  BOOLEAN                         NeedUpdate;\r
-  VOID                            *Interface;\r
-  EFI_GUID                        *ProtocolGuid;\r
-  UINT8                           NetworkBootPolicy;\r
-  ISCSI_SESSION_CONFIG_NVDATA     *NvData;\r
+  EFI_STATUS                       Status;\r
+  ISCSI_DRIVER_DATA                *Private;\r
+  LIST_ENTRY                       *Entry;\r
+  LIST_ENTRY                       *NextEntry;\r
+  ISCSI_ATTEMPT_CONFIG_NVDATA      *AttemptConfigData;\r
+  ISCSI_SESSION                    *Session;\r
+  UINT8                            Index;\r
+  EFI_EXT_SCSI_PASS_THRU_PROTOCOL  *ExistIScsiExtScsiPassThru;\r
+  ISCSI_DRIVER_DATA                *ExistPrivate;\r
+  UINT8                            *AttemptConfigOrder;\r
+  UINTN                            AttemptConfigOrderSize;\r
+  UINT8                            BootSelected;\r
+  EFI_HANDLE                       *HandleBuffer;\r
+  UINTN                            NumberOfHandles;\r
+  EFI_DEVICE_PATH_PROTOCOL         *DevicePath;\r
+  EFI_GUID                         *IScsiPrivateGuid;\r
+  EFI_GUID                         *TcpServiceBindingGuid;\r
+  BOOLEAN                          NeedUpdate;\r
+  VOID                             *Interface;\r
+  EFI_GUID                         *ProtocolGuid;\r
+  UINT8                            NetworkBootPolicy;\r
+  ISCSI_SESSION_CONFIG_NVDATA      *NvData;\r
 \r
   //\r
   // Test to see if iSCSI driver supports the given controller.\r
@@ -436,11 +435,11 @@ IScsiStart (
       return EFI_ABORTED;\r
     }\r
   }\r
-  \r
+\r
   //\r
   // Record the incoming NIC info.\r
   //\r
-  Status = IScsiAddNic (ControllerHandle);\r
+  Status = IScsiAddNic (ControllerHandle, Image);\r
   if (EFI_ERROR (Status)) {\r
     return Status;\r
   }\r
@@ -478,13 +477,13 @@ IScsiStart (
                   ControllerHandle,\r
                   EFI_OPEN_PROTOCOL_BY_DRIVER\r
                   );\r
-                  \r
+\r
   if (EFI_ERROR (Status)) {\r
     goto ON_ERROR;\r
   }\r
 \r
   //\r
-  // Always install private protocol no matter what happens later. We need to \r
+  // Always install private protocol no matter what happens later. We need to\r
   // keep the relationship between ControllerHandle and ChildHandle.\r
   //\r
   Status = gBS->InstallProtocolInterface (\r
@@ -496,7 +495,7 @@ IScsiStart (
   if (EFI_ERROR (Status)) {\r
     goto ON_ERROR;\r
   }\r
-  \r
+\r
   if (IpVersion == IP_VERSION_4) {\r
     mPrivate->Ipv6Flag = FALSE;\r
   } else {\r
@@ -522,7 +521,7 @@ IScsiStart (
   if (mPrivate->OneSessionEstablished && mPrivate->EnableMpio) {\r
     AttemptConfigData = NULL;\r
     NET_LIST_FOR_EACH (Entry, &mPrivate->AttemptConfigs) {\r
-     AttemptConfigData = NET_LIST_USER_STRUCT (Entry, ISCSI_ATTEMPT_CONFIG_NVDATA, Link);\r
+      AttemptConfigData = NET_LIST_USER_STRUCT (Entry, ISCSI_ATTEMPT_CONFIG_NVDATA, Link);\r
       if (AttemptConfigData->SessionConfigData.Enabled == ISCSI_ENABLED_FOR_MPIO) {\r
         break;\r
       }\r
@@ -562,7 +561,7 @@ IScsiStart (
       Status = gBS->HandleProtocol (\r
                       HandleBuffer[Index],\r
                       &gEfiDevicePathProtocolGuid,\r
-                      (VOID **) &DevicePath\r
+                      (VOID **)&DevicePath\r
                       );\r
       if (EFI_ERROR (Status)) {\r
         continue;\r
@@ -576,7 +575,7 @@ IScsiStart (
           Status = gBS->HandleProtocol (\r
                           HandleBuffer[Index],\r
                           &gEfiExtScsiPassThruProtocolGuid,\r
-                          (VOID **) &ExistIScsiExtScsiPassThru\r
+                          (VOID **)&ExistIScsiExtScsiPassThru\r
                           );\r
           ASSERT_EFI_ERROR (Status);\r
           break;\r
@@ -626,9 +625,10 @@ IScsiStart (
     // Don't process the attempt that does not associate with the current NIC or\r
     // this attempt is disabled or established.\r
     //\r
-    if (AttemptConfigData->NicIndex != mPrivate->CurrentNic ||\r
-        AttemptConfigData->SessionConfigData.Enabled == ISCSI_DISABLED ||\r
-        AttemptConfigData->ValidPath) {\r
+    if ((AttemptConfigData->NicIndex != mPrivate->CurrentNic) ||\r
+        (AttemptConfigData->SessionConfigData.Enabled == ISCSI_DISABLED) ||\r
+        AttemptConfigData->ValidPath)\r
+    {\r
       continue;\r
     }\r
 \r
@@ -637,9 +637,10 @@ IScsiStart (
     // In default single path mode, don't process attempts configured for multipath.\r
     //\r
     if ((mPrivate->EnableMpio &&\r
-         AttemptConfigData->SessionConfigData.Enabled != ISCSI_ENABLED_FOR_MPIO) ||\r
+         (AttemptConfigData->SessionConfigData.Enabled != ISCSI_ENABLED_FOR_MPIO)) ||\r
         (!mPrivate->EnableMpio &&\r
-         AttemptConfigData->SessionConfigData.Enabled != ISCSI_ENABLED)) {\r
+         (AttemptConfigData->SessionConfigData.Enabled != ISCSI_ENABLED)))\r
+    {\r
       continue;\r
     }\r
 \r
@@ -647,18 +648,21 @@ IScsiStart (
     // Don't process the attempt that fails to get the init/target information from DHCP.\r
     //\r
     if (AttemptConfigData->SessionConfigData.InitiatorInfoFromDhcp &&\r
-        !AttemptConfigData->DhcpSuccess) {\r
-      if (!mPrivate->EnableMpio && mPrivate->ValidSinglePathCount > 0) {\r
+        !AttemptConfigData->DhcpSuccess)\r
+    {\r
+      if (!mPrivate->EnableMpio && (mPrivate->ValidSinglePathCount > 0)) {\r
         mPrivate->ValidSinglePathCount--;\r
       }\r
+\r
       continue;\r
     }\r
 \r
     //\r
     // Don't process the autoconfigure path if it is already established.\r
     //\r
-    if (AttemptConfigData->SessionConfigData.IpMode == IP_MODE_AUTOCONFIG &&\r
-        AttemptConfigData->AutoConfigureSuccess) {\r
+    if ((AttemptConfigData->SessionConfigData.IpMode == IP_MODE_AUTOCONFIG) &&\r
+        AttemptConfigData->AutoConfigureSuccess)\r
+    {\r
       continue;\r
     }\r
 \r
@@ -669,16 +673,20 @@ IScsiStart (
       if (AttemptConfigData->SessionConfigData.IpMode == IP_MODE_IP6) {\r
         continue;\r
       }\r
-      if (AttemptConfigData->SessionConfigData.IpMode == IP_MODE_AUTOCONFIG &&\r
-          AttemptConfigData->AutoConfigureMode == IP_MODE_AUTOCONFIG_IP6) {\r
+\r
+      if ((AttemptConfigData->SessionConfigData.IpMode == IP_MODE_AUTOCONFIG) &&\r
+          (AttemptConfigData->AutoConfigureMode == IP_MODE_AUTOCONFIG_IP6))\r
+      {\r
         continue;\r
       }\r
     } else {\r
       if (AttemptConfigData->SessionConfigData.IpMode == IP_MODE_IP4) {\r
         continue;\r
       }\r
-      if (AttemptConfigData->SessionConfigData.IpMode == IP_MODE_AUTOCONFIG &&\r
-          AttemptConfigData->AutoConfigureMode == IP_MODE_AUTOCONFIG_IP4) {\r
+\r
+      if ((AttemptConfigData->SessionConfigData.IpMode == IP_MODE_AUTOCONFIG) &&\r
+          (AttemptConfigData->AutoConfigureMode == IP_MODE_AUTOCONFIG_IP4))\r
+      {\r
         continue;\r
       }\r
     }\r
@@ -686,7 +694,7 @@ IScsiStart (
     //\r
     // Fill in the Session and init it.\r
     //\r
-    Session = (ISCSI_SESSION *) AllocateZeroPool (sizeof (ISCSI_SESSION));\r
+    Session = (ISCSI_SESSION *)AllocateZeroPool (sizeof (ISCSI_SESSION));\r
     if (Session == NULL) {\r
       Status = EFI_OUT_OF_RESOURCES;\r
       goto ON_ERROR;\r
@@ -698,9 +706,9 @@ IScsiStart (
 \r
     UnicodeSPrint (\r
       mPrivate->PortString,\r
-      (UINTN) ISCSI_NAME_IFR_MAX_SIZE,\r
+      (UINTN)ISCSI_NAME_IFR_MAX_SIZE,\r
       L"Attempt %d",\r
-      (UINTN) AttemptConfigData->AttemptConfigIndex\r
+      (UINTN)AttemptConfigData->AttemptConfigIndex\r
       );\r
 \r
     if (Session->AuthType == ISCSI_AUTH_TYPE_CHAP) {\r
@@ -724,7 +732,7 @@ IScsiStart (
     }\r
 \r
     //\r
-    // Restore the origial user setting which specifies the proxy/virtual iSCSI target to NV region.\r
+    // Restore the original user setting which specifies the proxy/virtual iSCSI target to NV region.\r
     //\r
     NvData = &AttemptConfigData->SessionConfigData;\r
     if (NvData->RedirectFlag) {\r
@@ -746,12 +754,11 @@ IScsiStart (
       // In Single path mode, only the successful attempt will be recorded in iBFT;\r
       // in multi-path mode, all the attempt entries in MPIO will be recorded in iBFT.\r
       //\r
-      if (!mPrivate->EnableMpio && mPrivate->ValidSinglePathCount > 0) {\r
+      if (!mPrivate->EnableMpio && (mPrivate->ValidSinglePathCount > 0)) {\r
         mPrivate->ValidSinglePathCount--;\r
       }\r
 \r
       FreePool (Session);\r
-\r
     } else {\r
       AttemptConfigData->ValidPath = TRUE;\r
 \r
@@ -760,7 +767,7 @@ IScsiStart (
       // TODO: record KRB5 attempt information in the iSCSI device path.\r
       //\r
       if (Session->AuthType == ISCSI_AUTH_TYPE_KRB) {\r
-        if (!mPrivate->EnableMpio && mPrivate->ValidSinglePathCount > 0) {\r
+        if (!mPrivate->EnableMpio && (mPrivate->ValidSinglePathCount > 0)) {\r
           mPrivate->ValidSinglePathCount--;\r
         }\r
 \r
@@ -818,7 +825,7 @@ IScsiStart (
     //\r
     // Reinstall the original ExtScsiPassThru back.\r
     //\r
-    if (mPrivate->OneSessionEstablished && ExistPrivate != NULL) {\r
+    if (mPrivate->OneSessionEstablished && (ExistPrivate != NULL)) {\r
       Status = gBS->InstallProtocolInterface (\r
                       &ExistPrivate->ExtScsiPassThruHandle,\r
                       &gEfiExtScsiPassThruProtocolGuid,\r
@@ -841,8 +848,7 @@ IScsiStart (
   //\r
   // More than one attempt successes.\r
   //\r
-  if (Private->Session != NULL && mPrivate->OneSessionEstablished) {\r
-\r
+  if ((Private->Session != NULL) && mPrivate->OneSessionEstablished) {\r
     AttemptConfigOrder = IScsiGetVariableAndSize (\r
                            L"AttemptOrder",\r
                            &gIScsiConfigGuid,\r
@@ -851,9 +857,11 @@ IScsiStart (
     if (AttemptConfigOrder == NULL) {\r
       goto ON_ERROR;\r
     }\r
+\r
     for (Index = 0; Index < AttemptConfigOrderSize / sizeof (UINT8); Index++) {\r
-      if (AttemptConfigOrder[Index] == mPrivate->BootSelectedIndex ||\r
-          AttemptConfigOrder[Index] == BootSelected) {\r
+      if ((AttemptConfigOrder[Index] == mPrivate->BootSelectedIndex) ||\r
+          (AttemptConfigOrder[Index] == BootSelected))\r
+      {\r
         break;\r
       }\r
     }\r
@@ -891,6 +899,7 @@ IScsiStart (
         if (AttemptConfigOrder[Index] != BootSelected) {\r
           goto ON_ERROR;\r
         }\r
+\r
         mPrivate->BootSelectedIndex = BootSelected;\r
         //\r
         // Clear the resource in ExistPrivate.\r
@@ -899,8 +908,8 @@ IScsiStart (
                ExistPrivate->Controller,\r
                IScsiPrivateGuid,\r
                &ExistPrivate->IScsiIdentifier\r
-               ); \r
-        \r
+               );\r
+\r
         IScsiRemoveNic (ExistPrivate->Controller);\r
         if (ExistPrivate->Session != NULL) {\r
           IScsiSessionAbort (ExistPrivate->Session);\r
@@ -921,7 +930,6 @@ IScsiStart (
 \r
         gBS->CloseEvent (ExistPrivate->ExitBootServiceEvent);\r
         FreePool (ExistPrivate);\r
-\r
       }\r
     } else {\r
       //\r
@@ -931,7 +939,6 @@ IScsiStart (
         NeedUpdate = FALSE;\r
       }\r
     }\r
-\r
   }\r
 \r
   if (NeedUpdate) {\r
@@ -949,6 +956,7 @@ IScsiStart (
     Status = EFI_DEVICE_ERROR;\r
     goto ON_ERROR;\r
   }\r
+\r
   //\r
   // Install the updated device path onto the ExtScsiPassThruHandle.\r
   //\r
@@ -972,7 +980,7 @@ IScsiStart (
                   Image,\r
                   Private->ExtScsiPassThruHandle,\r
                   EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER\r
-                  );              \r
+                  );\r
   if (EFI_ERROR (Status)) {\r
     gBS->UninstallMultipleProtocolInterfaces (\r
            Private->ExtScsiPassThruHandle,\r
@@ -982,7 +990,7 @@ IScsiStart (
            Private->DevicePath,\r
            NULL\r
            );\r
-    \r
+\r
     goto ON_ERROR;\r
   }\r
 \r
@@ -1009,16 +1017,16 @@ ON_ERROR:
 /**\r
   Stops a device controller or a bus controller. This is the worker function for\r
   IScsiIp4(6)DriverBindingStop.\r
-  \r
+\r
   @param[in]  This              A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
-  @param[in]  ControllerHandle  A handle to the device being stopped. The handle must \r
-                                support a bus specific I/O protocol for the driver \r
+  @param[in]  ControllerHandle  A handle to the device being stopped. The handle must\r
+                                support a bus specific I/O protocol for the driver\r
                                 to use to stop the device.\r
   @param[in]  NumberOfChildren  The number of child device handles in ChildHandleBuffer.\r
-  @param[in]  ChildHandleBuffer An array of child handles to be freed. May be NULL \r
+  @param[in]  ChildHandleBuffer An array of child handles to be freed. May be NULL\r
                                 if NumberOfChildren is 0.\r
   @param[in]  IpVersion         IP_VERSION_4 or IP_VERSION_6.\r
-  \r
+\r
   @retval EFI_SUCCESS           The device was stopped.\r
   @retval EFI_DEVICE_ERROR      The device could not be stopped due to a device error.\r
   @retval EFI_INVALID_PARAMETER Child handle is NULL.\r
@@ -1036,16 +1044,15 @@ IScsiStop (
   IN UINT8                        IpVersion\r
   )\r
 {\r
-  EFI_HANDLE                      IScsiController;\r
-  EFI_STATUS                      Status;\r
-  ISCSI_PRIVATE_PROTOCOL          *IScsiIdentifier;\r
-  ISCSI_DRIVER_DATA               *Private;\r
-  EFI_EXT_SCSI_PASS_THRU_PROTOCOL *PassThru;\r
-  ISCSI_CONNECTION                *Conn;\r
-  EFI_GUID                        *ProtocolGuid;\r
-  EFI_GUID                        *TcpServiceBindingGuid;\r
-  EFI_GUID                        *TcpProtocolGuid;\r
-\r
+  EFI_HANDLE                       IScsiController;\r
+  EFI_STATUS                       Status;\r
+  ISCSI_PRIVATE_PROTOCOL           *IScsiIdentifier;\r
+  ISCSI_DRIVER_DATA                *Private;\r
+  EFI_EXT_SCSI_PASS_THRU_PROTOCOL  *PassThru;\r
+  ISCSI_CONNECTION                 *Conn;\r
+  EFI_GUID                         *ProtocolGuid;\r
+  EFI_GUID                         *TcpServiceBindingGuid;\r
+  EFI_GUID                         *TcpProtocolGuid;\r
 \r
   if (NumberOfChildren != 0) {\r
     //\r
@@ -1054,7 +1061,7 @@ IScsiStop (
     Status = gBS->OpenProtocol (\r
                     ChildHandleBuffer[0],\r
                     &gEfiExtScsiPassThruProtocolGuid,\r
-                    (VOID **) &PassThru,\r
+                    (VOID **)&PassThru,\r
                     This->DriverBindingHandle,\r
                     ControllerHandle,\r
                     EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
@@ -1083,7 +1090,7 @@ IScsiStop (
            Private->Image,\r
            Private->ExtScsiPassThruHandle\r
            );\r
-    \r
+\r
     gBS->CloseProtocol (\r
            Conn->TcpIo.Handle,\r
            ProtocolGuid,\r
@@ -1093,19 +1100,20 @@ IScsiStop (
 \r
     return EFI_SUCCESS;\r
   }\r
-  \r
+\r
   //\r
-  // Get the handle of the controller we are controling.\r
+  // Get the handle of the controller we are controlling.\r
   //\r
   if (IpVersion == IP_VERSION_4) {\r
-    ProtocolGuid            = &gIScsiV4PrivateGuid;\r
-    TcpProtocolGuid         = &gEfiTcp4ProtocolGuid;\r
-    TcpServiceBindingGuid   = &gEfiTcp4ServiceBindingProtocolGuid;\r
+    ProtocolGuid          = &gIScsiV4PrivateGuid;\r
+    TcpProtocolGuid       = &gEfiTcp4ProtocolGuid;\r
+    TcpServiceBindingGuid = &gEfiTcp4ServiceBindingProtocolGuid;\r
   } else {\r
-    ProtocolGuid            = &gIScsiV6PrivateGuid;\r
-    TcpProtocolGuid         = &gEfiTcp6ProtocolGuid;\r
-    TcpServiceBindingGuid   = &gEfiTcp6ServiceBindingProtocolGuid;\r
+    ProtocolGuid          = &gIScsiV6PrivateGuid;\r
+    TcpProtocolGuid       = &gEfiTcp6ProtocolGuid;\r
+    TcpServiceBindingGuid = &gEfiTcp6ServiceBindingProtocolGuid;\r
   }\r
+\r
   IScsiController = NetLibGetNicHandle (ControllerHandle, TcpProtocolGuid);\r
   if (IScsiController == NULL) {\r
     return EFI_SUCCESS;\r
@@ -1114,7 +1122,7 @@ IScsiStop (
   Status = gBS->OpenProtocol (\r
                   IScsiController,\r
                   ProtocolGuid,\r
-                  (VOID **) &IScsiIdentifier,\r
+                  (VOID **)&IScsiIdentifier,\r
                   This->DriverBindingHandle,\r
                   ControllerHandle,\r
                   EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
@@ -1133,7 +1141,7 @@ IScsiStop (
                     This->DriverBindingHandle,\r
                     IScsiController\r
                     );\r
-                    \r
+\r
     ASSERT (!EFI_ERROR (Status));\r
 \r
     Status = NetLibDestroyServiceChild (\r
@@ -1150,7 +1158,7 @@ IScsiStop (
          IScsiController,\r
          ProtocolGuid,\r
          &Private->IScsiIdentifier\r
-         ); \r
+         );\r
 \r
   //\r
   // Remove this NIC.\r
@@ -1158,7 +1166,7 @@ IScsiStop (
   IScsiRemoveNic (IScsiController);\r
 \r
   //\r
-  // Update the iSCSI Boot Firware Table.\r
+  // Update the iSCSI Boot Firmware Table.\r
   //\r
   IScsiPublishIbft ();\r
 \r
@@ -1176,33 +1184,33 @@ IScsiStop (
 }\r
 \r
 /**\r
-  Tests to see if this driver supports a given controller. If a child device is provided, \r
+  Tests to see if this driver supports a given controller. If a child device is provided,\r
   it tests to see if this driver supports creating a handle for the specified child device.\r
 \r
-  This function checks to see if the driver specified by This supports the device specified by \r
-  ControllerHandle. Drivers typically use the device path attached to \r
-  ControllerHandle and/or the services from the bus I/O abstraction attached to \r
-  ControllerHandle to determine if the driver supports ControllerHandle. This function \r
-  may be called many times during platform initialization. In order to reduce boot times, the tests \r
-  performed by this function must be very small and take as little time as possible to execute. This \r
-  function must not change the state of any hardware devices, and this function must be aware that the \r
-  device specified by ControllerHandle may already be managed by the same driver or a \r
-  different driver. This function must match its calls to AllocatePages() with FreePages(), \r
-  AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().  \r
-  Since ControllerHandle may have been previously started by the same driver, if a protocol is \r
-  already in the opened state, then it must not be closed with CloseProtocol(). This is required \r
+  This function checks to see if the driver specified by This supports the device specified by\r
+  ControllerHandle. Drivers typically use the device path attached to\r
+  ControllerHandle and/or the services from the bus I/O abstraction attached to\r
+  ControllerHandle to determine if the driver supports ControllerHandle. This function\r
+  may be called many times during platform initialization. In order to reduce boot times, the tests\r
+  performed by this function must be very small and take as little time as possible to execute. This\r
+  function must not change the state of any hardware devices, and this function must be aware that the\r
+  device specified by ControllerHandle may already be managed by the same driver or a\r
+  different driver. This function must match its calls to AllocatePages() with FreePages(),\r
+  AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().\r
+  Since ControllerHandle may have been previously started by the same driver, if a protocol is\r
+  already in the opened state, then it must not be closed with CloseProtocol(). This is required\r
   to guarantee the state of ControllerHandle is not modified by this function.\r
 \r
   @param[in]  This                 A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
-  @param[in]  ControllerHandle     The handle of the controller to test. This handle \r
-                                   must support a protocol interface that supplies \r
+  @param[in]  ControllerHandle     The handle of the controller to test. This handle\r
+                                   must support a protocol interface that supplies\r
                                    an I/O abstraction to the driver.\r
-  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This \r
-                                   parameter is ignored by device drivers, and is optional for bus \r
-                                   drivers. For bus drivers, if this parameter is not NULL, then \r
-                                   the bus driver must determine if the bus controller specified \r
-                                   by ControllerHandle and the child controller specified \r
-                                   by RemainingDevicePath are both supported by this \r
+  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This\r
+                                   parameter is ignored by device drivers, and is optional for bus\r
+                                   drivers. For bus drivers, if this parameter is not NULL, then\r
+                                   the bus driver must determine if the bus controller specified\r
+                                   by ControllerHandle and the child controller specified\r
+                                   by RemainingDevicePath are both supported by this\r
                                    bus driver.\r
 \r
   @retval EFI_SUCCESS              The device specified by ControllerHandle and\r
@@ -1237,28 +1245,28 @@ IScsiIp4DriverBindingSupported (
   Starts a device controller or a bus controller.\r
 \r
   The Start() function is designed to be invoked from the EFI boot service ConnectController().\r
-  As a result, much of the error checking on the parameters to Start() has been moved into this \r
-  common boot service. It is legal to call Start() from other locations, \r
+  As a result, much of the error checking on the parameters to Start() has been moved into this\r
+  common boot service. It is legal to call Start() from other locations,\r
   but the following calling restrictions must be followed or the system behavior will not be deterministic.\r
   1. ControllerHandle must be a valid EFI_HANDLE.\r
   2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned\r
      EFI_DEVICE_PATH_PROTOCOL.\r
   3. Prior to calling Start(), the Supported() function for the driver specified by This must\r
-     have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.  \r
+     have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.\r
 \r
   @param[in]  This                 A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
-  @param[in]  ControllerHandle     The handle of the controller to start. This handle \r
-                                   must support a protocol interface that supplies \r
+  @param[in]  ControllerHandle     The handle of the controller to start. This handle\r
+                                   must support a protocol interface that supplies\r
                                    an I/O abstraction to the driver.\r
-  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This \r
-                                   parameter is ignored by device drivers, and is optional for bus \r
-                                   drivers. For a bus driver, if this parameter is NULL, then handles \r
-                                   for all the children of Controller are created by this driver.  \r
-                                   If this parameter is not NULL and the first Device Path Node is \r
-                                   not the End of Device Path Node, then only the handle for the \r
-                                   child device specified by the first Device Path Node of \r
+  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This\r
+                                   parameter is ignored by device drivers, and is optional for bus\r
+                                   drivers. For a bus driver, if this parameter is NULL, then handles\r
+                                   for all the children of Controller are created by this driver.\r
+                                   If this parameter is not NULL and the first Device Path Node is\r
+                                   not the End of Device Path Node, then only the handle for the\r
+                                   child device specified by the first Device Path Node of\r
                                    RemainingDevicePath is created by this driver.\r
-                                   If the first Device Path Node of RemainingDevicePath is \r
+                                   If the first Device Path Node of RemainingDevicePath is\r
                                    the End of Device Path Node, no child handle is created by this\r
                                    driver.\r
 \r
@@ -1276,7 +1284,7 @@ IScsiIp4DriverBindingStart (
   IN EFI_DEVICE_PATH_PROTOCOL     *RemainingDevicePath OPTIONAL\r
   )\r
 {\r
-  EFI_STATUS        Status;\r
+  EFI_STATUS  Status;\r
 \r
   Status = IScsiStart (This->DriverBindingHandle, ControllerHandle, IP_VERSION_4);\r
   if (Status == EFI_ALREADY_STARTED) {\r
@@ -1288,10 +1296,10 @@ IScsiIp4DriverBindingStart (
 \r
 /**\r
   Stops a device controller or a bus controller.\r
-  \r
-  The Stop() function is designed to be invoked from the EFI boot service DisconnectController(). \r
-  As a result, much of the error checking on the parameters to Stop() has been moved \r
-  into this common boot service. It is legal to call Stop() from other locations, \r
+\r
+  The Stop() function is designed to be invoked from the EFI boot service DisconnectController().\r
+  As a result, much of the error checking on the parameters to Stop() has been moved\r
+  into this common boot service. It is legal to call Stop() from other locations,\r
   but the following calling restrictions must be followed or the system behavior will not be deterministic.\r
   1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this\r
      same driver's Start() function.\r
@@ -1299,13 +1307,13 @@ IScsiIp4DriverBindingStart (
      EFI_HANDLE. In addition, all of these handles must have been created in this driver's\r
      Start() function, and the Start() function must have called OpenProtocol() on\r
      ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.\r
-  \r
+\r
   @param[in]  This              A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
-  @param[in]  ControllerHandle  A handle to the device being stopped. The handle must \r
-                                support a bus specific I/O protocol for the driver \r
+  @param[in]  ControllerHandle  A handle to the device being stopped. The handle must\r
+                                support a bus specific I/O protocol for the driver\r
                                 to use to stop the device.\r
   @param[in]  NumberOfChildren  The number of child device handles in ChildHandleBuffer.\r
-  @param[in]  ChildHandleBuffer An array of child handles to be freed. May be NULL \r
+  @param[in]  ChildHandleBuffer An array of child handles to be freed. May be NULL\r
                                 if NumberOfChildren is 0.\r
 \r
   @retval EFI_SUCCESS           The device was stopped.\r
@@ -1331,33 +1339,33 @@ IScsiIp4DriverBindingStop (
 }\r
 \r
 /**\r
-  Tests to see if this driver supports a given controller. If a child device is provided, \r
+  Tests to see if this driver supports a given controller. If a child device is provided,\r
   it tests to see if this driver supports creating a handle for the specified child device.\r
 \r
-  This function checks to see if the driver specified by This supports the device specified by \r
-  ControllerHandle. Drivers typically use the device path attached to \r
-  ControllerHandle and/or the services from the bus I/O abstraction attached to \r
-  ControllerHandle to determine if the driver supports ControllerHandle. This function \r
-  may be called many times during platform initialization. In order to reduce boot times, the tests \r
-  performed by this function must be very small and take as little time as possible to execute. This \r
-  function must not change the state of any hardware devices, and this function must be aware that the \r
-  device specified by ControllerHandle may already be managed by the same driver or a \r
-  different driver. This function must match its calls to AllocatePages() with FreePages(), \r
-  AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().  \r
-  Since ControllerHandle may have been previously started by the same driver, if a protocol is \r
-  already in the opened state, then it must not be closed with CloseProtocol(). This is required \r
+  This function checks to see if the driver specified by This supports the device specified by\r
+  ControllerHandle. Drivers typically use the device path attached to\r
+  ControllerHandle and/or the services from the bus I/O abstraction attached to\r
+  ControllerHandle to determine if the driver supports ControllerHandle. This function\r
+  may be called many times during platform initialization. In order to reduce boot times, the tests\r
+  performed by this function must be very small and take as little time as possible to execute. This\r
+  function must not change the state of any hardware devices, and this function must be aware that the\r
+  device specified by ControllerHandle may already be managed by the same driver or a\r
+  different driver. This function must match its calls to AllocatePages() with FreePages(),\r
+  AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().\r
+  Since ControllerHandle may have been previously started by the same driver, if a protocol is\r
+  already in the opened state, then it must not be closed with CloseProtocol(). This is required\r
   to guarantee the state of ControllerHandle is not modified by this function.\r
 \r
   @param[in]  This                 A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
-  @param[in]  ControllerHandle     The handle of the controller to test. This handle \r
-                                   must support a protocol interface that supplies \r
+  @param[in]  ControllerHandle     The handle of the controller to test. This handle\r
+                                   must support a protocol interface that supplies\r
                                    an I/O abstraction to the driver.\r
-  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This \r
-                                   parameter is ignored by device drivers, and is optional for bus \r
-                                   drivers. For bus drivers, if this parameter is not NULL, then \r
-                                   the bus driver must determine if the bus controller specified \r
-                                   by ControllerHandle and the child controller specified \r
-                                   by RemainingDevicePath are both supported by this \r
+  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This\r
+                                   parameter is ignored by device drivers, and is optional for bus\r
+                                   drivers. For bus drivers, if this parameter is not NULL, then\r
+                                   the bus driver must determine if the bus controller specified\r
+                                   by ControllerHandle and the child controller specified\r
+                                   by RemainingDevicePath are both supported by this\r
                                    bus driver.\r
 \r
   @retval EFI_SUCCESS              The device specified by ControllerHandle and\r
@@ -1392,28 +1400,28 @@ IScsiIp6DriverBindingSupported (
   Starts a device controller or a bus controller.\r
 \r
   The Start() function is designed to be invoked from the EFI boot service ConnectController().\r
-  As a result, much of the error checking on the parameters to Start() has been moved into this \r
-  common boot service. It is legal to call Start() from other locations, \r
+  As a result, much of the error checking on the parameters to Start() has been moved into this\r
+  common boot service. It is legal to call Start() from other locations,\r
   but the following calling restrictions must be followed or the system behavior will not be deterministic.\r
   1. ControllerHandle must be a valid EFI_HANDLE.\r
   2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned\r
      EFI_DEVICE_PATH_PROTOCOL.\r
   3. Prior to calling Start(), the Supported() function for the driver specified by This must\r
-     have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.  \r
+     have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.\r
 \r
   @param[in]  This                 A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
-  @param[in]  ControllerHandle     The handle of the controller to start. This handle \r
-                                   must support a protocol interface that supplies \r
+  @param[in]  ControllerHandle     The handle of the controller to start. This handle\r
+                                   must support a protocol interface that supplies\r
                                    an I/O abstraction to the driver.\r
-  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This \r
-                                   parameter is ignored by device drivers, and is optional for bus \r
-                                   drivers. For a bus driver, if this parameter is NULL, then handles \r
-                                   for all the children of Controller are created by this driver.  \r
-                                   If this parameter is not NULL and the first Device Path Node is \r
-                                   not the End of Device Path Node, then only the handle for the \r
-                                   child device specified by the first Device Path Node of \r
+  @param[in]  RemainingDevicePath  A pointer to the remaining portion of a device path.  This\r
+                                   parameter is ignored by device drivers, and is optional for bus\r
+                                   drivers. For a bus driver, if this parameter is NULL, then handles\r
+                                   for all the children of Controller are created by this driver.\r
+                                   If this parameter is not NULL and the first Device Path Node is\r
+                                   not the End of Device Path Node, then only the handle for the\r
+                                   child device specified by the first Device Path Node of\r
                                    RemainingDevicePath is created by this driver.\r
-                                   If the first Device Path Node of RemainingDevicePath is \r
+                                   If the first Device Path Node of RemainingDevicePath is\r
                                    the End of Device Path Node, no child handle is created by this\r
                                    driver.\r
 \r
@@ -1431,7 +1439,7 @@ IScsiIp6DriverBindingStart (
   IN EFI_DEVICE_PATH_PROTOCOL     *RemainingDevicePath OPTIONAL\r
   )\r
 {\r
-  EFI_STATUS        Status;\r
+  EFI_STATUS  Status;\r
 \r
   Status = IScsiStart (This->DriverBindingHandle, ControllerHandle, IP_VERSION_6);\r
   if (Status == EFI_ALREADY_STARTED) {\r
@@ -1443,10 +1451,10 @@ IScsiIp6DriverBindingStart (
 \r
 /**\r
   Stops a device controller or a bus controller.\r
-  \r
-  The Stop() function is designed to be invoked from the EFI boot service DisconnectController(). \r
-  As a result, much of the error checking on the parameters to Stop() has been moved \r
-  into this common boot service. It is legal to call Stop() from other locations, \r
+\r
+  The Stop() function is designed to be invoked from the EFI boot service DisconnectController().\r
+  As a result, much of the error checking on the parameters to Stop() has been moved\r
+  into this common boot service. It is legal to call Stop() from other locations,\r
   but the following calling restrictions must be followed or the system behavior will not be deterministic.\r
   1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this\r
      same driver's Start() function.\r
@@ -1454,13 +1462,13 @@ IScsiIp6DriverBindingStart (
      EFI_HANDLE. In addition, all of these handles must have been created in this driver's\r
      Start() function, and the Start() function must have called OpenProtocol() on\r
      ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.\r
-  \r
+\r
   @param[in]  This              A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
-  @param[in]  ControllerHandle  A handle to the device being stopped. The handle must \r
-                                support a bus specific I/O protocol for the driver \r
+  @param[in]  ControllerHandle  A handle to the device being stopped. The handle must\r
+                                support a bus specific I/O protocol for the driver\r
                                 to use to stop the device.\r
   @param[in]  NumberOfChildren  The number of child device handles in ChildHandleBuffer.\r
-  @param[in]  ChildHandleBuffer An array of child handles to be freed. May be NULL \r
+  @param[in]  ChildHandleBuffer An array of child handles to be freed. May be NULL\r
                                 if NumberOfChildren is 0.\r
 \r
   @retval EFI_SUCCESS           The device was stopped.\r
@@ -1500,15 +1508,15 @@ IScsiUnload (
   IN EFI_HANDLE  ImageHandle\r
   )\r
 {\r
-  EFI_STATUS                        Status;\r
-  UINTN                             DeviceHandleCount;\r
-  EFI_HANDLE                        *DeviceHandleBuffer;\r
-  UINTN                             Index;\r
-  EFI_COMPONENT_NAME_PROTOCOL       *ComponentName;\r
-  EFI_COMPONENT_NAME2_PROTOCOL      *ComponentName2;\r
+  EFI_STATUS                    Status;\r
+  UINTN                         DeviceHandleCount;\r
+  EFI_HANDLE                    *DeviceHandleBuffer;\r
+  UINTN                         Index;\r
+  EFI_COMPONENT_NAME_PROTOCOL   *ComponentName;\r
+  EFI_COMPONENT_NAME2_PROTOCOL  *ComponentName2;\r
 \r
   //\r
-  // Try to disonnect the driver from the devices it's controlling.\r
+  // Try to disconnect the driver from the devices it's controlling.\r
   //\r
   Status = gBS->LocateHandleBuffer (\r
                   AllHandles,\r
@@ -1528,11 +1536,13 @@ IScsiUnload (
     Status = IScsiTestManagedDevice (\r
                DeviceHandleBuffer[Index],\r
                gIScsiIp4DriverBinding.DriverBindingHandle,\r
-               &gEfiTcp4ProtocolGuid)\r
-               ;\r
+               &gEfiTcp4ProtocolGuid\r
+               )\r
+    ;\r
     if (EFI_ERROR (Status)) {\r
       continue;\r
     }\r
+\r
     Status = gBS->DisconnectController (\r
                     DeviceHandleBuffer[Index],\r
                     gIScsiIp4DriverBinding.DriverBindingHandle,\r
@@ -1555,6 +1565,7 @@ IScsiUnload (
     if (EFI_ERROR (Status)) {\r
       continue;\r
     }\r
+\r
     Status = gBS->DisconnectController (\r
                     DeviceHandleBuffer[Index],\r
                     gIScsiIp6DriverBinding.DriverBindingHandle,\r
@@ -1572,7 +1583,7 @@ IScsiUnload (
   if (EFI_ERROR (Status)) {\r
     goto ON_EXIT;\r
   }\r
-  \r
+\r
   //\r
   // Uninstall the protocols installed by iSCSI driver.\r
   //\r
@@ -1585,12 +1596,13 @@ IScsiUnload (
   if (EFI_ERROR (Status)) {\r
     goto ON_EXIT;\r
   }\r
-  \r
-  if (gIScsiControllerNameTable!= NULL) {\r
+\r
+  if (gIScsiControllerNameTable != NULL) {\r
     Status = FreeUnicodeStringTable (gIScsiControllerNameTable);\r
     if (EFI_ERROR (Status)) {\r
       goto ON_EXIT;\r
     }\r
+\r
     gIScsiControllerNameTable = NULL;\r
   }\r
 \r
@@ -1601,24 +1613,24 @@ IScsiUnload (
   Status = gBS->HandleProtocol (\r
                   gIScsiIp4DriverBinding.DriverBindingHandle,\r
                   &gEfiComponentNameProtocolGuid,\r
-                  (VOID **) &ComponentName\r
+                  (VOID **)&ComponentName\r
                   );\r
   if (!EFI_ERROR (Status)) {\r
     Status = gBS->UninstallMultipleProtocolInterfaces (\r
-           gIScsiIp4DriverBinding.DriverBindingHandle,\r
-           &gEfiComponentNameProtocolGuid,\r
-           ComponentName,\r
-           NULL\r
-           );\r
+                    gIScsiIp4DriverBinding.DriverBindingHandle,\r
+                    &gEfiComponentNameProtocolGuid,\r
+                    ComponentName,\r
+                    NULL\r
+                    );\r
     if (EFI_ERROR (Status)) {\r
       goto ON_EXIT;\r
     }\r
   }\r
-  \r
+\r
   Status = gBS->HandleProtocol (\r
                   gIScsiIp4DriverBinding.DriverBindingHandle,\r
                   &gEfiComponentName2ProtocolGuid,\r
-                  (VOID **) &ComponentName2\r
+                  (VOID **)&ComponentName2\r
                   );\r
   if (!EFI_ERROR (Status)) {\r
     gBS->UninstallMultipleProtocolInterfaces (\r
@@ -1639,24 +1651,24 @@ IScsiUnload (
   Status = gBS->HandleProtocol (\r
                   gIScsiIp6DriverBinding.DriverBindingHandle,\r
                   &gEfiComponentNameProtocolGuid,\r
-                  (VOID **) &ComponentName\r
+                  (VOID **)&ComponentName\r
                   );\r
   if (!EFI_ERROR (Status)) {\r
     Status = gBS->UninstallMultipleProtocolInterfaces (\r
-           gIScsiIp6DriverBinding.DriverBindingHandle,\r
-           &gEfiComponentNameProtocolGuid,\r
-           ComponentName,\r
-           NULL\r
-           );\r
+                    gIScsiIp6DriverBinding.DriverBindingHandle,\r
+                    &gEfiComponentNameProtocolGuid,\r
+                    ComponentName,\r
+                    NULL\r
+                    );\r
     if (EFI_ERROR (Status)) {\r
       goto ON_EXIT;\r
     }\r
   }\r
-  \r
+\r
   Status = gBS->HandleProtocol (\r
                   gIScsiIp6DriverBinding.DriverBindingHandle,\r
                   &gEfiComponentName2ProtocolGuid,\r
-                  (VOID **) &ComponentName2\r
+                  (VOID **)&ComponentName2\r
                   );\r
   if (!EFI_ERROR (Status)) {\r
     gBS->UninstallMultipleProtocolInterfaces (\r
@@ -1697,7 +1709,7 @@ ON_EXIT:
   if (DeviceHandleBuffer != NULL) {\r
     FreePool (DeviceHandleBuffer);\r
   }\r
-  \r
+\r
   return Status;\r
 }\r
 \r
@@ -1705,11 +1717,11 @@ ON_EXIT:
   This is the declaration of an EFI image entry point. This entry point is\r
   the same for UEFI Applications, UEFI OS Loaders, and UEFI Drivers including\r
   both device drivers and bus drivers.\r
-  \r
+\r
   The entry point for iSCSI driver which initializes the global variables and\r
   installs the driver binding, component name protocol, iSCSI initiator name\r
   protocol and Authentication Info protocol on its image.\r
-  \r
+\r
   @param[in]  ImageHandle       The firmware allocated handle for the UEFI image.\r
   @param[in]  SystemTable       A pointer to the EFI System Table.\r
 \r
@@ -1720,8 +1732,8 @@ ON_EXIT:
 EFI_STATUS\r
 EFIAPI\r
 IScsiDriverEntryPoint (\r
-  IN EFI_HANDLE         ImageHandle,\r
-  IN EFI_SYSTEM_TABLE   *SystemTable\r
+  IN EFI_HANDLE        ImageHandle,\r
+  IN EFI_SYSTEM_TABLE  *SystemTable\r
   )\r
 {\r
   EFI_STATUS                         Status;\r
@@ -1734,7 +1746,7 @@ IScsiDriverEntryPoint (
   Status = gBS->LocateProtocol (\r
                   &gEfiIScsiInitiatorNameProtocolGuid,\r
                   NULL,\r
-                  (VOID **) &IScsiInitiatorName\r
+                  (VOID **)&IScsiInitiatorName\r
                   );\r
   if (!EFI_ERROR (Status)) {\r
     return EFI_ACCESS_DENIED;\r
@@ -1766,7 +1778,7 @@ IScsiDriverEntryPoint (
   if (EFI_ERROR (Status)) {\r
     goto Error1;\r
   }\r
-  \r
+\r
   //\r
   // Install the iSCSI Initiator Name Protocol.\r
   //\r
@@ -1778,11 +1790,13 @@ IScsiDriverEntryPoint (
                   );\r
   if (EFI_ERROR (Status)) {\r
     goto Error2;\r
-  } \r
+  }\r
 \r
   //\r
   // Create the private data structures.\r
   //\r
+  IScsiCHAPInitHashList ();\r
+\r
   mPrivate = AllocateZeroPool (sizeof (ISCSI_PRIVATE_DATA));\r
   if (mPrivate == NULL) {\r
     Status = EFI_OUT_OF_RESOURCES;\r
@@ -1813,7 +1827,7 @@ IScsiDriverEntryPoint (
   //\r
   Status = IScsiCreateKeywords (PcdGet8 (PcdMaxIScsiAttemptNumber));\r
   if (EFI_ERROR (Status)) {\r
-    goto Error5;\r
+    goto Error6;\r
   }\r
 \r
   //\r
@@ -1823,7 +1837,7 @@ IScsiDriverEntryPoint (
   Status = gBS->LocateProtocol (\r
                   &gEfiAuthenticationInfoProtocolGuid,\r
                   NULL,\r
-                  (VOID **) &AuthenticationInfo\r
+                  (VOID **)&AuthenticationInfo\r
                   );\r
   if (Status == EFI_NOT_FOUND) {\r
     Status = gBS->InstallProtocolInterface (\r
@@ -1834,19 +1848,22 @@ IScsiDriverEntryPoint (
                     );\r
     if (EFI_ERROR (Status)) {\r
       goto Error6;\r
-    }    \r
+    }\r
   }\r
 \r
   return EFI_SUCCESS;\r
 \r
 Error6:\r
-  IScsiConfigFormUnload (gIScsiIp4DriverBinding.DriverBindingHandle);\r
+  IScsiCleanAttemptVariable ();\r
 \r
 Error5:\r
-  IScsiCleanAttemptVariable ();\r
+  IScsiConfigFormUnload (gIScsiIp4DriverBinding.DriverBindingHandle);\r
 \r
 Error4:\r
-  FreePool (mPrivate);\r
+  if (mPrivate != NULL) {\r
+    FreePool (mPrivate);\r
+    mPrivate = NULL;\r
+  }\r
 \r
 Error3:\r
   gBS->UninstallMultipleProtocolInterfaces (\r
@@ -1857,29 +1874,18 @@ Error3:
          );\r
 \r
 Error2:\r
-  gBS->UninstallMultipleProtocolInterfaces (\r
-         gIScsiIp6DriverBinding.DriverBindingHandle,\r
-         &gEfiDriverBindingProtocolGuid,\r
-         &gIScsiIp6DriverBinding,\r
-         &gEfiComponentName2ProtocolGuid,\r
-         &gIScsiComponentName2,\r
-         &gEfiComponentNameProtocolGuid,\r
-         &gIScsiComponentName,\r
-         NULL\r
-         );\r
+  EfiLibUninstallDriverBindingComponentName2 (\r
+    &gIScsiIp6DriverBinding,\r
+    &gIScsiComponentName,\r
+    &gIScsiComponentName2\r
+    );\r
 \r
 Error1:\r
-  gBS->UninstallMultipleProtocolInterfaces (\r
-         ImageHandle,\r
-         &gEfiDriverBindingProtocolGuid,\r
-         &gIScsiIp4DriverBinding,\r
-         &gEfiComponentName2ProtocolGuid,\r
-         &gIScsiComponentName2,\r
-         &gEfiComponentNameProtocolGuid,\r
-         &gIScsiComponentName,\r
-         NULL\r
-         );\r
+  EfiLibUninstallDriverBindingComponentName2 (\r
+    &gIScsiIp4DriverBinding,\r
+    &gIScsiComponentName,\r
+    &gIScsiComponentName2\r
+    );\r
 \r
   return Status;\r
 }\r
-\r