3 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
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
10 * Modified by Cort Dougan (cort@hq.fsmlabs.com)
11 * and Paul Mackerras (paulus@samba.org).
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.
18 #include <linux/kernel.h>
19 #include <linux/sched.h>
21 #include <linux/smp.h>
22 #include <linux/errno.h>
23 #include <linux/ptrace.h>
24 #include <linux/user.h>
25 #include <linux/security.h>
26 #include <linux/signal.h>
27 #include <linux/seccomp.h>
28 #include <linux/audit.h>
30 #include <linux/module.h>
33 #include <asm/uaccess.h>
35 #include <asm/pgtable.h>
36 #include <asm/system.h>
39 * does not yet catch signals sent when the child dies.
40 * in exit.c or in signal.c.
44 * Set of msr bits that gdb can change on behalf of a process.
46 #if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
47 #define MSR_DEBUGCHANGE 0
49 #define MSR_DEBUGCHANGE (MSR_SE | MSR_BE)
53 * Max register writeable via put_reg
56 #define PT_MAX_PUT_REG PT_MQ
58 #define PT_MAX_PUT_REG PT_CCR
62 * Get contents of register REGNO in task TASK.
64 unsigned long ptrace_get_reg(struct task_struct
*task
, int regno
)
66 unsigned long tmp
= 0;
68 if (task
->thread
.regs
== NULL
)
71 if (regno
== PT_MSR
) {
72 tmp
= ((unsigned long *)task
->thread
.regs
)[PT_MSR
];
73 return tmp
| task
->thread
.fpexc_mode
;
76 if (regno
< (sizeof(struct pt_regs
) / sizeof(unsigned long)))
77 return ((unsigned long *)task
->thread
.regs
)[regno
];
83 * Write contents of register REGNO in task TASK.
85 int ptrace_put_reg(struct task_struct
*task
, int regno
, unsigned long data
)
87 if (task
->thread
.regs
== NULL
)
90 if (regno
<= PT_MAX_PUT_REG
|| regno
== PT_TRAP
) {
92 data
= (data
& MSR_DEBUGCHANGE
)
93 | (task
->thread
.regs
->msr
& ~MSR_DEBUGCHANGE
);
94 /* We prevent mucking around with the reserved area of trap
95 * which are used internally by the kernel
99 ((unsigned long *)task
->thread
.regs
)[regno
] = data
;
106 static int get_fpregs(void __user
*data
, struct task_struct
*task
,
109 unsigned int count
= has_fpscr
? 33 : 32;
111 if (copy_to_user(data
, task
->thread
.fpr
, count
* sizeof(double)))
116 static int set_fpregs(void __user
*data
, struct task_struct
*task
,
119 unsigned int count
= has_fpscr
? 33 : 32;
121 if (copy_from_user(task
->thread
.fpr
, data
, count
* sizeof(double)))
127 #ifdef CONFIG_ALTIVEC
129 * Get/set all the altivec registers vr0..vr31, vscr, vrsave, in one go.
130 * The transfer totals 34 quadword. Quadwords 0-31 contain the
131 * corresponding vector registers. Quadword 32 contains the vscr as the
132 * last word (offset 12) within that quadword. Quadword 33 contains the
133 * vrsave as the first word (offset 0) within the quadword.
135 * This definition of the VMX state is compatible with the current PPC32
136 * ptrace interface. This allows signal handling and ptrace to use the
137 * same structures. This also simplifies the implementation of a bi-arch
138 * (combined (32- and 64-bit) gdb.
142 * Get contents of AltiVec register state in task TASK
144 static int get_vrregs(unsigned long __user
*data
, struct task_struct
*task
)
146 unsigned long regsize
;
148 /* copy AltiVec registers VR[0] .. VR[31] */
149 regsize
= 32 * sizeof(vector128
);
150 if (copy_to_user(data
, task
->thread
.vr
, regsize
))
152 data
+= (regsize
/ sizeof(unsigned long));
155 regsize
= 1 * sizeof(vector128
);
156 if (copy_to_user(data
, &task
->thread
.vscr
, regsize
))
158 data
+= (regsize
/ sizeof(unsigned long));
161 if (put_user(task
->thread
.vrsave
, (u32 __user
*)data
))
168 * Write contents of AltiVec register state into task TASK.
170 static int set_vrregs(struct task_struct
*task
, unsigned long __user
*data
)
172 unsigned long regsize
;
174 /* copy AltiVec registers VR[0] .. VR[31] */
175 regsize
= 32 * sizeof(vector128
);
176 if (copy_from_user(task
->thread
.vr
, data
, regsize
))
178 data
+= (regsize
/ sizeof(unsigned long));
181 regsize
= 1 * sizeof(vector128
);
182 if (copy_from_user(&task
->thread
.vscr
, data
, regsize
))
184 data
+= (regsize
/ sizeof(unsigned long));
187 if (get_user(task
->thread
.vrsave
, (u32 __user
*)data
))
192 #endif /* CONFIG_ALTIVEC */
197 * For get_evrregs/set_evrregs functions 'data' has the following layout:
207 * Get contents of SPE register state in task TASK.
209 static int get_evrregs(unsigned long *data
, struct task_struct
*task
)
213 if (!access_ok(VERIFY_WRITE
, data
, 35 * sizeof(unsigned long)))
217 if (__put_user(task
->thread
.spefscr
, &data
[34]))
220 /* copy SPE registers EVR[0] .. EVR[31] */
221 for (i
= 0; i
< 32; i
++, data
++)
222 if (__put_user(task
->thread
.evr
[i
], data
))
226 if (__put_user64(task
->thread
.acc
, (unsigned long long *)data
))
233 * Write contents of SPE register state into task TASK.
235 static int set_evrregs(struct task_struct
*task
, unsigned long *data
)
239 if (!access_ok(VERIFY_READ
, data
, 35 * sizeof(unsigned long)))
243 if (__get_user(task
->thread
.spefscr
, &data
[34]))
246 /* copy SPE registers EVR[0] .. EVR[31] */
247 for (i
= 0; i
< 32; i
++, data
++)
248 if (__get_user(task
->thread
.evr
[i
], data
))
251 if (__get_user64(task
->thread
.acc
, (unsigned long long*)data
))
256 #endif /* CONFIG_SPE */
259 static void set_single_step(struct task_struct
*task
)
261 struct pt_regs
*regs
= task
->thread
.regs
;
264 #if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
265 task
->thread
.dbcr0
= DBCR0_IDM
| DBCR0_IC
;
271 set_tsk_thread_flag(task
, TIF_SINGLESTEP
);
274 static void clear_single_step(struct task_struct
*task
)
276 struct pt_regs
*regs
= task
->thread
.regs
;
279 #if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
280 task
->thread
.dbcr0
= 0;
281 regs
->msr
&= ~MSR_DE
;
283 regs
->msr
&= ~MSR_SE
;
286 clear_tsk_thread_flag(task
, TIF_SINGLESTEP
);
289 static int ptrace_set_debugreg(struct task_struct
*task
, unsigned long addr
,
292 /* We only support one DABR and no IABRS at the moment */
296 /* The bottom 3 bits are flags */
297 if ((data
& ~0x7UL
) >= TASK_SIZE
)
300 /* Ensure translation is on */
301 if (data
&& !(data
& DABR_TRANSLATION
))
304 task
->thread
.dabr
= data
;
309 * Called by kernel/ptrace.c when detaching..
311 * Make sure single step bits etc are not set.
313 void ptrace_disable(struct task_struct
*child
)
315 /* make sure the single step bit is not set. */
316 clear_single_step(child
);
320 * Here are the old "legacy" powerpc specific getregs/setregs ptrace calls,
321 * we mark them as obsolete now, they will be removed in a future version
323 static long arch_ptrace_old(struct task_struct
*child
, long request
, long addr
,
329 case PPC_PTRACE_GETREGS
: { /* Get GPRs 0 - 31. */
331 unsigned long *reg
= &((unsigned long *)child
->thread
.regs
)[0];
332 unsigned long __user
*tmp
= (unsigned long __user
*)addr
;
334 CHECK_FULL_REGS(child
->thread
.regs
);
335 for (i
= 0; i
< 32; i
++) {
336 ret
= put_user(*reg
, tmp
);
345 case PPC_PTRACE_SETREGS
: { /* Set GPRs 0 - 31. */
347 unsigned long *reg
= &((unsigned long *)child
->thread
.regs
)[0];
348 unsigned long __user
*tmp
= (unsigned long __user
*)addr
;
350 CHECK_FULL_REGS(child
->thread
.regs
);
351 for (i
= 0; i
< 32; i
++) {
352 ret
= get_user(*reg
, tmp
);
361 case PPC_PTRACE_GETFPREGS
: { /* Get FPRs 0 - 31. */
362 flush_fp_to_thread(child
);
363 ret
= get_fpregs((void __user
*)addr
, child
, 0);
367 case PPC_PTRACE_SETFPREGS
: { /* Get FPRs 0 - 31. */
368 flush_fp_to_thread(child
);
369 ret
= set_fpregs((void __user
*)addr
, child
, 0);
377 long arch_ptrace(struct task_struct
*child
, long request
, long addr
, long data
)
382 /* when I and D space are separate, these will need to be fixed. */
383 case PTRACE_PEEKTEXT
: /* read word at location addr. */
384 case PTRACE_PEEKDATA
:
385 ret
= generic_ptrace_peekdata(child
, addr
, data
);
388 /* read the word at location addr in the USER area. */
389 case PTRACE_PEEKUSR
: {
390 unsigned long index
, tmp
;
393 /* convert to index and check */
395 index
= (unsigned long) addr
>> 2;
396 if ((addr
& 3) || (index
> PT_FPSCR
)
397 || (child
->thread
.regs
== NULL
))
399 index
= (unsigned long) addr
>> 3;
400 if ((addr
& 7) || (index
> PT_FPSCR
))
404 CHECK_FULL_REGS(child
->thread
.regs
);
405 if (index
< PT_FPR0
) {
406 tmp
= ptrace_get_reg(child
, (int) index
);
408 flush_fp_to_thread(child
);
409 tmp
= ((unsigned long *)child
->thread
.fpr
)[index
- PT_FPR0
];
411 ret
= put_user(tmp
,(unsigned long __user
*) data
);
415 /* If I and D space are separate, this will have to be fixed. */
416 case PTRACE_POKETEXT
: /* write the word at location addr. */
417 case PTRACE_POKEDATA
:
418 ret
= generic_ptrace_pokedata(child
, addr
, data
);
421 /* write the word at location addr in the USER area */
422 case PTRACE_POKEUSR
: {
426 /* convert to index and check */
428 index
= (unsigned long) addr
>> 2;
429 if ((addr
& 3) || (index
> PT_FPSCR
)
430 || (child
->thread
.regs
== NULL
))
432 index
= (unsigned long) addr
>> 3;
433 if ((addr
& 7) || (index
> PT_FPSCR
))
437 CHECK_FULL_REGS(child
->thread
.regs
);
438 if (index
< PT_FPR0
) {
439 ret
= ptrace_put_reg(child
, index
, data
);
441 flush_fp_to_thread(child
);
442 ((unsigned long *)child
->thread
.fpr
)[index
- PT_FPR0
] = data
;
448 case PTRACE_SYSCALL
: /* continue and stop at next (return from) syscall */
449 case PTRACE_CONT
: { /* restart after signal. */
451 if (!valid_signal(data
))
453 if (request
== PTRACE_SYSCALL
)
454 set_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
456 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
457 child
->exit_code
= data
;
458 /* make sure the single step bit is not set. */
459 clear_single_step(child
);
460 wake_up_process(child
);
466 * make the child exit. Best I can do is send it a sigkill.
467 * perhaps it should be put in the status that it wants to
472 if (child
->exit_state
== EXIT_ZOMBIE
) /* already dead */
474 child
->exit_code
= SIGKILL
;
475 /* make sure the single step bit is not set. */
476 clear_single_step(child
);
477 wake_up_process(child
);
481 case PTRACE_SINGLESTEP
: { /* set the trap flag. */
483 if (!valid_signal(data
))
485 clear_tsk_thread_flag(child
, TIF_SYSCALL_TRACE
);
486 set_single_step(child
);
487 child
->exit_code
= data
;
488 /* give it a chance to run. */
489 wake_up_process(child
);
494 case PTRACE_GET_DEBUGREG
: {
496 /* We only support one DABR and no IABRS at the moment */
499 ret
= put_user(child
->thread
.dabr
,
500 (unsigned long __user
*)data
);
504 case PTRACE_SET_DEBUGREG
:
505 ret
= ptrace_set_debugreg(child
, addr
, data
);
509 case PTRACE_GETREGS64
:
511 case PTRACE_GETREGS
: { /* Get all pt_regs from the child. */
513 if (!access_ok(VERIFY_WRITE
, (void __user
*)data
,
514 sizeof(struct pt_regs
))) {
518 CHECK_FULL_REGS(child
->thread
.regs
);
520 for (ui
= 0; ui
< PT_REGS_COUNT
; ui
++) {
521 ret
|= __put_user(ptrace_get_reg(child
, ui
),
522 (unsigned long __user
*) data
);
523 data
+= sizeof(long);
529 case PTRACE_SETREGS64
:
531 case PTRACE_SETREGS
: { /* Set all gp regs in the child. */
534 if (!access_ok(VERIFY_READ
, (void __user
*)data
,
535 sizeof(struct pt_regs
))) {
539 CHECK_FULL_REGS(child
->thread
.regs
);
541 for (ui
= 0; ui
< PT_REGS_COUNT
; ui
++) {
542 ret
= __get_user(tmp
, (unsigned long __user
*) data
);
545 ptrace_put_reg(child
, ui
, tmp
);
546 data
+= sizeof(long);
551 case PTRACE_GETFPREGS
: { /* Get the child FPU state (FPR0...31 + FPSCR) */
552 flush_fp_to_thread(child
);
553 ret
= get_fpregs((void __user
*)data
, child
, 1);
557 case PTRACE_SETFPREGS
: { /* Set the child FPU state (FPR0...31 + FPSCR) */
558 flush_fp_to_thread(child
);
559 ret
= set_fpregs((void __user
*)data
, child
, 1);
563 #ifdef CONFIG_ALTIVEC
564 case PTRACE_GETVRREGS
:
565 /* Get the child altivec register state. */
566 flush_altivec_to_thread(child
);
567 ret
= get_vrregs((unsigned long __user
*)data
, child
);
570 case PTRACE_SETVRREGS
:
571 /* Set the child altivec register state. */
572 flush_altivec_to_thread(child
);
573 ret
= set_vrregs(child
, (unsigned long __user
*)data
);
577 case PTRACE_GETEVRREGS
:
578 /* Get the child spe register state. */
579 flush_spe_to_thread(child
);
580 ret
= get_evrregs((unsigned long __user
*)data
, child
);
583 case PTRACE_SETEVRREGS
:
584 /* Set the child spe register state. */
585 /* this is to clear the MSR_SPE bit to force a reload
586 * of register state from memory */
587 flush_spe_to_thread(child
);
588 ret
= set_evrregs(child
, (unsigned long __user
*)data
);
592 /* Old reverse args ptrace callss */
593 case PPC_PTRACE_GETREGS
: /* Get GPRs 0 - 31. */
594 case PPC_PTRACE_SETREGS
: /* Set GPRs 0 - 31. */
595 case PPC_PTRACE_GETFPREGS
: /* Get FPRs 0 - 31. */
596 case PPC_PTRACE_SETFPREGS
: /* Get FPRs 0 - 31. */
597 ret
= arch_ptrace_old(child
, request
, addr
, data
);
601 ret
= ptrace_request(child
, request
, addr
, data
);
607 static void do_syscall_trace(void)
609 /* the 0x80 provides a way for the tracing parent to distinguish
610 between a syscall stop and SIGTRAP delivery */
611 ptrace_notify(SIGTRAP
| ((current
->ptrace
& PT_TRACESYSGOOD
)
615 * this isn't the same as continuing with a signal, but it will do
616 * for normal use. strace only continues with a signal if the
617 * stopping signal is not SIGTRAP. -brl
619 if (current
->exit_code
) {
620 send_sig(current
->exit_code
, current
, 1);
621 current
->exit_code
= 0;
625 void do_syscall_trace_enter(struct pt_regs
*regs
)
627 secure_computing(regs
->gpr
[0]);
629 if (test_thread_flag(TIF_SYSCALL_TRACE
)
630 && (current
->ptrace
& PT_PTRACED
))
633 if (unlikely(current
->audit_context
)) {
635 if (!test_thread_flag(TIF_32BIT
))
636 audit_syscall_entry(AUDIT_ARCH_PPC64
,
638 regs
->gpr
[3], regs
->gpr
[4],
639 regs
->gpr
[5], regs
->gpr
[6]);
642 audit_syscall_entry(AUDIT_ARCH_PPC
,
644 regs
->gpr
[3] & 0xffffffff,
645 regs
->gpr
[4] & 0xffffffff,
646 regs
->gpr
[5] & 0xffffffff,
647 regs
->gpr
[6] & 0xffffffff);
651 void do_syscall_trace_leave(struct pt_regs
*regs
)
653 if (unlikely(current
->audit_context
))
654 audit_syscall_exit((regs
->ccr
&0x10000000)?AUDITSC_FAILURE
:AUDITSC_SUCCESS
,
657 if ((test_thread_flag(TIF_SYSCALL_TRACE
)
658 || test_thread_flag(TIF_SINGLESTEP
))
659 && (current
->ptrace
& PT_PTRACED
))