blob: 005a91bcb200d0d12ac6c7727f516743ae330439 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "flask.h"
19#include "av_permissions.h"
20#include "security.h"
21
22#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
23extern int selinux_enforcing;
24#else
25#define selinux_enforcing 1
26#endif
27
28/*
29 * An entry in the AVC.
30 */
31struct avc_entry;
32
33struct task_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034struct inode;
35struct sock;
36struct sk_buff;
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * AVC statistics
40 */
Eric Parisf5269712008-05-14 11:27:45 -040041struct avc_cache_stats {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 unsigned int lookups;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 unsigned int misses;
44 unsigned int allocations;
45 unsigned int reclaims;
46 unsigned int frees;
47};
48
49/*
50 * AVC operations
51 */
52
53void __init avc_init(void);
54
Eric Paris9ade0cf2011-04-25 16:26:29 -040055int avc_audit(u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -040056 u16 tclass, u32 requested,
Thomas Liu2bf49692009-07-14 12:14:09 -040057 struct av_decision *avd,
58 int result,
Eric Paris9ade0cf2011-04-25 16:26:29 -040059 struct common_audit_data *a, unsigned flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Stephen Smalley2c3c05d2007-06-07 15:34:10 -040061#define AVC_STRICT 1 /* Ignore permissive mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062int avc_has_perm_noaudit(u32 ssid, u32 tsid,
Stephen Smalley2c3c05d2007-06-07 15:34:10 -040063 u16 tclass, u32 requested,
64 unsigned flags,
65 struct av_decision *avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Eric Paris9ade0cf2011-04-25 16:26:29 -040067int avc_has_perm_flags(u32 ssid, u32 tsid,
68 u16 tclass, u32 requested,
69 struct common_audit_data *auditdata,
70 unsigned);
71
72static inline int avc_has_perm(u32 ssid, u32 tsid,
73 u16 tclass, u32 requested,
74 struct common_audit_data *auditdata)
75{
76 return avc_has_perm_flags(ssid, tsid, tclass, requested, auditdata, 0);
77}
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +090079u32 avc_policy_seqno(void);
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define AVC_CALLBACK_GRANT 1
82#define AVC_CALLBACK_TRY_REVOKE 2
83#define AVC_CALLBACK_REVOKE 4
84#define AVC_CALLBACK_RESET 8
85#define AVC_CALLBACK_AUDITALLOW_ENABLE 16
86#define AVC_CALLBACK_AUDITALLOW_DISABLE 32
87#define AVC_CALLBACK_AUDITDENY_ENABLE 64
88#define AVC_CALLBACK_AUDITDENY_DISABLE 128
89
90int avc_add_callback(int (*callback)(u32 event, u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -040091 u16 tclass, u32 perms,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 u32 *out_retained),
93 u32 events, u32 ssid, u32 tsid,
94 u16 tclass, u32 perms);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/* Exported to selinuxfs */
97int avc_get_hash_stats(char *page);
98extern unsigned int avc_cache_threshold;
99
Thomas Liu89c86572009-06-24 17:58:05 -0400100/* Attempt to free avc node cache */
101void avc_disable(void);
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
104DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats);
105#endif
106
107#endif /* _SELINUX_AVC_H_ */
108