diff options
author | David Quigley <dpquigl@tycho.nsa.gov> | 2006-06-30 04:55:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-30 14:25:37 -0400 |
commit | 8f95dc58d0505516f5cc212a966aea2f2cdb5e44 (patch) | |
tree | 2a57ad36db88621ee079fffe34b1cf9bff62b1f4 /kernel/signal.c | |
parent | f9008e4c5c525941967b67777945aa6266ab6326 (diff) |
[PATCH] SELinux: add security hook call to kill_proc_info_as_uid
This patch adds a call to the extended security_task_kill hook introduced by
the prior patch to the kill_proc_info_as_uid function so that these signals
can be properly mediated by security modules. It also updates the existing
hook call in check_kill_permission.
Signed-off-by: David Quigley <dpquigl@tycho.nsa.gov>
Signed-off-by: James Morris <jmorris@namei.org>
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Cc: Chris Wright <chrisw@sous-sol.org>
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 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/kernel/signal.c b/kernel/signal.c index 52adf53929f6..477d11adf3d1 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
@@ -584,7 +584,7 @@ static int check_kill_permission(int sig, struct siginfo *info, | |||
584 | && !capable(CAP_KILL)) | 584 | && !capable(CAP_KILL)) |
585 | return error; | 585 | return error; |
586 | 586 | ||
587 | error = security_task_kill(t, info, sig); | 587 | error = security_task_kill(t, info, sig, 0); |
588 | if (!error) | 588 | if (!error) |
589 | audit_signal_info(sig, t); /* Let audit system see the signal */ | 589 | audit_signal_info(sig, t); /* Let audit system see the signal */ |
590 | return error; | 590 | return error; |
@@ -1107,7 +1107,7 @@ kill_proc_info(int sig, struct siginfo *info, pid_t pid) | |||
1107 | 1107 | ||
1108 | /* like kill_proc_info(), but doesn't use uid/euid of "current" */ | 1108 | /* like kill_proc_info(), but doesn't use uid/euid of "current" */ |
1109 | int kill_proc_info_as_uid(int sig, struct siginfo *info, pid_t pid, | 1109 | int kill_proc_info_as_uid(int sig, struct siginfo *info, pid_t pid, |
1110 | uid_t uid, uid_t euid) | 1110 | uid_t uid, uid_t euid, u32 secid) |
1111 | { | 1111 | { |
1112 | int ret = -EINVAL; | 1112 | int ret = -EINVAL; |
1113 | struct task_struct *p; | 1113 | struct task_struct *p; |
@@ -1127,6 +1127,9 @@ int kill_proc_info_as_uid(int sig, struct siginfo *info, pid_t pid, | |||
1127 | ret = -EPERM; | 1127 | ret = -EPERM; |
1128 | goto out_unlock; | 1128 | goto out_unlock; |
1129 | } | 1129 | } |
1130 | ret = security_task_kill(p, info, sig, secid); | ||
1131 | if (ret) | ||
1132 | goto out_unlock; | ||
1130 | if (sig && p->sighand) { | 1133 | if (sig && p->sighand) { |
1131 | unsigned long flags; | 1134 | unsigned long flags; |
1132 | spin_lock_irqsave(&p->sighand->siglock, flags); | 1135 | spin_lock_irqsave(&p->sighand->siglock, flags); |