Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 15 | #include <linux/audit.h> |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 16 | #include <linux/lsm_audit.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
| 24 | extern int selinux_enforcing; |
| 25 | #else |
| 26 | #define selinux_enforcing 1 |
| 27 | #endif |
| 28 | |
| 29 | /* |
| 30 | * An entry in the AVC. |
| 31 | */ |
| 32 | struct avc_entry; |
| 33 | |
| 34 | struct task_struct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | struct inode; |
| 36 | struct sock; |
| 37 | struct sk_buff; |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /* |
| 40 | * AVC statistics |
| 41 | */ |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 42 | struct avc_cache_stats { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | unsigned int lookups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | unsigned int misses; |
| 45 | unsigned int allocations; |
| 46 | unsigned int reclaims; |
| 47 | unsigned int frees; |
| 48 | }; |
| 49 | |
| 50 | /* |
| 51 | * AVC operations |
| 52 | */ |
| 53 | |
| 54 | void __init avc_init(void); |
| 55 | |
Eric Paris | 9ade0cf | 2011-04-25 16:26:29 -0400 | [diff] [blame] | 56 | int avc_audit(u32 ssid, u32 tsid, |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 57 | u16 tclass, u32 requested, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 58 | struct av_decision *avd, |
| 59 | int result, |
Eric Paris | 9ade0cf | 2011-04-25 16:26:29 -0400 | [diff] [blame] | 60 | struct common_audit_data *a, unsigned flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Stephen Smalley | 2c3c05d | 2007-06-07 15:34:10 -0400 | [diff] [blame] | 62 | #define AVC_STRICT 1 /* Ignore permissive mode. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | int avc_has_perm_noaudit(u32 ssid, u32 tsid, |
Stephen Smalley | 2c3c05d | 2007-06-07 15:34:10 -0400 | [diff] [blame] | 64 | u16 tclass, u32 requested, |
| 65 | unsigned flags, |
| 66 | struct av_decision *avd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Eric Paris | 9ade0cf | 2011-04-25 16:26:29 -0400 | [diff] [blame] | 68 | int avc_has_perm_flags(u32 ssid, u32 tsid, |
| 69 | u16 tclass, u32 requested, |
| 70 | struct common_audit_data *auditdata, |
| 71 | unsigned); |
| 72 | |
| 73 | static 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 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 80 | u32 avc_policy_seqno(void); |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 91 | int avc_add_callback(int (*callback)(u32 event, u32 ssid, u32 tsid, |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 92 | u16 tclass, u32 perms, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | u32 *out_retained), |
| 94 | u32 events, u32 ssid, u32 tsid, |
| 95 | u16 tclass, u32 perms); |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | /* Exported to selinuxfs */ |
| 98 | int avc_get_hash_stats(char *page); |
| 99 | extern unsigned int avc_cache_threshold; |
| 100 | |
Thomas Liu | 89c8657 | 2009-06-24 17:58:05 -0400 | [diff] [blame] | 101 | /* Attempt to free avc node cache */ |
| 102 | void avc_disable(void); |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS |
| 105 | DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats); |
| 106 | #endif |
| 107 | |
| 108 | #endif /* _SELINUX_AVC_H_ */ |
| 109 | |