2 * linux/arch/m68knommu/kernel/ptrace.c
4 * Copyright (C) 1994 by Hamish Macdonald
5 * Taken from linux/kernel/ptrace.c and modified for M680x0.
6 * linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds
8 * This file is subject to the terms and conditions of the GNU General
9 * Public License. See the file COPYING in the main directory of
10 * this archive for more details.
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
16 #include <linux/smp.h>
17 #include <linux/smp_lock.h>
18 #include <linux/errno.h>
19 #include <linux/ptrace.h>
20 #include <linux/user.h>
21 #include <linux/signal.h>
23 #include <asm/uaccess.h>
25 #include <asm/pgtable.h>
26 #include <asm/system.h>
27 #include <asm/processor.h>
30 * does not yet catch signals sent when the child dies.
31 * in exit.c or in signal.c.
34 /* determines which bits in the SR the user has access to. */
35 /* 1 = access 0 = no access */
36 #define SR_MASK 0x001f
38 /* sets the trace bits. */
39 #define TRACE_BITS 0x8000
41 /* Find the stack offset for a register, relative to thread.esp0. */
42 #define PT_REG(reg) ((long)&((struct pt_regs *)0)->reg)
43 #define SW_REG(reg) ((long)&((struct switch_stack *)0)->reg \
44 - sizeof(struct switch_stack))
45 /* Mapping from PT_xxx to the stack offset at which the register is
46 saved. Notice that usp has no stack-slot and needs to be treated
47 specially (see get_reg/put_reg below). */
48 static int regoff[] = {
49 PT_REG(d1), PT_REG(d2), PT_REG(d3), PT_REG(d4),
50 PT_REG(d5), SW_REG(d6), SW_REG(d7), PT_REG(a0),
51 PT_REG(a1), PT_REG(a2), SW_REG(a3), SW_REG(a4),
52 SW_REG(a5), SW_REG(a6), PT_REG(d0), -1,
53 PT_REG(orig_d0), PT_REG(sr), PT_REG(pc),
57 * Get contents of register REGNO in task TASK.
59 static inline long get_reg(struct task_struct *task, int regno)
64 addr = &task->thread.usp;
65 else if (regno < ARRAY_SIZE(regoff))
66 addr = (unsigned long *)(task->thread.esp0 + regoff[regno]);
73 * Write contents of register REGNO in task TASK.
75 static inline int put_reg(struct task_struct *task, int regno,
81 addr = &task->thread.usp;
82 else if (regno < ARRAY_SIZE(regoff))
83 addr = (unsigned long *) (task->thread.esp0 + regoff[regno]);
91 * Called by kernel/ptrace.c when detaching..
93 * Make sure the single step bit is not set.
95 void ptrace_disable(struct task_struct *child)
98 /* make sure the single step bit is not set. */
99 tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
100 put_reg(child, PT_SR, tmp);
103 long arch_ptrace(struct task_struct *child, long request, long addr, long data)
108 /* when I and D space are separate, these will need to be fixed. */
109 case PTRACE_PEEKTEXT: /* read word at location addr. */
110 case PTRACE_PEEKDATA: {
114 copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
116 if (copied != sizeof(tmp))
118 ret = put_user(tmp,(unsigned long *) data);
122 /* read the word at location addr in the USER area. */
123 case PTRACE_PEEKUSR: {
127 if ((addr & 3) || addr < 0 ||
128 addr > sizeof(struct user) - 3)
131 tmp = 0; /* Default return condition */
132 addr = addr >> 2; /* temporary hack. */
135 tmp = get_reg(child, addr);
138 } else if (addr >= 21 && addr < 49) {
139 tmp = child->thread.fp[addr - 21];
140 #ifdef CONFIG_M68KFPU_EMU
141 /* Convert internal fpu reg representation
142 * into long double format
144 if (FPU_IS_EMU && (addr < 45) && !(addr % 3))
145 tmp = ((tmp & 0xffff0000) << 15) |
146 ((tmp & 0x0000ffff) << 16);
148 } else if (addr == 49) {
149 tmp = child->mm->start_code;
150 } else if (addr == 50) {
151 tmp = child->mm->start_data;
152 } else if (addr == 51) {
153 tmp = child->mm->end_code;
156 ret = put_user(tmp,(unsigned long *) data);
160 /* when I and D space are separate, this will have to be fixed. */
161 case PTRACE_POKETEXT: /* write the word at location addr. */
162 case PTRACE_POKEDATA:
164 if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
169 case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
171 if ((addr & 3) || addr < 0 ||
172 addr > sizeof(struct user) - 3)
175 addr = addr >> 2; /* temporary hack. */
180 data |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
183 if (put_reg(child, addr, data))
188 if (addr >= 21 && addr < 48)
190 #ifdef CONFIG_M68KFPU_EMU
191 /* Convert long double format
192 * into internal fpu reg representation
194 if (FPU_IS_EMU && (addr < 45) && !(addr % 3)) {
195 data = (unsigned long)data << 15;
196 data = (data & 0xffff0000) |
197 ((data & 0x0000ffff) >> 1);
200 child->thread.fp[addr - 21] = data;
205 case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
206 case PTRACE_CONT: { /* restart after signal. */
210 if (!valid_signal(data))
212 if (request == PTRACE_SYSCALL)
213 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
215 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
216 child->exit_code = data;
217 /* make sure the single step bit is not set. */
218 tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
219 put_reg(child, PT_SR, tmp);
220 wake_up_process(child);
226 * make the child exit. Best I can do is send it a sigkill.
227 * perhaps it should be put in the status that it wants to
234 if (child->exit_state == EXIT_ZOMBIE) /* already dead */
236 child->exit_code = SIGKILL;
237 /* make sure the single step bit is not set. */
238 tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
239 put_reg(child, PT_SR, tmp);
240 wake_up_process(child);
244 case PTRACE_SINGLESTEP: { /* set the trap flag. */
248 if (!valid_signal(data))
250 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
251 tmp = get_reg(child, PT_SR) | (TRACE_BITS << 16);
252 put_reg(child, PT_SR, tmp);
254 child->exit_code = data;
255 /* give it a chance to run. */
256 wake_up_process(child);
261 case PTRACE_DETACH: /* detach a process that was attached. */
262 ret = ptrace_detach(child, data);
265 case PTRACE_GETREGS: { /* Get all gp regs from the child. */
268 for (i = 0; i < 19; i++) {
269 tmp = get_reg(child, i);
272 if (put_user(tmp, (unsigned long *) data)) {
276 data += sizeof(long);
282 case PTRACE_SETREGS: { /* Set all gp regs in the child. */
285 for (i = 0; i < 19; i++) {
286 if (get_user(tmp, (unsigned long *) data)) {
293 tmp |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
295 put_reg(child, i, tmp);
296 data += sizeof(long);
302 #ifdef PTRACE_GETFPREGS
303 case PTRACE_GETFPREGS: { /* Get the child FPU state. */
305 if (copy_to_user((void *)data, &child->thread.fp,
306 sizeof(struct user_m68kfp_struct)))
312 #ifdef PTRACE_SETFPREGS
313 case PTRACE_SETFPREGS: { /* Set the child FPU state. */
315 if (copy_from_user(&child->thread.fp, (void *)data,
316 sizeof(struct user_m68kfp_struct)))
329 asmlinkage void syscall_trace(void)
331 if (!test_thread_flag(TIF_SYSCALL_TRACE))
333 if (!(current->ptrace & PT_PTRACED))
335 ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
338 * this isn't the same as continuing with a signal, but it will do
339 * for normal use. strace only continues with a signal if the
340 * stopping signal is not SIGTRAP. -brl
342 if (current->exit_code) {
343 send_sig(current->exit_code, current, 1);
344 current->exit_code = 0;