diff options
author | Andreas Schwab <schwab@suse.de> | 2008-04-19 12:25:13 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-19 23:03:36 -0400 |
commit | e4cc58944c1e2ce41e3079d4eb60c95e7ce04b2b (patch) | |
tree | 4051adb722a7066b4e4774d3b59af68ed5c52d1c /arch | |
parent | 585468e5d5962660867c269e26f0a4b89a599473 (diff) |
[POWERPC] Add compat handler for PTRACE_GETSIGINFO
Current versions of gdb require a working implementation of
PTRACE_GETSIGINFO for proper watchpoint support. Since struct siginfo
contains pointers it must be converted when passed to a 32-bit debugger.
Signed-off-by: Andreas Schwab <schwab@suse.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/ppc32.h | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/ptrace32.c | 27 |
2 files changed, 29 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/ppc32.h b/arch/powerpc/kernel/ppc32.h index 90e562771791..fda05e2211d6 100644 --- a/arch/powerpc/kernel/ppc32.h +++ b/arch/powerpc/kernel/ppc32.h | |||
@@ -135,4 +135,6 @@ struct ucontext32 { | |||
135 | struct mcontext32 uc_mcontext; | 135 | struct mcontext32 uc_mcontext; |
136 | }; | 136 | }; |
137 | 137 | ||
138 | extern int copy_siginfo_to_user32(struct compat_siginfo __user *d, siginfo_t *s); | ||
139 | |||
138 | #endif /* _PPC64_PPC32_H */ | 140 | #endif /* _PPC64_PPC32_H */ |
diff --git a/arch/powerpc/kernel/ptrace32.c b/arch/powerpc/kernel/ptrace32.c index 4c1de6af4c09..9d30e10970ac 100644 --- a/arch/powerpc/kernel/ptrace32.c +++ b/arch/powerpc/kernel/ptrace32.c | |||
@@ -29,12 +29,15 @@ | |||
29 | #include <linux/security.h> | 29 | #include <linux/security.h> |
30 | #include <linux/signal.h> | 30 | #include <linux/signal.h> |
31 | #include <linux/compat.h> | 31 | #include <linux/compat.h> |
32 | #include <linux/elf.h> | ||
32 | 33 | ||
33 | #include <asm/uaccess.h> | 34 | #include <asm/uaccess.h> |
34 | #include <asm/page.h> | 35 | #include <asm/page.h> |
35 | #include <asm/pgtable.h> | 36 | #include <asm/pgtable.h> |
36 | #include <asm/system.h> | 37 | #include <asm/system.h> |
37 | 38 | ||
39 | #include "ppc32.h" | ||
40 | |||
38 | /* | 41 | /* |
39 | * does not yet catch signals sent when the child dies. | 42 | * does not yet catch signals sent when the child dies. |
40 | * in exit.c or in signal.c. | 43 | * in exit.c or in signal.c. |
@@ -64,6 +67,27 @@ static long compat_ptrace_old(struct task_struct *child, long request, | |||
64 | return -EPERM; | 67 | return -EPERM; |
65 | } | 68 | } |
66 | 69 | ||
70 | static int compat_ptrace_getsiginfo(struct task_struct *child, compat_siginfo_t __user *data) | ||
71 | { | ||
72 | siginfo_t lastinfo; | ||
73 | int error = -ESRCH; | ||
74 | |||
75 | read_lock(&tasklist_lock); | ||
76 | if (likely(child->sighand != NULL)) { | ||
77 | error = -EINVAL; | ||
78 | spin_lock_irq(&child->sighand->siglock); | ||
79 | if (likely(child->last_siginfo != NULL)) { | ||
80 | lastinfo = *child->last_siginfo; | ||
81 | error = 0; | ||
82 | } | ||
83 | spin_unlock_irq(&child->sighand->siglock); | ||
84 | } | ||
85 | read_unlock(&tasklist_lock); | ||
86 | if (!error) | ||
87 | return copy_siginfo_to_user32(data, &lastinfo); | ||
88 | return error; | ||
89 | } | ||
90 | |||
67 | long compat_arch_ptrace(struct task_struct *child, compat_long_t request, | 91 | long compat_arch_ptrace(struct task_struct *child, compat_long_t request, |
68 | compat_ulong_t caddr, compat_ulong_t cdata) | 92 | compat_ulong_t caddr, compat_ulong_t cdata) |
69 | { | 93 | { |
@@ -282,6 +306,9 @@ long compat_arch_ptrace(struct task_struct *child, compat_long_t request, | |||
282 | 0, PT_REGS_COUNT * sizeof(compat_long_t), | 306 | 0, PT_REGS_COUNT * sizeof(compat_long_t), |
283 | compat_ptr(data)); | 307 | compat_ptr(data)); |
284 | 308 | ||
309 | case PTRACE_GETSIGINFO: | ||
310 | return compat_ptrace_getsiginfo(child, compat_ptr(data)); | ||
311 | |||
285 | case PTRACE_GETFPREGS: | 312 | case PTRACE_GETFPREGS: |
286 | case PTRACE_SETFPREGS: | 313 | case PTRACE_SETFPREGS: |
287 | case PTRACE_GETVRREGS: | 314 | case PTRACE_GETVRREGS: |