xref: /linux/security/selinux/include/avc_ss.h (revision 84b9b44b)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Access vector cache interface for the security server.
4  *
5  * Author : Stephen Smalley, <sds@tycho.nsa.gov>
6  */
7 #ifndef _SELINUX_AVC_SS_H_
8 #define _SELINUX_AVC_SS_H_
9 
10 #include <linux/types.h>
11 
12 int avc_ss_reset(u32 seqno);
13 
14 /* Class/perm mapping support */
15 struct security_class_mapping {
16 	const char *name;
17 	const char *perms[sizeof(u32) * 8 + 1];
18 };
19 
20 extern const struct security_class_mapping secclass_map[];
21 
22 #endif /* _SELINUX_AVC_SS_H_ */
23 
24