1
0
Fork 0

selinux: skip bounded transition processing if the policy isn't loaded

commit 4b14752ec4 upstream.

We can't do anything reasonable in security_bounded_transition() if we
don't have a policy loaded, and in fact we could run into problems
with some of the code inside expecting a policy.  Fix these problems
like we do many others in security/selinux/ss/services.c by checking
to see if the policy is loaded (ss_initialized) and returning quickly
if it isn't.

Reported-by: syzbot <syzkaller-bugs@googlegroups.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
Reviewed-by: James Morris <james.l.morris@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
pull/10/head
Paul Moore 2017-12-05 17:17:43 -05:00 committed by Greg Kroah-Hartman
parent 116df867db
commit ca181454e7
1 changed files with 3 additions and 0 deletions

View File

@ -867,6 +867,9 @@ int security_bounded_transition(u32 old_sid, u32 new_sid)
int index;
int rc;
if (!ss_initialized)
return 0;
read_lock(&policy_rwlock);
rc = -EINVAL;