Skip to content

Commit

Permalink
smack: Handle SMACK64TRANSMUTE in smack_inode_setsecurity()
Browse files Browse the repository at this point in the history
[ Upstream commit ac02f00 ]

If the SMACK64TRANSMUTE xattr is provided, and the inode is a directory,
update the in-memory inode flags by setting SMK_INODE_TRANSMUTE.

Cc: stable@vger.kernel.org
Fixes: 5c6d112 ("Smack: Transmute labels on specified directories") # v2.6.38.x
Signed-off-by: Roberto Sassu <roberto.sassu@huawei.com>
Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
robertosassu authored and gregkh committed Apr 3, 2024
1 parent 9601f19 commit 36a0a68
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions security/smack/smack_lsm.c
Expand Up @@ -2854,6 +2854,15 @@ static int smack_inode_setsecurity(struct inode *inode, const char *name,
if (value == NULL || size > SMK_LONGLABEL || size == 0)
return -EINVAL;

if (strcmp(name, XATTR_SMACK_TRANSMUTE) == 0) {
if (!S_ISDIR(inode->i_mode) || size != TRANS_TRUE_SIZE ||
strncmp(value, TRANS_TRUE, TRANS_TRUE_SIZE) != 0)
return -EINVAL;

nsp->smk_flags |= SMK_INODE_TRANSMUTE;
return 0;
}

skp = smk_import_entry(value, size);
if (IS_ERR(skp))
return PTR_ERR(skp);
Expand Down

0 comments on commit 36a0a68

Please sign in to comment.