All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Wright <chrisw@sous-sol.org>
To: Avi Kivity <avi@redhat.com>
Cc: kvm@vger.kernel.org
Subject: [PATCH] kvm-kmod: fix kvm_request_irq race
Date: Wed, 20 May 2009 23:21:35 -0700	[thread overview]
Message-ID: <20090521062135.GR20823@sequoia.sous-sol.org> (raw)

Commit "32658734: Fix request_irq() for < 2.6.19" is racy between multiple
guests since ioctl is only serialized per guest.  Add mutex and serialize
kvm_request_irq/kvm_free_irq to avoid race.

Signed-off-by: Chris Wright <chrisw@redhat.com>
---
 external-module-compat-comm.h |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/external-module-compat-comm.h b/external-module-compat-comm.h
index 8cb5440..eaad986 100644
--- a/external-module-compat-comm.h
+++ b/external-module-compat-comm.h
@@ -645,6 +645,7 @@ static inline int pci_reset_function(struct pci_dev *dev)
 
 typedef irqreturn_t (*kvm_irq_handler_t)(int, void *);
 static kvm_irq_handler_t kvm_irq_handlers[NR_IRQS];
+static DEFINE_MUTEX(kvm_irq_handlers_mutex);
 
 static irqreturn_t kvm_irq_thunk(int irq, void *dev_id, struct pt_regs *regs)
 {
@@ -655,21 +656,28 @@ static irqreturn_t kvm_irq_thunk(int irq, void *dev_id, struct pt_regs *regs)
 static inline int kvm_request_irq(unsigned int a, kvm_irq_handler_t handler,
 				  unsigned long c, const char *d, void *e)
 {
-	int rc;
-	kvm_irq_handler_t old = kvm_irq_handlers[a];
+	int rc = -EBUSY;
+	kvm_irq_handler_t old;
+
+	mutex_lock(&kvm_irq_handlers_mutex);
+	old = kvm_irq_handlers[a];
 	if (old)
-		return -EBUSY;
+		goto out;
 	kvm_irq_handlers[a] = handler;
 	rc = request_irq(a, kvm_irq_thunk, c, d, e);
 	if (rc)
 		kvm_irq_handlers[a] = NULL;
+out:
+	mutex_unlock(&kvm_irq_handlers_mutex);
 	return rc;
 }
 
 static inline void kvm_free_irq(unsigned int irq, void *dev_id)
 {
+	mutex_lock(&kvm_irq_handlers_mutex);
 	free_irq(irq, dev_id);
 	kvm_irq_handlers[irq] = NULL;
+	mutex_unlock(&kvm_irq_handlers_mutex);
 }
 
 #else

             reply	other threads:[~2009-05-21  6:21 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-21  6:21 Chris Wright [this message]
2009-05-21  6:29 ` [PATCH] kvm-kmod: fix kvm_request_irq race Avi Kivity
2009-05-21  6:38   ` Chris Wright
2009-05-21  7:38   ` [PATCH kvm-kmod v2] " Chris Wright
2009-05-21  7:45     ` Avi Kivity

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090521062135.GR20823@sequoia.sous-sol.org \
    --to=chrisw@sous-sol.org \
    --cc=avi@redhat.com \
    --cc=kvm@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.