aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2009-03-23 06:12:11 -0400
committerAvi Kivity <avi@redhat.com>2009-06-10 04:48:33 -0400
commit78646121e9a2fcf7977cc15966420e572a450bc3 (patch)
tree55aeac260f4a43bef8e1bc1147f93a3f7e867ec7 /arch/x86
parent09cec754885f900f6aab23801878c0cd217ee1d6 (diff)
KVM: Fix interrupt unhalting a vcpu when it shouldn't
kvm_vcpu_block() unhalts vpu on an interrupt/timer without checking if interrupt window is actually opened. Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/include/asm/kvm_host.h2
-rw-r--r--arch/x86/kvm/svm.c10
-rw-r--r--arch/x86/kvm/vmx.c8
-rw-r--r--arch/x86/kvm/x86.c5
4 files changed, 23 insertions, 2 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
index 46276273a1a1..8351c4d00ac0 100644
--- a/arch/x86/include/asm/kvm_host.h
+++ b/arch/x86/include/asm/kvm_host.h
@@ -521,7 +521,7 @@ struct kvm_x86_ops {
521 void (*inject_pending_irq)(struct kvm_vcpu *vcpu); 521 void (*inject_pending_irq)(struct kvm_vcpu *vcpu);
522 void (*inject_pending_vectors)(struct kvm_vcpu *vcpu, 522 void (*inject_pending_vectors)(struct kvm_vcpu *vcpu,
523 struct kvm_run *run); 523 struct kvm_run *run);
524 524 int (*interrupt_allowed)(struct kvm_vcpu *vcpu);
525 int (*set_tss_addr)(struct kvm *kvm, unsigned int addr); 525 int (*set_tss_addr)(struct kvm *kvm, unsigned int addr);
526 int (*get_tdp_level)(void); 526 int (*get_tdp_level)(void);
527 int (*get_mt_mask_shift)(void); 527 int (*get_mt_mask_shift)(void);
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index aa528dbad070..de741043c5b1 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -2270,6 +2270,15 @@ static void update_cr8_intercept(struct kvm_vcpu *vcpu)
2270 vmcb->control.intercept_cr_write |= INTERCEPT_CR8_MASK; 2270 vmcb->control.intercept_cr_write |= INTERCEPT_CR8_MASK;
2271} 2271}
2272 2272
2273static int svm_interrupt_allowed(struct kvm_vcpu *vcpu)
2274{
2275 struct vcpu_svm *svm = to_svm(vcpu);
2276 struct vmcb *vmcb = svm->vmcb;
2277 return (vmcb->save.rflags & X86_EFLAGS_IF) &&
2278 !(vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) &&
2279 (svm->vcpu.arch.hflags & HF_GIF_MASK);
2280}
2281
2273static void svm_intr_assist(struct kvm_vcpu *vcpu) 2282static void svm_intr_assist(struct kvm_vcpu *vcpu)
2274{ 2283{
2275 struct vcpu_svm *svm = to_svm(vcpu); 2284 struct vcpu_svm *svm = to_svm(vcpu);
@@ -2649,6 +2658,7 @@ static struct kvm_x86_ops svm_x86_ops = {
2649 .exception_injected = svm_exception_injected, 2658 .exception_injected = svm_exception_injected,
2650 .inject_pending_irq = svm_intr_assist, 2659 .inject_pending_irq = svm_intr_assist,
2651 .inject_pending_vectors = do_interrupt_requests, 2660 .inject_pending_vectors = do_interrupt_requests,
2661 .interrupt_allowed = svm_interrupt_allowed,
2652 2662
2653 .set_tss_addr = svm_set_tss_addr, 2663 .set_tss_addr = svm_set_tss_addr,
2654 .get_tdp_level = get_npt_level, 2664 .get_tdp_level = get_npt_level,
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index da6461d5dc84..b9e06b07aca1 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -2490,6 +2490,12 @@ static void vmx_update_window_states(struct kvm_vcpu *vcpu)
2490 GUEST_INTR_STATE_MOV_SS))); 2490 GUEST_INTR_STATE_MOV_SS)));
2491} 2491}
2492 2492
2493static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2494{
2495 vmx_update_window_states(vcpu);
2496 return vcpu->arch.interrupt_window_open;
2497}
2498
2493static void do_interrupt_requests(struct kvm_vcpu *vcpu, 2499static void do_interrupt_requests(struct kvm_vcpu *vcpu,
2494 struct kvm_run *kvm_run) 2500 struct kvm_run *kvm_run)
2495{ 2501{
@@ -3691,7 +3697,7 @@ static struct kvm_x86_ops vmx_x86_ops = {
3691 .exception_injected = vmx_exception_injected, 3697 .exception_injected = vmx_exception_injected,
3692 .inject_pending_irq = vmx_intr_assist, 3698 .inject_pending_irq = vmx_intr_assist,
3693 .inject_pending_vectors = do_interrupt_requests, 3699 .inject_pending_vectors = do_interrupt_requests,
3694 3700 .interrupt_allowed = vmx_interrupt_allowed,
3695 .set_tss_addr = vmx_set_tss_addr, 3701 .set_tss_addr = vmx_set_tss_addr,
3696 .get_tdp_level = get_ept_level, 3702 .get_tdp_level = get_ept_level,
3697 .get_mt_mask_shift = vmx_get_mt_mask_shift, 3703 .get_mt_mask_shift = vmx_get_mt_mask_shift,
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 8fca7a4e95a3..5bbcad345376 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -4475,3 +4475,8 @@ void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
4475 smp_call_function_single(ipi_pcpu, vcpu_kick_intr, vcpu, 0); 4475 smp_call_function_single(ipi_pcpu, vcpu_kick_intr, vcpu, 0);
4476 put_cpu(); 4476 put_cpu();
4477} 4477}
4478
4479int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
4480{
4481 return kvm_x86_ops->interrupt_allowed(vcpu);
4482}