]> git.proxmox.com Git - mirror_edk2.git/blob - UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c
UefiCpuPkg/PiSmmCpuDxeSmm: Centralize mPhysicalAddressBits definition
[mirror_edk2.git] / UefiCpuPkg / PiSmmCpuDxeSmm / Ia32 / PageTbl.c
1 /** @file
2 Page table manipulation functions for IA-32 processors
3
4 Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.<BR>
5 Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
6
7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 **/
16
17 #include "PiSmmCpuDxeSmm.h"
18
19 /**
20 Create PageTable for SMM use.
21
22 @return PageTable Address
23
24 **/
25 UINT32
26 SmmInitPageTable (
27 VOID
28 )
29 {
30 UINTN PageFaultHandlerHookAddress;
31 IA32_IDT_GATE_DESCRIPTOR *IdtEntry;
32 EFI_STATUS Status;
33
34 //
35 // Initialize spin lock
36 //
37 InitializeSpinLock (mPFLock);
38
39 mPhysicalAddressBits = 32;
40
41 if (FeaturePcdGet (PcdCpuSmmProfileEnable)) {
42 //
43 // Set own Page Fault entry instead of the default one, because SMM Profile
44 // feature depends on IRET instruction to do Single Step
45 //
46 PageFaultHandlerHookAddress = (UINTN)PageFaultIdtHandlerSmmProfile;
47 IdtEntry = (IA32_IDT_GATE_DESCRIPTOR *) gcSmiIdtr.Base;
48 IdtEntry += EXCEPT_IA32_PAGE_FAULT;
49 IdtEntry->Bits.OffsetLow = (UINT16)PageFaultHandlerHookAddress;
50 IdtEntry->Bits.Reserved_0 = 0;
51 IdtEntry->Bits.GateType = IA32_IDT_GATE_TYPE_INTERRUPT_32;
52 IdtEntry->Bits.OffsetHigh = (UINT16)(PageFaultHandlerHookAddress >> 16);
53 } else {
54 //
55 // Register SMM Page Fault Handler
56 //
57 Status = SmmRegisterExceptionHandler (&mSmmCpuService, EXCEPT_IA32_PAGE_FAULT, SmiPFHandler);
58 ASSERT_EFI_ERROR (Status);
59 }
60
61 //
62 // Additional SMM IDT initialization for SMM stack guard
63 //
64 if (FeaturePcdGet (PcdCpuSmmStackGuard)) {
65 InitializeIDTSmmStackGuard ();
66 }
67 return Gen4GPageTable (TRUE);
68 }
69
70 /**
71 Page Fault handler for SMM use.
72
73 **/
74 VOID
75 SmiDefaultPFHandler (
76 VOID
77 )
78 {
79 CpuDeadLoop ();
80 }
81
82 /**
83 ThePage Fault handler wrapper for SMM use.
84
85 @param InterruptType Defines the type of interrupt or exception that
86 occurred on the processor.This parameter is processor architecture specific.
87 @param SystemContext A pointer to the processor context when
88 the interrupt occurred on the processor.
89 **/
90 VOID
91 EFIAPI
92 SmiPFHandler (
93 IN EFI_EXCEPTION_TYPE InterruptType,
94 IN EFI_SYSTEM_CONTEXT SystemContext
95 )
96 {
97 UINTN PFAddress;
98 UINTN GuardPageAddress;
99 UINTN CpuIndex;
100
101 ASSERT (InterruptType == EXCEPT_IA32_PAGE_FAULT);
102
103 AcquireSpinLock (mPFLock);
104
105 PFAddress = AsmReadCr2 ();
106
107 //
108 // If a page fault occurs in SMRAM range, it might be in a SMM stack guard page,
109 // or SMM page protection violation.
110 //
111 if ((PFAddress >= mCpuHotPlugData.SmrrBase) &&
112 (PFAddress < (mCpuHotPlugData.SmrrBase + mCpuHotPlugData.SmrrSize))) {
113 DumpCpuContext (InterruptType, SystemContext);
114 CpuIndex = GetCpuIndex ();
115 GuardPageAddress = (mSmmStackArrayBase + EFI_PAGE_SIZE + CpuIndex * mSmmStackSize);
116 if ((FeaturePcdGet (PcdCpuSmmStackGuard)) &&
117 (PFAddress >= GuardPageAddress) &&
118 (PFAddress < (GuardPageAddress + EFI_PAGE_SIZE))) {
119 DEBUG ((DEBUG_ERROR, "SMM stack overflow!\n"));
120 } else {
121 if ((SystemContext.SystemContextIa32->ExceptionData & IA32_PF_EC_ID) != 0) {
122 DEBUG ((DEBUG_ERROR, "SMM exception at execution (0x%x)\n", PFAddress));
123 DEBUG_CODE (
124 DumpModuleInfoByIp (*(UINTN *)(UINTN)SystemContext.SystemContextIa32->Esp);
125 );
126 } else {
127 DEBUG ((DEBUG_ERROR, "SMM exception at access (0x%x)\n", PFAddress));
128 DEBUG_CODE (
129 DumpModuleInfoByIp ((UINTN)SystemContext.SystemContextIa32->Eip);
130 );
131 }
132 }
133 CpuDeadLoop ();
134 }
135
136 //
137 // If a page fault occurs in SMM range
138 //
139 if ((PFAddress < mCpuHotPlugData.SmrrBase) ||
140 (PFAddress >= mCpuHotPlugData.SmrrBase + mCpuHotPlugData.SmrrSize)) {
141 DumpCpuContext (InterruptType, SystemContext);
142 if ((SystemContext.SystemContextIa32->ExceptionData & IA32_PF_EC_ID) != 0) {
143 DEBUG ((DEBUG_ERROR, "Code executed on IP(0x%x) out of SMM range after SMM is locked!\n", PFAddress));
144 DEBUG_CODE (
145 DumpModuleInfoByIp (*(UINTN *)(UINTN)SystemContext.SystemContextIa32->Esp);
146 );
147 CpuDeadLoop ();
148 }
149 if (IsSmmCommBufferForbiddenAddress (PFAddress)) {
150 DEBUG ((DEBUG_ERROR, "Access SMM communication forbidden address (0x%x)!\n", PFAddress));
151 DEBUG_CODE (
152 DumpModuleInfoByIp ((UINTN)SystemContext.SystemContextIa32->Eip);
153 );
154 CpuDeadLoop ();
155 }
156 }
157
158 if (FeaturePcdGet (PcdCpuSmmProfileEnable)) {
159 SmmProfilePFHandler (
160 SystemContext.SystemContextIa32->Eip,
161 SystemContext.SystemContextIa32->ExceptionData
162 );
163 } else {
164 DumpCpuContext (InterruptType, SystemContext);
165 SmiDefaultPFHandler ();
166 }
167
168 ReleaseSpinLock (mPFLock);
169 }
170
171 /**
172 This function sets memory attribute for page table.
173 **/
174 VOID
175 SetPageTableAttributes (
176 VOID
177 )
178 {
179 UINTN Index2;
180 UINTN Index3;
181 UINT64 *L1PageTable;
182 UINT64 *L2PageTable;
183 UINT64 *L3PageTable;
184 BOOLEAN IsSplitted;
185 BOOLEAN PageTableSplitted;
186
187 DEBUG ((DEBUG_INFO, "SetPageTableAttributes\n"));
188
189 //
190 // Disable write protection, because we need mark page table to be write protected.
191 // We need *write* page table memory, to mark itself to be *read only*.
192 //
193 AsmWriteCr0 (AsmReadCr0() & ~CR0_WP);
194
195 do {
196 DEBUG ((DEBUG_INFO, "Start...\n"));
197 PageTableSplitted = FALSE;
198
199 L3PageTable = (UINT64 *)GetPageTableBase ();
200
201 SmmSetMemoryAttributesEx ((EFI_PHYSICAL_ADDRESS)(UINTN)L3PageTable, SIZE_4KB, EFI_MEMORY_RO, &IsSplitted);
202 PageTableSplitted = (PageTableSplitted || IsSplitted);
203
204 for (Index3 = 0; Index3 < 4; Index3++) {
205 L2PageTable = (UINT64 *)(UINTN)(L3PageTable[Index3] & ~mAddressEncMask & PAGING_4K_ADDRESS_MASK_64);
206 if (L2PageTable == NULL) {
207 continue;
208 }
209
210 SmmSetMemoryAttributesEx ((EFI_PHYSICAL_ADDRESS)(UINTN)L2PageTable, SIZE_4KB, EFI_MEMORY_RO, &IsSplitted);
211 PageTableSplitted = (PageTableSplitted || IsSplitted);
212
213 for (Index2 = 0; Index2 < SIZE_4KB/sizeof(UINT64); Index2++) {
214 if ((L2PageTable[Index2] & IA32_PG_PS) != 0) {
215 // 2M
216 continue;
217 }
218 L1PageTable = (UINT64 *)(UINTN)(L2PageTable[Index2] & ~mAddressEncMask & PAGING_4K_ADDRESS_MASK_64);
219 if (L1PageTable == NULL) {
220 continue;
221 }
222 SmmSetMemoryAttributesEx ((EFI_PHYSICAL_ADDRESS)(UINTN)L1PageTable, SIZE_4KB, EFI_MEMORY_RO, &IsSplitted);
223 PageTableSplitted = (PageTableSplitted || IsSplitted);
224 }
225 }
226 } while (PageTableSplitted);
227
228 //
229 // Enable write protection, after page table updated.
230 //
231 AsmWriteCr0 (AsmReadCr0() | CR0_WP);
232
233 return ;
234 }