* [PATCH 1/1] coredump: use task comm instead of (unknown)
[not found] <4DC0FFAB.1000805@gmail.com>
@ 2011-05-04 7:32 ` Jiri Slaby
2011-05-05 22:06 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Jiri Slaby @ 2011-05-04 7:32 UTC (permalink / raw)
To: akpm
Cc: linux-mm, linux-fsdevel, linux-kernel, jirislaby, Alan Cox,
Al Viro, Andi Kleen
If we don't know the file corresponding to the binary (i.e. exe_file
is unknown), use "task->comm (path unknown)" instead of simple
"(unknown)" as suggested by ak.
The fallback is the same as %e except it will append "(path unknown)".
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Andi Kleen <andi@firstfloor.org>
---
fs/exec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/exec.c b/fs/exec.c
index 5ee7562..0a4d281 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -1555,7 +1555,7 @@ static int cn_print_exe_file(struct core_name *cn)
exe_file = get_mm_exe_file(current->mm);
if (!exe_file)
- return cn_printf(cn, "(unknown)");
+ return cn_printf(cn, "%s (path unknown)", current->comm);
pathbuf = kmalloc(PATH_MAX, GFP_TEMPORARY);
if (!pathbuf) {
--
1.7.4.2
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] coredump: use task comm instead of (unknown)
2011-05-04 7:32 ` [PATCH 1/1] coredump: use task comm instead of (unknown) Jiri Slaby
@ 2011-05-05 22:06 ` Andrew Morton
2011-05-06 6:01 ` Jiri Slaby
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2011-05-05 22:06 UTC (permalink / raw)
To: Jiri Slaby
Cc: linux-mm, linux-fsdevel, linux-kernel, jirislaby, Alan Cox,
Al Viro, Andi Kleen, John Stultz
On Wed, 4 May 2011 09:32:34 +0200
Jiri Slaby <jslaby@suse.cz> wrote:
> If we don't know the file corresponding to the binary (i.e. exe_file
> is unknown), use "task->comm (path unknown)" instead of simple
> "(unknown)" as suggested by ak.
>
> The fallback is the same as %e except it will append "(path unknown)".
>
> Signed-off-by: Jiri Slaby <jslaby@suse.cz>
> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
> Cc: Al Viro <viro@zeniv.linux.org.uk>
> Cc: Andi Kleen <andi@firstfloor.org>
> ---
> fs/exec.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/fs/exec.c b/fs/exec.c
> index 5ee7562..0a4d281 100644
> --- a/fs/exec.c
> +++ b/fs/exec.c
> @@ -1555,7 +1555,7 @@ static int cn_print_exe_file(struct core_name *cn)
>
> exe_file = get_mm_exe_file(current->mm);
> if (!exe_file)
> - return cn_printf(cn, "(unknown)");
> + return cn_printf(cn, "%s (path unknown)", current->comm);
>
> pathbuf = kmalloc(PATH_MAX, GFP_TEMPORARY);
> if (!pathbuf) {
Direct access to current->comm is racy since we added
prctl(PR_SET_NAME).
Hopefully John Stultz will soon be presenting us with a %p modifier for
displaying task_struct.comm.
But we should get this settled pretty promptly as this is a form of
userspace-visible API. Use get_task_comm() for now.
Also, there's nothing which prevents userspace from rewriting
task->comm to something which contains slashes (this seems bad). If
that is done, your patch will do Bad Things - it should be modified to
use cn_print_exe_file()'s slash-overwriting codepath.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] coredump: use task comm instead of (unknown)
2011-05-05 22:06 ` Andrew Morton
@ 2011-05-06 6:01 ` Jiri Slaby
0 siblings, 0 replies; 3+ messages in thread
From: Jiri Slaby @ 2011-05-06 6:01 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-mm, linux-fsdevel, linux-kernel, jirislaby, Alan Cox,
Al Viro, Andi Kleen, John Stultz, Oleg Nesterov
Ccing Oleg.
On 05/06/2011 12:06 AM, Andrew Morton wrote:
> On Wed, 4 May 2011 09:32:34 +0200
> Jiri Slaby <jslaby@suse.cz> wrote:
>
>> If we don't know the file corresponding to the binary (i.e. exe_file
>> is unknown), use "task->comm (path unknown)" instead of simple
>> "(unknown)" as suggested by ak.
>>
>> The fallback is the same as %e except it will append "(path unknown)".
>>
>> Signed-off-by: Jiri Slaby <jslaby@suse.cz>
>> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
>> Cc: Al Viro <viro@zeniv.linux.org.uk>
>> Cc: Andi Kleen <andi@firstfloor.org>
>> ---
>> fs/exec.c | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/fs/exec.c b/fs/exec.c
>> index 5ee7562..0a4d281 100644
>> --- a/fs/exec.c
>> +++ b/fs/exec.c
>> @@ -1555,7 +1555,7 @@ static int cn_print_exe_file(struct core_name *cn)
>>
>> exe_file = get_mm_exe_file(current->mm);
>> if (!exe_file)
>> - return cn_printf(cn, "(unknown)");
>> + return cn_printf(cn, "%s (path unknown)", current->comm);
>>
>> pathbuf = kmalloc(PATH_MAX, GFP_TEMPORARY);
>> if (!pathbuf) {
>
> Direct access to current->comm is racy since we added
> prctl(PR_SET_NAME).
>
> Hopefully John Stultz will soon be presenting us with a %p modifier for
> displaying task_struct.comm.
Then just make sure, you won't nest alloc_lock (task_lock) into siglock.
> But we should get this settled pretty promptly as this is a form of
> userspace-visible API. Use get_task_comm() for now.
I thought about using get_task_comm, but was not sure, if it is safe to
task_lock() at that place. Note that this is copied from %e.
> Also, there's nothing which prevents userspace from rewriting
> task->comm to something which contains slashes (this seems bad). If
> that is done, your patch will do Bad Things - it should be modified to
> use cn_print_exe_file()'s slash-overwriting codepath.
%E (cn_print_exe_file) does exactly what %e (format_corename) does. So
if this is really broken in the two ways, we should fix both the old %e
and the new %E.
I'm not sure whether at this point when the task is being killed and
dumped, it can still change comm?
For the slashes, I agree. That should be fixed in both cases.
thanks,
--
js
suse labs
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-05-06 6:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <4DC0FFAB.1000805@gmail.com>
2011-05-04 7:32 ` [PATCH 1/1] coredump: use task comm instead of (unknown) Jiri Slaby
2011-05-05 22:06 ` Andrew Morton
2011-05-06 6:01 ` Jiri Slaby
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox