patch-2.6.6-vs1.9.0
[linux-2.6.git] / arch / ppc / kernel / ptrace.c
1 /*
2  *  arch/ppc/kernel/ptrace.c
3  *
4  *  PowerPC version
5  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
6  *
7  *  Derived from "arch/m68k/kernel/ptrace.c"
8  *  Copyright (C) 1994 by Hamish Macdonald
9  *  Taken from linux/kernel/ptrace.c and modified for M680x0.
10  *  linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds
11  *
12  * Modified by Cort Dougan (cort@hq.fsmlabs.com)
13  * and Paul Mackerras (paulus@linuxcare.com.au).
14  *
15  * This file is subject to the terms and conditions of the GNU General
16  * Public License.  See the file README.legal in the main directory of
17  * this archive for more details.
18  */
19
20 #include <linux/kernel.h>
21 #include <linux/sched.h>
22 #include <linux/mm.h>
23 #include <linux/smp.h>
24 #include <linux/smp_lock.h>
25 #include <linux/errno.h>
26 #include <linux/ptrace.h>
27 #include <linux/user.h>
28 #include <linux/security.h>
29
30 #include <asm/uaccess.h>
31 #include <asm/page.h>
32 #include <asm/pgtable.h>
33 #include <asm/system.h>
34
35 /*
36  * Set of msr bits that gdb can change on behalf of a process.
37  */
38 #ifdef CONFIG_4xx
39 #define MSR_DEBUGCHANGE 0
40 #else
41 #define MSR_DEBUGCHANGE (MSR_SE | MSR_BE)
42 #endif
43
44 /*
45  * does not yet catch signals sent when the child dies.
46  * in exit.c or in signal.c.
47  */
48
49 /*
50  * Get contents of register REGNO in task TASK.
51  */
52 static inline unsigned long get_reg(struct task_struct *task, int regno)
53 {
54         if (regno < sizeof(struct pt_regs) / sizeof(unsigned long)
55             && task->thread.regs != NULL)
56                 return ((unsigned long *)task->thread.regs)[regno];
57         return (0);
58 }
59
60 /*
61  * Write contents of register REGNO in task TASK.
62  */
63 static inline int put_reg(struct task_struct *task, int regno,
64                           unsigned long data)
65 {
66         if (regno <= PT_MQ && task->thread.regs != NULL) {
67                 if (regno == PT_MSR)
68                         data = (data & MSR_DEBUGCHANGE)
69                                 | (task->thread.regs->msr & ~MSR_DEBUGCHANGE);
70                 ((unsigned long *)task->thread.regs)[regno] = data;
71                 return 0;
72         }
73         return -EIO;
74 }
75
76 #ifdef CONFIG_ALTIVEC
77 /*
78  * Get contents of AltiVec register state in task TASK
79  */
80 static inline int get_vrregs(unsigned long *data, struct task_struct *task)
81 {
82         int i, j;
83
84         if (!access_ok(VERIFY_WRITE, data, 133 * sizeof(unsigned long)))
85                 return -EFAULT;
86
87         /* copy AltiVec registers VR[0] .. VR[31] */
88         for (i = 0; i < 32; i++)
89                 for (j = 0; j < 4; j++, data++)
90                         if (__put_user(task->thread.vr[i].u[j], data))
91                                 return -EFAULT;
92
93         /* copy VSCR */
94         for (i = 0; i < 4; i++, data++)
95                 if (__put_user(task->thread.vscr.u[i], data))
96                         return -EFAULT;
97
98         /* copy VRSAVE */
99         if (__put_user(task->thread.vrsave, data))
100                 return -EFAULT;
101
102         return 0;
103 }
104
105 /*
106  * Write contents of AltiVec register state into task TASK.
107  */
108 static inline int set_vrregs(struct task_struct *task, unsigned long *data)
109 {
110         int i, j;
111
112         if (!access_ok(VERIFY_READ, data, 133 * sizeof(unsigned long)))
113                 return -EFAULT;
114
115         /* copy AltiVec registers VR[0] .. VR[31] */
116         for (i = 0; i < 32; i++)
117                 for (j = 0; j < 4; j++, data++)
118                         if (__get_user(task->thread.vr[i].u[j], data))
119                                 return -EFAULT;
120
121         /* copy VSCR */
122         for (i = 0; i < 4; i++, data++)
123                 if (__get_user(task->thread.vscr.u[i], data))
124                         return -EFAULT;
125
126         /* copy VRSAVE */
127         if (__get_user(task->thread.vrsave, data))
128                 return -EFAULT;
129
130         return 0;
131 }
132 #endif
133
134 static inline void
135 set_single_step(struct task_struct *task)
136 {
137         struct pt_regs *regs = task->thread.regs;
138
139         if (regs != NULL) {
140 #ifdef CONFIG_4xx
141                 task->thread.dbcr0 = DBCR0_IDM | DBCR0_IC;
142                 /* MSR.DE should already be set */
143 #else
144                 regs->msr |= MSR_SE;
145 #endif
146         }
147 }
148
149 static inline void
150 clear_single_step(struct task_struct *task)
151 {
152         struct pt_regs *regs = task->thread.regs;
153
154         if (regs != NULL) {
155 #ifdef CONFIG_4xx
156                 task->thread.dbcr0 = 0;
157 #else
158                 regs->msr &= ~MSR_SE;
159 #endif
160         }
161 }
162
163 /*
164  * Called by kernel/ptrace.c when detaching..
165  *
166  * Make sure single step bits etc are not set.
167  */
168 void ptrace_disable(struct task_struct *child)
169 {
170         /* make sure the single step bit is not set. */
171         clear_single_step(child);
172 }
173
174 int sys_ptrace(long request, long pid, long addr, long data)
175 {
176         struct task_struct *child;
177         int ret = -EPERM;
178
179         lock_kernel();
180         if (request == PTRACE_TRACEME) {
181                 /* are we already being traced? */
182                 if (current->ptrace & PT_PTRACED)
183                         goto out;
184                 ret = security_ptrace(current->parent, current);
185                 if (ret)
186                         goto out;
187                 /* set the ptrace bit in the process flags. */
188                 current->ptrace |= PT_PTRACED;
189                 ret = 0;
190                 goto out;
191         }
192         ret = -ESRCH;
193         read_lock(&tasklist_lock);
194         child = find_task_by_pid(pid);
195         if (child)
196                 get_task_struct(child);
197         read_unlock(&tasklist_lock);
198         if (!child)
199                 goto out;
200         if (!vx_check(vx_task_xid(child), VX_WATCH|VX_IDENT))
201                 goto out_tsk;
202
203         ret = -EPERM;
204         if (pid == 1)           /* you may not mess with init */
205                 goto out_tsk;
206
207         if (request == PTRACE_ATTACH) {
208                 ret = ptrace_attach(child);
209                 goto out_tsk;
210         }
211
212         ret = ptrace_check_attach(child, request == PTRACE_KILL);
213         if (ret < 0)
214                 goto out_tsk;
215
216         switch (request) {
217         /* when I and D space are separate, these will need to be fixed. */
218         case PTRACE_PEEKTEXT: /* read word at location addr. */
219         case PTRACE_PEEKDATA: {
220                 unsigned long tmp;
221                 int copied;
222
223                 copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
224                 ret = -EIO;
225                 if (copied != sizeof(tmp))
226                         break;
227                 ret = put_user(tmp,(unsigned long *) data);
228                 break;
229         }
230
231         /* read the word at location addr in the USER area. */
232         /* XXX this will need fixing for 64-bit */
233         case PTRACE_PEEKUSR: {
234                 unsigned long index, tmp;
235
236                 ret = -EIO;
237                 /* convert to index and check */
238                 index = (unsigned long) addr >> 2;
239                 if ((addr & 3) || index > PT_FPSCR
240                     || child->thread.regs == NULL)
241                         break;
242
243                 CHECK_FULL_REGS(child->thread.regs);
244                 if (index < PT_FPR0) {
245                         tmp = get_reg(child, (int) index);
246                 } else {
247                         preempt_disable();
248                         if (child->thread.regs->msr & MSR_FP)
249                                 giveup_fpu(child);
250                         preempt_enable();
251                         tmp = ((unsigned long *)child->thread.fpr)[index - PT_FPR0];
252                 }
253                 ret = put_user(tmp,(unsigned long *) data);
254                 break;
255         }
256
257         /* If I and D space are separate, this will have to be fixed. */
258         case PTRACE_POKETEXT: /* write the word at location addr. */
259         case PTRACE_POKEDATA:
260                 ret = 0;
261                 if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
262                         break;
263                 ret = -EIO;
264                 break;
265
266         /* write the word at location addr in the USER area */
267         case PTRACE_POKEUSR: {
268                 unsigned long index;
269
270                 ret = -EIO;
271                 /* convert to index and check */
272                 index = (unsigned long) addr >> 2;
273                 if ((addr & 3) || index > PT_FPSCR
274                     || child->thread.regs == NULL)
275                         break;
276
277                 CHECK_FULL_REGS(child->thread.regs);
278                 if (index == PT_ORIG_R3)
279                         break;
280                 if (index < PT_FPR0) {
281                         ret = put_reg(child, index, data);
282                 } else {
283                         preempt_disable();
284                         if (child->thread.regs->msr & MSR_FP)
285                                 giveup_fpu(child);
286                         preempt_enable();
287                         ((unsigned long *)child->thread.fpr)[index - PT_FPR0] = data;
288                         ret = 0;
289                 }
290                 break;
291         }
292
293         case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
294         case PTRACE_CONT: { /* restart after signal. */
295                 ret = -EIO;
296                 if ((unsigned long) data > _NSIG)
297                         break;
298                 if (request == PTRACE_SYSCALL) {
299                         set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
300                 } else {
301                         clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
302                 }
303                 child->exit_code = data;
304                 /* make sure the single step bit is not set. */
305                 clear_single_step(child);
306                 wake_up_process(child);
307                 ret = 0;
308                 break;
309         }
310
311 /*
312  * make the child exit.  Best I can do is send it a sigkill.
313  * perhaps it should be put in the status that it wants to
314  * exit.
315  */
316         case PTRACE_KILL: {
317                 ret = 0;
318                 if (child->state == TASK_ZOMBIE)        /* already dead */
319                         break;
320                 child->exit_code = SIGKILL;
321                 /* make sure the single step bit is not set. */
322                 clear_single_step(child);
323                 wake_up_process(child);
324                 break;
325         }
326
327         case PTRACE_SINGLESTEP: {  /* set the trap flag. */
328                 ret = -EIO;
329                 if ((unsigned long) data > _NSIG)
330                         break;
331                 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
332                 set_single_step(child);
333                 child->exit_code = data;
334                 /* give it a chance to run. */
335                 wake_up_process(child);
336                 ret = 0;
337                 break;
338         }
339
340         case PTRACE_DETACH:
341                 ret = ptrace_detach(child, data);
342                 break;
343
344 #ifdef CONFIG_ALTIVEC
345         case PTRACE_GETVRREGS:
346                 /* Get the child altivec register state. */
347                 preempt_disable();
348                 if (child->thread.regs->msr & MSR_VEC)
349                         giveup_altivec(child);
350                 preempt_enable();
351                 ret = get_vrregs((unsigned long *)data, child);
352                 break;
353
354         case PTRACE_SETVRREGS:
355                 /* Set the child altivec register state. */
356                 /* this is to clear the MSR_VEC bit to force a reload
357                  * of register state from memory */
358                 preempt_disable();
359                 if (child->thread.regs->msr & MSR_VEC)
360                         giveup_altivec(child);
361                 preempt_enable();
362                 ret = set_vrregs(child, (unsigned long *)data);
363                 break;
364 #endif
365
366         default:
367                 ret = ptrace_request(child, request, addr, data);
368                 break;
369         }
370 out_tsk:
371         put_task_struct(child);
372 out:
373         unlock_kernel();
374         return ret;
375 }
376
377 void do_syscall_trace(void)
378 {
379         if (!test_thread_flag(TIF_SYSCALL_TRACE)
380             || !(current->ptrace & PT_PTRACED))
381                 return;
382         ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
383                                  ? 0x80 : 0));
384
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 }