2 * Access vector cache interface for object managers.
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
6 #ifndef _SELINUX_AVC_H_
7 #define _SELINUX_AVC_H_
9 #include <linux/stddef.h>
10 #include <linux/errno.h>
11 #include <linux/kernel.h>
12 #include <linux/kdev_t.h>
13 #include <linux/spinlock.h>
14 #include <linux/init.h>
15 #include <linux/in6.h>
16 #include <asm/system.h>
18 #include "av_permissions.h"
21 #ifdef CONFIG_SECURITY_SELINUX_DEVELOP
22 extern int selinux_enforcing
;
24 #define selinux_enforcing 1
28 * An entry in the AVC.
39 /* Auxiliary data to use in generating the audit record. */
40 struct avc_audit_data
{
42 #define AVC_AUDIT_DATA_FS 1
43 #define AVC_AUDIT_DATA_NET 2
44 #define AVC_AUDIT_DATA_CAP 3
45 #define AVC_AUDIT_DATA_IPC 4
46 struct task_struct
*tsk
;
50 struct dentry
*dentry
;
65 struct in6_addr daddr
;
66 struct in6_addr saddr
;
78 /* Initialize an AVC audit data structure. */
79 #define AVC_AUDIT_DATA_INIT(_d,_t) \
80 { memset((_d), 0, sizeof(struct avc_audit_data)); (_d)->type = AVC_AUDIT_DATA_##_t; }
85 struct avc_cache_stats
90 unsigned int allocations
;
91 unsigned int reclaims
;
99 void __init
avc_init(void);
101 void avc_audit(u32 ssid
, u32 tsid
,
102 u16 tclass
, u32 requested
,
103 struct av_decision
*avd
, int result
, struct avc_audit_data
*auditdata
);
105 #define AVC_STRICT 1 /* Ignore permissive mode. */
106 int avc_has_perm_noaudit(u32 ssid
, u32 tsid
,
107 u16 tclass
, u32 requested
,
109 struct av_decision
*avd
);
111 int avc_has_perm(u32 ssid
, u32 tsid
,
112 u16 tclass
, u32 requested
,
113 struct avc_audit_data
*auditdata
);
115 u32
avc_policy_seqno(void);
117 #define AVC_CALLBACK_GRANT 1
118 #define AVC_CALLBACK_TRY_REVOKE 2
119 #define AVC_CALLBACK_REVOKE 4
120 #define AVC_CALLBACK_RESET 8
121 #define AVC_CALLBACK_AUDITALLOW_ENABLE 16
122 #define AVC_CALLBACK_AUDITALLOW_DISABLE 32
123 #define AVC_CALLBACK_AUDITDENY_ENABLE 64
124 #define AVC_CALLBACK_AUDITDENY_DISABLE 128
126 int avc_add_callback(int (*callback
)(u32 event
, u32 ssid
, u32 tsid
,
127 u16 tclass
, u32 perms
,
129 u32 events
, u32 ssid
, u32 tsid
,
130 u16 tclass
, u32 perms
);
132 /* Exported to selinuxfs */
133 int avc_get_hash_stats(char *page
);
134 extern unsigned int avc_cache_threshold
;
136 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
137 DECLARE_PER_CPU(struct avc_cache_stats
, avc_cache_stats
);
140 #endif /* _SELINUX_AVC_H_ */