Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
avc_ss.h
Go to the documentation of this file.
1 /*
2  * Access vector cache interface for the security server.
3  *
4  * Author : Stephen Smalley, <[email protected]>
5  */
6 #ifndef _SELINUX_AVC_SS_H_
7 #define _SELINUX_AVC_SS_H_
8 
9 #include "flask.h"
10 
12 
13 /* Class/perm mapping support */
15  const char *name;
16  const char *perms[sizeof(u32) * 8 + 1];
17 };
18 
19 extern struct security_class_mapping secclass_map[];
20 
21 /*
22  * The security server must be initialized before
23  * any labeling or access decisions can be provided.
24  */
25 extern int ss_initialized;
26 
27 #endif /* _SELINUX_AVC_SS_H_ */
28