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/regset.h>
25 #include <linux/tracehook.h>
26 #include <linux/elf.h>
27 #include <linux/user.h>
28 #include <linux/security.h>
29 #include <linux/signal.h>
30 #include <linux/seccomp.h>
31 #include <linux/audit.h>
32 #include <trace/syscall.h>
35 #include <linux/hw_breakpoint.h>
36 #include <linux/perf_event.h>
38 #include <asm/uaccess.h>
40 #include <asm/pgtable.h>
41 #include <asm/system.h>
43 #define CREATE_TRACE_POINTS
44 #include <trace/events/syscalls.h>
47 * The parameter save area on the stack is used to store arguments being passed
48 * to callee function and is located at fixed offset from stack pointer.
51 #define PARAMETER_SAVE_AREA_OFFSET 24 /* bytes */
52 #else /* CONFIG_PPC32 */
53 #define PARAMETER_SAVE_AREA_OFFSET 48 /* bytes */
56 struct pt_regs_offset
{
61 #define STR(s) #s /* convert to string */
62 #define REG_OFFSET_NAME(r) {.name = #r, .offset = offsetof(struct pt_regs, r)}
63 #define GPR_OFFSET_NAME(num) \
64 {.name = STR(gpr##num), .offset = offsetof(struct pt_regs, gpr[num])}
65 #define REG_OFFSET_END {.name = NULL, .offset = 0}
67 static const struct pt_regs_offset regoffset_table
[] = {
100 REG_OFFSET_NAME(nip
),
101 REG_OFFSET_NAME(msr
),
102 REG_OFFSET_NAME(ctr
),
103 REG_OFFSET_NAME(link
),
104 REG_OFFSET_NAME(xer
),
105 REG_OFFSET_NAME(ccr
),
107 REG_OFFSET_NAME(softe
),
111 REG_OFFSET_NAME(trap
),
112 REG_OFFSET_NAME(dar
),
113 REG_OFFSET_NAME(dsisr
),
118 * regs_query_register_offset() - query register offset from its name
119 * @name: the name of a register
121 * regs_query_register_offset() returns the offset of a register in struct
122 * pt_regs from its name. If the name is invalid, this returns -EINVAL;
124 int regs_query_register_offset(const char *name
)
126 const struct pt_regs_offset
*roff
;
127 for (roff
= regoffset_table
; roff
->name
!= NULL
; roff
++)
128 if (!strcmp(roff
->name
, name
))
134 * regs_query_register_name() - query register name from its offset
135 * @offset: the offset of a register in struct pt_regs.
137 * regs_query_register_name() returns the name of a register from its
138 * offset in struct pt_regs. If the @offset is invalid, this returns NULL;
140 const char *regs_query_register_name(unsigned int offset
)
142 const struct pt_regs_offset
*roff
;
143 for (roff
= regoffset_table
; roff
->name
!= NULL
; roff
++)
144 if (roff
->offset
== offset
)
150 * does not yet catch signals sent when the child dies.
151 * in exit.c or in signal.c.
155 * Set of msr bits that gdb can change on behalf of a process.
157 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
158 #define MSR_DEBUGCHANGE 0
160 #define MSR_DEBUGCHANGE (MSR_SE | MSR_BE)
164 * Max register writeable via put_reg
167 #define PT_MAX_PUT_REG PT_MQ
169 #define PT_MAX_PUT_REG PT_CCR
172 static unsigned long get_user_msr(struct task_struct
*task
)
174 return task
->thread
.regs
->msr
| task
->thread
.fpexc_mode
;
177 static int set_user_msr(struct task_struct
*task
, unsigned long msr
)
179 task
->thread
.regs
->msr
&= ~MSR_DEBUGCHANGE
;
180 task
->thread
.regs
->msr
|= msr
& MSR_DEBUGCHANGE
;
185 * We prevent mucking around with the reserved area of trap
186 * which are used internally by the kernel.
188 static int set_user_trap(struct task_struct
*task
, unsigned long trap
)
190 task
->thread
.regs
->trap
= trap
& 0xfff0;
195 * Get contents of register REGNO in task TASK.
197 unsigned long ptrace_get_reg(struct task_struct
*task
, int regno
)
199 if (task
->thread
.regs
== NULL
)
203 return get_user_msr(task
);
205 if (regno
< (sizeof(struct pt_regs
) / sizeof(unsigned long)))
206 return ((unsigned long *)task
->thread
.regs
)[regno
];
212 * Write contents of register REGNO in task TASK.
214 int ptrace_put_reg(struct task_struct
*task
, int regno
, unsigned long data
)
216 if (task
->thread
.regs
== NULL
)
220 return set_user_msr(task
, data
);
221 if (regno
== PT_TRAP
)
222 return set_user_trap(task
, data
);
224 if (regno
<= PT_MAX_PUT_REG
) {
225 ((unsigned long *)task
->thread
.regs
)[regno
] = data
;
231 static int gpr_get(struct task_struct
*target
, const struct user_regset
*regset
,
232 unsigned int pos
, unsigned int count
,
233 void *kbuf
, void __user
*ubuf
)
237 if (target
->thread
.regs
== NULL
)
240 if (!FULL_REGS(target
->thread
.regs
)) {
241 /* We have a partial register set. Fill 14-31 with bogus values */
242 for (i
= 14; i
< 32; i
++)
243 target
->thread
.regs
->gpr
[i
] = NV_REG_POISON
;
246 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
248 0, offsetof(struct pt_regs
, msr
));
250 unsigned long msr
= get_user_msr(target
);
251 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
, &msr
,
252 offsetof(struct pt_regs
, msr
),
253 offsetof(struct pt_regs
, msr
) +
257 BUILD_BUG_ON(offsetof(struct pt_regs
, orig_gpr3
) !=
258 offsetof(struct pt_regs
, msr
) + sizeof(long));
261 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
262 &target
->thread
.regs
->orig_gpr3
,
263 offsetof(struct pt_regs
, orig_gpr3
),
264 sizeof(struct pt_regs
));
266 ret
= user_regset_copyout_zero(&pos
, &count
, &kbuf
, &ubuf
,
267 sizeof(struct pt_regs
), -1);
272 static int gpr_set(struct task_struct
*target
, const struct user_regset
*regset
,
273 unsigned int pos
, unsigned int count
,
274 const void *kbuf
, const void __user
*ubuf
)
279 if (target
->thread
.regs
== NULL
)
282 CHECK_FULL_REGS(target
->thread
.regs
);
284 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
286 0, PT_MSR
* sizeof(reg
));
288 if (!ret
&& count
> 0) {
289 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
, ®
,
290 PT_MSR
* sizeof(reg
),
291 (PT_MSR
+ 1) * sizeof(reg
));
293 ret
= set_user_msr(target
, reg
);
296 BUILD_BUG_ON(offsetof(struct pt_regs
, orig_gpr3
) !=
297 offsetof(struct pt_regs
, msr
) + sizeof(long));
300 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
301 &target
->thread
.regs
->orig_gpr3
,
302 PT_ORIG_R3
* sizeof(reg
),
303 (PT_MAX_PUT_REG
+ 1) * sizeof(reg
));
305 if (PT_MAX_PUT_REG
+ 1 < PT_TRAP
&& !ret
)
306 ret
= user_regset_copyin_ignore(
307 &pos
, &count
, &kbuf
, &ubuf
,
308 (PT_MAX_PUT_REG
+ 1) * sizeof(reg
),
309 PT_TRAP
* sizeof(reg
));
311 if (!ret
&& count
> 0) {
312 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
, ®
,
313 PT_TRAP
* sizeof(reg
),
314 (PT_TRAP
+ 1) * sizeof(reg
));
316 ret
= set_user_trap(target
, reg
);
320 ret
= user_regset_copyin_ignore(
321 &pos
, &count
, &kbuf
, &ubuf
,
322 (PT_TRAP
+ 1) * sizeof(reg
), -1);
327 static int fpr_get(struct task_struct
*target
, const struct user_regset
*regset
,
328 unsigned int pos
, unsigned int count
,
329 void *kbuf
, void __user
*ubuf
)
335 flush_fp_to_thread(target
);
338 /* copy to local buffer then write that out */
339 for (i
= 0; i
< 32 ; i
++)
340 buf
[i
] = target
->thread
.TS_FPR(i
);
341 memcpy(&buf
[32], &target
->thread
.fpscr
, sizeof(double));
342 return user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
, buf
, 0, -1);
345 BUILD_BUG_ON(offsetof(struct thread_struct
, fpscr
) !=
346 offsetof(struct thread_struct
, TS_FPR(32)));
348 return user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
349 &target
->thread
.fpr
, 0, -1);
353 static int fpr_set(struct task_struct
*target
, const struct user_regset
*regset
,
354 unsigned int pos
, unsigned int count
,
355 const void *kbuf
, const void __user
*ubuf
)
361 flush_fp_to_thread(target
);
364 /* copy to local buffer then write that out */
365 i
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
, buf
, 0, -1);
368 for (i
= 0; i
< 32 ; i
++)
369 target
->thread
.TS_FPR(i
) = buf
[i
];
370 memcpy(&target
->thread
.fpscr
, &buf
[32], sizeof(double));
373 BUILD_BUG_ON(offsetof(struct thread_struct
, fpscr
) !=
374 offsetof(struct thread_struct
, TS_FPR(32)));
376 return user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
377 &target
->thread
.fpr
, 0, -1);
381 #ifdef CONFIG_ALTIVEC
383 * Get/set all the altivec registers vr0..vr31, vscr, vrsave, in one go.
384 * The transfer totals 34 quadword. Quadwords 0-31 contain the
385 * corresponding vector registers. Quadword 32 contains the vscr as the
386 * last word (offset 12) within that quadword. Quadword 33 contains the
387 * vrsave as the first word (offset 0) within the quadword.
389 * This definition of the VMX state is compatible with the current PPC32
390 * ptrace interface. This allows signal handling and ptrace to use the
391 * same structures. This also simplifies the implementation of a bi-arch
392 * (combined (32- and 64-bit) gdb.
395 static int vr_active(struct task_struct
*target
,
396 const struct user_regset
*regset
)
398 flush_altivec_to_thread(target
);
399 return target
->thread
.used_vr
? regset
->n
: 0;
402 static int vr_get(struct task_struct
*target
, const struct user_regset
*regset
,
403 unsigned int pos
, unsigned int count
,
404 void *kbuf
, void __user
*ubuf
)
408 flush_altivec_to_thread(target
);
410 BUILD_BUG_ON(offsetof(struct thread_struct
, vscr
) !=
411 offsetof(struct thread_struct
, vr
[32]));
413 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
414 &target
->thread
.vr
, 0,
415 33 * sizeof(vector128
));
418 * Copy out only the low-order word of vrsave.
424 memset(&vrsave
, 0, sizeof(vrsave
));
425 vrsave
.word
= target
->thread
.vrsave
;
426 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
, &vrsave
,
427 33 * sizeof(vector128
), -1);
433 static int vr_set(struct task_struct
*target
, const struct user_regset
*regset
,
434 unsigned int pos
, unsigned int count
,
435 const void *kbuf
, const void __user
*ubuf
)
439 flush_altivec_to_thread(target
);
441 BUILD_BUG_ON(offsetof(struct thread_struct
, vscr
) !=
442 offsetof(struct thread_struct
, vr
[32]));
444 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
445 &target
->thread
.vr
, 0, 33 * sizeof(vector128
));
446 if (!ret
&& count
> 0) {
448 * We use only the first word of vrsave.
454 memset(&vrsave
, 0, sizeof(vrsave
));
455 vrsave
.word
= target
->thread
.vrsave
;
456 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
, &vrsave
,
457 33 * sizeof(vector128
), -1);
459 target
->thread
.vrsave
= vrsave
.word
;
464 #endif /* CONFIG_ALTIVEC */
468 * Currently to set and and get all the vsx state, you need to call
469 * the fp and VMX calls as well. This only get/sets the lower 32
470 * 128bit VSX registers.
473 static int vsr_active(struct task_struct
*target
,
474 const struct user_regset
*regset
)
476 flush_vsx_to_thread(target
);
477 return target
->thread
.used_vsr
? regset
->n
: 0;
480 static int vsr_get(struct task_struct
*target
, const struct user_regset
*regset
,
481 unsigned int pos
, unsigned int count
,
482 void *kbuf
, void __user
*ubuf
)
487 flush_vsx_to_thread(target
);
489 for (i
= 0; i
< 32 ; i
++)
490 buf
[i
] = target
->thread
.fpr
[i
][TS_VSRLOWOFFSET
];
491 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
492 buf
, 0, 32 * sizeof(double));
497 static int vsr_set(struct task_struct
*target
, const struct user_regset
*regset
,
498 unsigned int pos
, unsigned int count
,
499 const void *kbuf
, const void __user
*ubuf
)
504 flush_vsx_to_thread(target
);
506 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
507 buf
, 0, 32 * sizeof(double));
508 for (i
= 0; i
< 32 ; i
++)
509 target
->thread
.fpr
[i
][TS_VSRLOWOFFSET
] = buf
[i
];
514 #endif /* CONFIG_VSX */
519 * For get_evrregs/set_evrregs functions 'data' has the following layout:
528 static int evr_active(struct task_struct
*target
,
529 const struct user_regset
*regset
)
531 flush_spe_to_thread(target
);
532 return target
->thread
.used_spe
? regset
->n
: 0;
535 static int evr_get(struct task_struct
*target
, const struct user_regset
*regset
,
536 unsigned int pos
, unsigned int count
,
537 void *kbuf
, void __user
*ubuf
)
541 flush_spe_to_thread(target
);
543 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
545 0, sizeof(target
->thread
.evr
));
547 BUILD_BUG_ON(offsetof(struct thread_struct
, acc
) + sizeof(u64
) !=
548 offsetof(struct thread_struct
, spefscr
));
551 ret
= user_regset_copyout(&pos
, &count
, &kbuf
, &ubuf
,
553 sizeof(target
->thread
.evr
), -1);
558 static int evr_set(struct task_struct
*target
, const struct user_regset
*regset
,
559 unsigned int pos
, unsigned int count
,
560 const void *kbuf
, const void __user
*ubuf
)
564 flush_spe_to_thread(target
);
566 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
568 0, sizeof(target
->thread
.evr
));
570 BUILD_BUG_ON(offsetof(struct thread_struct
, acc
) + sizeof(u64
) !=
571 offsetof(struct thread_struct
, spefscr
));
574 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
576 sizeof(target
->thread
.evr
), -1);
580 #endif /* CONFIG_SPE */
584 * These are our native regset flavors.
586 enum powerpc_regset
{
589 #ifdef CONFIG_ALTIVEC
600 static const struct user_regset native_regsets
[] = {
602 .core_note_type
= NT_PRSTATUS
, .n
= ELF_NGREG
,
603 .size
= sizeof(long), .align
= sizeof(long),
604 .get
= gpr_get
, .set
= gpr_set
607 .core_note_type
= NT_PRFPREG
, .n
= ELF_NFPREG
,
608 .size
= sizeof(double), .align
= sizeof(double),
609 .get
= fpr_get
, .set
= fpr_set
611 #ifdef CONFIG_ALTIVEC
613 .core_note_type
= NT_PPC_VMX
, .n
= 34,
614 .size
= sizeof(vector128
), .align
= sizeof(vector128
),
615 .active
= vr_active
, .get
= vr_get
, .set
= vr_set
620 .core_note_type
= NT_PPC_VSX
, .n
= 32,
621 .size
= sizeof(double), .align
= sizeof(double),
622 .active
= vsr_active
, .get
= vsr_get
, .set
= vsr_set
628 .size
= sizeof(u32
), .align
= sizeof(u32
),
629 .active
= evr_active
, .get
= evr_get
, .set
= evr_set
634 static const struct user_regset_view user_ppc_native_view
= {
635 .name
= UTS_MACHINE
, .e_machine
= ELF_ARCH
, .ei_osabi
= ELF_OSABI
,
636 .regsets
= native_regsets
, .n
= ARRAY_SIZE(native_regsets
)
640 #include <linux/compat.h>
642 static int gpr32_get(struct task_struct
*target
,
643 const struct user_regset
*regset
,
644 unsigned int pos
, unsigned int count
,
645 void *kbuf
, void __user
*ubuf
)
647 const unsigned long *regs
= &target
->thread
.regs
->gpr
[0];
648 compat_ulong_t
*k
= kbuf
;
649 compat_ulong_t __user
*u
= ubuf
;
653 if (target
->thread
.regs
== NULL
)
656 if (!FULL_REGS(target
->thread
.regs
)) {
657 /* We have a partial register set. Fill 14-31 with bogus values */
658 for (i
= 14; i
< 32; i
++)
659 target
->thread
.regs
->gpr
[i
] = NV_REG_POISON
;
663 count
/= sizeof(reg
);
666 for (; count
> 0 && pos
< PT_MSR
; --count
)
669 for (; count
> 0 && pos
< PT_MSR
; --count
)
670 if (__put_user((compat_ulong_t
) regs
[pos
++], u
++))
673 if (count
> 0 && pos
== PT_MSR
) {
674 reg
= get_user_msr(target
);
677 else if (__put_user(reg
, u
++))
684 for (; count
> 0 && pos
< PT_REGS_COUNT
; --count
)
687 for (; count
> 0 && pos
< PT_REGS_COUNT
; --count
)
688 if (__put_user((compat_ulong_t
) regs
[pos
++], u
++))
694 count
*= sizeof(reg
);
695 return user_regset_copyout_zero(&pos
, &count
, &kbuf
, &ubuf
,
696 PT_REGS_COUNT
* sizeof(reg
), -1);
699 static int gpr32_set(struct task_struct
*target
,
700 const struct user_regset
*regset
,
701 unsigned int pos
, unsigned int count
,
702 const void *kbuf
, const void __user
*ubuf
)
704 unsigned long *regs
= &target
->thread
.regs
->gpr
[0];
705 const compat_ulong_t
*k
= kbuf
;
706 const compat_ulong_t __user
*u
= ubuf
;
709 if (target
->thread
.regs
== NULL
)
712 CHECK_FULL_REGS(target
->thread
.regs
);
715 count
/= sizeof(reg
);
718 for (; count
> 0 && pos
< PT_MSR
; --count
)
721 for (; count
> 0 && pos
< PT_MSR
; --count
) {
722 if (__get_user(reg
, u
++))
728 if (count
> 0 && pos
== PT_MSR
) {
731 else if (__get_user(reg
, u
++))
733 set_user_msr(target
, reg
);
739 for (; count
> 0 && pos
<= PT_MAX_PUT_REG
; --count
)
741 for (; count
> 0 && pos
< PT_TRAP
; --count
, ++pos
)
744 for (; count
> 0 && pos
<= PT_MAX_PUT_REG
; --count
) {
745 if (__get_user(reg
, u
++))
749 for (; count
> 0 && pos
< PT_TRAP
; --count
, ++pos
)
750 if (__get_user(reg
, u
++))
754 if (count
> 0 && pos
== PT_TRAP
) {
757 else if (__get_user(reg
, u
++))
759 set_user_trap(target
, reg
);
767 count
*= sizeof(reg
);
768 return user_regset_copyin_ignore(&pos
, &count
, &kbuf
, &ubuf
,
769 (PT_TRAP
+ 1) * sizeof(reg
), -1);
773 * These are the regset flavors matching the CONFIG_PPC32 native set.
775 static const struct user_regset compat_regsets
[] = {
777 .core_note_type
= NT_PRSTATUS
, .n
= ELF_NGREG
,
778 .size
= sizeof(compat_long_t
), .align
= sizeof(compat_long_t
),
779 .get
= gpr32_get
, .set
= gpr32_set
782 .core_note_type
= NT_PRFPREG
, .n
= ELF_NFPREG
,
783 .size
= sizeof(double), .align
= sizeof(double),
784 .get
= fpr_get
, .set
= fpr_set
786 #ifdef CONFIG_ALTIVEC
788 .core_note_type
= NT_PPC_VMX
, .n
= 34,
789 .size
= sizeof(vector128
), .align
= sizeof(vector128
),
790 .active
= vr_active
, .get
= vr_get
, .set
= vr_set
795 .core_note_type
= NT_PPC_SPE
, .n
= 35,
796 .size
= sizeof(u32
), .align
= sizeof(u32
),
797 .active
= evr_active
, .get
= evr_get
, .set
= evr_set
802 static const struct user_regset_view user_ppc_compat_view
= {
803 .name
= "ppc", .e_machine
= EM_PPC
, .ei_osabi
= ELF_OSABI
,
804 .regsets
= compat_regsets
, .n
= ARRAY_SIZE(compat_regsets
)
806 #endif /* CONFIG_PPC64 */
808 const struct user_regset_view
*task_user_regset_view(struct task_struct
*task
)
811 if (test_tsk_thread_flag(task
, TIF_32BIT
))
812 return &user_ppc_compat_view
;
814 return &user_ppc_native_view
;
818 void user_enable_single_step(struct task_struct
*task
)
820 struct pt_regs
*regs
= task
->thread
.regs
;
823 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
824 task
->thread
.dbcr0
&= ~DBCR0_BT
;
825 task
->thread
.dbcr0
|= DBCR0_IDM
| DBCR0_IC
;
828 regs
->msr
&= ~MSR_BE
;
832 set_tsk_thread_flag(task
, TIF_SINGLESTEP
);
835 void user_enable_block_step(struct task_struct
*task
)
837 struct pt_regs
*regs
= task
->thread
.regs
;
840 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
841 task
->thread
.dbcr0
&= ~DBCR0_IC
;
842 task
->thread
.dbcr0
= DBCR0_IDM
| DBCR0_BT
;
845 regs
->msr
&= ~MSR_SE
;
849 set_tsk_thread_flag(task
, TIF_SINGLESTEP
);
852 void user_disable_single_step(struct task_struct
*task
)
854 struct pt_regs
*regs
= task
->thread
.regs
;
857 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
859 * The logic to disable single stepping should be as
860 * simple as turning off the Instruction Complete flag.
861 * And, after doing so, if all debug flags are off, turn
862 * off DBCR0(IDM) and MSR(DE) .... Torez
864 task
->thread
.dbcr0
&= ~DBCR0_IC
;
866 * Test to see if any of the DBCR_ACTIVE_EVENTS bits are set.
868 if (!DBCR_ACTIVE_EVENTS(task
->thread
.dbcr0
,
869 task
->thread
.dbcr1
)) {
871 * All debug events were off.....
873 task
->thread
.dbcr0
&= ~DBCR0_IDM
;
874 regs
->msr
&= ~MSR_DE
;
877 regs
->msr
&= ~(MSR_SE
| MSR_BE
);
880 clear_tsk_thread_flag(task
, TIF_SINGLESTEP
);
883 #ifdef CONFIG_HAVE_HW_BREAKPOINT
884 void ptrace_triggered(struct perf_event
*bp
,
885 struct perf_sample_data
*data
, struct pt_regs
*regs
)
887 struct perf_event_attr attr
;
890 * Disable the breakpoint request here since ptrace has defined a
891 * one-shot behaviour for breakpoint exceptions in PPC64.
892 * The SIGTRAP signal is generated automatically for us in do_dabr().
893 * We don't have to do anything about that here
896 attr
.disabled
= true;
897 modify_user_hw_breakpoint(bp
, &attr
);
899 #endif /* CONFIG_HAVE_HW_BREAKPOINT */
901 int ptrace_set_debugreg(struct task_struct
*task
, unsigned long addr
,
904 #ifdef CONFIG_HAVE_HW_BREAKPOINT
906 struct thread_struct
*thread
= &(task
->thread
);
907 struct perf_event
*bp
;
908 struct perf_event_attr attr
;
909 #endif /* CONFIG_HAVE_HW_BREAKPOINT */
911 /* For ppc64 we support one DABR and no IABR's at the moment (ppc64).
912 * For embedded processors we support one DAC and no IAC's at the
918 /* The bottom 3 bits in dabr are flags */
919 if ((data
& ~0x7UL
) >= TASK_SIZE
)
922 #ifndef CONFIG_PPC_ADV_DEBUG_REGS
923 /* For processors using DABR (i.e. 970), the bottom 3 bits are flags.
924 * It was assumed, on previous implementations, that 3 bits were
925 * passed together with the data address, fitting the design of the
926 * DABR register, as follows:
930 * bit 2: Breakpoint translation
932 * Thus, we use them here as so.
935 /* Ensure breakpoint translation bit is set */
936 if (data
&& !(data
& DABR_TRANSLATION
))
938 #ifdef CONFIG_HAVE_HW_BREAKPOINT
939 if (ptrace_get_breakpoints(task
) < 0)
942 bp
= thread
->ptrace_bps
[0];
943 if ((!data
) || !(data
& (DABR_DATA_WRITE
| DABR_DATA_READ
))) {
945 unregister_hw_breakpoint(bp
);
946 thread
->ptrace_bps
[0] = NULL
;
948 ptrace_put_breakpoints(task
);
953 attr
.bp_addr
= data
& ~HW_BREAKPOINT_ALIGN
;
954 arch_bp_generic_fields(data
&
955 (DABR_DATA_WRITE
| DABR_DATA_READ
),
957 ret
= modify_user_hw_breakpoint(bp
, &attr
);
959 ptrace_put_breakpoints(task
);
962 thread
->ptrace_bps
[0] = bp
;
963 ptrace_put_breakpoints(task
);
968 /* Create a new breakpoint request if one doesn't exist already */
969 hw_breakpoint_init(&attr
);
970 attr
.bp_addr
= data
& ~HW_BREAKPOINT_ALIGN
;
971 arch_bp_generic_fields(data
& (DABR_DATA_WRITE
| DABR_DATA_READ
),
974 thread
->ptrace_bps
[0] = bp
= register_user_hw_breakpoint(&attr
,
975 ptrace_triggered
, NULL
, task
);
977 thread
->ptrace_bps
[0] = NULL
;
978 ptrace_put_breakpoints(task
);
982 ptrace_put_breakpoints(task
);
984 #endif /* CONFIG_HAVE_HW_BREAKPOINT */
986 /* Move contents to the DABR register */
987 task
->thread
.dabr
= data
;
988 #else /* CONFIG_PPC_ADV_DEBUG_REGS */
989 /* As described above, it was assumed 3 bits were passed with the data
990 * address, but we will assume only the mode bits will be passed
991 * as to not cause alignment restrictions for DAC-based processors.
994 /* DAC's hold the whole address without any mode flags */
995 task
->thread
.dac1
= data
& ~0x3UL
;
997 if (task
->thread
.dac1
== 0) {
998 dbcr_dac(task
) &= ~(DBCR_DAC1R
| DBCR_DAC1W
);
999 if (!DBCR_ACTIVE_EVENTS(task
->thread
.dbcr0
,
1000 task
->thread
.dbcr1
)) {
1001 task
->thread
.regs
->msr
&= ~MSR_DE
;
1002 task
->thread
.dbcr0
&= ~DBCR0_IDM
;
1007 /* Read or Write bits must be set */
1009 if (!(data
& 0x3UL
))
1012 /* Set the Internal Debugging flag (IDM bit 1) for the DBCR0
1014 task
->thread
.dbcr0
|= DBCR0_IDM
;
1016 /* Check for write and read flags and set DBCR0
1018 dbcr_dac(task
) &= ~(DBCR_DAC1R
|DBCR_DAC1W
);
1020 dbcr_dac(task
) |= DBCR_DAC1R
;
1022 dbcr_dac(task
) |= DBCR_DAC1W
;
1023 task
->thread
.regs
->msr
|= MSR_DE
;
1024 #endif /* CONFIG_PPC_ADV_DEBUG_REGS */
1029 * Called by kernel/ptrace.c when detaching..
1031 * Make sure single step bits etc are not set.
1033 void ptrace_disable(struct task_struct
*child
)
1035 /* make sure the single step bit is not set. */
1036 user_disable_single_step(child
);
1039 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
1040 static long set_intruction_bp(struct task_struct
*child
,
1041 struct ppc_hw_breakpoint
*bp_info
)
1044 int slot1_in_use
= ((child
->thread
.dbcr0
& DBCR0_IAC1
) != 0);
1045 int slot2_in_use
= ((child
->thread
.dbcr0
& DBCR0_IAC2
) != 0);
1046 int slot3_in_use
= ((child
->thread
.dbcr0
& DBCR0_IAC3
) != 0);
1047 int slot4_in_use
= ((child
->thread
.dbcr0
& DBCR0_IAC4
) != 0);
1049 if (dbcr_iac_range(child
) & DBCR_IAC12MODE
)
1051 if (dbcr_iac_range(child
) & DBCR_IAC34MODE
)
1054 if (bp_info
->addr
>= TASK_SIZE
)
1057 if (bp_info
->addr_mode
!= PPC_BREAKPOINT_MODE_EXACT
) {
1059 /* Make sure range is valid. */
1060 if (bp_info
->addr2
>= TASK_SIZE
)
1063 /* We need a pair of IAC regsisters */
1064 if ((!slot1_in_use
) && (!slot2_in_use
)) {
1066 child
->thread
.iac1
= bp_info
->addr
;
1067 child
->thread
.iac2
= bp_info
->addr2
;
1068 child
->thread
.dbcr0
|= DBCR0_IAC1
;
1069 if (bp_info
->addr_mode
==
1070 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE
)
1071 dbcr_iac_range(child
) |= DBCR_IAC12X
;
1073 dbcr_iac_range(child
) |= DBCR_IAC12I
;
1074 #if CONFIG_PPC_ADV_DEBUG_IACS > 2
1075 } else if ((!slot3_in_use
) && (!slot4_in_use
)) {
1077 child
->thread
.iac3
= bp_info
->addr
;
1078 child
->thread
.iac4
= bp_info
->addr2
;
1079 child
->thread
.dbcr0
|= DBCR0_IAC3
;
1080 if (bp_info
->addr_mode
==
1081 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE
)
1082 dbcr_iac_range(child
) |= DBCR_IAC34X
;
1084 dbcr_iac_range(child
) |= DBCR_IAC34I
;
1089 /* We only need one. If possible leave a pair free in
1090 * case a range is needed later
1092 if (!slot1_in_use
) {
1094 * Don't use iac1 if iac1-iac2 are free and either
1095 * iac3 or iac4 (but not both) are free
1097 if (slot2_in_use
|| (slot3_in_use
== slot4_in_use
)) {
1099 child
->thread
.iac1
= bp_info
->addr
;
1100 child
->thread
.dbcr0
|= DBCR0_IAC1
;
1104 if (!slot2_in_use
) {
1106 child
->thread
.iac2
= bp_info
->addr
;
1107 child
->thread
.dbcr0
|= DBCR0_IAC2
;
1108 #if CONFIG_PPC_ADV_DEBUG_IACS > 2
1109 } else if (!slot3_in_use
) {
1111 child
->thread
.iac3
= bp_info
->addr
;
1112 child
->thread
.dbcr0
|= DBCR0_IAC3
;
1113 } else if (!slot4_in_use
) {
1115 child
->thread
.iac4
= bp_info
->addr
;
1116 child
->thread
.dbcr0
|= DBCR0_IAC4
;
1122 child
->thread
.dbcr0
|= DBCR0_IDM
;
1123 child
->thread
.regs
->msr
|= MSR_DE
;
1128 static int del_instruction_bp(struct task_struct
*child
, int slot
)
1132 if ((child
->thread
.dbcr0
& DBCR0_IAC1
) == 0)
1135 if (dbcr_iac_range(child
) & DBCR_IAC12MODE
) {
1136 /* address range - clear slots 1 & 2 */
1137 child
->thread
.iac2
= 0;
1138 dbcr_iac_range(child
) &= ~DBCR_IAC12MODE
;
1140 child
->thread
.iac1
= 0;
1141 child
->thread
.dbcr0
&= ~DBCR0_IAC1
;
1144 if ((child
->thread
.dbcr0
& DBCR0_IAC2
) == 0)
1147 if (dbcr_iac_range(child
) & DBCR_IAC12MODE
)
1148 /* used in a range */
1150 child
->thread
.iac2
= 0;
1151 child
->thread
.dbcr0
&= ~DBCR0_IAC2
;
1153 #if CONFIG_PPC_ADV_DEBUG_IACS > 2
1155 if ((child
->thread
.dbcr0
& DBCR0_IAC3
) == 0)
1158 if (dbcr_iac_range(child
) & DBCR_IAC34MODE
) {
1159 /* address range - clear slots 3 & 4 */
1160 child
->thread
.iac4
= 0;
1161 dbcr_iac_range(child
) &= ~DBCR_IAC34MODE
;
1163 child
->thread
.iac3
= 0;
1164 child
->thread
.dbcr0
&= ~DBCR0_IAC3
;
1167 if ((child
->thread
.dbcr0
& DBCR0_IAC4
) == 0)
1170 if (dbcr_iac_range(child
) & DBCR_IAC34MODE
)
1171 /* Used in a range */
1173 child
->thread
.iac4
= 0;
1174 child
->thread
.dbcr0
&= ~DBCR0_IAC4
;
1183 static int set_dac(struct task_struct
*child
, struct ppc_hw_breakpoint
*bp_info
)
1186 (bp_info
->condition_mode
>> PPC_BREAKPOINT_CONDITION_BE_SHIFT
)
1188 int condition_mode
=
1189 bp_info
->condition_mode
& PPC_BREAKPOINT_CONDITION_MODE
;
1192 if (byte_enable
&& (condition_mode
== 0))
1195 if (bp_info
->addr
>= TASK_SIZE
)
1198 if ((dbcr_dac(child
) & (DBCR_DAC1R
| DBCR_DAC1W
)) == 0) {
1200 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_READ
)
1201 dbcr_dac(child
) |= DBCR_DAC1R
;
1202 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_WRITE
)
1203 dbcr_dac(child
) |= DBCR_DAC1W
;
1204 child
->thread
.dac1
= (unsigned long)bp_info
->addr
;
1205 #if CONFIG_PPC_ADV_DEBUG_DVCS > 0
1207 child
->thread
.dvc1
=
1208 (unsigned long)bp_info
->condition_value
;
1209 child
->thread
.dbcr2
|=
1210 ((byte_enable
<< DBCR2_DVC1BE_SHIFT
) |
1211 (condition_mode
<< DBCR2_DVC1M_SHIFT
));
1214 #ifdef CONFIG_PPC_ADV_DEBUG_DAC_RANGE
1215 } else if (child
->thread
.dbcr2
& DBCR2_DAC12MODE
) {
1216 /* Both dac1 and dac2 are part of a range */
1219 } else if ((dbcr_dac(child
) & (DBCR_DAC2R
| DBCR_DAC2W
)) == 0) {
1221 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_READ
)
1222 dbcr_dac(child
) |= DBCR_DAC2R
;
1223 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_WRITE
)
1224 dbcr_dac(child
) |= DBCR_DAC2W
;
1225 child
->thread
.dac2
= (unsigned long)bp_info
->addr
;
1226 #if CONFIG_PPC_ADV_DEBUG_DVCS > 0
1228 child
->thread
.dvc2
=
1229 (unsigned long)bp_info
->condition_value
;
1230 child
->thread
.dbcr2
|=
1231 ((byte_enable
<< DBCR2_DVC2BE_SHIFT
) |
1232 (condition_mode
<< DBCR2_DVC2M_SHIFT
));
1237 child
->thread
.dbcr0
|= DBCR0_IDM
;
1238 child
->thread
.regs
->msr
|= MSR_DE
;
1243 static int del_dac(struct task_struct
*child
, int slot
)
1246 if ((dbcr_dac(child
) & (DBCR_DAC1R
| DBCR_DAC1W
)) == 0)
1249 child
->thread
.dac1
= 0;
1250 dbcr_dac(child
) &= ~(DBCR_DAC1R
| DBCR_DAC1W
);
1251 #ifdef CONFIG_PPC_ADV_DEBUG_DAC_RANGE
1252 if (child
->thread
.dbcr2
& DBCR2_DAC12MODE
) {
1253 child
->thread
.dac2
= 0;
1254 child
->thread
.dbcr2
&= ~DBCR2_DAC12MODE
;
1256 child
->thread
.dbcr2
&= ~(DBCR2_DVC1M
| DBCR2_DVC1BE
);
1258 #if CONFIG_PPC_ADV_DEBUG_DVCS > 0
1259 child
->thread
.dvc1
= 0;
1261 } else if (slot
== 2) {
1262 if ((dbcr_dac(child
) & (DBCR_DAC2R
| DBCR_DAC2W
)) == 0)
1265 #ifdef CONFIG_PPC_ADV_DEBUG_DAC_RANGE
1266 if (child
->thread
.dbcr2
& DBCR2_DAC12MODE
)
1267 /* Part of a range */
1269 child
->thread
.dbcr2
&= ~(DBCR2_DVC2M
| DBCR2_DVC2BE
);
1271 #if CONFIG_PPC_ADV_DEBUG_DVCS > 0
1272 child
->thread
.dvc2
= 0;
1274 child
->thread
.dac2
= 0;
1275 dbcr_dac(child
) &= ~(DBCR_DAC2R
| DBCR_DAC2W
);
1281 #endif /* CONFIG_PPC_ADV_DEBUG_REGS */
1283 #ifdef CONFIG_PPC_ADV_DEBUG_DAC_RANGE
1284 static int set_dac_range(struct task_struct
*child
,
1285 struct ppc_hw_breakpoint
*bp_info
)
1287 int mode
= bp_info
->addr_mode
& PPC_BREAKPOINT_MODE_MASK
;
1289 /* We don't allow range watchpoints to be used with DVC */
1290 if (bp_info
->condition_mode
)
1294 * Best effort to verify the address range. The user/supervisor bits
1295 * prevent trapping in kernel space, but let's fail on an obvious bad
1296 * range. The simple test on the mask is not fool-proof, and any
1297 * exclusive range will spill over into kernel space.
1299 if (bp_info
->addr
>= TASK_SIZE
)
1301 if (mode
== PPC_BREAKPOINT_MODE_MASK
) {
1303 * dac2 is a bitmask. Don't allow a mask that makes a
1304 * kernel space address from a valid dac1 value
1306 if (~((unsigned long)bp_info
->addr2
) >= TASK_SIZE
)
1310 * For range breakpoints, addr2 must also be a valid address
1312 if (bp_info
->addr2
>= TASK_SIZE
)
1316 if (child
->thread
.dbcr0
&
1317 (DBCR0_DAC1R
| DBCR0_DAC1W
| DBCR0_DAC2R
| DBCR0_DAC2W
))
1320 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_READ
)
1321 child
->thread
.dbcr0
|= (DBCR0_DAC1R
| DBCR0_IDM
);
1322 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_WRITE
)
1323 child
->thread
.dbcr0
|= (DBCR0_DAC1W
| DBCR0_IDM
);
1324 child
->thread
.dac1
= bp_info
->addr
;
1325 child
->thread
.dac2
= bp_info
->addr2
;
1326 if (mode
== PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE
)
1327 child
->thread
.dbcr2
|= DBCR2_DAC12M
;
1328 else if (mode
== PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE
)
1329 child
->thread
.dbcr2
|= DBCR2_DAC12MX
;
1330 else /* PPC_BREAKPOINT_MODE_MASK */
1331 child
->thread
.dbcr2
|= DBCR2_DAC12MM
;
1332 child
->thread
.regs
->msr
|= MSR_DE
;
1336 #endif /* CONFIG_PPC_ADV_DEBUG_DAC_RANGE */
1338 static long ppc_set_hwdebug(struct task_struct
*child
,
1339 struct ppc_hw_breakpoint
*bp_info
)
1341 #ifndef CONFIG_PPC_ADV_DEBUG_REGS
1345 if (bp_info
->version
!= 1)
1347 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
1349 * Check for invalid flags and combinations
1351 if ((bp_info
->trigger_type
== 0) ||
1352 (bp_info
->trigger_type
& ~(PPC_BREAKPOINT_TRIGGER_EXECUTE
|
1353 PPC_BREAKPOINT_TRIGGER_RW
)) ||
1354 (bp_info
->addr_mode
& ~PPC_BREAKPOINT_MODE_MASK
) ||
1355 (bp_info
->condition_mode
&
1356 ~(PPC_BREAKPOINT_CONDITION_MODE
|
1357 PPC_BREAKPOINT_CONDITION_BE_ALL
)))
1359 #if CONFIG_PPC_ADV_DEBUG_DVCS == 0
1360 if (bp_info
->condition_mode
!= PPC_BREAKPOINT_CONDITION_NONE
)
1364 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_EXECUTE
) {
1365 if ((bp_info
->trigger_type
!= PPC_BREAKPOINT_TRIGGER_EXECUTE
) ||
1366 (bp_info
->condition_mode
!= PPC_BREAKPOINT_CONDITION_NONE
))
1368 return set_intruction_bp(child
, bp_info
);
1370 if (bp_info
->addr_mode
== PPC_BREAKPOINT_MODE_EXACT
)
1371 return set_dac(child
, bp_info
);
1373 #ifdef CONFIG_PPC_ADV_DEBUG_DAC_RANGE
1374 return set_dac_range(child
, bp_info
);
1378 #else /* !CONFIG_PPC_ADV_DEBUG_DVCS */
1380 * We only support one data breakpoint
1382 if ((bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_RW
) == 0 ||
1383 (bp_info
->trigger_type
& ~PPC_BREAKPOINT_TRIGGER_RW
) != 0 ||
1384 bp_info
->addr_mode
!= PPC_BREAKPOINT_MODE_EXACT
||
1385 bp_info
->condition_mode
!= PPC_BREAKPOINT_CONDITION_NONE
)
1388 if (child
->thread
.dabr
)
1391 if ((unsigned long)bp_info
->addr
>= TASK_SIZE
)
1394 dabr
= (unsigned long)bp_info
->addr
& ~7UL;
1395 dabr
|= DABR_TRANSLATION
;
1396 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_READ
)
1397 dabr
|= DABR_DATA_READ
;
1398 if (bp_info
->trigger_type
& PPC_BREAKPOINT_TRIGGER_WRITE
)
1399 dabr
|= DABR_DATA_WRITE
;
1401 child
->thread
.dabr
= dabr
;
1404 #endif /* !CONFIG_PPC_ADV_DEBUG_DVCS */
1407 static long ppc_del_hwdebug(struct task_struct
*child
, long addr
, long data
)
1409 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
1413 rc
= del_instruction_bp(child
, (int)data
);
1415 rc
= del_dac(child
, (int)data
- 4);
1418 if (!DBCR_ACTIVE_EVENTS(child
->thread
.dbcr0
,
1419 child
->thread
.dbcr1
)) {
1420 child
->thread
.dbcr0
&= ~DBCR0_IDM
;
1421 child
->thread
.regs
->msr
&= ~MSR_DE
;
1428 if (child
->thread
.dabr
== 0)
1431 child
->thread
.dabr
= 0;
1438 * Here are the old "legacy" powerpc specific getregs/setregs ptrace calls,
1439 * we mark them as obsolete now, they will be removed in a future version
1441 static long arch_ptrace_old(struct task_struct
*child
, long request
,
1442 unsigned long addr
, unsigned long data
)
1444 void __user
*datavp
= (void __user
*) data
;
1447 case PPC_PTRACE_GETREGS
: /* Get GPRs 0 - 31. */
1448 return copy_regset_to_user(child
, &user_ppc_native_view
,
1449 REGSET_GPR
, 0, 32 * sizeof(long),
1452 case PPC_PTRACE_SETREGS
: /* Set GPRs 0 - 31. */
1453 return copy_regset_from_user(child
, &user_ppc_native_view
,
1454 REGSET_GPR
, 0, 32 * sizeof(long),
1457 case PPC_PTRACE_GETFPREGS
: /* Get FPRs 0 - 31. */
1458 return copy_regset_to_user(child
, &user_ppc_native_view
,
1459 REGSET_FPR
, 0, 32 * sizeof(double),
1462 case PPC_PTRACE_SETFPREGS
: /* Set FPRs 0 - 31. */
1463 return copy_regset_from_user(child
, &user_ppc_native_view
,
1464 REGSET_FPR
, 0, 32 * sizeof(double),
1471 long arch_ptrace(struct task_struct
*child
, long request
,
1472 unsigned long addr
, unsigned long data
)
1475 void __user
*datavp
= (void __user
*) data
;
1476 unsigned long __user
*datalp
= datavp
;
1479 /* read the word at location addr in the USER area. */
1480 case PTRACE_PEEKUSR
: {
1481 unsigned long index
, tmp
;
1484 /* convert to index and check */
1487 if ((addr
& 3) || (index
> PT_FPSCR
)
1488 || (child
->thread
.regs
== NULL
))
1491 if ((addr
& 7) || (index
> PT_FPSCR
))
1495 CHECK_FULL_REGS(child
->thread
.regs
);
1496 if (index
< PT_FPR0
) {
1497 tmp
= ptrace_get_reg(child
, (int) index
);
1499 flush_fp_to_thread(child
);
1500 tmp
= ((unsigned long *)child
->thread
.fpr
)
1501 [TS_FPRWIDTH
* (index
- PT_FPR0
)];
1503 ret
= put_user(tmp
, datalp
);
1507 /* write the word at location addr in the USER area */
1508 case PTRACE_POKEUSR
: {
1509 unsigned long index
;
1512 /* convert to index and check */
1515 if ((addr
& 3) || (index
> PT_FPSCR
)
1516 || (child
->thread
.regs
== NULL
))
1519 if ((addr
& 7) || (index
> PT_FPSCR
))
1523 CHECK_FULL_REGS(child
->thread
.regs
);
1524 if (index
< PT_FPR0
) {
1525 ret
= ptrace_put_reg(child
, index
, data
);
1527 flush_fp_to_thread(child
);
1528 ((unsigned long *)child
->thread
.fpr
)
1529 [TS_FPRWIDTH
* (index
- PT_FPR0
)] = data
;
1535 case PPC_PTRACE_GETHWDBGINFO
: {
1536 struct ppc_debug_info dbginfo
;
1538 dbginfo
.version
= 1;
1539 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
1540 dbginfo
.num_instruction_bps
= CONFIG_PPC_ADV_DEBUG_IACS
;
1541 dbginfo
.num_data_bps
= CONFIG_PPC_ADV_DEBUG_DACS
;
1542 dbginfo
.num_condition_regs
= CONFIG_PPC_ADV_DEBUG_DVCS
;
1543 dbginfo
.data_bp_alignment
= 4;
1544 dbginfo
.sizeof_condition
= 4;
1545 dbginfo
.features
= PPC_DEBUG_FEATURE_INSN_BP_RANGE
|
1546 PPC_DEBUG_FEATURE_INSN_BP_MASK
;
1547 #ifdef CONFIG_PPC_ADV_DEBUG_DAC_RANGE
1549 PPC_DEBUG_FEATURE_DATA_BP_RANGE
|
1550 PPC_DEBUG_FEATURE_DATA_BP_MASK
;
1552 #else /* !CONFIG_PPC_ADV_DEBUG_REGS */
1553 dbginfo
.num_instruction_bps
= 0;
1554 dbginfo
.num_data_bps
= 1;
1555 dbginfo
.num_condition_regs
= 0;
1557 dbginfo
.data_bp_alignment
= 8;
1559 dbginfo
.data_bp_alignment
= 4;
1561 dbginfo
.sizeof_condition
= 0;
1562 dbginfo
.features
= 0;
1563 #endif /* CONFIG_PPC_ADV_DEBUG_REGS */
1565 if (!access_ok(VERIFY_WRITE
, datavp
,
1566 sizeof(struct ppc_debug_info
)))
1568 ret
= __copy_to_user(datavp
, &dbginfo
,
1569 sizeof(struct ppc_debug_info
)) ?
1574 case PPC_PTRACE_SETHWDEBUG
: {
1575 struct ppc_hw_breakpoint bp_info
;
1577 if (!access_ok(VERIFY_READ
, datavp
,
1578 sizeof(struct ppc_hw_breakpoint
)))
1580 ret
= __copy_from_user(&bp_info
, datavp
,
1581 sizeof(struct ppc_hw_breakpoint
)) ?
1584 ret
= ppc_set_hwdebug(child
, &bp_info
);
1588 case PPC_PTRACE_DELHWDEBUG
: {
1589 ret
= ppc_del_hwdebug(child
, addr
, data
);
1593 case PTRACE_GET_DEBUGREG
: {
1595 /* We only support one DABR and no IABRS at the moment */
1598 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
1599 ret
= put_user(child
->thread
.dac1
, datalp
);
1601 ret
= put_user(child
->thread
.dabr
, datalp
);
1606 case PTRACE_SET_DEBUGREG
:
1607 ret
= ptrace_set_debugreg(child
, addr
, data
);
1611 case PTRACE_GETREGS64
:
1613 case PTRACE_GETREGS
: /* Get all pt_regs from the child. */
1614 return copy_regset_to_user(child
, &user_ppc_native_view
,
1616 0, sizeof(struct pt_regs
),
1620 case PTRACE_SETREGS64
:
1622 case PTRACE_SETREGS
: /* Set all gp regs in the child. */
1623 return copy_regset_from_user(child
, &user_ppc_native_view
,
1625 0, sizeof(struct pt_regs
),
1628 case PTRACE_GETFPREGS
: /* Get the child FPU state (FPR0...31 + FPSCR) */
1629 return copy_regset_to_user(child
, &user_ppc_native_view
,
1631 0, sizeof(elf_fpregset_t
),
1634 case PTRACE_SETFPREGS
: /* Set the child FPU state (FPR0...31 + FPSCR) */
1635 return copy_regset_from_user(child
, &user_ppc_native_view
,
1637 0, sizeof(elf_fpregset_t
),
1640 #ifdef CONFIG_ALTIVEC
1641 case PTRACE_GETVRREGS
:
1642 return copy_regset_to_user(child
, &user_ppc_native_view
,
1644 0, (33 * sizeof(vector128
) +
1648 case PTRACE_SETVRREGS
:
1649 return copy_regset_from_user(child
, &user_ppc_native_view
,
1651 0, (33 * sizeof(vector128
) +
1656 case PTRACE_GETVSRREGS
:
1657 return copy_regset_to_user(child
, &user_ppc_native_view
,
1659 0, 32 * sizeof(double),
1662 case PTRACE_SETVSRREGS
:
1663 return copy_regset_from_user(child
, &user_ppc_native_view
,
1665 0, 32 * sizeof(double),
1669 case PTRACE_GETEVRREGS
:
1670 /* Get the child spe register state. */
1671 return copy_regset_to_user(child
, &user_ppc_native_view
,
1672 REGSET_SPE
, 0, 35 * sizeof(u32
),
1675 case PTRACE_SETEVRREGS
:
1676 /* Set the child spe register state. */
1677 return copy_regset_from_user(child
, &user_ppc_native_view
,
1678 REGSET_SPE
, 0, 35 * sizeof(u32
),
1682 /* Old reverse args ptrace callss */
1683 case PPC_PTRACE_GETREGS
: /* Get GPRs 0 - 31. */
1684 case PPC_PTRACE_SETREGS
: /* Set GPRs 0 - 31. */
1685 case PPC_PTRACE_GETFPREGS
: /* Get FPRs 0 - 31. */
1686 case PPC_PTRACE_SETFPREGS
: /* Get FPRs 0 - 31. */
1687 ret
= arch_ptrace_old(child
, request
, addr
, data
);
1691 ret
= ptrace_request(child
, request
, addr
, data
);
1698 * We must return the syscall number to actually look up in the table.
1699 * This can be -1L to skip running any syscall at all.
1701 long do_syscall_trace_enter(struct pt_regs
*regs
)
1705 secure_computing(regs
->gpr
[0]);
1707 if (test_thread_flag(TIF_SYSCALL_TRACE
) &&
1708 tracehook_report_syscall_entry(regs
))
1710 * Tracing decided this syscall should not happen.
1711 * We'll return a bogus call number to get an ENOSYS
1712 * error, but leave the original number in regs->gpr[0].
1716 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT
)))
1717 trace_sys_enter(regs
, regs
->gpr
[0]);
1719 if (unlikely(current
->audit_context
)) {
1721 if (!is_32bit_task())
1722 audit_syscall_entry(AUDIT_ARCH_PPC64
,
1724 regs
->gpr
[3], regs
->gpr
[4],
1725 regs
->gpr
[5], regs
->gpr
[6]);
1728 audit_syscall_entry(AUDIT_ARCH_PPC
,
1730 regs
->gpr
[3] & 0xffffffff,
1731 regs
->gpr
[4] & 0xffffffff,
1732 regs
->gpr
[5] & 0xffffffff,
1733 regs
->gpr
[6] & 0xffffffff);
1736 return ret
?: regs
->gpr
[0];
1739 void do_syscall_trace_leave(struct pt_regs
*regs
)
1743 if (unlikely(current
->audit_context
))
1744 audit_syscall_exit((regs
->ccr
&0x10000000)?AUDITSC_FAILURE
:AUDITSC_SUCCESS
,
1747 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT
)))
1748 trace_sys_exit(regs
, regs
->result
);
1750 step
= test_thread_flag(TIF_SINGLESTEP
);
1751 if (step
|| test_thread_flag(TIF_SYSCALL_TRACE
))
1752 tracehook_report_syscall_exit(regs
, step
);