Commit 1f100979 authored by Dmitry Kasatkin's avatar Dmitry Kasatkin Committed by Mimi Zohar

evm: prevent passing integrity check if xattr read fails

This patch fixes a bug, where evm_verify_hmac() returns INTEGRITY_PASS
if inode->i_op->getxattr() returns an error in evm_find_protected_xattrs.
Signed-off-by: default avatarDmitry Kasatkin <d.kasatkin@samsung.com>
parent e7d021e2
...@@ -126,14 +126,15 @@ static enum integrity_status evm_verify_hmac(struct dentry *dentry, ...@@ -126,14 +126,15 @@ static enum integrity_status evm_verify_hmac(struct dentry *dentry,
rc = vfs_getxattr_alloc(dentry, XATTR_NAME_EVM, (char **)&xattr_data, 0, rc = vfs_getxattr_alloc(dentry, XATTR_NAME_EVM, (char **)&xattr_data, 0,
GFP_NOFS); GFP_NOFS);
if (rc <= 0) { if (rc <= 0) {
if (rc == 0) evm_status = INTEGRITY_FAIL;
evm_status = INTEGRITY_FAIL; /* empty */ if (rc == -ENODATA) {
else if (rc == -ENODATA) {
rc = evm_find_protected_xattrs(dentry); rc = evm_find_protected_xattrs(dentry);
if (rc > 0) if (rc > 0)
evm_status = INTEGRITY_NOLABEL; evm_status = INTEGRITY_NOLABEL;
else if (rc == 0) else if (rc == 0)
evm_status = INTEGRITY_NOXATTRS; /* new file */ evm_status = INTEGRITY_NOXATTRS; /* new file */
} else if (rc == -EOPNOTSUPP) {
evm_status = INTEGRITY_UNKNOWN;
} }
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment