kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Bug 106621] New: Failure to install Hyper-V role on nested KVM guest
@ 2015-10-26 12:57 bugzilla-daemon
  2017-02-14 17:14 ` [Bug 106621] " bugzilla-daemon
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: bugzilla-daemon @ 2015-10-26 12:57 UTC (permalink / raw)
  To: kvm

https://bugzilla.kernel.org/show_bug.cgi?id=106621

            Bug ID: 106621
           Summary: Failure to install Hyper-V role on nested KVM guest
           Product: Virtualization
           Version: unspecified
    Kernel Version: 4.3.0-rc7
          Hardware: x86-64
                OS: Linux
              Tree: Mainline
            Status: NEW
          Severity: normal
          Priority: P1
         Component: kvm
          Assignee: virtualization_kvm@kernel-bugs.osdl.org
          Reporter: Rainmaker52@gmail.com
        Regression: No

When installing the Hyper-V role on a Windows guest (tried 2008 R2, 2012 R2 and
2016 TP3), the Windows installer refuses to install because of the error 

"Hyper-V cannot be installed because virtualization support is not enabled in
the BIOS."

This is because the MSR 0x3a is initialized to "0".

When VMX is activated on the guest CPU, the 0x3a register should return "5".

The following code patch (may be a bit of an overstatement) returns "5" if VMX
is set on the guest CPU, thereby reporting to the guest that visualization is
enabled in the BIOS. 

--- a/arch/x86/kvm/vmx.c    2015-10-25 02:39:47.000000000 +0100
+++ b/arch/x86/kvm/vmx.c    2015-10-26 13:35:51.894700786 +0100
@@ -2661,7 +2661,12 @@
     case MSR_IA32_FEATURE_CONTROL:
         if (!nested_vmx_allowed(vcpu))
             return 1;
-        msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control;
+        if (nested_vmx_allowed(vcpu)) {
+            //Set all 3 bits in 0x3a
+            msr_info->data = 5;
+        } else {
+            msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control;
+        }
         break;
     case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
         if (!nested_vmx_allowed(vcpu))


This, together with "-cpu host,-hypervisor,+vmx will allow Hyper-V to be
installed. It will however not allow to start these Virtual Machines.

-- 
You are receiving this mail because:
You are watching the assignee of the bug.

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

* [Bug 106621] Failure to install Hyper-V role on nested KVM guest
  2015-10-26 12:57 [Bug 106621] New: Failure to install Hyper-V role on nested KVM guest bugzilla-daemon
@ 2017-02-14 17:14 ` bugzilla-daemon
  2017-02-14 17:21 ` bugzilla-daemon
  2017-02-14 17:51 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2017-02-14 17:14 UTC (permalink / raw)
  To: kvm

https://bugzilla.kernel.org/show_bug.cgi?id=106621

Alexander E. Patrakov (patrakov@gmail.com) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |patrakov@gmail.com

--- Comment #1 from Alexander E. Patrakov (patrakov@gmail.com) ---
While trying to run an L2 VM in HyperV in KVM, I was able to get another
potentially useful log message from Windows:

Hypervisor launch failed; Processor does not support the minimum features
required to run the hypervisor (MSR index 0x48B, allowed bits 0x2600000000,
required bits 0xFB00000000).

That's on linux-4.9.8.

-- 
You are receiving this mail because:
You are watching the assignee of the bug.

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

* [Bug 106621] Failure to install Hyper-V role on nested KVM guest
  2015-10-26 12:57 [Bug 106621] New: Failure to install Hyper-V role on nested KVM guest bugzilla-daemon
  2017-02-14 17:14 ` [Bug 106621] " bugzilla-daemon
@ 2017-02-14 17:21 ` bugzilla-daemon
  2017-02-14 17:51 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2017-02-14 17:21 UTC (permalink / raw)
  To: kvm

https://bugzilla.kernel.org/show_bug.cgi?id=106621

--- Comment #2 from Alexander E. Patrakov (patrakov@gmail.com) ---
in a Linux L1 guest, with "-enable-kvm -cpu host,-hypervisor,+vmx,kvm=off",
"rdmsr 0x48b" returns fb00000000, but that's still not good enough for HyperV.

-- 
You are receiving this mail because:
You are watching the assignee of the bug.

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

* [Bug 106621] Failure to install Hyper-V role on nested KVM guest
  2015-10-26 12:57 [Bug 106621] New: Failure to install Hyper-V role on nested KVM guest bugzilla-daemon
  2017-02-14 17:14 ` [Bug 106621] " bugzilla-daemon
  2017-02-14 17:21 ` bugzilla-daemon
@ 2017-02-14 17:51 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2017-02-14 17:51 UTC (permalink / raw)
  To: kvm

https://bugzilla.kernel.org/show_bug.cgi?id=106621

Paolo Bonzini (bonzini@gnu.org) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bonzini@gnu.org
         Resolution|---                         |CODE_FIX

--- Comment #3 from Paolo Bonzini (bonzini@gnu.org) ---
Will work in 4.10.

-- 
You are receiving this mail because:
You are watching the assignee of the bug.

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

end of thread, other threads:[~2017-02-14 17:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-26 12:57 [Bug 106621] New: Failure to install Hyper-V role on nested KVM guest bugzilla-daemon
2017-02-14 17:14 ` [Bug 106621] " bugzilla-daemon
2017-02-14 17:21 ` bugzilla-daemon
2017-02-14 17:51 ` bugzilla-daemon

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).