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 | |
Gideon Israel Dsouza | 4bb9398 | 2014-06-11 21:25:30 +0530 | [diff] [blame] | 11 | #include <linux/compiler.h> |
Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 12 | #include <linux/dcache.h> |
Eric Paris | 75834fc | 2009-05-18 10:26:10 -0400 | [diff] [blame] | 13 | #include <linux/magic.h> |
Eric Paris | 2606fd1 | 2010-10-13 16:24:41 -0400 | [diff] [blame] | 14 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include "flask.h" |
| 16 | |
| 17 | #define SECSID_NULL 0x00000000 /* unspecified SID */ |
| 18 | #define SECSID_WILD 0xffffffff /* wildcard SID */ |
| 19 | #define SECCLASS_NULL 0x0000 /* no class */ |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | /* Identify specific policy version changes */ |
| 22 | #define POLICYDB_VERSION_BASE 15 |
| 23 | #define POLICYDB_VERSION_BOOL 16 |
| 24 | #define POLICYDB_VERSION_IPV6 17 |
| 25 | #define POLICYDB_VERSION_NLCLASS 18 |
| 26 | #define POLICYDB_VERSION_VALIDATETRANS 19 |
| 27 | #define POLICYDB_VERSION_MLS 19 |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 28 | #define POLICYDB_VERSION_AVTAB 20 |
Darrel Goeddel | f3f8771 | 2006-09-25 23:31:59 -0700 | [diff] [blame] | 29 | #define POLICYDB_VERSION_RANGETRANS 21 |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 30 | #define POLICYDB_VERSION_POLCAP 22 |
Eric Paris | 64dbf07 | 2008-03-31 12:17:33 +1100 | [diff] [blame] | 31 | #define POLICYDB_VERSION_PERMISSIVE 23 |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 32 | #define POLICYDB_VERSION_BOUNDARY 24 |
Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 33 | #define POLICYDB_VERSION_FILENAME_TRANS 25 |
Harry Ciao | 8023976 | 2011-03-25 13:51:56 +0800 | [diff] [blame] | 34 | #define POLICYDB_VERSION_ROLETRANS 26 |
Eric Paris | aa89326 | 2012-03-20 14:35:12 -0400 | [diff] [blame] | 35 | #define POLICYDB_VERSION_NEW_OBJECT_DEFAULTS 27 |
Eric Paris | eed7795 | 2012-03-20 14:35:12 -0400 | [diff] [blame] | 36 | #define POLICYDB_VERSION_DEFAULT_TYPE 28 |
Richard Haines | a660bec | 2013-11-19 17:34:23 -0500 | [diff] [blame] | 37 | #define POLICYDB_VERSION_CONSTRAINT_NAMES 29 |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 38 | #define POLICYDB_VERSION_XPERMS_IOCTL 30 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | /* Range of policy versions we understand*/ |
| 41 | #define POLICYDB_VERSION_MIN POLICYDB_VERSION_BASE |
Stephen Smalley | 016b9bd | 2006-09-25 23:31:58 -0700 | [diff] [blame] | 42 | #ifdef CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX |
| 43 | #define POLICYDB_VERSION_MAX CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX_VALUE |
| 44 | #else |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 45 | #define POLICYDB_VERSION_MAX POLICYDB_VERSION_XPERMS_IOCTL |
Stephen Smalley | 016b9bd | 2006-09-25 23:31:58 -0700 | [diff] [blame] | 46 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 48 | /* Mask for just the mount related flags */ |
| 49 | #define SE_MNTMASK 0x0f |
| 50 | /* Super block security struct flags for mount options */ |
Eric Paris | cfca030 | 2012-10-09 16:20:08 -0400 | [diff] [blame] | 51 | /* BE CAREFUL, these need to be the low order bits for selinux_get_mnt_opts */ |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 52 | #define CONTEXT_MNT 0x01 |
| 53 | #define FSCONTEXT_MNT 0x02 |
| 54 | #define ROOTCONTEXT_MNT 0x04 |
| 55 | #define DEFCONTEXT_MNT 0x08 |
Eric Paris | cfca030 | 2012-10-09 16:20:08 -0400 | [diff] [blame] | 56 | #define SBLABEL_MNT 0x10 |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 57 | /* Non-mount related flags */ |
Eric Paris | cfca030 | 2012-10-09 16:20:08 -0400 | [diff] [blame] | 58 | #define SE_SBINITIALIZED 0x0100 |
| 59 | #define SE_SBPROC 0x0200 |
Stephen Smalley | 134509d | 2015-06-04 16:22:17 -0400 | [diff] [blame] | 60 | #define SE_SBGENFS 0x0400 |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 61 | |
Eric Paris | 832cbd9 | 2008-04-01 13:24:09 -0400 | [diff] [blame] | 62 | #define CONTEXT_STR "context=" |
| 63 | #define FSCONTEXT_STR "fscontext=" |
| 64 | #define ROOTCONTEXT_STR "rootcontext=" |
| 65 | #define DEFCONTEXT_STR "defcontext=" |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 66 | #define LABELSUPP_STR "seclabel" |
Eric Paris | 832cbd9 | 2008-04-01 13:24:09 -0400 | [diff] [blame] | 67 | |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 68 | struct netlbl_lsm_secattr; |
James Morris | bb22f58 | 2006-11-17 23:01:03 -0500 | [diff] [blame] | 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | extern int selinux_enabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 72 | /* Policy capabilities */ |
| 73 | enum { |
| 74 | POLICYDB_CAPABILITY_NETPEER, |
Eric Paris | b0c636b | 2008-02-28 12:58:40 -0500 | [diff] [blame] | 75 | POLICYDB_CAPABILITY_OPENPERM, |
Chris PeBenito | 2be4d74 | 2013-05-03 09:05:39 -0400 | [diff] [blame] | 76 | POLICYDB_CAPABILITY_REDHAT1, |
| 77 | POLICYDB_CAPABILITY_ALWAYSNETWORK, |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 78 | __POLICYDB_CAPABILITY_MAX |
| 79 | }; |
| 80 | #define POLICYDB_CAPABILITY_MAX (__POLICYDB_CAPABILITY_MAX - 1) |
| 81 | |
| 82 | extern int selinux_policycap_netpeer; |
Eric Paris | b0c636b | 2008-02-28 12:58:40 -0500 | [diff] [blame] | 83 | extern int selinux_policycap_openperm; |
Chris PeBenito | 2be4d74 | 2013-05-03 09:05:39 -0400 | [diff] [blame] | 84 | extern int selinux_policycap_alwaysnetwork; |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 85 | |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 86 | /* |
| 87 | * type_datum properties |
| 88 | * available at the kernel policy version >= POLICYDB_VERSION_BOUNDARY |
| 89 | */ |
| 90 | #define TYPEDATUM_PROPERTY_PRIMARY 0x0001 |
| 91 | #define TYPEDATUM_PROPERTY_ATTRIBUTE 0x0002 |
| 92 | |
| 93 | /* limitation of boundary depth */ |
| 94 | #define POLICYDB_BOUNDS_MAXDEPTH 4 |
| 95 | |
Guido Trentalancia | 0719aaf | 2010-02-03 16:40:20 +0100 | [diff] [blame] | 96 | int security_mls_enabled(void); |
| 97 | |
Eric Paris | b19d8ea | 2008-04-22 17:46:11 -0400 | [diff] [blame] | 98 | int security_load_policy(void *data, size_t len); |
Eric Paris | 6b69732 | 2011-04-20 10:21:28 -0400 | [diff] [blame] | 99 | int security_read_policy(void **data, size_t *len); |
Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 100 | size_t security_policydb_len(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 102 | int security_policycap_supported(unsigned int req_cap); |
| 103 | |
Christopher J. PeBenito | e47c8fc | 2007-05-23 09:12:09 -0400 | [diff] [blame] | 104 | #define SEL_VEC_MAX 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | struct av_decision { |
| 106 | u32 allowed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | u32 auditallow; |
| 108 | u32 auditdeny; |
| 109 | u32 seqno; |
KaiGai Kohei | 8a6f83a | 2009-04-01 10:07:57 +0900 | [diff] [blame] | 110 | u32 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | }; |
| 112 | |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 113 | #define XPERMS_ALLOWED 1 |
| 114 | #define XPERMS_AUDITALLOW 2 |
| 115 | #define XPERMS_DONTAUDIT 4 |
| 116 | |
| 117 | #define security_xperm_set(perms, x) (perms[x >> 5] |= 1 << (x & 0x1f)) |
| 118 | #define security_xperm_test(perms, x) (1 & (perms[x >> 5] >> (x & 0x1f))) |
| 119 | struct extended_perms_data { |
| 120 | u32 p[8]; |
| 121 | }; |
| 122 | |
| 123 | struct extended_perms_decision { |
| 124 | u8 used; |
| 125 | u8 driver; |
| 126 | struct extended_perms_data *allowed; |
| 127 | struct extended_perms_data *auditallow; |
| 128 | struct extended_perms_data *dontaudit; |
| 129 | }; |
| 130 | |
| 131 | struct extended_perms { |
| 132 | u16 len; /* length associated decision chain */ |
| 133 | struct extended_perms_data drivers; /* flag drivers that are used */ |
| 134 | }; |
| 135 | |
KaiGai Kohei | 8a6f83a | 2009-04-01 10:07:57 +0900 | [diff] [blame] | 136 | /* definitions of av_decision.flags */ |
| 137 | #define AVD_FLAGS_PERMISSIVE 0x0001 |
Eric Paris | 64dbf07 | 2008-03-31 12:17:33 +1100 | [diff] [blame] | 138 | |
Stephen Smalley | 19439d0 | 2010-01-14 17:28:10 -0500 | [diff] [blame] | 139 | void security_compute_av(u32 ssid, u32 tsid, |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 140 | u16 tclass, struct av_decision *avd, |
| 141 | struct extended_perms *xperms); |
| 142 | |
| 143 | void security_compute_xperms_decision(u32 ssid, u32 tsid, u16 tclass, |
| 144 | u8 driver, struct extended_perms_decision *xpermd); |
Stephen Smalley | c6d3aaa | 2009-09-30 13:37:50 -0400 | [diff] [blame] | 145 | |
Stephen Smalley | 19439d0 | 2010-01-14 17:28:10 -0500 | [diff] [blame] | 146 | void security_compute_av_user(u32 ssid, u32 tsid, |
| 147 | u16 tclass, struct av_decision *avd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 149 | int security_transition_sid(u32 ssid, u32 tsid, u16 tclass, |
| 150 | const struct qstr *qstr, u32 *out_sid); |
Stephen Smalley | c6d3aaa | 2009-09-30 13:37:50 -0400 | [diff] [blame] | 151 | |
Kohei Kaigai | f50a3ec | 2011-04-01 15:39:26 +0100 | [diff] [blame] | 152 | int security_transition_sid_user(u32 ssid, u32 tsid, u16 tclass, |
| 153 | const char *objname, u32 *out_sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | int security_member_sid(u32 ssid, u32 tsid, |
| 156 | u16 tclass, u32 *out_sid); |
| 157 | |
| 158 | int security_change_sid(u32 ssid, u32 tsid, |
| 159 | u16 tclass, u32 *out_sid); |
| 160 | |
| 161 | int security_sid_to_context(u32 sid, char **scontext, |
| 162 | u32 *scontext_len); |
| 163 | |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 164 | int security_sid_to_context_force(u32 sid, char **scontext, u32 *scontext_len); |
| 165 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 166 | int security_context_to_sid(const char *scontext, u32 scontext_len, |
Nikolay Aleksandrov | 52a4c64 | 2014-03-07 12:44:19 +0100 | [diff] [blame] | 167 | u32 *out_sid, gfp_t gfp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
David Howells | 7bf570d | 2008-04-29 20:52:51 +0100 | [diff] [blame] | 169 | int security_context_to_sid_default(const char *scontext, u32 scontext_len, |
Stephen Smalley | 869ab51 | 2008-04-04 08:46:05 -0400 | [diff] [blame] | 170 | u32 *out_sid, u32 def_sid, gfp_t gfp_flags); |
James Morris | f5c1d5b | 2005-07-28 01:07:37 -0700 | [diff] [blame] | 171 | |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 172 | int security_context_to_sid_force(const char *scontext, u32 scontext_len, |
| 173 | u32 *sid); |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | int security_get_user_sids(u32 callsid, char *username, |
| 176 | u32 **sids, u32 *nel); |
| 177 | |
Paul Moore | 3e11217 | 2008-04-10 10:48:14 -0400 | [diff] [blame] | 178 | int security_port_sid(u8 protocol, u16 port, u32 *out_sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Paul Moore | e8bfdb9 | 2008-01-29 08:38:08 -0500 | [diff] [blame] | 180 | int security_netif_sid(char *name, u32 *if_sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | int security_node_sid(u16 domain, void *addr, u32 addrlen, |
| 183 | u32 *out_sid); |
| 184 | |
| 185 | int security_validate_transition(u32 oldsid, u32 newsid, u32 tasksid, |
Eric Paris | b19d8ea | 2008-04-22 17:46:11 -0400 | [diff] [blame] | 186 | u16 tclass); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 188 | int security_bounded_transition(u32 oldsid, u32 newsid); |
| 189 | |
Venkat Yekkirala | 08554d6 | 2006-07-24 23:27:16 -0700 | [diff] [blame] | 190 | int security_sid_mls_copy(u32 sid, u32 mls_sid, u32 *new_sid); |
| 191 | |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 192 | int security_net_peersid_resolve(u32 nlbl_sid, u32 nlbl_type, |
| 193 | u32 xfrm_sid, |
| 194 | u32 *peer_sid); |
| 195 | |
Christopher J. PeBenito | 55fcf09 | 2007-05-23 09:12:06 -0400 | [diff] [blame] | 196 | int security_get_classes(char ***classes, int *nclasses); |
| 197 | int security_get_permissions(char *class, char ***perms, int *nperms); |
Eric Paris | 3f12070 | 2007-09-21 14:37:10 -0400 | [diff] [blame] | 198 | int security_get_reject_unknown(void); |
| 199 | int security_get_allow_unknown(void); |
Christopher J. PeBenito | 55fcf09 | 2007-05-23 09:12:06 -0400 | [diff] [blame] | 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | #define SECURITY_FS_USE_XATTR 1 /* use xattr */ |
| 202 | #define SECURITY_FS_USE_TRANS 2 /* use transition SIDs, e.g. devpts/tmpfs */ |
| 203 | #define SECURITY_FS_USE_TASK 3 /* use task SIDs, e.g. pipefs/sockfs */ |
| 204 | #define SECURITY_FS_USE_GENFS 4 /* use the genfs support */ |
| 205 | #define SECURITY_FS_USE_NONE 5 /* no labeling support */ |
| 206 | #define SECURITY_FS_USE_MNTPOINT 6 /* use mountpoint labeling */ |
David Quigley | eb9ae68 | 2013-05-22 12:50:37 -0400 | [diff] [blame] | 207 | #define SECURITY_FS_USE_NATIVE 7 /* use native label support */ |
| 208 | #define SECURITY_FS_USE_MAX 7 /* Highest SECURITY_FS_USE_XXX */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Eric Paris | a64c54c | 2012-08-24 15:59:07 -0400 | [diff] [blame] | 210 | int security_fs_use(struct super_block *sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | int security_genfs_sid(const char *fstype, char *name, u16 sclass, |
| 213 | u32 *sid); |
| 214 | |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 215 | #ifdef CONFIG_NETLABEL |
| 216 | int security_netlbl_secattr_to_sid(struct netlbl_lsm_secattr *secattr, |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 217 | u32 *sid); |
| 218 | |
| 219 | int security_netlbl_sid_to_secattr(u32 sid, |
| 220 | struct netlbl_lsm_secattr *secattr); |
| 221 | #else |
| 222 | static inline int security_netlbl_secattr_to_sid( |
| 223 | struct netlbl_lsm_secattr *secattr, |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 224 | u32 *sid) |
| 225 | { |
| 226 | return -EIDRM; |
| 227 | } |
| 228 | |
| 229 | static inline int security_netlbl_sid_to_secattr(u32 sid, |
| 230 | struct netlbl_lsm_secattr *secattr) |
| 231 | { |
| 232 | return -ENOENT; |
| 233 | } |
| 234 | #endif /* CONFIG_NETLABEL */ |
| 235 | |
James Carter | f0ee2e4 | 2007-04-04 10:11:29 -0400 | [diff] [blame] | 236 | const char *security_get_initial_sid_context(u32 sid); |
| 237 | |
KaiGai Kohei | 1190416 | 2010-09-14 18:28:39 +0900 | [diff] [blame] | 238 | /* |
| 239 | * status notifier using mmap interface |
| 240 | */ |
| 241 | extern struct page *selinux_kernel_status_page(void); |
| 242 | |
| 243 | #define SELINUX_KERNEL_STATUS_VERSION 1 |
KaiGai Kohei | 36f7f28 | 2010-09-30 11:49:55 +0900 | [diff] [blame] | 244 | struct selinux_kernel_status { |
KaiGai Kohei | 1190416 | 2010-09-14 18:28:39 +0900 | [diff] [blame] | 245 | u32 version; /* version number of thie structure */ |
| 246 | u32 sequence; /* sequence number of seqlock logic */ |
| 247 | u32 enforcing; /* current setting of enforcing mode */ |
| 248 | u32 policyload; /* times of policy reloaded */ |
| 249 | u32 deny_unknown; /* current setting of deny_unknown */ |
| 250 | /* |
| 251 | * The version > 0 supports above members. |
| 252 | */ |
Gideon Israel Dsouza | 4bb9398 | 2014-06-11 21:25:30 +0530 | [diff] [blame] | 253 | } __packed; |
KaiGai Kohei | 1190416 | 2010-09-14 18:28:39 +0900 | [diff] [blame] | 254 | |
| 255 | extern void selinux_status_update_setenforce(int enforcing); |
| 256 | extern void selinux_status_update_policyload(int seqno); |
James Morris | cc59a58 | 2011-08-17 11:13:31 +1000 | [diff] [blame] | 257 | extern void selinux_complete_init(void); |
James Morris | 58982b7 | 2011-08-17 11:17:14 +1000 | [diff] [blame] | 258 | extern int selinux_disable(void); |
James Morris | ad3fa08 | 2011-08-30 10:50:12 +1000 | [diff] [blame] | 259 | extern void exit_sel_fs(void); |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 260 | extern struct path selinux_null; |
James Morris | ad3fa08 | 2011-08-30 10:50:12 +1000 | [diff] [blame] | 261 | extern struct vfsmount *selinuxfs_mount; |
James Morris | 6a3fbe8 | 2011-08-30 12:09:15 +1000 | [diff] [blame] | 262 | extern void selnl_notify_setenforce(int val); |
| 263 | extern void selnl_notify_policyload(u32 seqno); |
| 264 | extern int selinux_nlmsg_lookup(u16 sclass, u16 nlmsg_type, u32 *perm); |
KaiGai Kohei | 1190416 | 2010-09-14 18:28:39 +0900 | [diff] [blame] | 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | #endif /* _SELINUX_SECURITY_H_ */ |
| 267 | |