patch-2.6.6-vs1.9.0
[linux-2.6.git] / arch / m68knommu / kernel / ptrace.c
1 /*
2  *  linux/arch/m68knommu/kernel/ptrace.c
3  *
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
7  *
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.
11  */
12
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/mm.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/config.h>
22
23 #include <asm/uaccess.h>
24 #include <asm/page.h>
25 #include <asm/pgtable.h>
26 #include <asm/system.h>
27 #include <asm/processor.h>
28
29 /*
30  * does not yet catch signals sent when the child dies.
31  * in exit.c or in signal.c.
32  */
33
34 /* determines which bits in the SR the user has access to. */
35 /* 1 = access 0 = no access */
36 #define SR_MASK 0x001f
37
38 /* sets the trace bits. */
39 #define TRACE_BITS 0x8000
40
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),
54 };
55
56 /*
57  * Get contents of register REGNO in task TASK.
58  */
59 static inline long get_reg(struct task_struct *task, int regno)
60 {
61         unsigned long *addr;
62
63         if (regno == PT_USP)
64                 addr = &task->thread.usp;
65         else if (regno < sizeof(regoff)/sizeof(regoff[0]))
66                 addr = (unsigned long *)(task->thread.esp0 + regoff[regno]);
67         else
68                 return 0;
69         return *addr;
70 }
71
72 /*
73  * Write contents of register REGNO in task TASK.
74  */
75 static inline int put_reg(struct task_struct *task, int regno,
76                           unsigned long data)
77 {
78         unsigned long *addr;
79
80         if (regno == PT_USP)
81                 addr = &task->thread.usp;
82         else if (regno < sizeof(regoff)/sizeof(regoff[0]))
83                 addr = (unsigned long *) (task->thread.esp0 + regoff[regno]);
84         else
85                 return -1;
86         *addr = data;
87         return 0;
88 }
89
90 /*
91  * Called by kernel/ptrace.c when detaching..
92  *
93  * Make sure the single step bit is not set.
94  */
95 void ptrace_disable(struct task_struct *child)
96 {
97         unsigned long tmp;
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);
101 }
102
103 asmlinkage int sys_ptrace(long request, long pid, long addr, long data)
104 {
105         struct task_struct *child;
106         int ret;
107
108         lock_kernel();
109         ret = -EPERM;
110         if (request == PTRACE_TRACEME) {
111                 /* are we already being traced? */
112                 if (current->ptrace & PT_PTRACED)
113                         goto out;
114                 /* set the ptrace bit in the process flags. */
115                 current->ptrace |= PT_PTRACED;
116                 ret = 0;
117                 goto out;
118         }
119         ret = -ESRCH;
120         read_lock(&tasklist_lock);
121         child = find_task_by_pid(pid);
122         if (child)
123                 get_task_struct(child);
124         read_unlock(&tasklist_lock);
125         if (!child)
126                 goto out;
127         if (!vx_check(vx_task_xid(child), VX_WATCH|VX_IDENT))
128                 goto out_tsk;
129
130         ret = -EPERM;
131         if (pid == 1)           /* you may not mess with init */
132                 goto out_tsk;
133
134         if (request == PTRACE_ATTACH) {
135                 ret = ptrace_attach(child);
136                 goto out_tsk;
137         }
138         ret = -ESRCH;
139         if (!(child->ptrace & PT_PTRACED))
140                 goto out_tsk;
141         if (child->state != TASK_STOPPED) {
142                 if (request != PTRACE_KILL)
143                         goto out_tsk;
144         }
145         ret = ptrace_check_attach(child, request == PTRACE_KILL);
146         if (ret < 0)
147                 goto out_tsk;
148
149         switch (request) {
150                 /* when I and D space are separate, these will need to be fixed. */
151                 case PTRACE_PEEKTEXT: /* read word at location addr. */ 
152                 case PTRACE_PEEKDATA: {
153                         unsigned long tmp;
154                         int copied;
155
156                         copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
157                         ret = -EIO;
158                         if (copied != sizeof(tmp))
159                                 break;
160                         ret = put_user(tmp,(unsigned long *) data);
161                         break;
162                 }
163
164                 /* read the word at location addr in the USER area. */
165                 case PTRACE_PEEKUSR: {
166                         unsigned long tmp;
167                         
168                         ret = -EIO;
169                         if ((addr & 3) || addr < 0 ||
170                             addr > sizeof(struct user) - 3)
171                                 break;
172                         
173                         tmp = 0;  /* Default return condition */
174                         addr = addr >> 2; /* temporary hack. */
175                         ret = -EIO;
176                         if (addr < 19) {
177                                 tmp = get_reg(child, addr);
178                                 if (addr == PT_SR)
179                                         tmp >>= 16;
180                         } else if (addr >= 21 && addr < 49) {
181                                 tmp = child->thread.fp[addr - 21];
182 #ifdef CONFIG_M68KFPU_EMU
183                                 /* Convert internal fpu reg representation
184                                  * into long double format
185                                  */
186                                 if (FPU_IS_EMU && (addr < 45) && !(addr % 3))
187                                         tmp = ((tmp & 0xffff0000) << 15) |
188                                               ((tmp & 0x0000ffff) << 16);
189 #endif
190                         } else if (addr == 49) {
191                                 tmp = child->mm->start_code;
192                         } else if (addr == 50) {
193                                 tmp = child->mm->start_data;
194                         } else if (addr == 51) {
195                                 tmp = child->mm->end_code;
196                         } else
197                                 break;
198                         ret = put_user(tmp,(unsigned long *) data);
199                         break;
200                 }
201
202                 /* when I and D space are separate, this will have to be fixed. */
203                 case PTRACE_POKETEXT: /* write the word at location addr. */
204                 case PTRACE_POKEDATA:
205                         ret = 0;
206                         if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
207                                 break;
208                         ret = -EIO;
209                         break;
210
211                 case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
212                         ret = -EIO;
213                         if ((addr & 3) || addr < 0 ||
214                             addr > sizeof(struct user) - 3)
215                                 break;
216
217                         addr = addr >> 2; /* temporary hack. */
218                             
219                         if (addr == PT_SR) {
220                                 data &= SR_MASK;
221                                 data <<= 16;
222                                 data |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
223                         }
224                         if (addr < 19) {
225                                 if (put_reg(child, addr, data))
226                                         break;
227                                 ret = 0;
228                                 break;
229                         }
230                         if (addr >= 21 && addr < 48)
231                         {
232 #ifdef CONFIG_M68KFPU_EMU
233                                 /* Convert long double format
234                                  * into internal fpu reg representation
235                                  */
236                                 if (FPU_IS_EMU && (addr < 45) && !(addr % 3)) {
237                                         data = (unsigned long)data << 15;
238                                         data = (data & 0xffff0000) |
239                                                ((data & 0x0000ffff) >> 1);
240                                 }
241 #endif
242                                 child->thread.fp[addr - 21] = data;
243                                 ret = 0;
244                         }
245                         break;
246
247                 case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
248                 case PTRACE_CONT: { /* restart after signal. */
249                         long tmp;
250
251                         ret = -EIO;
252                         if ((unsigned long) data > _NSIG)
253                                 break;
254                         if (request == PTRACE_SYSCALL)
255                                 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
256                         else
257                                 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
258                         child->exit_code = data;
259                         /* make sure the single step bit is not set. */
260                         tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
261                         put_reg(child, PT_SR, tmp);
262                         wake_up_process(child);
263                         ret = 0;
264                         break;
265                 }
266
267                 /*
268                  * make the child exit.  Best I can do is send it a sigkill. 
269                  * perhaps it should be put in the status that it wants to 
270                  * exit.
271                  */
272                 case PTRACE_KILL: {
273                         long tmp;
274
275                         ret = 0;
276                         if (child->state == TASK_ZOMBIE) /* already dead */
277                                 break;
278                         child->exit_code = SIGKILL;
279                         /* make sure the single step bit is not set. */
280                         tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
281                         put_reg(child, PT_SR, tmp);
282                         wake_up_process(child);
283                         break;
284                 }
285
286                 case PTRACE_SINGLESTEP: {  /* set the trap flag. */
287                         long tmp;
288
289                         ret = -EIO;
290                         if ((unsigned long) data > _NSIG)
291                                 break;
292                         clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
293                         tmp = get_reg(child, PT_SR) | (TRACE_BITS << 16);
294                         put_reg(child, PT_SR, tmp);
295
296                         child->exit_code = data;
297                         /* give it a chance to run. */
298                         wake_up_process(child);
299                         ret = 0;
300                         break;
301                 }
302
303                 case PTRACE_DETACH:     /* detach a process that was attached. */
304                         ret = ptrace_detach(child, data);
305                         break;
306
307                 case PTRACE_GETREGS: { /* Get all gp regs from the child. */
308                         int i;
309                         unsigned long tmp;
310                         for (i = 0; i < 19; i++) {
311                             tmp = get_reg(child, i);
312                             if (i == PT_SR)
313                                 tmp >>= 16;
314                             if (put_user(tmp, (unsigned long *) data)) {
315                                 ret = -EFAULT;
316                                 break;
317                             }
318                             data += sizeof(long);
319                         }
320                         ret = 0;
321                         break;
322                 }
323
324                 case PTRACE_SETREGS: { /* Set all gp regs in the child. */
325                         int i;
326                         unsigned long tmp;
327                         for (i = 0; i < 19; i++) {
328                             if (get_user(tmp, (unsigned long *) data)) {
329                                 ret = -EFAULT;
330                                 break;
331                             }
332                             if (i == PT_SR) {
333                                 tmp &= SR_MASK;
334                                 tmp <<= 16;
335                                 tmp |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
336                             }
337                             put_reg(child, i, tmp);
338                             data += sizeof(long);
339                         }
340                         ret = 0;
341                         break;
342                 }
343
344 #ifdef PTRACE_GETFPREGS
345                 case PTRACE_GETFPREGS: { /* Get the child FPU state. */
346                         ret = 0;
347                         if (copy_to_user((void *)data, &child->thread.fp,
348                                          sizeof(struct user_m68kfp_struct)))
349                                 ret = -EFAULT;
350                         break;
351                 }
352 #endif
353
354 #ifdef PTRACE_SETFPREGS
355                 case PTRACE_SETFPREGS: { /* Set the child FPU state. */
356                         ret = 0;
357                         if (copy_from_user(&child->thread.fp, (void *)data,
358                                            sizeof(struct user_m68kfp_struct)))
359                                 ret = -EFAULT;
360                         break;
361                 }
362 #endif
363
364                 default:
365                         ret = -EIO;
366                         break;
367         }
368 out_tsk:
369         put_task_struct(child);
370 out:
371         unlock_kernel();
372         return ret;
373 }
374
375 asmlinkage void syscall_trace(void)
376 {
377         if (!test_thread_flag(TIF_SYSCALL_TRACE))
378                 return;
379         if (!(current->ptrace & PT_PTRACED))
380                 return;
381         current->exit_code = SIGTRAP;
382         current->state = TASK_STOPPED;
383         notify_parent(current, SIGCHLD);
384         schedule();
385         /*
386          * this isn't the same as continuing with a signal, but it will do
387          * for normal use.  strace only continues with a signal if the
388          * stopping signal is not SIGTRAP.  -brl
389          */
390         if (current->exit_code) {
391                 send_sig(current->exit_code, current, 1);
392                 current->exit_code = 0;
393         }
394 }