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,
16 INTEGRITY_FAIL_IMMUTABLE,
22 /* List of EVM protected security xattrs */
23 #ifdef CONFIG_INTEGRITY
24 extern struct integrity_iint_cache *integrity_inode_get(struct inode *inode);
25 extern void integrity_inode_free(struct inode *inode);
26 extern void __init integrity_load_keys(void);
29 static inline struct integrity_iint_cache *
30 integrity_inode_get(struct inode *inode)
35 static inline void integrity_inode_free(struct inode *inode)
40 static inline void integrity_load_keys(void)
43 #endif /* CONFIG_INTEGRITY */
45 #ifdef CONFIG_INTEGRITY_ASYMMETRIC_KEYS
47 extern int integrity_kernel_module_request(char *kmod_name);
51 static inline int integrity_kernel_module_request(char *kmod_name)
56 #endif /* CONFIG_INTEGRITY_ASYMMETRIC_KEYS */
58 #endif /* _LINUX_INTEGRITY_H */