Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Bogendoerfer | 5d9a76c | 2008-08-17 16:49:25 +0200 | [diff] [blame] | 18 | #include <linux/compat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/security.h> |
| 26 | |
| 27 | #include <asm/cpu.h> |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 28 | #include <asm/dsp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/fpu.h> |
| 30 | #include <asm/mipsregs.h> |
Ralf Baechle | 101b353 | 2005-10-06 17:39:32 +0100 | [diff] [blame] | 31 | #include <asm/mipsmtregs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <asm/pgtable.h> |
| 33 | #include <asm/page.h> |
Alex Smith | 60be939 | 2014-07-23 14:40:15 +0100 | [diff] [blame] | 34 | #include <asm/reg.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/uaccess.h> |
| 36 | #include <asm/bootinfo.h> |
| 37 | |
| 38 | /* |
| 39 | * Tracing a 32-bit process with a 64-bit strace and vice versa will not |
| 40 | * work. I don't know how to fix this. |
| 41 | */ |
Thomas Bogendoerfer | 5d9a76c | 2008-08-17 16:49:25 +0200 | [diff] [blame] | 42 | long compat_arch_ptrace(struct task_struct *child, compat_long_t request, |
| 43 | compat_ulong_t caddr, compat_ulong_t cdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { |
Thomas Bogendoerfer | 5d9a76c | 2008-08-17 16:49:25 +0200 | [diff] [blame] | 45 | int addr = caddr; |
| 46 | int data = cdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | int ret; |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | switch (request) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 51 | /* |
| 52 | * Read 4 bytes of the other process' storage |
| 53 | * data is a pointer specifying where the user wants the |
| 54 | * 4 bytes copied into |
| 55 | * addr is a pointer in the user's storage that contains an 8 byte |
| 56 | * address in the other process of the 4 bytes that is to be read |
| 57 | * (this is run in a 32-bit process looking at a 64-bit process) |
| 58 | * when I and D space are separate, these will need to be fixed. |
| 59 | */ |
| 60 | case PTRACE_PEEKTEXT_3264: |
| 61 | case PTRACE_PEEKDATA_3264: { |
| 62 | u32 tmp; |
| 63 | int copied; |
| 64 | u32 __user * addrOthers; |
| 65 | |
| 66 | ret = -EIO; |
| 67 | |
| 68 | /* Get the addr in the other process that we want to read */ |
| 69 | if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0) |
| 70 | break; |
| 71 | |
| 72 | copied = access_process_vm(child, (u64)addrOthers, &tmp, |
| 73 | sizeof(tmp), 0); |
| 74 | if (copied != sizeof(tmp)) |
| 75 | break; |
| 76 | ret = put_user(tmp, (u32 __user *) (unsigned long) data); |
| 77 | break; |
| 78 | } |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* Read the word at location addr in the USER area. */ |
| 81 | case PTRACE_PEEKUSR: { |
| 82 | struct pt_regs *regs; |
Paul Burton | bbd426f | 2014-02-13 11:26:41 +0000 | [diff] [blame] | 83 | union fpureg *fregs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | unsigned int tmp; |
| 85 | |
Al Viro | 40bc9c6 | 2006-01-12 01:06:07 -0800 | [diff] [blame] | 86 | regs = task_pt_regs(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | 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: |
Paul Burton | 597ce17 | 2013-11-22 13:12:07 +0000 | [diff] [blame] | 94 | if (!tsk_used_math(child)) { |
| 95 | /* FP not yet used */ |
| 96 | tmp = -1; |
| 97 | break; |
| 98 | } |
| 99 | fregs = get_fpu_regs(child); |
| 100 | if (test_thread_flag(TIF_32BIT_FPREGS)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /* |
| 102 | * The odd registers are actually the high |
| 103 | * order bits of the values stored in the even |
| 104 | * registers - unless we're using r2k_switch.S. |
| 105 | */ |
Paul Burton | bbd426f | 2014-02-13 11:26:41 +0000 | [diff] [blame] | 106 | tmp = get_fpr32(&fregs[(addr & ~1) - FPR_BASE], |
| 107 | addr & 1); |
Paul Burton | 597ce17 | 2013-11-22 13:12:07 +0000 | [diff] [blame] | 108 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
Paul Burton | bbd426f | 2014-02-13 11:26:41 +0000 | [diff] [blame] | 110 | tmp = get_fpr32(&fregs[addr - FPR_BASE], 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | break; |
| 112 | case PC: |
| 113 | tmp = regs->cp0_epc; |
| 114 | break; |
| 115 | case CAUSE: |
| 116 | tmp = regs->cp0_cause; |
| 117 | break; |
| 118 | case BADVADDR: |
| 119 | tmp = regs->cp0_badvaddr; |
| 120 | break; |
| 121 | case MMHI: |
| 122 | tmp = regs->hi; |
| 123 | break; |
| 124 | case MMLO: |
| 125 | tmp = regs->lo; |
| 126 | break; |
| 127 | case FPC_CSR: |
Atsushi Nemoto | eae8907 | 2006-05-16 01:26:03 +0900 | [diff] [blame] | 128 | tmp = child->thread.fpu.fcr31; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | break; |
Paul Burton | 3351047 | 2013-11-19 17:30:35 +0000 | [diff] [blame] | 130 | case FPC_EIR: |
| 131 | /* implementation / version register */ |
Alex Smith | 656ff9b | 2014-07-23 14:40:06 +0100 | [diff] [blame] | 132 | tmp = boot_cpu_data.fpu_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | break; |
Atsushi Nemoto | 3055acb | 2006-01-29 22:34:32 +0900 | [diff] [blame] | 134 | case DSP_BASE ... DSP_BASE + 5: { |
| 135 | dspreg_t *dregs; |
| 136 | |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 137 | if (!cpu_has_dsp) { |
| 138 | tmp = 0; |
| 139 | ret = -EIO; |
Thomas Bogendoerfer | 5d9a76c | 2008-08-17 16:49:25 +0200 | [diff] [blame] | 140 | goto out; |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 141 | } |
Atsushi Nemoto | 3055acb | 2006-01-29 22:34:32 +0900 | [diff] [blame] | 142 | dregs = __get_dsp_regs(child); |
Ralf Baechle | 6c35585 | 2005-12-05 13:47:25 +0000 | [diff] [blame] | 143 | tmp = (unsigned long) (dregs[addr - DSP_BASE]); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 144 | break; |
Atsushi Nemoto | 3055acb | 2006-01-29 22:34:32 +0900 | [diff] [blame] | 145 | } |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 146 | case DSP_CONTROL: |
| 147 | if (!cpu_has_dsp) { |
| 148 | tmp = 0; |
| 149 | ret = -EIO; |
Thomas Bogendoerfer | 5d9a76c | 2008-08-17 16:49:25 +0200 | [diff] [blame] | 150 | goto out; |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 151 | } |
| 152 | tmp = child->thread.dsp.dspcontrol; |
| 153 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | default: |
| 155 | tmp = 0; |
| 156 | ret = -EIO; |
Thomas Bogendoerfer | 5d9a76c | 2008-08-17 16:49:25 +0200 | [diff] [blame] | 157 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
Atsushi Nemoto | 3055acb | 2006-01-29 22:34:32 +0900 | [diff] [blame] | 159 | ret = put_user(tmp, (unsigned __user *) (unsigned long) data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | break; |
| 161 | } |
| 162 | |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 163 | /* |
| 164 | * Write 4 bytes into the other process' storage |
| 165 | * data is the 4 bytes that the user wants written |
| 166 | * addr is a pointer in the user's storage that contains an |
| 167 | * 8 byte address in the other process where the 4 bytes |
| 168 | * that is to be written |
| 169 | * (this is run in a 32-bit process looking at a 64-bit process) |
| 170 | * when I and D space are separate, these will need to be fixed. |
| 171 | */ |
| 172 | case PTRACE_POKETEXT_3264: |
| 173 | case PTRACE_POKEDATA_3264: { |
| 174 | u32 __user * addrOthers; |
| 175 | |
| 176 | /* Get the addr in the other process that we want to write into */ |
| 177 | ret = -EIO; |
| 178 | if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0) |
| 179 | break; |
| 180 | ret = 0; |
| 181 | if (access_process_vm(child, (u64)addrOthers, &data, |
| 182 | sizeof(data), 1) == sizeof(data)) |
| 183 | break; |
| 184 | ret = -EIO; |
| 185 | break; |
| 186 | } |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | case PTRACE_POKEUSR: { |
| 189 | struct pt_regs *regs; |
| 190 | ret = 0; |
Al Viro | 40bc9c6 | 2006-01-12 01:06:07 -0800 | [diff] [blame] | 191 | regs = task_pt_regs(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
| 193 | switch (addr) { |
| 194 | case 0 ... 31: |
| 195 | regs->regs[addr] = data; |
| 196 | break; |
| 197 | case FPR_BASE ... FPR_BASE + 31: { |
Paul Burton | bbd426f | 2014-02-13 11:26:41 +0000 | [diff] [blame] | 198 | union fpureg *fregs = get_fpu_regs(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | if (!tsk_used_math(child)) { |
| 201 | /* FP not yet used */ |
Atsushi Nemoto | eae8907 | 2006-05-16 01:26:03 +0900 | [diff] [blame] | 202 | memset(&child->thread.fpu, ~0, |
| 203 | sizeof(child->thread.fpu)); |
| 204 | child->thread.fpu.fcr31 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
Paul Burton | 597ce17 | 2013-11-22 13:12:07 +0000 | [diff] [blame] | 206 | if (test_thread_flag(TIF_32BIT_FPREGS)) { |
| 207 | /* |
| 208 | * The odd registers are actually the high |
| 209 | * order bits of the values stored in the even |
| 210 | * registers - unless we're using r2k_switch.S. |
| 211 | */ |
Paul Burton | bbd426f | 2014-02-13 11:26:41 +0000 | [diff] [blame] | 212 | set_fpr32(&fregs[(addr & ~1) - FPR_BASE], |
| 213 | addr & 1, data); |
Paul Burton | 597ce17 | 2013-11-22 13:12:07 +0000 | [diff] [blame] | 214 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | } |
Paul Burton | bbd426f | 2014-02-13 11:26:41 +0000 | [diff] [blame] | 216 | set_fpr64(&fregs[addr - FPR_BASE], 0, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | break; |
| 218 | } |
| 219 | case PC: |
| 220 | regs->cp0_epc = data; |
| 221 | break; |
| 222 | case MMHI: |
| 223 | regs->hi = data; |
| 224 | break; |
| 225 | case MMLO: |
| 226 | regs->lo = data; |
| 227 | break; |
| 228 | case FPC_CSR: |
Atsushi Nemoto | eae8907 | 2006-05-16 01:26:03 +0900 | [diff] [blame] | 229 | child->thread.fpu.fcr31 = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | break; |
Atsushi Nemoto | 3055acb | 2006-01-29 22:34:32 +0900 | [diff] [blame] | 231 | case DSP_BASE ... DSP_BASE + 5: { |
| 232 | dspreg_t *dregs; |
| 233 | |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 234 | if (!cpu_has_dsp) { |
| 235 | ret = -EIO; |
| 236 | break; |
| 237 | } |
| 238 | |
Atsushi Nemoto | 3055acb | 2006-01-29 22:34:32 +0900 | [diff] [blame] | 239 | dregs = __get_dsp_regs(child); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 240 | dregs[addr - DSP_BASE] = data; |
| 241 | break; |
Atsushi Nemoto | 3055acb | 2006-01-29 22:34:32 +0900 | [diff] [blame] | 242 | } |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 243 | case DSP_CONTROL: |
| 244 | if (!cpu_has_dsp) { |
| 245 | ret = -EIO; |
| 246 | break; |
| 247 | } |
| 248 | child->thread.dsp.dspcontrol = data; |
| 249 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | default: |
| 251 | /* The rest are not allowed. */ |
| 252 | ret = -EIO; |
| 253 | break; |
| 254 | } |
| 255 | break; |
| 256 | } |
| 257 | |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 258 | case PTRACE_GETREGS: |
Alex Smith | a79ebea | 2014-07-23 14:40:13 +0100 | [diff] [blame] | 259 | ret = ptrace_getregs(child, |
| 260 | (struct user_pt_regs __user *) (__u64) data); |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 261 | break; |
| 262 | |
| 263 | case PTRACE_SETREGS: |
Alex Smith | a79ebea | 2014-07-23 14:40:13 +0100 | [diff] [blame] | 264 | ret = ptrace_setregs(child, |
| 265 | (struct user_pt_regs __user *) (__u64) data); |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 266 | break; |
| 267 | |
| 268 | case PTRACE_GETFPREGS: |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 269 | ret = ptrace_getfpregs(child, (__u32 __user *) (__u64) data); |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 270 | break; |
| 271 | |
| 272 | case PTRACE_SETFPREGS: |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 273 | ret = ptrace_setfpregs(child, (__u32 __user *) (__u64) data); |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 274 | break; |
| 275 | |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 276 | case PTRACE_GET_THREAD_AREA: |
Al Viro | dc8f602 | 2006-01-12 01:06:07 -0800 | [diff] [blame] | 277 | ret = put_user(task_thread_info(child)->tp_value, |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 278 | (unsigned int __user *) (unsigned long) data); |
| 279 | break; |
| 280 | |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 281 | case PTRACE_GET_THREAD_AREA_3264: |
Al Viro | dc8f602 | 2006-01-12 01:06:07 -0800 | [diff] [blame] | 282 | ret = put_user(task_thread_info(child)->tp_value, |
Daniel Jacobowitz | ea3d710 | 2005-09-28 18:11:15 -0400 | [diff] [blame] | 283 | (unsigned long __user *) (unsigned long) data); |
| 284 | break; |
| 285 | |
David Daney | 0926bf9 | 2008-09-23 00:11:26 -0700 | [diff] [blame] | 286 | case PTRACE_GET_WATCH_REGS: |
| 287 | ret = ptrace_get_watch_regs(child, |
| 288 | (struct pt_watch_regs __user *) (unsigned long) addr); |
| 289 | break; |
| 290 | |
| 291 | case PTRACE_SET_WATCH_REGS: |
| 292 | ret = ptrace_set_watch_regs(child, |
| 293 | (struct pt_watch_regs __user *) (unsigned long) addr); |
| 294 | break; |
| 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | default: |
Anirban Sinha | 797c3f3 | 2008-11-13 11:50:12 -0800 | [diff] [blame] | 297 | ret = compat_ptrace_request(child, request, addr, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | break; |
| 299 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | return ret; |
| 302 | } |