diff options
author | Neil Horman <nhorman@tuxdriver.com> | 2007-10-17 02:26:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:50 -0400 |
commit | 7dc0b22e3c54f1f4730354fef84a20f5944f6c5e (patch) | |
tree | 8b281ed3315699eb0b21f00b5933b6222add5b5a /arch/sparc64 | |
parent | 8e2b705649e294f43a8cd1ea79e4c594c0bd1d9d (diff) |
core_pattern: ignore RLIMIT_CORE if core_pattern is a pipe
For some time /proc/sys/kernel/core_pattern has been able to set its output
destination as a pipe, allowing a user space helper to receive and
intellegently process a core. This infrastructure however has some
shortcommings which can be enhanced. Specifically:
1) The coredump code in the kernel should ignore RLIMIT_CORE limitation
when core_pattern is a pipe, since file system resources are not being
consumed in this case, unless the user application wishes to save the core,
at which point the app is restricted by usual file system limits and
restrictions.
2) The core_pattern code should be able to parse and pass options to the
user space helper as an argv array. The real core limit of the uid of the
crashing proces should also be passable to the user space helper (since it
is overridden to zero when called).
3) Some miscellaneous bugs need to be cleaned up (specifically the
recognition of a recursive core dump, should the user mode helper itself
crash. Also, the core dump code in the kernel should not wait for the user
mode helper to exit, since the same context is responsible for writing to
the pipe, and a read of the pipe by the user mode helper will result in a
deadlock.
This patch:
Remove the check of RLIMIT_CORE if core_pattern is a pipe. In the event that
core_pattern is a pipe, the entire core will be fed to the user mode helper.
Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Cc: <martin.pitt@ubuntu.com>
Cc: <wwoods@redhat.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/sparc64')
-rw-r--r-- | arch/sparc64/kernel/binfmt_aout32.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/arch/sparc64/kernel/binfmt_aout32.c b/arch/sparc64/kernel/binfmt_aout32.c index c8acbeab49b4..92c1b36a2e16 100644 --- a/arch/sparc64/kernel/binfmt_aout32.c +++ b/arch/sparc64/kernel/binfmt_aout32.c | |||
@@ -35,7 +35,7 @@ | |||
35 | 35 | ||
36 | static int load_aout32_binary(struct linux_binprm *, struct pt_regs * regs); | 36 | static int load_aout32_binary(struct linux_binprm *, struct pt_regs * regs); |
37 | static int load_aout32_library(struct file*); | 37 | static int load_aout32_library(struct file*); |
38 | static int aout32_core_dump(long signr, struct pt_regs * regs, struct file *file); | 38 | static int aout32_core_dump(long signr, struct pt_regs *regs, struct file *file, unsigned long limit); |
39 | 39 | ||
40 | static struct linux_binfmt aout32_format = { | 40 | static struct linux_binfmt aout32_format = { |
41 | .module = THIS_MODULE, | 41 | .module = THIS_MODULE, |
@@ -86,7 +86,7 @@ if (file->f_op->llseek) { \ | |||
86 | * dumping of the process results in another error.. | 86 | * dumping of the process results in another error.. |
87 | */ | 87 | */ |
88 | 88 | ||
89 | static int aout32_core_dump(long signr, struct pt_regs *regs, struct file *file) | 89 | static int aout32_core_dump(long signr, struct pt_regs *regs, struct file *file, unsigned long limit) |
90 | { | 90 | { |
91 | mm_segment_t fs; | 91 | mm_segment_t fs; |
92 | int has_dumped = 0; | 92 | int has_dumped = 0; |
@@ -105,13 +105,11 @@ static int aout32_core_dump(long signr, struct pt_regs *regs, struct file *file) | |||
105 | 105 | ||
106 | /* If the size of the dump file exceeds the rlimit, then see what would happen | 106 | /* If the size of the dump file exceeds the rlimit, then see what would happen |
107 | if we wrote the stack, but not the data area. */ | 107 | if we wrote the stack, but not the data area. */ |
108 | if ((dump.u_dsize+dump.u_ssize) > | 108 | if (dump.u_dsize + dump.u_ssize > limit) |
109 | current->signal->rlim[RLIMIT_CORE].rlim_cur) | ||
110 | dump.u_dsize = 0; | 109 | dump.u_dsize = 0; |
111 | 110 | ||
112 | /* Make sure we have enough room to write the stack and data areas. */ | 111 | /* Make sure we have enough room to write the stack and data areas. */ |
113 | if ((dump.u_ssize) > | 112 | if (dump.u_ssize > limit) |
114 | current->signal->rlim[RLIMIT_CORE].rlim_cur) | ||
115 | dump.u_ssize = 0; | 113 | dump.u_ssize = 0; |
116 | 114 | ||
117 | /* make sure we actually have a data and stack area to dump */ | 115 | /* make sure we actually have a data and stack area to dump */ |