blob: 32644b4a07144979be8d1466ad639787abcf795d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
4 * for more details.
5 *
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
13 *
14 * At this time Linux/MIPS64 only supports syscall tracing, even for 32-bit
15 * binaries.
16 */
17#include <linux/compiler.h>
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +020018#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kernel.h>
20#include <linux/sched.h>
21#include <linux/mm.h>
22#include <linux/errno.h>
23#include <linux/ptrace.h>
24#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/user.h>
26#include <linux/security.h>
27
28#include <asm/cpu.h>
Ralf Baechlee50c0a82005-05-31 11:49:19 +000029#include <asm/dsp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/fpu.h>
31#include <asm/mipsregs.h>
Ralf Baechle101b3532005-10-06 17:39:32 +010032#include <asm/mipsmtregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/pgtable.h>
34#include <asm/page.h>
35#include <asm/system.h>
36#include <asm/uaccess.h>
37#include <asm/bootinfo.h>
38
39/*
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.
42 */
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +020043long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
44 compat_ulong_t caddr, compat_ulong_t cdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +020046 int addr = caddr;
47 int data = cdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int ret;
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 switch (request) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -040052 /*
53 * Read 4 bytes of the other process' storage
54 * data is a pointer specifying where the user wants the
55 * 4 bytes copied into
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.
60 */
61 case PTRACE_PEEKTEXT_3264:
62 case PTRACE_PEEKDATA_3264: {
63 u32 tmp;
64 int copied;
65 u32 __user * addrOthers;
66
67 ret = -EIO;
68
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)
71 break;
72
73 copied = access_process_vm(child, (u64)addrOthers, &tmp,
74 sizeof(tmp), 0);
75 if (copied != sizeof(tmp))
76 break;
77 ret = put_user(tmp, (u32 __user *) (unsigned long) data);
78 break;
79 }
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /* Read the word at location addr in the USER area. */
82 case PTRACE_PEEKUSR: {
83 struct pt_regs *regs;
84 unsigned int tmp;
85
Al Viro40bc9c62006-01-12 01:06:07 -080086 regs = task_pt_regs(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 ret = 0; /* Default return value. */
88
89 switch (addr) {
90 case 0 ... 31:
91 tmp = regs->regs[addr];
92 break;
93 case FPR_BASE ... FPR_BASE + 31:
94 if (tsk_used_math(child)) {
95 fpureg_t *fregs = get_fpu_regs(child);
96
97 /*
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.
101 */
102 if (addr & 1)
103 tmp = (unsigned long) (fregs[((addr & ~1) - 32)] >> 32);
104 else
105 tmp = (unsigned long) (fregs[(addr - 32)] & 0xffffffff);
106 } else {
107 tmp = -1; /* FP not yet used */
108 }
109 break;
110 case PC:
111 tmp = regs->cp0_epc;
112 break;
113 case CAUSE:
114 tmp = regs->cp0_cause;
115 break;
116 case BADVADDR:
117 tmp = regs->cp0_badvaddr;
118 break;
119 case MMHI:
120 tmp = regs->hi;
121 break;
122 case MMLO:
123 tmp = regs->lo;
124 break;
125 case FPC_CSR:
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900126 tmp = child->thread.fpu.fcr31;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 break;
128 case FPC_EIR: { /* implementation / version register */
129 unsigned int flags;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100130#ifdef CONFIG_MIPS_MT_SMTC
131 unsigned int irqflags;
132 unsigned int mtflags;
133#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Atsushi Nemotoe04582b2006-10-09 00:10:01 +0900135 preempt_disable();
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900136 if (!cpu_has_fpu) {
Atsushi Nemotoe04582b2006-10-09 00:10:01 +0900137 preempt_enable();
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900138 tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 break;
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Ralf Baechle41c594a2006-04-05 09:45:45 +0100142#ifdef CONFIG_MIPS_MT_SMTC
143 /* Read-modify-write of Status must be atomic */
144 local_irq_save(irqflags);
145 mtflags = dmt();
146#endif /* CONFIG_MIPS_MT_SMTC */
147
Ralf Baechle101b3532005-10-06 17:39:32 +0100148 if (cpu_has_mipsmt) {
149 unsigned int vpflags = dvpe();
150 flags = read_c0_status();
151 __enable_fpu();
152 __asm__ __volatile__("cfc1\t%0,$0": "=r" (tmp));
153 write_c0_status(flags);
154 evpe(vpflags);
155 } else {
156 flags = read_c0_status();
157 __enable_fpu();
158 __asm__ __volatile__("cfc1\t%0,$0": "=r" (tmp));
159 write_c0_status(flags);
160 }
Ralf Baechle41c594a2006-04-05 09:45:45 +0100161#ifdef CONFIG_MIPS_MT_SMTC
162 emt(mtflags);
163 local_irq_restore(irqflags);
164#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechle101b3532005-10-06 17:39:32 +0100165 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 break;
167 }
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900168 case DSP_BASE ... DSP_BASE + 5: {
169 dspreg_t *dregs;
170
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000171 if (!cpu_has_dsp) {
172 tmp = 0;
173 ret = -EIO;
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +0200174 goto out;
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000175 }
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900176 dregs = __get_dsp_regs(child);
Ralf Baechle6c355852005-12-05 13:47:25 +0000177 tmp = (unsigned long) (dregs[addr - DSP_BASE]);
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000178 break;
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900179 }
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000180 case DSP_CONTROL:
181 if (!cpu_has_dsp) {
182 tmp = 0;
183 ret = -EIO;
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +0200184 goto out;
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000185 }
186 tmp = child->thread.dsp.dspcontrol;
187 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 default:
189 tmp = 0;
190 ret = -EIO;
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +0200191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900193 ret = put_user(tmp, (unsigned __user *) (unsigned long) data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195 }
196
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400197 /*
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.
205 */
206 case PTRACE_POKETEXT_3264:
207 case PTRACE_POKEDATA_3264: {
208 u32 __user * addrOthers;
209
210 /* Get the addr in the other process that we want to write into */
211 ret = -EIO;
212 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
213 break;
214 ret = 0;
215 if (access_process_vm(child, (u64)addrOthers, &data,
216 sizeof(data), 1) == sizeof(data))
217 break;
218 ret = -EIO;
219 break;
220 }
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 case PTRACE_POKEUSR: {
223 struct pt_regs *regs;
224 ret = 0;
Al Viro40bc9c62006-01-12 01:06:07 -0800225 regs = task_pt_regs(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 switch (addr) {
228 case 0 ... 31:
229 regs->regs[addr] = data;
230 break;
231 case FPR_BASE ... FPR_BASE + 31: {
232 fpureg_t *fregs = get_fpu_regs(child);
233
234 if (!tsk_used_math(child)) {
235 /* FP not yet used */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900236 memset(&child->thread.fpu, ~0,
237 sizeof(child->thread.fpu));
238 child->thread.fpu.fcr31 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 /*
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.
244 */
245 if (addr & 1) {
246 fregs[(addr & ~1) - FPR_BASE] &= 0xffffffff;
247 fregs[(addr & ~1) - FPR_BASE] |= ((unsigned long long) data) << 32;
248 } else {
249 fregs[addr - FPR_BASE] &= ~0xffffffffLL;
250 /* Must cast, lest sign extension fill upper
251 bits! */
252 fregs[addr - FPR_BASE] |= (unsigned int)data;
253 }
254 break;
255 }
256 case PC:
257 regs->cp0_epc = data;
258 break;
259 case MMHI:
260 regs->hi = data;
261 break;
262 case MMLO:
263 regs->lo = data;
264 break;
265 case FPC_CSR:
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900266 child->thread.fpu.fcr31 = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 break;
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900268 case DSP_BASE ... DSP_BASE + 5: {
269 dspreg_t *dregs;
270
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000271 if (!cpu_has_dsp) {
272 ret = -EIO;
273 break;
274 }
275
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900276 dregs = __get_dsp_regs(child);
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000277 dregs[addr - DSP_BASE] = data;
278 break;
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900279 }
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000280 case DSP_CONTROL:
281 if (!cpu_has_dsp) {
282 ret = -EIO;
283 break;
284 }
285 child->thread.dsp.dspcontrol = data;
286 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 default:
288 /* The rest are not allowed. */
289 ret = -EIO;
290 break;
291 }
292 break;
293 }
294
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400295 case PTRACE_GETREGS:
Atsushi Nemoto62b14c22007-10-26 00:53:02 +0900296 ret = ptrace_getregs(child, (__s64 __user *) (__u64) data);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400297 break;
298
299 case PTRACE_SETREGS:
Atsushi Nemoto62b14c22007-10-26 00:53:02 +0900300 ret = ptrace_setregs(child, (__s64 __user *) (__u64) data);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400301 break;
302
303 case PTRACE_GETFPREGS:
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100304 ret = ptrace_getfpregs(child, (__u32 __user *) (__u64) data);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400305 break;
306
307 case PTRACE_SETFPREGS:
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100308 ret = ptrace_setfpregs(child, (__u32 __user *) (__u64) data);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400309 break;
310
Ralf Baechle3c370262005-04-13 17:43:59 +0000311 case PTRACE_GET_THREAD_AREA:
Al Virodc8f6022006-01-12 01:06:07 -0800312 ret = put_user(task_thread_info(child)->tp_value,
Ralf Baechle3c370262005-04-13 17:43:59 +0000313 (unsigned int __user *) (unsigned long) data);
314 break;
315
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400316 case PTRACE_GET_THREAD_AREA_3264:
Al Virodc8f6022006-01-12 01:06:07 -0800317 ret = put_user(task_thread_info(child)->tp_value,
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400318 (unsigned long __user *) (unsigned long) data);
319 break;
320
David Daney0926bf92008-09-23 00:11:26 -0700321 case PTRACE_GET_WATCH_REGS:
322 ret = ptrace_get_watch_regs(child,
323 (struct pt_watch_regs __user *) (unsigned long) addr);
324 break;
325
326 case PTRACE_SET_WATCH_REGS:
327 ret = ptrace_set_watch_regs(child,
328 (struct pt_watch_regs __user *) (unsigned long) addr);
329 break;
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 default:
Anirban Sinha797c3f32008-11-13 11:50:12 -0800332 ret = compat_ptrace_request(child, request, addr, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 break;
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return ret;
337}