2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1992 Ross Biro
7 * Copyright (C) Linus Torvalds
8 * Copyright (C) 1994, 95, 96, 97, 98, 2000 Ralf Baechle
9 * Copyright (C) 1996 David S. Miller
10 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
11 * Copyright (C) 1999 MIPS Technologies, Inc.
12 * Copyright (C) 2000 Ulf Carlsson
14 * At this time Linux/MIPS64 only supports syscall tracing, even for 32-bit
17 #include <linux/config.h>
18 #include <linux/compiler.h>
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
22 #include <linux/errno.h>
23 #include <linux/ptrace.h>
24 #include <linux/audit.h>
25 #include <linux/smp.h>
26 #include <linux/smp_lock.h>
27 #include <linux/user.h>
28 #include <linux/security.h>
29 #include <linux/signal.h>
31 #include <asm/byteorder.h>
34 #include <asm/mipsregs.h>
35 #include <asm/pgtable.h>
37 #include <asm/system.h>
38 #include <asm/uaccess.h>
39 #include <asm/bootinfo.h>
42 * Called by kernel/ptrace.c when detaching..
44 * Make sure single step bits etc are not set.
46 void ptrace_disable(struct task_struct *child)
51 asmlinkage int sys_ptrace(long request, long pid, long addr, long data)
53 struct task_struct *child;
57 printk("ptrace(r=%d,pid=%d,addr=%08lx,data=%08lx)\n",
58 (int) request, (int) pid, (unsigned long) addr,
59 (unsigned long) data);
63 if (request == PTRACE_TRACEME) {
64 /* are we already being traced? */
65 if (current->ptrace & PT_PTRACED)
67 if ((ret = security_ptrace(current->parent, current)))
69 /* set the ptrace bit in the process flags. */
70 current->ptrace |= PT_PTRACED;
75 read_lock(&tasklist_lock);
76 child = find_task_by_pid(pid);
78 get_task_struct(child);
79 read_unlock(&tasklist_lock);
84 if (pid == 1) /* you may not mess with init */
87 if (request == PTRACE_ATTACH) {
88 ret = ptrace_attach(child);
92 ret = ptrace_check_attach(child, request == PTRACE_KILL);
97 /* when I and D space are separate, these will need to be fixed. */
98 case PTRACE_PEEKTEXT: /* read word at location addr. */
99 case PTRACE_PEEKDATA: {
103 copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
105 if (copied != sizeof(tmp))
107 ret = put_user(tmp,(unsigned long __user *) data);
111 /* Read the word at location addr in the USER area. */
112 case PTRACE_PEEKUSR: {
113 struct pt_regs *regs;
114 unsigned long tmp = 0;
116 regs = (struct pt_regs *) ((unsigned long) child->thread_info +
117 THREAD_SIZE - 32 - sizeof(struct pt_regs));
118 ret = 0; /* Default return value. */
122 tmp = regs->regs[addr];
124 case FPR_BASE ... FPR_BASE + 31:
125 if (tsk_used_math(child)) {
126 fpureg_t *fregs = get_fpu_regs(child);
130 * The odd registers are actually the high
131 * order bits of the values stored in the even
132 * registers - unless we're using r2k_switch.S.
135 tmp = (unsigned long) (fregs[((addr & ~1) - 32)] >> 32);
137 tmp = (unsigned long) (fregs[(addr - 32)] & 0xffffffff);
140 tmp = fregs[addr - FPR_BASE];
143 tmp = -1; /* FP not yet used */
150 tmp = regs->cp0_cause;
153 tmp = regs->cp0_badvaddr;
163 tmp = child->thread.fpu.hard.fcr31;
165 tmp = child->thread.fpu.soft.fcr31;
167 case FPC_EIR: { /* implementation / version register */
173 flags = read_c0_status();
175 __asm__ __volatile__("cfc1\t%0,$0": "=r" (tmp));
176 write_c0_status(flags);
184 ret = put_user(tmp, (unsigned long __user *) data);
188 /* when I and D space are separate, this will have to be fixed. */
189 case PTRACE_POKETEXT: /* write the word at location addr. */
190 case PTRACE_POKEDATA:
192 if (access_process_vm(child, addr, &data, sizeof(data), 1)
198 case PTRACE_POKEUSR: {
199 struct pt_regs *regs;
201 regs = (struct pt_regs *) ((unsigned long) child->thread_info +
202 THREAD_SIZE - 32 - sizeof(struct pt_regs));
206 regs->regs[addr] = data;
208 case FPR_BASE ... FPR_BASE + 31: {
209 fpureg_t *fregs = get_fpu_regs(child);
211 if (!tsk_used_math(child)) {
212 /* FP not yet used */
213 memset(&child->thread.fpu.hard, ~0,
214 sizeof(child->thread.fpu.hard));
215 child->thread.fpu.hard.fcr31 = 0;
219 * The odd registers are actually the high order bits
220 * of the values stored in the even registers - unless
221 * we're using r2k_switch.S.
224 fregs[(addr & ~1) - FPR_BASE] &= 0xffffffff;
225 fregs[(addr & ~1) - FPR_BASE] |= ((unsigned long long) data) << 32;
227 fregs[addr - FPR_BASE] &= ~0xffffffffLL;
228 fregs[addr - FPR_BASE] |= data;
232 fregs[addr - FPR_BASE] = data;
237 regs->cp0_epc = data;
247 child->thread.fpu.hard.fcr31 = data;
249 child->thread.fpu.soft.fcr31 = data;
252 /* The rest are not allowed. */
259 case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
260 case PTRACE_CONT: { /* restart after signal. */
262 if (!valid_signal(data))
264 if (request == PTRACE_SYSCALL) {
265 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
268 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
270 child->exit_code = data;
271 wake_up_process(child);
277 * make the child exit. Best I can do is send it a sigkill.
278 * perhaps it should be put in the status that it wants to
283 if (child->exit_state == EXIT_ZOMBIE) /* already dead */
285 child->exit_code = SIGKILL;
286 wake_up_process(child);
289 case PTRACE_DETACH: /* detach a process that was attached. */
290 ret = ptrace_detach(child, data);
293 case PTRACE_GET_THREAD_AREA:
294 ret = put_user(child->thread_info->tp_value,
295 (unsigned long __user *) data);
299 ret = ptrace_request(child, request, addr, data);
304 put_task_struct(child);
310 static inline int audit_arch(void)
314 arch |= __AUDIT_ARCH_64BIT;
316 #if defined(__LITTLE_ENDIAN)
317 arch |= __AUDIT_ARCH_LE;
323 * Notification of system call entry/exit
324 * - triggered by current->work.syscall_trace
326 asmlinkage void do_syscall_trace(struct pt_regs *regs, int entryexit)
328 if (unlikely(current->audit_context) && entryexit)
329 audit_syscall_exit(current, AUDITSC_RESULT(regs->regs[2]),
332 if (!(current->ptrace & PT_PTRACED))
334 if (!test_thread_flag(TIF_SYSCALL_TRACE))
337 /* The 0x80 provides a way for the tracing parent to distinguish
338 between a syscall stop and SIGTRAP delivery */
339 ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD) ?
343 * this isn't the same as continuing with a signal, but it will do
344 * for normal use. strace only continues with a signal if the
345 * stopping signal is not SIGTRAP. -brl
347 if (current->exit_code) {
348 send_sig(current->exit_code, current, 1);
349 current->exit_code = 0;
352 if (unlikely(current->audit_context) && !entryexit)
353 audit_syscall_entry(current, audit_arch(), regs->regs[2],
354 regs->regs[4], regs->regs[5],
355 regs->regs[6], regs->regs[7]);