SELinux: always check SIGCHLD in selinux_task_wait
authorEric Paris <eparis@redhat.com>
Mon, 22 Oct 2007 20:10:31 +0000 (16:10 -0400)
committerJames Morris <jmorris@namei.org>
Mon, 22 Oct 2007 22:47:48 +0000 (08:47 +1000)
commit8a53514043e380aa573baa805298a7727c993985
tree869d2c0f90390814430fc6639914dc8ea4c0c9c6
parent55b70a0300b873c0ec7ea6e33752af56f41250ce
SELinux: always check SIGCHLD in selinux_task_wait

When checking if we can wait on a child we were looking at
p->exit_signal and trying to make the decision based on if the signal
would eventually be allowed.  One big flaw is that p->exit_signal is -1
for NPTL threads and so aignal_to_av was not actually checking SIGCHLD
which is what would have been sent.  Even is exit_signal was set to
something strange it wouldn't change the fact that the child was there
and needed to be waited on.  This patch just assumes wait is based on
SIGCHLD.  Specific permission checks are made when the child actually
attempts to send a signal.

This resolves the problem of things like using GDB on confined domains
such as in RH BZ 232371.  The confined domain did not have permission to
send a generic signal (exit_signal == -1) back to the unconfined GDB.
With this patch the GDB wait works and since the actual signal sent is
allowed everything functions as it should.

Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
security/selinux/hooks.c