mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/PeiCore: allocate BootServicesCode memory for PE/COFF images
Ensure that any memory allocated for PE/COFF images is identifiable as a boot services code region, so that we know it requires its executable permissions to be preserved when we tighten mapping permissions later on. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
3b44bb5527
commit
a0ffd7a9ee
|
@ -113,9 +113,10 @@ GetImageReadFunction (
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
PEI_CORE_INSTANCE *Private;
|
PEI_CORE_INSTANCE *Private;
|
||||||
VOID* MemoryBuffer;
|
EFI_PHYSICAL_ADDRESS MemoryBuffer;
|
||||||
|
|
||||||
Private = PEI_CORE_INSTANCE_FROM_PS_THIS (GetPeiServicesTablePointer ());
|
Private = PEI_CORE_INSTANCE_FROM_PS_THIS (GetPeiServicesTablePointer ());
|
||||||
|
MemoryBuffer = 0;
|
||||||
|
|
||||||
if (Private->PeiMemoryInstalled && (((Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME) && PcdGetBool (PcdShadowPeimOnBoot)) ||
|
if (Private->PeiMemoryInstalled && (((Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME) && PcdGetBool (PcdShadowPeimOnBoot)) ||
|
||||||
((Private->HobList.HandoffInformationTable->BootMode == BOOT_ON_S3_RESUME) && PcdGetBool (PcdShadowPeimOnS3Boot))) &&
|
((Private->HobList.HandoffInformationTable->BootMode == BOOT_ON_S3_RESUME) && PcdGetBool (PcdShadowPeimOnS3Boot))) &&
|
||||||
|
@ -125,9 +126,9 @@ GetImageReadFunction (
|
||||||
// compilers that have been tested
|
// compilers that have been tested
|
||||||
//
|
//
|
||||||
if (Private->ShadowedImageRead == NULL) {
|
if (Private->ShadowedImageRead == NULL) {
|
||||||
MemoryBuffer = AllocatePages (0x400 / EFI_PAGE_SIZE + 1);
|
PeiServicesAllocatePages (EfiBootServicesCode, 0x400 / EFI_PAGE_SIZE + 1, &MemoryBuffer);
|
||||||
ASSERT (MemoryBuffer != NULL);
|
ASSERT (MemoryBuffer != 0);
|
||||||
CopyMem (MemoryBuffer, (CONST VOID *) (UINTN) PeiImageReadForShadow, 0x400);
|
CopyMem ((VOID *)(UINTN)MemoryBuffer, (CONST VOID *) (UINTN) PeiImageReadForShadow, 0x400);
|
||||||
Private->ShadowedImageRead = (PE_COFF_LOADER_READ_FILE) (UINTN) MemoryBuffer;
|
Private->ShadowedImageRead = (PE_COFF_LOADER_READ_FILE) (UINTN) MemoryBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -453,12 +454,16 @@ LoadAndRelocatePeCoffImage (
|
||||||
//
|
//
|
||||||
// The PEIM is not assiged valid address, try to allocate page to load it.
|
// The PEIM is not assiged valid address, try to allocate page to load it.
|
||||||
//
|
//
|
||||||
ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS)(UINTN) AllocatePages (EFI_SIZE_TO_PAGES ((UINT32) AlignImageSize));
|
Status = PeiServicesAllocatePages (EfiBootServicesCode,
|
||||||
|
EFI_SIZE_TO_PAGES ((UINT32) AlignImageSize),
|
||||||
|
&ImageContext.ImageAddress);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS)(UINTN) AllocatePages (EFI_SIZE_TO_PAGES ((UINT32) AlignImageSize));
|
Status = PeiServicesAllocatePages (EfiBootServicesCode,
|
||||||
|
EFI_SIZE_TO_PAGES ((UINT32) AlignImageSize),
|
||||||
|
&ImageContext.ImageAddress);
|
||||||
}
|
}
|
||||||
if (ImageContext.ImageAddress != 0) {
|
if (!EFI_ERROR (Status)) {
|
||||||
//
|
//
|
||||||
// Adjust the Image Address to make sure it is section alignment.
|
// Adjust the Image Address to make sure it is section alignment.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue