From: Tom Lendacky <thomas.lendacky@amd.com>
To: Nikunj A Dadhania <nikunj@amd.com>,
linux-kernel@vger.kernel.org, bp@alien8.de, x86@kernel.org
Cc: seanjc@google.com, tglx@linutronix.de, mingo@redhat.com,
dave.hansen@linux.intel.com, santosh.shukla@amd.com
Subject: Re: [PATCH v3] x86/sev: Improve handling of writes to intercepted TSC MSRs
Date: Tue, 22 Jul 2025 13:57:54 -0500 [thread overview]
Message-ID: <f48edacc-7159-e5fb-03a4-1b1d6c68a971@amd.com> (raw)
In-Reply-To: <20250722074853.22253-1-nikunj@amd.com>
On 7/22/25 02:48, Nikunj A Dadhania wrote:
> Currently, when a Secure TSC enabled SNP guest attempts to write to the
> intercepted GUEST_TSC_FREQ MSR (a read-only MSR), the guest kernel response
> incorrectly implies a VMM configuration error, when in fact it is the usual
> VMM configuration to intercept writes to read-only MSRs, unless explicitly
> documented.
>
> Modify the intercepted TSC MSR #VC handling:
> * Write to GUEST_TSC_FREQ will generate a #GP instead of terminating the
> guest
> * Write to MSR_IA32_TSC will generate a #GP instead of silently ignoring it
>
> However, continue to terminate the guest when reading from intercepted
> GUEST_TSC_FREQ MSR with Secure TSC enabled, as intercepted reads indicate
> an improper VMM configuration for Secure TSC enabled SNP guests.
>
> Suggested-by: Sean Christopherson <seanjc@google.com>
> Signed-off-by: Nikunj A Dadhania <nikunj@amd.com>
Reviewed-by: Tom Lendacky <thomas.lendacky@amd.com>
> ---
>
> v3:
> * Drop pt_regs pointer as it is already part of the es_em_ctxt struct (Tom)
> * Added Sean's suggested-by instead of authored-by (Sean)
> * Removed WARN_ON_ONCE as kernel already warns via ex_handler_msr()
> for bare wrmsrq() calls (Sean)
>
> arch/x86/coco/sev/vc-handle.c | 31 ++++++++++++++++---------------
> 1 file changed, 16 insertions(+), 15 deletions(-)
>
> diff --git a/arch/x86/coco/sev/vc-handle.c b/arch/x86/coco/sev/vc-handle.c
> index faf1fce89ed4..6333eb6b23c2 100644
> --- a/arch/x86/coco/sev/vc-handle.c
> +++ b/arch/x86/coco/sev/vc-handle.c
> @@ -371,29 +371,30 @@ static enum es_result __vc_handle_msr_caa(struct pt_regs *regs, bool write)
> * executing with Secure TSC enabled, so special handling is required for
> * accesses of MSR_IA32_TSC and MSR_AMD64_GUEST_TSC_FREQ.
> */
> -static enum es_result __vc_handle_secure_tsc_msrs(struct pt_regs *regs, bool write)
> +static enum es_result __vc_handle_secure_tsc_msrs(struct es_em_ctxt *ctxt, bool write)
> {
> + struct pt_regs *regs = ctxt->regs;
> u64 tsc;
>
> /*
> - * GUEST_TSC_FREQ should not be intercepted when Secure TSC is enabled.
> - * Terminate the SNP guest when the interception is enabled.
> + * Writing to MSR_IA32_TSC can cause subsequent reads of the TSC to
> + * return undefined values, and GUEST_TSC_FREQ is read-only. Generate
> + * a #GP on all writes.
> */
> - if (regs->cx == MSR_AMD64_GUEST_TSC_FREQ)
> - return ES_VMM_ERROR;
> + if (write) {
> + ctxt->fi.vector = X86_TRAP_GP;
> + ctxt->fi.error_code = 0;
> + return ES_EXCEPTION;
> + }
>
> /*
> - * Writes: Writing to MSR_IA32_TSC can cause subsequent reads of the TSC
> - * to return undefined values, so ignore all writes.
> - *
> - * Reads: Reads of MSR_IA32_TSC should return the current TSC value, use
> - * the value returned by rdtsc_ordered().
> + * GUEST_TSC_FREQ read should not be intercepted when Secure TSC is
> + * enabled. Terminate the SNP guest when the interception is enabled.
> */
> - if (write) {
> - WARN_ONCE(1, "TSC MSR writes are verboten!\n");
> - return ES_OK;
> - }
> + if (regs->cx == MSR_AMD64_GUEST_TSC_FREQ)
> + return ES_VMM_ERROR;
>
> + /* Reads of MSR_IA32_TSC should return the current TSC value. */
> tsc = rdtsc_ordered();
> regs->ax = lower_32_bits(tsc);
> regs->dx = upper_32_bits(tsc);
> @@ -416,7 +417,7 @@ static enum es_result vc_handle_msr(struct ghcb *ghcb, struct es_em_ctxt *ctxt)
> case MSR_IA32_TSC:
> case MSR_AMD64_GUEST_TSC_FREQ:
> if (sev_status & MSR_AMD64_SNP_SECURE_TSC)
> - return __vc_handle_secure_tsc_msrs(regs, write);
> + return __vc_handle_secure_tsc_msrs(ctxt, write);
> break;
> default:
> break;
>
> base-commit: 34481698fd9c3c21425ab744e9e15dc2ce3b1b85
next prev parent reply other threads:[~2025-07-22 18:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-22 7:48 Nikunj A Dadhania
2025-07-22 18:57 ` Tom Lendacky [this message]
2025-08-12 10:58 ` [tip: x86/urgent] " tip-bot2 for Nikunj A Dadhania
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f48edacc-7159-e5fb-03a4-1b1d6c68a971@amd.com \
--to=thomas.lendacky@amd.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=nikunj@amd.com \
--cc=santosh.shukla@amd.com \
--cc=seanjc@google.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®