blob: 2525eca9c9629dc6089e449f32f7805b0078cb38 [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>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010021#include <linux/sched/task_stack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mm.h>
23#include <linux/errno.h>
24#include <linux/ptrace.h>
25#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#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>
Alex Smith60be9392014-07-23 14:40:15 +010035#include <asm/reg.h>
James Hogande8cd0d2017-08-11 21:56:52 +010036#include <asm/syscall.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080037#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/bootinfo.h>
39
40/*
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.
43 */
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +020044long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
45 compat_ulong_t caddr, compat_ulong_t cdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +020047 int addr = caddr;
48 int data = cdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 int ret;
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 switch (request) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -040053 /*
54 * Read 4 bytes of the other process' storage
55 * data is a pointer specifying where the user wants the
56 * 4 bytes copied into
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.
61 */
62 case PTRACE_PEEKTEXT_3264:
63 case PTRACE_PEEKDATA_3264: {
64 u32 tmp;
65 int copied;
66 u32 __user * addrOthers;
67
68 ret = -EIO;
69
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)
72 break;
73
Eric W. Biederman84d77d32016-11-22 12:06:50 -060074 copied = ptrace_access_vm(child, (u64)addrOthers, &tmp,
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +010075 sizeof(tmp), FOLL_FORCE);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -040076 if (copied != sizeof(tmp))
77 break;
78 ret = put_user(tmp, (u32 __user *) (unsigned long) data);
79 break;
80 }
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 /* Read the word at location addr in the USER area. */
83 case PTRACE_PEEKUSR: {
84 struct pt_regs *regs;
85 unsigned int tmp;
86
Al Viro40bc9c62006-01-12 01:06:07 -080087 regs = task_pt_regs(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 ret = 0; /* Default return value. */
89
90 switch (addr) {
91 case 0 ... 31:
92 tmp = regs->regs[addr];
93 break;
Paul Burton6c797592018-11-07 23:14:07 +000094#ifdef CONFIG_MIPS_FP_SUPPORT
95 case FPR_BASE ... FPR_BASE + 31: {
96 union fpureg *fregs;
97
Paul Burton597ce172013-11-22 13:12:07 +000098 if (!tsk_used_math(child)) {
99 /* FP not yet used */
100 tmp = -1;
101 break;
102 }
103 fregs = get_fpu_regs(child);
Maciej W. Rozycki9a3a92c2018-05-14 16:49:43 +0100104 if (test_tsk_thread_flag(child, TIF_32BIT_FPREGS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /*
106 * The odd registers are actually the high
107 * order bits of the values stored in the even
Maciej W. Rozyckid1157b12018-05-15 23:03:09 +0100108 * registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 */
Paul Burtonbbd426f2014-02-13 11:26:41 +0000110 tmp = get_fpr32(&fregs[(addr & ~1) - FPR_BASE],
111 addr & 1);
Paul Burton597ce172013-11-22 13:12:07 +0000112 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
Maciej W. Rozyckic7e81462018-05-16 16:39:58 +0100114 tmp = get_fpr64(&fregs[addr - FPR_BASE], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 break;
Paul Burton6c797592018-11-07 23:14:07 +0000116 }
117 case FPC_CSR:
118 tmp = child->thread.fpu.fcr31;
119 break;
120 case FPC_EIR:
121 /* implementation / version register */
122 tmp = boot_cpu_data.fpu_id;
123 break;
124#endif /* CONFIG_MIPS_FP_SUPPORT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 case PC:
126 tmp = regs->cp0_epc;
127 break;
128 case CAUSE:
129 tmp = regs->cp0_cause;
130 break;
131 case BADVADDR:
132 tmp = regs->cp0_badvaddr;
133 break;
134 case MMHI:
135 tmp = regs->hi;
136 break;
137 case MMLO:
138 tmp = regs->lo;
139 break;
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900140 case DSP_BASE ... DSP_BASE + 5: {
141 dspreg_t *dregs;
142
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000143 if (!cpu_has_dsp) {
144 tmp = 0;
145 ret = -EIO;
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +0200146 goto out;
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000147 }
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900148 dregs = __get_dsp_regs(child);
Maciej W. Rozyckif5958b42018-05-15 23:33:26 +0100149 tmp = dregs[addr - DSP_BASE];
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000150 break;
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900151 }
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000152 case DSP_CONTROL:
153 if (!cpu_has_dsp) {
154 tmp = 0;
155 ret = -EIO;
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +0200156 goto out;
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000157 }
158 tmp = child->thread.dsp.dspcontrol;
159 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 default:
161 tmp = 0;
162 ret = -EIO;
Thomas Bogendoerfer5d9a76c2008-08-17 16:49:25 +0200163 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900165 ret = put_user(tmp, (unsigned __user *) (unsigned long) data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 break;
167 }
168
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400169 /*
170 * Write 4 bytes into the other process' storage
171 * data is the 4 bytes that the user wants written
172 * addr is a pointer in the user's storage that contains an
173 * 8 byte address in the other process where the 4 bytes
174 * that is to be written
175 * (this is run in a 32-bit process looking at a 64-bit process)
176 * when I and D space are separate, these will need to be fixed.
177 */
178 case PTRACE_POKETEXT_3264:
179 case PTRACE_POKEDATA_3264: {
180 u32 __user * addrOthers;
181
182 /* Get the addr in the other process that we want to write into */
183 ret = -EIO;
184 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
185 break;
186 ret = 0;
Eric W. Biederman84d77d32016-11-22 12:06:50 -0600187 if (ptrace_access_vm(child, (u64)addrOthers, &data,
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +0100188 sizeof(data),
189 FOLL_FORCE | FOLL_WRITE) == sizeof(data))
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400190 break;
191 ret = -EIO;
192 break;
193 }
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 case PTRACE_POKEUSR: {
196 struct pt_regs *regs;
197 ret = 0;
Al Viro40bc9c62006-01-12 01:06:07 -0800198 regs = task_pt_regs(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 switch (addr) {
201 case 0 ... 31:
202 regs->regs[addr] = data;
James Hogande8cd0d2017-08-11 21:56:52 +0100203 /* System call number may have been changed */
204 if (addr == 2)
205 mips_syscall_update_nr(child, regs);
206 else if (addr == 4 &&
207 mips_syscall_is_indirect(child, regs))
208 mips_syscall_update_nr(child, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 break;
Paul Burton6c797592018-11-07 23:14:07 +0000210#ifdef CONFIG_MIPS_FP_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 case FPR_BASE ... FPR_BASE + 31: {
Paul Burtonbbd426f2014-02-13 11:26:41 +0000212 union fpureg *fregs = get_fpu_regs(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 if (!tsk_used_math(child)) {
215 /* FP not yet used */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900216 memset(&child->thread.fpu, ~0,
217 sizeof(child->thread.fpu));
218 child->thread.fpu.fcr31 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Maciej W. Rozycki9a3a92c2018-05-14 16:49:43 +0100220 if (test_tsk_thread_flag(child, TIF_32BIT_FPREGS)) {
Paul Burton597ce172013-11-22 13:12:07 +0000221 /*
222 * The odd registers are actually the high
223 * order bits of the values stored in the even
Maciej W. Rozyckid1157b12018-05-15 23:03:09 +0100224 * registers.
Paul Burton597ce172013-11-22 13:12:07 +0000225 */
Paul Burtonbbd426f2014-02-13 11:26:41 +0000226 set_fpr32(&fregs[(addr & ~1) - FPR_BASE],
227 addr & 1, data);
Paul Burton597ce172013-11-22 13:12:07 +0000228 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
Paul Burtonbbd426f2014-02-13 11:26:41 +0000230 set_fpr64(&fregs[addr - FPR_BASE], 0, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
232 }
Paul Burton6c797592018-11-07 23:14:07 +0000233 case FPC_CSR:
234 child->thread.fpu.fcr31 = data;
235 break;
236#endif /* CONFIG_MIPS_FP_SUPPORT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 case PC:
238 regs->cp0_epc = data;
239 break;
240 case MMHI:
241 regs->hi = data;
242 break;
243 case MMLO:
244 regs->lo = data;
245 break;
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900246 case DSP_BASE ... DSP_BASE + 5: {
247 dspreg_t *dregs;
248
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000249 if (!cpu_has_dsp) {
250 ret = -EIO;
251 break;
252 }
253
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900254 dregs = __get_dsp_regs(child);
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000255 dregs[addr - DSP_BASE] = data;
256 break;
Atsushi Nemoto3055acb2006-01-29 22:34:32 +0900257 }
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000258 case DSP_CONTROL:
259 if (!cpu_has_dsp) {
260 ret = -EIO;
261 break;
262 }
263 child->thread.dsp.dspcontrol = data;
264 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 default:
266 /* The rest are not allowed. */
267 ret = -EIO;
268 break;
269 }
270 break;
271 }
272
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400273 case PTRACE_GETREGS:
Alex Smitha79ebea2014-07-23 14:40:13 +0100274 ret = ptrace_getregs(child,
275 (struct user_pt_regs __user *) (__u64) data);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400276 break;
277
278 case PTRACE_SETREGS:
Alex Smitha79ebea2014-07-23 14:40:13 +0100279 ret = ptrace_setregs(child,
280 (struct user_pt_regs __user *) (__u64) data);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400281 break;
282
Paul Burton6c797592018-11-07 23:14:07 +0000283#ifdef CONFIG_MIPS_FP_SUPPORT
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400284 case PTRACE_GETFPREGS:
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100285 ret = ptrace_getfpregs(child, (__u32 __user *) (__u64) data);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400286 break;
287
288 case PTRACE_SETFPREGS:
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100289 ret = ptrace_setfpregs(child, (__u32 __user *) (__u64) data);
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400290 break;
Paul Burton6c797592018-11-07 23:14:07 +0000291#endif
Ralf Baechle3c370262005-04-13 17:43:59 +0000292 case PTRACE_GET_THREAD_AREA:
Al Virodc8f6022006-01-12 01:06:07 -0800293 ret = put_user(task_thread_info(child)->tp_value,
Ralf Baechle3c370262005-04-13 17:43:59 +0000294 (unsigned int __user *) (unsigned long) data);
295 break;
296
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400297 case PTRACE_GET_THREAD_AREA_3264:
Al Virodc8f6022006-01-12 01:06:07 -0800298 ret = put_user(task_thread_info(child)->tp_value,
Daniel Jacobowitzea3d7102005-09-28 18:11:15 -0400299 (unsigned long __user *) (unsigned long) data);
300 break;
301
David Daney0926bf92008-09-23 00:11:26 -0700302 case PTRACE_GET_WATCH_REGS:
303 ret = ptrace_get_watch_regs(child,
304 (struct pt_watch_regs __user *) (unsigned long) addr);
305 break;
306
307 case PTRACE_SET_WATCH_REGS:
308 ret = ptrace_set_watch_regs(child,
309 (struct pt_watch_regs __user *) (unsigned long) addr);
310 break;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 default:
Anirban Sinha797c3f32008-11-13 11:50:12 -0800313 ret = compat_ptrace_request(child, request, addr, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 break;
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return ret;
318}