diff options
author | Marios Pomonis <pomonis@google.com> | 2019-12-11 12:47:45 -0800 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2020-05-22 21:19:37 +0100 |
commit | 56b51e25ffb93ae142652400c35ea43f0899d0c2 (patch) | |
tree | 08c64717cc09a4dfb277754eb327b63de8bb19b0 | |
parent | dfe2282f8e4de99b37b13aa52720a9b3646ea857 (diff) | |
download | linux-stable-56b51e25ffb93ae142652400c35ea43f0899d0c2.tar.gz linux-stable-56b51e25ffb93ae142652400c35ea43f0899d0c2.tar.bz2 linux-stable-56b51e25ffb93ae142652400c35ea43f0899d0c2.zip |
KVM: x86: Protect ioapic_write_indirect() from Spectre-v1/L1TF attacks
commit 670564559ca35b439c8d8861fc399451ddf95137 upstream.
This fixes a Spectre-v1/L1TF vulnerability in ioapic_write_indirect().
This function contains index computations based on the
(attacker-controlled) IOREGSEL register.
This patch depends on patch
"KVM: x86: Protect ioapic_read_indirect() from Spectre-v1/L1TF attacks".
Fixes: 70f93dae32ac ("KVM: Use temporary variable to shorten lines.")
Signed-off-by: Nick Finco <nifi@google.com>
Signed-off-by: Marios Pomonis <pomonis@google.com>
Reviewed-by: Andrew Honig <ahonig@google.com>
Reviewed-by: Jim Mattson <jmattson@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
[bwh: Backported to 3.16: adjust filename]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r-- | virt/kvm/ioapic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c index c022e959dd88..456131c04c90 100644 --- a/virt/kvm/ioapic.c +++ b/virt/kvm/ioapic.c @@ -312,6 +312,7 @@ static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val) ioapic_debug("change redir index %x val %x\n", index, val); if (index >= IOAPIC_NUM_PINS) return; + index = array_index_nospec(index, IOAPIC_NUM_PINS); e = &ioapic->redirtbl[index]; mask_before = e->fields.mask; if (ioapic->ioregsel & 1) { |