diff options
author | John Blackwood <john.blackwood@ccur.com> | 2015-12-07 12:50:34 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2015-12-07 18:48:21 +0100 |
commit | 5db4fd8c52810bd9740c1240ebf89223b171aa70 (patch) | |
tree | 213deabc4c5440083bbcd761bf6ac91c098b1f6d /arch/arm64/kernel/ptrace.c | |
parent | arm64: Add trace_hardirqs_off annotation in ret_to_user (diff) | |
download | linux-5db4fd8c52810bd9740c1240ebf89223b171aa70.tar.xz linux-5db4fd8c52810bd9740c1240ebf89223b171aa70.zip |
arm64: Clear out any singlestep state on a ptrace detach operation
Make sure to clear out any ptrace singlestep state when a ptrace(2)
PTRACE_DETACH call is made on arm64 systems.
Otherwise, the previously ptraced task will die off with a SIGTRAP
signal if the debugger just previously singlestepped the ptraced task.
Cc: <stable@vger.kernel.org>
Signed-off-by: John Blackwood <john.blackwood@ccur.com>
[will: added comment to justify why this is in the arch code]
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/kernel/ptrace.c')
-rw-r--r-- | arch/arm64/kernel/ptrace.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm64/kernel/ptrace.c b/arch/arm64/kernel/ptrace.c index 1971f491bb90..ff7f13239515 100644 --- a/arch/arm64/kernel/ptrace.c +++ b/arch/arm64/kernel/ptrace.c @@ -58,6 +58,12 @@ */ void ptrace_disable(struct task_struct *child) { + /* + * This would be better off in core code, but PTRACE_DETACH has + * grown its fair share of arch-specific worts and changing it + * is likely to cause regressions on obscure architectures. + */ + user_disable_single_step(child); } #ifdef CONFIG_HAVE_HW_BREAKPOINT |