blob: e4e50bb218ee42f81b2e3583bae85d293f976067 [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 Paris3b3b0e42012-04-03 09:37:02 -070066 /*
67 * auditdeny is a bit tricky and unintuitive. See the
68 * comments in avc.c for it's meaning and usage.
69 */
70 u32 auditdeny;
Eric Paris3f0882c2012-04-03 09:38:00 -070071 struct selinux_late_audit_data *slad;
Eric Paris3b3b0e42012-04-03 09:37:02 -070072};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
75 * AVC operations
76 */
77
78void __init avc_init(void);
79
Eric Paris2e334052012-04-04 15:01:42 -040080static inline u32 avc_audit_required(u32 requested,
81 struct av_decision *avd,
82 int result,
83 u32 auditdeny,
84 u32 *deniedp)
85{
86 u32 denied, audited;
87 denied = requested & ~avd->allowed;
88 if (unlikely(denied)) {
89 audited = denied & avd->auditdeny;
90 /*
91 * auditdeny is TRICKY! Setting a bit in
92 * this field means that ANY denials should NOT be audited if
93 * the policy contains an explicit dontaudit rule for that
94 * permission. Take notice that this is unrelated to the
95 * actual permissions that were denied. As an example lets
96 * assume:
97 *
98 * denied == READ
99 * avd.auditdeny & ACCESS == 0 (not set means explicit rule)
100 * auditdeny & ACCESS == 1
101 *
102 * We will NOT audit the denial even though the denied
103 * permission was READ and the auditdeny checks were for
104 * ACCESS
105 */
106 if (auditdeny && !(auditdeny & avd->auditdeny))
107 audited = 0;
108 } else if (result)
109 audited = denied = requested;
110 else
111 audited = requested & avd->auditallow;
112 *deniedp = denied;
113 return audited;
114}
115
116int slow_avc_audit(u32 ssid, u32 tsid, u16 tclass,
117 u32 requested, u32 audited, u32 denied,
118 struct common_audit_data *a,
119 unsigned flags);
120
121/**
122 * avc_audit - Audit the granting or denial of permissions.
123 * @ssid: source security identifier
124 * @tsid: target security identifier
125 * @tclass: target security class
126 * @requested: requested permissions
127 * @avd: access vector decisions
128 * @result: result from avc_has_perm_noaudit
129 * @a: auxiliary audit data
130 * @flags: VFS walk flags
131 *
132 * Audit the granting or denial of permissions in accordance
133 * with the policy. This function is typically called by
134 * avc_has_perm() after a permission check, but can also be
135 * called directly by callers who use avc_has_perm_noaudit()
136 * in order to separate the permission check from the auditing.
137 * For example, this separation is useful when the permission check must
138 * be performed under a lock, to allow the lock to be released
139 * before calling the auditing code.
140 */
141static inline int avc_audit(u32 ssid, u32 tsid,
142 u16 tclass, u32 requested,
143 struct av_decision *avd,
144 int result,
145 struct common_audit_data *a, unsigned flags)
146{
147 u32 audited, denied;
148 audited = avc_audit_required(requested, avd, result,
149 a ? a->selinux_audit_data->auditdeny : 0,
150 &denied);
151 if (likely(!audited))
152 return 0;
153 return slow_avc_audit(ssid, tsid, tclass,
154 requested, audited, denied,
155 a, flags);
156}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Stephen Smalley2c3c05d2007-06-07 15:34:10 -0400158#define AVC_STRICT 1 /* Ignore permissive mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159int avc_has_perm_noaudit(u32 ssid, u32 tsid,
Stephen Smalley2c3c05d2007-06-07 15:34:10 -0400160 u16 tclass, u32 requested,
161 unsigned flags,
162 struct av_decision *avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Eric Paris9ade0cf2011-04-25 16:26:29 -0400164int avc_has_perm_flags(u32 ssid, u32 tsid,
165 u16 tclass, u32 requested,
166 struct common_audit_data *auditdata,
167 unsigned);
168
169static inline int avc_has_perm(u32 ssid, u32 tsid,
170 u16 tclass, u32 requested,
171 struct common_audit_data *auditdata)
172{
173 return avc_has_perm_flags(ssid, tsid, tclass, requested, auditdata, 0);
174}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +0900176u32 avc_policy_seqno(void);
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#define AVC_CALLBACK_GRANT 1
179#define AVC_CALLBACK_TRY_REVOKE 2
180#define AVC_CALLBACK_REVOKE 4
181#define AVC_CALLBACK_RESET 8
182#define AVC_CALLBACK_AUDITALLOW_ENABLE 16
183#define AVC_CALLBACK_AUDITALLOW_DISABLE 32
184#define AVC_CALLBACK_AUDITDENY_ENABLE 64
185#define AVC_CALLBACK_AUDITDENY_DISABLE 128
186
187int avc_add_callback(int (*callback)(u32 event, u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -0400188 u16 tclass, u32 perms,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 u32 *out_retained),
190 u32 events, u32 ssid, u32 tsid,
191 u16 tclass, u32 perms);
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/* Exported to selinuxfs */
194int avc_get_hash_stats(char *page);
195extern unsigned int avc_cache_threshold;
196
Thomas Liu89c86572009-06-24 17:58:05 -0400197/* Attempt to free avc node cache */
198void avc_disable(void);
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
201DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats);
202#endif
203
204#endif /* _SELINUX_AVC_H_ */
205