diff options
author | Cedric Le Goater <clg@fr.ibm.com> | 2006-12-08 05:37:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:51 -0500 |
commit | 937949d9edbf4049bd41af6c9f92c26280584564 (patch) | |
tree | d0a28f503b082f890cfa1f7fe952fda8fc771752 /kernel/signal.c | |
parent | ef55d53caa055aedee13e77da82740987dd64f2d (diff) |
[PATCH] add process_session() helper routine
Replace occurences of task->signal->session by a new process_session() helper
routine.
It will be useful for pid namespaces to abstract the session pid number.
Signed-off-by: Cedric Le Goater <clg@fr.ibm.com>
Cc: Kirill Korotaev <dev@openvz.org>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Herbert Poetzl <herbert@13thfloor.at>
Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com>
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/signal.c b/kernel/signal.c index ec81defde339..9eac4db60eda 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
@@ -583,7 +583,7 @@ static int check_kill_permission(int sig, struct siginfo *info, | |||
583 | error = -EPERM; | 583 | error = -EPERM; |
584 | if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info))) | 584 | if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info))) |
585 | && ((sig != SIGCONT) || | 585 | && ((sig != SIGCONT) || |
586 | (current->signal->session != t->signal->session)) | 586 | (process_session(current) != process_session(t))) |
587 | && (current->euid ^ t->suid) && (current->euid ^ t->uid) | 587 | && (current->euid ^ t->suid) && (current->euid ^ t->uid) |
588 | && (current->uid ^ t->suid) && (current->uid ^ t->uid) | 588 | && (current->uid ^ t->suid) && (current->uid ^ t->uid) |
589 | && !capable(CAP_KILL)) | 589 | && !capable(CAP_KILL)) |