Loading...
1/*
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>
15#include <linux/audit.h>
16#include <linux/lsm_audit.h>
17#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;
35struct inode;
36struct sock;
37struct sk_buff;
38
39/*
40 * AVC statistics
41 */
42struct avc_cache_stats {
43 unsigned int lookups;
44 unsigned int misses;
45 unsigned int allocations;
46 unsigned int reclaims;
47 unsigned int frees;
48};
49
50/*
51 * AVC operations
52 */
53
54void __init avc_init(void);
55
56int avc_audit(u32 ssid, u32 tsid,
57 u16 tclass, u32 requested,
58 struct av_decision *avd,
59 int result,
60 struct common_audit_data *a, unsigned flags);
61
62#define AVC_STRICT 1 /* Ignore permissive mode. */
63int avc_has_perm_noaudit(u32 ssid, u32 tsid,
64 u16 tclass, u32 requested,
65 unsigned flags,
66 struct av_decision *avd);
67
68int avc_has_perm_flags(u32 ssid, u32 tsid,
69 u16 tclass, u32 requested,
70 struct common_audit_data *auditdata,
71 unsigned);
72
73static inline int avc_has_perm(u32 ssid, u32 tsid,
74 u16 tclass, u32 requested,
75 struct common_audit_data *auditdata)
76{
77 return avc_has_perm_flags(ssid, tsid, tclass, requested, auditdata, 0);
78}
79
80u32 avc_policy_seqno(void);
81
82#define AVC_CALLBACK_GRANT 1
83#define AVC_CALLBACK_TRY_REVOKE 2
84#define AVC_CALLBACK_REVOKE 4
85#define AVC_CALLBACK_RESET 8
86#define AVC_CALLBACK_AUDITALLOW_ENABLE 16
87#define AVC_CALLBACK_AUDITALLOW_DISABLE 32
88#define AVC_CALLBACK_AUDITDENY_ENABLE 64
89#define AVC_CALLBACK_AUDITDENY_DISABLE 128
90
91int avc_add_callback(int (*callback)(u32 event, u32 ssid, u32 tsid,
92 u16 tclass, u32 perms,
93 u32 *out_retained),
94 u32 events, u32 ssid, u32 tsid,
95 u16 tclass, u32 perms);
96
97/* Exported to selinuxfs */
98int avc_get_hash_stats(char *page);
99extern unsigned int avc_cache_threshold;
100
101/* Attempt to free avc node cache */
102void avc_disable(void);
103
104#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
105DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats);
106#endif
107
108#endif /* _SELINUX_AVC_H_ */
109
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Access vector cache interface for object managers.
4 *
5 * Author : Stephen Smalley, <stephen.smalley.work@gmail.com>
6 */
7
8#ifndef _SELINUX_AVC_H_
9#define _SELINUX_AVC_H_
10
11#include <linux/stddef.h>
12#include <linux/errno.h>
13#include <linux/kernel.h>
14#include <linux/kdev_t.h>
15#include <linux/spinlock.h>
16#include <linux/init.h>
17#include <linux/audit.h>
18#include <linux/lsm_audit.h>
19#include <linux/in6.h>
20#include "flask.h"
21#include "av_permissions.h"
22#include "security.h"
23
24/*
25 * An entry in the AVC.
26 */
27struct avc_entry;
28
29struct task_struct;
30struct inode;
31struct sock;
32struct sk_buff;
33
34/*
35 * AVC statistics
36 */
37struct avc_cache_stats {
38 unsigned int lookups;
39 unsigned int misses;
40 unsigned int allocations;
41 unsigned int reclaims;
42 unsigned int frees;
43};
44
45/*
46 * We only need this data after we have decided to send an audit message.
47 */
48struct selinux_audit_data {
49 u32 ssid;
50 u32 tsid;
51 u16 tclass;
52 u32 requested;
53 u32 audited;
54 u32 denied;
55 int result;
56} __randomize_layout;
57
58/*
59 * AVC operations
60 */
61
62void __init avc_init(void);
63
64static inline u32 avc_audit_required(u32 requested, struct av_decision *avd,
65 int result, u32 auditdeny, u32 *deniedp)
66{
67 u32 denied, audited;
68 denied = requested & ~avd->allowed;
69 if (unlikely(denied)) {
70 audited = denied & avd->auditdeny;
71 /*
72 * auditdeny is TRICKY! Setting a bit in
73 * this field means that ANY denials should NOT be audited if
74 * the policy contains an explicit dontaudit rule for that
75 * permission. Take notice that this is unrelated to the
76 * actual permissions that were denied. As an example lets
77 * assume:
78 *
79 * denied == READ
80 * avd.auditdeny & ACCESS == 0 (not set means explicit rule)
81 * auditdeny & ACCESS == 1
82 *
83 * We will NOT audit the denial even though the denied
84 * permission was READ and the auditdeny checks were for
85 * ACCESS
86 */
87 if (auditdeny && !(auditdeny & avd->auditdeny))
88 audited = 0;
89 } else if (result)
90 audited = denied = requested;
91 else
92 audited = requested & avd->auditallow;
93 *deniedp = denied;
94 return audited;
95}
96
97int slow_avc_audit(u32 ssid, u32 tsid, u16 tclass, u32 requested, u32 audited,
98 u32 denied, int result, struct common_audit_data *a);
99
100/**
101 * avc_audit - Audit the granting or denial of permissions.
102 * @ssid: source security identifier
103 * @tsid: target security identifier
104 * @tclass: target security class
105 * @requested: requested permissions
106 * @avd: access vector decisions
107 * @result: result from avc_has_perm_noaudit
108 * @a: auxiliary audit data
109 *
110 * Audit the granting or denial of permissions in accordance
111 * with the policy. This function is typically called by
112 * avc_has_perm() after a permission check, but can also be
113 * called directly by callers who use avc_has_perm_noaudit()
114 * in order to separate the permission check from the auditing.
115 * For example, this separation is useful when the permission check must
116 * be performed under a lock, to allow the lock to be released
117 * before calling the auditing code.
118 */
119static inline int avc_audit(u32 ssid, u32 tsid, u16 tclass, u32 requested,
120 struct av_decision *avd, int result,
121 struct common_audit_data *a)
122{
123 u32 audited, denied;
124 audited = avc_audit_required(requested, avd, result, 0, &denied);
125 if (likely(!audited))
126 return 0;
127 return slow_avc_audit(ssid, tsid, tclass, requested, audited, denied,
128 result, a);
129}
130
131#define AVC_STRICT 1 /* Ignore permissive mode. */
132#define AVC_EXTENDED_PERMS 2 /* update extended permissions */
133int avc_has_perm_noaudit(u32 ssid, u32 tsid, u16 tclass, u32 requested,
134 unsigned int flags, struct av_decision *avd);
135
136int avc_has_perm(u32 ssid, u32 tsid, u16 tclass, u32 requested,
137 struct common_audit_data *auditdata);
138
139#define AVC_EXT_IOCTL (1 << 0) /* Cache entry for an ioctl extended permission */
140#define AVC_EXT_NLMSG (1 << 1) /* Cache entry for an nlmsg extended permission */
141int avc_has_extended_perms(u32 ssid, u32 tsid, u16 tclass, u32 requested,
142 u8 driver, u8 base_perm, u8 perm,
143 struct common_audit_data *ad);
144
145u32 avc_policy_seqno(void);
146
147#define AVC_CALLBACK_GRANT 1
148#define AVC_CALLBACK_TRY_REVOKE 2
149#define AVC_CALLBACK_REVOKE 4
150#define AVC_CALLBACK_RESET 8
151#define AVC_CALLBACK_AUDITALLOW_ENABLE 16
152#define AVC_CALLBACK_AUDITALLOW_DISABLE 32
153#define AVC_CALLBACK_AUDITDENY_ENABLE 64
154#define AVC_CALLBACK_AUDITDENY_DISABLE 128
155#define AVC_CALLBACK_ADD_XPERMS 256
156
157int avc_add_callback(int (*callback)(u32 event), u32 events);
158
159/* Exported to selinuxfs */
160int avc_get_hash_stats(char *page);
161unsigned int avc_get_cache_threshold(void);
162void avc_set_cache_threshold(unsigned int cache_threshold);
163
164#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
165DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats);
166#endif
167
168#endif /* _SELINUX_AVC_H_ */