GNU Linux-libre 4.14.332-gnu1
[releases.git] / include / linux / ima.h
1 /*
2  * Copyright (C) 2008 IBM Corporation
3  * Author: Mimi Zohar <zohar@us.ibm.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, version 2 of the License.
8  */
9
10 #ifndef _LINUX_IMA_H
11 #define _LINUX_IMA_H
12
13 #include <linux/fs.h>
14 #include <linux/kexec.h>
15 struct linux_binprm;
16
17 #ifdef CONFIG_IMA
18 extern int ima_bprm_check(struct linux_binprm *bprm);
19 extern int ima_file_check(struct file *file, int mask, int opened);
20 extern void ima_file_free(struct file *file);
21 extern int ima_file_mmap(struct file *file, unsigned long reqprot,
22                          unsigned long prot, unsigned long flags);
23 extern int ima_read_file(struct file *file, enum kernel_read_file_id id);
24 extern int ima_post_read_file(struct file *file, void *buf, loff_t size,
25                               enum kernel_read_file_id id);
26 extern void ima_post_path_mknod(struct dentry *dentry);
27
28 #ifdef CONFIG_IMA_KEXEC
29 extern void ima_add_kexec_buffer(struct kimage *image);
30 #endif
31
32 #else
33 static inline int ima_bprm_check(struct linux_binprm *bprm)
34 {
35         return 0;
36 }
37
38 static inline int ima_file_check(struct file *file, int mask, int opened)
39 {
40         return 0;
41 }
42
43 static inline void ima_file_free(struct file *file)
44 {
45         return;
46 }
47
48 static inline int ima_file_mmap(struct file *file, unsigned long reqprot,
49                                 unsigned long prot, unsigned long flags)
50 {
51         return 0;
52 }
53
54 static inline int ima_read_file(struct file *file, enum kernel_read_file_id id)
55 {
56         return 0;
57 }
58
59 static inline int ima_post_read_file(struct file *file, void *buf, loff_t size,
60                                      enum kernel_read_file_id id)
61 {
62         return 0;
63 }
64
65 static inline void ima_post_path_mknod(struct dentry *dentry)
66 {
67         return;
68 }
69
70 #endif /* CONFIG_IMA */
71
72 #ifndef CONFIG_IMA_KEXEC
73 struct kimage;
74
75 static inline void ima_add_kexec_buffer(struct kimage *image)
76 {}
77 #endif
78
79 #ifdef CONFIG_IMA_APPRAISE
80 extern bool is_ima_appraise_enabled(void);
81 extern void ima_inode_post_setattr(struct dentry *dentry);
82 extern int ima_inode_setxattr(struct dentry *dentry, const char *xattr_name,
83                        const void *xattr_value, size_t xattr_value_len);
84 extern int ima_inode_removexattr(struct dentry *dentry, const char *xattr_name);
85 #else
86 static inline bool is_ima_appraise_enabled(void)
87 {
88         return 0;
89 }
90
91 static inline void ima_inode_post_setattr(struct dentry *dentry)
92 {
93         return;
94 }
95
96 static inline int ima_inode_setxattr(struct dentry *dentry,
97                                      const char *xattr_name,
98                                      const void *xattr_value,
99                                      size_t xattr_value_len)
100 {
101         return 0;
102 }
103
104 static inline int ima_inode_removexattr(struct dentry *dentry,
105                                         const char *xattr_name)
106 {
107         return 0;
108 }
109 #endif /* CONFIG_IMA_APPRAISE */
110 #endif /* _LINUX_IMA_H */