From: Paul Moore Date: Tue, 5 Dec 2017 22:17:43 +0000 (-0500) Subject: selinux: skip bounded transition processing if the policy isn't loaded X-Git-Tag: v4.14.22~133 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca181454e726e47434566d9a126e9cfc29db48ae;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Paul Moore Acked-by: Stephen Smalley Reviewed-by: James Morris Signed-off-by: Greg Kroah-Hartman --- diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c index 338af05e..c9c031e 100644 --- a/security/selinux/ss/services.c +++ b/security/selinux/ss/services.c @@ -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;