]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
x86/sysfb: Fix check for bad VRAM size
authorArvind Sankar <nivedita@alum.mit.edu>
Tue, 7 Jan 2020 23:04:10 +0000 (18:04 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Feb 2020 07:36:29 +0000 (08:36 +0100)
commit971579fae1b4e835887219526e1d7bc3d89b6f1a
tree0cbdb18fce8267995a154c201fa0bfdc5cb0623a
parent7828a927b8507e71af20e204a45f29d9e81aa2c3
x86/sysfb: Fix check for bad VRAM size

[ Upstream commit dacc9092336be20b01642afe1a51720b31f60369 ]

When checking whether the reported lfb_size makes sense, the height
* stride result is page-aligned before seeing whether it exceeds the
reported size.

This doesn't work if height * stride is not an exact number of pages.
For example, as reported in the kernel bugzilla below, an 800x600x32 EFI
framebuffer gets skipped because of this.

Move the PAGE_ALIGN to after the check vs size.

Reported-by: Christopher Head <chead@chead.ca>
Tested-by: Christopher Head <chead@chead.ca>
Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://bugzilla.kernel.org/show_bug.cgi?id=206051
Link: https://lkml.kernel.org/r/20200107230410.2291947-1-nivedita@alum.mit.edu
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/kernel/sysfb_simplefb.c