Skip to content

Commit 3ee9ceb

Browse files
tlendackybp3tk0v
authored andcommitted
x86/sev: Ensure SVSM reserved fields in a page validation entry are initialized to zero
In order to support future versions of the SVSM_CORE_PVALIDATE call, all reserved fields within a PVALIDATE entry must be set to zero as an SVSM should be ensuring all reserved fields are zero in order to support future usage of reserved areas based on the protocol version. Fixes: fcd042e ("x86/sev: Perform PVALIDATE using the SVSM when not at VMPL0") Signed-off-by: Tom Lendacky <[email protected]> Signed-off-by: Borislav Petkov (AMD) <[email protected]> Reviewed-by: Joerg Roedel <[email protected]> Cc: <[email protected]> Link: https://lore.kernel.org/7cde412f8b057ea13a646fb166b1ca023f6a5031.1755098819.git.thomas.lendacky@amd.com
1 parent c08ba63 commit 3ee9ceb

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

arch/x86/boot/startup/sev-shared.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -785,6 +785,7 @@ static void __head svsm_pval_4k_page(unsigned long paddr, bool validate)
785785
pc->entry[0].page_size = RMP_PG_SIZE_4K;
786786
pc->entry[0].action = validate;
787787
pc->entry[0].ignore_cf = 0;
788+
pc->entry[0].rsvd = 0;
788789
pc->entry[0].pfn = paddr >> PAGE_SHIFT;
789790

790791
/* Protocol 0, Call ID 1 */

arch/x86/coco/sev/core.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ static u64 svsm_build_ca_from_pfn_range(u64 pfn, u64 pfn_end, bool action,
227227
pe->page_size = RMP_PG_SIZE_4K;
228228
pe->action = action;
229229
pe->ignore_cf = 0;
230+
pe->rsvd = 0;
230231
pe->pfn = pfn;
231232

232233
pe++;
@@ -257,6 +258,7 @@ static int svsm_build_ca_from_psc_desc(struct snp_psc_desc *desc, unsigned int d
257258
pe->page_size = e->pagesize ? RMP_PG_SIZE_2M : RMP_PG_SIZE_4K;
258259
pe->action = e->operation == SNP_PAGE_STATE_PRIVATE;
259260
pe->ignore_cf = 0;
261+
pe->rsvd = 0;
260262
pe->pfn = e->gfn;
261263

262264
pe++;

0 commit comments

Comments
 (0)