Linux 4.19.133
[linux/fpc-iii.git] / security / selinux / include / avc_ss.h
blob88c384c5c09e667bc9ce845c6d54b1b6277a7927
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Access vector cache interface for the security server.
5 * Author : Stephen Smalley, <sds@tycho.nsa.gov>
6 */
7 #ifndef _SELINUX_AVC_SS_H_
8 #define _SELINUX_AVC_SS_H_
10 #include "flask.h"
12 struct selinux_avc;
13 int avc_ss_reset(struct selinux_avc *avc, u32 seqno);
15 /* Class/perm mapping support */
16 struct security_class_mapping {
17 const char *name;
18 const char *perms[sizeof(u32) * 8 + 1];
21 extern struct security_class_mapping secclass_map[];
23 #endif /* _SELINUX_AVC_SS_H_ */