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
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/user.h>
26 #include <linux/security.h>
31 #include <asm/mipsregs.h>
32 #include <asm/mipsmtregs.h>
33 #include <asm/pgtable.h>
35 #include <asm/system.h>
36 #include <asm/uaccess.h>
37 #include <asm/bootinfo.h>
40 * Tracing a 32-bit process with a 64-bit strace and vice versa will not
41 * work. I don't know how to fix this.
43 long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
44 compat_ulong_t caddr, compat_ulong_t cdata)
53 * Read 4 bytes of the other process' storage
54 * data is a pointer specifying where the user wants the
56 * addr is a pointer in the user's storage that contains an 8 byte
57 * address in the other process of the 4 bytes that is to be read
58 * (this is run in a 32-bit process looking at a 64-bit process)
59 * when I and D space are separate, these will need to be fixed.
61 case PTRACE_PEEKTEXT_3264:
62 case PTRACE_PEEKDATA_3264: {
65 u32 __user * addrOthers;
69 /* Get the addr in the other process that we want to read */
70 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
73 copied = access_process_vm(child, (u64)addrOthers, &tmp,
75 if (copied != sizeof(tmp))
77 ret = put_user(tmp, (u32 __user *) (unsigned long) data);
81 /* Read the word at location addr in the USER area. */
82 case PTRACE_PEEKUSR: {
86 regs = task_pt_regs(child);
87 ret = 0; /* Default return value. */
91 tmp = regs->regs[addr];
93 case FPR_BASE ... FPR_BASE + 31:
94 if (tsk_used_math(child)) {
95 fpureg_t *fregs = get_fpu_regs(child);
98 * The odd registers are actually the high
99 * order bits of the values stored in the even
100 * registers - unless we're using r2k_switch.S.
103 tmp = (unsigned long) (fregs[((addr & ~1) - 32)] >> 32);
105 tmp = (unsigned long) (fregs[(addr - 32)] & 0xffffffff);
107 tmp = -1; /* FP not yet used */
114 tmp = regs->cp0_cause;
117 tmp = regs->cp0_badvaddr;
126 tmp = child->thread.fpu.fcr31;
128 case FPC_EIR: { /* implementation / version register */
130 #ifdef CONFIG_MIPS_MT_SMTC
131 unsigned int irqflags;
132 unsigned int mtflags;
133 #endif /* CONFIG_MIPS_MT_SMTC */
142 #ifdef CONFIG_MIPS_MT_SMTC
143 /* Read-modify-write of Status must be atomic */
144 local_irq_save(irqflags);
146 #endif /* CONFIG_MIPS_MT_SMTC */
148 if (cpu_has_mipsmt) {
149 unsigned int vpflags = dvpe();
150 flags = read_c0_status();
152 __asm__ __volatile__("cfc1\t%0,$0": "=r" (tmp));
153 write_c0_status(flags);
156 flags = read_c0_status();
158 __asm__ __volatile__("cfc1\t%0,$0": "=r" (tmp));
159 write_c0_status(flags);
161 #ifdef CONFIG_MIPS_MT_SMTC
163 local_irq_restore(irqflags);
164 #endif /* CONFIG_MIPS_MT_SMTC */
168 case DSP_BASE ... DSP_BASE + 5: {
176 dregs = __get_dsp_regs(child);
177 tmp = (unsigned long) (dregs[addr - DSP_BASE]);
186 tmp = child->thread.dsp.dspcontrol;
193 ret = put_user(tmp, (unsigned __user *) (unsigned long) data);
198 * Write 4 bytes into the other process' storage
199 * data is the 4 bytes that the user wants written
200 * addr is a pointer in the user's storage that contains an
201 * 8 byte address in the other process where the 4 bytes
202 * that is to be written
203 * (this is run in a 32-bit process looking at a 64-bit process)
204 * when I and D space are separate, these will need to be fixed.
206 case PTRACE_POKETEXT_3264:
207 case PTRACE_POKEDATA_3264: {
208 u32 __user * addrOthers;
210 /* Get the addr in the other process that we want to write into */
212 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
215 if (access_process_vm(child, (u64)addrOthers, &data,
216 sizeof(data), 1) == sizeof(data))
222 case PTRACE_POKEUSR: {
223 struct pt_regs *regs;
225 regs = task_pt_regs(child);
229 regs->regs[addr] = data;
231 case FPR_BASE ... FPR_BASE + 31: {
232 fpureg_t *fregs = get_fpu_regs(child);
234 if (!tsk_used_math(child)) {
235 /* FP not yet used */
236 memset(&child->thread.fpu, ~0,
237 sizeof(child->thread.fpu));
238 child->thread.fpu.fcr31 = 0;
241 * The odd registers are actually the high order bits
242 * of the values stored in the even registers - unless
243 * we're using r2k_switch.S.
246 fregs[(addr & ~1) - FPR_BASE] &= 0xffffffff;
247 fregs[(addr & ~1) - FPR_BASE] |= ((unsigned long long) data) << 32;
249 fregs[addr - FPR_BASE] &= ~0xffffffffLL;
250 /* Must cast, lest sign extension fill upper
252 fregs[addr - FPR_BASE] |= (unsigned int)data;
257 regs->cp0_epc = data;
266 child->thread.fpu.fcr31 = data;
268 case DSP_BASE ... DSP_BASE + 5: {
276 dregs = __get_dsp_regs(child);
277 dregs[addr - DSP_BASE] = data;
285 child->thread.dsp.dspcontrol = data;
288 /* The rest are not allowed. */
296 ret = ptrace_getregs(child, (__s64 __user *) (__u64) data);
300 ret = ptrace_setregs(child, (__s64 __user *) (__u64) data);
303 case PTRACE_GETFPREGS:
304 ret = ptrace_getfpregs(child, (__u32 __user *) (__u64) data);
307 case PTRACE_SETFPREGS:
308 ret = ptrace_setfpregs(child, (__u32 __user *) (__u64) data);
311 case PTRACE_GET_THREAD_AREA:
312 ret = put_user(task_thread_info(child)->tp_value,
313 (unsigned int __user *) (unsigned long) data);
316 case PTRACE_GET_THREAD_AREA_3264:
317 ret = put_user(task_thread_info(child)->tp_value,
318 (unsigned long __user *) (unsigned long) data);
321 case PTRACE_GET_WATCH_REGS:
322 ret = ptrace_get_watch_regs(child,
323 (struct pt_watch_regs __user *) (unsigned long) addr);
326 case PTRACE_SET_WATCH_REGS:
327 ret = ptrace_set_watch_regs(child,
328 (struct pt_watch_regs __user *) (unsigned long) addr);
332 ret = compat_ptrace_request(child, request, addr, data);