]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: ptrace: change fs when passing kernel pointer to regset code
authorWill Deacon <will.deacon@arm.com>
Mon, 2 Jun 2014 10:47:23 +0000 (11:47 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Wed, 18 Jun 2014 11:40:57 +0000 (12:40 +0100)
commit5f678c92deb18c497497a6601a2d0d0820f8c993
tree174f2ba42679903c0178f1a684adcad893e18b4e
parent6db42e5ec53e20a0e085d0851e6ebb6f608888c3
arm64: ptrace: change fs when passing kernel pointer to regset code

Our compat PTRACE_POKEUSR implementation simply passes the user data to
regset_copy_from_user after some simple range checking. Unfortunately,
the data in question has already been copied to the kernel stack by this
point, so the subsequent access_ok check fails and the ptrace request
returns -EFAULT. This causes problems tracing fork() with older versions
of strace.

This patch briefly changes the fs to KERNEL_DS, so that the access_ok
check passes even with a kernel address.

Signed-off-by: Will Deacon <will.deacon@arm.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/kernel/ptrace.c