Linux Audio

Check our new training course

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