2 * File: arch/blackfin/kernel/ptrace.c
3 * Based on: Taken from linux/kernel/ptrace.c
4 * Author: linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds
10 * Copyright 2004-2006 Analog Devices Inc.
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see the file COPYING, or write
26 * to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <linux/kernel.h>
31 #include <linux/sched.h>
33 #include <linux/smp.h>
34 #include <linux/errno.h>
35 #include <linux/ptrace.h>
36 #include <linux/user.h>
37 #include <linux/signal.h>
38 #include <linux/uaccess.h>
41 #include <asm/pgtable.h>
42 #include <asm/system.h>
43 #include <asm/processor.h>
44 #include <asm/asm-offsets.h>
46 #include <asm/fixed_code.h>
47 #include <asm/cacheflush.h>
48 #include <asm/mem_map.h>
52 * does not yet catch signals sent when the child dies.
53 * in exit.c or in signal.c.
56 /* determines which bits in the SYSCFG reg the user has access to. */
57 /* 1 = access 0 = no access */
58 #define SYSCFG_MASK 0x0007 /* SYSCFG reg */
59 /* sets the trace bits. */
60 #define TRACE_BITS 0x0001
62 /* Find the stack offset for a register, relative to thread.esp0. */
63 #define PT_REG(reg) ((long)&((struct pt_regs *)0)->reg)
66 * Get the address of the live pt_regs for the specified task.
67 * These are saved onto the top kernel stack when the process
70 * Note: if a user thread is execve'd from kernel space, the
71 * kernel stack will not be empty on entry to the kernel, so
72 * ptracing these tasks will fail.
74 static inline struct pt_regs
*get_user_regs(struct task_struct
*task
)
76 return (struct pt_regs
*)
77 ((unsigned long)task_stack_page(task
) +
78 (THREAD_SIZE
- sizeof(struct pt_regs
)));
82 * Get all user integer registers.
84 static inline int ptrace_getregs(struct task_struct
*tsk
, void __user
*uregs
)
87 memcpy(®s
, get_user_regs(tsk
), sizeof(regs
));
88 regs
.usp
= tsk
->thread
.usp
;
89 return copy_to_user(uregs
, ®s
, sizeof(struct pt_regs
)) ? -EFAULT
: 0;
92 /* Mapping from PT_xxx to the stack offset at which the register is
93 * saved. Notice that usp has no stack-slot and needs to be treated
94 * specially (see get_reg/put_reg below).
98 * Get contents of register REGNO in task TASK.
100 static inline long get_reg(struct task_struct
*task
, int regno
)
102 unsigned char *reg_ptr
;
104 struct pt_regs
*regs
=
105 (struct pt_regs
*)((unsigned long)task_stack_page(task
) +
106 (THREAD_SIZE
- sizeof(struct pt_regs
)));
107 reg_ptr
= (char *)regs
;
111 return task
->thread
.usp
;
114 return *(long *)(reg_ptr
+ regno
);
116 /* slight mystery ... never seems to come here but kernel misbehaves without this code! */
118 printk(KERN_WARNING
"Request to get for unknown register %d\n", regno
);
123 * Write contents of register REGNO in task TASK.
126 put_reg(struct task_struct
*task
, int regno
, unsigned long data
)
130 struct pt_regs
*regs
=
131 (struct pt_regs
*)((unsigned long)task_stack_page(task
) +
132 (THREAD_SIZE
- sizeof(struct pt_regs
)));
133 reg_ptr
= (char *)regs
;
137 /*********************************************************************/
138 /* At this point the kernel is most likely in exception. */
139 /* The RETX register will be used to populate the pc of the process. */
140 /*********************************************************************/
145 break; /* regs->retx = data; break; */
148 task
->thread
.usp
= data
;
152 *(long *)(reg_ptr
+ regno
) = data
;
158 * check that an address falls within the bounds of the target process's memory mappings
160 static inline int is_user_addr_valid(struct task_struct
*child
,
161 unsigned long start
, unsigned long len
)
163 struct vm_area_struct
*vma
;
164 struct sram_list_struct
*sraml
;
167 if (start
+ len
< start
)
170 vma
= find_vma(child
->mm
, start
);
171 if (vma
&& start
>= vma
->vm_start
&& start
+ len
<= vma
->vm_end
)
174 for (sraml
= child
->mm
->context
.sram_list
; sraml
; sraml
= sraml
->next
)
175 if (start
>= (unsigned long)sraml
->addr
176 && start
+ len
< (unsigned long)sraml
->addr
+ sraml
->length
)
179 if (start
>= FIXED_CODE_START
&& start
+ len
< FIXED_CODE_END
)
185 void ptrace_enable(struct task_struct
*child
)
188 tmp
= get_reg(child
, PT_SYSCFG
) | (TRACE_BITS
);
189 put_reg(child
, PT_SYSCFG
, tmp
);
193 * Called by kernel/ptrace.c when detaching..
195 * Make sure the single step bit is not set.
197 void ptrace_disable(struct task_struct
*child
)
200 /* make sure the single step bit is not set. */
201 tmp
= get_reg(child
, PT_SYSCFG
) & ~TRACE_BITS
;
202 put_reg(child
, PT_SYSCFG
, tmp
);
205 long arch_ptrace(struct task_struct
*child
, long request
, long addr
, long data
)
208 unsigned long __user
*datap
= (unsigned long __user
*)data
;
211 /* when I and D space are separate, these will need to be fixed. */
212 case PTRACE_PEEKDATA
:
213 pr_debug("ptrace: PEEKDATA\n");
215 case PTRACE_PEEKTEXT
: /* read word at location addr. */
217 unsigned long tmp
= 0;
221 pr_debug("ptrace: PEEKTEXT at addr 0x%08lx + %ld\n", addr
, sizeof(data
));
222 if (is_user_addr_valid(child
, addr
, sizeof(tmp
)) < 0)
224 pr_debug("ptrace: user address is valid\n");
226 if (L1_CODE_LENGTH
!= 0 && addr
>= get_l1_code_start()
227 && addr
+ sizeof(tmp
) <= get_l1_code_start() + L1_CODE_LENGTH
) {
228 safe_dma_memcpy (&tmp
, (const void *)(addr
), sizeof(tmp
));
229 copied
= sizeof(tmp
);
231 } else if (L1_DATA_A_LENGTH
!= 0 && addr
>= L1_DATA_A_START
232 && addr
+ sizeof(tmp
) <= L1_DATA_A_START
+ L1_DATA_A_LENGTH
) {
233 memcpy(&tmp
, (const void *)(addr
), sizeof(tmp
));
234 copied
= sizeof(tmp
);
236 } else if (L1_DATA_B_LENGTH
!= 0 && addr
>= L1_DATA_B_START
237 && addr
+ sizeof(tmp
) <= L1_DATA_B_START
+ L1_DATA_B_LENGTH
) {
238 memcpy(&tmp
, (const void *)(addr
), sizeof(tmp
));
239 copied
= sizeof(tmp
);
241 } else if (addr
>= FIXED_CODE_START
242 && addr
+ sizeof(tmp
) <= FIXED_CODE_END
) {
243 copy_from_user_page(0, 0, 0, &tmp
, (const void *)(addr
), sizeof(tmp
));
244 copied
= sizeof(tmp
);
247 copied
= access_process_vm(child
, addr
, &tmp
,
250 pr_debug("ptrace: copied size %d [0x%08lx]\n", copied
, tmp
);
251 if (copied
!= sizeof(tmp
))
253 ret
= put_user(tmp
, datap
);
257 /* read the word at location addr in the USER area. */
263 if ((addr
& 3) || (addr
> (sizeof(struct pt_regs
) + 16))) {
264 printk(KERN_WARNING
"ptrace error : PEEKUSR : temporarily returning "
265 "0 - %x sizeof(pt_regs) is %lx\n",
266 (int)addr
, sizeof(struct pt_regs
));
269 if (addr
== sizeof(struct pt_regs
)) {
271 tmp
= child
->mm
->start_code
+ TEXT_OFFSET
;
272 } else if (addr
== (sizeof(struct pt_regs
) + 4)) {
273 /* PT_TEXT_END_ADDR */
274 tmp
= child
->mm
->end_code
;
275 } else if (addr
== (sizeof(struct pt_regs
) + 8)) {
277 tmp
= child
->mm
->start_data
;
278 #ifdef CONFIG_BINFMT_ELF_FDPIC
279 } else if (addr
== (sizeof(struct pt_regs
) + 12)) {
280 tmp
= child
->mm
->context
.exec_fdpic_loadmap
;
281 } else if (addr
== (sizeof(struct pt_regs
) + 16)) {
282 tmp
= child
->mm
->context
.interp_fdpic_loadmap
;
285 tmp
= get_reg(child
, addr
);
287 ret
= put_user(tmp
, datap
);
291 /* when I and D space are separate, this will have to be fixed. */
292 case PTRACE_POKEDATA
:
293 pr_debug("ptrace: PTRACE_PEEKDATA\n");
295 case PTRACE_POKETEXT
: /* write the word at location addr. */
300 pr_debug("ptrace: POKETEXT at addr 0x%08lx + %ld bytes %lx\n",
301 addr
, sizeof(data
), data
);
302 if (is_user_addr_valid(child
, addr
, sizeof(data
)) < 0)
304 pr_debug("ptrace: user address is valid\n");
306 if (L1_CODE_LENGTH
!= 0 && addr
>= get_l1_code_start()
307 && addr
+ sizeof(data
) <= get_l1_code_start() + L1_CODE_LENGTH
) {
308 safe_dma_memcpy ((void *)(addr
), &data
, sizeof(data
));
309 copied
= sizeof(data
);
311 } else if (L1_DATA_A_LENGTH
!= 0 && addr
>= L1_DATA_A_START
312 && addr
+ sizeof(data
) <= L1_DATA_A_START
+ L1_DATA_A_LENGTH
) {
313 memcpy((void *)(addr
), &data
, sizeof(data
));
314 copied
= sizeof(data
);
316 } else if (L1_DATA_B_LENGTH
!= 0 && addr
>= L1_DATA_B_START
317 && addr
+ sizeof(data
) <= L1_DATA_B_START
+ L1_DATA_B_LENGTH
) {
318 memcpy((void *)(addr
), &data
, sizeof(data
));
319 copied
= sizeof(data
);
321 } else if (addr
>= FIXED_CODE_START
322 && addr
+ sizeof(data
) <= FIXED_CODE_END
) {
323 copy_to_user_page(0, 0, 0, (void *)(addr
), &data
, sizeof(data
));
324 copied
= sizeof(data
);
327 copied
= access_process_vm(child
, addr
, &data
,
330 pr_debug("ptrace: copied size %d\n", copied
);
331 if (copied
!= sizeof(data
))
337 case PTRACE_POKEUSR
: /* write the word at location addr in the USER area */
339 if ((addr
& 3) || (addr
> (sizeof(struct pt_regs
) + 16))) {
340 printk(KERN_WARNING
"ptrace error : POKEUSR: temporarily returning 0\n");
344 if (addr
>= (sizeof(struct pt_regs
))) {
348 if (addr
== PT_SYSCFG
) {
350 data
|= get_reg(child
, PT_SYSCFG
);
352 ret
= put_reg(child
, addr
, data
);
355 case PTRACE_SYSCALL
: /* continue and stop at next (return from) syscall */
356 case PTRACE_CONT
: /* restart after signal. */
357 pr_debug("ptrace: syscall/cont\n");
360 if (!valid_signal(data
))
362 if (request
== PTRACE_SYSCALL
)
363 set_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
365 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
366 child
->exit_code
= data
;
367 ptrace_disable(child
);
368 pr_debug("ptrace: before wake_up_process\n");
369 wake_up_process(child
);
374 * make the child exit. Best I can do is send it a sigkill.
375 * perhaps it should be put in the status that it wants to
380 if (child
->exit_state
== EXIT_ZOMBIE
) /* already dead */
382 child
->exit_code
= SIGKILL
;
383 ptrace_disable(child
);
384 wake_up_process(child
);
387 case PTRACE_SINGLESTEP
: /* set the trap flag. */
388 pr_debug("ptrace: single step\n");
390 if (!valid_signal(data
))
392 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
393 ptrace_enable(child
);
394 child
->exit_code
= data
;
395 wake_up_process(child
);
400 /* Get all gp regs from the child. */
401 ret
= ptrace_getregs(child
, datap
);
405 printk(KERN_WARNING
"ptrace: SETREGS: **** NOT IMPLEMENTED ***\n");
406 /* Set all gp regs in the child. */
411 ret
= ptrace_request(child
, request
, addr
, data
);
418 asmlinkage
void syscall_trace(void)
420 if (!test_thread_flag(TIF_SYSCALL_TRACE
))
423 if (!(current
->ptrace
& PT_PTRACED
))
426 /* the 0x80 provides a way for the tracing parent to distinguish
427 * between a syscall stop and SIGTRAP delivery
429 ptrace_notify(SIGTRAP
| ((current
->ptrace
& PT_TRACESYSGOOD
)
433 * this isn't the same as continuing with a signal, but it will do
434 * for normal use. strace only continues with a signal if the
435 * stopping signal is not SIGTRAP. -brl
437 if (current
->exit_code
) {
438 send_sig(current
->exit_code
, current
, 1);
439 current
->exit_code
= 0;