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/compiler.h>
18 #include <linux/compat.h>
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
22 #include <linux/errno.h>
23 #include <linux/ptrace.h>
24 #include <linux/smp.h>
25 #include <linux/smp_lock.h>
26 #include <linux/user.h>
27 #include <linux/security.h>
32 #include <asm/mipsregs.h>
33 #include <asm/mipsmtregs.h>
34 #include <asm/pgtable.h>
36 #include <asm/system.h>
37 #include <asm/uaccess.h>
38 #include <asm/bootinfo.h>
41 * Tracing a 32-bit process with a 64-bit strace and vice versa will not
42 * work. I don't know how to fix this.
44 long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
45 compat_ulong_t caddr, compat_ulong_t cdata)
54 * Read 4 bytes of the other process' storage
55 * data is a pointer specifying where the user wants the
57 * addr is a pointer in the user's storage that contains an 8 byte
58 * address in the other process of the 4 bytes that is to be read
59 * (this is run in a 32-bit process looking at a 64-bit process)
60 * when I and D space are separate, these will need to be fixed.
62 case PTRACE_PEEKTEXT_3264:
63 case PTRACE_PEEKDATA_3264: {
66 u32 __user * addrOthers;
70 /* Get the addr in the other process that we want to read */
71 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
74 copied = access_process_vm(child, (u64)addrOthers, &tmp,
76 if (copied != sizeof(tmp))
78 ret = put_user(tmp, (u32 __user *) (unsigned long) data);
82 /* Read the word at location addr in the USER area. */
83 case PTRACE_PEEKUSR: {
87 regs = task_pt_regs(child);
88 ret = 0; /* Default return value. */
92 tmp = regs->regs[addr];
94 case FPR_BASE ... FPR_BASE + 31:
95 if (tsk_used_math(child)) {
96 fpureg_t *fregs = get_fpu_regs(child);
99 * The odd registers are actually the high
100 * order bits of the values stored in the even
101 * registers - unless we're using r2k_switch.S.
104 tmp = (unsigned long) (fregs[((addr & ~1) - 32)] >> 32);
106 tmp = (unsigned long) (fregs[(addr - 32)] & 0xffffffff);
108 tmp = -1; /* FP not yet used */
115 tmp = regs->cp0_cause;
118 tmp = regs->cp0_badvaddr;
127 tmp = child->thread.fpu.fcr31;
129 case FPC_EIR: { /* implementation / version register */
131 #ifdef CONFIG_MIPS_MT_SMTC
132 unsigned int irqflags;
133 unsigned int mtflags;
134 #endif /* CONFIG_MIPS_MT_SMTC */
143 #ifdef CONFIG_MIPS_MT_SMTC
144 /* Read-modify-write of Status must be atomic */
145 local_irq_save(irqflags);
147 #endif /* CONFIG_MIPS_MT_SMTC */
149 if (cpu_has_mipsmt) {
150 unsigned int vpflags = dvpe();
151 flags = read_c0_status();
153 __asm__ __volatile__("cfc1\t%0,$0": "=r" (tmp));
154 write_c0_status(flags);
157 flags = read_c0_status();
159 __asm__ __volatile__("cfc1\t%0,$0": "=r" (tmp));
160 write_c0_status(flags);
162 #ifdef CONFIG_MIPS_MT_SMTC
164 local_irq_restore(irqflags);
165 #endif /* CONFIG_MIPS_MT_SMTC */
169 case DSP_BASE ... DSP_BASE + 5: {
177 dregs = __get_dsp_regs(child);
178 tmp = (unsigned long) (dregs[addr - DSP_BASE]);
187 tmp = child->thread.dsp.dspcontrol;
194 ret = put_user(tmp, (unsigned __user *) (unsigned long) data);
199 * Write 4 bytes into the other process' storage
200 * data is the 4 bytes that the user wants written
201 * addr is a pointer in the user's storage that contains an
202 * 8 byte address in the other process where the 4 bytes
203 * that is to be written
204 * (this is run in a 32-bit process looking at a 64-bit process)
205 * when I and D space are separate, these will need to be fixed.
207 case PTRACE_POKETEXT_3264:
208 case PTRACE_POKEDATA_3264: {
209 u32 __user * addrOthers;
211 /* Get the addr in the other process that we want to write into */
213 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
216 if (access_process_vm(child, (u64)addrOthers, &data,
217 sizeof(data), 1) == sizeof(data))
223 case PTRACE_POKEUSR: {
224 struct pt_regs *regs;
226 regs = task_pt_regs(child);
230 regs->regs[addr] = data;
232 case FPR_BASE ... FPR_BASE + 31: {
233 fpureg_t *fregs = get_fpu_regs(child);
235 if (!tsk_used_math(child)) {
236 /* FP not yet used */
237 memset(&child->thread.fpu, ~0,
238 sizeof(child->thread.fpu));
239 child->thread.fpu.fcr31 = 0;
242 * The odd registers are actually the high order bits
243 * of the values stored in the even registers - unless
244 * we're using r2k_switch.S.
247 fregs[(addr & ~1) - FPR_BASE] &= 0xffffffff;
248 fregs[(addr & ~1) - FPR_BASE] |= ((unsigned long long) data) << 32;
250 fregs[addr - FPR_BASE] &= ~0xffffffffLL;
251 /* Must cast, lest sign extension fill upper
253 fregs[addr - FPR_BASE] |= (unsigned int)data;
258 regs->cp0_epc = data;
267 child->thread.fpu.fcr31 = data;
269 case DSP_BASE ... DSP_BASE + 5: {
277 dregs = __get_dsp_regs(child);
278 dregs[addr - DSP_BASE] = data;
286 child->thread.dsp.dspcontrol = data;
289 /* The rest are not allowed. */
297 ret = ptrace_getregs(child, (__s64 __user *) (__u64) data);
301 ret = ptrace_setregs(child, (__s64 __user *) (__u64) data);
304 case PTRACE_GETFPREGS:
305 ret = ptrace_getfpregs(child, (__u32 __user *) (__u64) data);
308 case PTRACE_SETFPREGS:
309 ret = ptrace_setfpregs(child, (__u32 __user *) (__u64) data);
312 case PTRACE_GET_THREAD_AREA:
313 ret = put_user(task_thread_info(child)->tp_value,
314 (unsigned int __user *) (unsigned long) data);
317 case PTRACE_GET_THREAD_AREA_3264:
318 ret = put_user(task_thread_info(child)->tp_value,
319 (unsigned long __user *) (unsigned long) data);
322 case PTRACE_GET_WATCH_REGS:
323 ret = ptrace_get_watch_regs(child,
324 (struct pt_watch_regs __user *) (unsigned long) addr);
327 case PTRACE_SET_WATCH_REGS:
328 ret = ptrace_set_watch_regs(child,
329 (struct pt_watch_regs __user *) (unsigned long) addr);
333 ret = compat_ptrace_request(child, request, addr, data);