summaryrefslogtreecommitdiffstats
path: root/security/smack
diff options
context:
space:
mode:
authorKonstantin Khlebnikov <k.khlebnikov@samsung.com>2014-08-07 12:52:33 -0400
committerCasey Schaufler <casey@schaufler-ca.com>2014-08-08 17:50:19 -0400
commitfd5c9d230d2ac8a2594dfd15f0cca678fd7a64c7 (patch)
tree966f6e10bb8069e34aba533a32f74390f06e92c3 /security/smack
parent478d085524c57cf4283699f529d5a4c22188ea69 (diff)
Smack: fix behavior of smack_inode_listsecurity
Security operation ->inode_listsecurity is used for generating list of available extended attributes for syscall listxattr. Currently it's used only in nfs4 or if filesystem doesn't provide i_op->listxattr. The list is the set of NULL-terminated names, one after the other. This method must include zero byte at the and into result. Also this function must return length even if string does not fit into output buffer or it is NULL, see similar method in selinux and man listxattr. Signed-off-by: Konstantin Khlebnikov <k.khlebnikov@samsung.com>
Diffstat (limited to 'security/smack')
-rw-r--r--security/smack/smack_lsm.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c
index e6ab307ce86e..b11ab23b328b 100644
--- a/security/smack/smack_lsm.c
+++ b/security/smack/smack_lsm.c
@@ -1122,13 +1122,12 @@ static int smack_inode_getsecurity(const struct inode *inode,
1122static int smack_inode_listsecurity(struct inode *inode, char *buffer, 1122static int smack_inode_listsecurity(struct inode *inode, char *buffer,
1123 size_t buffer_size) 1123 size_t buffer_size)
1124{ 1124{
1125 int len = strlen(XATTR_NAME_SMACK); 1125 int len = sizeof(XATTR_NAME_SMACK);
1126 1126
1127 if (buffer != NULL && len <= buffer_size) { 1127 if (buffer != NULL && len <= buffer_size)
1128 memcpy(buffer, XATTR_NAME_SMACK, len); 1128 memcpy(buffer, XATTR_NAME_SMACK, len);
1129 return len; 1129
1130 } 1130 return len;
1131 return -EINVAL;
1132} 1131}
1133 1132
1134/** 1133/**