aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/seccomp.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/kernel/seccomp.c b/kernel/seccomp.c
index f8f88ebcb3ba..e15185c28de5 100644
--- a/kernel/seccomp.c
+++ b/kernel/seccomp.c
@@ -643,11 +643,14 @@ static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd,
643 default: { 643 default: {
644 siginfo_t info; 644 siginfo_t info;
645 audit_seccomp(this_syscall, SIGSYS, action); 645 audit_seccomp(this_syscall, SIGSYS, action);
646 /* Show the original registers in the dump. */ 646 /* Dump core only if this is the last remaining thread. */
647 syscall_rollback(current, task_pt_regs(current)); 647 if (get_nr_threads(current) == 1) {
648 /* Trigger a manual coredump since do_exit skips it. */ 648 /* Show the original registers in the dump. */
649 seccomp_init_siginfo(&info, this_syscall, data); 649 syscall_rollback(current, task_pt_regs(current));
650 do_coredump(&info); 650 /* Trigger a manual coredump since do_exit skips it. */
651 seccomp_init_siginfo(&info, this_syscall, data);
652 do_coredump(&info);
653 }
651 do_exit(SIGSYS); 654 do_exit(SIGSYS);
652 } 655 }
653 } 656 }