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)
committerMark Brown <broonie@kernel.org>
Fri, 24 Oct 2014 12:09:20 +0000 (13:09 +0100)
commit8aaf231854e4397874817d9a02783b783ad77716
treeda917f87adc22621a347fb220683250046f34640
parentf58774ef0b9c226e240ba8bb4f55a295531cd2d5
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>
(cherry picked from commit c168870704bcde6bb63d05f7882b620dd3985a46)
Signed-off-by: Mark Brown <broonie@kernel.org>
arch/arm64/kernel/ptrace.c