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