mirror of https://github.com/acidanthera/audk.git
71 lines
2.6 KiB
C
71 lines
2.6 KiB
C
/** @file
|
|
|
|
Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#include <Uefi.h>
|
|
#include <Library/PeCoffGetEntryPointLib.h>
|
|
#include <Library/UefiLib.h>
|
|
|
|
#include <Guid/DebugImageInfoTable.h>
|
|
|
|
/**
|
|
Use the EFI Debug Image Table to lookup the FaultAddress and find which PE/COFF image
|
|
it came from. As long as the PE/COFF image contains a debug directory entry a
|
|
string can be returned. For ELF and Mach-O images the string points to the Mach-O or ELF
|
|
image. Microsoft tools contain a pointer to the PDB file that contains the debug information.
|
|
|
|
@param FaultAddress Address to find PE/COFF image for.
|
|
@param ImageBase Return load address of found image
|
|
@param PeCoffSizeOfHeaders Return the size of the PE/COFF header for the image that was found
|
|
|
|
@retval NULL FaultAddress not in a loaded PE/COFF image.
|
|
@retval Path and file name of PE/COFF image.
|
|
|
|
**/
|
|
CHAR8 *
|
|
GetImageName (
|
|
IN UINTN FaultAddress,
|
|
OUT UINTN *ImageBase,
|
|
OUT UINTN *PeCoffSizeOfHeaders
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
EFI_DEBUG_IMAGE_INFO_TABLE_HEADER *DebugTableHeader;
|
|
EFI_DEBUG_IMAGE_INFO *DebugTable;
|
|
UINTN Entry;
|
|
CHAR8 *Address;
|
|
|
|
Status = EfiGetSystemConfigurationTable (&gEfiDebugImageInfoTableGuid, (VOID **)&DebugTableHeader);
|
|
if (EFI_ERROR (Status)) {
|
|
return NULL;
|
|
}
|
|
|
|
DebugTable = DebugTableHeader->EfiDebugImageInfoTable;
|
|
if (DebugTable == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
Address = (CHAR8 *)(UINTN)FaultAddress;
|
|
for (Entry = 0; Entry < DebugTableHeader->TableSize; Entry++, DebugTable++) {
|
|
if (DebugTable->NormalImage != NULL) {
|
|
if ((DebugTable->NormalImage->ImageInfoType == EFI_DEBUG_IMAGE_INFO_TYPE_NORMAL) &&
|
|
(DebugTable->NormalImage->LoadedImageProtocolInstance != NULL))
|
|
{
|
|
if ((Address >= (CHAR8 *)DebugTable->NormalImage->LoadedImageProtocolInstance->ImageBase) &&
|
|
(Address <= ((CHAR8 *)DebugTable->NormalImage->LoadedImageProtocolInstance->ImageBase + DebugTable->NormalImage->LoadedImageProtocolInstance->ImageSize)))
|
|
{
|
|
*ImageBase = (UINTN)DebugTable->NormalImage->LoadedImageProtocolInstance->ImageBase;
|
|
*PeCoffSizeOfHeaders = PeCoffGetSizeOfHeaders ((VOID *)(UINTN)*ImageBase);
|
|
return PeCoffLoaderGetPdbPointer (DebugTable->NormalImage->LoadedImageProtocolInstance->ImageBase);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|