vserver 2.0 rc7
[linux-2.6.git] / arch / v850 / kernel / ptrace.c
1 /*
2  * arch/v850/kernel/ptrace.c -- `ptrace' system call
3  *
4  *  Copyright (C) 2002,03,04  NEC Electronics Corporation
5  *  Copyright (C) 2002,03,04  Miles Bader <miles@gnu.org>
6  *
7  * Derived from arch/mips/kernel/ptrace.c:
8  *
9  *  Copyright (C) 1992 Ross Biro
10  *  Copyright (C) Linus Torvalds
11  *  Copyright (C) 1994, 95, 96, 97, 98, 2000 Ralf Baechle
12  *  Copyright (C) 1996 David S. Miller
13  *  Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
14  *  Copyright (C) 1999 MIPS Technologies, Inc.
15  *
16  * This file is subject to the terms and conditions of the GNU General
17  * Public License.  See the file COPYING in the main directory of this
18  * archive for more details.
19  */
20
21 #include <linux/kernel.h>
22 #include <linux/mm.h>
23 #include <linux/sched.h>
24 #include <linux/smp_lock.h>
25 #include <linux/ptrace.h>
26 #include <linux/signal.h>
27
28 #include <asm/errno.h>
29 #include <asm/ptrace.h>
30 #include <asm/processor.h>
31 #include <asm/uaccess.h>
32
33 /* Returns the address where the register at REG_OFFS in P is stashed away.  */
34 static v850_reg_t *reg_save_addr (unsigned reg_offs, struct task_struct *t)
35 {
36         struct pt_regs *regs;
37
38         /* Three basic cases:
39
40            (1) A register normally saved before calling the scheduler, is
41                available in the kernel entry pt_regs structure at the top
42                of the kernel stack.  The kernel trap/irq exit path takes
43                care to save/restore almost all registers for ptrace'd
44                processes.
45
46            (2) A call-clobbered register, where the process P entered the
47                kernel via [syscall] trap, is not stored anywhere; that's
48                OK, because such registers are not expected to be preserved
49                when the trap returns anyway (so we don't actually bother to
50                test for this case).
51
52            (3) A few registers not used at all by the kernel, and so
53                normally never saved except by context-switches, are in the
54                context switch state.  */
55
56         if (reg_offs == PT_CTPC || reg_offs == PT_CTPSW || reg_offs == PT_CTBP)
57                 /* Register saved during context switch.  */
58                 regs = thread_saved_regs (t);
59         else
60                 /* Register saved during kernel entry (or not available).  */
61                 regs = task_regs (t);
62
63         return (v850_reg_t *)((char *)regs + reg_offs);
64 }
65
66 /* Set the bits SET and clear the bits CLEAR in the v850e DIR
67    (`debug information register').  Returns the new value of DIR.  */
68 static inline v850_reg_t set_dir (v850_reg_t set, v850_reg_t clear)
69 {
70         register v850_reg_t rval asm ("r10");
71         register v850_reg_t arg0 asm ("r6") = set;
72         register v850_reg_t arg1 asm ("r7") = clear;
73
74         /* The dbtrap handler has exactly this functionality when called
75            from kernel mode.  0xf840 is a `dbtrap' insn.  */
76         asm (".short 0xf840" : "=r" (rval) : "r" (arg0), "r" (arg1));
77
78         return rval;
79 }
80
81 /* Makes sure hardware single-stepping is (globally) enabled.
82    Returns true if successful.  */
83 static inline int enable_single_stepping (void)
84 {
85         static int enabled = 0; /* Remember whether we already did it.  */
86         if (! enabled) {
87                 /* Turn on the SE (`single-step enable') bit, 0x100, in the
88                    DIR (`debug information register').  This may fail if a
89                    processor doesn't support it or something.  We also try
90                    to clear bit 0x40 (`INI'), which is necessary to use the
91                    debug stuff on the v850e2; on the v850e, clearing 0x40
92                    shouldn't cause any problem.  */
93                 v850_reg_t dir = set_dir (0x100, 0x40);
94                 /* Make sure it really got set.  */
95                 if (dir & 0x100)
96                         enabled = 1;
97         }
98         return enabled;
99 }
100
101 /* Try to set CHILD's single-step flag to VAL.  Returns true if successful.  */
102 static int set_single_step (struct task_struct *t, int val)
103 {
104         v850_reg_t *psw_addr = reg_save_addr(PT_PSW, t);
105         if (val) {
106                 /* Make sure single-stepping is enabled.  */
107                 if (! enable_single_stepping ())
108                         return 0;
109                 /* Set T's single-step flag.  */
110                 *psw_addr |= 0x800;
111         } else
112                 *psw_addr &= ~0x800;
113         return 1;
114 }
115
116 int sys_ptrace(long request, long pid, long addr, long data)
117 {
118         struct task_struct *child;
119         int rval;
120
121         lock_kernel();
122
123         if (request == PTRACE_TRACEME) {
124                 /* are we already being traced? */
125                 if (current->ptrace & PT_PTRACED) {
126                         rval = -EPERM;
127                         goto out;
128                 }
129                 /* set the ptrace bit in the process flags. */
130                 current->ptrace |= PT_PTRACED;
131                 rval = 0;
132                 goto out;
133         }
134         rval = -ESRCH;
135         read_lock(&tasklist_lock);
136         child = find_task_by_pid(pid);
137         if (child)
138                 get_task_struct(child);
139         read_unlock(&tasklist_lock);
140         if (!child)
141                 goto out;
142         if (!vx_check(vx_task_xid(child), VX_WATCH|VX_IDENT))
143                 goto out_tsk;
144
145         rval = -EPERM;
146         if (pid == 1)           /* you may not mess with init */
147                 goto out_tsk;
148
149         if (request == PTRACE_ATTACH) {
150                 rval = ptrace_attach(child);
151                 goto out_tsk;
152         }
153         rval = ptrace_check_attach(child, request == PTRACE_KILL);
154         if (rval < 0)
155                 goto out_tsk;
156
157         switch (request) {
158                 unsigned long val, copied;
159
160         case PTRACE_PEEKTEXT: /* read word at location addr. */
161         case PTRACE_PEEKDATA:
162                 copied = access_process_vm(child, addr, &val, sizeof(val), 0);
163                 rval = -EIO;
164                 if (copied != sizeof(val))
165                         break;
166                 rval = put_user(val, (unsigned long *)data);
167                 goto out;
168
169         case PTRACE_POKETEXT: /* write the word at location addr. */
170         case PTRACE_POKEDATA:
171                 rval = 0;
172                 if (access_process_vm(child, addr, &data, sizeof(data), 1)
173                     == sizeof(data))
174                         break;
175                 rval = -EIO;
176                 goto out;
177
178         /* Read/write the word at location ADDR in the registers.  */
179         case PTRACE_PEEKUSR:
180         case PTRACE_POKEUSR:
181                 rval = 0;
182                 if (addr >= PT_SIZE && request == PTRACE_PEEKUSR) {
183                         /* Special requests that don't actually correspond
184                            to offsets in struct pt_regs.  */
185                         if (addr == PT_TEXT_ADDR)
186                                 val = child->mm->start_code;
187                         else if (addr == PT_DATA_ADDR)
188                                 val = child->mm->start_data;
189                         else if (addr == PT_TEXT_LEN)
190                                 val = child->mm->end_code
191                                         - child->mm->start_code;
192                         else
193                                 rval = -EIO;
194                 } else if (addr >= 0 && addr < PT_SIZE && (addr & 0x3) == 0) {
195                         v850_reg_t *reg_addr = reg_save_addr(addr, child);
196                         if (request == PTRACE_PEEKUSR)
197                                 val = *reg_addr;
198                         else
199                                 *reg_addr = data;
200                 } else
201                         rval = -EIO;
202
203                 if (rval == 0 && request == PTRACE_PEEKUSR)
204                         rval = put_user (val, (unsigned long *)data);
205                 goto out;
206
207         /* Continue and stop at next (return from) syscall */
208         case PTRACE_SYSCALL:
209         /* Restart after a signal.  */
210         case PTRACE_CONT:
211         /* Execute a single instruction. */
212         case PTRACE_SINGLESTEP:
213                 rval = -EIO;
214                 if (!valid_signal(data))
215                         break;
216
217                 /* Turn CHILD's single-step flag on or off.  */
218                 if (! set_single_step (child, request == PTRACE_SINGLESTEP))
219                         break;
220
221                 if (request == PTRACE_SYSCALL)
222                         set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
223                 else
224                         clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
225
226                 child->exit_code = data;
227                 wake_up_process(child);
228                 rval = 0;
229                 break;
230
231         /*
232          * make the child exit.  Best I can do is send it a sigkill.
233          * perhaps it should be put in the status that it wants to
234          * exit.
235          */
236         case PTRACE_KILL:
237                 rval = 0;
238                 if (child->exit_state == EXIT_ZOMBIE)   /* already dead */
239                         break;
240                 child->exit_code = SIGKILL;
241                 wake_up_process(child);
242                 break;
243
244         case PTRACE_DETACH: /* detach a process that was attached. */
245                 set_single_step (child, 0);  /* Clear single-step flag */
246                 rval = ptrace_detach(child, data);
247                 break;
248
249         default:
250                 rval = -EIO;
251                 goto out;
252         }
253
254 out_tsk:
255         put_task_struct(child);
256 out:
257         unlock_kernel();
258         return rval;
259 }
260
261 asmlinkage void syscall_trace(void)
262 {
263         if (!test_thread_flag(TIF_SYSCALL_TRACE))
264                 return;
265         if (!(current->ptrace & PT_PTRACED))
266                 return;
267         /* The 0x80 provides a way for the tracing parent to distinguish
268            between a syscall stop and SIGTRAP delivery */
269         ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
270                                  ? 0x80 : 0));
271         /*
272          * this isn't the same as continuing with a signal, but it will do
273          * for normal use.  strace only continues with a signal if the
274          * stopping signal is not SIGTRAP.  -brl
275          */
276         if (current->exit_code) {
277                 send_sig(current->exit_code, current, 1);
278                 current->exit_code = 0;
279         }
280 }
281
282 void ptrace_disable (struct task_struct *child)
283 {
284         /* nothing to do */
285 }