SMM profile and static paging could not enabled at the same time,
this patch is 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 <jiewen....@intel.com>
Cc: Eric Dong <eric.d...@intel.com>
Cc: Ruiyu Ni <ruiyu...@intel.com>
Cc: Jian J Wang <jian.j.w...@intel.com>
Cc: Laszlo Ersek <ler...@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Star Zeng <star.z...@intel.com>
---
 UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c |  9 +++++++++
 UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c  | 13 ++++++++++---
 UefiCpuPkg/UefiCpuPkg.dec                |  6 +++++-
 UefiCpuPkg/UefiCpuPkg.uni                | 10 ++++++++--
 4 files changed, 32 insertions(+), 6 deletions(-)

diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c 
b/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c
index 6e1ffe7c6287..939ac25a506c 100644
--- a/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c
+++ b/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c
@@ -205,6 +205,15 @@ SetPageTableAttributes (
   //      BIT3: SMM pool guard enabled
   //
   if ((PcdGet8 (PcdHeapGuardPropertyMask) & (BIT3 | BIT2)) != 0) {
+    DEBUG ((DEBUG_INFO, "Don't mark page table as read-only as heap guard is 
enabled\n"));
+    return ;
+  }
+
+  //
+  // Don't mark page table as read-only if SMM profile is enabled.
+  //
+  if (FeaturePcdGet (PcdCpuSmmProfileEnable)) {
+    DEBUG ((DEBUG_INFO, "Don't mark page table as read-only as SMM profile is 
enabled\n"));
     return ;
   }
 
diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c 
b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
index 6478c6c3e355..0fe944fc18cc 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 d2965ba14c2d..36205ab63796 100644
--- a/UefiCpuPkg/UefiCpuPkg.dec
+++ b/UefiCpuPkg/UefiCpuPkg.dec
@@ -84,6 +84,7 @@ [Protocols]
 [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 profile feature 
(PcdCpuSmmStaticPageTable).
   #  This PCD is only for validation purpose. It should be set to false in 
production.<BR><BR>
   #   TRUE  - SMM Profile will be enabled.<BR>
   #   FALSE - SMM Profile will be disabled.<BR>
@@ -225,8 +226,11 @@ [PcdsFixedAtBuild, PcdsPatchableInModule, PcdsDynamic, 
PcdsDynamicEx]
   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.<BR><BR>
+  #  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.
+  #  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).<BR><BR>
   #   TRUE  - SMM uses static page table for all memory.<BR>
   #   FALSE - SMM uses static page table for below 4G memory and use on-demand 
paging for above 4G memory.<BR>
   # @Prompt Use static page table for all memory in SMM.
diff --git a/UefiCpuPkg/UefiCpuPkg.uni b/UefiCpuPkg/UefiCpuPkg.uni
index 9472b185e46e..013d2870a682 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.<BR><BR>\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 profile feature 
(PcdCpuSmmStaticPageTable).\n"
+                                                                               
    "This PCD is only for validation purpose. It should be set to false in 
production.<BR><BR>\n"
                                                                                
    "TRUE  - SMM Profile will be enabled.<BR>\n"
                                                                                
    "FALSE - SMM Profile will be disabled.<BR>"
 
@@ -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.<BR><BR>\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"
+                                                                               
      "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).<BR><BR>\n"
                                                                                
      "TRUE  - SMM uses static page table for all memory.<BR>\n"
                                                                                
      "FALSE - SMM uses static page table for below 4G memory and use on-demand 
paging for above 4G memory.<BR>"
 
-- 
2.7.0.windows.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel

Reply via email to