diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2006-03-28 19:11:16 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 21:36:42 -0500 |
commit | 6b3934ef52712ece50605dfc72e55d00c580831a (patch) | |
tree | 5ec3c4f69a20880f75de6ff8d7d2f67d96328df3 /kernel/signal.c | |
parent | 7001510d0cbf51ad202dd2d0744f54104285cbb9 (diff) |
[PATCH] copy_process: cleanup bad_fork_cleanup_signal
__exit_signal() does important cleanups atomically under ->siglock. It is
also called from copy_process's error path. This is not good, for example we
can't move __unhash_process() under ->siglock for that reason.
We should not mix these 2 paths, just look at ugly 'if (p->sighand)' under
'bad_fork_cleanup_sighand:' label. For copy_process() case it is sufficient
to just backout copy_signal(), nothing more.
Again, nobody can see this task yet. For CLONE_THREAD case we just decrement
signal->count, otherwise nobody can see this ->signal and we can free it
lockless.
This patch assumes it is safe to do exit_thread_group_keys() without
tasklist_lock.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/signal.c')
-rw-r--r-- | kernel/signal.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/kernel/signal.c b/kernel/signal.c index 1d7f4463c32d..54e9ef673e68 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
@@ -395,23 +395,10 @@ void __exit_signal(struct task_struct *tsk) | |||
395 | clear_tsk_thread_flag(tsk,TIF_SIGPENDING); | 395 | clear_tsk_thread_flag(tsk,TIF_SIGPENDING); |
396 | flush_sigqueue(&tsk->pending); | 396 | flush_sigqueue(&tsk->pending); |
397 | if (sig) { | 397 | if (sig) { |
398 | /* | 398 | __cleanup_signal(sig); |
399 | * We are cleaning up the signal_struct here. | ||
400 | */ | ||
401 | exit_thread_group_keys(sig); | ||
402 | kmem_cache_free(signal_cachep, sig); | ||
403 | } | 399 | } |
404 | } | 400 | } |
405 | 401 | ||
406 | void exit_signal(struct task_struct *tsk) | ||
407 | { | ||
408 | atomic_dec(&tsk->signal->live); | ||
409 | |||
410 | write_lock_irq(&tasklist_lock); | ||
411 | __exit_signal(tsk); | ||
412 | write_unlock_irq(&tasklist_lock); | ||
413 | } | ||
414 | |||
415 | /* | 402 | /* |
416 | * Flush all handlers for a task. | 403 | * Flush all handlers for a task. |
417 | */ | 404 | */ |