linux-hyperv.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] x86/hyperv: Block root partition functionality in a Confidential VM
@ 2023-03-15 15:34 Michael Kelley
  2023-03-17 10:57 ` Wei Liu
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Kelley @ 2023-03-15 15:34 UTC (permalink / raw)
  To: kys, wei.liu, decui, tglx, mingo, bp, dave.hansen, hpa, x86,
	linux-kernel, linux-hyperv
  Cc: mikelley

Hyper-V should never specify a VM that is a Confidential VM and also
running in the root partition.  Nonetheless, explicitly block such a
combination to guard against a compromised Hyper-V maliciously trying to
exploit root partition functionality in a Confidential VM to expose
Confidential VM secrets. No known bug is being fixed, but the attack
surface for Confidential VMs on Hyper-V is reduced.

Signed-off-by: Michael Kelley <mikelley@microsoft.com>
---
 arch/x86/kernel/cpu/mshyperv.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kernel/cpu/mshyperv.c b/arch/x86/kernel/cpu/mshyperv.c
index ff348eb..ac630ec 100644
--- a/arch/x86/kernel/cpu/mshyperv.c
+++ b/arch/x86/kernel/cpu/mshyperv.c
@@ -356,12 +356,16 @@ static void __init ms_hyperv_init_platform(void)
 	 * To mirror what Windows does we should extract CPU management
 	 * features and use the ReservedIdentityBit to detect if Linux is the
 	 * root partition. But that requires negotiating CPU management
-	 * interface (a process to be finalized).
+	 * interface (a process to be finalized). For now, use the privilege
+	 * flag as the indicator for running as root.
 	 *
-	 * For now, use the privilege flag as the indicator for running as
-	 * root.
+	 * Hyper-V should never specify running as root and as a Confidential
+	 * VM. But to protect against a compromised/malicious Hyper-V trying
+	 * to exploit root behavior to expose Confidential VM memory, ignore
+	 * the root partition setting if also a Confidential VM.
 	 */
-	if (cpuid_ebx(HYPERV_CPUID_FEATURES) & HV_CPU_MANAGEMENT) {
+	if ((ms_hyperv.priv_high & HV_CPU_MANAGEMENT) &&
+	    !(ms_hyperv.priv_high & HV_ISOLATION)) {
 		hv_root_partition = true;
 		pr_info("Hyper-V: running as root partition\n");
 	}
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] x86/hyperv: Block root partition functionality in a Confidential VM
  2023-03-15 15:34 [PATCH 1/1] x86/hyperv: Block root partition functionality in a Confidential VM Michael Kelley
@ 2023-03-17 10:57 ` Wei Liu
  0 siblings, 0 replies; 2+ messages in thread
From: Wei Liu @ 2023-03-17 10:57 UTC (permalink / raw)
  To: Michael Kelley
  Cc: kys, wei.liu, decui, tglx, mingo, bp, dave.hansen, hpa, x86,
	linux-kernel, linux-hyperv

On Wed, Mar 15, 2023 at 08:34:13AM -0700, Michael Kelley wrote:
> Hyper-V should never specify a VM that is a Confidential VM and also
> running in the root partition.  Nonetheless, explicitly block such a
> combination to guard against a compromised Hyper-V maliciously trying to
> exploit root partition functionality in a Confidential VM to expose
> Confidential VM secrets. No known bug is being fixed, but the attack
> surface for Confidential VMs on Hyper-V is reduced.
> 
> Signed-off-by: Michael Kelley <mikelley@microsoft.com>

Applied to hyperv-fixes. Thanks.

> ---
>  arch/x86/kernel/cpu/mshyperv.c | 12 ++++++++----
>  1 file changed, 8 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/x86/kernel/cpu/mshyperv.c b/arch/x86/kernel/cpu/mshyperv.c
> index ff348eb..ac630ec 100644
> --- a/arch/x86/kernel/cpu/mshyperv.c
> +++ b/arch/x86/kernel/cpu/mshyperv.c
> @@ -356,12 +356,16 @@ static void __init ms_hyperv_init_platform(void)
>  	 * To mirror what Windows does we should extract CPU management
>  	 * features and use the ReservedIdentityBit to detect if Linux is the
>  	 * root partition. But that requires negotiating CPU management
> -	 * interface (a process to be finalized).
> +	 * interface (a process to be finalized). For now, use the privilege
> +	 * flag as the indicator for running as root.
>  	 *
> -	 * For now, use the privilege flag as the indicator for running as
> -	 * root.
> +	 * Hyper-V should never specify running as root and as a Confidential
> +	 * VM. But to protect against a compromised/malicious Hyper-V trying
> +	 * to exploit root behavior to expose Confidential VM memory, ignore
> +	 * the root partition setting if also a Confidential VM.
>  	 */
> -	if (cpuid_ebx(HYPERV_CPUID_FEATURES) & HV_CPU_MANAGEMENT) {
> +	if ((ms_hyperv.priv_high & HV_CPU_MANAGEMENT) &&
> +	    !(ms_hyperv.priv_high & HV_ISOLATION)) {
>  		hv_root_partition = true;
>  		pr_info("Hyper-V: running as root partition\n");
>  	}
> -- 
> 1.8.3.1
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-17 10:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-15 15:34 [PATCH 1/1] x86/hyperv: Block root partition functionality in a Confidential VM Michael Kelley
2023-03-17 10:57 ` Wei Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).