diff options
author | Pankaj Kumar <pankaj.k2@samsung.com> | 2013-12-13 04:42:22 -0500 |
---|---|---|
committer | Casey Schaufler <casey@schaufler-ca.com> | 2014-04-11 17:34:52 -0400 |
commit | 5e9ab593c2da3064136ffa1d7f712d0e957e1958 (patch) | |
tree | 118dec536c673d54ddeb44e7f917e53dd9590b9c /security | |
parent | 668678185247303450e60df14569f94cf5775fea (diff) |
bugfix patch for SMACK
1. In order to remove any SMACK extended attribute from a file, a user
should have CAP_MAC_ADMIN capability. But user without having this
capability is able to remove SMACK64MMAP security attribute.
2. While validating size and value of smack extended attribute in
smack_inode_setsecurity hook, wrong error code is returned.
Signed-off-by: Pankaj Kumar <pamkaj.k2@samsung.com>
Signed-off-by: Himanshu Shukla <himanshu.sh@samsung.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/smack/smack_lsm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 787dcf12f15c..9a99f3c485cb 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c | |||
@@ -1018,7 +1018,7 @@ static int smack_inode_removexattr(struct dentry *dentry, const char *name) | |||
1018 | strcmp(name, XATTR_NAME_SMACKIPOUT) == 0 || | 1018 | strcmp(name, XATTR_NAME_SMACKIPOUT) == 0 || |
1019 | strcmp(name, XATTR_NAME_SMACKEXEC) == 0 || | 1019 | strcmp(name, XATTR_NAME_SMACKEXEC) == 0 || |
1020 | strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0 || | 1020 | strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0 || |
1021 | strcmp(name, XATTR_NAME_SMACKMMAP)) { | 1021 | strcmp(name, XATTR_NAME_SMACKMMAP) == 0) { |
1022 | if (!smack_privileged(CAP_MAC_ADMIN)) | 1022 | if (!smack_privileged(CAP_MAC_ADMIN)) |
1023 | rc = -EPERM; | 1023 | rc = -EPERM; |
1024 | } else | 1024 | } else |
@@ -2156,7 +2156,7 @@ static int smack_inode_setsecurity(struct inode *inode, const char *name, | |||
2156 | int rc = 0; | 2156 | int rc = 0; |
2157 | 2157 | ||
2158 | if (value == NULL || size > SMK_LONGLABEL || size == 0) | 2158 | if (value == NULL || size > SMK_LONGLABEL || size == 0) |
2159 | return -EACCES; | 2159 | return -EINVAL; |
2160 | 2160 | ||
2161 | skp = smk_import_entry(value, size); | 2161 | skp = smk_import_entry(value, size); |
2162 | if (skp == NULL) | 2162 | if (skp == NULL) |