2011-03-09 22:38:26 +03:00
|
|
|
/*
|
|
|
|
* evm.h
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 IBM Corporation
|
|
|
|
* Author: Mimi Zohar <zohar@us.ibm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_EVM_H
|
|
|
|
#define _LINUX_EVM_H
|
|
|
|
|
|
|
|
#include <linux/integrity.h>
|
2011-03-09 22:40:44 +03:00
|
|
|
#include <linux/xattr.h>
|
2011-03-09 22:38:26 +03:00
|
|
|
|
2011-05-06 12:34:13 +04:00
|
|
|
struct integrity_iint_cache;
|
|
|
|
|
2011-03-09 22:38:26 +03:00
|
|
|
#ifdef CONFIG_EVM
|
|
|
|
extern enum integrity_status evm_verifyxattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name,
|
|
|
|
void *xattr_value,
|
2011-05-06 12:34:13 +04:00
|
|
|
size_t xattr_value_len,
|
|
|
|
struct integrity_iint_cache *iint);
|
2011-05-13 20:53:38 +04:00
|
|
|
extern int evm_inode_setattr(struct dentry *dentry, struct iattr *attr);
|
2011-03-09 22:39:57 +03:00
|
|
|
extern void evm_inode_post_setattr(struct dentry *dentry, int ia_valid);
|
2011-03-09 22:38:26 +03:00
|
|
|
extern int evm_inode_setxattr(struct dentry *dentry, const char *name,
|
|
|
|
const void *value, size_t size);
|
|
|
|
extern void evm_inode_post_setxattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name,
|
|
|
|
const void *xattr_value,
|
|
|
|
size_t xattr_value_len);
|
|
|
|
extern int evm_inode_removexattr(struct dentry *dentry, const char *xattr_name);
|
2011-03-09 22:39:18 +03:00
|
|
|
extern void evm_inode_post_removexattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name);
|
2011-03-09 22:40:44 +03:00
|
|
|
extern int evm_inode_init_security(struct inode *inode,
|
|
|
|
const struct xattr *xattr_array,
|
|
|
|
struct xattr *evm);
|
2011-08-19 02:07:44 +04:00
|
|
|
#ifdef CONFIG_FS_POSIX_ACL
|
|
|
|
extern int posix_xattr_acl(const char *xattrname);
|
|
|
|
#else
|
|
|
|
static inline int posix_xattr_acl(const char *xattrname)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2011-03-09 22:38:26 +03:00
|
|
|
#else
|
|
|
|
#ifdef CONFIG_INTEGRITY
|
|
|
|
static inline enum integrity_status evm_verifyxattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name,
|
|
|
|
void *xattr_value,
|
2011-05-06 12:34:13 +04:00
|
|
|
size_t xattr_value_len,
|
|
|
|
struct integrity_iint_cache *iint)
|
2011-03-09 22:38:26 +03:00
|
|
|
{
|
|
|
|
return INTEGRITY_UNKNOWN;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-08-11 08:22:51 +04:00
|
|
|
static inline int evm_inode_setattr(struct dentry *dentry, struct iattr *attr)
|
2011-05-13 20:53:38 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-09 22:39:57 +03:00
|
|
|
static inline void evm_inode_post_setattr(struct dentry *dentry, int ia_valid)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-09 22:38:26 +03:00
|
|
|
static inline int evm_inode_setxattr(struct dentry *dentry, const char *name,
|
|
|
|
const void *value, size_t size)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void evm_inode_post_setxattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name,
|
|
|
|
const void *xattr_value,
|
|
|
|
size_t xattr_value_len)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int evm_inode_removexattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2011-03-09 22:39:18 +03:00
|
|
|
|
|
|
|
static inline void evm_inode_post_removexattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-09 22:40:44 +03:00
|
|
|
static inline int evm_inode_init_security(struct inode *inode,
|
|
|
|
const struct xattr *xattr_array,
|
|
|
|
struct xattr *evm)
|
|
|
|
{
|
2011-08-11 08:22:52 +04:00
|
|
|
return 0;
|
2011-03-09 22:40:44 +03:00
|
|
|
}
|
|
|
|
|
2013-03-26 00:12:27 +04:00
|
|
|
#endif /* CONFIG_EVM */
|
2011-03-09 22:38:26 +03:00
|
|
|
#endif /* LINUX_EVM_H */
|