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 | |
| 11 | #include "flask.h" |
| 12 | |
| 13 | #define SECSID_NULL 0x00000000 /* unspecified SID */ |
| 14 | #define SECSID_WILD 0xffffffff /* wildcard SID */ |
| 15 | #define SECCLASS_NULL 0x0000 /* no class */ |
| 16 | |
| 17 | #define SELINUX_MAGIC 0xf97cff8c |
| 18 | |
| 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | /* Range of policy versions we understand*/ |
| 30 | #define POLICYDB_VERSION_MIN POLICYDB_VERSION_BASE |
Stephen Smalley | 016b9bd | 2006-09-25 23:31:58 -0700 | [diff] [blame] | 31 | #ifdef CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX |
| 32 | #define POLICYDB_VERSION_MAX CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX_VALUE |
| 33 | #else |
Darrel Goeddel | f3f8771 | 2006-09-25 23:31:59 -0700 | [diff] [blame] | 34 | #define POLICYDB_VERSION_MAX POLICYDB_VERSION_RANGETRANS |
Stephen Smalley | 016b9bd | 2006-09-25 23:31:58 -0700 | [diff] [blame] | 35 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 37 | struct netlbl_lsm_secattr; |
James Morris | bb22f58 | 2006-11-17 23:01:03 -0500 | [diff] [blame] | 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | extern int selinux_enabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | extern int selinux_mls_enabled; |
| 41 | |
| 42 | int security_load_policy(void * data, size_t len); |
| 43 | |
Christopher J. PeBenito | e47c8fc5 | 2007-05-23 09:12:09 -0400 | [diff] [blame] | 44 | #define SEL_VEC_MAX 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | struct av_decision { |
| 46 | u32 allowed; |
| 47 | u32 decided; |
| 48 | u32 auditallow; |
| 49 | u32 auditdeny; |
| 50 | u32 seqno; |
| 51 | }; |
| 52 | |
| 53 | int security_compute_av(u32 ssid, u32 tsid, |
| 54 | u16 tclass, u32 requested, |
| 55 | struct av_decision *avd); |
| 56 | |
| 57 | int security_transition_sid(u32 ssid, u32 tsid, |
| 58 | u16 tclass, u32 *out_sid); |
| 59 | |
| 60 | int security_member_sid(u32 ssid, u32 tsid, |
| 61 | u16 tclass, u32 *out_sid); |
| 62 | |
| 63 | int security_change_sid(u32 ssid, u32 tsid, |
| 64 | u16 tclass, u32 *out_sid); |
| 65 | |
| 66 | int security_sid_to_context(u32 sid, char **scontext, |
| 67 | u32 *scontext_len); |
| 68 | |
| 69 | int security_context_to_sid(char *scontext, u32 scontext_len, |
| 70 | u32 *out_sid); |
| 71 | |
James Morris | f5c1d5b | 2005-07-28 01:07:37 -0700 | [diff] [blame] | 72 | int security_context_to_sid_default(char *scontext, u32 scontext_len, u32 *out_sid, u32 def_sid); |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | int security_get_user_sids(u32 callsid, char *username, |
| 75 | u32 **sids, u32 *nel); |
| 76 | |
| 77 | int security_port_sid(u16 domain, u16 type, u8 protocol, u16 port, |
| 78 | u32 *out_sid); |
| 79 | |
Paul Moore | e8bfdb9 | 2008-01-29 08:38:08 -0500 | [diff] [blame^] | 80 | int security_netif_sid(char *name, u32 *if_sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | int security_node_sid(u16 domain, void *addr, u32 addrlen, |
| 83 | u32 *out_sid); |
| 84 | |
| 85 | int security_validate_transition(u32 oldsid, u32 newsid, u32 tasksid, |
| 86 | u16 tclass); |
| 87 | |
Venkat Yekkirala | 08554d6 | 2006-07-24 23:27:16 -0700 | [diff] [blame] | 88 | int security_sid_mls_copy(u32 sid, u32 mls_sid, u32 *new_sid); |
| 89 | |
Christopher J. PeBenito | 55fcf09 | 2007-05-23 09:12:06 -0400 | [diff] [blame] | 90 | int security_get_classes(char ***classes, int *nclasses); |
| 91 | int security_get_permissions(char *class, char ***perms, int *nperms); |
Eric Paris | 3f12070 | 2007-09-21 14:37:10 -0400 | [diff] [blame] | 92 | int security_get_reject_unknown(void); |
| 93 | int security_get_allow_unknown(void); |
Christopher J. PeBenito | 55fcf09 | 2007-05-23 09:12:06 -0400 | [diff] [blame] | 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | #define SECURITY_FS_USE_XATTR 1 /* use xattr */ |
| 96 | #define SECURITY_FS_USE_TRANS 2 /* use transition SIDs, e.g. devpts/tmpfs */ |
| 97 | #define SECURITY_FS_USE_TASK 3 /* use task SIDs, e.g. pipefs/sockfs */ |
| 98 | #define SECURITY_FS_USE_GENFS 4 /* use the genfs support */ |
| 99 | #define SECURITY_FS_USE_NONE 5 /* no labeling support */ |
| 100 | #define SECURITY_FS_USE_MNTPOINT 6 /* use mountpoint labeling */ |
| 101 | |
| 102 | int security_fs_use(const char *fstype, unsigned int *behavior, |
| 103 | u32 *sid); |
| 104 | |
| 105 | int security_genfs_sid(const char *fstype, char *name, u16 sclass, |
| 106 | u32 *sid); |
| 107 | |
Paul Moore | 5778eab | 2007-02-28 15:14:22 -0500 | [diff] [blame] | 108 | #ifdef CONFIG_NETLABEL |
| 109 | int security_netlbl_secattr_to_sid(struct netlbl_lsm_secattr *secattr, |
| 110 | u32 base_sid, |
| 111 | u32 *sid); |
| 112 | |
| 113 | int security_netlbl_sid_to_secattr(u32 sid, |
| 114 | struct netlbl_lsm_secattr *secattr); |
| 115 | #else |
| 116 | static inline int security_netlbl_secattr_to_sid( |
| 117 | struct netlbl_lsm_secattr *secattr, |
| 118 | u32 base_sid, |
| 119 | u32 *sid) |
| 120 | { |
| 121 | return -EIDRM; |
| 122 | } |
| 123 | |
| 124 | static inline int security_netlbl_sid_to_secattr(u32 sid, |
| 125 | struct netlbl_lsm_secattr *secattr) |
| 126 | { |
| 127 | return -ENOENT; |
| 128 | } |
| 129 | #endif /* CONFIG_NETLABEL */ |
| 130 | |
James Carter | f0ee2e4 | 2007-04-04 10:11:29 -0400 | [diff] [blame] | 131 | const char *security_get_initial_sid_context(u32 sid); |
| 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | #endif /* _SELINUX_SECURITY_H_ */ |
| 134 | |