mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
arm64: ptrace: change fs when passing kernel pointer to regset code
commit c168870704 upstream.
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>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3d672e43c3
commit
993e3e1656
@@ -821,6 +821,7 @@ static int compat_ptrace_write_user(struct task_struct *tsk, compat_ulong_t off,
|
|||||||
compat_ulong_t val)
|
compat_ulong_t val)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
mm_segment_t old_fs = get_fs();
|
||||||
|
|
||||||
if (off & 3 || off >= COMPAT_USER_SZ)
|
if (off & 3 || off >= COMPAT_USER_SZ)
|
||||||
return -EIO;
|
return -EIO;
|
||||||
@@ -828,10 +829,13 @@ static int compat_ptrace_write_user(struct task_struct *tsk, compat_ulong_t off,
|
|||||||
if (off >= sizeof(compat_elf_gregset_t))
|
if (off >= sizeof(compat_elf_gregset_t))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
set_fs(KERNEL_DS);
|
||||||
ret = copy_regset_from_user(tsk, &user_aarch32_view,
|
ret = copy_regset_from_user(tsk, &user_aarch32_view,
|
||||||
REGSET_COMPAT_GPR, off,
|
REGSET_COMPAT_GPR, off,
|
||||||
sizeof(compat_ulong_t),
|
sizeof(compat_ulong_t),
|
||||||
&val);
|
&val);
|
||||||
|
set_fs(old_fs);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user