Release 4.14 arch/um/kernel/ptrace.c
/*
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* Licensed under the GPL
*/
#include <linux/audit.h>
#include <linux/ptrace.h>
#include <linux/sched.h>
#include <linux/tracehook.h>
#include <linux/uaccess.h>
#include <asm/ptrace-abi.h>
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
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Christoph Hellwig | 22 | 61.11% | 1 | 25.00% |
Jeff Dike | 8 | 22.22% | 2 | 50.00% |
Bodo Stroesser | 6 | 16.67% | 1 | 25.00% |
Total | 36 | 100.00% | 4 | 100.00% |
void user_disable_single_step(struct task_struct *child)
{
child->ptrace &= ~PT_DTRACE;
child->thread.singlestep_syscall = 0;
#ifdef SUBARCH_SET_SINGLESTEPPING
SUBARCH_SET_SINGLESTEPPING(child, 0);
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 18 | 48.65% | 2 | 50.00% |
Christoph Hellwig | 10 | 27.03% | 1 | 25.00% |
Bodo Stroesser | 9 | 24.32% | 1 | 25.00% |
Total | 37 | 100.00% | 4 | 100.00% |
/*
* Called by kernel/ptrace.c when detaching..
*/
void ptrace_disable(struct task_struct *child)
{
user_disable_single_step(child);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Bodo Stroesser | 14 | 93.33% | 1 | 50.00% |
Christoph Hellwig | 1 | 6.67% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.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);
long arch_ptrace(struct task_struct *child, long request,
unsigned long addr, unsigned long data)
{
int i, ret;
unsigned long __user *p = (void __user *)data;
void __user *vp = p;
switch (request) {
/* read the word at location addr in the USER area. */
case PTRACE_PEEKUSR:
ret = peek_user(child, addr, data);
break;
/* write the word at location addr in the USER area */
case PTRACE_POKEUSR:
ret = poke_user(child, addr, data);
break;
case PTRACE_SYSEMU:
case PTRACE_SYSEMU_SINGLESTEP:
ret = -EIO;
break;
#ifdef PTRACE_GETREGS
case PTRACE_GETREGS: { /* Get all gp regs from the child. */
if (!access_ok(VERIFY_WRITE, p, MAX_REG_OFFSET)) {
ret = -EIO;
break;
}
for ( i = 0; i < MAX_REG_OFFSET; i += sizeof(long) ) {
__put_user(getreg(child, i), p);
p++;
}
ret = 0;
break;
}
#endif
#ifdef PTRACE_SETREGS
case PTRACE_SETREGS: { /* Set all gp regs in the child. */
unsigned long tmp = 0;
if (!access_ok(VERIFY_READ, p, MAX_REG_OFFSET)) {
ret = -EIO;
break;
}
for ( i = 0; i < MAX_REG_OFFSET; i += sizeof(long) ) {
__get_user(tmp, p);
putreg(child, i, tmp);
p++;
}
ret = 0;
break;
}
#endif
case PTRACE_GET_THREAD_AREA:
ret = ptrace_get_thread_area(child, addr, vp);
break;
case PTRACE_SET_THREAD_AREA:
ret = ptrace_set_thread_area(child, addr, vp);
break;
default:
ret = ptrace_request(child, request, addr, data);
if (ret == -EIO)
ret = subarch_ptrace(child, request, addr, data);
break;
}
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 225 | 71.66% | 6 | 40.00% |
Paolo 'Blaisorblade' Giarrusso | 37 | 11.78% | 2 | 13.33% |
Al Viro | 21 | 6.69% | 1 | 6.67% |
Renzo Davoli | 12 | 3.82% | 1 | 6.67% |
Namhyung Kim | 10 | 3.18% | 2 | 13.33% |
Christoph Hellwig | 6 | 1.91% | 1 | 6.67% |
Bodo Stroesser | 2 | 0.64% | 1 | 6.67% |
Richard Weinberger | 1 | 0.32% | 1 | 6.67% |
Total | 314 | 100.00% | 15 | 100.00% |
static void send_sigtrap(struct task_struct *tsk, struct uml_pt_regs *regs,
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;
/* Send us the fake SIGTRAP */
force_sig_info(SIGTRAP, &info, tsk);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 79 | 97.53% | 2 | 50.00% |
Américo Wang | 1 | 1.23% | 1 | 25.00% |
Simon Arlott | 1 | 1.23% | 1 | 25.00% |
Total | 81 | 100.00% | 4 | 100.00% |
/*
* XXX Check PT_DTRACE vs TIF_SINGLESTEP for singlestepping check and
* PT_PTRACED vs TIF_SYSCALL_TRACE for syscall tracing check
*/
int syscall_trace_enter(struct pt_regs *regs)
{
audit_syscall_entry(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));
if (!test_thread_flag(TIF_SYSCALL_TRACE))
return 0;
return tracehook_report_syscall_entry(regs);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 30 | 42.86% | 1 | 16.67% |
Jeff Dike | 24 | 34.29% | 3 | 50.00% |
Paolo 'Blaisorblade' Giarrusso | 10 | 14.29% | 1 | 16.67% |
Richard Weinberger | 6 | 8.57% | 1 | 16.67% |
Total | 70 | 100.00% | 6 | 100.00% |
void syscall_trace_leave(struct pt_regs *regs)
{
int ptraced = current->ptrace;
audit_syscall_exit(regs);
/* 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);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 35 | 50.72% | 5 | 71.43% |
Al Viro | 29 | 42.03% | 1 | 14.29% |
Paolo 'Blaisorblade' Giarrusso | 5 | 7.25% | 1 | 14.29% |
Total | 69 | 100.00% | 7 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 399 | 59.11% | 13 | 41.94% |
Al Viro | 84 | 12.44% | 2 | 6.45% |
Bodo Stroesser | 64 | 9.48% | 1 | 3.23% |
Paolo 'Blaisorblade' Giarrusso | 52 | 7.70% | 3 | 9.68% |
Christoph Hellwig | 39 | 5.78% | 2 | 6.45% |
Renzo Davoli | 12 | 1.78% | 1 | 3.23% |
Namhyung Kim | 10 | 1.48% | 2 | 6.45% |
Richard Weinberger | 10 | 1.48% | 3 | 9.68% |
Chris Wright | 2 | 0.30% | 1 | 3.23% |
Américo Wang | 1 | 0.15% | 1 | 3.23% |
Linus Torvalds | 1 | 0.15% | 1 | 3.23% |
Simon Arlott | 1 | 0.15% | 1 | 3.23% |
Total | 675 | 100.00% | 31 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.