]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
vt: clear selection before resizing
authorScot Doyle <lkml14@scotdoyle.com>
Thu, 13 Oct 2016 17:12:43 +0000 (12:12 -0500)
committerWilly Tarreau <w@1wt.eu>
Fri, 10 Feb 2017 10:03:41 +0000 (11:03 +0100)
commit 009e39ae44f4191188aeb6dfbf661b771dbbe515 upstream.

When resizing a vt its selection may exceed the new size, resulting in
an invalid memory access [1]. Clear the selection before resizing.

[1] http://lkml.kernel.org/r/CACT4Y+acDTwy4umEvf5ROBGiRJNrxHN4Cn5szCXE5Jw-d1B=Xw@mail.gmail.com

Reported-and-tested-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Scot Doyle <lkml14@scotdoyle.com>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/tty/vt/vt.c

index 5deddca84a270728837e09f770c2a03055086c3c..010ec70d59fb46d6773deb6f6095fe2cb75743c2 100644 (file)
@@ -869,6 +869,9 @@ static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc,
        if (!newscreen)
                return -ENOMEM;
 
+       if (vc == sel_cons)
+               clear_selection();
+
        old_rows = vc->vc_rows;
        old_row_size = vc->vc_size_row;