2019-06-01 16:08:55 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2009-02-04 22:06:57 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 IBM Corporation
|
|
|
|
* Author: Mimi Zohar <zohar@us.ibm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_IMA_H
|
|
|
|
#define _LINUX_IMA_H
|
|
|
|
|
2009-02-11 12:01:19 +08:00
|
|
|
#include <linux/fs.h>
|
2018-07-14 02:05:58 +08:00
|
|
|
#include <linux/security.h>
|
2016-12-20 08:22:48 +08:00
|
|
|
#include <linux/kexec.h>
|
2009-02-11 12:01:19 +08:00
|
|
|
struct linux_binprm;
|
|
|
|
|
2009-02-04 22:06:58 +08:00
|
|
|
#ifdef CONFIG_IMA
|
|
|
|
extern int ima_bprm_check(struct linux_binprm *bprm);
|
2018-06-09 01:40:10 +08:00
|
|
|
extern int ima_file_check(struct file *file, int mask);
|
2019-01-23 04:06:49 +08:00
|
|
|
extern void ima_post_create_tmpfile(struct inode *inode);
|
2009-02-04 22:06:58 +08:00
|
|
|
extern void ima_file_free(struct file *file);
|
|
|
|
extern int ima_file_mmap(struct file *file, unsigned long prot);
|
2018-07-14 02:05:58 +08:00
|
|
|
extern int ima_load_data(enum kernel_load_data_id id);
|
2016-01-31 11:23:26 +08:00
|
|
|
extern int ima_read_file(struct file *file, enum kernel_read_file_id id);
|
2016-01-15 06:57:47 +08:00
|
|
|
extern int ima_post_read_file(struct file *file, void *buf, loff_t size,
|
|
|
|
enum kernel_read_file_id id);
|
2016-03-01 08:52:05 +08:00
|
|
|
extern void ima_post_path_mknod(struct dentry *dentry);
|
2009-02-04 22:06:58 +08:00
|
|
|
|
2016-12-20 08:22:48 +08:00
|
|
|
#ifdef CONFIG_IMA_KEXEC
|
|
|
|
extern void ima_add_kexec_buffer(struct kimage *image);
|
|
|
|
#endif
|
|
|
|
|
2019-03-26 22:45:53 +08:00
|
|
|
#if (defined(CONFIG_X86) && defined(CONFIG_EFI)) || defined(CONFIG_S390)
|
2018-10-10 01:30:33 +08:00
|
|
|
extern bool arch_ima_get_secureboot(void);
|
2018-10-10 01:30:37 +08:00
|
|
|
extern const char * const *arch_get_ima_policy(void);
|
2018-10-10 01:30:33 +08:00
|
|
|
#else
|
|
|
|
static inline bool arch_ima_get_secureboot(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-10 01:30:36 +08:00
|
|
|
static inline const char * const *arch_get_ima_policy(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-10-10 01:30:37 +08:00
|
|
|
#endif
|
2018-10-10 01:30:36 +08:00
|
|
|
|
2009-02-04 22:06:58 +08:00
|
|
|
#else
|
2009-02-04 22:06:57 +08:00
|
|
|
static inline int ima_bprm_check(struct linux_binprm *bprm)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-09 01:40:10 +08:00
|
|
|
static inline int ima_file_check(struct file *file, int mask)
|
2009-02-04 22:06:57 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-01-23 04:06:49 +08:00
|
|
|
static inline void ima_post_create_tmpfile(struct inode *inode)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-02-04 22:06:57 +08:00
|
|
|
static inline void ima_file_free(struct file *file)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ima_file_mmap(struct file *file, unsigned long prot)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2011-03-10 11:57:53 +08:00
|
|
|
|
2018-07-14 02:05:58 +08:00
|
|
|
static inline int ima_load_data(enum kernel_load_data_id id)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-31 11:23:26 +08:00
|
|
|
static inline int ima_read_file(struct file *file, enum kernel_read_file_id id)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-15 06:57:47 +08:00
|
|
|
static inline int ima_post_read_file(struct file *file, void *buf, loff_t size,
|
|
|
|
enum kernel_read_file_id id)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-01 08:52:05 +08:00
|
|
|
static inline void ima_post_path_mknod(struct dentry *dentry)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-26 04:12:27 +08:00
|
|
|
#endif /* CONFIG_IMA */
|
2011-03-10 11:57:53 +08:00
|
|
|
|
2016-12-20 08:22:48 +08:00
|
|
|
#ifndef CONFIG_IMA_KEXEC
|
|
|
|
struct kimage;
|
|
|
|
|
|
|
|
static inline void ima_add_kexec_buffer(struct kimage *image)
|
|
|
|
{}
|
|
|
|
#endif
|
|
|
|
|
2011-03-10 11:57:53 +08:00
|
|
|
#ifdef CONFIG_IMA_APPRAISE
|
2017-04-25 10:43:52 +08:00
|
|
|
extern bool is_ima_appraise_enabled(void);
|
2011-03-10 11:57:53 +08:00
|
|
|
extern void ima_inode_post_setattr(struct dentry *dentry);
|
2011-03-11 07:54:15 +08:00
|
|
|
extern int ima_inode_setxattr(struct dentry *dentry, const char *xattr_name,
|
|
|
|
const void *xattr_value, size_t xattr_value_len);
|
|
|
|
extern int ima_inode_removexattr(struct dentry *dentry, const char *xattr_name);
|
2011-03-10 11:57:53 +08:00
|
|
|
#else
|
2017-04-25 10:43:52 +08:00
|
|
|
static inline bool is_ima_appraise_enabled(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-10 11:57:53 +08:00
|
|
|
static inline void ima_inode_post_setattr(struct dentry *dentry)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2011-03-11 07:54:15 +08:00
|
|
|
|
|
|
|
static inline int ima_inode_setxattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name,
|
|
|
|
const void *xattr_value,
|
|
|
|
size_t xattr_value_len)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ima_inode_removexattr(struct dentry *dentry,
|
|
|
|
const char *xattr_name)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2013-03-26 04:12:27 +08:00
|
|
|
#endif /* CONFIG_IMA_APPRAISE */
|
2009-02-04 22:06:57 +08:00
|
|
|
#endif /* _LINUX_IMA_H */
|