2 * Copyright (C) 2000-2003, Axis Communications AB.
5 #include <linux/kernel.h>
6 #include <linux/sched.h>
9 #include <linux/errno.h>
10 #include <linux/ptrace.h>
11 #include <linux/user.h>
12 #include <linux/signal.h>
13 #include <linux/security.h>
15 #include <asm/uaccess.h>
17 #include <asm/pgtable.h>
18 #include <asm/system.h>
19 #include <asm/processor.h>
22 * Determines which bits in DCCR the user has access to.
23 * 1 = access, 0 = no access.
25 #define DCCR_MASK 0x0000001f /* XNZVC */
28 * Get contents of register REGNO in task TASK.
30 inline long get_reg(struct task_struct
*task
, unsigned int regno
)
32 /* USP is a special case, it's not in the pt_regs struct but
33 * in the tasks thread struct
37 return task
->thread
.usp
;
38 else if (regno
< PT_MAX
)
39 return ((unsigned long *)task_pt_regs(task
))[regno
];
45 * Write contents of register REGNO in task TASK.
47 inline int put_reg(struct task_struct
*task
, unsigned int regno
,
51 task
->thread
.usp
= data
;
52 else if (regno
< PT_MAX
)
53 ((unsigned long *)task_pt_regs(task
))[regno
] = data
;
60 * Called by kernel/ptrace.c when detaching.
62 * Make sure the single step bit is not set.
65 ptrace_disable(struct task_struct
*child
)
67 /* Todo - pending singlesteps? */
68 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
72 * Note that this implementation of ptrace behaves differently from vanilla
73 * ptrace. Contrary to what the man page says, in the PTRACE_PEEKTEXT,
74 * PTRACE_PEEKDATA, and PTRACE_PEEKUSER requests the data variable is not
75 * ignored. Instead, the data variable is expected to point at a location
76 * (in user space) where the result of the ptrace call is written (instead of
79 long arch_ptrace(struct task_struct
*child
, long request
, long addr
, long data
)
82 unsigned long __user
*datap
= (unsigned long __user
*)data
;
85 /* Read word at location address. */
88 ret
= generic_ptrace_peekdata(child
, addr
, data
);
91 /* Read the word at location address in the USER area. */
92 case PTRACE_PEEKUSR
: {
96 if ((addr
& 3) || addr
< 0 || addr
> PT_MAX
<< 2)
99 tmp
= get_reg(child
, addr
>> 2);
100 ret
= put_user(tmp
, datap
);
104 /* Write the word at location address. */
105 case PTRACE_POKETEXT
:
106 case PTRACE_POKEDATA
:
107 ret
= generic_ptrace_pokedata(child
, addr
, data
);
110 /* Write the word at location address in the USER area. */
113 if ((addr
& 3) || addr
< 0 || addr
> PT_MAX
<< 2)
118 if (addr
== PT_DCCR
) {
119 /* don't allow the tracing process to change stuff like
120 * interrupt enable, kernel/user bit, dma enables etc.
123 data
|= get_reg(child
, PT_DCCR
) & ~DCCR_MASK
;
125 if (put_reg(child
, addr
, data
))
134 if (!valid_signal(data
))
137 if (request
== PTRACE_SYSCALL
) {
138 set_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
141 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
144 child
->exit_code
= data
;
146 /* TODO: make sure any pending breakpoint is killed */
147 wake_up_process(child
);
152 /* Make the child exit by sending it a sigkill. */
156 if (child
->exit_state
== EXIT_ZOMBIE
)
159 child
->exit_code
= SIGKILL
;
161 /* TODO: make sure any pending breakpoint is killed */
162 wake_up_process(child
);
165 /* Set the trap flag. */
166 case PTRACE_SINGLESTEP
:
169 if (!valid_signal(data
))
172 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
174 /* TODO: set some clever breakpoint mechanism... */
176 child
->exit_code
= data
;
177 wake_up_process(child
);
181 /* Get all GP registers from the child. */
182 case PTRACE_GETREGS
: {
187 for (i
= 0; i
<= PT_MAX
; i
++) {
188 tmp
= get_reg(child
, i
);
190 if (put_user(tmp
, datap
)) {
195 data
+= sizeof(long);
201 /* Set all GP registers in the child. */
202 case PTRACE_SETREGS
: {
207 for (i
= 0; i
<= PT_MAX
; i
++) {
208 if (get_user(tmp
, datap
)) {
215 tmp
|= get_reg(child
, PT_DCCR
) & ~DCCR_MASK
;
218 put_reg(child
, i
, tmp
);
219 data
+= sizeof(long);
226 ret
= ptrace_request(child
, request
, addr
, data
);
233 void do_syscall_trace(void)
235 if (!test_thread_flag(TIF_SYSCALL_TRACE
))
238 if (!(current
->ptrace
& PT_PTRACED
))
241 /* the 0x80 provides a way for the tracing parent to distinguish
242 between a syscall stop and SIGTRAP delivery */
243 ptrace_notify(SIGTRAP
| ((current
->ptrace
& PT_TRACESYSGOOD
)
247 * This isn't the same as continuing with a signal, but it will do for
250 if (current
->exit_code
) {
251 send_sig(current
->exit_code
, current
, 1);
252 current
->exit_code
= 0;