Blame SOURCES/kvm-target-i386-kvm-do-not-access-uninitialized-variable.patch

0727d3
From 688c9f386635544dbc468171a32fbc84f0c9224e Mon Sep 17 00:00:00 2001
0727d3
From: Paolo Bonzini <pbonzini@redhat.com>
0727d3
Date: Fri, 18 Mar 2022 16:23:47 +0100
0727d3
Subject: [PATCH 12/24] target/i386: kvm: do not access uninitialized variable
0727d3
 on older kernels
0727d3
0727d3
RH-Author: Paul Lai <plai@redhat.com>
0727d3
RH-MergeRequest: 176: Enable KVM AMX support
0727d3
RH-Commit: [12/13] 776fac1e7d1aa16ec5f4d99ddad3039eab8212af
0727d3
RH-Bugzilla: 1916415
0727d3
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
0727d3
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
0727d3
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
0727d3
0727d3
KVM support for AMX includes a new system attribute, KVM_X86_XCOMP_GUEST_SUPP.
0727d3
Commit 19db68ca68 ("x86: Grant AMX permission for guest", 2022-03-15) however
0727d3
did not fully consider the behavior on older kernels.  First, it warns
0727d3
too aggressively.  Second, it invokes the KVM_GET_DEVICE_ATTR ioctl
0727d3
unconditionally and then uses the "bitmask" variable, which remains
0727d3
uninitialized if the ioctl fails.  Third, kvm_ioctl returns -errno rather
0727d3
than -1 on errors.
0727d3
0727d3
While at it, explain why the ioctl is needed and KVM_GET_SUPPORTED_CPUID
0727d3
is not enough.
0727d3
0727d3
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
0727d3
(cherry picked from commit 3ec5ad40081b14af28496198b4d08dbe13386790)
0727d3
Signed-off-by: Paul Lai <plai@redhat.com>
0727d3
---
0727d3
 target/i386/kvm/kvm.c | 17 +++++++++++++----
0727d3
 1 file changed, 13 insertions(+), 4 deletions(-)
0727d3
0727d3
diff --git a/target/i386/kvm/kvm.c b/target/i386/kvm/kvm.c
0727d3
index b1128b0e07..bd439e56ad 100644
0727d3
--- a/target/i386/kvm/kvm.c
0727d3
+++ b/target/i386/kvm/kvm.c
0727d3
@@ -409,6 +409,12 @@ uint32_t kvm_arch_get_supported_cpuid(KVMState *s, uint32_t function,
0727d3
         }
0727d3
     } else if (function == 0xd && index == 0 &&
0727d3
                (reg == R_EAX || reg == R_EDX)) {
0727d3
+        /*
0727d3
+         * The value returned by KVM_GET_SUPPORTED_CPUID does not include
0727d3
+         * features that still have to be enabled with the arch_prctl
0727d3
+         * system call.  QEMU needs the full value, which is retrieved
0727d3
+         * with KVM_GET_DEVICE_ATTR.
0727d3
+         */
0727d3
         struct kvm_device_attr attr = {
0727d3
             .group = 0,
0727d3
             .attr = KVM_X86_XCOMP_GUEST_SUPP,
0727d3
@@ -417,13 +423,16 @@ uint32_t kvm_arch_get_supported_cpuid(KVMState *s, uint32_t function,
0727d3
 
0727d3
         bool sys_attr = kvm_check_extension(s, KVM_CAP_SYS_ATTRIBUTES);
0727d3
         if (!sys_attr) {
0727d3
-            warn_report("cannot get sys attribute capabilities %d", sys_attr);
0727d3
+            return ret;
0727d3
         }
0727d3
 
0727d3
         int rc = kvm_ioctl(s, KVM_GET_DEVICE_ATTR, &attr);
0727d3
-        if (rc == -1 && (errno == ENXIO || errno == EINVAL)) {
0727d3
-            warn_report("KVM_GET_DEVICE_ATTR(0, KVM_X86_XCOMP_GUEST_SUPP) "
0727d3
-                        "error: %d", rc);
0727d3
+        if (rc < 0) {
0727d3
+            if (rc != -ENXIO) {
0727d3
+                warn_report("KVM_GET_DEVICE_ATTR(0, KVM_X86_XCOMP_GUEST_SUPP) "
0727d3
+                            "error: %d", rc);
0727d3
+            }
0727d3
+            return ret;
0727d3
         }
0727d3
         ret = (reg == R_EAX) ? bitmask : bitmask >> 32;
0727d3
     } else if (function == 0x80000001 && reg == R_ECX) {
0727d3
-- 
0727d3
2.35.3
0727d3