]> git.baikalelectronics.ru Git - kernel.git/commit
tty: Don't hold ldisc lock in tty_reopen() if ldisc present
authorDmitry Safonov <dima@arista.com>
Wed, 9 Jan 2019 01:17:40 +0000 (01:17 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Jan 2019 16:03:42 +0000 (17:03 +0100)
commit33f416617409a58acbddac2e05ad281138f6548e
tree0a7ee066b464a7a41104646d07a2513d95e89b76
parentabc021e9fc18bc80cb96d8b91e51bd72c757702d
tty: Don't hold ldisc lock in tty_reopen() if ldisc present

Try to get reference for ldisc during tty_reopen().
If ldisc present, we don't need to do tty_ldisc_reinit() and lock the
write side for line discipline semaphore.
Effectively, it optimizes fast-path for tty_reopen(), but more
importantly it won't interrupt ongoing IO on the tty as no ldisc change
is needed.
Fixes user-visible issue when tty_reopen() interrupted login process for
user with a long password, observed and reported by Lukas.

Fixes: 1a3d48b10368 ("tty: Don't block on IO when ldisc change is pending")
Fixes: 94a7e1aad048 ("tty: Hold tty_ldisc_lock() during tty_reopen()")
Cc: Jiri Slaby <jslaby@suse.com>
Reported-by: Lukas F. Hartmann <lukas@mntmn.com>
Tested-by: Lukas F. Hartmann <lukas@mntmn.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Dmitry Safonov <dima@arista.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/tty_io.c