aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/pty.c
diff options
context:
space:
mode:
authorJiri Slaby <jslaby@suse.cz>2011-10-12 05:32:43 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-10-18 17:22:37 -0400
commitfa90e1c935472281de314e6d7c9a37db9cbc2e4e (patch)
tree2c89c0038c640b6bdb5caaef00401f22553b118a /drivers/tty/pty.c
parentc290f8358acaeffd8e0c551ddcc24d1206143376 (diff)
TTY: make tty_add_file non-failing
If tty_add_file fails at the point it is now, we have to revert all the changes we did to the tty. It means either decrease all refcounts if this was a tty reopen or delete the tty if it was newly allocated. There was a try to fix this in v3.0-rc2 using tty_release in 0259894c7 (TTY: fix fail path in tty_open). But instead it introduced a NULL dereference. It's because tty_release dereferences filp->private_data, but that one is set even in our tty_add_file. And when tty_add_file fails, it's still NULL/garbage. Hence tty_release cannot be called there. To circumvent the original leak (and the current NULL deref) we split tty_add_file into two functions, making the latter non-failing. In that case we may do the former early in open, where handling failures is easy. The latter stays as it is now. So there is no change in functionality. The original bug (leak) was introduced by f573bd176 (tty: Remove __GFP_NOFAIL from tty_add_file()). Thanks Dan for reporting this. Later, we may split tty_release into more functions and call only some of them in this fail path instead. (If at all possible.) Introduced-in: v2.6.37-rc2 Signed-off-by: Jiri Slaby <jslaby@suse.cz> Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Cc: stable <stable@vger.kernel.org> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Cc: Pekka Enberg <penberg@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/tty/pty.c')
-rw-r--r--drivers/tty/pty.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/drivers/tty/pty.c b/drivers/tty/pty.c
index 98b6e3bdb000..7613f95f2d6b 100644
--- a/drivers/tty/pty.c
+++ b/drivers/tty/pty.c
@@ -657,12 +657,18 @@ static int ptmx_open(struct inode *inode, struct file *filp)
657 657
658 nonseekable_open(inode, filp); 658 nonseekable_open(inode, filp);
659 659
660 retval = tty_alloc_file(filp);
661 if (retval)
662 return retval;
663
660 /* find a device that is not in use. */ 664 /* find a device that is not in use. */
661 tty_lock(); 665 tty_lock();
662 index = devpts_new_index(inode); 666 index = devpts_new_index(inode);
663 tty_unlock(); 667 tty_unlock();
664 if (index < 0) 668 if (index < 0) {
665 return index; 669 retval = index;
670 goto err_file;
671 }
666 672
667 mutex_lock(&tty_mutex); 673 mutex_lock(&tty_mutex);
668 tty_lock(); 674 tty_lock();
@@ -676,9 +682,7 @@ static int ptmx_open(struct inode *inode, struct file *filp)
676 682
677 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ 683 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
678 684
679 retval = tty_add_file(tty, filp); 685 tty_add_file(tty, filp);
680 if (retval)
681 goto out;
682 686
683 retval = devpts_pty_new(inode, tty->link); 687 retval = devpts_pty_new(inode, tty->link);
684 if (retval) 688 if (retval)
@@ -697,6 +701,8 @@ out2:
697out: 701out:
698 devpts_kill_index(inode, index); 702 devpts_kill_index(inode, index);
699 tty_unlock(); 703 tty_unlock();
704err_file:
705 tty_free_file(filp);
700 return retval; 706 return retval;
701} 707}
702 708