]> git.baikalelectronics.ru Git - kernel.git/commit
drivers: char: mem: Fix thinkos in kmem address checks
authorRobin Murphy <robin.murphy@arm.com>
Thu, 5 Jan 2017 17:15:01 +0000 (17:15 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Jan 2017 07:02:18 +0000 (08:02 +0100)
commitaf0bdffe50ee59980b739a7fac0049196c1ca228
tree7f97b8edd11003152eefcd45345cb23fe617643e
parent02913c50293492b5f1e3253e448a7887515a5bb2
drivers: char: mem: Fix thinkos in kmem address checks

When borrowing the pfn_valid() check from mmap_kmem(), somebody managed
to get physical and virtual addresses spectacularly muddled up, such
that we've ended up with checks for one being the other. Whilst this
does indeed prevent out-of-bounds accesses crashing, on most systems
it also prevents the more desirable use-case of working at all ever.

Check the *virtual* offset correctly for what it is. Furthermore, do
so in the right place - a read or write may span multiple pages, so a
single up-front check is insufficient. High memory accesses already
have a similar validity check just before the copy_to_user() call, so
just make the low memory path fully consistent with that.

Reported-by: Jason A. Donenfeld <Jason@zx2c4.com>
CC: stable@vger.kernel.org
Fixes: fc7506b03f77 ("drivers: char: mem: Check {read,write}_kmem() addresses")
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/mem.c