diff options
author | Mimi Zohar <zohar@linux.vnet.ibm.com> | 2011-05-13 12:53:38 -0400 |
---|---|---|
committer | Mimi Zohar <zohar@linux.vnet.ibm.com> | 2011-07-18 12:29:50 -0400 |
commit | 817b54aa45db03437c6d09a7693fc6926eb8e822 (patch) | |
tree | 03d43f3abfbd8670e3a30a33ef868ec7705ef2c4 /include/linux/evm.h | |
parent | 7102ebcd65c1cdb5d5a87c7c5cf7a46f5afb0cac (diff) |
evm: add evm_inode_setattr to prevent updating an invalid security.evm
Permit changing of security.evm only when valid, unless in fixmode.
Reported-by: Roberto Sassu <roberto.sassu@polito.it>
Signed-off-by: Mimi Zohar <zohar@us.ibm.com>
Diffstat (limited to 'include/linux/evm.h')
-rw-r--r-- | include/linux/evm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/evm.h b/include/linux/evm.h index 6d4e89b020c5..db5556dcdd27 100644 --- a/include/linux/evm.h +++ b/include/linux/evm.h | |||
@@ -19,6 +19,7 @@ extern enum integrity_status evm_verifyxattr(struct dentry *dentry, | |||
19 | void *xattr_value, | 19 | void *xattr_value, |
20 | size_t xattr_value_len, | 20 | size_t xattr_value_len, |
21 | struct integrity_iint_cache *iint); | 21 | struct integrity_iint_cache *iint); |
22 | extern int evm_inode_setattr(struct dentry *dentry, struct iattr *attr); | ||
22 | extern void evm_inode_post_setattr(struct dentry *dentry, int ia_valid); | 23 | extern void evm_inode_post_setattr(struct dentry *dentry, int ia_valid); |
23 | extern int evm_inode_setxattr(struct dentry *dentry, const char *name, | 24 | extern int evm_inode_setxattr(struct dentry *dentry, const char *name, |
24 | const void *value, size_t size); | 25 | const void *value, size_t size); |
@@ -44,6 +45,11 @@ static inline enum integrity_status evm_verifyxattr(struct dentry *dentry, | |||
44 | } | 45 | } |
45 | #endif | 46 | #endif |
46 | 47 | ||
48 | static int evm_inode_setattr(struct dentry *dentry, struct iattr *attr) | ||
49 | { | ||
50 | return 0; | ||
51 | } | ||
52 | |||
47 | static inline void evm_inode_post_setattr(struct dentry *dentry, int ia_valid) | 53 | static inline void evm_inode_post_setattr(struct dentry *dentry, int ia_valid) |
48 | { | 54 | { |
49 | return; | 55 | return; |