]> git.proxmox.com Git - mirror_edk2.git/blob - UefiCpuPkg/PiSmmCpuDxeSmm/SmmCpuMemoryManagement.c
UefiCpuPkg/PiSmmCpuDxeSmm: Add SmmMemoryAttribute protocol
[mirror_edk2.git] / UefiCpuPkg / PiSmmCpuDxeSmm / SmmCpuMemoryManagement.c
1 /** @file
2
3 Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 **/
13
14 #include "PiSmmCpuDxeSmm.h"
15
16 #define NEXT_MEMORY_DESCRIPTOR(MemoryDescriptor, Size) \
17 ((EFI_MEMORY_DESCRIPTOR *)((UINT8 *)(MemoryDescriptor) + (Size)))
18
19 #define PREVIOUS_MEMORY_DESCRIPTOR(MemoryDescriptor, Size) \
20 ((EFI_MEMORY_DESCRIPTOR *)((UINT8 *)(MemoryDescriptor) - (Size)))
21
22 EFI_MEMORY_DESCRIPTOR *mUefiMemoryMap;
23 UINTN mUefiMemoryMapSize;
24 UINTN mUefiDescriptorSize;
25
26 PAGE_ATTRIBUTE_TABLE mPageAttributeTable[] = {
27 {Page4K, SIZE_4KB, PAGING_4K_ADDRESS_MASK_64},
28 {Page2M, SIZE_2MB, PAGING_2M_ADDRESS_MASK_64},
29 {Page1G, SIZE_1GB, PAGING_1G_ADDRESS_MASK_64},
30 };
31
32 /**
33 Return page table base.
34
35 @return page table base.
36 **/
37 UINTN
38 GetPageTableBase (
39 VOID
40 )
41 {
42 return (AsmReadCr3 () & PAGING_4K_ADDRESS_MASK_64);
43 }
44
45 /**
46 Return length according to page attributes.
47
48 @param[in] PageAttributes The page attribute of the page entry.
49
50 @return The length of page entry.
51 **/
52 UINTN
53 PageAttributeToLength (
54 IN PAGE_ATTRIBUTE PageAttribute
55 )
56 {
57 UINTN Index;
58 for (Index = 0; Index < sizeof(mPageAttributeTable)/sizeof(mPageAttributeTable[0]); Index++) {
59 if (PageAttribute == mPageAttributeTable[Index].Attribute) {
60 return (UINTN)mPageAttributeTable[Index].Length;
61 }
62 }
63 return 0;
64 }
65
66 /**
67 Return address mask according to page attributes.
68
69 @param[in] PageAttributes The page attribute of the page entry.
70
71 @return The address mask of page entry.
72 **/
73 UINTN
74 PageAttributeToMask (
75 IN PAGE_ATTRIBUTE PageAttribute
76 )
77 {
78 UINTN Index;
79 for (Index = 0; Index < sizeof(mPageAttributeTable)/sizeof(mPageAttributeTable[0]); Index++) {
80 if (PageAttribute == mPageAttributeTable[Index].Attribute) {
81 return (UINTN)mPageAttributeTable[Index].AddressMask;
82 }
83 }
84 return 0;
85 }
86
87 /**
88 Return page table entry to match the address.
89
90 @param[in] Address The address to be checked.
91 @param[out] PageAttributes The page attribute of the page entry.
92
93 @return The page entry.
94 **/
95 VOID *
96 GetPageTableEntry (
97 IN PHYSICAL_ADDRESS Address,
98 OUT PAGE_ATTRIBUTE *PageAttribute
99 )
100 {
101 UINTN Index1;
102 UINTN Index2;
103 UINTN Index3;
104 UINTN Index4;
105 UINT64 *L1PageTable;
106 UINT64 *L2PageTable;
107 UINT64 *L3PageTable;
108 UINT64 *L4PageTable;
109
110 Index4 = ((UINTN)RShiftU64 (Address, 39)) & PAGING_PAE_INDEX_MASK;
111 Index3 = ((UINTN)Address >> 30) & PAGING_PAE_INDEX_MASK;
112 Index2 = ((UINTN)Address >> 21) & PAGING_PAE_INDEX_MASK;
113 Index1 = ((UINTN)Address >> 12) & PAGING_PAE_INDEX_MASK;
114
115 if (sizeof(UINTN) == sizeof(UINT64)) {
116 L4PageTable = (UINT64 *)GetPageTableBase ();
117 if (L4PageTable[Index4] == 0) {
118 *PageAttribute = PageNone;
119 return NULL;
120 }
121
122 L3PageTable = (UINT64 *)(UINTN)(L4PageTable[Index4] & ~mAddressEncMask & PAGING_4K_ADDRESS_MASK_64);
123 } else {
124 L3PageTable = (UINT64 *)GetPageTableBase ();
125 }
126 if (L3PageTable[Index3] == 0) {
127 *PageAttribute = PageNone;
128 return NULL;
129 }
130 if ((L3PageTable[Index3] & IA32_PG_PS) != 0) {
131 // 1G
132 *PageAttribute = Page1G;
133 return &L3PageTable[Index3];
134 }
135
136 L2PageTable = (UINT64 *)(UINTN)(L3PageTable[Index3] & ~mAddressEncMask & PAGING_4K_ADDRESS_MASK_64);
137 if (L2PageTable[Index2] == 0) {
138 *PageAttribute = PageNone;
139 return NULL;
140 }
141 if ((L2PageTable[Index2] & IA32_PG_PS) != 0) {
142 // 2M
143 *PageAttribute = Page2M;
144 return &L2PageTable[Index2];
145 }
146
147 // 4k
148 L1PageTable = (UINT64 *)(UINTN)(L2PageTable[Index2] & ~mAddressEncMask & PAGING_4K_ADDRESS_MASK_64);
149 if ((L1PageTable[Index1] == 0) && (Address != 0)) {
150 *PageAttribute = PageNone;
151 return NULL;
152 }
153 *PageAttribute = Page4K;
154 return &L1PageTable[Index1];
155 }
156
157 /**
158 Return memory attributes of page entry.
159
160 @param[in] PageEntry The page entry.
161
162 @return Memory attributes of page entry.
163 **/
164 UINT64
165 GetAttributesFromPageEntry (
166 IN UINT64 *PageEntry
167 )
168 {
169 UINT64 Attributes;
170 Attributes = 0;
171 if ((*PageEntry & IA32_PG_P) == 0) {
172 Attributes |= EFI_MEMORY_RP;
173 }
174 if ((*PageEntry & IA32_PG_RW) == 0) {
175 Attributes |= EFI_MEMORY_RO;
176 }
177 if ((*PageEntry & IA32_PG_NX) != 0) {
178 Attributes |= EFI_MEMORY_XP;
179 }
180 return Attributes;
181 }
182
183 /**
184 Modify memory attributes of page entry.
185
186 @param[in] PageEntry The page entry.
187 @param[in] Attributes The bit mask of attributes to modify for the memory region.
188 @param[in] IsSet TRUE means to set attributes. FALSE means to clear attributes.
189 @param[out] IsModified TRUE means page table modified. FALSE means page table not modified.
190 **/
191 VOID
192 ConvertPageEntryAttribute (
193 IN UINT64 *PageEntry,
194 IN UINT64 Attributes,
195 IN BOOLEAN IsSet,
196 OUT BOOLEAN *IsModified
197 )
198 {
199 UINT64 CurrentPageEntry;
200 UINT64 NewPageEntry;
201
202 CurrentPageEntry = *PageEntry;
203 NewPageEntry = CurrentPageEntry;
204 if ((Attributes & EFI_MEMORY_RP) != 0) {
205 if (IsSet) {
206 NewPageEntry &= ~(UINT64)IA32_PG_P;
207 } else {
208 NewPageEntry |= IA32_PG_P;
209 }
210 }
211 if ((Attributes & EFI_MEMORY_RO) != 0) {
212 if (IsSet) {
213 NewPageEntry &= ~(UINT64)IA32_PG_RW;
214 } else {
215 NewPageEntry |= IA32_PG_RW;
216 }
217 }
218 if ((Attributes & EFI_MEMORY_XP) != 0) {
219 if (mXdSupported) {
220 if (IsSet) {
221 NewPageEntry |= IA32_PG_NX;
222 } else {
223 NewPageEntry &= ~IA32_PG_NX;
224 }
225 }
226 }
227 *PageEntry = NewPageEntry;
228 if (CurrentPageEntry != NewPageEntry) {
229 *IsModified = TRUE;
230 DEBUG ((DEBUG_VERBOSE, "ConvertPageEntryAttribute 0x%lx", CurrentPageEntry));
231 DEBUG ((DEBUG_VERBOSE, "->0x%lx\n", NewPageEntry));
232 } else {
233 *IsModified = FALSE;
234 }
235 }
236
237 /**
238 This function returns if there is need to split page entry.
239
240 @param[in] BaseAddress The base address to be checked.
241 @param[in] Length The length to be checked.
242 @param[in] PageEntry The page entry to be checked.
243 @param[in] PageAttribute The page attribute of the page entry.
244
245 @retval SplitAttributes on if there is need to split page entry.
246 **/
247 PAGE_ATTRIBUTE
248 NeedSplitPage (
249 IN PHYSICAL_ADDRESS BaseAddress,
250 IN UINT64 Length,
251 IN UINT64 *PageEntry,
252 IN PAGE_ATTRIBUTE PageAttribute
253 )
254 {
255 UINT64 PageEntryLength;
256
257 PageEntryLength = PageAttributeToLength (PageAttribute);
258
259 if (((BaseAddress & (PageEntryLength - 1)) == 0) && (Length >= PageEntryLength)) {
260 return PageNone;
261 }
262
263 if (((BaseAddress & PAGING_2M_MASK) != 0) || (Length < SIZE_2MB)) {
264 return Page4K;
265 }
266
267 return Page2M;
268 }
269
270 /**
271 This function splits one page entry to small page entries.
272
273 @param[in] PageEntry The page entry to be splitted.
274 @param[in] PageAttribute The page attribute of the page entry.
275 @param[in] SplitAttribute How to split the page entry.
276
277 @retval RETURN_SUCCESS The page entry is splitted.
278 @retval RETURN_UNSUPPORTED The page entry does not support to be splitted.
279 @retval RETURN_OUT_OF_RESOURCES No resource to split page entry.
280 **/
281 RETURN_STATUS
282 SplitPage (
283 IN UINT64 *PageEntry,
284 IN PAGE_ATTRIBUTE PageAttribute,
285 IN PAGE_ATTRIBUTE SplitAttribute
286 )
287 {
288 UINT64 BaseAddress;
289 UINT64 *NewPageEntry;
290 UINTN Index;
291
292 ASSERT (PageAttribute == Page2M || PageAttribute == Page1G);
293
294 if (PageAttribute == Page2M) {
295 //
296 // Split 2M to 4K
297 //
298 ASSERT (SplitAttribute == Page4K);
299 if (SplitAttribute == Page4K) {
300 NewPageEntry = AllocatePageTableMemory (1);
301 DEBUG ((DEBUG_VERBOSE, "Split - 0x%x\n", NewPageEntry));
302 if (NewPageEntry == NULL) {
303 return RETURN_OUT_OF_RESOURCES;
304 }
305 BaseAddress = *PageEntry & PAGING_2M_ADDRESS_MASK_64;
306 for (Index = 0; Index < SIZE_4KB / sizeof(UINT64); Index++) {
307 NewPageEntry[Index] = (BaseAddress + SIZE_4KB * Index) | mAddressEncMask | ((*PageEntry) & PAGE_PROGATE_BITS);
308 }
309 (*PageEntry) = (UINT64)(UINTN)NewPageEntry | mAddressEncMask | PAGE_ATTRIBUTE_BITS;
310 return RETURN_SUCCESS;
311 } else {
312 return RETURN_UNSUPPORTED;
313 }
314 } else if (PageAttribute == Page1G) {
315 //
316 // Split 1G to 2M
317 // No need support 1G->4K directly, we should use 1G->2M, then 2M->4K to get more compact page table.
318 //
319 ASSERT (SplitAttribute == Page2M || SplitAttribute == Page4K);
320 if ((SplitAttribute == Page2M || SplitAttribute == Page4K)) {
321 NewPageEntry = AllocatePageTableMemory (1);
322 DEBUG ((DEBUG_VERBOSE, "Split - 0x%x\n", NewPageEntry));
323 if (NewPageEntry == NULL) {
324 return RETURN_OUT_OF_RESOURCES;
325 }
326 BaseAddress = *PageEntry & PAGING_1G_ADDRESS_MASK_64;
327 for (Index = 0; Index < SIZE_4KB / sizeof(UINT64); Index++) {
328 NewPageEntry[Index] = (BaseAddress + SIZE_2MB * Index) | mAddressEncMask | IA32_PG_PS | ((*PageEntry) & PAGE_PROGATE_BITS);
329 }
330 (*PageEntry) = (UINT64)(UINTN)NewPageEntry | mAddressEncMask | PAGE_ATTRIBUTE_BITS;
331 return RETURN_SUCCESS;
332 } else {
333 return RETURN_UNSUPPORTED;
334 }
335 } else {
336 return RETURN_UNSUPPORTED;
337 }
338 }
339
340 /**
341 This function modifies the page attributes for the memory region specified by BaseAddress and
342 Length from their current attributes to the attributes specified by Attributes.
343
344 Caller should make sure BaseAddress and Length is at page boundary.
345
346 @param[in] BaseAddress The physical address that is the start address of a memory region.
347 @param[in] Length The size in bytes of the memory region.
348 @param[in] Attributes The bit mask of attributes to modify for the memory region.
349 @param[in] IsSet TRUE means to set attributes. FALSE means to clear attributes.
350 @param[out] IsSplitted TRUE means page table splitted. FALSE means page table not splitted.
351 @param[out] IsModified TRUE means page table modified. FALSE means page table not modified.
352
353 @retval RETURN_SUCCESS The attributes were modified for the memory region.
354 @retval RETURN_ACCESS_DENIED The attributes for the memory resource range specified by
355 BaseAddress and Length cannot be modified.
356 @retval RETURN_INVALID_PARAMETER Length is zero.
357 Attributes specified an illegal combination of attributes that
358 cannot be set together.
359 @retval RETURN_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of
360 the memory resource range.
361 @retval RETURN_UNSUPPORTED The processor does not support one or more bytes of the memory
362 resource range specified by BaseAddress and Length.
363 The bit mask of attributes is not support for the memory resource
364 range specified by BaseAddress and Length.
365 **/
366 RETURN_STATUS
367 EFIAPI
368 ConvertMemoryPageAttributes (
369 IN PHYSICAL_ADDRESS BaseAddress,
370 IN UINT64 Length,
371 IN UINT64 Attributes,
372 IN BOOLEAN IsSet,
373 OUT BOOLEAN *IsSplitted, OPTIONAL
374 OUT BOOLEAN *IsModified OPTIONAL
375 )
376 {
377 UINT64 *PageEntry;
378 PAGE_ATTRIBUTE PageAttribute;
379 UINTN PageEntryLength;
380 PAGE_ATTRIBUTE SplitAttribute;
381 RETURN_STATUS Status;
382 BOOLEAN IsEntryModified;
383 EFI_PHYSICAL_ADDRESS MaximumSupportMemAddress;
384
385 ASSERT (Attributes != 0);
386 ASSERT ((Attributes & ~(EFI_MEMORY_RP | EFI_MEMORY_RO | EFI_MEMORY_XP)) == 0);
387
388 ASSERT ((BaseAddress & (SIZE_4KB - 1)) == 0);
389 ASSERT ((Length & (SIZE_4KB - 1)) == 0);
390
391 if (Length == 0) {
392 return RETURN_INVALID_PARAMETER;
393 }
394
395 MaximumSupportMemAddress = (EFI_PHYSICAL_ADDRESS)(UINTN)(LShiftU64 (1, mPhysicalAddressBits) - 1);
396 if (BaseAddress > MaximumSupportMemAddress) {
397 return RETURN_UNSUPPORTED;
398 }
399 if (Length > MaximumSupportMemAddress) {
400 return RETURN_UNSUPPORTED;
401 }
402 if ((Length != 0) && (BaseAddress > MaximumSupportMemAddress - (Length - 1))) {
403 return RETURN_UNSUPPORTED;
404 }
405
406 // DEBUG ((DEBUG_ERROR, "ConvertMemoryPageAttributes(%x) - %016lx, %016lx, %02lx\n", IsSet, BaseAddress, Length, Attributes));
407
408 if (IsSplitted != NULL) {
409 *IsSplitted = FALSE;
410 }
411 if (IsModified != NULL) {
412 *IsModified = FALSE;
413 }
414
415 //
416 // Below logic is to check 2M/4K page to make sure we donot waist memory.
417 //
418 while (Length != 0) {
419 PageEntry = GetPageTableEntry (BaseAddress, &PageAttribute);
420 if (PageEntry == NULL) {
421 return RETURN_UNSUPPORTED;
422 }
423 PageEntryLength = PageAttributeToLength (PageAttribute);
424 SplitAttribute = NeedSplitPage (BaseAddress, Length, PageEntry, PageAttribute);
425 if (SplitAttribute == PageNone) {
426 ConvertPageEntryAttribute (PageEntry, Attributes, IsSet, &IsEntryModified);
427 if (IsEntryModified) {
428 if (IsModified != NULL) {
429 *IsModified = TRUE;
430 }
431 }
432 //
433 // Convert success, move to next
434 //
435 BaseAddress += PageEntryLength;
436 Length -= PageEntryLength;
437 } else {
438 Status = SplitPage (PageEntry, PageAttribute, SplitAttribute);
439 if (RETURN_ERROR (Status)) {
440 return RETURN_UNSUPPORTED;
441 }
442 if (IsSplitted != NULL) {
443 *IsSplitted = TRUE;
444 }
445 if (IsModified != NULL) {
446 *IsModified = TRUE;
447 }
448 //
449 // Just split current page
450 // Convert success in next around
451 //
452 }
453 }
454
455 return RETURN_SUCCESS;
456 }
457
458 /**
459 FlushTlb on current processor.
460
461 @param[in,out] Buffer Pointer to private data buffer.
462 **/
463 VOID
464 EFIAPI
465 FlushTlbOnCurrentProcessor (
466 IN OUT VOID *Buffer
467 )
468 {
469 CpuFlushTlb ();
470 }
471
472 /**
473 FlushTlb for all processors.
474 **/
475 VOID
476 FlushTlbForAll (
477 VOID
478 )
479 {
480 UINTN Index;
481
482 FlushTlbOnCurrentProcessor (NULL);
483
484 for (Index = 0; Index < gSmst->NumberOfCpus; Index++) {
485 if (Index != gSmst->CurrentlyExecutingCpu) {
486 // Force to start up AP in blocking mode,
487 SmmBlockingStartupThisAp (FlushTlbOnCurrentProcessor, Index, NULL);
488 // Do not check return status, because AP might not be present in some corner cases.
489 }
490 }
491 }
492
493 /**
494 This function sets the attributes for the memory region specified by BaseAddress and
495 Length from their current attributes to the attributes specified by Attributes.
496
497 @param[in] BaseAddress The physical address that is the start address of a memory region.
498 @param[in] Length The size in bytes of the memory region.
499 @param[in] Attributes The bit mask of attributes to set for the memory region.
500 @param[out] IsSplitted TRUE means page table splitted. FALSE means page table not splitted.
501
502 @retval EFI_SUCCESS The attributes were set for the memory region.
503 @retval EFI_ACCESS_DENIED The attributes for the memory resource range specified by
504 BaseAddress and Length cannot be modified.
505 @retval EFI_INVALID_PARAMETER Length is zero.
506 Attributes specified an illegal combination of attributes that
507 cannot be set together.
508 @retval EFI_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of
509 the memory resource range.
510 @retval EFI_UNSUPPORTED The processor does not support one or more bytes of the memory
511 resource range specified by BaseAddress and Length.
512 The bit mask of attributes is not support for the memory resource
513 range specified by BaseAddress and Length.
514
515 **/
516 EFI_STATUS
517 EFIAPI
518 SmmSetMemoryAttributesEx (
519 IN EFI_PHYSICAL_ADDRESS BaseAddress,
520 IN UINT64 Length,
521 IN UINT64 Attributes,
522 OUT BOOLEAN *IsSplitted OPTIONAL
523 )
524 {
525 EFI_STATUS Status;
526 BOOLEAN IsModified;
527
528 Status = ConvertMemoryPageAttributes (BaseAddress, Length, Attributes, TRUE, IsSplitted, &IsModified);
529 if (!EFI_ERROR(Status)) {
530 if (IsModified) {
531 //
532 // Flush TLB as last step
533 //
534 FlushTlbForAll();
535 }
536 }
537
538 return Status;
539 }
540
541 /**
542 This function clears the attributes for the memory region specified by BaseAddress and
543 Length from their current attributes to the attributes specified by Attributes.
544
545 @param[in] BaseAddress The physical address that is the start address of a memory region.
546 @param[in] Length The size in bytes of the memory region.
547 @param[in] Attributes The bit mask of attributes to clear for the memory region.
548 @param[out] IsSplitted TRUE means page table splitted. FALSE means page table not splitted.
549
550 @retval EFI_SUCCESS The attributes were cleared for the memory region.
551 @retval EFI_ACCESS_DENIED The attributes for the memory resource range specified by
552 BaseAddress and Length cannot be modified.
553 @retval EFI_INVALID_PARAMETER Length is zero.
554 Attributes specified an illegal combination of attributes that
555 cannot be set together.
556 @retval EFI_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of
557 the memory resource range.
558 @retval EFI_UNSUPPORTED The processor does not support one or more bytes of the memory
559 resource range specified by BaseAddress and Length.
560 The bit mask of attributes is not support for the memory resource
561 range specified by BaseAddress and Length.
562
563 **/
564 EFI_STATUS
565 EFIAPI
566 SmmClearMemoryAttributesEx (
567 IN EFI_PHYSICAL_ADDRESS BaseAddress,
568 IN UINT64 Length,
569 IN UINT64 Attributes,
570 OUT BOOLEAN *IsSplitted OPTIONAL
571 )
572 {
573 EFI_STATUS Status;
574 BOOLEAN IsModified;
575
576 Status = ConvertMemoryPageAttributes (BaseAddress, Length, Attributes, FALSE, IsSplitted, &IsModified);
577 if (!EFI_ERROR(Status)) {
578 if (IsModified) {
579 //
580 // Flush TLB as last step
581 //
582 FlushTlbForAll();
583 }
584 }
585
586 return Status;
587 }
588
589 /**
590 This function sets the attributes for the memory region specified by BaseAddress and
591 Length from their current attributes to the attributes specified by Attributes.
592
593 @param[in] BaseAddress The physical address that is the start address of a memory region.
594 @param[in] Length The size in bytes of the memory region.
595 @param[in] Attributes The bit mask of attributes to set for the memory region.
596
597 @retval EFI_SUCCESS The attributes were set for the memory region.
598 @retval EFI_ACCESS_DENIED The attributes for the memory resource range specified by
599 BaseAddress and Length cannot be modified.
600 @retval EFI_INVALID_PARAMETER Length is zero.
601 Attributes specified an illegal combination of attributes that
602 cannot be set together.
603 @retval EFI_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of
604 the memory resource range.
605 @retval EFI_UNSUPPORTED The processor does not support one or more bytes of the memory
606 resource range specified by BaseAddress and Length.
607 The bit mask of attributes is not support for the memory resource
608 range specified by BaseAddress and Length.
609
610 **/
611 EFI_STATUS
612 EFIAPI
613 SmmSetMemoryAttributes (
614 IN EFI_PHYSICAL_ADDRESS BaseAddress,
615 IN UINT64 Length,
616 IN UINT64 Attributes
617 )
618 {
619 return SmmSetMemoryAttributesEx (BaseAddress, Length, Attributes, NULL);
620 }
621
622 /**
623 This function clears the attributes for the memory region specified by BaseAddress and
624 Length from their current attributes to the attributes specified by Attributes.
625
626 @param[in] BaseAddress The physical address that is the start address of a memory region.
627 @param[in] Length The size in bytes of the memory region.
628 @param[in] Attributes The bit mask of attributes to clear for the memory region.
629
630 @retval EFI_SUCCESS The attributes were cleared for the memory region.
631 @retval EFI_ACCESS_DENIED The attributes for the memory resource range specified by
632 BaseAddress and Length cannot be modified.
633 @retval EFI_INVALID_PARAMETER Length is zero.
634 Attributes specified an illegal combination of attributes that
635 cannot be set together.
636 @retval EFI_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of
637 the memory resource range.
638 @retval EFI_UNSUPPORTED The processor does not support one or more bytes of the memory
639 resource range specified by BaseAddress and Length.
640 The bit mask of attributes is not support for the memory resource
641 range specified by BaseAddress and Length.
642
643 **/
644 EFI_STATUS
645 EFIAPI
646 SmmClearMemoryAttributes (
647 IN EFI_PHYSICAL_ADDRESS BaseAddress,
648 IN UINT64 Length,
649 IN UINT64 Attributes
650 )
651 {
652 return SmmClearMemoryAttributesEx (BaseAddress, Length, Attributes, NULL);
653 }
654
655
656
657 /**
658 Retrieves a pointer to the system configuration table from the SMM System Table
659 based on a specified GUID.
660
661 @param[in] TableGuid The pointer to table's GUID type.
662 @param[out] Table The pointer to the table associated with TableGuid in the EFI System Table.
663
664 @retval EFI_SUCCESS A configuration table matching TableGuid was found.
665 @retval EFI_NOT_FOUND A configuration table matching TableGuid could not be found.
666
667 **/
668 EFI_STATUS
669 EFIAPI
670 SmmGetSystemConfigurationTable (
671 IN EFI_GUID *TableGuid,
672 OUT VOID **Table
673 )
674 {
675 UINTN Index;
676
677 ASSERT (TableGuid != NULL);
678 ASSERT (Table != NULL);
679
680 *Table = NULL;
681 for (Index = 0; Index < gSmst->NumberOfTableEntries; Index++) {
682 if (CompareGuid (TableGuid, &(gSmst->SmmConfigurationTable[Index].VendorGuid))) {
683 *Table = gSmst->SmmConfigurationTable[Index].VendorTable;
684 return EFI_SUCCESS;
685 }
686 }
687
688 return EFI_NOT_FOUND;
689 }
690
691 /**
692 This function sets SMM save state buffer to be RW and XP.
693 **/
694 VOID
695 PatchSmmSaveStateMap (
696 VOID
697 )
698 {
699 UINTN Index;
700 UINTN TileCodeSize;
701 UINTN TileDataSize;
702 UINTN TileSize;
703
704 TileCodeSize = GetSmiHandlerSize ();
705 TileCodeSize = ALIGN_VALUE(TileCodeSize, SIZE_4KB);
706 TileDataSize = (SMRAM_SAVE_STATE_MAP_OFFSET - SMM_PSD_OFFSET) + sizeof (SMRAM_SAVE_STATE_MAP);
707 TileDataSize = ALIGN_VALUE(TileDataSize, SIZE_4KB);
708 TileSize = TileDataSize + TileCodeSize - 1;
709 TileSize = 2 * GetPowerOfTwo32 ((UINT32)TileSize);
710
711 DEBUG ((DEBUG_INFO, "PatchSmmSaveStateMap:\n"));
712 for (Index = 0; Index < mMaxNumberOfCpus - 1; Index++) {
713 //
714 // Code
715 //
716 SmmSetMemoryAttributes (
717 mCpuHotPlugData.SmBase[Index] + SMM_HANDLER_OFFSET,
718 TileCodeSize,
719 EFI_MEMORY_RO
720 );
721 SmmClearMemoryAttributes (
722 mCpuHotPlugData.SmBase[Index] + SMM_HANDLER_OFFSET,
723 TileCodeSize,
724 EFI_MEMORY_XP
725 );
726
727 //
728 // Data
729 //
730 SmmClearMemoryAttributes (
731 mCpuHotPlugData.SmBase[Index] + SMM_HANDLER_OFFSET + TileCodeSize,
732 TileSize - TileCodeSize,
733 EFI_MEMORY_RO
734 );
735 SmmSetMemoryAttributes (
736 mCpuHotPlugData.SmBase[Index] + SMM_HANDLER_OFFSET + TileCodeSize,
737 TileSize - TileCodeSize,
738 EFI_MEMORY_XP
739 );
740 }
741
742 //
743 // Code
744 //
745 SmmSetMemoryAttributes (
746 mCpuHotPlugData.SmBase[mMaxNumberOfCpus - 1] + SMM_HANDLER_OFFSET,
747 TileCodeSize,
748 EFI_MEMORY_RO
749 );
750 SmmClearMemoryAttributes (
751 mCpuHotPlugData.SmBase[mMaxNumberOfCpus - 1] + SMM_HANDLER_OFFSET,
752 TileCodeSize,
753 EFI_MEMORY_XP
754 );
755
756 //
757 // Data
758 //
759 SmmClearMemoryAttributes (
760 mCpuHotPlugData.SmBase[mMaxNumberOfCpus - 1] + SMM_HANDLER_OFFSET + TileCodeSize,
761 SIZE_32KB - TileCodeSize,
762 EFI_MEMORY_RO
763 );
764 SmmSetMemoryAttributes (
765 mCpuHotPlugData.SmBase[mMaxNumberOfCpus - 1] + SMM_HANDLER_OFFSET + TileCodeSize,
766 SIZE_32KB - TileCodeSize,
767 EFI_MEMORY_XP
768 );
769 }
770
771 /**
772 This function sets memory attribute according to MemoryAttributesTable.
773 **/
774 VOID
775 SetMemMapAttributes (
776 VOID
777 )
778 {
779 EFI_MEMORY_DESCRIPTOR *MemoryMap;
780 EFI_MEMORY_DESCRIPTOR *MemoryMapStart;
781 UINTN MemoryMapEntryCount;
782 UINTN DescriptorSize;
783 UINTN Index;
784 EDKII_PI_SMM_MEMORY_ATTRIBUTES_TABLE *MemoryAttributesTable;
785
786 SmmGetSystemConfigurationTable (&gEdkiiPiSmmMemoryAttributesTableGuid, (VOID **)&MemoryAttributesTable);
787 if (MemoryAttributesTable == NULL) {
788 DEBUG ((DEBUG_INFO, "MemoryAttributesTable - NULL\n"));
789 return ;
790 }
791
792 DEBUG ((DEBUG_INFO, "MemoryAttributesTable:\n"));
793 DEBUG ((DEBUG_INFO, " Version - 0x%08x\n", MemoryAttributesTable->Version));
794 DEBUG ((DEBUG_INFO, " NumberOfEntries - 0x%08x\n", MemoryAttributesTable->NumberOfEntries));
795 DEBUG ((DEBUG_INFO, " DescriptorSize - 0x%08x\n", MemoryAttributesTable->DescriptorSize));
796
797 MemoryMapEntryCount = MemoryAttributesTable->NumberOfEntries;
798 DescriptorSize = MemoryAttributesTable->DescriptorSize;
799 MemoryMapStart = (EFI_MEMORY_DESCRIPTOR *)(MemoryAttributesTable + 1);
800 MemoryMap = MemoryMapStart;
801 for (Index = 0; Index < MemoryMapEntryCount; Index++) {
802 DEBUG ((DEBUG_INFO, "Entry (0x%x)\n", MemoryMap));
803 DEBUG ((DEBUG_INFO, " Type - 0x%x\n", MemoryMap->Type));
804 DEBUG ((DEBUG_INFO, " PhysicalStart - 0x%016lx\n", MemoryMap->PhysicalStart));
805 DEBUG ((DEBUG_INFO, " VirtualStart - 0x%016lx\n", MemoryMap->VirtualStart));
806 DEBUG ((DEBUG_INFO, " NumberOfPages - 0x%016lx\n", MemoryMap->NumberOfPages));
807 DEBUG ((DEBUG_INFO, " Attribute - 0x%016lx\n", MemoryMap->Attribute));
808 MemoryMap = NEXT_MEMORY_DESCRIPTOR(MemoryMap, DescriptorSize);
809 }
810
811 MemoryMap = MemoryMapStart;
812 for (Index = 0; Index < MemoryMapEntryCount; Index++) {
813 DEBUG ((DEBUG_VERBOSE, "SetAttribute: Memory Entry - 0x%lx, 0x%x\n", MemoryMap->PhysicalStart, MemoryMap->NumberOfPages));
814 switch (MemoryMap->Type) {
815 case EfiRuntimeServicesCode:
816 SmmSetMemoryAttributes (
817 MemoryMap->PhysicalStart,
818 EFI_PAGES_TO_SIZE((UINTN)MemoryMap->NumberOfPages),
819 EFI_MEMORY_RO
820 );
821 break;
822 case EfiRuntimeServicesData:
823 SmmSetMemoryAttributes (
824 MemoryMap->PhysicalStart,
825 EFI_PAGES_TO_SIZE((UINTN)MemoryMap->NumberOfPages),
826 EFI_MEMORY_XP
827 );
828 break;
829 default:
830 SmmSetMemoryAttributes (
831 MemoryMap->PhysicalStart,
832 EFI_PAGES_TO_SIZE((UINTN)MemoryMap->NumberOfPages),
833 EFI_MEMORY_XP
834 );
835 break;
836 }
837 MemoryMap = NEXT_MEMORY_DESCRIPTOR(MemoryMap, DescriptorSize);
838 }
839
840 PatchSmmSaveStateMap ();
841 PatchGdtIdtMap ();
842
843 return ;
844 }
845
846 /**
847 Sort memory map entries based upon PhysicalStart, from low to high.
848
849 @param MemoryMap A pointer to the buffer in which firmware places
850 the current memory map.
851 @param MemoryMapSize Size, in bytes, of the MemoryMap buffer.
852 @param DescriptorSize Size, in bytes, of an individual EFI_MEMORY_DESCRIPTOR.
853 **/
854 STATIC
855 VOID
856 SortMemoryMap (
857 IN OUT EFI_MEMORY_DESCRIPTOR *MemoryMap,
858 IN UINTN MemoryMapSize,
859 IN UINTN DescriptorSize
860 )
861 {
862 EFI_MEMORY_DESCRIPTOR *MemoryMapEntry;
863 EFI_MEMORY_DESCRIPTOR *NextMemoryMapEntry;
864 EFI_MEMORY_DESCRIPTOR *MemoryMapEnd;
865 EFI_MEMORY_DESCRIPTOR TempMemoryMap;
866
867 MemoryMapEntry = MemoryMap;
868 NextMemoryMapEntry = NEXT_MEMORY_DESCRIPTOR (MemoryMapEntry, DescriptorSize);
869 MemoryMapEnd = (EFI_MEMORY_DESCRIPTOR *) ((UINT8 *) MemoryMap + MemoryMapSize);
870 while (MemoryMapEntry < MemoryMapEnd) {
871 while (NextMemoryMapEntry < MemoryMapEnd) {
872 if (MemoryMapEntry->PhysicalStart > NextMemoryMapEntry->PhysicalStart) {
873 CopyMem (&TempMemoryMap, MemoryMapEntry, sizeof(EFI_MEMORY_DESCRIPTOR));
874 CopyMem (MemoryMapEntry, NextMemoryMapEntry, sizeof(EFI_MEMORY_DESCRIPTOR));
875 CopyMem (NextMemoryMapEntry, &TempMemoryMap, sizeof(EFI_MEMORY_DESCRIPTOR));
876 }
877
878 NextMemoryMapEntry = NEXT_MEMORY_DESCRIPTOR (NextMemoryMapEntry, DescriptorSize);
879 }
880
881 MemoryMapEntry = NEXT_MEMORY_DESCRIPTOR (MemoryMapEntry, DescriptorSize);
882 NextMemoryMapEntry = NEXT_MEMORY_DESCRIPTOR (MemoryMapEntry, DescriptorSize);
883 }
884 }
885
886 /**
887 Return if a UEFI memory page should be marked as not present in SMM page table.
888 If the memory map entries type is
889 EfiLoaderCode/Data, EfiBootServicesCode/Data, EfiConventionalMemory,
890 EfiUnusableMemory, EfiACPIReclaimMemory, return TRUE.
891 Or return FALSE.
892
893 @param[in] MemoryMap A pointer to the memory descriptor.
894
895 @return TRUE The memory described will be marked as not present in SMM page table.
896 @return FALSE The memory described will not be marked as not present in SMM page table.
897 **/
898 BOOLEAN
899 IsUefiPageNotPresent (
900 IN EFI_MEMORY_DESCRIPTOR *MemoryMap
901 )
902 {
903 switch (MemoryMap->Type) {
904 case EfiLoaderCode:
905 case EfiLoaderData:
906 case EfiBootServicesCode:
907 case EfiBootServicesData:
908 case EfiConventionalMemory:
909 case EfiUnusableMemory:
910 case EfiACPIReclaimMemory:
911 return TRUE;
912 default:
913 return FALSE;
914 }
915 }
916
917 /**
918 Merge continous memory map entries whose type is
919 EfiLoaderCode/Data, EfiBootServicesCode/Data, EfiConventionalMemory,
920 EfiUnusableMemory, EfiACPIReclaimMemory, because the memory described by
921 these entries will be set as NOT present in SMM page table.
922
923 @param[in, out] MemoryMap A pointer to the buffer in which firmware places
924 the current memory map.
925 @param[in, out] MemoryMapSize A pointer to the size, in bytes, of the
926 MemoryMap buffer. On input, this is the size of
927 the current memory map. On output,
928 it is the size of new memory map after merge.
929 @param[in] DescriptorSize Size, in bytes, of an individual EFI_MEMORY_DESCRIPTOR.
930 **/
931 STATIC
932 VOID
933 MergeMemoryMapForNotPresentEntry (
934 IN OUT EFI_MEMORY_DESCRIPTOR *MemoryMap,
935 IN OUT UINTN *MemoryMapSize,
936 IN UINTN DescriptorSize
937 )
938 {
939 EFI_MEMORY_DESCRIPTOR *MemoryMapEntry;
940 EFI_MEMORY_DESCRIPTOR *MemoryMapEnd;
941 UINT64 MemoryBlockLength;
942 EFI_MEMORY_DESCRIPTOR *NewMemoryMapEntry;
943 EFI_MEMORY_DESCRIPTOR *NextMemoryMapEntry;
944
945 MemoryMapEntry = MemoryMap;
946 NewMemoryMapEntry = MemoryMap;
947 MemoryMapEnd = (EFI_MEMORY_DESCRIPTOR *) ((UINT8 *) MemoryMap + *MemoryMapSize);
948 while ((UINTN)MemoryMapEntry < (UINTN)MemoryMapEnd) {
949 CopyMem (NewMemoryMapEntry, MemoryMapEntry, sizeof(EFI_MEMORY_DESCRIPTOR));
950 NextMemoryMapEntry = NEXT_MEMORY_DESCRIPTOR (MemoryMapEntry, DescriptorSize);
951
952 do {
953 MemoryBlockLength = (UINT64) (EFI_PAGES_TO_SIZE((UINTN)MemoryMapEntry->NumberOfPages));
954 if (((UINTN)NextMemoryMapEntry < (UINTN)MemoryMapEnd) &&
955 IsUefiPageNotPresent(MemoryMapEntry) && IsUefiPageNotPresent(NextMemoryMapEntry) &&
956 ((MemoryMapEntry->PhysicalStart + MemoryBlockLength) == NextMemoryMapEntry->PhysicalStart)) {
957 MemoryMapEntry->NumberOfPages += NextMemoryMapEntry->NumberOfPages;
958 if (NewMemoryMapEntry != MemoryMapEntry) {
959 NewMemoryMapEntry->NumberOfPages += NextMemoryMapEntry->NumberOfPages;
960 }
961
962 NextMemoryMapEntry = NEXT_MEMORY_DESCRIPTOR (NextMemoryMapEntry, DescriptorSize);
963 continue;
964 } else {
965 MemoryMapEntry = PREVIOUS_MEMORY_DESCRIPTOR (NextMemoryMapEntry, DescriptorSize);
966 break;
967 }
968 } while (TRUE);
969
970 MemoryMapEntry = NEXT_MEMORY_DESCRIPTOR (MemoryMapEntry, DescriptorSize);
971 NewMemoryMapEntry = NEXT_MEMORY_DESCRIPTOR (NewMemoryMapEntry, DescriptorSize);
972 }
973
974 *MemoryMapSize = (UINTN)NewMemoryMapEntry - (UINTN)MemoryMap;
975
976 return ;
977 }
978
979 /**
980 This function caches the UEFI memory map information.
981 **/
982 VOID
983 GetUefiMemoryMap (
984 VOID
985 )
986 {
987 EFI_STATUS Status;
988 UINTN MapKey;
989 UINT32 DescriptorVersion;
990 EFI_MEMORY_DESCRIPTOR *MemoryMap;
991 UINTN UefiMemoryMapSize;
992
993 DEBUG ((DEBUG_INFO, "GetUefiMemoryMap\n"));
994
995 UefiMemoryMapSize = 0;
996 MemoryMap = NULL;
997 Status = gBS->GetMemoryMap (
998 &UefiMemoryMapSize,
999 MemoryMap,
1000 &MapKey,
1001 &mUefiDescriptorSize,
1002 &DescriptorVersion
1003 );
1004 ASSERT (Status == EFI_BUFFER_TOO_SMALL);
1005
1006 do {
1007 Status = gBS->AllocatePool (EfiBootServicesData, UefiMemoryMapSize, (VOID **)&MemoryMap);
1008 ASSERT (MemoryMap != NULL);
1009 if (MemoryMap == NULL) {
1010 return ;
1011 }
1012
1013 Status = gBS->GetMemoryMap (
1014 &UefiMemoryMapSize,
1015 MemoryMap,
1016 &MapKey,
1017 &mUefiDescriptorSize,
1018 &DescriptorVersion
1019 );
1020 if (EFI_ERROR (Status)) {
1021 gBS->FreePool (MemoryMap);
1022 MemoryMap = NULL;
1023 }
1024 } while (Status == EFI_BUFFER_TOO_SMALL);
1025
1026 if (MemoryMap == NULL) {
1027 return ;
1028 }
1029
1030 SortMemoryMap (MemoryMap, UefiMemoryMapSize, mUefiDescriptorSize);
1031 MergeMemoryMapForNotPresentEntry (MemoryMap, &UefiMemoryMapSize, mUefiDescriptorSize);
1032
1033 mUefiMemoryMapSize = UefiMemoryMapSize;
1034 mUefiMemoryMap = AllocateCopyPool (UefiMemoryMapSize, MemoryMap);
1035 ASSERT (mUefiMemoryMap != NULL);
1036
1037 gBS->FreePool (MemoryMap);
1038 }
1039
1040 /**
1041 This function sets UEFI memory attribute according to UEFI memory map.
1042
1043 The normal memory region is marked as not present, such as
1044 EfiLoaderCode/Data, EfiBootServicesCode/Data, EfiConventionalMemory,
1045 EfiUnusableMemory, EfiACPIReclaimMemory.
1046 **/
1047 VOID
1048 SetUefiMemMapAttributes (
1049 VOID
1050 )
1051 {
1052 EFI_STATUS Status;
1053 EFI_MEMORY_DESCRIPTOR *MemoryMap;
1054 UINTN MemoryMapEntryCount;
1055 UINTN Index;
1056
1057 DEBUG ((DEBUG_INFO, "SetUefiMemMapAttributes\n"));
1058
1059 if (mUefiMemoryMap == NULL) {
1060 DEBUG ((DEBUG_INFO, "UefiMemoryMap - NULL\n"));
1061 return ;
1062 }
1063
1064 MemoryMapEntryCount = mUefiMemoryMapSize/mUefiDescriptorSize;
1065 MemoryMap = mUefiMemoryMap;
1066 for (Index = 0; Index < MemoryMapEntryCount; Index++) {
1067 if (IsUefiPageNotPresent(MemoryMap)) {
1068 Status = SmmSetMemoryAttributes (
1069 MemoryMap->PhysicalStart,
1070 EFI_PAGES_TO_SIZE((UINTN)MemoryMap->NumberOfPages),
1071 EFI_MEMORY_RP
1072 );
1073 DEBUG ((
1074 DEBUG_INFO,
1075 "UefiMemory protection: 0x%lx - 0x%lx %r\n",
1076 MemoryMap->PhysicalStart,
1077 MemoryMap->PhysicalStart + (UINT64)EFI_PAGES_TO_SIZE((UINTN)MemoryMap->NumberOfPages),
1078 Status
1079 ));
1080 }
1081 MemoryMap = NEXT_MEMORY_DESCRIPTOR(MemoryMap, mUefiDescriptorSize);
1082 }
1083
1084 //
1085 // Do free mUefiMemoryMap, it will be checked in IsSmmCommBufferForbiddenAddress().
1086 //
1087 }
1088
1089 /**
1090 Return if the Address is forbidden as SMM communication buffer.
1091
1092 @param[in] Address the address to be checked
1093
1094 @return TRUE The address is forbidden as SMM communication buffer.
1095 @return FALSE The address is allowed as SMM communication buffer.
1096 **/
1097 BOOLEAN
1098 IsSmmCommBufferForbiddenAddress (
1099 IN UINT64 Address
1100 )
1101 {
1102 EFI_MEMORY_DESCRIPTOR *MemoryMap;
1103 UINTN MemoryMapEntryCount;
1104 UINTN Index;
1105
1106 if (mUefiMemoryMap == NULL) {
1107 return FALSE;
1108 }
1109
1110 MemoryMap = mUefiMemoryMap;
1111 MemoryMapEntryCount = mUefiMemoryMapSize/mUefiDescriptorSize;
1112 for (Index = 0; Index < MemoryMapEntryCount; Index++) {
1113 if (IsUefiPageNotPresent (MemoryMap)) {
1114 if ((Address >= MemoryMap->PhysicalStart) &&
1115 (Address < MemoryMap->PhysicalStart + EFI_PAGES_TO_SIZE((UINTN)MemoryMap->NumberOfPages)) ) {
1116 return TRUE;
1117 }
1118 }
1119 MemoryMap = NEXT_MEMORY_DESCRIPTOR(MemoryMap, mUefiDescriptorSize);
1120 }
1121 return FALSE;
1122 }
1123
1124 /**
1125 This function set given attributes of the memory region specified by
1126 BaseAddress and Length.
1127
1128 @param This The EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL instance.
1129 @param BaseAddress The physical address that is the start address of
1130 a memory region.
1131 @param Length The size in bytes of the memory region.
1132 @param Attributes The bit mask of attributes to set for the memory
1133 region.
1134
1135 @retval EFI_SUCCESS The attributes were set for the memory region.
1136 @retval EFI_INVALID_PARAMETER Length is zero.
1137 Attributes specified an illegal combination of
1138 attributes that cannot be set together.
1139 @retval EFI_UNSUPPORTED The processor does not support one or more
1140 bytes of the memory resource range specified
1141 by BaseAddress and Length.
1142 The bit mask of attributes is not support for
1143 the memory resource range specified by
1144 BaseAddress and Length.
1145
1146 **/
1147 EFI_STATUS
1148 EFIAPI
1149 EdkiiSmmSetMemoryAttributes (
1150 IN EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL *This,
1151 IN EFI_PHYSICAL_ADDRESS BaseAddress,
1152 IN UINT64 Length,
1153 IN UINT64 Attributes
1154 )
1155 {
1156 return SmmSetMemoryAttributes (BaseAddress, Length, Attributes);
1157 }
1158
1159 /**
1160 This function clears given attributes of the memory region specified by
1161 BaseAddress and Length.
1162
1163 @param This The EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL instance.
1164 @param BaseAddress The physical address that is the start address of
1165 a memory region.
1166 @param Length The size in bytes of the memory region.
1167 @param Attributes The bit mask of attributes to set for the memory
1168 region.
1169
1170 @retval EFI_SUCCESS The attributes were set for the memory region.
1171 @retval EFI_INVALID_PARAMETER Length is zero.
1172 Attributes specified an illegal combination of
1173 attributes that cannot be set together.
1174 @retval EFI_UNSUPPORTED The processor does not support one or more
1175 bytes of the memory resource range specified
1176 by BaseAddress and Length.
1177 The bit mask of attributes is not support for
1178 the memory resource range specified by
1179 BaseAddress and Length.
1180
1181 **/
1182 EFI_STATUS
1183 EFIAPI
1184 EdkiiSmmClearMemoryAttributes (
1185 IN EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL *This,
1186 IN EFI_PHYSICAL_ADDRESS BaseAddress,
1187 IN UINT64 Length,
1188 IN UINT64 Attributes
1189 )
1190 {
1191 return SmmClearMemoryAttributes (BaseAddress, Length, Attributes);
1192 }
1193
1194 /**
1195 This function retrieve the attributes of the memory region specified by
1196 BaseAddress and Length. If different attributes are got from different part
1197 of the memory region, EFI_NO_MAPPING will be returned.
1198
1199 @param This The EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL instance.
1200 @param BaseAddress The physical address that is the start address of
1201 a memory region.
1202 @param Length The size in bytes of the memory region.
1203 @param Attributes Pointer to attributes returned.
1204
1205 @retval EFI_SUCCESS The attributes got for the memory region.
1206 @retval EFI_INVALID_PARAMETER Length is zero.
1207 Attributes is NULL.
1208 @retval EFI_NO_MAPPING Attributes are not consistent cross the memory
1209 region.
1210 @retval EFI_UNSUPPORTED The processor does not support one or more
1211 bytes of the memory resource range specified
1212 by BaseAddress and Length.
1213 The bit mask of attributes is not support for
1214 the memory resource range specified by
1215 BaseAddress and Length.
1216
1217 **/
1218 EFI_STATUS
1219 EFIAPI
1220 EdkiiSmmGetMemoryAttributes (
1221 IN EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL *This,
1222 IN EFI_PHYSICAL_ADDRESS BaseAddress,
1223 IN UINT64 Length,
1224 OUT UINT64 *Attributes
1225 )
1226 {
1227 EFI_PHYSICAL_ADDRESS Address;
1228 UINT64 *PageEntry;
1229 UINT64 MemAttr;
1230 PAGE_ATTRIBUTE PageAttr;
1231 INT64 Size;
1232
1233 if (Length < SIZE_4KB || Attributes == NULL) {
1234 return EFI_INVALID_PARAMETER;
1235 }
1236
1237 Size = (INT64)Length;
1238 MemAttr = (UINT64)-1;
1239
1240 do {
1241
1242 PageEntry = GetPageTableEntry (BaseAddress, &PageAttr);
1243 if (PageEntry == NULL || PageAttr == PageNone) {
1244 return EFI_UNSUPPORTED;
1245 }
1246
1247 //
1248 // If the memory range is cross page table boundary, make sure they
1249 // share the same attribute. Return EFI_NO_MAPPING if not.
1250 //
1251 *Attributes = GetAttributesFromPageEntry (PageEntry);
1252 if (MemAttr != (UINT64)-1 && *Attributes != MemAttr) {
1253 return EFI_NO_MAPPING;
1254 }
1255
1256 switch (PageAttr) {
1257 case Page4K:
1258 Address = *PageEntry & ~mAddressEncMask & PAGING_4K_ADDRESS_MASK_64;
1259 Size -= (SIZE_4KB - (BaseAddress - Address));
1260 BaseAddress += (SIZE_4KB - (BaseAddress - Address));
1261 break;
1262
1263 case Page2M:
1264 Address = *PageEntry & ~mAddressEncMask & PAGING_2M_ADDRESS_MASK_64;
1265 Size -= SIZE_2MB - (BaseAddress - Address);
1266 BaseAddress += SIZE_2MB - (BaseAddress - Address);
1267 break;
1268
1269 case Page1G:
1270 Address = *PageEntry & ~mAddressEncMask & PAGING_1G_ADDRESS_MASK_64;
1271 Size -= SIZE_1GB - (BaseAddress - Address);
1272 BaseAddress += SIZE_1GB - (BaseAddress - Address);
1273 break;
1274
1275 default:
1276 return EFI_UNSUPPORTED;
1277 }
1278
1279 MemAttr = *Attributes;
1280
1281 } while (Size > 0);
1282
1283 return EFI_SUCCESS;
1284 }
1285