From: Star Zeng Date: Thu, 7 Dec 2017 09:00:48 +0000 (+0800) Subject: UefiCpuPkg PiSmmCpuDxeSmm: SMM profile and static paging mutual exclusion X-Git-Tag: edk2-stable201903~2916 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=1015fb3c1beb27eabd77e97f06f6b1012bacf3d8 UefiCpuPkg PiSmmCpuDxeSmm: SMM profile and static paging mutual exclusion SMM profile and static paging could not be enabled at the same time, this patch is to add check and comments to make sure it. Similar comments are also added for the case of static paging and heap guard for SMM. Cc: Jiewen Yao Cc: Eric Dong Cc: Ruiyu Ni Cc: Jian J Wang Cc: Laszlo Ersek Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Star Zeng Reviewed-by: Eric Dong Reviewed-by: Laszlo Ersek --- diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c b/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c index 6e1ffe7c62..9300a232e4 100644 --- a/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c +++ b/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c @@ -199,12 +199,21 @@ SetPageTableAttributes ( BOOLEAN PageTableSplitted; // - // Don't mark page table as read-only if heap guard is enabled. + // Don't mark page table to read-only if heap guard is enabled. // // BIT2: SMM page guard enabled // BIT3: SMM pool guard enabled // if ((PcdGet8 (PcdHeapGuardPropertyMask) & (BIT3 | BIT2)) != 0) { + DEBUG ((DEBUG_INFO, "Don't mark page table to read-only as heap guard is enabled\n")); + return ; + } + + // + // Don't mark page table to read-only if SMM profile is enabled. + // + if (FeaturePcdGet (PcdCpuSmmProfileEnable)) { + DEBUG ((DEBUG_INFO, "Don't mark page table to read-only as SMM profile is enabled\n")); return ; } diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c index 6478c6c3e3..0fe944fc18 100644 --- a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c +++ b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c @@ -919,17 +919,24 @@ SetPageTableAttributes ( // // Don't do this if // - no static page table; or - // - SMM heap guard feature enabled + // - SMM heap guard feature enabled; or // BIT2: SMM page guard enabled // BIT3: SMM pool guard enabled + // - SMM profile feature enabled // if (!mCpuSmmStaticPageTable || - (PcdGet8 (PcdHeapGuardPropertyMask) & (BIT3 | BIT2)) != 0) { + ((PcdGet8 (PcdHeapGuardPropertyMask) & (BIT3 | BIT2)) != 0) || + FeaturePcdGet (PcdCpuSmmProfileEnable)) { // - // Static paging and heap guard should not be enabled at the same time. + // Static paging and heap guard could not be enabled at the same time. // ASSERT (!(mCpuSmmStaticPageTable && (PcdGet8 (PcdHeapGuardPropertyMask) & (BIT3 | BIT2)) != 0)); + + // + // Static paging and SMM profile could not be enabled at the same time. + // + ASSERT (!(mCpuSmmStaticPageTable && FeaturePcdGet (PcdCpuSmmProfileEnable))); return ; } diff --git a/UefiCpuPkg/UefiCpuPkg.dec b/UefiCpuPkg/UefiCpuPkg.dec index d2965ba14c..6bac23ff52 100644 --- a/UefiCpuPkg/UefiCpuPkg.dec +++ b/UefiCpuPkg/UefiCpuPkg.dec @@ -84,6 +84,7 @@ [PcdsFeatureFlag] ## Indicates if SMM Profile will be enabled. # If enabled, instruction executions in and data accesses to memory outside of SMRAM will be logged. + # It could not be enabled at the same time with SMM static page table feature (PcdCpuSmmStaticPageTable). # This PCD is only for validation purpose. It should be set to false in production.

# TRUE - SMM Profile will be enabled.
# FALSE - SMM Profile will be disabled.
@@ -225,8 +226,11 @@ gUefiCpuPkgTokenSpaceGuid.PcdCpuApTargetCstate|0|UINT8|0x00000007 ## Indicates if SMM uses static page table. - # If enabled, SMM will not use on-demand paging. SMM will build static page table for all memory.

- # This flag only impacts X64 build, because SMM alway builds static page table for IA32. + # If enabled, SMM will not use on-demand paging. SMM will build static page table for all memory. + # This flag only impacts X64 build, because SMM always builds static page table for IA32. + # It could not be enabled at the same time with SMM profile feature (PcdCpuSmmProfileEnable). + # It could not be enabled also at the same time with heap guard feature for SMM + # (PcdHeapGuardPropertyMask in MdeModulePkg).

# TRUE - SMM uses static page table for all memory.
# FALSE - SMM uses static page table for below 4G memory and use on-demand paging for above 4G memory.
# @Prompt Use static page table for all memory in SMM. diff --git a/UefiCpuPkg/UefiCpuPkg.uni b/UefiCpuPkg/UefiCpuPkg.uni index 9472b185e4..a7073b10c8 100644 --- a/UefiCpuPkg/UefiCpuPkg.uni +++ b/UefiCpuPkg/UefiCpuPkg.uni @@ -53,7 +53,10 @@ #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmProfileEnable_PROMPT #language en-US "Enable SMM Profile" -#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmProfileEnable_HELP #language en-US "Indicates if SMM Profile will be enabled. If enabled, instruction executions in and data accesses to memory outside of SMRAM will be logged. This PCD is only for validation purpose. It should be set to false in production.

\n" +#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmProfileEnable_HELP #language en-US "Indicates if SMM Profile will be enabled.\n" + "If enabled, instruction executions in and data accesses to memory outside of SMRAM will be logged.\n" + "It could not be enabled at the same time with SMM static page table feature (PcdCpuSmmStaticPageTable).\n" + "This PCD is only for validation purpose. It should be set to false in production.

\n" "TRUE - SMM Profile will be enabled.
\n" "FALSE - SMM Profile will be disabled.
" @@ -150,8 +153,11 @@ #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStaticPageTable_PROMPT #language en-US "Use static page table for all memory in SMM." #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStaticPageTable_HELP #language en-US "Indicates if SMM uses static page table.\n" - "If enabled, SMM will not use on-demand paging. SMM will build static page table for all memory.

\n" - "This flag only impacts X64 build, because SMM alway builds static page table for IA32.\n" + "If enabled, SMM will not use on-demand paging. SMM will build static page table for all memory.\n" + "This flag only impacts X64 build, because SMM always builds static page table for IA32.\n" + "It could not be enabled at the same time with SMM profile feature (PcdCpuSmmProfileEnable).\n" + "It could not be enabled also at the same time with heap guard feature for SMM\n" + "(PcdHeapGuardPropertyMask in MdeModulePkg).

\n" "TRUE - SMM uses static page table for all memory.
\n" "FALSE - SMM uses static page table for below 4G memory and use on-demand paging for above 4G memory.
"