2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2012-05-23 06:18:33 +02:00
|
|
|
#include <linux/audit.h>
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/tracehook.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
#include <skas_ptrace.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2010-03-11 00:22:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
void user_enable_single_step(struct task_struct *child)
|
|
|
|
{
|
|
|
|
child->ptrace |= PT_DTRACE;
|
|
|
|
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 06:30:46 +02:00
|
|
|
{
|
2010-03-11 00:22:56 +01:00
|
|
|
child->ptrace &= ~PT_DTRACE;
|
2007-10-16 10:27:00 +02: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 06:30:46 +02:00
|
|
|
|
|
|
|
#ifdef SUBARCH_SET_SINGLESTEPPING
|
2010-03-11 00:22:56 +01: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 06:30:46 +02:00
|
|
|
#endif
|
2005-05-20 22:59:07 +02: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 06:30:46 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Called by kernel/ptrace.c when detaching..
|
|
|
|
*/
|
|
|
|
void ptrace_disable(struct task_struct *child)
|
2007-10-16 10:27:00 +02:00
|
|
|
{
|
2010-03-11 00:22:56 +01:00
|
|
|
user_disable_single_step(child);
|
2005-04-17 00:20:36 +02: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 06:30:46 +02: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 00:33:47 +02:00
|
|
|
long arch_ptrace(struct task_struct *child, long request,
|
|
|
|
unsigned long addr, unsigned long data)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
int i, ret;
|
2010-10-28 00:33:47 +02:00
|
|
|
unsigned long __user *p = (void __user *)data;
|
2010-10-28 00:34:04 +02:00
|
|
|
void __user *vp = p;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
switch (request) {
|
|
|
|
/* read the word at location addr in the USER area. */
|
2007-10-16 10:27:00 +02:00
|
|
|
case PTRACE_PEEKUSR:
|
|
|
|
ret = peek_user(child, addr, data);
|
|
|
|
break;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/* write the word at location addr in the USER area */
|
|
|
|
case PTRACE_POKEUSR:
|
|
|
|
ret = poke_user(child, addr, data);
|
|
|
|
break;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-03-12 22:31:23 +01:00
|
|
|
case PTRACE_SYSEMU:
|
|
|
|
case PTRACE_SYSEMU_SINGLESTEP:
|
|
|
|
ret = -EIO;
|
|
|
|
break;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#ifdef PTRACE_GETREGS
|
|
|
|
case PTRACE_GETREGS: { /* Get all gp regs from the child. */
|
2006-03-31 12:30:15 +02:00
|
|
|
if (!access_ok(VERIFY_WRITE, p, MAX_REG_OFFSET)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
ret = -EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for ( i = 0; i < MAX_REG_OFFSET; i += sizeof(long) ) {
|
2006-03-31 12:30:15 +02:00
|
|
|
__put_user(getreg(child, i), p);
|
|
|
|
p++;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef PTRACE_SETREGS
|
|
|
|
case PTRACE_SETREGS: { /* Set all gp regs in the child. */
|
|
|
|
unsigned long tmp = 0;
|
2006-03-31 12:30:15 +02:00
|
|
|
if (!access_ok(VERIFY_READ, p, MAX_REG_OFFSET)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
ret = -EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for ( i = 0; i < MAX_REG_OFFSET; i += sizeof(long) ) {
|
2006-03-31 12:30:15 +02:00
|
|
|
__get_user(tmp, p);
|
2005-04-17 00:20:36 +02:00
|
|
|
putreg(child, i, tmp);
|
2006-03-31 12:30:15 +02:00
|
|
|
p++;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2006-03-31 12:30:22 +02:00
|
|
|
case PTRACE_GET_THREAD_AREA:
|
2010-10-28 00:34:04 +02:00
|
|
|
ret = ptrace_get_thread_area(child, addr, vp);
|
2006-03-31 12:30:22 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PTRACE_SET_THREAD_AREA:
|
2010-11-11 23:05:04 +01:00
|
|
|
ret = ptrace_set_thread_area(child, addr, vp);
|
2006-03-31 12:30:22 +02:00
|
|
|
break;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
case PTRACE_FAULTINFO: {
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* Take the info from thread->arch->faultinfo,
|
2006-03-31 12:30:15 +02:00
|
|
|
* but transfer max. sizeof(struct ptrace_faultinfo).
|
|
|
|
* On i386, ptrace_faultinfo is smaller!
|
|
|
|
*/
|
|
|
|
ret = copy_to_user(p, &child->thread.arch.faultinfo,
|
2010-10-28 00:34:04 +02:00
|
|
|
sizeof(struct ptrace_faultinfo)) ?
|
|
|
|
-EIO : 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
[PATCH] uml: S390 preparation, abstract host page fault data
This patch removes the arch-specific fault/trap-infos from thread and
skas-regs.
It adds a new struct faultinfo, that is arch-specific defined in
sysdep/faultinfo.h.
The structure is inserted in thread.arch and thread.regs.skas and
thread.regs.tt
Now, segv and other trap-handlers can copy the contents from regs.X.faultinfo
to thread.arch.faultinfo with one simple assignment.
Also, the number of macros necessary is reduced to
FAULT_ADDRESS(struct faultinfo)
extracts the faulting address from faultinfo
FAULT_WRITE(struct faultinfo)
extracts the "is_write" flag
SEGV_IS_FIXABLE(struct faultinfo)
is true for the fixable segvs, i.e. (TRAP == 14)
on i386
UPT_FAULTINFO(regs)
result is (struct faultinfo *) to the faultinfo
in regs->skas.faultinfo
GET_FAULTINFO_FROM_SC(struct faultinfo, struct sigcontext *)
copies the relevant parts of the sigcontext to
struct faultinfo.
On SIGSEGV, call user_signal() instead of handle_segv(), if the architecture
provides the information needed in PTRACE_FAULTINFO, or if PTRACE_FAULTINFO is
missing, because segv-stub will provide the info.
The benefit of the change is, that in case of a non-fixable SIGSEGV, we can
give user processes a SIGSEGV, instead of possibly looping on pagefault
handling.
Since handle_segv() sikked arch_fixup() implicitly by passing ip==0 to segv(),
I changed segv() to call arch_fixup() only, if !is_user.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-06 01:15:31 +02:00
|
|
|
#ifdef PTRACE_LDT
|
2005-04-17 00:20:36 +02:00
|
|
|
case PTRACE_LDT: {
|
|
|
|
struct ptrace_ldt ldt;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (copy_from_user(&ldt, p, sizeof(ldt))) {
|
2005-04-17 00:20:36 +02:00
|
|
|
ret = -EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* This one is confusing, so just punt and return -EIO for
|
2005-04-17 00:20:36 +02:00
|
|
|
* now
|
|
|
|
*/
|
|
|
|
ret = -EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
ret = ptrace_request(child, request, addr, data);
|
2007-10-16 10:27:16 +02:00
|
|
|
if (ret == -EIO)
|
|
|
|
ret = subarch_ptrace(child, request, addr, data);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
}
|
2005-11-07 09:59:47 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-24 06:28:49 +02:00
|
|
|
static void send_sigtrap(struct task_struct *tsk, struct uml_pt_regs *regs,
|
2005-04-17 00:20:36 +02:00
|
|
|
int error_code)
|
|
|
|
{
|
|
|
|
struct siginfo info;
|
|
|
|
|
|
|
|
memset(&info, 0, sizeof(info));
|
|
|
|
info.si_signo = SIGTRAP;
|
|
|
|
info.si_code = TRAP_BRKPT;
|
|
|
|
|
|
|
|
/* User-mode eip? */
|
|
|
|
info.si_addr = UPT_IS_USER(regs) ? (void __user *) UPT_IP(regs) : NULL;
|
|
|
|
|
2007-10-20 01:23:03 +02:00
|
|
|
/* Send us the fake SIGTRAP */
|
2005-04-17 00:20:36 +02:00
|
|
|
force_sig_info(SIGTRAP, &info, tsk);
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* XXX Check PT_DTRACE vs TIF_SINGLESTEP for singlestepping check and
|
2005-04-17 00:20:36 +02:00
|
|
|
* PT_PTRACED vs TIF_SYSCALL_TRACE for syscall tracing check
|
|
|
|
*/
|
2012-05-23 06:18:33 +02:00
|
|
|
void syscall_trace_enter(struct pt_regs *regs)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2012-05-23 06:18:33 +02:00
|
|
|
audit_syscall_entry(HOST_AUDIT_ARCH,
|
|
|
|
UPT_SYSCALL_NR(®s->regs),
|
|
|
|
UPT_SYSCALL_ARG1(®s->regs),
|
|
|
|
UPT_SYSCALL_ARG2(®s->regs),
|
|
|
|
UPT_SYSCALL_ARG3(®s->regs),
|
|
|
|
UPT_SYSCALL_ARG4(®s->regs));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (!test_thread_flag(TIF_SYSCALL_TRACE))
|
|
|
|
return;
|
|
|
|
|
2012-05-23 06:18:33 +02:00
|
|
|
tracehook_report_syscall_entry(regs);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-05-23 06:18:33 +02:00
|
|
|
void syscall_trace_leave(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
int ptraced = current->ptrace;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-05-23 06:18:33 +02:00
|
|
|
audit_syscall_exit(regs);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-05-23 06:18:33 +02:00
|
|
|
/* Fake a debug trap */
|
|
|
|
if (ptraced & PT_DTRACE)
|
|
|
|
send_sigtrap(current, ®s->regs, 0);
|
|
|
|
|
|
|
|
if (!test_thread_flag(TIF_SYSCALL_TRACE))
|
|
|
|
return;
|
|
|
|
|
|
|
|
tracehook_report_syscall_exit(regs, 0);
|
|
|
|
/* force do_signal() --> is_syscall() */
|
|
|
|
if (ptraced & PT_PTRACED)
|
|
|
|
set_thread_flag(TIF_SIGPENDING);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|