2011-03-09 19:38:26 +00: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 19:40:44 +00:00
|
|
|
#include <linux/xattr.h>
|
2011-03-09 19:38:26 +00:00
|
|
|
|
2011-05-06 08:34:13 +00:00
|
|
|
struct integrity_iint_cache;
|
|
|
|
|
2011-03-09 19:38:26 +00:00
|
|
|
#ifdef CONFIG_EVM
|
2015-10-22 18:26:32 +00:00
|
|
|
extern int evm_set_key(void *key, size_t keylen);
|
2011-03-09 19:38:26 +00:00
|
|
|
extern enum integrity_status evm_verifyxattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name,
|
|
|
|
void *xattr_value,
|
2011-05-06 08:34:13 +00:00
|
|
|
size_t xattr_value_len,
|
|
|
|
struct integrity_iint_cache *iint);
|
2011-05-13 16:53:38 +00:00
|
|
|
extern int evm_inode_setattr(struct dentry *dentry, struct iattr *attr);
|
2011-03-09 19:39:57 +00:00
|
|
|
extern void evm_inode_post_setattr(struct dentry *dentry, int ia_valid);
|
2011-03-09 19:38:26 +00: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 19:39:18 +00:00
|
|
|
extern void evm_inode_post_removexattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name);
|
2011-03-09 19:40:44 +00:00
|
|
|
extern int evm_inode_init_security(struct inode *inode,
|
|
|
|
const struct xattr *xattr_array,
|
|
|
|
struct xattr *evm);
|
2011-08-18 22:07:44 +00: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 19:38:26 +00:00
|
|
|
#else
|
2015-10-22 18:26:32 +00:00
|
|
|
|
|
|
|
static inline int evm_set_key(void *key, size_t keylen)
|
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
2011-03-09 19:38:26 +00:00
|
|
|
#ifdef CONFIG_INTEGRITY
|
|
|
|
static inline enum integrity_status evm_verifyxattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name,
|
|
|
|
void *xattr_value,
|
2011-05-06 08:34:13 +00:00
|
|
|
size_t xattr_value_len,
|
|
|
|
struct integrity_iint_cache *iint)
|
2011-03-09 19:38:26 +00:00
|
|
|
{
|
|
|
|
return INTEGRITY_UNKNOWN;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-08-11 04:22:51 +00:00
|
|
|
static inline int evm_inode_setattr(struct dentry *dentry, struct iattr *attr)
|
2011-05-13 16:53:38 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-09 19:39:57 +00:00
|
|
|
static inline void evm_inode_post_setattr(struct dentry *dentry, int ia_valid)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-09 19:38:26 +00: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 19:39:18 +00:00
|
|
|
|
|
|
|
static inline void evm_inode_post_removexattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-09 19:40:44 +00:00
|
|
|
static inline int evm_inode_init_security(struct inode *inode,
|
|
|
|
const struct xattr *xattr_array,
|
|
|
|
struct xattr *evm)
|
|
|
|
{
|
2011-08-11 04:22:52 +00:00
|
|
|
return 0;
|
2011-03-09 19:40:44 +00:00
|
|
|
}
|
|
|
|
|
2013-03-25 20:12:27 +00:00
|
|
|
#endif /* CONFIG_EVM */
|
2011-03-09 19:38:26 +00:00
|
|
|
#endif /* LINUX_EVM_H */
|