]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/Library/BaseMemEncryptSevLib/X64/PeiDxeVirtualMemory.c
OvmfPkg/MemEncryptSevLib: Make the MemEncryptSevLib available for SEC
[mirror_edk2.git] / OvmfPkg / Library / BaseMemEncryptSevLib / X64 / PeiDxeVirtualMemory.c
1 /** @file
2
3 Virtual Memory Management Services to set or clear the memory encryption bit
4
5 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
6 Copyright (c) 2017 - 2020, AMD Incorporated. All rights reserved.<BR>
7
8 SPDX-License-Identifier: BSD-2-Clause-Patent
9
10 Code is derived from MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.c
11
12 **/
13
14 #include <Library/CpuLib.h>
15 #include <Library/MemEncryptSevLib.h>
16 #include <Register/Amd/Cpuid.h>
17 #include <Register/Cpuid.h>
18
19 #include "VirtualMemory.h"
20
21 STATIC BOOLEAN mAddressEncMaskChecked = FALSE;
22 STATIC UINT64 mAddressEncMask;
23 STATIC PAGE_TABLE_POOL *mPageTablePool = NULL;
24
25 typedef enum {
26 SetCBit,
27 ClearCBit
28 } MAP_RANGE_MODE;
29
30 /**
31 Get the memory encryption mask
32
33 @param[out] EncryptionMask contains the pte mask.
34
35 **/
36 STATIC
37 UINT64
38 GetMemEncryptionAddressMask (
39 VOID
40 )
41 {
42 UINT64 EncryptionMask;
43
44 if (mAddressEncMaskChecked) {
45 return mAddressEncMask;
46 }
47
48 EncryptionMask = MemEncryptSevGetEncryptionMask ();
49
50 mAddressEncMask = EncryptionMask & PAGING_1G_ADDRESS_MASK_64;
51 mAddressEncMaskChecked = TRUE;
52
53 return mAddressEncMask;
54 }
55
56 /**
57 Initialize a buffer pool for page table use only.
58
59 To reduce the potential split operation on page table, the pages reserved for
60 page table should be allocated in the times of PAGE_TABLE_POOL_UNIT_PAGES and
61 at the boundary of PAGE_TABLE_POOL_ALIGNMENT. So the page pool is always
62 initialized with number of pages greater than or equal to the given
63 PoolPages.
64
65 Once the pages in the pool are used up, this method should be called again to
66 reserve at least another PAGE_TABLE_POOL_UNIT_PAGES. Usually this won't
67 happen often in practice.
68
69 @param[in] PoolPages The least page number of the pool to be created.
70
71 @retval TRUE The pool is initialized successfully.
72 @retval FALSE The memory is out of resource.
73 **/
74 STATIC
75 BOOLEAN
76 InitializePageTablePool (
77 IN UINTN PoolPages
78 )
79 {
80 VOID *Buffer;
81
82 //
83 // Always reserve at least PAGE_TABLE_POOL_UNIT_PAGES, including one page for
84 // header.
85 //
86 PoolPages += 1; // Add one page for header.
87 PoolPages = ((PoolPages - 1) / PAGE_TABLE_POOL_UNIT_PAGES + 1) *
88 PAGE_TABLE_POOL_UNIT_PAGES;
89 Buffer = AllocateAlignedPages (PoolPages, PAGE_TABLE_POOL_ALIGNMENT);
90 if (Buffer == NULL) {
91 DEBUG ((DEBUG_ERROR, "ERROR: Out of aligned pages\r\n"));
92 return FALSE;
93 }
94
95 //
96 // Link all pools into a list for easier track later.
97 //
98 if (mPageTablePool == NULL) {
99 mPageTablePool = Buffer;
100 mPageTablePool->NextPool = mPageTablePool;
101 } else {
102 ((PAGE_TABLE_POOL *)Buffer)->NextPool = mPageTablePool->NextPool;
103 mPageTablePool->NextPool = Buffer;
104 mPageTablePool = Buffer;
105 }
106
107 //
108 // Reserve one page for pool header.
109 //
110 mPageTablePool->FreePages = PoolPages - 1;
111 mPageTablePool->Offset = EFI_PAGES_TO_SIZE (1);
112
113 return TRUE;
114 }
115
116 /**
117 This API provides a way to allocate memory for page table.
118
119 This API can be called more than once to allocate memory for page tables.
120
121 Allocates the number of 4KB pages and returns a pointer to the allocated
122 buffer. The buffer returned is aligned on a 4KB boundary.
123
124 If Pages is 0, then NULL is returned.
125 If there is not enough memory remaining to satisfy the request, then NULL is
126 returned.
127
128 @param Pages The number of 4 KB pages to allocate.
129
130 @return A pointer to the allocated buffer or NULL if allocation fails.
131
132 **/
133 STATIC
134 VOID *
135 EFIAPI
136 AllocatePageTableMemory (
137 IN UINTN Pages
138 )
139 {
140 VOID *Buffer;
141
142 if (Pages == 0) {
143 return NULL;
144 }
145
146 //
147 // Renew the pool if necessary.
148 //
149 if (mPageTablePool == NULL ||
150 Pages > mPageTablePool->FreePages) {
151 if (!InitializePageTablePool (Pages)) {
152 return NULL;
153 }
154 }
155
156 Buffer = (UINT8 *)mPageTablePool + mPageTablePool->Offset;
157
158 mPageTablePool->Offset += EFI_PAGES_TO_SIZE (Pages);
159 mPageTablePool->FreePages -= Pages;
160
161 DEBUG ((
162 DEBUG_VERBOSE,
163 "%a:%a: Buffer=0x%Lx Pages=%ld\n",
164 gEfiCallerBaseName,
165 __FUNCTION__,
166 Buffer,
167 Pages
168 ));
169
170 return Buffer;
171 }
172
173
174 /**
175 Split 2M page to 4K.
176
177 @param[in] PhysicalAddress Start physical address the 2M page
178 covered.
179 @param[in, out] PageEntry2M Pointer to 2M page entry.
180 @param[in] StackBase Stack base address.
181 @param[in] StackSize Stack size.
182
183 **/
184 STATIC
185 VOID
186 Split2MPageTo4K (
187 IN PHYSICAL_ADDRESS PhysicalAddress,
188 IN OUT UINT64 *PageEntry2M,
189 IN PHYSICAL_ADDRESS StackBase,
190 IN UINTN StackSize
191 )
192 {
193 PHYSICAL_ADDRESS PhysicalAddress4K;
194 UINTN IndexOfPageTableEntries;
195 PAGE_TABLE_4K_ENTRY *PageTableEntry;
196 PAGE_TABLE_4K_ENTRY *PageTableEntry1;
197 UINT64 AddressEncMask;
198
199 PageTableEntry = AllocatePageTableMemory(1);
200
201 PageTableEntry1 = PageTableEntry;
202
203 AddressEncMask = GetMemEncryptionAddressMask ();
204
205 ASSERT (PageTableEntry != NULL);
206 ASSERT (*PageEntry2M & AddressEncMask);
207
208 PhysicalAddress4K = PhysicalAddress;
209 for (IndexOfPageTableEntries = 0;
210 IndexOfPageTableEntries < 512;
211 (IndexOfPageTableEntries++,
212 PageTableEntry++,
213 PhysicalAddress4K += SIZE_4KB)) {
214 //
215 // Fill in the Page Table entries
216 //
217 PageTableEntry->Uint64 = (UINT64) PhysicalAddress4K | AddressEncMask;
218 PageTableEntry->Bits.ReadWrite = 1;
219 PageTableEntry->Bits.Present = 1;
220 if ((PhysicalAddress4K >= StackBase) &&
221 (PhysicalAddress4K < StackBase + StackSize)) {
222 //
223 // Set Nx bit for stack.
224 //
225 PageTableEntry->Bits.Nx = 1;
226 }
227 }
228
229 //
230 // Fill in 2M page entry.
231 //
232 *PageEntry2M = ((UINT64)(UINTN)PageTableEntry1 |
233 IA32_PG_P | IA32_PG_RW | AddressEncMask);
234 }
235
236 /**
237 Set one page of page table pool memory to be read-only.
238
239 @param[in] PageTableBase Base address of page table (CR3).
240 @param[in] Address Start address of a page to be set as read-only.
241 @param[in] Level4Paging Level 4 paging flag.
242
243 **/
244 STATIC
245 VOID
246 SetPageTablePoolReadOnly (
247 IN UINTN PageTableBase,
248 IN EFI_PHYSICAL_ADDRESS Address,
249 IN BOOLEAN Level4Paging
250 )
251 {
252 UINTN Index;
253 UINTN EntryIndex;
254 UINT64 AddressEncMask;
255 EFI_PHYSICAL_ADDRESS PhysicalAddress;
256 UINT64 *PageTable;
257 UINT64 *NewPageTable;
258 UINT64 PageAttr;
259 UINT64 LevelSize[5];
260 UINT64 LevelMask[5];
261 UINTN LevelShift[5];
262 UINTN Level;
263 UINT64 PoolUnitSize;
264
265 ASSERT (PageTableBase != 0);
266
267 //
268 // Since the page table is always from page table pool, which is always
269 // located at the boundary of PcdPageTablePoolAlignment, we just need to
270 // set the whole pool unit to be read-only.
271 //
272 Address = Address & PAGE_TABLE_POOL_ALIGN_MASK;
273
274 LevelShift[1] = PAGING_L1_ADDRESS_SHIFT;
275 LevelShift[2] = PAGING_L2_ADDRESS_SHIFT;
276 LevelShift[3] = PAGING_L3_ADDRESS_SHIFT;
277 LevelShift[4] = PAGING_L4_ADDRESS_SHIFT;
278
279 LevelMask[1] = PAGING_4K_ADDRESS_MASK_64;
280 LevelMask[2] = PAGING_2M_ADDRESS_MASK_64;
281 LevelMask[3] = PAGING_1G_ADDRESS_MASK_64;
282 LevelMask[4] = PAGING_1G_ADDRESS_MASK_64;
283
284 LevelSize[1] = SIZE_4KB;
285 LevelSize[2] = SIZE_2MB;
286 LevelSize[3] = SIZE_1GB;
287 LevelSize[4] = SIZE_512GB;
288
289 AddressEncMask = GetMemEncryptionAddressMask();
290 PageTable = (UINT64 *)(UINTN)PageTableBase;
291 PoolUnitSize = PAGE_TABLE_POOL_UNIT_SIZE;
292
293 for (Level = (Level4Paging) ? 4 : 3; Level > 0; --Level) {
294 Index = ((UINTN)RShiftU64 (Address, LevelShift[Level]));
295 Index &= PAGING_PAE_INDEX_MASK;
296
297 PageAttr = PageTable[Index];
298 if ((PageAttr & IA32_PG_PS) == 0) {
299 //
300 // Go to next level of table.
301 //
302 PageTable = (UINT64 *)(UINTN)(PageAttr & ~AddressEncMask &
303 PAGING_4K_ADDRESS_MASK_64);
304 continue;
305 }
306
307 if (PoolUnitSize >= LevelSize[Level]) {
308 //
309 // Clear R/W bit if current page granularity is not larger than pool unit
310 // size.
311 //
312 if ((PageAttr & IA32_PG_RW) != 0) {
313 while (PoolUnitSize > 0) {
314 //
315 // PAGE_TABLE_POOL_UNIT_SIZE and PAGE_TABLE_POOL_ALIGNMENT are fit in
316 // one page (2MB). Then we don't need to update attributes for pages
317 // crossing page directory. ASSERT below is for that purpose.
318 //
319 ASSERT (Index < EFI_PAGE_SIZE/sizeof (UINT64));
320
321 PageTable[Index] &= ~(UINT64)IA32_PG_RW;
322 PoolUnitSize -= LevelSize[Level];
323
324 ++Index;
325 }
326 }
327
328 break;
329
330 } else {
331 //
332 // The smaller granularity of page must be needed.
333 //
334 ASSERT (Level > 1);
335
336 NewPageTable = AllocatePageTableMemory (1);
337 ASSERT (NewPageTable != NULL);
338
339 PhysicalAddress = PageAttr & LevelMask[Level];
340 for (EntryIndex = 0;
341 EntryIndex < EFI_PAGE_SIZE/sizeof (UINT64);
342 ++EntryIndex) {
343 NewPageTable[EntryIndex] = PhysicalAddress | AddressEncMask |
344 IA32_PG_P | IA32_PG_RW;
345 if (Level > 2) {
346 NewPageTable[EntryIndex] |= IA32_PG_PS;
347 }
348 PhysicalAddress += LevelSize[Level - 1];
349 }
350
351 PageTable[Index] = (UINT64)(UINTN)NewPageTable | AddressEncMask |
352 IA32_PG_P | IA32_PG_RW;
353 PageTable = NewPageTable;
354 }
355 }
356 }
357
358 /**
359 Prevent the memory pages used for page table from been overwritten.
360
361 @param[in] PageTableBase Base address of page table (CR3).
362 @param[in] Level4Paging Level 4 paging flag.
363
364 **/
365 STATIC
366 VOID
367 EnablePageTableProtection (
368 IN UINTN PageTableBase,
369 IN BOOLEAN Level4Paging
370 )
371 {
372 PAGE_TABLE_POOL *HeadPool;
373 PAGE_TABLE_POOL *Pool;
374 UINT64 PoolSize;
375 EFI_PHYSICAL_ADDRESS Address;
376
377 if (mPageTablePool == NULL) {
378 return;
379 }
380
381 //
382 // SetPageTablePoolReadOnly might update mPageTablePool. It's safer to
383 // remember original one in advance.
384 //
385 HeadPool = mPageTablePool;
386 Pool = HeadPool;
387 do {
388 Address = (EFI_PHYSICAL_ADDRESS)(UINTN)Pool;
389 PoolSize = Pool->Offset + EFI_PAGES_TO_SIZE (Pool->FreePages);
390
391 //
392 // The size of one pool must be multiple of PAGE_TABLE_POOL_UNIT_SIZE,
393 // which is one of page size of the processor (2MB by default). Let's apply
394 // the protection to them one by one.
395 //
396 while (PoolSize > 0) {
397 SetPageTablePoolReadOnly(PageTableBase, Address, Level4Paging);
398 Address += PAGE_TABLE_POOL_UNIT_SIZE;
399 PoolSize -= PAGE_TABLE_POOL_UNIT_SIZE;
400 }
401
402 Pool = Pool->NextPool;
403 } while (Pool != HeadPool);
404
405 }
406
407
408 /**
409 Split 1G page to 2M.
410
411 @param[in] PhysicalAddress Start physical address the 1G page
412 covered.
413 @param[in, out] PageEntry1G Pointer to 1G page entry.
414 @param[in] StackBase Stack base address.
415 @param[in] StackSize Stack size.
416
417 **/
418 STATIC
419 VOID
420 Split1GPageTo2M (
421 IN PHYSICAL_ADDRESS PhysicalAddress,
422 IN OUT UINT64 *PageEntry1G,
423 IN PHYSICAL_ADDRESS StackBase,
424 IN UINTN StackSize
425 )
426 {
427 PHYSICAL_ADDRESS PhysicalAddress2M;
428 UINTN IndexOfPageDirectoryEntries;
429 PAGE_TABLE_ENTRY *PageDirectoryEntry;
430 UINT64 AddressEncMask;
431
432 PageDirectoryEntry = AllocatePageTableMemory(1);
433
434 AddressEncMask = GetMemEncryptionAddressMask ();
435 ASSERT (PageDirectoryEntry != NULL);
436 ASSERT (*PageEntry1G & AddressEncMask);
437 //
438 // Fill in 1G page entry.
439 //
440 *PageEntry1G = ((UINT64)(UINTN)PageDirectoryEntry |
441 IA32_PG_P | IA32_PG_RW | AddressEncMask);
442
443 PhysicalAddress2M = PhysicalAddress;
444 for (IndexOfPageDirectoryEntries = 0;
445 IndexOfPageDirectoryEntries < 512;
446 (IndexOfPageDirectoryEntries++,
447 PageDirectoryEntry++,
448 PhysicalAddress2M += SIZE_2MB)) {
449 if ((PhysicalAddress2M < StackBase + StackSize) &&
450 ((PhysicalAddress2M + SIZE_2MB) > StackBase)) {
451 //
452 // Need to split this 2M page that covers stack range.
453 //
454 Split2MPageTo4K (
455 PhysicalAddress2M,
456 (UINT64 *)PageDirectoryEntry,
457 StackBase,
458 StackSize
459 );
460 } else {
461 //
462 // Fill in the Page Directory entries
463 //
464 PageDirectoryEntry->Uint64 = (UINT64) PhysicalAddress2M | AddressEncMask;
465 PageDirectoryEntry->Bits.ReadWrite = 1;
466 PageDirectoryEntry->Bits.Present = 1;
467 PageDirectoryEntry->Bits.MustBe1 = 1;
468 }
469 }
470 }
471
472
473 /**
474 Set or Clear the memory encryption bit
475
476 @param[in, out] PageTablePointer Page table entry pointer (PTE).
477 @param[in] Mode Set or Clear encryption bit
478
479 **/
480 STATIC VOID
481 SetOrClearCBit(
482 IN OUT UINT64* PageTablePointer,
483 IN MAP_RANGE_MODE Mode
484 )
485 {
486 UINT64 AddressEncMask;
487
488 AddressEncMask = GetMemEncryptionAddressMask ();
489
490 if (Mode == SetCBit) {
491 *PageTablePointer |= AddressEncMask;
492 } else {
493 *PageTablePointer &= ~AddressEncMask;
494 }
495
496 }
497
498 /**
499 Check the WP status in CR0 register. This bit is used to lock or unlock write
500 access to pages marked as read-only.
501
502 @retval TRUE Write protection is enabled.
503 @retval FALSE Write protection is disabled.
504 **/
505 STATIC
506 BOOLEAN
507 IsReadOnlyPageWriteProtected (
508 VOID
509 )
510 {
511 return ((AsmReadCr0 () & BIT16) != 0);
512 }
513
514
515 /**
516 Disable Write Protect on pages marked as read-only.
517 **/
518 STATIC
519 VOID
520 DisableReadOnlyPageWriteProtect (
521 VOID
522 )
523 {
524 AsmWriteCr0 (AsmReadCr0() & ~BIT16);
525 }
526
527 /**
528 Enable Write Protect on pages marked as read-only.
529 **/
530 VOID
531 EnableReadOnlyPageWriteProtect (
532 VOID
533 )
534 {
535 AsmWriteCr0 (AsmReadCr0() | BIT16);
536 }
537
538
539 /**
540 This function either sets or clears memory encryption bit for the memory
541 region specified by PhysicalAddress and Length from the current page table
542 context.
543
544 The function iterates through the PhysicalAddress one page at a time, and set
545 or clears the memory encryption mask in the page table. If it encounters
546 that a given physical address range is part of large page then it attempts to
547 change the attribute at one go (based on size), otherwise it splits the
548 large pages into smaller (e.g 2M page into 4K pages) and then try to set or
549 clear the encryption bit on the smallest page size.
550
551 @param[in] Cr3BaseAddress Cr3 Base Address (if zero then use
552 current CR3)
553 @param[in] PhysicalAddress The physical address that is the start
554 address of a memory region.
555 @param[in] Length The length of memory region
556 @param[in] Mode Set or Clear mode
557 @param[in] CacheFlush Flush the caches before applying the
558 encryption mask
559
560 @retval RETURN_SUCCESS The attributes were cleared for the
561 memory region.
562 @retval RETURN_INVALID_PARAMETER Number of pages is zero.
563 @retval RETURN_UNSUPPORTED Setting the memory encyrption attribute
564 is not supported
565 **/
566 STATIC
567 RETURN_STATUS
568 EFIAPI
569 SetMemoryEncDec (
570 IN PHYSICAL_ADDRESS Cr3BaseAddress,
571 IN PHYSICAL_ADDRESS PhysicalAddress,
572 IN UINTN Length,
573 IN MAP_RANGE_MODE Mode,
574 IN BOOLEAN CacheFlush
575 )
576 {
577 PAGE_MAP_AND_DIRECTORY_POINTER *PageMapLevel4Entry;
578 PAGE_MAP_AND_DIRECTORY_POINTER *PageUpperDirectoryPointerEntry;
579 PAGE_MAP_AND_DIRECTORY_POINTER *PageDirectoryPointerEntry;
580 PAGE_TABLE_1G_ENTRY *PageDirectory1GEntry;
581 PAGE_TABLE_ENTRY *PageDirectory2MEntry;
582 PAGE_TABLE_4K_ENTRY *PageTableEntry;
583 UINT64 PgTableMask;
584 UINT64 AddressEncMask;
585 BOOLEAN IsWpEnabled;
586 RETURN_STATUS Status;
587
588 //
589 // Set PageMapLevel4Entry to suppress incorrect compiler/analyzer warnings.
590 //
591 PageMapLevel4Entry = NULL;
592
593 DEBUG ((
594 DEBUG_VERBOSE,
595 "%a:%a: Cr3Base=0x%Lx Physical=0x%Lx Length=0x%Lx Mode=%a CacheFlush=%u\n",
596 gEfiCallerBaseName,
597 __FUNCTION__,
598 Cr3BaseAddress,
599 PhysicalAddress,
600 (UINT64)Length,
601 (Mode == SetCBit) ? "Encrypt" : "Decrypt",
602 (UINT32)CacheFlush
603 ));
604
605 //
606 // Check if we have a valid memory encryption mask
607 //
608 AddressEncMask = GetMemEncryptionAddressMask ();
609 if (!AddressEncMask) {
610 return RETURN_ACCESS_DENIED;
611 }
612
613 PgTableMask = AddressEncMask | EFI_PAGE_MASK;
614
615 if (Length == 0) {
616 return RETURN_INVALID_PARAMETER;
617 }
618
619 //
620 // We are going to change the memory encryption attribute from C=0 -> C=1 or
621 // vice versa Flush the caches to ensure that data is written into memory
622 // with correct C-bit
623 //
624 if (CacheFlush) {
625 WriteBackInvalidateDataCacheRange((VOID*) (UINTN)PhysicalAddress, Length);
626 }
627
628 //
629 // Make sure that the page table is changeable.
630 //
631 IsWpEnabled = IsReadOnlyPageWriteProtected ();
632 if (IsWpEnabled) {
633 DisableReadOnlyPageWriteProtect ();
634 }
635
636 Status = EFI_SUCCESS;
637
638 while (Length != 0)
639 {
640 //
641 // If Cr3BaseAddress is not specified then read the current CR3
642 //
643 if (Cr3BaseAddress == 0) {
644 Cr3BaseAddress = AsmReadCr3();
645 }
646
647 PageMapLevel4Entry = (VOID*) (Cr3BaseAddress & ~PgTableMask);
648 PageMapLevel4Entry += PML4_OFFSET(PhysicalAddress);
649 if (!PageMapLevel4Entry->Bits.Present) {
650 DEBUG ((
651 DEBUG_ERROR,
652 "%a:%a: bad PML4 for Physical=0x%Lx\n",
653 gEfiCallerBaseName,
654 __FUNCTION__,
655 PhysicalAddress
656 ));
657 Status = RETURN_NO_MAPPING;
658 goto Done;
659 }
660
661 PageDirectory1GEntry = (VOID *)(
662 (PageMapLevel4Entry->Bits.PageTableBaseAddress <<
663 12) & ~PgTableMask
664 );
665 PageDirectory1GEntry += PDP_OFFSET(PhysicalAddress);
666 if (!PageDirectory1GEntry->Bits.Present) {
667 DEBUG ((
668 DEBUG_ERROR,
669 "%a:%a: bad PDPE for Physical=0x%Lx\n",
670 gEfiCallerBaseName,
671 __FUNCTION__,
672 PhysicalAddress
673 ));
674 Status = RETURN_NO_MAPPING;
675 goto Done;
676 }
677
678 //
679 // If the MustBe1 bit is not 1, it's not actually a 1GB entry
680 //
681 if (PageDirectory1GEntry->Bits.MustBe1) {
682 //
683 // Valid 1GB page
684 // If we have at least 1GB to go, we can just update this entry
685 //
686 if ((PhysicalAddress & (BIT30 - 1)) == 0 && Length >= BIT30) {
687 SetOrClearCBit(&PageDirectory1GEntry->Uint64, Mode);
688 DEBUG ((
689 DEBUG_VERBOSE,
690 "%a:%a: updated 1GB entry for Physical=0x%Lx\n",
691 gEfiCallerBaseName,
692 __FUNCTION__,
693 PhysicalAddress
694 ));
695 PhysicalAddress += BIT30;
696 Length -= BIT30;
697 } else {
698 //
699 // We must split the page
700 //
701 DEBUG ((
702 DEBUG_VERBOSE,
703 "%a:%a: splitting 1GB page for Physical=0x%Lx\n",
704 gEfiCallerBaseName,
705 __FUNCTION__,
706 PhysicalAddress
707 ));
708 Split1GPageTo2M (
709 (UINT64)PageDirectory1GEntry->Bits.PageTableBaseAddress << 30,
710 (UINT64 *)PageDirectory1GEntry,
711 0,
712 0
713 );
714 continue;
715 }
716 } else {
717 //
718 // Actually a PDP
719 //
720 PageUpperDirectoryPointerEntry =
721 (PAGE_MAP_AND_DIRECTORY_POINTER *)PageDirectory1GEntry;
722 PageDirectory2MEntry =
723 (VOID *)(
724 (PageUpperDirectoryPointerEntry->Bits.PageTableBaseAddress <<
725 12) & ~PgTableMask
726 );
727 PageDirectory2MEntry += PDE_OFFSET(PhysicalAddress);
728 if (!PageDirectory2MEntry->Bits.Present) {
729 DEBUG ((
730 DEBUG_ERROR,
731 "%a:%a: bad PDE for Physical=0x%Lx\n",
732 gEfiCallerBaseName,
733 __FUNCTION__,
734 PhysicalAddress
735 ));
736 Status = RETURN_NO_MAPPING;
737 goto Done;
738 }
739 //
740 // If the MustBe1 bit is not a 1, it's not a 2MB entry
741 //
742 if (PageDirectory2MEntry->Bits.MustBe1) {
743 //
744 // Valid 2MB page
745 // If we have at least 2MB left to go, we can just update this entry
746 //
747 if ((PhysicalAddress & (BIT21-1)) == 0 && Length >= BIT21) {
748 SetOrClearCBit (&PageDirectory2MEntry->Uint64, Mode);
749 PhysicalAddress += BIT21;
750 Length -= BIT21;
751 } else {
752 //
753 // We must split up this page into 4K pages
754 //
755 DEBUG ((
756 DEBUG_VERBOSE,
757 "%a:%a: splitting 2MB page for Physical=0x%Lx\n",
758 gEfiCallerBaseName,
759 __FUNCTION__,
760 PhysicalAddress
761 ));
762 Split2MPageTo4K (
763 (UINT64)PageDirectory2MEntry->Bits.PageTableBaseAddress << 21,
764 (UINT64 *)PageDirectory2MEntry,
765 0,
766 0
767 );
768 continue;
769 }
770 } else {
771 PageDirectoryPointerEntry =
772 (PAGE_MAP_AND_DIRECTORY_POINTER *)PageDirectory2MEntry;
773 PageTableEntry =
774 (VOID *)(
775 (PageDirectoryPointerEntry->Bits.PageTableBaseAddress <<
776 12) & ~PgTableMask
777 );
778 PageTableEntry += PTE_OFFSET(PhysicalAddress);
779 if (!PageTableEntry->Bits.Present) {
780 DEBUG ((
781 DEBUG_ERROR,
782 "%a:%a: bad PTE for Physical=0x%Lx\n",
783 gEfiCallerBaseName,
784 __FUNCTION__,
785 PhysicalAddress
786 ));
787 Status = RETURN_NO_MAPPING;
788 goto Done;
789 }
790 SetOrClearCBit (&PageTableEntry->Uint64, Mode);
791 PhysicalAddress += EFI_PAGE_SIZE;
792 Length -= EFI_PAGE_SIZE;
793 }
794 }
795 }
796
797 //
798 // Protect the page table by marking the memory used for page table to be
799 // read-only.
800 //
801 if (IsWpEnabled) {
802 EnablePageTableProtection ((UINTN)PageMapLevel4Entry, TRUE);
803 }
804
805 //
806 // Flush TLB
807 //
808 CpuFlushTlb();
809
810 Done:
811 //
812 // Restore page table write protection, if any.
813 //
814 if (IsWpEnabled) {
815 EnableReadOnlyPageWriteProtect ();
816 }
817
818 return Status;
819 }
820
821 /**
822 This function clears memory encryption bit for the memory region specified by
823 PhysicalAddress and Length from the current page table context.
824
825 @param[in] Cr3BaseAddress Cr3 Base Address (if zero then use
826 current CR3)
827 @param[in] PhysicalAddress The physical address that is the start
828 address of a memory region.
829 @param[in] Length The length of memory region
830 @param[in] Flush Flush the caches before applying the
831 encryption mask
832
833 @retval RETURN_SUCCESS The attributes were cleared for the
834 memory region.
835 @retval RETURN_INVALID_PARAMETER Number of pages is zero.
836 @retval RETURN_UNSUPPORTED Clearing the memory encyrption attribute
837 is not supported
838 **/
839 RETURN_STATUS
840 EFIAPI
841 InternalMemEncryptSevSetMemoryDecrypted (
842 IN PHYSICAL_ADDRESS Cr3BaseAddress,
843 IN PHYSICAL_ADDRESS PhysicalAddress,
844 IN UINTN Length,
845 IN BOOLEAN Flush
846 )
847 {
848
849 return SetMemoryEncDec (
850 Cr3BaseAddress,
851 PhysicalAddress,
852 Length,
853 ClearCBit,
854 Flush
855 );
856 }
857
858 /**
859 This function sets memory encryption bit for the memory region specified by
860 PhysicalAddress and Length from the current page table context.
861
862 @param[in] Cr3BaseAddress Cr3 Base Address (if zero then use
863 current CR3)
864 @param[in] PhysicalAddress The physical address that is the start
865 address of a memory region.
866 @param[in] Length The length of memory region
867 @param[in] Flush Flush the caches before applying the
868 encryption mask
869
870 @retval RETURN_SUCCESS The attributes were set for the memory
871 region.
872 @retval RETURN_INVALID_PARAMETER Number of pages is zero.
873 @retval RETURN_UNSUPPORTED Setting the memory encyrption attribute
874 is not supported
875 **/
876 RETURN_STATUS
877 EFIAPI
878 InternalMemEncryptSevSetMemoryEncrypted (
879 IN PHYSICAL_ADDRESS Cr3BaseAddress,
880 IN PHYSICAL_ADDRESS PhysicalAddress,
881 IN UINTN Length,
882 IN BOOLEAN Flush
883 )
884 {
885 return SetMemoryEncDec (
886 Cr3BaseAddress,
887 PhysicalAddress,
888 Length,
889 SetCBit,
890 Flush
891 );
892 }