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>
21 #include <linux/sched/task_stack.h>
23 #include <linux/errno.h>
24 #include <linux/ptrace.h>
25 #include <linux/smp.h>
26 #include <linux/security.h>
31 #include <asm/mipsregs.h>
32 #include <asm/mipsmtregs.h>
33 #include <asm/pgtable.h>
36 #include <asm/syscall.h>
37 #include <linux/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 = ptrace_access_vm(child, (u64)addrOthers, &tmp,
75 sizeof(tmp), FOLL_FORCE);
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 #ifdef CONFIG_MIPS_FP_SUPPORT
95 case FPR_BASE ... FPR_BASE + 31: {
98 if (!tsk_used_math(child)) {
103 fregs = get_fpu_regs(child);
104 if (test_tsk_thread_flag(child, TIF_32BIT_FPREGS)) {
106 * The odd registers are actually the high
107 * order bits of the values stored in the even
110 tmp = get_fpr32(&fregs[(addr & ~1) - FPR_BASE],
114 tmp = get_fpr64(&fregs[addr - FPR_BASE], 0);
118 tmp = child->thread.fpu.fcr31;
121 /* implementation / version register */
122 tmp = boot_cpu_data.fpu_id;
124 #endif /* CONFIG_MIPS_FP_SUPPORT */
129 tmp = regs->cp0_cause;
132 tmp = regs->cp0_badvaddr;
140 case DSP_BASE ... DSP_BASE + 5: {
148 dregs = __get_dsp_regs(child);
149 tmp = dregs[addr - DSP_BASE];
158 tmp = child->thread.dsp.dspcontrol;
165 ret = put_user(tmp, (unsigned __user *) (unsigned long) data);
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.
178 case PTRACE_POKETEXT_3264:
179 case PTRACE_POKEDATA_3264: {
180 u32 __user * addrOthers;
182 /* Get the addr in the other process that we want to write into */
184 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
187 if (ptrace_access_vm(child, (u64)addrOthers, &data,
189 FOLL_FORCE | FOLL_WRITE) == sizeof(data))
195 case PTRACE_POKEUSR: {
196 struct pt_regs *regs;
198 regs = task_pt_regs(child);
202 regs->regs[addr] = data;
203 /* System call number may have been changed */
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);
210 #ifdef CONFIG_MIPS_FP_SUPPORT
211 case FPR_BASE ... FPR_BASE + 31: {
212 union fpureg *fregs = get_fpu_regs(child);
214 if (!tsk_used_math(child)) {
215 /* FP not yet used */
216 memset(&child->thread.fpu, ~0,
217 sizeof(child->thread.fpu));
218 child->thread.fpu.fcr31 = 0;
220 if (test_tsk_thread_flag(child, TIF_32BIT_FPREGS)) {
222 * The odd registers are actually the high
223 * order bits of the values stored in the even
226 set_fpr32(&fregs[(addr & ~1) - FPR_BASE],
230 set_fpr64(&fregs[addr - FPR_BASE], 0, data);
234 child->thread.fpu.fcr31 = data;
236 #endif /* CONFIG_MIPS_FP_SUPPORT */
238 regs->cp0_epc = data;
246 case DSP_BASE ... DSP_BASE + 5: {
254 dregs = __get_dsp_regs(child);
255 dregs[addr - DSP_BASE] = data;
263 child->thread.dsp.dspcontrol = data;
266 /* The rest are not allowed. */
274 ret = ptrace_getregs(child,
275 (struct user_pt_regs __user *) (__u64) data);
279 ret = ptrace_setregs(child,
280 (struct user_pt_regs __user *) (__u64) data);
283 #ifdef CONFIG_MIPS_FP_SUPPORT
284 case PTRACE_GETFPREGS:
285 ret = ptrace_getfpregs(child, (__u32 __user *) (__u64) data);
288 case PTRACE_SETFPREGS:
289 ret = ptrace_setfpregs(child, (__u32 __user *) (__u64) data);
292 case PTRACE_GET_THREAD_AREA:
293 ret = put_user(task_thread_info(child)->tp_value,
294 (unsigned int __user *) (unsigned long) data);
297 case PTRACE_GET_THREAD_AREA_3264:
298 ret = put_user(task_thread_info(child)->tp_value,
299 (unsigned long __user *) (unsigned long) data);
302 case PTRACE_GET_WATCH_REGS:
303 ret = ptrace_get_watch_regs(child,
304 (struct pt_watch_regs __user *) (unsigned long) addr);
307 case PTRACE_SET_WATCH_REGS:
308 ret = ptrace_set_watch_regs(child,
309 (struct pt_watch_regs __user *) (unsigned long) addr);
313 ret = compat_ptrace_request(child, request, addr, data);