aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux/hooks.c
diff options
context:
space:
mode:
authorPaul Moore <[email protected]>2016-04-18 20:41:38 +0000
committerPaul Moore <[email protected]>2016-04-19 20:37:27 +0000
commit1ac42476263eec99fb2d3c31ee946cb44e80ddd5 (patch)
treed69cdac4dc64a6333de68d51b9697f273fb8c45c /security/selinux/hooks.c
parentselinux: delay inode label lookup as long as possible (diff)
downloadkernel-1ac42476263eec99fb2d3c31ee946cb44e80ddd5.tar.gz
kernel-1ac42476263eec99fb2d3c31ee946cb44e80ddd5.zip
selinux: check ss_initialized before revalidating an inode label
There is no point in trying to revalidate an inode's security label if the security server is not yet initialized. Signed-off-by: Paul Moore <[email protected]>
Diffstat (limited to 'security/selinux/hooks.c')
-rw-r--r--security/selinux/hooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index b09aad7ad423..474011c46bbd 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -259,7 +259,7 @@ static int __inode_security_revalidate(struct inode *inode,
might_sleep_if(may_sleep);
- if (isec->initialized != LABEL_INITIALIZED) {
+ if (ss_initialized && isec->initialized != LABEL_INITIALIZED) {
if (!may_sleep)
return -ECHILD;