Tetsuo Handa
927162c713
ttyprintk: Add TTY hangup callback.
...
[ Upstream commit c0070e1e60270f6a1e09442a9ab2335f3eaeaad2 ]
syzbot is reporting hung task due to flood of
tty_warn(tty, "%s: tty->count = 1 port count = %d\n", __func__,
port->count);
message [1], for ioctl(TIOCVHANGUP) prevents tty_port_close() from
decrementing port->count due to tty_hung_up_p() == true.
----------
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
int i;
int fd[10];
for (i = 0; i < 10; i++)
fd[i] = open("/dev/ttyprintk", O_WRONLY);
ioctl(fd[0], TIOCVHANGUP);
for (i = 0; i < 10; i++)
close(fd[i]);
close(open("/dev/ttyprintk", O_WRONLY));
return 0;
}
----------
When TTY hangup happens, port->count needs to be reset via
"struct tty_operations"->hangup callback.
[1] https://syzkaller.appspot.com/bug?id=39ea6caa479af471183997376dc7e90bc7d64a6a
Reported-by: syzbot <syzbot+43e93968b964e369db0b@syzkaller.appspotmail.com>
Reported-by: syzbot <syzbot+3ed715090790806d8b18@syzkaller.appspotmail.com>
Tested-by: syzbot <syzbot+43e93968b964e369db0b@syzkaller.appspotmail.com>
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Fixes: 24b4b67d17c308aa ("add ttyprintk driver")
Link: https://lore.kernel.org/r/17e0652d-89b7-c8c0-fb53-e7566ac9add4@i-love.sakura.ne.jp
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2021-05-14 09:50:21 +02:00
..
2021-04-14 08:41:59 +02:00
2021-03-04 11:37:49 +01:00
2020-10-14 15:00:20 -07:00
2020-07-10 14:50:51 +02:00
2020-05-29 11:04:56 -04:00
2021-05-11 14:47:35 +02:00
2019-05-21 10:50:46 +02:00
2019-11-05 18:29:21 +01:00
2018-06-05 11:24:55 -07:00
2019-05-21 10:50:45 +02:00
2020-03-18 12:27:03 +01:00
2020-06-09 09:39:13 -07:00
2019-05-21 10:50:45 +02:00
2019-05-21 10:50:45 +02:00
2019-06-05 17:37:13 +02:00
2020-01-30 06:58:33 +01:00
2020-09-07 14:32:40 +02:00
2020-08-31 07:17:17 +02:00
2020-03-19 07:41:02 +01:00
2020-09-07 10:46:35 +02:00
2019-05-24 18:00:41 +02:00
2020-08-28 12:10:04 +02:00
2019-05-21 10:50:45 +02:00
2020-08-23 17:36:59 -05:00
2019-05-21 10:50:45 +02:00
2020-03-18 12:27:03 +01:00
2020-03-18 12:27:04 +01:00
2019-05-21 10:50:45 +02:00
2019-05-21 10:50:45 +02:00
2020-02-23 20:28:12 +01:00
2019-05-30 11:26:38 -07:00
2021-05-11 14:47:19 +02:00
2020-09-23 10:43:19 -06:00
2019-05-21 10:50:45 +02:00
2019-05-24 17:36:45 +02:00
2019-05-30 11:26:35 -07:00
2020-04-23 16:55:24 +02:00
2020-03-18 12:27:03 +01:00
2021-05-14 09:50:21 +02:00
2020-11-09 18:03:33 +01:00