From: Ruiyu Ni Date: Mon, 6 Aug 2018 09:56:37 +0000 (+0800) Subject: IntelFrameworkModulePkg/Csm: Set CSM memory executable X-Git-Tag: edk2-stable201903~1219 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=cd25509b1f85a71b243828955a2cbd655a836eff;p=mirror_edk2.git IntelFrameworkModulePkg/Csm: Set CSM memory executable Commit b22a62be5cdc8fd19d87ec1ecfa5b28fb9be50ad * IntelFrameworkModule/LegacyBios:Use reserved memory for legacy data allocates reserved memory for holding legacy code/data. But with PcdDxeNxMemoryProtectionPolicy set to certain value to forbid execution when code is in certain type of memory, it's possible that a platform forbids execution when code is in reserved memory. The patch calls GCD service to allow such case otherwise CPU exception may occur. Code execution in BSCode area should be enabled by platform by default. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ruiyu Ni Reviewed-by: Star Zeng Acked-by: Laszlo Ersek Reviewed-by: Jian Wang --- diff --git a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c index 8f14687b28..de859555f1 100644 --- a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c +++ b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c @@ -43,7 +43,7 @@ UINTN mStructureTablePages = 0; BOOLEAN mEndOfDxe = FALSE; /** - Allocate memory for legacy usage. + Allocate memory for legacy usage. The memory is executable. @param AllocateType The type of allocation to perform. @param MemoryType The type of memory to allocate. @@ -51,8 +51,8 @@ BOOLEAN mEndOfDxe = FALSE; @param Pages Number of pages to allocate @param Result Result of allocation - @retval EFI_SUCCESS Legacy16 code loaded - @retval Other No protocol installed, unload driver. + @retval EFI_SUCCESS Legacy memory is allocated successfully. + @retval Other Legacy memory is not allocated. **/ EFI_STATUS @@ -64,8 +64,9 @@ AllocateLegacyMemory ( OUT EFI_PHYSICAL_ADDRESS *Result ) { - EFI_STATUS Status; - EFI_PHYSICAL_ADDRESS MemPage; + EFI_STATUS Status; + EFI_PHYSICAL_ADDRESS MemPage; + EFI_GCD_MEMORY_SPACE_DESCRIPTOR MemDesc; // // Allocate Pages of memory less <= StartPageAddress @@ -81,12 +82,29 @@ AllocateLegacyMemory ( // Do not ASSERT on Status error but let caller decide since some cases // memory is already taken but that is ok. // + if (!EFI_ERROR (Status)) { + if (MemoryType != EfiBootServicesCode) { + // + // Make sure that the buffer can be used to store code. + // + Status = gDS->GetMemorySpaceDescriptor (MemPage, &MemDesc); + if (!EFI_ERROR (Status) && (MemDesc.Attributes & EFI_MEMORY_XP) != 0) { + Status = gDS->SetMemorySpaceAttributes ( + MemPage, + EFI_PAGES_TO_SIZE (Pages), + MemDesc.Attributes & (~EFI_MEMORY_XP) + ); + } + if (EFI_ERROR (Status)) { + gBS->FreePages (MemPage, Pages); + } + } + } + if (!EFI_ERROR (Status)) { *Result = (EFI_PHYSICAL_ADDRESS) (UINTN) MemPage; } - // - // If reach here the status = EFI_SUCCESS - // + return Status; }