]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/microblaze/kernel/ptrace.c
8c21d8b3cb0cb3d6a783458aa2bba1815eaec06f
[net-next-2.6.git] / arch / microblaze / kernel / ptrace.c
1 /*
2  * `ptrace' system call
3  *
4  * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
5  * Copyright (C) 2007-2009 PetaLogix
6  * Copyright (C) 2004-2007 John Williams <john.williams@petalogix.com>
7  *
8  * derived from arch/v850/kernel/ptrace.c
9  *
10  * Copyright (C) 2002,03 NEC Electronics Corporation
11  * Copyright (C) 2002,03 Miles Bader <miles@gnu.org>
12  *
13  * Derived from arch/mips/kernel/ptrace.c:
14  *
15  * Copyright (C) 1992 Ross Biro
16  * Copyright (C) Linus Torvalds
17  * Copyright (C) 1994, 95, 96, 97, 98, 2000 Ralf Baechle
18  * Copyright (C) 1996 David S. Miller
19  * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
20  * Copyright (C) 1999 MIPS Technologies, Inc.
21  *
22  * This file is subject to the terms and conditions of the GNU General
23  * Public License. See the file COPYING in the main directory of this
24  * archive for more details.
25  */
26
27 #include <linux/kernel.h>
28 #include <linux/mm.h>
29 #include <linux/sched.h>
30 #include <linux/ptrace.h>
31 #include <linux/signal.h>
32 #include <linux/elf.h>
33 #include <linux/audit.h>
34 #include <linux/seccomp.h>
35 #include <linux/tracehook.h>
36
37 #include <linux/errno.h>
38 #include <asm/processor.h>
39 #include <linux/uaccess.h>
40 #include <asm/asm-offsets.h>
41
42 /* Returns the address where the register at REG_OFFS in P is stashed away. */
43 static microblaze_reg_t *reg_save_addr(unsigned reg_offs,
44                                         struct task_struct *t)
45 {
46         struct pt_regs *regs;
47
48         /*
49          * Three basic cases:
50          *
51          * (1)  A register normally saved before calling the scheduler, is
52          *      available in the kernel entry pt_regs structure at the top
53          *      of the kernel stack. The kernel trap/irq exit path takes
54          *      care to save/restore almost all registers for ptrace'd
55          *      processes.
56          *
57          * (2)  A call-clobbered register, where the process P entered the
58          *      kernel via [syscall] trap, is not stored anywhere; that's
59          *      OK, because such registers are not expected to be preserved
60          *      when the trap returns anyway (so we don't actually bother to
61          *      test for this case).
62          *
63          * (3)  A few registers not used at all by the kernel, and so
64          *      normally never saved except by context-switches, are in the
65          *      context switch state.
66          */
67
68         /* Register saved during kernel entry (or not available). */
69         regs = task_pt_regs(t);
70
71         return (microblaze_reg_t *)((char *)regs + reg_offs);
72 }
73
74 long arch_ptrace(struct task_struct *child, long request, long addr, long data)
75 {
76         int rval;
77         unsigned long val = 0;
78         unsigned long copied;
79
80         switch (request) {
81         /* Read/write the word at location ADDR in the registers. */
82         case PTRACE_PEEKUSR:
83         case PTRACE_POKEUSR:
84                 pr_debug("PEEKUSR/POKEUSR : 0x%08lx\n", addr);
85                 rval = 0;
86                 if (addr >= PT_SIZE && request == PTRACE_PEEKUSR) {
87                         /*
88                          * Special requests that don't actually correspond
89                          * to offsets in struct pt_regs.
90                          */
91                         if (addr == PT_TEXT_ADDR) {
92                                 val = child->mm->start_code;
93                         } else if (addr == PT_DATA_ADDR) {
94                                 val = child->mm->start_data;
95                         } else if (addr == PT_TEXT_LEN) {
96                                 val = child->mm->end_code
97                                         - child->mm->start_code;
98                         } else {
99                                 rval = -EIO;
100                         }
101                 } else if (addr >= 0 && addr < PT_SIZE && (addr & 0x3) == 0) {
102                         microblaze_reg_t *reg_addr = reg_save_addr(addr, child);
103                         if (request == PTRACE_PEEKUSR)
104                                 val = *reg_addr;
105                         else
106                                 *reg_addr = data;
107                 } else
108                         rval = -EIO;
109
110                 if (rval == 0 && request == PTRACE_PEEKUSR)
111                         rval = put_user(val, (unsigned long *)data);
112                 break;
113         /* Continue and stop at next (return from) syscall */
114         case PTRACE_SYSCALL:
115                 pr_debug("PTRACE_SYSCALL\n");
116         case PTRACE_SINGLESTEP:
117                 pr_debug("PTRACE_SINGLESTEP\n");
118         /* Restart after a signal.  */
119         case PTRACE_CONT:
120                 pr_debug("PTRACE_CONT\n");
121                 rval = -EIO;
122                 if (!valid_signal(data))
123                         break;
124
125                 if (request == PTRACE_SYSCALL)
126                         set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
127                 else
128                         clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
129
130                 child->exit_code = data;
131                 pr_debug("wakeup_process\n");
132                 wake_up_process(child);
133                 rval = 0;
134                 break;
135
136         /*
137          * make the child exit.  Best I can do is send it a sigkill.
138          * perhaps it should be put in the status that it wants to
139          * exit.
140          */
141         case PTRACE_KILL:
142                 pr_debug("PTRACE_KILL\n");
143                 rval = 0;
144                 if (child->exit_state == EXIT_ZOMBIE)   /* already dead */
145                         break;
146                 child->exit_code = SIGKILL;
147                 wake_up_process(child);
148                 break;
149
150         default:
151                 rval = ptrace_request(child, request, addr, data);
152         }
153         return rval;
154 }
155
156 asmlinkage long do_syscall_trace_enter(struct pt_regs *regs)
157 {
158         long ret = 0;
159
160         secure_computing(regs->r12);
161
162         if (test_thread_flag(TIF_SYSCALL_TRACE) &&
163             tracehook_report_syscall_entry(regs))
164                 /*
165                  * Tracing decided this syscall should not happen.
166                  * We'll return a bogus call number to get an ENOSYS
167                  * error, but leave the original number in regs->regs[0].
168                  */
169                 ret = -1L;
170
171         if (unlikely(current->audit_context))
172                 audit_syscall_entry(EM_XILINX_MICROBLAZE, regs->r12,
173                                     regs->r5, regs->r6,
174                                     regs->r7, regs->r8);
175
176         return ret ?: regs->r12;
177 }
178
179 asmlinkage void do_syscall_trace_leave(struct pt_regs *regs)
180 {
181         int step;
182
183         if (unlikely(current->audit_context))
184                 audit_syscall_exit(AUDITSC_RESULT(regs->r3), regs->r3);
185
186         step = test_thread_flag(TIF_SINGLESTEP);
187         if (step || test_thread_flag(TIF_SYSCALL_TRACE))
188                 tracehook_report_syscall_exit(regs, step);
189 }
190
191 #if 0
192 static asmlinkage void syscall_trace(void)
193 {
194         if (!test_thread_flag(TIF_SYSCALL_TRACE))
195                 return;
196         if (!(current->ptrace & PT_PTRACED))
197                 return;
198         /* The 0x80 provides a way for the tracing parent to distinguish
199          between a syscall stop and SIGTRAP delivery */
200         ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
201                                 ? 0x80 : 0));
202         /*
203          * this isn't the same as continuing with a signal, but it will do
204          * for normal use. strace only continues with a signal if the
205          * stopping signal is not SIGTRAP. -brl
206          */
207         if (current->exit_code) {
208                 send_sig(current->exit_code, current, 1);
209                 current->exit_code = 0;
210         }
211 }
212 #endif
213
214 void ptrace_disable(struct task_struct *child)
215 {
216         /* nothing to do */
217 }