blob: faa277729cb45ecfcfb805fe6190459d41b88d81 [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 Paris3f0882c2012-04-03 09:38:00 -070049/*
50 * We only need this data after we have decided to send an audit message.
51 */
52struct selinux_late_audit_data {
Eric Paris3b3b0e42012-04-03 09:37:02 -070053 u32 ssid;
54 u32 tsid;
55 u16 tclass;
56 u32 requested;
57 u32 audited;
58 u32 denied;
Eric Paris3f0882c2012-04-03 09:38:00 -070059 int result;
60};
61
62/*
63 * We collect this at the beginning or during an selinux security operation
64 */
65struct selinux_audit_data {
Eric Paris3f0882c2012-04-03 09:38:00 -070066 struct selinux_late_audit_data *slad;
Eric Paris3b3b0e42012-04-03 09:37:02 -070067};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * AVC operations
71 */
72
73void __init avc_init(void);
74
Eric Paris2e334052012-04-04 15:01:42 -040075static inline u32 avc_audit_required(u32 requested,
76 struct av_decision *avd,
77 int result,
78 u32 auditdeny,
79 u32 *deniedp)
80{
81 u32 denied, audited;
82 denied = requested & ~avd->allowed;
83 if (unlikely(denied)) {
84 audited = denied & avd->auditdeny;
85 /*
86 * auditdeny is TRICKY! Setting a bit in
87 * this field means that ANY denials should NOT be audited if
88 * the policy contains an explicit dontaudit rule for that
89 * permission. Take notice that this is unrelated to the
90 * actual permissions that were denied. As an example lets
91 * assume:
92 *
93 * denied == READ
94 * avd.auditdeny & ACCESS == 0 (not set means explicit rule)
95 * auditdeny & ACCESS == 1
96 *
97 * We will NOT audit the denial even though the denied
98 * permission was READ and the auditdeny checks were for
99 * ACCESS
100 */
101 if (auditdeny && !(auditdeny & avd->auditdeny))
102 audited = 0;
103 } else if (result)
104 audited = denied = requested;
105 else
106 audited = requested & avd->auditallow;
107 *deniedp = denied;
108 return audited;
109}
110
111int slow_avc_audit(u32 ssid, u32 tsid, u16 tclass,
112 u32 requested, u32 audited, u32 denied,
113 struct common_audit_data *a,
114 unsigned flags);
115
116/**
117 * avc_audit - Audit the granting or denial of permissions.
118 * @ssid: source security identifier
119 * @tsid: target security identifier
120 * @tclass: target security class
121 * @requested: requested permissions
122 * @avd: access vector decisions
123 * @result: result from avc_has_perm_noaudit
124 * @a: auxiliary audit data
125 * @flags: VFS walk flags
126 *
127 * Audit the granting or denial of permissions in accordance
128 * with the policy. This function is typically called by
129 * avc_has_perm() after a permission check, but can also be
130 * called directly by callers who use avc_has_perm_noaudit()
131 * in order to separate the permission check from the auditing.
132 * For example, this separation is useful when the permission check must
133 * be performed under a lock, to allow the lock to be released
134 * before calling the auditing code.
135 */
136static inline int avc_audit(u32 ssid, u32 tsid,
137 u16 tclass, u32 requested,
138 struct av_decision *avd,
139 int result,
140 struct common_audit_data *a, unsigned flags)
141{
142 u32 audited, denied;
Eric Paris1d349292012-04-04 15:01:43 -0400143 audited = avc_audit_required(requested, avd, result, 0, &denied);
Eric Paris2e334052012-04-04 15:01:42 -0400144 if (likely(!audited))
145 return 0;
146 return slow_avc_audit(ssid, tsid, tclass,
147 requested, audited, denied,
148 a, flags);
149}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Stephen Smalley2c3c05d2007-06-07 15:34:10 -0400151#define AVC_STRICT 1 /* Ignore permissive mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152int avc_has_perm_noaudit(u32 ssid, u32 tsid,
Stephen Smalley2c3c05d2007-06-07 15:34:10 -0400153 u16 tclass, u32 requested,
154 unsigned flags,
155 struct av_decision *avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Eric Paris9ade0cf2011-04-25 16:26:29 -0400157int avc_has_perm_flags(u32 ssid, u32 tsid,
158 u16 tclass, u32 requested,
159 struct common_audit_data *auditdata,
160 unsigned);
161
162static inline int avc_has_perm(u32 ssid, u32 tsid,
163 u16 tclass, u32 requested,
164 struct common_audit_data *auditdata)
165{
166 return avc_has_perm_flags(ssid, tsid, tclass, requested, auditdata, 0);
167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +0900169u32 avc_policy_seqno(void);
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define AVC_CALLBACK_GRANT 1
172#define AVC_CALLBACK_TRY_REVOKE 2
173#define AVC_CALLBACK_REVOKE 4
174#define AVC_CALLBACK_RESET 8
175#define AVC_CALLBACK_AUDITALLOW_ENABLE 16
176#define AVC_CALLBACK_AUDITALLOW_DISABLE 32
177#define AVC_CALLBACK_AUDITDENY_ENABLE 64
178#define AVC_CALLBACK_AUDITDENY_DISABLE 128
179
180int avc_add_callback(int (*callback)(u32 event, u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -0400181 u16 tclass, u32 perms,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 u32 *out_retained),
183 u32 events, u32 ssid, u32 tsid,
184 u16 tclass, u32 perms);
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* Exported to selinuxfs */
187int avc_get_hash_stats(char *page);
188extern unsigned int avc_cache_threshold;
189
Thomas Liu89c86572009-06-24 17:58:05 -0400190/* Attempt to free avc node cache */
191void avc_disable(void);
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
194DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats);
195#endif
196
197#endif /* _SELINUX_AVC_H_ */
198