2019-08-25 17:49:17 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2007-10-16 16:27:00 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
|
2012-05-23 12:18:33 +08:00
|
|
|
#include <linux/audit.h>
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include <linux/sched.h>
|
2016-12-25 03:46:01 +08:00
|
|
|
#include <linux/uaccess.h>
|
2015-06-26 04:44:11 +08:00
|
|
|
#include <asm/ptrace-abi.h>
|
2010-03-11 07:22:56 +08:00
|
|
|
|
|
|
|
void user_enable_single_step(struct task_struct *child)
|
|
|
|
{
|
2022-04-27 05:30:17 +08:00
|
|
|
set_tsk_thread_flag(child, TIF_SINGLESTEP);
|
2010-03-11 07:22:56 +08:00
|
|
|
child->thread.singlestep_syscall = 0;
|
|
|
|
|
|
|
|
#ifdef SUBARCH_SET_SINGLESTEPPING
|
|
|
|
SUBARCH_SET_SINGLESTEPPING(child, 1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void user_disable_single_step(struct task_struct *child)
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 12:30:46 +08:00
|
|
|
{
|
2022-04-27 05:30:17 +08:00
|
|
|
clear_tsk_thread_flag(child, TIF_SINGLESTEP);
|
2007-10-16 16:27:00 +08:00
|
|
|
child->thread.singlestep_syscall = 0;
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 12:30:46 +08:00
|
|
|
|
|
|
|
#ifdef SUBARCH_SET_SINGLESTEPPING
|
2010-03-11 07:22:56 +08:00
|
|
|
SUBARCH_SET_SINGLESTEPPING(child, 0);
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 12:30:46 +08:00
|
|
|
#endif
|
2005-05-21 04:59:07 +08:00
|
|
|
}
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 12:30:46 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Called by kernel/ptrace.c when detaching..
|
|
|
|
*/
|
|
|
|
void ptrace_disable(struct task_struct *child)
|
2007-10-16 16:27:00 +08:00
|
|
|
{
|
2010-03-11 07:22:56 +08:00
|
|
|
user_disable_single_step(child);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 12:30:46 +08:00
|
|
|
extern int peek_user(struct task_struct * child, long addr, long data);
|
|
|
|
extern int poke_user(struct task_struct * child, long addr, long data);
|
|
|
|
|
2010-10-28 06:33:47 +08:00
|
|
|
long arch_ptrace(struct task_struct *child, long request,
|
|
|
|
unsigned long addr, unsigned long data)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int i, ret;
|
2010-10-28 06:33:47 +08:00
|
|
|
unsigned long __user *p = (void __user *)data;
|
2010-10-28 06:34:04 +08:00
|
|
|
void __user *vp = p;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
switch (request) {
|
|
|
|
/* read the word at location addr in the USER area. */
|
2007-10-16 16:27:00 +08:00
|
|
|
case PTRACE_PEEKUSR:
|
|
|
|
ret = peek_user(child, addr, data);
|
|
|
|
break;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-16 16:27:00 +08:00
|
|
|
/* write the word at location addr in the USER area */
|
|
|
|
case PTRACE_POKEUSR:
|
|
|
|
ret = poke_user(child, addr, data);
|
|
|
|
break;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-03-13 05:31:23 +08:00
|
|
|
case PTRACE_SYSEMU:
|
|
|
|
case PTRACE_SYSEMU_SINGLESTEP:
|
|
|
|
ret = -EIO;
|
|
|
|
break;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef PTRACE_GETREGS
|
|
|
|
case PTRACE_GETREGS: { /* Get all gp regs from the child. */
|
Remove 'type' argument from access_ok() function
Nobody has actually used the type (VERIFY_READ vs VERIFY_WRITE) argument
of the user address range verification function since we got rid of the
old racy i386-only code to walk page tables by hand.
It existed because the original 80386 would not honor the write protect
bit when in kernel mode, so you had to do COW by hand before doing any
user access. But we haven't supported that in a long time, and these
days the 'type' argument is a purely historical artifact.
A discussion about extending 'user_access_begin()' to do the range
checking resulted this patch, because there is no way we're going to
move the old VERIFY_xyz interface to that model. And it's best done at
the end of the merge window when I've done most of my merges, so let's
just get this done once and for all.
This patch was mostly done with a sed-script, with manual fix-ups for
the cases that weren't of the trivial 'access_ok(VERIFY_xyz' form.
There were a couple of notable cases:
- csky still had the old "verify_area()" name as an alias.
- the iter_iov code had magical hardcoded knowledge of the actual
values of VERIFY_{READ,WRITE} (not that they mattered, since nothing
really used it)
- microblaze used the type argument for a debug printout
but other than those oddities this should be a total no-op patch.
I tried to fix up all architectures, did fairly extensive grepping for
access_ok() uses, and the changes are trivial, but I may have missed
something. Any missed conversion should be trivially fixable, though.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 10:57:57 +08:00
|
|
|
if (!access_ok(p, MAX_REG_OFFSET)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
ret = -EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for ( i = 0; i < MAX_REG_OFFSET; i += sizeof(long) ) {
|
2006-03-31 18:30:15 +08:00
|
|
|
__put_user(getreg(child, i), p);
|
|
|
|
p++;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef PTRACE_SETREGS
|
|
|
|
case PTRACE_SETREGS: { /* Set all gp regs in the child. */
|
|
|
|
unsigned long tmp = 0;
|
Remove 'type' argument from access_ok() function
Nobody has actually used the type (VERIFY_READ vs VERIFY_WRITE) argument
of the user address range verification function since we got rid of the
old racy i386-only code to walk page tables by hand.
It existed because the original 80386 would not honor the write protect
bit when in kernel mode, so you had to do COW by hand before doing any
user access. But we haven't supported that in a long time, and these
days the 'type' argument is a purely historical artifact.
A discussion about extending 'user_access_begin()' to do the range
checking resulted this patch, because there is no way we're going to
move the old VERIFY_xyz interface to that model. And it's best done at
the end of the merge window when I've done most of my merges, so let's
just get this done once and for all.
This patch was mostly done with a sed-script, with manual fix-ups for
the cases that weren't of the trivial 'access_ok(VERIFY_xyz' form.
There were a couple of notable cases:
- csky still had the old "verify_area()" name as an alias.
- the iter_iov code had magical hardcoded knowledge of the actual
values of VERIFY_{READ,WRITE} (not that they mattered, since nothing
really used it)
- microblaze used the type argument for a debug printout
but other than those oddities this should be a total no-op patch.
I tried to fix up all architectures, did fairly extensive grepping for
access_ok() uses, and the changes are trivial, but I may have missed
something. Any missed conversion should be trivially fixable, though.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 10:57:57 +08:00
|
|
|
if (!access_ok(p, MAX_REG_OFFSET)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
ret = -EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for ( i = 0; i < MAX_REG_OFFSET; i += sizeof(long) ) {
|
2006-03-31 18:30:15 +08:00
|
|
|
__get_user(tmp, p);
|
2005-04-17 06:20:36 +08:00
|
|
|
putreg(child, i, tmp);
|
2006-03-31 18:30:15 +08:00
|
|
|
p++;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2006-03-31 18:30:22 +08:00
|
|
|
case PTRACE_GET_THREAD_AREA:
|
2010-10-28 06:34:04 +08:00
|
|
|
ret = ptrace_get_thread_area(child, addr, vp);
|
2006-03-31 18:30:22 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PTRACE_SET_THREAD_AREA:
|
2010-11-12 06:05:04 +08:00
|
|
|
ret = ptrace_set_thread_area(child, addr, vp);
|
2006-03-31 18:30:22 +08:00
|
|
|
break;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
default:
|
|
|
|
ret = ptrace_request(child, request, addr, data);
|
2007-10-16 16:27:16 +08:00
|
|
|
if (ret == -EIO)
|
|
|
|
ret = subarch_ptrace(child, request, addr, data);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
2005-11-07 16:59:47 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-02-06 08:35:08 +08:00
|
|
|
static void send_sigtrap(struct uml_pt_regs *regs, int error_code)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-10-20 07:23:03 +08:00
|
|
|
/* Send us the fake SIGTRAP */
|
2018-04-16 08:50:48 +08:00
|
|
|
force_sig_fault(SIGTRAP, TRAP_BRKPT,
|
|
|
|
/* User-mode eip? */
|
2019-05-24 00:04:24 +08:00
|
|
|
UPT_IS_USER(regs) ? (void __user *) UPT_IP(regs) : NULL);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2007-10-16 16:27:00 +08:00
|
|
|
/*
|
2022-04-27 05:30:17 +08:00
|
|
|
* XXX Check TIF_SINGLESTEP for singlestepping check and
|
2005-04-17 06:20:36 +08:00
|
|
|
* PT_PTRACED vs TIF_SYSCALL_TRACE for syscall tracing check
|
|
|
|
*/
|
2015-06-01 04:59:03 +08:00
|
|
|
int syscall_trace_enter(struct pt_regs *regs)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2014-03-12 01:29:28 +08:00
|
|
|
audit_syscall_entry(UPT_SYSCALL_NR(®s->regs),
|
2012-05-23 12:18:33 +08:00
|
|
|
UPT_SYSCALL_ARG1(®s->regs),
|
|
|
|
UPT_SYSCALL_ARG2(®s->regs),
|
|
|
|
UPT_SYSCALL_ARG3(®s->regs),
|
|
|
|
UPT_SYSCALL_ARG4(®s->regs));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (!test_thread_flag(TIF_SYSCALL_TRACE))
|
2015-06-01 04:59:03 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2022-01-28 01:46:37 +08:00
|
|
|
return ptrace_report_syscall_entry(regs);
|
2012-05-23 12:18:33 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-05-23 12:18:33 +08:00
|
|
|
void syscall_trace_leave(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
int ptraced = current->ptrace;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-05-23 12:18:33 +08:00
|
|
|
audit_syscall_exit(regs);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-05-23 12:18:33 +08:00
|
|
|
/* Fake a debug trap */
|
2022-04-27 05:30:17 +08:00
|
|
|
if (test_thread_flag(TIF_SINGLESTEP))
|
2019-02-06 08:35:08 +08:00
|
|
|
send_sigtrap(®s->regs, 0);
|
2012-05-23 12:18:33 +08:00
|
|
|
|
|
|
|
if (!test_thread_flag(TIF_SYSCALL_TRACE))
|
|
|
|
return;
|
|
|
|
|
2022-01-28 01:46:37 +08:00
|
|
|
ptrace_report_syscall_exit(regs, 0);
|
2012-05-23 12:18:33 +08:00
|
|
|
/* force do_signal() --> is_syscall() */
|
|
|
|
if (ptraced & PT_PTRACED)
|
|
|
|
set_thread_flag(TIF_SIGPENDING);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|