1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2009 IBM Corporation
4 * Author: Mimi Zohar <zohar@us.ibm.com>
7 #ifndef _LINUX_INTEGRITY_H
8 #define _LINUX_INTEGRITY_H
12 enum integrity_status {
14 INTEGRITY_PASS_IMMUTABLE,
21 /* List of EVM protected security xattrs */
22 #ifdef CONFIG_INTEGRITY
23 extern struct integrity_iint_cache *integrity_inode_get(struct inode *inode);
24 extern void integrity_inode_free(struct inode *inode);
25 extern void __init integrity_load_keys(void);
28 static inline struct integrity_iint_cache *
29 integrity_inode_get(struct inode *inode)
34 static inline void integrity_inode_free(struct inode *inode)
39 static inline void integrity_load_keys(void)
42 #endif /* CONFIG_INTEGRITY */
44 #ifdef CONFIG_INTEGRITY_ASYMMETRIC_KEYS
46 extern int integrity_kernel_module_request(char *kmod_name);
50 static inline int integrity_kernel_module_request(char *kmod_name)
55 #endif /* CONFIG_INTEGRITY_ASYMMETRIC_KEYS */
57 #endif /* _LINUX_INTEGRITY_H */