Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * PowerPC version |
| 3 | * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) |
| 4 | * |
| 5 | * Derived from "arch/m68k/kernel/ptrace.c" |
| 6 | * Copyright (C) 1994 by Hamish Macdonald |
| 7 | * Taken from linux/kernel/ptrace.c and modified for M680x0. |
| 8 | * linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds |
| 9 | * |
| 10 | * Modified by Cort Dougan (cort@hq.fsmlabs.com) |
Paul Mackerras | b123923 | 2005-10-20 09:11:29 +1000 | [diff] [blame] | 11 | * and Paul Mackerras (paulus@samba.org). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * |
| 13 | * This file is subject to the terms and conditions of the GNU General |
| 14 | * Public License. See the file README.legal in the main directory of |
| 15 | * this archive for more details. |
| 16 | */ |
| 17 | |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/sched.h> |
| 20 | #include <linux/mm.h> |
| 21 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/errno.h> |
| 23 | #include <linux/ptrace.h> |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 24 | #include <linux/regset.h> |
Roland McGrath | 4f72c42 | 2008-07-27 16:51:03 +1000 | [diff] [blame^] | 25 | #include <linux/tracehook.h> |
Roland McGrath | 3caf06c | 2007-12-20 03:57:39 -0800 | [diff] [blame] | 26 | #include <linux/elf.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/user.h> |
| 28 | #include <linux/security.h> |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 29 | #include <linux/signal.h> |
David Woodhouse | ea9c102 | 2005-05-08 15:56:09 +0100 | [diff] [blame] | 30 | #include <linux/seccomp.h> |
| 31 | #include <linux/audit.h> |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 32 | #ifdef CONFIG_PPC32 |
David Woodhouse | ea9c102 | 2005-05-08 15:56:09 +0100 | [diff] [blame] | 33 | #include <linux/module.h> |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 34 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | #include <asm/uaccess.h> |
| 37 | #include <asm/page.h> |
| 38 | #include <asm/pgtable.h> |
| 39 | #include <asm/system.h> |
Paul Mackerras | 21a6290 | 2005-11-19 20:47:22 +1100 | [diff] [blame] | 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | /* |
| 42 | * does not yet catch signals sent when the child dies. |
| 43 | * in exit.c or in signal.c. |
| 44 | */ |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 47 | * Set of msr bits that gdb can change on behalf of a process. |
| 48 | */ |
| 49 | #if defined(CONFIG_40x) || defined(CONFIG_BOOKE) |
| 50 | #define MSR_DEBUGCHANGE 0 |
| 51 | #else |
| 52 | #define MSR_DEBUGCHANGE (MSR_SE | MSR_BE) |
| 53 | #endif |
| 54 | |
| 55 | /* |
| 56 | * Max register writeable via put_reg |
| 57 | */ |
| 58 | #ifdef CONFIG_PPC32 |
| 59 | #define PT_MAX_PUT_REG PT_MQ |
| 60 | #else |
| 61 | #define PT_MAX_PUT_REG PT_CCR |
| 62 | #endif |
| 63 | |
Roland McGrath | 26f7713 | 2007-12-20 03:57:51 -0800 | [diff] [blame] | 64 | static unsigned long get_user_msr(struct task_struct *task) |
| 65 | { |
| 66 | return task->thread.regs->msr | task->thread.fpexc_mode; |
| 67 | } |
| 68 | |
| 69 | static int set_user_msr(struct task_struct *task, unsigned long msr) |
| 70 | { |
| 71 | task->thread.regs->msr &= ~MSR_DEBUGCHANGE; |
| 72 | task->thread.regs->msr |= msr & MSR_DEBUGCHANGE; |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | /* |
| 77 | * We prevent mucking around with the reserved area of trap |
| 78 | * which are used internally by the kernel. |
| 79 | */ |
| 80 | static int set_user_trap(struct task_struct *task, unsigned long trap) |
| 81 | { |
| 82 | task->thread.regs->trap = trap & 0xfff0; |
| 83 | return 0; |
| 84 | } |
| 85 | |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 86 | /* |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 87 | * Get contents of register REGNO in task TASK. |
| 88 | */ |
| 89 | unsigned long ptrace_get_reg(struct task_struct *task, int regno) |
| 90 | { |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 91 | if (task->thread.regs == NULL) |
| 92 | return -EIO; |
| 93 | |
Roland McGrath | 26f7713 | 2007-12-20 03:57:51 -0800 | [diff] [blame] | 94 | if (regno == PT_MSR) |
| 95 | return get_user_msr(task); |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 96 | |
| 97 | if (regno < (sizeof(struct pt_regs) / sizeof(unsigned long))) |
| 98 | return ((unsigned long *)task->thread.regs)[regno]; |
| 99 | |
| 100 | return -EIO; |
| 101 | } |
| 102 | |
| 103 | /* |
| 104 | * Write contents of register REGNO in task TASK. |
| 105 | */ |
| 106 | int ptrace_put_reg(struct task_struct *task, int regno, unsigned long data) |
| 107 | { |
| 108 | if (task->thread.regs == NULL) |
| 109 | return -EIO; |
| 110 | |
Roland McGrath | 26f7713 | 2007-12-20 03:57:51 -0800 | [diff] [blame] | 111 | if (regno == PT_MSR) |
| 112 | return set_user_msr(task, data); |
| 113 | if (regno == PT_TRAP) |
| 114 | return set_user_trap(task, data); |
| 115 | |
| 116 | if (regno <= PT_MAX_PUT_REG) { |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 117 | ((unsigned long *)task->thread.regs)[regno] = data; |
| 118 | return 0; |
| 119 | } |
| 120 | return -EIO; |
| 121 | } |
| 122 | |
Roland McGrath | 44dd3f5 | 2007-12-20 03:57:55 -0800 | [diff] [blame] | 123 | static int gpr_get(struct task_struct *target, const struct user_regset *regset, |
| 124 | unsigned int pos, unsigned int count, |
| 125 | void *kbuf, void __user *ubuf) |
| 126 | { |
| 127 | int ret; |
| 128 | |
| 129 | if (target->thread.regs == NULL) |
| 130 | return -EIO; |
| 131 | |
| 132 | CHECK_FULL_REGS(target->thread.regs); |
| 133 | |
| 134 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
| 135 | target->thread.regs, |
| 136 | 0, offsetof(struct pt_regs, msr)); |
| 137 | if (!ret) { |
| 138 | unsigned long msr = get_user_msr(target); |
| 139 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, &msr, |
| 140 | offsetof(struct pt_regs, msr), |
| 141 | offsetof(struct pt_regs, msr) + |
| 142 | sizeof(msr)); |
| 143 | } |
| 144 | |
| 145 | BUILD_BUG_ON(offsetof(struct pt_regs, orig_gpr3) != |
| 146 | offsetof(struct pt_regs, msr) + sizeof(long)); |
| 147 | |
| 148 | if (!ret) |
| 149 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
| 150 | &target->thread.regs->orig_gpr3, |
| 151 | offsetof(struct pt_regs, orig_gpr3), |
| 152 | sizeof(struct pt_regs)); |
| 153 | if (!ret) |
| 154 | ret = user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf, |
| 155 | sizeof(struct pt_regs), -1); |
| 156 | |
| 157 | return ret; |
| 158 | } |
| 159 | |
| 160 | static int gpr_set(struct task_struct *target, const struct user_regset *regset, |
| 161 | unsigned int pos, unsigned int count, |
| 162 | const void *kbuf, const void __user *ubuf) |
| 163 | { |
| 164 | unsigned long reg; |
| 165 | int ret; |
| 166 | |
| 167 | if (target->thread.regs == NULL) |
| 168 | return -EIO; |
| 169 | |
| 170 | CHECK_FULL_REGS(target->thread.regs); |
| 171 | |
| 172 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
| 173 | target->thread.regs, |
| 174 | 0, PT_MSR * sizeof(reg)); |
| 175 | |
| 176 | if (!ret && count > 0) { |
| 177 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, ®, |
| 178 | PT_MSR * sizeof(reg), |
| 179 | (PT_MSR + 1) * sizeof(reg)); |
| 180 | if (!ret) |
| 181 | ret = set_user_msr(target, reg); |
| 182 | } |
| 183 | |
| 184 | BUILD_BUG_ON(offsetof(struct pt_regs, orig_gpr3) != |
| 185 | offsetof(struct pt_regs, msr) + sizeof(long)); |
| 186 | |
| 187 | if (!ret) |
| 188 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
| 189 | &target->thread.regs->orig_gpr3, |
| 190 | PT_ORIG_R3 * sizeof(reg), |
| 191 | (PT_MAX_PUT_REG + 1) * sizeof(reg)); |
| 192 | |
| 193 | if (PT_MAX_PUT_REG + 1 < PT_TRAP && !ret) |
| 194 | ret = user_regset_copyin_ignore( |
| 195 | &pos, &count, &kbuf, &ubuf, |
| 196 | (PT_MAX_PUT_REG + 1) * sizeof(reg), |
| 197 | PT_TRAP * sizeof(reg)); |
| 198 | |
| 199 | if (!ret && count > 0) { |
| 200 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, ®, |
| 201 | PT_TRAP * sizeof(reg), |
| 202 | (PT_TRAP + 1) * sizeof(reg)); |
| 203 | if (!ret) |
| 204 | ret = set_user_trap(target, reg); |
| 205 | } |
| 206 | |
| 207 | if (!ret) |
| 208 | ret = user_regset_copyin_ignore( |
| 209 | &pos, &count, &kbuf, &ubuf, |
| 210 | (PT_TRAP + 1) * sizeof(reg), -1); |
| 211 | |
| 212 | return ret; |
| 213 | } |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 214 | |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 215 | static int fpr_get(struct task_struct *target, const struct user_regset *regset, |
| 216 | unsigned int pos, unsigned int count, |
| 217 | void *kbuf, void __user *ubuf) |
| 218 | { |
Michael Neuling | c6e6771 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 219 | #ifdef CONFIG_VSX |
| 220 | double buf[33]; |
| 221 | int i; |
| 222 | #endif |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 223 | flush_fp_to_thread(target); |
| 224 | |
Michael Neuling | c6e6771 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 225 | #ifdef CONFIG_VSX |
| 226 | /* copy to local buffer then write that out */ |
| 227 | for (i = 0; i < 32 ; i++) |
| 228 | buf[i] = target->thread.TS_FPR(i); |
| 229 | memcpy(&buf[32], &target->thread.fpscr, sizeof(double)); |
| 230 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, buf, 0, -1); |
| 231 | |
| 232 | #else |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 233 | BUILD_BUG_ON(offsetof(struct thread_struct, fpscr) != |
Michael Neuling | 9c75a31 | 2008-06-26 17:07:48 +1000 | [diff] [blame] | 234 | offsetof(struct thread_struct, TS_FPR(32))); |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 235 | |
| 236 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
| 237 | &target->thread.fpr, 0, -1); |
Michael Neuling | c6e6771 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 238 | #endif |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static int fpr_set(struct task_struct *target, const struct user_regset *regset, |
| 242 | unsigned int pos, unsigned int count, |
| 243 | const void *kbuf, const void __user *ubuf) |
| 244 | { |
Michael Neuling | c6e6771 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 245 | #ifdef CONFIG_VSX |
| 246 | double buf[33]; |
| 247 | int i; |
| 248 | #endif |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 249 | flush_fp_to_thread(target); |
| 250 | |
Michael Neuling | c6e6771 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 251 | #ifdef CONFIG_VSX |
| 252 | /* copy to local buffer then write that out */ |
| 253 | i = user_regset_copyin(&pos, &count, &kbuf, &ubuf, buf, 0, -1); |
| 254 | if (i) |
| 255 | return i; |
| 256 | for (i = 0; i < 32 ; i++) |
| 257 | target->thread.TS_FPR(i) = buf[i]; |
| 258 | memcpy(&target->thread.fpscr, &buf[32], sizeof(double)); |
| 259 | return 0; |
| 260 | #else |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 261 | BUILD_BUG_ON(offsetof(struct thread_struct, fpscr) != |
Michael Neuling | 9c75a31 | 2008-06-26 17:07:48 +1000 | [diff] [blame] | 262 | offsetof(struct thread_struct, TS_FPR(32))); |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 263 | |
| 264 | return user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
| 265 | &target->thread.fpr, 0, -1); |
Michael Neuling | c6e6771 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 266 | #endif |
Roland McGrath | f65255e | 2007-12-20 03:57:34 -0800 | [diff] [blame] | 267 | } |
| 268 | |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 269 | #ifdef CONFIG_ALTIVEC |
| 270 | /* |
| 271 | * Get/set all the altivec registers vr0..vr31, vscr, vrsave, in one go. |
| 272 | * The transfer totals 34 quadword. Quadwords 0-31 contain the |
| 273 | * corresponding vector registers. Quadword 32 contains the vscr as the |
| 274 | * last word (offset 12) within that quadword. Quadword 33 contains the |
| 275 | * vrsave as the first word (offset 0) within the quadword. |
| 276 | * |
| 277 | * This definition of the VMX state is compatible with the current PPC32 |
| 278 | * ptrace interface. This allows signal handling and ptrace to use the |
| 279 | * same structures. This also simplifies the implementation of a bi-arch |
| 280 | * (combined (32- and 64-bit) gdb. |
| 281 | */ |
| 282 | |
Roland McGrath | 3caf06c | 2007-12-20 03:57:39 -0800 | [diff] [blame] | 283 | static int vr_active(struct task_struct *target, |
| 284 | const struct user_regset *regset) |
| 285 | { |
| 286 | flush_altivec_to_thread(target); |
| 287 | return target->thread.used_vr ? regset->n : 0; |
| 288 | } |
| 289 | |
| 290 | static int vr_get(struct task_struct *target, const struct user_regset *regset, |
| 291 | unsigned int pos, unsigned int count, |
| 292 | void *kbuf, void __user *ubuf) |
| 293 | { |
| 294 | int ret; |
| 295 | |
| 296 | flush_altivec_to_thread(target); |
| 297 | |
| 298 | BUILD_BUG_ON(offsetof(struct thread_struct, vscr) != |
| 299 | offsetof(struct thread_struct, vr[32])); |
| 300 | |
| 301 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
| 302 | &target->thread.vr, 0, |
| 303 | 33 * sizeof(vector128)); |
| 304 | if (!ret) { |
| 305 | /* |
| 306 | * Copy out only the low-order word of vrsave. |
| 307 | */ |
| 308 | union { |
| 309 | elf_vrreg_t reg; |
| 310 | u32 word; |
| 311 | } vrsave; |
| 312 | memset(&vrsave, 0, sizeof(vrsave)); |
| 313 | vrsave.word = target->thread.vrsave; |
| 314 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, &vrsave, |
| 315 | 33 * sizeof(vector128), -1); |
| 316 | } |
| 317 | |
| 318 | return ret; |
| 319 | } |
| 320 | |
| 321 | static int vr_set(struct task_struct *target, const struct user_regset *regset, |
| 322 | unsigned int pos, unsigned int count, |
| 323 | const void *kbuf, const void __user *ubuf) |
| 324 | { |
| 325 | int ret; |
| 326 | |
| 327 | flush_altivec_to_thread(target); |
| 328 | |
| 329 | BUILD_BUG_ON(offsetof(struct thread_struct, vscr) != |
| 330 | offsetof(struct thread_struct, vr[32])); |
| 331 | |
| 332 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
| 333 | &target->thread.vr, 0, 33 * sizeof(vector128)); |
| 334 | if (!ret && count > 0) { |
| 335 | /* |
| 336 | * We use only the first word of vrsave. |
| 337 | */ |
| 338 | union { |
| 339 | elf_vrreg_t reg; |
| 340 | u32 word; |
| 341 | } vrsave; |
| 342 | memset(&vrsave, 0, sizeof(vrsave)); |
| 343 | vrsave.word = target->thread.vrsave; |
| 344 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &vrsave, |
| 345 | 33 * sizeof(vector128), -1); |
| 346 | if (!ret) |
| 347 | target->thread.vrsave = vrsave.word; |
| 348 | } |
| 349 | |
| 350 | return ret; |
| 351 | } |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 352 | #endif /* CONFIG_ALTIVEC */ |
| 353 | |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 354 | #ifdef CONFIG_VSX |
| 355 | /* |
| 356 | * Currently to set and and get all the vsx state, you need to call |
| 357 | * the fp and VMX calls aswell. This only get/sets the lower 32 |
| 358 | * 128bit VSX registers. |
| 359 | */ |
| 360 | |
| 361 | static int vsr_active(struct task_struct *target, |
| 362 | const struct user_regset *regset) |
| 363 | { |
| 364 | flush_vsx_to_thread(target); |
| 365 | return target->thread.used_vsr ? regset->n : 0; |
| 366 | } |
| 367 | |
| 368 | static int vsr_get(struct task_struct *target, const struct user_regset *regset, |
| 369 | unsigned int pos, unsigned int count, |
| 370 | void *kbuf, void __user *ubuf) |
| 371 | { |
Michael Neuling | f3e909c | 2008-07-01 14:01:39 +1000 | [diff] [blame] | 372 | double buf[32]; |
| 373 | int ret, i; |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 374 | |
| 375 | flush_vsx_to_thread(target); |
| 376 | |
Michael Neuling | f3e909c | 2008-07-01 14:01:39 +1000 | [diff] [blame] | 377 | for (i = 0; i < 32 ; i++) |
| 378 | buf[i] = current->thread.fpr[i][TS_VSRLOWOFFSET]; |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 379 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
Michael Neuling | f3e909c | 2008-07-01 14:01:39 +1000 | [diff] [blame] | 380 | buf, 0, 32 * sizeof(double)); |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 381 | |
| 382 | return ret; |
| 383 | } |
| 384 | |
| 385 | static int vsr_set(struct task_struct *target, const struct user_regset *regset, |
| 386 | unsigned int pos, unsigned int count, |
| 387 | const void *kbuf, const void __user *ubuf) |
| 388 | { |
Michael Neuling | f3e909c | 2008-07-01 14:01:39 +1000 | [diff] [blame] | 389 | double buf[32]; |
| 390 | int ret,i; |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 391 | |
| 392 | flush_vsx_to_thread(target); |
| 393 | |
| 394 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
Michael Neuling | f3e909c | 2008-07-01 14:01:39 +1000 | [diff] [blame] | 395 | buf, 0, 32 * sizeof(double)); |
| 396 | for (i = 0; i < 32 ; i++) |
| 397 | current->thread.fpr[i][TS_VSRLOWOFFSET] = buf[i]; |
| 398 | |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 399 | |
| 400 | return ret; |
| 401 | } |
| 402 | #endif /* CONFIG_VSX */ |
| 403 | |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 404 | #ifdef CONFIG_SPE |
| 405 | |
| 406 | /* |
| 407 | * For get_evrregs/set_evrregs functions 'data' has the following layout: |
| 408 | * |
| 409 | * struct { |
| 410 | * u32 evr[32]; |
| 411 | * u64 acc; |
| 412 | * u32 spefscr; |
| 413 | * } |
| 414 | */ |
| 415 | |
Roland McGrath | a4e4b17 | 2007-12-20 03:57:48 -0800 | [diff] [blame] | 416 | static int evr_active(struct task_struct *target, |
| 417 | const struct user_regset *regset) |
| 418 | { |
| 419 | flush_spe_to_thread(target); |
| 420 | return target->thread.used_spe ? regset->n : 0; |
| 421 | } |
| 422 | |
| 423 | static int evr_get(struct task_struct *target, const struct user_regset *regset, |
| 424 | unsigned int pos, unsigned int count, |
| 425 | void *kbuf, void __user *ubuf) |
| 426 | { |
| 427 | int ret; |
| 428 | |
| 429 | flush_spe_to_thread(target); |
| 430 | |
| 431 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
| 432 | &target->thread.evr, |
| 433 | 0, sizeof(target->thread.evr)); |
| 434 | |
| 435 | BUILD_BUG_ON(offsetof(struct thread_struct, acc) + sizeof(u64) != |
| 436 | offsetof(struct thread_struct, spefscr)); |
| 437 | |
| 438 | if (!ret) |
| 439 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
| 440 | &target->thread.acc, |
| 441 | sizeof(target->thread.evr), -1); |
| 442 | |
| 443 | return ret; |
| 444 | } |
| 445 | |
| 446 | static int evr_set(struct task_struct *target, const struct user_regset *regset, |
| 447 | unsigned int pos, unsigned int count, |
| 448 | const void *kbuf, const void __user *ubuf) |
| 449 | { |
| 450 | int ret; |
| 451 | |
| 452 | flush_spe_to_thread(target); |
| 453 | |
| 454 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
| 455 | &target->thread.evr, |
| 456 | 0, sizeof(target->thread.evr)); |
| 457 | |
| 458 | BUILD_BUG_ON(offsetof(struct thread_struct, acc) + sizeof(u64) != |
| 459 | offsetof(struct thread_struct, spefscr)); |
| 460 | |
| 461 | if (!ret) |
| 462 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
| 463 | &target->thread.acc, |
| 464 | sizeof(target->thread.evr), -1); |
| 465 | |
| 466 | return ret; |
| 467 | } |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 468 | #endif /* CONFIG_SPE */ |
| 469 | |
| 470 | |
Roland McGrath | 80fdf47 | 2007-12-20 03:58:00 -0800 | [diff] [blame] | 471 | /* |
| 472 | * These are our native regset flavors. |
| 473 | */ |
| 474 | enum powerpc_regset { |
| 475 | REGSET_GPR, |
| 476 | REGSET_FPR, |
| 477 | #ifdef CONFIG_ALTIVEC |
| 478 | REGSET_VMX, |
| 479 | #endif |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 480 | #ifdef CONFIG_VSX |
| 481 | REGSET_VSX, |
| 482 | #endif |
Roland McGrath | 80fdf47 | 2007-12-20 03:58:00 -0800 | [diff] [blame] | 483 | #ifdef CONFIG_SPE |
| 484 | REGSET_SPE, |
| 485 | #endif |
| 486 | }; |
| 487 | |
| 488 | static const struct user_regset native_regsets[] = { |
| 489 | [REGSET_GPR] = { |
| 490 | .core_note_type = NT_PRSTATUS, .n = ELF_NGREG, |
| 491 | .size = sizeof(long), .align = sizeof(long), |
| 492 | .get = gpr_get, .set = gpr_set |
| 493 | }, |
| 494 | [REGSET_FPR] = { |
| 495 | .core_note_type = NT_PRFPREG, .n = ELF_NFPREG, |
| 496 | .size = sizeof(double), .align = sizeof(double), |
| 497 | .get = fpr_get, .set = fpr_set |
| 498 | }, |
| 499 | #ifdef CONFIG_ALTIVEC |
| 500 | [REGSET_VMX] = { |
| 501 | .core_note_type = NT_PPC_VMX, .n = 34, |
| 502 | .size = sizeof(vector128), .align = sizeof(vector128), |
| 503 | .active = vr_active, .get = vr_get, .set = vr_set |
| 504 | }, |
| 505 | #endif |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 506 | #ifdef CONFIG_VSX |
| 507 | [REGSET_VSX] = { |
Michael Neuling | f3e909c | 2008-07-01 14:01:39 +1000 | [diff] [blame] | 508 | .core_note_type = NT_PPC_VSX, .n = 32, |
| 509 | .size = sizeof(double), .align = sizeof(double), |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 510 | .active = vsr_active, .get = vsr_get, .set = vsr_set |
| 511 | }, |
| 512 | #endif |
Roland McGrath | 80fdf47 | 2007-12-20 03:58:00 -0800 | [diff] [blame] | 513 | #ifdef CONFIG_SPE |
| 514 | [REGSET_SPE] = { |
| 515 | .n = 35, |
| 516 | .size = sizeof(u32), .align = sizeof(u32), |
| 517 | .active = evr_active, .get = evr_get, .set = evr_set |
| 518 | }, |
| 519 | #endif |
| 520 | }; |
| 521 | |
| 522 | static const struct user_regset_view user_ppc_native_view = { |
| 523 | .name = UTS_MACHINE, .e_machine = ELF_ARCH, .ei_osabi = ELF_OSABI, |
| 524 | .regsets = native_regsets, .n = ARRAY_SIZE(native_regsets) |
| 525 | }; |
| 526 | |
Roland McGrath | fa8f5cb | 2007-12-20 03:58:08 -0800 | [diff] [blame] | 527 | #ifdef CONFIG_PPC64 |
| 528 | #include <linux/compat.h> |
| 529 | |
| 530 | static int gpr32_get(struct task_struct *target, |
| 531 | const struct user_regset *regset, |
| 532 | unsigned int pos, unsigned int count, |
| 533 | void *kbuf, void __user *ubuf) |
| 534 | { |
| 535 | const unsigned long *regs = &target->thread.regs->gpr[0]; |
| 536 | compat_ulong_t *k = kbuf; |
| 537 | compat_ulong_t __user *u = ubuf; |
| 538 | compat_ulong_t reg; |
| 539 | |
| 540 | if (target->thread.regs == NULL) |
| 541 | return -EIO; |
| 542 | |
| 543 | CHECK_FULL_REGS(target->thread.regs); |
| 544 | |
| 545 | pos /= sizeof(reg); |
| 546 | count /= sizeof(reg); |
| 547 | |
| 548 | if (kbuf) |
| 549 | for (; count > 0 && pos < PT_MSR; --count) |
| 550 | *k++ = regs[pos++]; |
| 551 | else |
| 552 | for (; count > 0 && pos < PT_MSR; --count) |
| 553 | if (__put_user((compat_ulong_t) regs[pos++], u++)) |
| 554 | return -EFAULT; |
| 555 | |
| 556 | if (count > 0 && pos == PT_MSR) { |
| 557 | reg = get_user_msr(target); |
| 558 | if (kbuf) |
| 559 | *k++ = reg; |
| 560 | else if (__put_user(reg, u++)) |
| 561 | return -EFAULT; |
| 562 | ++pos; |
| 563 | --count; |
| 564 | } |
| 565 | |
| 566 | if (kbuf) |
| 567 | for (; count > 0 && pos < PT_REGS_COUNT; --count) |
| 568 | *k++ = regs[pos++]; |
| 569 | else |
| 570 | for (; count > 0 && pos < PT_REGS_COUNT; --count) |
| 571 | if (__put_user((compat_ulong_t) regs[pos++], u++)) |
| 572 | return -EFAULT; |
| 573 | |
| 574 | kbuf = k; |
| 575 | ubuf = u; |
| 576 | pos *= sizeof(reg); |
| 577 | count *= sizeof(reg); |
| 578 | return user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf, |
| 579 | PT_REGS_COUNT * sizeof(reg), -1); |
| 580 | } |
| 581 | |
| 582 | static int gpr32_set(struct task_struct *target, |
| 583 | const struct user_regset *regset, |
| 584 | unsigned int pos, unsigned int count, |
| 585 | const void *kbuf, const void __user *ubuf) |
| 586 | { |
| 587 | unsigned long *regs = &target->thread.regs->gpr[0]; |
| 588 | const compat_ulong_t *k = kbuf; |
| 589 | const compat_ulong_t __user *u = ubuf; |
| 590 | compat_ulong_t reg; |
| 591 | |
| 592 | if (target->thread.regs == NULL) |
| 593 | return -EIO; |
| 594 | |
| 595 | CHECK_FULL_REGS(target->thread.regs); |
| 596 | |
| 597 | pos /= sizeof(reg); |
| 598 | count /= sizeof(reg); |
| 599 | |
| 600 | if (kbuf) |
| 601 | for (; count > 0 && pos < PT_MSR; --count) |
| 602 | regs[pos++] = *k++; |
| 603 | else |
| 604 | for (; count > 0 && pos < PT_MSR; --count) { |
| 605 | if (__get_user(reg, u++)) |
| 606 | return -EFAULT; |
| 607 | regs[pos++] = reg; |
| 608 | } |
| 609 | |
| 610 | |
| 611 | if (count > 0 && pos == PT_MSR) { |
| 612 | if (kbuf) |
| 613 | reg = *k++; |
| 614 | else if (__get_user(reg, u++)) |
| 615 | return -EFAULT; |
| 616 | set_user_msr(target, reg); |
| 617 | ++pos; |
| 618 | --count; |
| 619 | } |
| 620 | |
Roland McGrath | c2372eb | 2008-03-13 19:25:35 +1100 | [diff] [blame] | 621 | if (kbuf) { |
Roland McGrath | fa8f5cb | 2007-12-20 03:58:08 -0800 | [diff] [blame] | 622 | for (; count > 0 && pos <= PT_MAX_PUT_REG; --count) |
| 623 | regs[pos++] = *k++; |
Roland McGrath | c2372eb | 2008-03-13 19:25:35 +1100 | [diff] [blame] | 624 | for (; count > 0 && pos < PT_TRAP; --count, ++pos) |
| 625 | ++k; |
| 626 | } else { |
Roland McGrath | fa8f5cb | 2007-12-20 03:58:08 -0800 | [diff] [blame] | 627 | for (; count > 0 && pos <= PT_MAX_PUT_REG; --count) { |
| 628 | if (__get_user(reg, u++)) |
| 629 | return -EFAULT; |
| 630 | regs[pos++] = reg; |
| 631 | } |
Roland McGrath | c2372eb | 2008-03-13 19:25:35 +1100 | [diff] [blame] | 632 | for (; count > 0 && pos < PT_TRAP; --count, ++pos) |
| 633 | if (__get_user(reg, u++)) |
| 634 | return -EFAULT; |
| 635 | } |
Roland McGrath | fa8f5cb | 2007-12-20 03:58:08 -0800 | [diff] [blame] | 636 | |
| 637 | if (count > 0 && pos == PT_TRAP) { |
| 638 | if (kbuf) |
| 639 | reg = *k++; |
| 640 | else if (__get_user(reg, u++)) |
| 641 | return -EFAULT; |
| 642 | set_user_trap(target, reg); |
| 643 | ++pos; |
| 644 | --count; |
| 645 | } |
| 646 | |
| 647 | kbuf = k; |
| 648 | ubuf = u; |
| 649 | pos *= sizeof(reg); |
| 650 | count *= sizeof(reg); |
| 651 | return user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf, |
| 652 | (PT_TRAP + 1) * sizeof(reg), -1); |
| 653 | } |
| 654 | |
| 655 | /* |
| 656 | * These are the regset flavors matching the CONFIG_PPC32 native set. |
| 657 | */ |
| 658 | static const struct user_regset compat_regsets[] = { |
| 659 | [REGSET_GPR] = { |
| 660 | .core_note_type = NT_PRSTATUS, .n = ELF_NGREG, |
| 661 | .size = sizeof(compat_long_t), .align = sizeof(compat_long_t), |
| 662 | .get = gpr32_get, .set = gpr32_set |
| 663 | }, |
| 664 | [REGSET_FPR] = { |
| 665 | .core_note_type = NT_PRFPREG, .n = ELF_NFPREG, |
| 666 | .size = sizeof(double), .align = sizeof(double), |
| 667 | .get = fpr_get, .set = fpr_set |
| 668 | }, |
| 669 | #ifdef CONFIG_ALTIVEC |
| 670 | [REGSET_VMX] = { |
| 671 | .core_note_type = NT_PPC_VMX, .n = 34, |
| 672 | .size = sizeof(vector128), .align = sizeof(vector128), |
| 673 | .active = vr_active, .get = vr_get, .set = vr_set |
| 674 | }, |
| 675 | #endif |
| 676 | #ifdef CONFIG_SPE |
| 677 | [REGSET_SPE] = { |
Roland McGrath | 24f1a84 | 2008-01-02 17:05:48 -0800 | [diff] [blame] | 678 | .core_note_type = NT_PPC_SPE, .n = 35, |
Roland McGrath | fa8f5cb | 2007-12-20 03:58:08 -0800 | [diff] [blame] | 679 | .size = sizeof(u32), .align = sizeof(u32), |
| 680 | .active = evr_active, .get = evr_get, .set = evr_set |
| 681 | }, |
| 682 | #endif |
| 683 | }; |
| 684 | |
| 685 | static const struct user_regset_view user_ppc_compat_view = { |
| 686 | .name = "ppc", .e_machine = EM_PPC, .ei_osabi = ELF_OSABI, |
| 687 | .regsets = compat_regsets, .n = ARRAY_SIZE(compat_regsets) |
| 688 | }; |
| 689 | #endif /* CONFIG_PPC64 */ |
| 690 | |
Roland McGrath | 80fdf47 | 2007-12-20 03:58:00 -0800 | [diff] [blame] | 691 | const struct user_regset_view *task_user_regset_view(struct task_struct *task) |
| 692 | { |
Roland McGrath | fa8f5cb | 2007-12-20 03:58:08 -0800 | [diff] [blame] | 693 | #ifdef CONFIG_PPC64 |
| 694 | if (test_tsk_thread_flag(task, TIF_32BIT)) |
| 695 | return &user_ppc_compat_view; |
| 696 | #endif |
Roland McGrath | 80fdf47 | 2007-12-20 03:58:00 -0800 | [diff] [blame] | 697 | return &user_ppc_native_view; |
| 698 | } |
| 699 | |
| 700 | |
Roland McGrath | 2a84b0d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 701 | void user_enable_single_step(struct task_struct *task) |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 702 | { |
| 703 | struct pt_regs *regs = task->thread.regs; |
| 704 | |
| 705 | if (regs != NULL) { |
| 706 | #if defined(CONFIG_40x) || defined(CONFIG_BOOKE) |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 707 | task->thread.dbcr0 |= DBCR0_IDM | DBCR0_IC; |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 708 | regs->msr |= MSR_DE; |
| 709 | #else |
| 710 | regs->msr |= MSR_SE; |
| 711 | #endif |
| 712 | } |
| 713 | set_tsk_thread_flag(task, TIF_SINGLESTEP); |
| 714 | } |
| 715 | |
Roland McGrath | 2a84b0d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 716 | void user_disable_single_step(struct task_struct *task) |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 717 | { |
| 718 | struct pt_regs *regs = task->thread.regs; |
| 719 | |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 720 | |
Kumar Gala | 2325f0a | 2008-07-26 05:27:33 +1000 | [diff] [blame] | 721 | #if defined(CONFIG_BOOKE) |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 722 | /* If DAC then do not single step, skip */ |
| 723 | if (task->thread.dabr) |
| 724 | return; |
| 725 | #endif |
| 726 | |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 727 | if (regs != NULL) { |
| 728 | #if defined(CONFIG_40x) || defined(CONFIG_BOOKE) |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 729 | task->thread.dbcr0 &= ~(DBCR0_IC | DBCR0_IDM); |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 730 | regs->msr &= ~MSR_DE; |
| 731 | #else |
| 732 | regs->msr &= ~MSR_SE; |
| 733 | #endif |
| 734 | } |
| 735 | clear_tsk_thread_flag(task, TIF_SINGLESTEP); |
| 736 | } |
| 737 | |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 738 | int ptrace_set_debugreg(struct task_struct *task, unsigned long addr, |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 739 | unsigned long data) |
| 740 | { |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 741 | /* For ppc64 we support one DABR and no IABR's at the moment (ppc64). |
| 742 | * For embedded processors we support one DAC and no IAC's at the |
| 743 | * moment. |
| 744 | */ |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 745 | if (addr > 0) |
| 746 | return -EINVAL; |
| 747 | |
Kumar Gala | 2325f0a | 2008-07-26 05:27:33 +1000 | [diff] [blame] | 748 | /* The bottom 3 bits in dabr are flags */ |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 749 | if ((data & ~0x7UL) >= TASK_SIZE) |
| 750 | return -EIO; |
| 751 | |
Kumar Gala | 2325f0a | 2008-07-26 05:27:33 +1000 | [diff] [blame] | 752 | #ifndef CONFIG_BOOKE |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 753 | |
| 754 | /* For processors using DABR (i.e. 970), the bottom 3 bits are flags. |
| 755 | * It was assumed, on previous implementations, that 3 bits were |
| 756 | * passed together with the data address, fitting the design of the |
| 757 | * DABR register, as follows: |
| 758 | * |
| 759 | * bit 0: Read flag |
| 760 | * bit 1: Write flag |
| 761 | * bit 2: Breakpoint translation |
| 762 | * |
| 763 | * Thus, we use them here as so. |
| 764 | */ |
| 765 | |
| 766 | /* Ensure breakpoint translation bit is set */ |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 767 | if (data && !(data & DABR_TRANSLATION)) |
| 768 | return -EIO; |
| 769 | |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 770 | /* Move contents to the DABR register */ |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 771 | task->thread.dabr = data; |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 772 | |
| 773 | #endif |
Kumar Gala | 2325f0a | 2008-07-26 05:27:33 +1000 | [diff] [blame] | 774 | #if defined(CONFIG_BOOKE) |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 775 | |
| 776 | /* As described above, it was assumed 3 bits were passed with the data |
| 777 | * address, but we will assume only the mode bits will be passed |
| 778 | * as to not cause alignment restrictions for DAC-based processors. |
| 779 | */ |
| 780 | |
| 781 | /* DAC's hold the whole address without any mode flags */ |
| 782 | task->thread.dabr = data & ~0x3UL; |
| 783 | |
| 784 | if (task->thread.dabr == 0) { |
| 785 | task->thread.dbcr0 &= ~(DBSR_DAC1R | DBSR_DAC1W | DBCR0_IDM); |
| 786 | task->thread.regs->msr &= ~MSR_DE; |
| 787 | return 0; |
| 788 | } |
| 789 | |
| 790 | /* Read or Write bits must be set */ |
| 791 | |
| 792 | if (!(data & 0x3UL)) |
| 793 | return -EINVAL; |
| 794 | |
| 795 | /* Set the Internal Debugging flag (IDM bit 1) for the DBCR0 |
| 796 | register */ |
| 797 | task->thread.dbcr0 = DBCR0_IDM; |
| 798 | |
| 799 | /* Check for write and read flags and set DBCR0 |
| 800 | accordingly */ |
| 801 | if (data & 0x1UL) |
| 802 | task->thread.dbcr0 |= DBSR_DAC1R; |
| 803 | if (data & 0x2UL) |
| 804 | task->thread.dbcr0 |= DBSR_DAC1W; |
| 805 | |
| 806 | task->thread.regs->msr |= MSR_DE; |
| 807 | #endif |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 808 | return 0; |
| 809 | } |
Benjamin Herrenschmidt | abd0650 | 2007-06-04 15:15:47 +1000 | [diff] [blame] | 810 | |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 811 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | * Called by kernel/ptrace.c when detaching.. |
| 813 | * |
| 814 | * Make sure single step bits etc are not set. |
| 815 | */ |
| 816 | void ptrace_disable(struct task_struct *child) |
| 817 | { |
| 818 | /* make sure the single step bit is not set. */ |
Roland McGrath | 2a84b0d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 819 | user_disable_single_step(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | } |
| 821 | |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 822 | /* |
| 823 | * Here are the old "legacy" powerpc specific getregs/setregs ptrace calls, |
| 824 | * we mark them as obsolete now, they will be removed in a future version |
| 825 | */ |
| 826 | static long arch_ptrace_old(struct task_struct *child, long request, long addr, |
| 827 | long data) |
| 828 | { |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 829 | switch (request) { |
| 830 | case PPC_PTRACE_GETREGS: /* Get GPRs 0 - 31. */ |
| 831 | return copy_regset_to_user(child, &user_ppc_native_view, |
| 832 | REGSET_GPR, 0, 32 * sizeof(long), |
| 833 | (void __user *) data); |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 834 | |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 835 | case PPC_PTRACE_SETREGS: /* Set GPRs 0 - 31. */ |
| 836 | return copy_regset_from_user(child, &user_ppc_native_view, |
| 837 | REGSET_GPR, 0, 32 * sizeof(long), |
| 838 | (const void __user *) data); |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 839 | |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 840 | case PPC_PTRACE_GETFPREGS: /* Get FPRs 0 - 31. */ |
| 841 | return copy_regset_to_user(child, &user_ppc_native_view, |
| 842 | REGSET_FPR, 0, 32 * sizeof(double), |
| 843 | (void __user *) data); |
| 844 | |
| 845 | case PPC_PTRACE_SETFPREGS: /* Set FPRs 0 - 31. */ |
| 846 | return copy_regset_from_user(child, &user_ppc_native_view, |
| 847 | REGSET_FPR, 0, 32 * sizeof(double), |
| 848 | (const void __user *) data); |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 849 | } |
| 850 | |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 851 | return -EPERM; |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 852 | } |
| 853 | |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 854 | long arch_ptrace(struct task_struct *child, long request, long addr, long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | int ret = -EPERM; |
| 857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | switch (request) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | /* read the word at location addr in the USER area. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | case PTRACE_PEEKUSR: { |
| 861 | unsigned long index, tmp; |
| 862 | |
| 863 | ret = -EIO; |
| 864 | /* convert to index and check */ |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 865 | #ifdef CONFIG_PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | index = (unsigned long) addr >> 2; |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 867 | if ((addr & 3) || (index > PT_FPSCR) |
| 868 | || (child->thread.regs == NULL)) |
| 869 | #else |
| 870 | index = (unsigned long) addr >> 3; |
| 871 | if ((addr & 7) || (index > PT_FPSCR)) |
| 872 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | break; |
| 874 | |
| 875 | CHECK_FULL_REGS(child->thread.regs); |
| 876 | if (index < PT_FPR0) { |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 877 | tmp = ptrace_get_reg(child, (int) index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | } else { |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 879 | flush_fp_to_thread(child); |
Michael Neuling | 9c75a31 | 2008-06-26 17:07:48 +1000 | [diff] [blame] | 880 | tmp = ((unsigned long *)child->thread.fpr) |
| 881 | [TS_FPRWIDTH * (index - PT_FPR0)]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } |
| 883 | ret = put_user(tmp,(unsigned long __user *) data); |
| 884 | break; |
| 885 | } |
| 886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | /* write the word at location addr in the USER area */ |
| 888 | case PTRACE_POKEUSR: { |
| 889 | unsigned long index; |
| 890 | |
| 891 | ret = -EIO; |
| 892 | /* convert to index and check */ |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 893 | #ifdef CONFIG_PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | index = (unsigned long) addr >> 2; |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 895 | if ((addr & 3) || (index > PT_FPSCR) |
| 896 | || (child->thread.regs == NULL)) |
| 897 | #else |
| 898 | index = (unsigned long) addr >> 3; |
| 899 | if ((addr & 7) || (index > PT_FPSCR)) |
| 900 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | break; |
| 902 | |
| 903 | CHECK_FULL_REGS(child->thread.regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | if (index < PT_FPR0) { |
Benjamin Herrenschmidt | 865418d | 2007-06-04 15:15:44 +1000 | [diff] [blame] | 905 | ret = ptrace_put_reg(child, index, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | } else { |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 907 | flush_fp_to_thread(child); |
Michael Neuling | 9c75a31 | 2008-06-26 17:07:48 +1000 | [diff] [blame] | 908 | ((unsigned long *)child->thread.fpr) |
| 909 | [TS_FPRWIDTH * (index - PT_FPR0)] = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | ret = 0; |
| 911 | } |
| 912 | break; |
| 913 | } |
| 914 | |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 915 | case PTRACE_GET_DEBUGREG: { |
| 916 | ret = -EINVAL; |
| 917 | /* We only support one DABR and no IABRS at the moment */ |
| 918 | if (addr > 0) |
| 919 | break; |
| 920 | ret = put_user(child->thread.dabr, |
| 921 | (unsigned long __user *)data); |
| 922 | break; |
| 923 | } |
| 924 | |
| 925 | case PTRACE_SET_DEBUGREG: |
| 926 | ret = ptrace_set_debugreg(child, addr, data); |
| 927 | break; |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 928 | |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 929 | #ifdef CONFIG_PPC64 |
| 930 | case PTRACE_GETREGS64: |
| 931 | #endif |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 932 | case PTRACE_GETREGS: /* Get all pt_regs from the child. */ |
| 933 | return copy_regset_to_user(child, &user_ppc_native_view, |
| 934 | REGSET_GPR, |
| 935 | 0, sizeof(struct pt_regs), |
| 936 | (void __user *) data); |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 937 | |
Benjamin Herrenschmidt | 0b3d5c4 | 2007-06-04 15:15:39 +1000 | [diff] [blame] | 938 | #ifdef CONFIG_PPC64 |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 939 | case PTRACE_SETREGS64: |
| 940 | #endif |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 941 | case PTRACE_SETREGS: /* Set all gp regs in the child. */ |
| 942 | return copy_regset_from_user(child, &user_ppc_native_view, |
| 943 | REGSET_GPR, |
| 944 | 0, sizeof(struct pt_regs), |
| 945 | (const void __user *) data); |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 946 | |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 947 | case PTRACE_GETFPREGS: /* Get the child FPU state (FPR0...31 + FPSCR) */ |
| 948 | return copy_regset_to_user(child, &user_ppc_native_view, |
| 949 | REGSET_FPR, |
| 950 | 0, sizeof(elf_fpregset_t), |
| 951 | (void __user *) data); |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 952 | |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 953 | case PTRACE_SETFPREGS: /* Set the child FPU state (FPR0...31 + FPSCR) */ |
| 954 | return copy_regset_from_user(child, &user_ppc_native_view, |
| 955 | REGSET_FPR, |
| 956 | 0, sizeof(elf_fpregset_t), |
| 957 | (const void __user *) data); |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | #ifdef CONFIG_ALTIVEC |
| 960 | case PTRACE_GETVRREGS: |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 961 | return copy_regset_to_user(child, &user_ppc_native_view, |
| 962 | REGSET_VMX, |
| 963 | 0, (33 * sizeof(vector128) + |
| 964 | sizeof(u32)), |
| 965 | (void __user *) data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | |
| 967 | case PTRACE_SETVRREGS: |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 968 | return copy_regset_from_user(child, &user_ppc_native_view, |
| 969 | REGSET_VMX, |
| 970 | 0, (33 * sizeof(vector128) + |
| 971 | sizeof(u32)), |
| 972 | (const void __user *) data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | #endif |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 974 | #ifdef CONFIG_VSX |
| 975 | case PTRACE_GETVSRREGS: |
| 976 | return copy_regset_to_user(child, &user_ppc_native_view, |
| 977 | REGSET_VSX, |
| 978 | 0, (32 * sizeof(vector128) + |
| 979 | sizeof(u32)), |
| 980 | (void __user *) data); |
| 981 | |
| 982 | case PTRACE_SETVSRREGS: |
| 983 | return copy_regset_from_user(child, &user_ppc_native_view, |
| 984 | REGSET_VSX, |
| 985 | 0, (32 * sizeof(vector128) + |
| 986 | sizeof(u32)), |
| 987 | (const void __user *) data); |
| 988 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | #ifdef CONFIG_SPE |
| 990 | case PTRACE_GETEVRREGS: |
| 991 | /* Get the child spe register state. */ |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 992 | return copy_regset_to_user(child, &user_ppc_native_view, |
| 993 | REGSET_SPE, 0, 35 * sizeof(u32), |
| 994 | (void __user *) data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | |
| 996 | case PTRACE_SETEVRREGS: |
| 997 | /* Set the child spe register state. */ |
Roland McGrath | c391cd0 | 2007-12-20 03:58:36 -0800 | [diff] [blame] | 998 | return copy_regset_from_user(child, &user_ppc_native_view, |
| 999 | REGSET_SPE, 0, 35 * sizeof(u32), |
| 1000 | (const void __user *) data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | #endif |
| 1002 | |
Benjamin Herrenschmidt | e17666b | 2007-06-04 15:15:43 +1000 | [diff] [blame] | 1003 | /* Old reverse args ptrace callss */ |
| 1004 | case PPC_PTRACE_GETREGS: /* Get GPRs 0 - 31. */ |
| 1005 | case PPC_PTRACE_SETREGS: /* Set GPRs 0 - 31. */ |
| 1006 | case PPC_PTRACE_GETFPREGS: /* Get FPRs 0 - 31. */ |
| 1007 | case PPC_PTRACE_SETFPREGS: /* Get FPRs 0 - 31. */ |
| 1008 | ret = arch_ptrace_old(child, request, addr, data); |
| 1009 | break; |
| 1010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | default: |
| 1012 | ret = ptrace_request(child, request, addr, data); |
| 1013 | break; |
| 1014 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | return ret; |
| 1016 | } |
| 1017 | |
Roland McGrath | 4f72c42 | 2008-07-27 16:51:03 +1000 | [diff] [blame^] | 1018 | /* |
| 1019 | * We must return the syscall number to actually look up in the table. |
| 1020 | * This can be -1L to skip running any syscall at all. |
| 1021 | */ |
| 1022 | long do_syscall_trace_enter(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | { |
Roland McGrath | 4f72c42 | 2008-07-27 16:51:03 +1000 | [diff] [blame^] | 1024 | long ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 1026 | secure_computing(regs->gpr[0]); |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 1027 | |
Roland McGrath | 4f72c42 | 2008-07-27 16:51:03 +1000 | [diff] [blame^] | 1028 | if (test_thread_flag(TIF_SYSCALL_TRACE) && |
| 1029 | tracehook_report_syscall_entry(regs)) |
| 1030 | /* |
| 1031 | * Tracing decided this syscall should not happen. |
| 1032 | * We'll return a bogus call number to get an ENOSYS |
| 1033 | * error, but leave the original number in regs->gpr[0]. |
| 1034 | */ |
| 1035 | ret = -1L; |
David Woodhouse | ea9c102 | 2005-05-08 15:56:09 +0100 | [diff] [blame] | 1036 | |
David Woodhouse | cfcd170 | 2007-01-14 09:38:18 +0800 | [diff] [blame] | 1037 | if (unlikely(current->audit_context)) { |
| 1038 | #ifdef CONFIG_PPC64 |
| 1039 | if (!test_thread_flag(TIF_32BIT)) |
| 1040 | audit_syscall_entry(AUDIT_ARCH_PPC64, |
| 1041 | regs->gpr[0], |
| 1042 | regs->gpr[3], regs->gpr[4], |
| 1043 | regs->gpr[5], regs->gpr[6]); |
| 1044 | else |
Stephen Rothwell | e8a3030 | 2005-10-13 15:52:04 +1000 | [diff] [blame] | 1045 | #endif |
David Woodhouse | cfcd170 | 2007-01-14 09:38:18 +0800 | [diff] [blame] | 1046 | audit_syscall_entry(AUDIT_ARCH_PPC, |
| 1047 | regs->gpr[0], |
| 1048 | regs->gpr[3] & 0xffffffff, |
| 1049 | regs->gpr[4] & 0xffffffff, |
| 1050 | regs->gpr[5] & 0xffffffff, |
| 1051 | regs->gpr[6] & 0xffffffff); |
| 1052 | } |
Roland McGrath | 4f72c42 | 2008-07-27 16:51:03 +1000 | [diff] [blame^] | 1053 | |
| 1054 | return ret ?: regs->gpr[0]; |
David Woodhouse | ea9c102 | 2005-05-08 15:56:09 +0100 | [diff] [blame] | 1055 | } |
| 1056 | |
| 1057 | void do_syscall_trace_leave(struct pt_regs *regs) |
| 1058 | { |
Roland McGrath | 4f72c42 | 2008-07-27 16:51:03 +1000 | [diff] [blame^] | 1059 | int step; |
| 1060 | |
David Woodhouse | ea9c102 | 2005-05-08 15:56:09 +0100 | [diff] [blame] | 1061 | if (unlikely(current->audit_context)) |
David Woodhouse | 4b9c876 | 2006-09-22 09:23:53 +0100 | [diff] [blame] | 1062 | audit_syscall_exit((regs->ccr&0x10000000)?AUDITSC_FAILURE:AUDITSC_SUCCESS, |
David Woodhouse | ea9c102 | 2005-05-08 15:56:09 +0100 | [diff] [blame] | 1063 | regs->result); |
| 1064 | |
Roland McGrath | 4f72c42 | 2008-07-27 16:51:03 +1000 | [diff] [blame^] | 1065 | step = test_thread_flag(TIF_SINGLESTEP); |
| 1066 | if (step || test_thread_flag(TIF_SYSCALL_TRACE)) |
| 1067 | tracehook_report_syscall_exit(regs, step); |
David Woodhouse | ea9c102 | 2005-05-08 15:56:09 +0100 | [diff] [blame] | 1068 | } |