From: David Herrmann <dh.herrmann@googlemail.com>
To: linux-input@vger.kernel.org
Cc: aris@ruivo.org, dmitry.torokhov@gmail.com,
David Herrmann <dh.herrmann@googlemail.com>
Subject: [PATCH RESEND 1/2] Input: uinput: Fix race condition on read()
Date: Thu, 29 Mar 2012 14:14:05 +0200 [thread overview]
Message-ID: <1333023245-13704-2-git-send-email-dh.herrmann@googlemail.com> (raw)
In-Reply-To: <1333023245-13704-1-git-send-email-dh.herrmann@googlemail.com>
Consider two threads calling read() on the same uinput-fd, both
non-blocking. Assume there is data-available so both will simultaneously
pass:
udev->head == udev->tail
Then the first thread goes to sleep and the second one pops the message
from the queue. Now assume udev->head == udev->tail. If the first thread
wakes up it will call wait_event_*() and sleep in the waitq. This
effectively turns the non-blocking FD into a blocking one.
We fix this by never calling wait_event_*() for non-blocking FDs hence we
will never sleep in the waitq here.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Acked-by: Aristeu Rozanski <aris@ruivo.org>
---
drivers/input/misc/uinput.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c
index 7360568..1526814 100644
--- a/drivers/input/misc/uinput.c
+++ b/drivers/input/misc/uinput.c
@@ -460,13 +460,15 @@ static ssize_t uinput_read(struct file *file, char __user *buffer, size_t count,
if (udev->state != UIST_CREATED)
return -ENODEV;
- if (udev->head == udev->tail && (file->f_flags & O_NONBLOCK))
- return -EAGAIN;
-
- retval = wait_event_interruptible(udev->waitq,
+ if (file->f_flags & O_NONBLOCK) {
+ if (udev->head == udev->tail)
+ return -EAGAIN;
+ } else {
+ retval = wait_event_interruptible(udev->waitq,
udev->head != udev->tail || udev->state != UIST_CREATED);
- if (retval)
- return retval;
+ if (retval)
+ return retval;
+ }
retval = mutex_lock_interruptible(&udev->mutex);
if (retval)
--
1.7.9.4
next prev parent reply other threads:[~2012-03-29 12:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-29 12:14 [PATCH RESEND 2/2] Input: uinput: Avoid returning 0 on read() David Herrmann
2012-03-29 12:14 ` David Herrmann [this message]
2012-03-31 6:00 ` Dmitry Torokhov
2012-03-31 8:39 ` David Herrmann
2012-04-02 7:48 ` Dmitry Torokhov
2012-04-02 8:35 ` David Herrmann
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=1333023245-13704-2-git-send-email-dh.herrmann@googlemail.com \
--to=dh.herrmann@googlemail.com \
--cc=aris@ruivo.org \
--cc=dmitry.torokhov@gmail.com \
--cc=linux-input@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).