Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Security server interface. |
| 3 | * |
| 4 | * Author : Stephen Smalley, <sds@epoch.ncsc.mil> |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef _SELINUX_SECURITY_H_ |
| 9 | #define _SELINUX_SECURITY_H_ |
| 10 | |
Eric Paris | 75834fc | 2009-05-18 10:26:10 -0400 | [diff] [blame] | 11 | #include <linux/magic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include "flask.h" |
| 13 | |
| 14 | #define SECSID_NULL 0x00000000 /* unspecified SID */ |
| 15 | #define SECSID_WILD 0xffffffff /* wildcard SID */ |
| 16 | #define SECCLASS_NULL 0x0000 /* no class */ |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | /* Identify specific policy version changes */ |
| 19 | #define POLICYDB_VERSION_BASE 15 |
| 20 | #define POLICYDB_VERSION_BOOL 16 |
| 21 | #define POLICYDB_VERSION_IPV6 17 |
| 22 | #define POLICYDB_VERSION_NLCLASS 18 |
| 23 | #define POLICYDB_VERSION_VALIDATETRANS 19 |
| 24 | #define POLICYDB_VERSION_MLS 19 |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 25 | #define POLICYDB_VERSION_AVTAB 20 |
Darrel Goeddel | f3f8771 | 2006-09-25 23:31:59 -0700 | [diff] [blame] | 26 | #define POLICYDB_VERSION_RANGETRANS 21 |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 27 | #define POLICYDB_VERSION_POLCAP 22 |
Eric Paris | 64dbf07 | 2008-03-31 12:17:33 +1100 | [diff] [blame] | 28 | #define POLICYDB_VERSION_PERMISSIVE 23 |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 29 | #define POLICYDB_VERSION_BOUNDARY 24 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | /* Range of policy versions we understand*/ |
| 32 | #define POLICYDB_VERSION_MIN POLICYDB_VERSION_BASE |
Stephen Smalley | 016b9bd | 2006-09-25 23:31:58 -0700 | [diff] [blame] | 33 | #ifdef CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX |
| 34 | #define POLICYDB_VERSION_MAX CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX_VALUE |
| 35 | #else |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 36 | #define POLICYDB_VERSION_MAX POLICYDB_VERSION_BOUNDARY |
Stephen Smalley | 016b9bd | 2006-09-25 23:31:58 -0700 | [diff] [blame] | 37 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 39 | /* Mask for just the mount related flags */ |
| 40 | #define SE_MNTMASK 0x0f |
| 41 | /* Super block security struct flags for mount options */ |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 42 | #define CONTEXT_MNT 0x01 |
| 43 | #define FSCONTEXT_MNT 0x02 |
| 44 | #define ROOTCONTEXT_MNT 0x04 |
| 45 | #define DEFCONTEXT_MNT 0x08 |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 46 | /* Non-mount related flags */ |
| 47 | #define SE_SBINITIALIZED 0x10 |
| 48 | #define SE_SBPROC 0x20 |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 49 | #define SE_SBLABELSUPP 0x40 |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 50 | |
Eric Paris | 832cbd9 | 2008-04-01 13:24:09 -0400 | [diff] [blame] | 51 | #define CONTEXT_STR "context=" |
| 52 | #define FSCONTEXT_STR "fscontext=" |
| 53 | #define ROOTCONTEXT_STR "rootcontext=" |
| 54 | #define DEFCONTEXT_STR "defcontext=" |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 55 | #define LABELSUPP_STR "seclabel" |
Eric Paris | 832cbd9 | 2008-04-01 13:24:09 -0400 | [diff] [blame] | 56 | |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 57 | struct netlbl_lsm_secattr; |
James Morris | bb22f58 | 2006-11-17 23:01:03 -0500 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | extern int selinux_enabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 61 | /* Policy capabilities */ |
| 62 | enum { |
| 63 | POLICYDB_CAPABILITY_NETPEER, |
Eric Paris | b0c636b | 2008-02-28 12:58:40 -0500 | [diff] [blame] | 64 | POLICYDB_CAPABILITY_OPENPERM, |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 65 | __POLICYDB_CAPABILITY_MAX |
| 66 | }; |
| 67 | #define POLICYDB_CAPABILITY_MAX (__POLICYDB_CAPABILITY_MAX - 1) |
| 68 | |
| 69 | extern int selinux_policycap_netpeer; |
Eric Paris | b0c636b | 2008-02-28 12:58:40 -0500 | [diff] [blame] | 70 | extern int selinux_policycap_openperm; |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 71 | |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 72 | /* |
| 73 | * type_datum properties |
| 74 | * available at the kernel policy version >= POLICYDB_VERSION_BOUNDARY |
| 75 | */ |
| 76 | #define TYPEDATUM_PROPERTY_PRIMARY 0x0001 |
| 77 | #define TYPEDATUM_PROPERTY_ATTRIBUTE 0x0002 |
| 78 | |
| 79 | /* limitation of boundary depth */ |
| 80 | #define POLICYDB_BOUNDS_MAXDEPTH 4 |
| 81 | |
Guido Trentalancia | 0719aaf | 2010-02-03 16:40:20 +0100 | [diff] [blame] | 82 | int security_mls_enabled(void); |
| 83 | |
Eric Paris | b19d8ea | 2008-04-22 17:46:11 -0400 | [diff] [blame] | 84 | int security_load_policy(void *data, size_t len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 86 | int security_policycap_supported(unsigned int req_cap); |
| 87 | |
Christopher J. PeBenito | e47c8fc5 | 2007-05-23 09:12:09 -0400 | [diff] [blame] | 88 | #define SEL_VEC_MAX 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | struct av_decision { |
| 90 | u32 allowed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | u32 auditallow; |
| 92 | u32 auditdeny; |
| 93 | u32 seqno; |
KaiGai Kohei | 8a6f83a | 2009-04-01 10:07:57 +0900 | [diff] [blame] | 94 | u32 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | }; |
| 96 | |
KaiGai Kohei | 8a6f83a | 2009-04-01 10:07:57 +0900 | [diff] [blame] | 97 | /* definitions of av_decision.flags */ |
| 98 | #define AVD_FLAGS_PERMISSIVE 0x0001 |
Eric Paris | 64dbf07 | 2008-03-31 12:17:33 +1100 | [diff] [blame] | 99 | |
Stephen Smalley | 19439d0 | 2010-01-14 17:28:10 -0500 | [diff] [blame] | 100 | void security_compute_av(u32 ssid, u32 tsid, |
| 101 | u16 tclass, struct av_decision *avd); |
Stephen Smalley | c6d3aaa | 2009-09-30 13:37:50 -0400 | [diff] [blame] | 102 | |
Stephen Smalley | 19439d0 | 2010-01-14 17:28:10 -0500 | [diff] [blame] | 103 | void security_compute_av_user(u32 ssid, u32 tsid, |
| 104 | u16 tclass, struct av_decision *avd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | int security_transition_sid(u32 ssid, u32 tsid, |
Stephen Smalley | c6d3aaa | 2009-09-30 13:37:50 -0400 | [diff] [blame] | 107 | u16 tclass, u32 *out_sid); |
| 108 | |
| 109 | int security_transition_sid_user(u32 ssid, u32 tsid, |
| 110 | u16 tclass, u32 *out_sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | int security_member_sid(u32 ssid, u32 tsid, |
| 113 | u16 tclass, u32 *out_sid); |
| 114 | |
| 115 | int security_change_sid(u32 ssid, u32 tsid, |
| 116 | u16 tclass, u32 *out_sid); |
| 117 | |
| 118 | int security_sid_to_context(u32 sid, char **scontext, |
| 119 | u32 *scontext_len); |
| 120 | |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 121 | int security_sid_to_context_force(u32 sid, char **scontext, u32 *scontext_len); |
| 122 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 123 | int security_context_to_sid(const char *scontext, u32 scontext_len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | u32 *out_sid); |
| 125 | |
David Howells | 7bf570d | 2008-04-29 20:52:51 +0100 | [diff] [blame] | 126 | int security_context_to_sid_default(const char *scontext, u32 scontext_len, |
Stephen Smalley | 869ab51 | 2008-04-04 08:46:05 -0400 | [diff] [blame] | 127 | u32 *out_sid, u32 def_sid, gfp_t gfp_flags); |
James Morris | f5c1d5b | 2005-07-28 01:07:37 -0700 | [diff] [blame] | 128 | |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 129 | int security_context_to_sid_force(const char *scontext, u32 scontext_len, |
| 130 | u32 *sid); |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | int security_get_user_sids(u32 callsid, char *username, |
| 133 | u32 **sids, u32 *nel); |
| 134 | |
Paul Moore | 3e112172 | 2008-04-10 10:48:14 -0400 | [diff] [blame] | 135 | int security_port_sid(u8 protocol, u16 port, u32 *out_sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Paul Moore | e8bfdb9 | 2008-01-29 08:38:08 -0500 | [diff] [blame] | 137 | int security_netif_sid(char *name, u32 *if_sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | int security_node_sid(u16 domain, void *addr, u32 addrlen, |
| 140 | u32 *out_sid); |
| 141 | |
| 142 | int security_validate_transition(u32 oldsid, u32 newsid, u32 tasksid, |
Eric Paris | b19d8ea | 2008-04-22 17:46:11 -0400 | [diff] [blame] | 143 | u16 tclass); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 145 | int security_bounded_transition(u32 oldsid, u32 newsid); |
| 146 | |
Venkat Yekkirala | 08554d6 | 2006-07-24 23:27:16 -0700 | [diff] [blame] | 147 | int security_sid_mls_copy(u32 sid, u32 mls_sid, u32 *new_sid); |
| 148 | |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 149 | int security_net_peersid_resolve(u32 nlbl_sid, u32 nlbl_type, |
| 150 | u32 xfrm_sid, |
| 151 | u32 *peer_sid); |
| 152 | |
Christopher J. PeBenito | 55fcf09 | 2007-05-23 09:12:06 -0400 | [diff] [blame] | 153 | int security_get_classes(char ***classes, int *nclasses); |
| 154 | int security_get_permissions(char *class, char ***perms, int *nperms); |
Eric Paris | 3f12070 | 2007-09-21 14:37:10 -0400 | [diff] [blame] | 155 | int security_get_reject_unknown(void); |
| 156 | int security_get_allow_unknown(void); |
Christopher J. PeBenito | 55fcf09 | 2007-05-23 09:12:06 -0400 | [diff] [blame] | 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | #define SECURITY_FS_USE_XATTR 1 /* use xattr */ |
| 159 | #define SECURITY_FS_USE_TRANS 2 /* use transition SIDs, e.g. devpts/tmpfs */ |
| 160 | #define SECURITY_FS_USE_TASK 3 /* use task SIDs, e.g. pipefs/sockfs */ |
| 161 | #define SECURITY_FS_USE_GENFS 4 /* use the genfs support */ |
| 162 | #define SECURITY_FS_USE_NONE 5 /* no labeling support */ |
| 163 | #define SECURITY_FS_USE_MNTPOINT 6 /* use mountpoint labeling */ |
| 164 | |
| 165 | int security_fs_use(const char *fstype, unsigned int *behavior, |
James Morris | 089be43 | 2008-07-15 18:32:49 +1000 | [diff] [blame] | 166 | u32 *sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
| 168 | int security_genfs_sid(const char *fstype, char *name, u16 sclass, |
| 169 | u32 *sid); |
| 170 | |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 171 | #ifdef CONFIG_NETLABEL |
| 172 | int security_netlbl_secattr_to_sid(struct netlbl_lsm_secattr *secattr, |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 173 | u32 *sid); |
| 174 | |
| 175 | int security_netlbl_sid_to_secattr(u32 sid, |
| 176 | struct netlbl_lsm_secattr *secattr); |
| 177 | #else |
| 178 | static inline int security_netlbl_secattr_to_sid( |
| 179 | struct netlbl_lsm_secattr *secattr, |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 180 | u32 *sid) |
| 181 | { |
| 182 | return -EIDRM; |
| 183 | } |
| 184 | |
| 185 | static inline int security_netlbl_sid_to_secattr(u32 sid, |
| 186 | struct netlbl_lsm_secattr *secattr) |
| 187 | { |
| 188 | return -ENOENT; |
| 189 | } |
| 190 | #endif /* CONFIG_NETLABEL */ |
| 191 | |
James Carter | f0ee2e4 | 2007-04-04 10:11:29 -0400 | [diff] [blame] | 192 | const char *security_get_initial_sid_context(u32 sid); |
| 193 | |
KaiGai Kohei | 1190416 | 2010-09-14 18:28:39 +0900 | [diff] [blame^] | 194 | /* |
| 195 | * status notifier using mmap interface |
| 196 | */ |
| 197 | extern struct page *selinux_kernel_status_page(void); |
| 198 | |
| 199 | #define SELINUX_KERNEL_STATUS_VERSION 1 |
| 200 | struct selinux_kernel_status |
| 201 | { |
| 202 | u32 version; /* version number of thie structure */ |
| 203 | u32 sequence; /* sequence number of seqlock logic */ |
| 204 | u32 enforcing; /* current setting of enforcing mode */ |
| 205 | u32 policyload; /* times of policy reloaded */ |
| 206 | u32 deny_unknown; /* current setting of deny_unknown */ |
| 207 | /* |
| 208 | * The version > 0 supports above members. |
| 209 | */ |
| 210 | } __attribute__((packed)); |
| 211 | |
| 212 | extern void selinux_status_update_setenforce(int enforcing); |
| 213 | extern void selinux_status_update_policyload(int seqno); |
| 214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | #endif /* _SELINUX_SECURITY_H_ */ |
| 216 | |