mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6: Smack: check for SMACK xattr validity in smack_inode_setxattr
This commit is contained in:
commit
62f2730a11
1 changed files with 6 additions and 5 deletions
|
@ -609,8 +609,12 @@ static int smack_inode_setxattr(struct dentry *dentry, const char *name,
|
||||||
strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
|
strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
|
||||||
if (!capable(CAP_MAC_ADMIN))
|
if (!capable(CAP_MAC_ADMIN))
|
||||||
rc = -EPERM;
|
rc = -EPERM;
|
||||||
/* a label cannot be void and cannot begin with '-' */
|
/*
|
||||||
if (size == 0 || (size > 0 && ((char *)value)[0] == '-'))
|
* check label validity here so import wont fail on
|
||||||
|
* post_setxattr
|
||||||
|
*/
|
||||||
|
if (size == 0 || size >= SMK_LABELLEN ||
|
||||||
|
smk_import(value, size) == NULL)
|
||||||
rc = -EINVAL;
|
rc = -EINVAL;
|
||||||
} else
|
} else
|
||||||
rc = cap_inode_setxattr(dentry, name, value, size, flags);
|
rc = cap_inode_setxattr(dentry, name, value, size, flags);
|
||||||
|
@ -644,9 +648,6 @@ static void smack_inode_post_setxattr(struct dentry *dentry, const char *name,
|
||||||
if (strcmp(name, XATTR_NAME_SMACK))
|
if (strcmp(name, XATTR_NAME_SMACK))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (size >= SMK_LABELLEN)
|
|
||||||
return;
|
|
||||||
|
|
||||||
isp = dentry->d_inode->i_security;
|
isp = dentry->d_inode->i_security;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue