linux-uconsole/arch/arm64/lib
Kyle McMartin 16640ca660 arm64: __clear_user: handle exceptions on strb
commit 97fc15436b upstream.

ARM64 currently doesn't fix up faults on the single-byte (strb) case of
__clear_user... which means that we can cause a nasty kernel panic as an
ordinary user with any multiple PAGE_SIZE+1 read from /dev/zero.
i.e.: dd if=/dev/zero of=foo ibs=1 count=1 (or ibs=65537, etc.)

This is a pretty obscure bug in the general case since we'll only
__do_kernel_fault (since there's no extable entry for pc) if the
mmap_sem is contended. However, with CONFIG_DEBUG_VM enabled, we'll
always fault.

if (!down_read_trylock(&mm->mmap_sem)) {
	if (!user_mode(regs) && !search_exception_tables(regs->pc))
		goto no_context;
retry:
	down_read(&mm->mmap_sem);
} else {
	/*
	 * The above down_read_trylock() might have succeeded in
	 * which
	 * case, we'll have missed the might_sleep() from
	 * down_read().
	 */
	might_sleep();
	if (!user_mode(regs) && !search_exception_tables(regs->pc))
		goto no_context;
}

Fix that by adding an extable entry for the strb instruction, since it
touches user memory, similar to the other stores in __clear_user.

Signed-off-by: Kyle McMartin <kyle@redhat.com>
Reported-by: Miloš Prchlík <mprchlik@redhat.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2014-11-21 09:22:53 -08:00
..
bitops.S arm64: Treat the bitops index argument as an 'int' 2013-05-08 10:33:17 +01:00
clear_page.S
clear_user.S arm64: __clear_user: handle exceptions on strb 2014-11-21 09:22:53 -08:00
copy_from_user.S
copy_in_user.S
copy_page.S
copy_to_user.S
delay.c
Makefile arm64: klib: Optimised string functions 2013-03-21 17:39:30 +00:00
memchr.S arm64: klib: Optimised memory functions 2013-03-21 17:39:29 +00:00
memcpy.S arm64: klib: Optimised memory functions 2013-03-21 17:39:29 +00:00
memmove.S arm64: klib: Optimised memory functions 2013-03-21 17:39:29 +00:00
memset.S arm64: klib: Optimised memory functions 2013-03-21 17:39:29 +00:00
strchr.S arm64: klib: Optimised string functions 2013-03-21 17:39:30 +00:00
strncpy_from_user.S
strnlen_user.S
strrchr.S arm64: klib: Optimised string functions 2013-03-21 17:39:30 +00:00