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