From: Laszlo Ersek Date: Tue, 14 Jul 2015 12:02:15 +0000 (+0000) Subject: OvmfPkg: PciHostBridgeDxe: release resources on driver entry failure X-Git-Tag: edk2-stable201903~9318 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=7ee9dc232114206bdfe9c9e5f4d8eb5ed1c917c9;p=mirror_edk2.git OvmfPkg: PciHostBridgeDxe: release resources on driver entry failure The entry point of the driver, InitializePciHostBridge(), leaks resources (and installed protocols) in the following cases: - The first root bridge protocol installation fails. In this case, the host bridge protocol is left installed, but the driver exits with an error. - The second or a later root bridge protocol installation fails. In this case, the host bridge protocol, and all prior root bridge protocols, are left installed, even though the driver exits with an error. Handle errors correctly: roll back / release / uninstall resources when aborting the driver. Cc: Jordan Justen Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek Regression-tested-by: Gabriel Somlo Reviewed-by: Jordan Justen git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17959 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/OvmfPkg/PciHostBridgeDxe/PciHostBridge.c b/OvmfPkg/PciHostBridgeDxe/PciHostBridge.c index 7ca0b6e19b..a5dbe57eb2 100644 --- a/OvmfPkg/PciHostBridgeDxe/PciHostBridge.c +++ b/OvmfPkg/PciHostBridgeDxe/PciHostBridge.c @@ -153,6 +153,32 @@ FreePrivateData: } +/** + Uninitialize and free a root bridge set up with InitRootBridge(). + + On return, the EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL instance and the device path + will have been released, freeing RootBus->Handle as well. + + param[in] RootBus The private PCI_ROOT_BRIDGE_INSTANCE that has been created + with InitRootBridge(), and should be released. +**/ +STATIC +VOID +UninitRootBridge ( + IN PCI_ROOT_BRIDGE_INSTANCE *RootBus + ) +{ + EFI_STATUS Status; + + Status = gBS->UninstallMultipleProtocolInterfaces (RootBus->Handle, + &gEfiDevicePathProtocolGuid, &RootBus->DevicePath, + &gEfiPciRootBridgeIoProtocolGuid, &RootBus->Io, + NULL); + ASSERT_EFI_ERROR (Status); + FreePool (RootBus); +} + + /** Entry point of this driver @@ -174,6 +200,7 @@ InitializePciHostBridge ( UINTN RootBridgeNumber; PCI_HOST_BRIDGE_INSTANCE *HostBridge; PCI_ROOT_BRIDGE_INSTANCE *RootBus; + EFI_STATUS UninstallStatus; mDriverImageHandle = ImageHandle; @@ -196,8 +223,7 @@ InitializePciHostBridge ( NULL ); if (EFI_ERROR (Status)) { - FreePool (HostBridge); - return EFI_DEVICE_ERROR; + goto FreeHostBridge; } for (RootBridgeNumber = 0; @@ -209,12 +235,34 @@ InitializePciHostBridge ( &RootBus ); if (EFI_ERROR (Status)) { - return Status; + goto RollbackProtocols; } InsertTailList (&HostBridge->Head, &RootBus->Link); } return EFI_SUCCESS; + +RollbackProtocols: + while (!IsListEmpty (&HostBridge->Head)) { + LIST_ENTRY *Entry; + + Entry = GetFirstNode (&HostBridge->Head); + RemoveEntryList (Entry); + RootBus = DRIVER_INSTANCE_FROM_LIST_ENTRY (Entry); + UninitRootBridge (RootBus); + } + UninstallStatus = gBS->UninstallMultipleProtocolInterfaces ( + HostBridge->HostBridgeHandle, + &gEfiPciHostBridgeResourceAllocationProtocolGuid, + &HostBridge->ResAlloc, + NULL + ); + ASSERT_EFI_ERROR (UninstallStatus); + +FreeHostBridge: + FreePool (HostBridge); + + return Status; }