[PATCH 12/33] KVM: PPC: Emulate critical sections when we hit them

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Usually the idea behind critical sections is that we don't ever trap in
them. However, we may not be that lucky always.

When we do hit a critical section while an interrupt is pending, we need
to make sure we can inject the interrupt right when the critical section
is over.

To achieve this, we just emulate every single instruction inside the
critical section until we're out of it.

Note: For new we don't trigger this code path until we properly emulate
      all the instructions necessary to run Linux guests well again.

Signed-off-by: Alexander Graf <agraf@xxxxxxx>
---
 arch/powerpc/include/asm/kvm_ppc.h |  1 +
 arch/powerpc/kvm/book3s.c          | 15 +++++++++++++++
 arch/powerpc/kvm/booke.c           | 35 +++++++++++++++++++++++++++++++++++
 arch/powerpc/kvm/powerpc.c         | 23 +++++++++++++++++++++++
 4 files changed, 74 insertions(+)

diff --git a/arch/powerpc/include/asm/kvm_ppc.h b/arch/powerpc/include/asm/kvm_ppc.h
index 6f7a4e5..ef97e0b 100644
--- a/arch/powerpc/include/asm/kvm_ppc.h
+++ b/arch/powerpc/include/asm/kvm_ppc.h
@@ -117,6 +117,7 @@ extern int kvmppc_core_vcpu_translate(struct kvm_vcpu *vcpu,
 extern void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
 extern void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu);
 
+extern bool kvmppc_crit_inhibited_irq_pending(struct kvm_vcpu *vcpu);
 extern bool kvmppc_critical_section(struct kvm_vcpu *vcpu);
 extern int kvmppc_core_prepare_to_enter(struct kvm_vcpu *vcpu);
 extern int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu);
diff --git a/arch/powerpc/kvm/book3s.c b/arch/powerpc/kvm/book3s.c
index d66d31e06..ab54976 100644
--- a/arch/powerpc/kvm/book3s.c
+++ b/arch/powerpc/kvm/book3s.c
@@ -192,6 +192,21 @@ void kvmppc_core_dequeue_external(struct kvm_vcpu *vcpu)
 	kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_EXTERNAL_LEVEL);
 }
 
+bool kvmppc_crit_inhibited_irq_pending(struct kvm_vcpu *vcpu)
+{
+	unsigned long *p = &vcpu->arch.pending_exceptions;
+
+	if (!(kvmppc_get_msr(vcpu) & MSR_EE))
+		return false;
+
+	if (test_bit(BOOK3S_IRQPRIO_DECREMENTER, p) ||
+	    test_bit(BOOK3S_IRQPRIO_EXTERNAL, p) ||
+	    test_bit(BOOK3S_IRQPRIO_EXTERNAL_LEVEL, p))
+		return true;
+
+	return false;
+}
+
 int kvmppc_book3s_irqprio_deliver(struct kvm_vcpu *vcpu, unsigned int priority)
 {
 	int deliver = 1;
diff --git a/arch/powerpc/kvm/booke.c b/arch/powerpc/kvm/booke.c
index eb00d5d..cbe9832 100644
--- a/arch/powerpc/kvm/booke.c
+++ b/arch/powerpc/kvm/booke.c
@@ -342,6 +342,41 @@ static unsigned long get_guest_epr(struct kvm_vcpu *vcpu)
 #endif
 }
 
+bool kvmppc_crit_inhibited_irq_pending(struct kvm_vcpu *vcpu)
+{
+	unsigned long *p = &vcpu->arch.pending_exceptions;
+	bool ee = !!(kvmppc_get_msr(vcpu) & MSR_EE);
+	bool ce = !!(kvmppc_get_msr(vcpu) & MSR_CE);
+	bool me = !!(kvmppc_get_msr(vcpu) & MSR_ME);
+	bool de = !!(kvmppc_get_msr(vcpu) & MSR_DE);
+
+	if (ee) {
+		if (test_bit(BOOKE_IRQPRIO_EXTERNAL, p) ||
+		    test_bit(BOOKE_IRQPRIO_DBELL, p))
+			return true;
+	}
+
+	if (ce) {
+		if (test_bit(BOOKE_IRQPRIO_WATCHDOG, p) ||
+		    test_bit(BOOKE_IRQPRIO_CRITICAL, p) ||
+		    test_bit(BOOKE_IRQPRIO_DBELL_CRIT, p))
+			return true;
+	}
+
+	if (me) {
+		if (test_bit(BOOKE_IRQPRIO_MACHINE_CHECK, p))
+			return true;
+	}
+
+	if (de) {
+		if (test_bit(BOOKE_IRQPRIO_DEBUG, p))
+			return true;
+	}
+
+	return false;
+}
+
+
 /* Deliver the interrupt of the corresponding priority, if possible. */
 static int kvmppc_booke_irqprio_deliver(struct kvm_vcpu *vcpu,
                                         unsigned int priority)
diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c
index 230b2bc..f2de6f4 100644
--- a/arch/powerpc/kvm/powerpc.c
+++ b/arch/powerpc/kvm/powerpc.c
@@ -83,6 +83,20 @@ bool kvmppc_critical_section(struct kvm_vcpu *vcpu)
 	return crit;
 }
 
+static bool kvmppc_needs_emulation(struct kvm_vcpu *vcpu)
+{
+	/* XXX disable emulation for now, until we implemented everything */
+	if (true)
+		return false;
+
+	/* We're in a critical section, but an interrupt is pending */
+	if (kvmppc_critical_section(vcpu) &&
+	    kvmppc_crit_inhibited_irq_pending(vcpu))
+		return true;
+
+	return false;
+}
+
 /*
  * Common checks before entering the guest world.  Call with interrupts
  * disabled.
@@ -141,6 +155,15 @@ int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
 			continue;
 		}
 
+		if (kvmppc_needs_emulation(vcpu)) {
+			/* Emulate one instruction, then try again */
+			local_irq_enable();
+			vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
+			kvmppc_emulate_any_instruction(vcpu);
+			hard_irq_disable();
+			continue;
+		}
+
 		kvm_guest_enter();
 		return 1;
 	}
-- 
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [KVM Development]     [KVM ARM]     [KVM ia64]     [Linux Virtualization]     [Linux USB Devel]     [Linux Video]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux