aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux/ss/policydb.c
diff options
context:
space:
mode:
authorWilliam Roberts <william.c.roberts@intel.com>2016-08-30 09:28:11 -0700
committerPaul Moore <paul@paul-moore.com>2016-08-30 15:45:50 -0400
commit7c686af071ade663d0995aa30b262495a6c68c88 (patch)
treedc9d17f0b475edc7c371475a33fa8683eb3802cd /security/selinux/ss/policydb.c
parentselinux: initialize structures (diff)
downloadlinux-dev-7c686af071ade663d0995aa30b262495a6c68c88.tar.xz
linux-dev-7c686af071ade663d0995aa30b262495a6c68c88.zip
selinux: fix overflow and 0 length allocations
Throughout the SELinux LSM, values taken from sepolicy are used in places where length == 0 or length == <saturated> matter, find and fix these. Signed-off-by: William Roberts <william.c.roberts@intel.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/ss/policydb.c')
-rw-r--r--security/selinux/ss/policydb.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
index 4b243855ed7b..8c661f0451ec 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -1094,6 +1094,9 @@ static int str_read(char **strp, gfp_t flags, void *fp, u32 len)
int rc;
char *str;
+ if ((len == 0) || (len == (u32)-1))
+ return -EINVAL;
+
str = kmalloc(len + 1, flags);
if (!str)
return -ENOMEM;