]> git.proxmox.com Git - pve-kernel.git/blame_incremental - patches/kernel/0008-KVM-x86-emulator-em_sysexit-should-update-ctxt-mode.patch
update sources to Ubuntu-5.19.0-14.14
[pve-kernel.git] / patches / kernel / 0008-KVM-x86-emulator-em_sysexit-should-update-ctxt-mode.patch
... / ...
CommitLineData
1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2From: Maxim Levitsky <mlevitsk@redhat.com>
3Date: Wed, 3 Aug 2022 18:50:00 +0300
4Subject: [PATCH] KVM: x86: emulator: em_sysexit should update ctxt->mode
5
6This is one of the instructions that can change the
7processor mode.
8
9Note that this is likely a benign bug, because the only problematic
10mode change is from 32 bit to 64 bit which can lead to truncation of RIP,
11and it is not possible to do with sysexit,
12since sysexit running in 32 bit mode will be limited to 32 bit version.
13
14Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com>
15Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
16---
17 arch/x86/kvm/emulate.c | 1 +
18 1 file changed, 1 insertion(+)
19
20diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
21index 89b11e7dca8a..93349b54ef56 100644
22--- a/arch/x86/kvm/emulate.c
23+++ b/arch/x86/kvm/emulate.c
24@@ -2875,6 +2875,7 @@ static int em_sysexit(struct x86_emulate_ctxt *ctxt)
25 ops->set_segment(ctxt, ss_sel, &ss, 0, VCPU_SREG_SS);
26
27 ctxt->_eip = rdx;
28+ ctxt->mode = usermode;
29 *reg_write(ctxt, VCPU_REGS_RSP) = rcx;
30
31 return X86EMUL_CONTINUE;