1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Security-Enhanced Linux (SELinux) security module 4 * 5 * This file contains the SELinux security data structures for kernel objects. 6 * 7 * Author(s): Stephen Smalley, <stephen.smalley.work@gmail.com> 8 * Chris Vance, <cvance@nai.com> 9 * Wayne Salamon, <wsalamon@nai.com> 10 * James Morris <jmorris@redhat.com> 11 * 12 * Copyright (C) 2001,2002 Networks Associates Technology, Inc. 13 * Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.com> 14 * Copyright (C) 2016 Mellanox Technologies 15 */ 16 17 #ifndef _SELINUX_OBJSEC_H_ 18 #define _SELINUX_OBJSEC_H_ 19 20 #include <linux/list.h> 21 #include <linux/sched.h> 22 #include <linux/fs.h> 23 #include <linux/binfmts.h> 24 #include <linux/in.h> 25 #include <linux/spinlock.h> 26 #include <linux/lsm_hooks.h> 27 #include <linux/msg.h> 28 #include <net/net_namespace.h> 29 #include <linux/bpf.h> 30 #include "flask.h" 31 #include "avc.h" 32 33 struct avdc_entry { 34 u32 isid; /* inode SID */ 35 u32 allowed; /* allowed permission bitmask */ 36 u32 audited; /* audited permission bitmask */ 37 bool permissive; /* AVC permissive flag */ 38 }; 39 40 struct cred_security_struct { 41 u32 osid; /* SID prior to last execve */ 42 u32 sid; /* current SID */ 43 u32 exec_sid; /* exec SID */ 44 u32 create_sid; /* fscreate SID */ 45 u32 keycreate_sid; /* keycreate SID */ 46 u32 sockcreate_sid; /* fscreate SID */ 47 } __randomize_layout; 48 49 struct task_security_struct { 50 #define TSEC_AVDC_DIR_SIZE (1 << 2) 51 struct { 52 u32 sid; /* current SID for cached entries */ 53 u32 seqno; /* AVC sequence number */ 54 unsigned int dir_spot; /* dir cache index to check first */ 55 struct avdc_entry dir[TSEC_AVDC_DIR_SIZE]; /* dir entries */ 56 bool permissive_neveraudit; /* permissive and neveraudit */ 57 } avdcache; 58 } __randomize_layout; 59 60 static inline bool task_avdcache_permnoaudit(struct task_security_struct *tsec, 61 u32 sid) 62 { 63 return (tsec->avdcache.permissive_neveraudit && 64 sid == tsec->avdcache.sid && 65 tsec->avdcache.seqno == avc_policy_seqno()); 66 } 67 68 enum label_initialized { 69 LABEL_INVALID, /* invalid or not initialized */ 70 LABEL_INITIALIZED, /* initialized */ 71 LABEL_PENDING 72 }; 73 74 struct inode_security_struct { 75 struct inode *inode; /* back pointer to inode object */ 76 struct list_head list; /* list of inode_security_struct */ 77 u32 task_sid; /* SID of creating task */ 78 u32 sid; /* SID of this object */ 79 u16 sclass; /* security class of this object */ 80 unsigned char initialized; /* initialization flag */ 81 spinlock_t lock; 82 }; 83 84 struct file_security_struct { 85 u32 sid; /* SID of open file description */ 86 u32 fown_sid; /* SID of file owner (for SIGIO) */ 87 u32 isid; /* SID of inode at the time of file open */ 88 u32 pseqno; /* Policy seqno at the time of file open */ 89 }; 90 91 struct backing_file_security_struct { 92 u32 uf_sid; /* associated user file fsec->sid */ 93 }; 94 95 struct superblock_security_struct { 96 u32 sid; /* SID of file system superblock */ 97 u32 def_sid; /* default SID for labeling */ 98 u32 mntpoint_sid; /* SECURITY_FS_USE_MNTPOINT context for files */ 99 u32 creator_sid; /* SID of privileged process */ 100 unsigned short behavior; /* labeling behavior */ 101 unsigned short flags; /* which mount options were specified */ 102 struct mutex lock; 103 struct list_head isec_head; 104 spinlock_t isec_lock; 105 }; 106 107 struct msg_security_struct { 108 u32 sid; /* SID of message */ 109 }; 110 111 struct ipc_security_struct { 112 u16 sclass; /* security class of this object */ 113 u32 sid; /* SID of IPC resource */ 114 }; 115 116 struct netif_security_struct { 117 const struct net *ns; /* network namespace */ 118 int ifindex; /* device index */ 119 u32 sid; /* SID for this interface */ 120 }; 121 122 struct netnode_security_struct { 123 union { 124 __be32 ipv4; /* IPv4 node address */ 125 struct in6_addr ipv6; /* IPv6 node address */ 126 } addr; 127 u32 sid; /* SID for this node */ 128 u16 family; /* address family */ 129 }; 130 131 struct netport_security_struct { 132 u32 sid; /* SID for this node */ 133 u16 port; /* port number */ 134 u8 protocol; /* transport protocol */ 135 }; 136 137 struct sk_security_struct { 138 #ifdef CONFIG_NETLABEL 139 enum { /* NetLabel state */ 140 NLBL_UNSET = 0, 141 NLBL_REQUIRE, 142 NLBL_LABELED, 143 NLBL_REQSKB, 144 NLBL_CONNLABELED, 145 } nlbl_state; 146 struct netlbl_lsm_secattr *nlbl_secattr; /* NetLabel sec attributes */ 147 #endif 148 u32 sid; /* SID of this object */ 149 u32 peer_sid; /* SID of peer */ 150 u16 sclass; /* sock security class */ 151 enum { /* SCTP association state */ 152 SCTP_ASSOC_UNSET = 0, 153 SCTP_ASSOC_SET, 154 } sctp_assoc_state; 155 }; 156 157 struct tun_security_struct { 158 u32 sid; /* SID for the tun device sockets */ 159 }; 160 161 struct key_security_struct { 162 u32 sid; /* SID of key */ 163 }; 164 165 struct ib_security_struct { 166 u32 sid; /* SID of the queue pair or MAD agent */ 167 }; 168 169 struct pkey_security_struct { 170 u64 subnet_prefix; /* Port subnet prefix */ 171 u16 pkey; /* PKey number */ 172 u32 sid; /* SID of pkey */ 173 }; 174 175 struct bpf_security_struct { 176 u32 sid; /* SID of bpf obj creator */ 177 u32 perms; /* permissions for allowed bpf token commands */ 178 u32 grantor_sid; /* SID of token grantor */ 179 }; 180 181 struct perf_event_security_struct { 182 u32 sid; /* SID of perf_event obj creator */ 183 }; 184 185 extern struct lsm_blob_sizes selinux_blob_sizes; 186 static inline struct cred_security_struct *selinux_cred(const struct cred *cred) 187 { 188 return cred->security + selinux_blob_sizes.lbs_cred; 189 } 190 191 static inline struct task_security_struct * 192 selinux_task(const struct task_struct *task) 193 { 194 return task->security + selinux_blob_sizes.lbs_task; 195 } 196 197 static inline struct file_security_struct *selinux_file(const struct file *file) 198 { 199 return file->f_security + selinux_blob_sizes.lbs_file; 200 } 201 202 static inline struct backing_file_security_struct * 203 selinux_backing_file(const struct file *backing_file) 204 { 205 void *blob = backing_file_security(backing_file); 206 return blob + selinux_blob_sizes.lbs_backing_file; 207 } 208 209 static inline struct inode_security_struct * 210 selinux_inode(const struct inode *inode) 211 { 212 if (unlikely(!inode->i_security)) 213 return NULL; 214 return inode->i_security + selinux_blob_sizes.lbs_inode; 215 } 216 217 static inline struct msg_security_struct * 218 selinux_msg_msg(const struct msg_msg *msg_msg) 219 { 220 return msg_msg->security + selinux_blob_sizes.lbs_msg_msg; 221 } 222 223 static inline struct ipc_security_struct * 224 selinux_ipc(const struct kern_ipc_perm *ipc) 225 { 226 return ipc->security + selinux_blob_sizes.lbs_ipc; 227 } 228 229 /* 230 * get the subjective security ID of the current task 231 */ 232 static inline u32 current_sid(void) 233 { 234 const struct cred_security_struct *crsec = selinux_cred(current_cred()); 235 236 return crsec->sid; 237 } 238 239 static inline struct superblock_security_struct * 240 selinux_superblock(const struct super_block *superblock) 241 { 242 return superblock->s_security + selinux_blob_sizes.lbs_superblock; 243 } 244 245 #ifdef CONFIG_KEYS 246 static inline struct key_security_struct *selinux_key(const struct key *key) 247 { 248 return key->security + selinux_blob_sizes.lbs_key; 249 } 250 #endif /* CONFIG_KEYS */ 251 252 static inline struct sk_security_struct *selinux_sock(const struct sock *sock) 253 { 254 return sock->sk_security + selinux_blob_sizes.lbs_sock; 255 } 256 257 static inline struct tun_security_struct *selinux_tun_dev(void *security) 258 { 259 return security + selinux_blob_sizes.lbs_tun_dev; 260 } 261 262 static inline struct ib_security_struct *selinux_ib(void *ib_sec) 263 { 264 return ib_sec + selinux_blob_sizes.lbs_ib; 265 } 266 267 static inline struct perf_event_security_struct * 268 selinux_perf_event(void *perf_event) 269 { 270 return perf_event + selinux_blob_sizes.lbs_perf_event; 271 } 272 273 #ifdef CONFIG_BPF_SYSCALL 274 static inline struct bpf_security_struct * 275 selinux_bpf_map_security(struct bpf_map *map) 276 { 277 return map->security + selinux_blob_sizes.lbs_bpf_map; 278 } 279 280 static inline struct bpf_security_struct * 281 selinux_bpf_prog_security(struct bpf_prog *prog) 282 { 283 return prog->aux->security + selinux_blob_sizes.lbs_bpf_prog; 284 } 285 286 static inline struct bpf_security_struct * 287 selinux_bpf_token_security(struct bpf_token *token) 288 { 289 return token->security + selinux_blob_sizes.lbs_bpf_token; 290 } 291 #endif /* CONFIG_BPF_SYSCALL */ 292 #endif /* _SELINUX_OBJSEC_H_ */ 293