blob: fa13f17ce0ffb809371297757833b48857fc8a52 [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
Eric Paris3b3b0e42012-04-03 09:37:02 -070049struct selinux_audit_data {
50 u32 ssid;
51 u32 tsid;
52 u16 tclass;
53 u32 requested;
54 u32 audited;
55 u32 denied;
56 /*
57 * auditdeny is a bit tricky and unintuitive. See the
58 * comments in avc.c for it's meaning and usage.
59 */
60 u32 auditdeny;
61 struct av_decision *avd;
62 int result;
63};
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
66 * AVC operations
67 */
68
69void __init avc_init(void);
70
Eric Paris9ade0cf2011-04-25 16:26:29 -040071int avc_audit(u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -040072 u16 tclass, u32 requested,
Thomas Liu2bf49692009-07-14 12:14:09 -040073 struct av_decision *avd,
74 int result,
Eric Paris9ade0cf2011-04-25 16:26:29 -040075 struct common_audit_data *a, unsigned flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Stephen Smalley2c3c05d2007-06-07 15:34:10 -040077#define AVC_STRICT 1 /* Ignore permissive mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078int avc_has_perm_noaudit(u32 ssid, u32 tsid,
Stephen Smalley2c3c05d2007-06-07 15:34:10 -040079 u16 tclass, u32 requested,
80 unsigned flags,
81 struct av_decision *avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Eric Paris9ade0cf2011-04-25 16:26:29 -040083int avc_has_perm_flags(u32 ssid, u32 tsid,
84 u16 tclass, u32 requested,
85 struct common_audit_data *auditdata,
86 unsigned);
87
88static inline int avc_has_perm(u32 ssid, u32 tsid,
89 u16 tclass, u32 requested,
90 struct common_audit_data *auditdata)
91{
92 return avc_has_perm_flags(ssid, tsid, tclass, requested, auditdata, 0);
93}
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +090095u32 avc_policy_seqno(void);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#define AVC_CALLBACK_GRANT 1
98#define AVC_CALLBACK_TRY_REVOKE 2
99#define AVC_CALLBACK_REVOKE 4
100#define AVC_CALLBACK_RESET 8
101#define AVC_CALLBACK_AUDITALLOW_ENABLE 16
102#define AVC_CALLBACK_AUDITALLOW_DISABLE 32
103#define AVC_CALLBACK_AUDITDENY_ENABLE 64
104#define AVC_CALLBACK_AUDITDENY_DISABLE 128
105
106int avc_add_callback(int (*callback)(u32 event, u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -0400107 u16 tclass, u32 perms,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 u32 *out_retained),
109 u32 events, u32 ssid, u32 tsid,
110 u16 tclass, u32 perms);
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* Exported to selinuxfs */
113int avc_get_hash_stats(char *page);
114extern unsigned int avc_cache_threshold;
115
Thomas Liu89c86572009-06-24 17:58:05 -0400116/* Attempt to free avc node cache */
117void avc_disable(void);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
120DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats);
121#endif
122
123#endif /* _SELINUX_AVC_H_ */
124