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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "flask.h" |
| 19 | #include "av_permissions.h" |
| 20 | #include "security.h" |
| 21 | |
| 22 | #ifdef CONFIG_SECURITY_SELINUX_DEVELOP |
| 23 | extern int selinux_enforcing; |
| 24 | #else |
| 25 | #define selinux_enforcing 1 |
| 26 | #endif |
| 27 | |
| 28 | /* |
| 29 | * An entry in the AVC. |
| 30 | */ |
| 31 | struct avc_entry; |
| 32 | |
| 33 | struct task_struct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | struct inode; |
| 35 | struct sock; |
| 36 | struct sk_buff; |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | /* |
| 39 | * AVC statistics |
| 40 | */ |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 41 | struct avc_cache_stats { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | unsigned int lookups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | unsigned int misses; |
| 44 | unsigned int allocations; |
| 45 | unsigned int reclaims; |
| 46 | unsigned int frees; |
| 47 | }; |
| 48 | |
Eric Paris | 3f0882c | 2012-04-03 09:38:00 -0700 | [diff] [blame] | 49 | /* |
| 50 | * We only need this data after we have decided to send an audit message. |
| 51 | */ |
| 52 | struct selinux_late_audit_data { |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 53 | u32 ssid; |
| 54 | u32 tsid; |
| 55 | u16 tclass; |
| 56 | u32 requested; |
| 57 | u32 audited; |
| 58 | u32 denied; |
Eric Paris | 3f0882c | 2012-04-03 09:38:00 -0700 | [diff] [blame] | 59 | int result; |
| 60 | }; |
| 61 | |
| 62 | /* |
| 63 | * We collect this at the beginning or during an selinux security operation |
| 64 | */ |
| 65 | struct selinux_audit_data { |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 66 | /* |
| 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 Paris | 3f0882c | 2012-04-03 09:38:00 -0700 | [diff] [blame] | 71 | struct selinux_late_audit_data *slad; |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* |
| 75 | * AVC operations |
| 76 | */ |
| 77 | |
| 78 | void __init avc_init(void); |
| 79 | |
Eric Paris | 9ade0cf | 2011-04-25 16:26:29 -0400 | [diff] [blame] | 80 | int avc_audit(u32 ssid, u32 tsid, |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 81 | u16 tclass, u32 requested, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 82 | struct av_decision *avd, |
| 83 | int result, |
Eric Paris | 9ade0cf | 2011-04-25 16:26:29 -0400 | [diff] [blame] | 84 | struct common_audit_data *a, unsigned flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Stephen Smalley | 2c3c05d | 2007-06-07 15:34:10 -0400 | [diff] [blame] | 86 | #define AVC_STRICT 1 /* Ignore permissive mode. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | int avc_has_perm_noaudit(u32 ssid, u32 tsid, |
Stephen Smalley | 2c3c05d | 2007-06-07 15:34:10 -0400 | [diff] [blame] | 88 | u16 tclass, u32 requested, |
| 89 | unsigned flags, |
| 90 | struct av_decision *avd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Eric Paris | 9ade0cf | 2011-04-25 16:26:29 -0400 | [diff] [blame] | 92 | int avc_has_perm_flags(u32 ssid, u32 tsid, |
| 93 | u16 tclass, u32 requested, |
| 94 | struct common_audit_data *auditdata, |
| 95 | unsigned); |
| 96 | |
| 97 | static inline int avc_has_perm(u32 ssid, u32 tsid, |
| 98 | u16 tclass, u32 requested, |
| 99 | struct common_audit_data *auditdata) |
| 100 | { |
| 101 | return avc_has_perm_flags(ssid, tsid, tclass, requested, auditdata, 0); |
| 102 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 104 | u32 avc_policy_seqno(void); |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | #define AVC_CALLBACK_GRANT 1 |
| 107 | #define AVC_CALLBACK_TRY_REVOKE 2 |
| 108 | #define AVC_CALLBACK_REVOKE 4 |
| 109 | #define AVC_CALLBACK_RESET 8 |
| 110 | #define AVC_CALLBACK_AUDITALLOW_ENABLE 16 |
| 111 | #define AVC_CALLBACK_AUDITALLOW_DISABLE 32 |
| 112 | #define AVC_CALLBACK_AUDITDENY_ENABLE 64 |
| 113 | #define AVC_CALLBACK_AUDITDENY_DISABLE 128 |
| 114 | |
| 115 | int avc_add_callback(int (*callback)(u32 event, u32 ssid, u32 tsid, |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 116 | u16 tclass, u32 perms, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | u32 *out_retained), |
| 118 | u32 events, u32 ssid, u32 tsid, |
| 119 | u16 tclass, u32 perms); |
| 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | /* Exported to selinuxfs */ |
| 122 | int avc_get_hash_stats(char *page); |
| 123 | extern unsigned int avc_cache_threshold; |
| 124 | |
Thomas Liu | 89c8657 | 2009-06-24 17:58:05 -0400 | [diff] [blame] | 125 | /* Attempt to free avc node cache */ |
| 126 | void avc_disable(void); |
| 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS |
| 129 | DECLARE_PER_CPU(struct avc_cache_stats, avc_cache_stats); |
| 130 | #endif |
| 131 | |
| 132 | #endif /* _SELINUX_AVC_H_ */ |
| 133 | |