]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: x86: Fully initialize 'struct kvm_lapic_irq' in kvm_pv_kick_cpu_op()
authorVitaly Kuznetsov <vkuznets@redhat.com>
Fri, 8 Jul 2022 12:51:47 +0000 (14:51 +0200)
committerSean Christopherson <seanjc@google.com>
Fri, 8 Jul 2022 22:59:28 +0000 (15:59 -0700)
commit4dfed614ed88e4e4a59f972686a154342c69eab5
treee75b93fd8009fb1aa20d498f4bea979f66d3ce54
parenta1b31f659fa8448b3afcb9f80d276a73c4cda9de
KVM: x86: Fully initialize 'struct kvm_lapic_irq' in kvm_pv_kick_cpu_op()

'vector' and 'trig_mode' fields of 'struct kvm_lapic_irq' are left
uninitialized in kvm_pv_kick_cpu_op(). While these fields are normally
not needed for APIC_DM_REMRD, they're still referenced by
__apic_accept_irq() for trace_kvm_apic_accept_irq(). Fully initialize
the structure to avoid consuming random stack memory.

Fixes: 715c1b0ced00 ("KVM: x86: make apic_accept_irq tracepoint more generic")
Reported-by: syzbot+d6caa905917d353f0d07@syzkaller.appspotmail.com
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Reviewed-by: Sean Christopherson <seanjc@google.com>
Link: https://lore.kernel.org/r/20220708125147.593975-1-vkuznets@redhat.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
arch/x86/kvm/x86.c