diff options
author | Alan Cox <alan@linux.intel.com> | 2012-05-29 08:45:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-29 13:42:13 -0400 |
commit | d3ca8b64b97ef4dc54d7bb0b88bbc01a1fca8cb9 (patch) | |
tree | 6205c4d17144485ff6ec3783463b0ed6e84bf831 /drivers/tty | |
parent | a01ee165a132fadb57659d26246e340d6ac53265 (diff) |
pty: Fix lock inversion
The ptmx_open path takes the tty and devpts locks in the wrong order
because tty_init_dev locks and returns a locked tty. As far as I can
tell this is actually safe anyway because the tty being returned is new
so nobody can get a reference to lock it at this point.
However we don't even need the devpts lock at this point, it's only held
as a byproduct of the way the locks were pushe down.
Signed-off-by: Alan Cox <alan@linux.intel.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/pty.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/tty/pty.c b/drivers/tty/pty.c index 59af3945ea85..65c7c62c7aae 100644 --- a/drivers/tty/pty.c +++ b/drivers/tty/pty.c | |||
@@ -633,7 +633,6 @@ static int ptmx_open(struct inode *inode, struct file *filp) | |||
633 | mutex_unlock(&devpts_mutex); | 633 | mutex_unlock(&devpts_mutex); |
634 | 634 | ||
635 | mutex_lock(&tty_mutex); | 635 | mutex_lock(&tty_mutex); |
636 | mutex_lock(&devpts_mutex); | ||
637 | tty = tty_init_dev(ptm_driver, index); | 636 | tty = tty_init_dev(ptm_driver, index); |
638 | 637 | ||
639 | if (IS_ERR(tty)) { | 638 | if (IS_ERR(tty)) { |
@@ -643,7 +642,6 @@ static int ptmx_open(struct inode *inode, struct file *filp) | |||
643 | 642 | ||
644 | /* The tty returned here is locked so we can safely | 643 | /* The tty returned here is locked so we can safely |
645 | drop the mutex */ | 644 | drop the mutex */ |
646 | mutex_unlock(&devpts_mutex); | ||
647 | mutex_unlock(&tty_mutex); | 645 | mutex_unlock(&tty_mutex); |
648 | 646 | ||
649 | set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ | 647 | set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ |