summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2017-12-05 17:17:43 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-02-25 11:01:17 +0100
commitcc865060870a16d92923265a8f42454f1bf01187 (patch)
treed084a02345ff0927a086f98081e133a3ce4272f9 /security
parenta04a3d139ba8af2e8f5fd6c5f789e00ea3f4af34 (diff)
downloadlinux-stable-cc865060870a16d92923265a8f42454f1bf01187.tar.gz
linux-stable-cc865060870a16d92923265a8f42454f1bf01187.tar.bz2
linux-stable-cc865060870a16d92923265a8f42454f1bf01187.zip
selinux: skip bounded transition processing if the policy isn't loaded
commit 4b14752ec4e0d87126e636384cf37c8dd9df157c 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>
Diffstat (limited to 'security')
-rw-r--r--security/selinux/ss/services.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c
index a1d3944751b9..3f56e83aeba8 100644
--- a/security/selinux/ss/services.c
+++ b/security/selinux/ss/services.c
@@ -823,6 +823,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;