]> git.baikalelectronics.ru Git - kernel.git/commitdiff
KVM: x86: Move guts of kvm_arch_init() to standalone helper
authorSean Christopherson <seanjc@google.com>
Wed, 30 Nov 2022 23:08:57 +0000 (23:08 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 Mar 2023 07:50:17 +0000 (08:50 +0100)
[ Upstream commit 4ae20875c9bf11136fc74c56a449a24ff47add1c ]

Move the guts of kvm_arch_init() to a new helper, kvm_x86_vendor_init(),
so that VMX can do _all_ arch and vendor initialization before calling
kvm_init().  Calling kvm_init() must be the _very_ last step during init,
as kvm_init() exposes /dev/kvm to userspace, i.e. allows creating VMs.

No functional change intended.

Signed-off-by: Sean Christopherson <seanjc@google.com>
Message-Id: <20221130230934.1014142-14-seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Stable-dep-of: 3c3b35a745e3 ("KVM: VMX: Do _all_ initialization before exposing /dev/kvm to userspace")
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/include/asm/kvm_host.h
arch/x86/kvm/svm/svm.c
arch/x86/kvm/vmx/vmx.c
arch/x86/kvm/x86.c

index f05ebaa26f0ff52a43294ea0c9e60175037c123e..ef8cabfbe8540ef5676a0a9b24072493a58038d9 100644 (file)
@@ -1695,6 +1695,9 @@ extern struct kvm_x86_ops kvm_x86_ops;
 #define KVM_X86_OP_OPTIONAL_RET0 KVM_X86_OP
 #include <asm/kvm-x86-ops.h>
 
+int kvm_x86_vendor_init(struct kvm_x86_init_ops *ops);
+void kvm_x86_vendor_exit(void);
+
 #define __KVM_HAVE_ARCH_VM_ALLOC
 static inline struct kvm *kvm_arch_alloc_vm(void)
 {
index bfe93a1c4f92e12331d57fef181a4ed743d33a15..3629dd979667c5be6a59bc256aaec83b590391b3 100644 (file)
@@ -5080,15 +5080,34 @@ static struct kvm_x86_init_ops svm_init_ops __initdata = {
 
 static int __init svm_init(void)
 {
+       int r;
+
        __unused_size_checks();
 
-       return kvm_init(&svm_init_ops, sizeof(struct vcpu_svm),
-                       __alignof__(struct vcpu_svm), THIS_MODULE);
+       r = kvm_x86_vendor_init(&svm_init_ops);
+       if (r)
+               return r;
+
+       /*
+        * Common KVM initialization _must_ come last, after this, /dev/kvm is
+        * exposed to userspace!
+        */
+       r = kvm_init(&svm_init_ops, sizeof(struct vcpu_svm),
+                    __alignof__(struct vcpu_svm), THIS_MODULE);
+       if (r)
+               goto err_kvm_init;
+
+       return 0;
+
+err_kvm_init:
+       kvm_x86_vendor_exit();
+       return r;
 }
 
 static void __exit svm_exit(void)
 {
        kvm_exit();
+       kvm_x86_vendor_exit();
 }
 
 module_init(svm_init)
index d3d84563a7f9c16751124632067e76846c2dc1eb..81a23ae4f872b84ad99ef2046550fe87842a2489 100644 (file)
@@ -8464,6 +8464,7 @@ static void vmx_exit(void)
 #endif
 
        kvm_exit();
+       kvm_x86_vendor_exit();
 
        vmx_cleanup_l1d_flush();
 
@@ -8508,23 +8509,25 @@ static int __init vmx_init(void)
        }
 #endif
 
+       r = kvm_x86_vendor_init(&vmx_init_ops);
+       if (r)
+               return r;
+
        r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
                     __alignof__(struct vcpu_vmx), THIS_MODULE);
        if (r)
-               return r;
+               goto err_kvm_init;
 
        /*
-        * Must be called after kvm_init() so enable_ept is properly set
+        * Must be called after common x86 init so enable_ept is properly set
         * up. Hand the parameter mitigation value in which was stored in
         * the pre module init parser. If no parameter was given, it will
         * contain 'auto' which will be turned into the default 'cond'
         * mitigation mode.
         */
        r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
-       if (r) {
-               vmx_exit();
-               return r;
-       }
+       if (r)
+               goto err_l1d_flush;
 
        vmx_setup_fb_clear_ctrl();
 
@@ -8549,5 +8552,11 @@ static int __init vmx_init(void)
                allow_smaller_maxphyaddr = true;
 
        return 0;
+
+err_l1d_flush:
+       vmx_exit();
+err_kvm_init:
+       kvm_x86_vendor_exit();
+       return r;
 }
 module_init(vmx_init);
index 68827b8dc37a5d1cfc6b3d15928a8dbc1df0c6c2..ab09d292bdede9e13630eb69cc2522851a16ff6c 100644 (file)
@@ -9351,7 +9351,16 @@ static struct notifier_block pvclock_gtod_notifier = {
 
 int kvm_arch_init(void *opaque)
 {
-       struct kvm_x86_init_ops *ops = opaque;
+       return 0;
+}
+
+void kvm_arch_exit(void)
+{
+
+}
+
+int kvm_x86_vendor_init(struct kvm_x86_init_ops *ops)
+{
        u64 host_pat;
        int r;
 
@@ -9441,8 +9450,9 @@ out_free_x86_emulator_cache:
        kmem_cache_destroy(x86_emulator_cache);
        return r;
 }
+EXPORT_SYMBOL_GPL(kvm_x86_vendor_init);
 
-void kvm_arch_exit(void)
+void kvm_x86_vendor_exit(void)
 {
 #ifdef CONFIG_X86_64
        if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
@@ -9468,6 +9478,7 @@ void kvm_arch_exit(void)
        WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
 #endif
 }
+EXPORT_SYMBOL_GPL(kvm_x86_vendor_exit);
 
 static int __kvm_emulate_halt(struct kvm_vcpu *vcpu, int state, int reason)
 {