Blame SOURCES/kvm-i386-define-the-ssbd-CPUID-feature-bit-CVE-2018-3639.patch

383d26
From a075f54393d3a00554855b938f3adfd7aaafec76 Mon Sep 17 00:00:00 2001
383d26
From: Eduardo Habkost <ehabkost@redhat.com>
383d26
Date: Thu, 30 Aug 2018 14:18:05 +0200
383d26
Subject: [PATCH 06/29] i386: define the 'ssbd' CPUID feature bit
383d26
 (CVE-2018-3639)
383d26
MIME-Version: 1.0
383d26
Content-Type: text/plain; charset=UTF-8
383d26
Content-Transfer-Encoding: 8bit
383d26
383d26
RH-Author: Eduardo Habkost <ehabkost@redhat.com>
383d26
Message-id: <20180830141805.6667-2-ehabkost@redhat.com>
383d26
Patchwork-id: 81977
383d26
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 1/1] i386: define the 'ssbd' CPUID feature bit (CVE-2018-3639)
383d26
Bugzilla: 1574216
383d26
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
383d26
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
383d26
RH-Acked-by: Daniel P. Berrange <berrange@redhat.com>
383d26
383d26
From: Daniel P. Berrangé <berrange@redhat.com>
383d26
383d26
New microcode introduces the "Speculative Store Bypass Disable"
383d26
CPUID feature bit. This needs to be exposed to guest OS to allow
383d26
them to protect against CVE-2018-3639.
383d26
383d26
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
383d26
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
383d26
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
383d26
Message-Id: <20180521215424.13520-2-berrange@redhat.com>
383d26
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
383d26
(cherry picked from commit d19d1f965904a533998739698020ff4ee8a103da)
383d26
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 target/i386/cpu.c | 2 +-
383d26
 target/i386/cpu.h | 1 +
383d26
 2 files changed, 2 insertions(+), 1 deletion(-)
383d26
383d26
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
383d26
index e6ad66c..e317aaf 100644
383d26
--- a/target/i386/cpu.c
383d26
+++ b/target/i386/cpu.c
383d26
@@ -1008,7 +1008,7 @@ static FeatureWordInfo feature_word_info[FEATURE_WORDS] = {
383d26
             NULL, NULL, NULL, NULL,
383d26
             NULL, NULL, NULL, NULL,
383d26
             NULL, NULL, "spec-ctrl", NULL,
383d26
-            NULL, NULL, NULL, NULL,
383d26
+            NULL, NULL, NULL, "ssbd",
383d26
         },
383d26
         .cpuid_eax = 7,
383d26
         .cpuid_needs_ecx = true, .cpuid_ecx = 0,
383d26
diff --git a/target/i386/cpu.h b/target/i386/cpu.h
383d26
index c80c461..75cf5ed 100644
383d26
--- a/target/i386/cpu.h
383d26
+++ b/target/i386/cpu.h
383d26
@@ -686,6 +686,7 @@ typedef uint32_t FeatureWordArray[FEATURE_WORDS];
383d26
 #define CPUID_7_0_EDX_AVX512_4VNNIW (1U << 2) /* AVX512 Neural Network Instructions */
383d26
 #define CPUID_7_0_EDX_AVX512_4FMAPS (1U << 3) /* AVX512 Multiply Accumulation Single Precision */
383d26
 #define CPUID_7_0_EDX_SPEC_CTRL     (1U << 26) /* Speculation Control */
383d26
+#define CPUID_7_0_EDX_SPEC_CTRL_SSBD  (1U << 31) /* Speculative Store Bypass Disable */
383d26
 
383d26
 #define KVM_HINTS_DEDICATED (1U << 0)
383d26
 
383d26
-- 
383d26
1.8.3.1
383d26