From: George Kennedy Date: Mon, 27 Feb 2023 20:21:41 +0000 (-0500) Subject: vc_screen: modify vcs_size() handling in vcs_read() X-Git-Tag: v6.6.17~5404 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46d733d0efc79bc8430d63b57ab88011806d5180;p=platform%2Fkernel%2Flinux-rpi.git vc_screen: modify vcs_size() handling in vcs_read() Restore the vcs_size() handling in vcs_read() to what it had been in previous version. Fixes: 226fae124b2d ("vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF") Suggested-by: Jiri Slaby Signed-off-by: George Kennedy Signed-off-by: Linus Torvalds --- diff --git a/drivers/tty/vt/vc_screen.c b/drivers/tty/vt/vc_screen.c index f566eb1..c0a2273 100644 --- a/drivers/tty/vt/vc_screen.c +++ b/drivers/tty/vt/vc_screen.c @@ -414,10 +414,8 @@ vcs_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) */ size = vcs_size(vc, attr, uni_mode); if (size < 0) { - if (read) - break; ret = size; - goto unlock_out; + break; } if (pos >= size) break;