blob: 5615081b73eca403e438678fcea782dc06e580e3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Access vector cache interface for object managers.
3 *
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
5 */
6#ifndef _SELINUX_AVC_H_
7#define _SELINUX_AVC_H_
8
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>
KaiGai Koheid9250de2008-08-28 16:35:57 +090015#include <linux/audit.h>
Thomas Liu2bf49692009-07-14 12:14:09 -040016#include <linux/lsm_audit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/in6.h>
18#include <asm/system.h>
19#include "flask.h"
20#include "av_permissions.h"
21#include "security.h"
22
23#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
24extern int selinux_enforcing;
25#else
26#define selinux_enforcing 1
27#endif
28
29/*
30 * An entry in the AVC.
31 */
32struct avc_entry;
33
34struct task_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035struct inode;
36struct sock;
37struct sk_buff;
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * AVC statistics
41 */
Eric Parisf5269712008-05-14 11:27:45 -040042struct avc_cache_stats {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 unsigned int lookups;
44 unsigned int hits;
45 unsigned int misses;
46 unsigned int allocations;
47 unsigned int reclaims;
48 unsigned int frees;
49};
50
51/*
52 * AVC operations
53 */
54
55void __init avc_init(void);
56
57void avc_audit(u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -040058 u16 tclass, u32 requested,
Thomas Liu2bf49692009-07-14 12:14:09 -040059 struct av_decision *avd,
60 int result,
61 struct common_audit_data *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Stephen Smalley2c3c05d2007-06-07 15:34:10 -040063#define AVC_STRICT 1 /* Ignore permissive mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064int avc_has_perm_noaudit(u32 ssid, u32 tsid,
Stephen Smalley2c3c05d2007-06-07 15:34:10 -040065 u16 tclass, u32 requested,
66 unsigned flags,
67 struct av_decision *avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69int avc_has_perm(u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -040070 u16 tclass, u32 requested,
Thomas Liu2bf49692009-07-14 12:14:09 -040071 struct common_audit_data *auditdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +090073u32 avc_policy_seqno(void);
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define AVC_CALLBACK_GRANT 1
76#define AVC_CALLBACK_TRY_REVOKE 2
77#define AVC_CALLBACK_REVOKE 4
78#define AVC_CALLBACK_RESET 8
79#define AVC_CALLBACK_AUDITALLOW_ENABLE 16
80#define AVC_CALLBACK_AUDITALLOW_DISABLE 32
81#define AVC_CALLBACK_AUDITDENY_ENABLE 64
82#define AVC_CALLBACK_AUDITDENY_DISABLE 128
83
84int avc_add_callback(int (*callback)(u32 event, u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -040085 u16 tclass, u32 perms,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 u32 *out_retained),
87 u32 events, u32 ssid, u32 tsid,
88 u16 tclass, u32 perms);
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/* Exported to selinuxfs */
91int avc_get_hash_stats(char *page);
92extern unsigned int avc_cache_threshold;
93
Thomas Liu89c86572009-06-24 17:58:05 -040094/* Attempt to free avc node cache */
95void avc_disable(void);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
98DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats);
99#endif
100
101#endif /* _SELINUX_AVC_H_ */
102