From: Anirudh Rayabharam <anrayabh@linux.microsoft.com>
To: "Michael Kelley (LINUX)" <mikelley@microsoft.com>
Cc: KY Srinivasan <kys@microsoft.com>,
Haiyang Zhang <haiyangz@microsoft.com>,
Stephen Hemminger <sthemmin@microsoft.com>,
"wei.liu@kernel.org" <wei.liu@kernel.org>,
Dexuan Cui <decui@microsoft.com>,
"tglx@linutronix.de" <tglx@linutronix.de>,
"mingo@redhat.com" <mingo@redhat.com>,
"bp@alien8.de" <bp@alien8.de>,
"dave.hansen@linux.intel.com" <dave.hansen@linux.intel.com>,
"x86@kernel.org" <x86@kernel.org>,
"hpa@zytor.com" <hpa@zytor.com>,
"daniel.lezcano@linaro.org" <daniel.lezcano@linaro.org>,
Arnd Bergmann <arnd@arndb.de>,
"linux-hyperv@vger.kernel.org" <linux-hyperv@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>,
"kumarpraveen@linux.microsoft.com"
<kumarpraveen@linux.microsoft.com>,
"mail@anirudhrb.com" <mail@anirudhrb.com>
Subject: Re: [PATCH 1/2] x86/hyperv: fix invalid writes to MSRs during root partition kexec
Date: Thu, 27 Oct 2022 15:31:24 +0530 [thread overview]
Message-ID: <Y1pW9AeKjKNDGb5L@anrayabh-desk> (raw)
In-Reply-To: <BYAPR21MB168837A9E4B73D7B26040B52D7309@BYAPR21MB1688.namprd21.prod.outlook.com>
On Wed, Oct 26, 2022 at 02:58:16PM +0000, Michael Kelley (LINUX) wrote:
> From: Anirudh Rayabharam <anrayabh@linux.microsoft.com> Sent: Wednesday, October 26, 2022 6:47 AM
> >
> > hv_cleanup resets the hypercall page by setting the MSR to 0. However,
> > the root partition is not allowed to write to the GPA bits of the MSR.
> > Instead, it uses the hypercall page provided by the MSR. Similar is the
> > case with the reference TSC MSR.
> >
> > Clear only the enable bit instead of zeroing the entire MSR to make
> > the code valid for root partition too.
>
> When the enable bit is cleared (but not the PFN) in the MSR, do we know
> for sure that Hyper-V removes the overlay page for the PFN? Making sure
> that the overlay page is removed is the main reason for clearing the entire
> MSR. If we're going to leave the PFN in place and just clear the enable bit,
> we need to confirm with the Hyper-V guys that the overlay page will be
> removed.
I checked the hypervisor code. Just clearing the enable bit does cause
the overlay page to be unmapped by the hypervisor.
Thanks,
Anirudh.
>
> Michael
>
> >
> > Signed-off-by: Anirudh Rayabharam <anrayabh@linux.microsoft.com>
> > ---
> > arch/x86/hyperv/hv_init.c | 9 ++++++---
> > 1 file changed, 6 insertions(+), 3 deletions(-)
> >
> > diff --git a/arch/x86/hyperv/hv_init.c b/arch/x86/hyperv/hv_init.c
> > index 29774126e931..76ff63d69461 100644
> > --- a/arch/x86/hyperv/hv_init.c
> > +++ b/arch/x86/hyperv/hv_init.c
> > @@ -537,6 +537,7 @@ void __init hyperv_init(void)
> > void hyperv_cleanup(void)
> > {
> > union hv_x64_msr_hypercall_contents hypercall_msr;
> > + u64 tsc_msr;
> >
> > unregister_syscore_ops(&hv_syscore_ops);
> >
> > @@ -552,12 +553,14 @@ void hyperv_cleanup(void)
> > hv_hypercall_pg = NULL;
> >
> > /* Reset the hypercall page */
> > - hypercall_msr.as_uint64 = 0;
> > + rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
> > + hypercall_msr.enable = 0;
> > wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
> >
> > /* Reset the TSC page */
> > - hypercall_msr.as_uint64 = 0;
> > - wrmsrl(HV_X64_MSR_REFERENCE_TSC, hypercall_msr.as_uint64);
> > + rdmsrl(HV_X64_MSR_REFERENCE_TSC, tsc_msr);
> > + tsc_msr &= ~BIT_ULL(0);
> > + wrmsrl(HV_X64_MSR_REFERENCE_TSC, tsc_msr);
> > }
> >
> > void hyperv_report_panic(struct pt_regs *regs, long err, bool in_die)
> > --
> > 2.34.1
next prev parent reply other threads:[~2022-10-27 10:02 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-26 13:47 [PATCH 0/2] Fix MSR access errors during kexec in root partition Anirudh Rayabharam
2022-10-26 13:47 ` [PATCH 1/2] x86/hyperv: fix invalid writes to MSRs during root partition kexec Anirudh Rayabharam
2022-10-26 14:58 ` Michael Kelley (LINUX)
2022-10-27 10:01 ` Anirudh Rayabharam [this message]
2022-10-26 13:47 ` [PATCH 2/2] clocksource/drivers/hyperv: add data structure for reference TSC MSR Anirudh Rayabharam
2022-10-26 14:57 ` [PATCH 0/2] Fix MSR access errors during kexec in root partition Michael Kelley (LINUX)
2022-10-27 10:03 ` Anirudh Rayabharam
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=Y1pW9AeKjKNDGb5L@anrayabh-desk \
--to=anrayabh@linux.microsoft.com \
--cc=arnd@arndb.de \
--cc=bp@alien8.de \
--cc=daniel.lezcano@linaro.org \
--cc=dave.hansen@linux.intel.com \
--cc=decui@microsoft.com \
--cc=haiyangz@microsoft.com \
--cc=hpa@zytor.com \
--cc=kumarpraveen@linux.microsoft.com \
--cc=kys@microsoft.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-hyperv@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mail@anirudhrb.com \
--cc=mikelley@microsoft.com \
--cc=mingo@redhat.com \
--cc=sthemmin@microsoft.com \
--cc=tglx@linutronix.de \
--cc=wei.liu@kernel.org \
--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