Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * NSA Security-Enhanced Linux (SELinux) security module |
| 3 | * |
| 4 | * This file contains the SELinux hook function implementations. |
| 5 | * |
| 6 | * Authors: Stephen Smalley, <sds@epoch.ncsc.mil> |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 7 | * Chris Vance, <cvance@nai.com> |
| 8 | * Wayne Salamon, <wsalamon@nai.com> |
| 9 | * James Morris <jmorris@redhat.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * |
| 11 | * Copyright (C) 2001,2002 Networks Associates Technology, Inc. |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 12 | * Copyright (C) 2003-2008 Red Hat, Inc., James Morris <jmorris@redhat.com> |
| 13 | * Eric Paris <eparis@redhat.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc. |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 15 | * <dgoeddel@trustedcs.com> |
Paul Moore | ed6d76e | 2009-08-28 18:12:49 -0400 | [diff] [blame] | 16 | * Copyright (C) 2006, 2007, 2009 Hewlett-Packard Development Company, L.P. |
| 17 | * Paul Moore <paul.moore@hp.com> |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 18 | * Copyright (C) 2007 Hitachi Software Engineering Co., Ltd. |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 19 | * Yuichi Nakamura <ynakam@hitachisoft.jp> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | * |
| 21 | * This program is free software; you can redistribute it and/or modify |
| 22 | * it under the terms of the GNU General Public License version 2, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 23 | * as published by the Free Software Foundation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | */ |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> |
| 27 | #include <linux/kernel.h> |
Roland McGrath | 0d094ef | 2008-07-25 19:45:49 -0700 | [diff] [blame] | 28 | #include <linux/tracehook.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/errno.h> |
| 30 | #include <linux/sched.h> |
| 31 | #include <linux/security.h> |
| 32 | #include <linux/xattr.h> |
| 33 | #include <linux/capability.h> |
| 34 | #include <linux/unistd.h> |
| 35 | #include <linux/mm.h> |
| 36 | #include <linux/mman.h> |
| 37 | #include <linux/slab.h> |
| 38 | #include <linux/pagemap.h> |
| 39 | #include <linux/swap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/spinlock.h> |
| 41 | #include <linux/syscalls.h> |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 42 | #include <linux/dcache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/file.h> |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 44 | #include <linux/fdtable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/namei.h> |
| 46 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/netfilter_ipv4.h> |
| 48 | #include <linux/netfilter_ipv6.h> |
| 49 | #include <linux/tty.h> |
| 50 | #include <net/icmp.h> |
Stephen Hemminger | 227b60f | 2007-10-10 17:30:46 -0700 | [diff] [blame] | 51 | #include <net/ip.h> /* for local_port_range[] */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <net/tcp.h> /* struct or_callable used in sock_rcv_skb */ |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 53 | #include <net/net_namespace.h> |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 54 | #include <net/netlabel.h> |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 55 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <asm/ioctls.h> |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 57 | #include <asm/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <linux/bitops.h> |
| 59 | #include <linux/interrupt.h> |
| 60 | #include <linux/netdevice.h> /* for network interface checks */ |
| 61 | #include <linux/netlink.h> |
| 62 | #include <linux/tcp.h> |
| 63 | #include <linux/udp.h> |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 64 | #include <linux/dccp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include <linux/quota.h> |
| 66 | #include <linux/un.h> /* for Unix socket types */ |
| 67 | #include <net/af_unix.h> /* for Unix socket types */ |
| 68 | #include <linux/parser.h> |
| 69 | #include <linux/nfs_mount.h> |
| 70 | #include <net/ipv6.h> |
| 71 | #include <linux/hugetlb.h> |
| 72 | #include <linux/personality.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #include <linux/audit.h> |
Eric Paris | 6931dfc | 2005-06-30 02:58:51 -0700 | [diff] [blame] | 74 | #include <linux/string.h> |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 75 | #include <linux/selinux.h> |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 76 | #include <linux/mutex.h> |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 77 | #include <linux/posix-timers.h> |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 78 | #include <linux/syslog.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | #include "avc.h" |
| 81 | #include "objsec.h" |
| 82 | #include "netif.h" |
Paul Moore | 224dfbd | 2008-01-29 08:38:13 -0500 | [diff] [blame] | 83 | #include "netnode.h" |
Paul Moore | 3e11217 | 2008-04-10 10:48:14 -0400 | [diff] [blame] | 84 | #include "netport.h" |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 85 | #include "xfrm.h" |
Paul Moore | c60475b | 2007-02-28 15:14:23 -0500 | [diff] [blame] | 86 | #include "netlabel.h" |
Ahmed S. Darwish | 9d57a7f | 2008-03-01 22:03:14 +0200 | [diff] [blame] | 87 | #include "audit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 89 | #define NUM_SEL_MNT_OPTS 5 |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 90 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | extern int selinux_nlmsg_lookup(u16 sclass, u16 nlmsg_type, u32 *perm); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 92 | extern struct security_operations *security_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 94 | /* SECMARK reference count */ |
| 95 | atomic_t selinux_secmark_refcount = ATOMIC_INIT(0); |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | #ifdef CONFIG_SECURITY_SELINUX_DEVELOP |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 98 | int selinux_enforcing; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | static int __init enforcing_setup(char *str) |
| 101 | { |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 102 | unsigned long enforcing; |
| 103 | if (!strict_strtoul(str, 0, &enforcing)) |
| 104 | selinux_enforcing = enforcing ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | return 1; |
| 106 | } |
| 107 | __setup("enforcing=", enforcing_setup); |
| 108 | #endif |
| 109 | |
| 110 | #ifdef CONFIG_SECURITY_SELINUX_BOOTPARAM |
| 111 | int selinux_enabled = CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE; |
| 112 | |
| 113 | static int __init selinux_enabled_setup(char *str) |
| 114 | { |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 115 | unsigned long enabled; |
| 116 | if (!strict_strtoul(str, 0, &enabled)) |
| 117 | selinux_enabled = enabled ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | return 1; |
| 119 | } |
| 120 | __setup("selinux=", selinux_enabled_setup); |
Stephen Smalley | 30d5528 | 2006-05-03 10:52:36 -0400 | [diff] [blame] | 121 | #else |
| 122 | int selinux_enabled = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | #endif |
| 124 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 125 | static struct kmem_cache *sel_inode_cache; |
James Morris | 7cae7e2 | 2006-03-22 00:09:22 -0800 | [diff] [blame] | 126 | |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 127 | /** |
| 128 | * selinux_secmark_enabled - Check to see if SECMARK is currently enabled |
| 129 | * |
| 130 | * Description: |
| 131 | * This function checks the SECMARK reference counter to see if any SECMARK |
| 132 | * targets are currently configured, if the reference counter is greater than |
| 133 | * zero SECMARK is considered to be enabled. Returns true (1) if SECMARK is |
| 134 | * enabled, false (0) if SECMARK is disabled. |
| 135 | * |
| 136 | */ |
| 137 | static int selinux_secmark_enabled(void) |
| 138 | { |
| 139 | return (atomic_read(&selinux_secmark_refcount) > 0); |
| 140 | } |
| 141 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 142 | /* |
| 143 | * initialise the security for the init task |
| 144 | */ |
| 145 | static void cred_init_security(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 147 | struct cred *cred = (struct cred *) current->real_cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | struct task_security_struct *tsec; |
| 149 | |
James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 150 | tsec = kzalloc(sizeof(struct task_security_struct), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | if (!tsec) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 152 | panic("SELinux: Failed to initialize initial task.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 154 | tsec->osid = tsec->sid = SECINITSID_KERNEL; |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 155 | cred->security = tsec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
| 157 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 158 | /* |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 159 | * get the security ID of a set of credentials |
| 160 | */ |
| 161 | static inline u32 cred_sid(const struct cred *cred) |
| 162 | { |
| 163 | const struct task_security_struct *tsec; |
| 164 | |
| 165 | tsec = cred->security; |
| 166 | return tsec->sid; |
| 167 | } |
| 168 | |
| 169 | /* |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 170 | * get the objective security ID of a task |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 171 | */ |
| 172 | static inline u32 task_sid(const struct task_struct *task) |
| 173 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 174 | u32 sid; |
| 175 | |
| 176 | rcu_read_lock(); |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 177 | sid = cred_sid(__task_cred(task)); |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 178 | rcu_read_unlock(); |
| 179 | return sid; |
| 180 | } |
| 181 | |
| 182 | /* |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 183 | * get the subjective security ID of the current task |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 184 | */ |
| 185 | static inline u32 current_sid(void) |
| 186 | { |
Paul Moore | 5fb4987 | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 187 | const struct task_security_struct *tsec = current_security(); |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 188 | |
| 189 | return tsec->sid; |
| 190 | } |
| 191 | |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 192 | /* Allocate and free functions for each kind of security blob. */ |
| 193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | static int inode_alloc_security(struct inode *inode) |
| 195 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | struct inode_security_struct *isec; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 197 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Josef Bacik | a02fe13 | 2008-04-04 09:35:05 +1100 | [diff] [blame] | 199 | isec = kmem_cache_zalloc(sel_inode_cache, GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | if (!isec) |
| 201 | return -ENOMEM; |
| 202 | |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 203 | mutex_init(&isec->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | INIT_LIST_HEAD(&isec->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | isec->inode = inode; |
| 206 | isec->sid = SECINITSID_UNLABELED; |
| 207 | isec->sclass = SECCLASS_FILE; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 208 | isec->task_sid = sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | inode->i_security = isec; |
| 210 | |
| 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | static void inode_free_security(struct inode *inode) |
| 215 | { |
| 216 | struct inode_security_struct *isec = inode->i_security; |
| 217 | struct superblock_security_struct *sbsec = inode->i_sb->s_security; |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | spin_lock(&sbsec->isec_lock); |
| 220 | if (!list_empty(&isec->list)) |
| 221 | list_del_init(&isec->list); |
| 222 | spin_unlock(&sbsec->isec_lock); |
| 223 | |
| 224 | inode->i_security = NULL; |
James Morris | 7cae7e2 | 2006-03-22 00:09:22 -0800 | [diff] [blame] | 225 | kmem_cache_free(sel_inode_cache, isec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | static int file_alloc_security(struct file *file) |
| 229 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | struct file_security_struct *fsec; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 231 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Stephen Smalley | 26d2a4b | 2006-02-01 03:05:55 -0800 | [diff] [blame] | 233 | fsec = kzalloc(sizeof(struct file_security_struct), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | if (!fsec) |
| 235 | return -ENOMEM; |
| 236 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 237 | fsec->sid = sid; |
| 238 | fsec->fown_sid = sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | file->f_security = fsec; |
| 240 | |
| 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | static void file_free_security(struct file *file) |
| 245 | { |
| 246 | struct file_security_struct *fsec = file->f_security; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | file->f_security = NULL; |
| 248 | kfree(fsec); |
| 249 | } |
| 250 | |
| 251 | static int superblock_alloc_security(struct super_block *sb) |
| 252 | { |
| 253 | struct superblock_security_struct *sbsec; |
| 254 | |
James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 255 | sbsec = kzalloc(sizeof(struct superblock_security_struct), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | if (!sbsec) |
| 257 | return -ENOMEM; |
| 258 | |
Eric Paris | bc7e982 | 2006-09-25 23:32:02 -0700 | [diff] [blame] | 259 | mutex_init(&sbsec->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | INIT_LIST_HEAD(&sbsec->isec_head); |
| 261 | spin_lock_init(&sbsec->isec_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | sbsec->sb = sb; |
| 263 | sbsec->sid = SECINITSID_UNLABELED; |
| 264 | sbsec->def_sid = SECINITSID_FILE; |
Eric Paris | c312feb | 2006-07-10 04:43:53 -0700 | [diff] [blame] | 265 | sbsec->mntpoint_sid = SECINITSID_UNLABELED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | sb->s_security = sbsec; |
| 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | static void superblock_free_security(struct super_block *sb) |
| 272 | { |
| 273 | struct superblock_security_struct *sbsec = sb->s_security; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | sb->s_security = NULL; |
| 275 | kfree(sbsec); |
| 276 | } |
| 277 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | /* The security server must be initialized before |
| 279 | any labeling or access decisions can be provided. */ |
| 280 | extern int ss_initialized; |
| 281 | |
| 282 | /* The file system's label must be initialized prior to use. */ |
| 283 | |
Stephen Hemminger | 634a539 | 2010-03-04 21:59:03 -0800 | [diff] [blame] | 284 | static const char *labeling_behaviors[6] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | "uses xattr", |
| 286 | "uses transition SIDs", |
| 287 | "uses task SIDs", |
| 288 | "uses genfs_contexts", |
| 289 | "not configured for labeling", |
| 290 | "uses mountpoint labeling", |
| 291 | }; |
| 292 | |
| 293 | static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dentry); |
| 294 | |
| 295 | static inline int inode_doinit(struct inode *inode) |
| 296 | { |
| 297 | return inode_doinit_with_dentry(inode, NULL); |
| 298 | } |
| 299 | |
| 300 | enum { |
Eric Paris | 31e8793 | 2007-09-19 17:19:12 -0400 | [diff] [blame] | 301 | Opt_error = -1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | Opt_context = 1, |
| 303 | Opt_fscontext = 2, |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 304 | Opt_defcontext = 3, |
| 305 | Opt_rootcontext = 4, |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 306 | Opt_labelsupport = 5, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | }; |
| 308 | |
Steven Whitehouse | a447c09 | 2008-10-13 10:46:57 +0100 | [diff] [blame] | 309 | static const match_table_t tokens = { |
Eric Paris | 832cbd9 | 2008-04-01 13:24:09 -0400 | [diff] [blame] | 310 | {Opt_context, CONTEXT_STR "%s"}, |
| 311 | {Opt_fscontext, FSCONTEXT_STR "%s"}, |
| 312 | {Opt_defcontext, DEFCONTEXT_STR "%s"}, |
| 313 | {Opt_rootcontext, ROOTCONTEXT_STR "%s"}, |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 314 | {Opt_labelsupport, LABELSUPP_STR}, |
Eric Paris | 31e8793 | 2007-09-19 17:19:12 -0400 | [diff] [blame] | 315 | {Opt_error, NULL}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | }; |
| 317 | |
| 318 | #define SEL_MOUNT_FAIL_MSG "SELinux: duplicate or incompatible mount options\n" |
| 319 | |
Eric Paris | c312feb | 2006-07-10 04:43:53 -0700 | [diff] [blame] | 320 | static int may_context_mount_sb_relabel(u32 sid, |
| 321 | struct superblock_security_struct *sbsec, |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 322 | const struct cred *cred) |
Eric Paris | c312feb | 2006-07-10 04:43:53 -0700 | [diff] [blame] | 323 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 324 | const struct task_security_struct *tsec = cred->security; |
Eric Paris | c312feb | 2006-07-10 04:43:53 -0700 | [diff] [blame] | 325 | int rc; |
| 326 | |
| 327 | rc = avc_has_perm(tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM, |
| 328 | FILESYSTEM__RELABELFROM, NULL); |
| 329 | if (rc) |
| 330 | return rc; |
| 331 | |
| 332 | rc = avc_has_perm(tsec->sid, sid, SECCLASS_FILESYSTEM, |
| 333 | FILESYSTEM__RELABELTO, NULL); |
| 334 | return rc; |
| 335 | } |
| 336 | |
Eric Paris | 0808925 | 2006-07-10 04:43:55 -0700 | [diff] [blame] | 337 | static int may_context_mount_inode_relabel(u32 sid, |
| 338 | struct superblock_security_struct *sbsec, |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 339 | const struct cred *cred) |
Eric Paris | 0808925 | 2006-07-10 04:43:55 -0700 | [diff] [blame] | 340 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 341 | const struct task_security_struct *tsec = cred->security; |
Eric Paris | 0808925 | 2006-07-10 04:43:55 -0700 | [diff] [blame] | 342 | int rc; |
| 343 | rc = avc_has_perm(tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM, |
| 344 | FILESYSTEM__RELABELFROM, NULL); |
| 345 | if (rc) |
| 346 | return rc; |
| 347 | |
| 348 | rc = avc_has_perm(sid, sbsec->sid, SECCLASS_FILESYSTEM, |
| 349 | FILESYSTEM__ASSOCIATE, NULL); |
| 350 | return rc; |
| 351 | } |
| 352 | |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 353 | static int sb_finish_set_opts(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | { |
| 355 | struct superblock_security_struct *sbsec = sb->s_security; |
| 356 | struct dentry *root = sb->s_root; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 357 | struct inode *root_inode = root->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | int rc = 0; |
| 359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | if (sbsec->behavior == SECURITY_FS_USE_XATTR) { |
| 361 | /* Make sure that the xattr handler exists and that no |
| 362 | error other than -ENODATA is returned by getxattr on |
| 363 | the root directory. -ENODATA is ok, as this may be |
| 364 | the first boot of the SELinux kernel before we have |
| 365 | assigned xattr values to the filesystem. */ |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 366 | if (!root_inode->i_op->getxattr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | printk(KERN_WARNING "SELinux: (dev %s, type %s) has no " |
| 368 | "xattr support\n", sb->s_id, sb->s_type->name); |
| 369 | rc = -EOPNOTSUPP; |
| 370 | goto out; |
| 371 | } |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 372 | rc = root_inode->i_op->getxattr(root, XATTR_NAME_SELINUX, NULL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | if (rc < 0 && rc != -ENODATA) { |
| 374 | if (rc == -EOPNOTSUPP) |
| 375 | printk(KERN_WARNING "SELinux: (dev %s, type " |
| 376 | "%s) has no security xattr handler\n", |
| 377 | sb->s_id, sb->s_type->name); |
| 378 | else |
| 379 | printk(KERN_WARNING "SELinux: (dev %s, type " |
| 380 | "%s) getxattr errno %d\n", sb->s_id, |
| 381 | sb->s_type->name, -rc); |
| 382 | goto out; |
| 383 | } |
| 384 | } |
| 385 | |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 386 | sbsec->flags |= (SE_SBINITIALIZED | SE_SBLABELSUPP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 388 | if (sbsec->behavior > ARRAY_SIZE(labeling_behaviors)) |
Eric Paris | fadcdb4 | 2007-02-22 18:11:31 -0500 | [diff] [blame] | 389 | printk(KERN_ERR "SELinux: initialized (dev %s, type %s), unknown behavior\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | sb->s_id, sb->s_type->name); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 391 | else |
Eric Paris | fadcdb4 | 2007-02-22 18:11:31 -0500 | [diff] [blame] | 392 | printk(KERN_DEBUG "SELinux: initialized (dev %s, type %s), %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | sb->s_id, sb->s_type->name, |
| 394 | labeling_behaviors[sbsec->behavior-1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 396 | if (sbsec->behavior == SECURITY_FS_USE_GENFS || |
| 397 | sbsec->behavior == SECURITY_FS_USE_MNTPOINT || |
| 398 | sbsec->behavior == SECURITY_FS_USE_NONE || |
| 399 | sbsec->behavior > ARRAY_SIZE(labeling_behaviors)) |
| 400 | sbsec->flags &= ~SE_SBLABELSUPP; |
| 401 | |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 402 | /* Special handling for sysfs. Is genfs but also has setxattr handler*/ |
| 403 | if (strncmp(sb->s_type->name, "sysfs", sizeof("sysfs")) == 0) |
| 404 | sbsec->flags |= SE_SBLABELSUPP; |
| 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | /* Initialize the root inode. */ |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 407 | rc = inode_doinit_with_dentry(root_inode, root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
| 409 | /* Initialize any other inodes associated with the superblock, e.g. |
| 410 | inodes created prior to initial policy load or inodes created |
| 411 | during get_sb by a pseudo filesystem that directly |
| 412 | populates itself. */ |
| 413 | spin_lock(&sbsec->isec_lock); |
| 414 | next_inode: |
| 415 | if (!list_empty(&sbsec->isec_head)) { |
| 416 | struct inode_security_struct *isec = |
| 417 | list_entry(sbsec->isec_head.next, |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 418 | struct inode_security_struct, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | struct inode *inode = isec->inode; |
| 420 | spin_unlock(&sbsec->isec_lock); |
| 421 | inode = igrab(inode); |
| 422 | if (inode) { |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 423 | if (!IS_PRIVATE(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | inode_doinit(inode); |
| 425 | iput(inode); |
| 426 | } |
| 427 | spin_lock(&sbsec->isec_lock); |
| 428 | list_del_init(&isec->list); |
| 429 | goto next_inode; |
| 430 | } |
| 431 | spin_unlock(&sbsec->isec_lock); |
| 432 | out: |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 433 | return rc; |
| 434 | } |
| 435 | |
| 436 | /* |
| 437 | * This function should allow an FS to ask what it's mount security |
| 438 | * options were so it can use those later for submounts, displaying |
| 439 | * mount options, or whatever. |
| 440 | */ |
| 441 | static int selinux_get_mnt_opts(const struct super_block *sb, |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 442 | struct security_mnt_opts *opts) |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 443 | { |
| 444 | int rc = 0, i; |
| 445 | struct superblock_security_struct *sbsec = sb->s_security; |
| 446 | char *context = NULL; |
| 447 | u32 len; |
| 448 | char tmp; |
| 449 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 450 | security_init_mnt_opts(opts); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 451 | |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 452 | if (!(sbsec->flags & SE_SBINITIALIZED)) |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 453 | return -EINVAL; |
| 454 | |
| 455 | if (!ss_initialized) |
| 456 | return -EINVAL; |
| 457 | |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 458 | tmp = sbsec->flags & SE_MNTMASK; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 459 | /* count the number of mount options for this sb */ |
| 460 | for (i = 0; i < 8; i++) { |
| 461 | if (tmp & 0x01) |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 462 | opts->num_mnt_opts++; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 463 | tmp >>= 1; |
| 464 | } |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 465 | /* Check if the Label support flag is set */ |
| 466 | if (sbsec->flags & SE_SBLABELSUPP) |
| 467 | opts->num_mnt_opts++; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 468 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 469 | opts->mnt_opts = kcalloc(opts->num_mnt_opts, sizeof(char *), GFP_ATOMIC); |
| 470 | if (!opts->mnt_opts) { |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 471 | rc = -ENOMEM; |
| 472 | goto out_free; |
| 473 | } |
| 474 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 475 | opts->mnt_opts_flags = kcalloc(opts->num_mnt_opts, sizeof(int), GFP_ATOMIC); |
| 476 | if (!opts->mnt_opts_flags) { |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 477 | rc = -ENOMEM; |
| 478 | goto out_free; |
| 479 | } |
| 480 | |
| 481 | i = 0; |
| 482 | if (sbsec->flags & FSCONTEXT_MNT) { |
| 483 | rc = security_sid_to_context(sbsec->sid, &context, &len); |
| 484 | if (rc) |
| 485 | goto out_free; |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 486 | opts->mnt_opts[i] = context; |
| 487 | opts->mnt_opts_flags[i++] = FSCONTEXT_MNT; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 488 | } |
| 489 | if (sbsec->flags & CONTEXT_MNT) { |
| 490 | rc = security_sid_to_context(sbsec->mntpoint_sid, &context, &len); |
| 491 | if (rc) |
| 492 | goto out_free; |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 493 | opts->mnt_opts[i] = context; |
| 494 | opts->mnt_opts_flags[i++] = CONTEXT_MNT; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 495 | } |
| 496 | if (sbsec->flags & DEFCONTEXT_MNT) { |
| 497 | rc = security_sid_to_context(sbsec->def_sid, &context, &len); |
| 498 | if (rc) |
| 499 | goto out_free; |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 500 | opts->mnt_opts[i] = context; |
| 501 | opts->mnt_opts_flags[i++] = DEFCONTEXT_MNT; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 502 | } |
| 503 | if (sbsec->flags & ROOTCONTEXT_MNT) { |
| 504 | struct inode *root = sbsec->sb->s_root->d_inode; |
| 505 | struct inode_security_struct *isec = root->i_security; |
| 506 | |
| 507 | rc = security_sid_to_context(isec->sid, &context, &len); |
| 508 | if (rc) |
| 509 | goto out_free; |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 510 | opts->mnt_opts[i] = context; |
| 511 | opts->mnt_opts_flags[i++] = ROOTCONTEXT_MNT; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 512 | } |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 513 | if (sbsec->flags & SE_SBLABELSUPP) { |
| 514 | opts->mnt_opts[i] = NULL; |
| 515 | opts->mnt_opts_flags[i++] = SE_SBLABELSUPP; |
| 516 | } |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 517 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 518 | BUG_ON(i != opts->num_mnt_opts); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 519 | |
| 520 | return 0; |
| 521 | |
| 522 | out_free: |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 523 | security_free_mnt_opts(opts); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 524 | return rc; |
| 525 | } |
| 526 | |
| 527 | static int bad_option(struct superblock_security_struct *sbsec, char flag, |
| 528 | u32 old_sid, u32 new_sid) |
| 529 | { |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 530 | char mnt_flags = sbsec->flags & SE_MNTMASK; |
| 531 | |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 532 | /* check if the old mount command had the same options */ |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 533 | if (sbsec->flags & SE_SBINITIALIZED) |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 534 | if (!(sbsec->flags & flag) || |
| 535 | (old_sid != new_sid)) |
| 536 | return 1; |
| 537 | |
| 538 | /* check if we were passed the same options twice, |
| 539 | * aka someone passed context=a,context=b |
| 540 | */ |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 541 | if (!(sbsec->flags & SE_SBINITIALIZED)) |
| 542 | if (mnt_flags & flag) |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 543 | return 1; |
| 544 | return 0; |
| 545 | } |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 546 | |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 547 | /* |
| 548 | * Allow filesystems with binary mount data to explicitly set mount point |
| 549 | * labeling information. |
| 550 | */ |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 551 | static int selinux_set_mnt_opts(struct super_block *sb, |
| 552 | struct security_mnt_opts *opts) |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 553 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 554 | const struct cred *cred = current_cred(); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 555 | int rc = 0, i; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 556 | struct superblock_security_struct *sbsec = sb->s_security; |
| 557 | const char *name = sb->s_type->name; |
James Morris | 089be43 | 2008-07-15 18:32:49 +1000 | [diff] [blame] | 558 | struct inode *inode = sbsec->sb->s_root->d_inode; |
| 559 | struct inode_security_struct *root_isec = inode->i_security; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 560 | u32 fscontext_sid = 0, context_sid = 0, rootcontext_sid = 0; |
| 561 | u32 defcontext_sid = 0; |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 562 | char **mount_options = opts->mnt_opts; |
| 563 | int *flags = opts->mnt_opts_flags; |
| 564 | int num_opts = opts->num_mnt_opts; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 565 | |
| 566 | mutex_lock(&sbsec->lock); |
| 567 | |
| 568 | if (!ss_initialized) { |
| 569 | if (!num_opts) { |
| 570 | /* Defer initialization until selinux_complete_init, |
| 571 | after the initial policy is loaded and the security |
| 572 | server is ready to handle calls. */ |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 573 | goto out; |
| 574 | } |
| 575 | rc = -EINVAL; |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 576 | printk(KERN_WARNING "SELinux: Unable to set superblock options " |
| 577 | "before the security server is initialized\n"); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 578 | goto out; |
| 579 | } |
| 580 | |
| 581 | /* |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 582 | * Binary mount data FS will come through this function twice. Once |
| 583 | * from an explicit call and once from the generic calls from the vfs. |
| 584 | * Since the generic VFS calls will not contain any security mount data |
| 585 | * we need to skip the double mount verification. |
| 586 | * |
| 587 | * This does open a hole in which we will not notice if the first |
| 588 | * mount using this sb set explict options and a second mount using |
| 589 | * this sb does not set any security options. (The first options |
| 590 | * will be used for both mounts) |
| 591 | */ |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 592 | if ((sbsec->flags & SE_SBINITIALIZED) && (sb->s_type->fs_flags & FS_BINARY_MOUNTDATA) |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 593 | && (num_opts == 0)) |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 594 | goto out; |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 595 | |
| 596 | /* |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 597 | * parse the mount options, check if they are valid sids. |
| 598 | * also check if someone is trying to mount the same sb more |
| 599 | * than once with different security options. |
| 600 | */ |
| 601 | for (i = 0; i < num_opts; i++) { |
| 602 | u32 sid; |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 603 | |
| 604 | if (flags[i] == SE_SBLABELSUPP) |
| 605 | continue; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 606 | rc = security_context_to_sid(mount_options[i], |
| 607 | strlen(mount_options[i]), &sid); |
| 608 | if (rc) { |
| 609 | printk(KERN_WARNING "SELinux: security_context_to_sid" |
| 610 | "(%s) failed for (dev %s, type %s) errno=%d\n", |
| 611 | mount_options[i], sb->s_id, name, rc); |
| 612 | goto out; |
| 613 | } |
| 614 | switch (flags[i]) { |
| 615 | case FSCONTEXT_MNT: |
| 616 | fscontext_sid = sid; |
| 617 | |
| 618 | if (bad_option(sbsec, FSCONTEXT_MNT, sbsec->sid, |
| 619 | fscontext_sid)) |
| 620 | goto out_double_mount; |
| 621 | |
| 622 | sbsec->flags |= FSCONTEXT_MNT; |
| 623 | break; |
| 624 | case CONTEXT_MNT: |
| 625 | context_sid = sid; |
| 626 | |
| 627 | if (bad_option(sbsec, CONTEXT_MNT, sbsec->mntpoint_sid, |
| 628 | context_sid)) |
| 629 | goto out_double_mount; |
| 630 | |
| 631 | sbsec->flags |= CONTEXT_MNT; |
| 632 | break; |
| 633 | case ROOTCONTEXT_MNT: |
| 634 | rootcontext_sid = sid; |
| 635 | |
| 636 | if (bad_option(sbsec, ROOTCONTEXT_MNT, root_isec->sid, |
| 637 | rootcontext_sid)) |
| 638 | goto out_double_mount; |
| 639 | |
| 640 | sbsec->flags |= ROOTCONTEXT_MNT; |
| 641 | |
| 642 | break; |
| 643 | case DEFCONTEXT_MNT: |
| 644 | defcontext_sid = sid; |
| 645 | |
| 646 | if (bad_option(sbsec, DEFCONTEXT_MNT, sbsec->def_sid, |
| 647 | defcontext_sid)) |
| 648 | goto out_double_mount; |
| 649 | |
| 650 | sbsec->flags |= DEFCONTEXT_MNT; |
| 651 | |
| 652 | break; |
| 653 | default: |
| 654 | rc = -EINVAL; |
| 655 | goto out; |
| 656 | } |
| 657 | } |
| 658 | |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 659 | if (sbsec->flags & SE_SBINITIALIZED) { |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 660 | /* previously mounted with options, but not on this attempt? */ |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 661 | if ((sbsec->flags & SE_MNTMASK) && !num_opts) |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 662 | goto out_double_mount; |
| 663 | rc = 0; |
| 664 | goto out; |
| 665 | } |
| 666 | |
James Morris | 089be43 | 2008-07-15 18:32:49 +1000 | [diff] [blame] | 667 | if (strcmp(sb->s_type->name, "proc") == 0) |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 668 | sbsec->flags |= SE_SBPROC; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 669 | |
| 670 | /* Determine the labeling behavior to use for this filesystem type. */ |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 671 | rc = security_fs_use((sbsec->flags & SE_SBPROC) ? "proc" : sb->s_type->name, &sbsec->behavior, &sbsec->sid); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 672 | if (rc) { |
| 673 | printk(KERN_WARNING "%s: security_fs_use(%s) returned %d\n", |
James Morris | 089be43 | 2008-07-15 18:32:49 +1000 | [diff] [blame] | 674 | __func__, sb->s_type->name, rc); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 675 | goto out; |
| 676 | } |
| 677 | |
| 678 | /* sets the context of the superblock for the fs being mounted. */ |
| 679 | if (fscontext_sid) { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 680 | rc = may_context_mount_sb_relabel(fscontext_sid, sbsec, cred); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 681 | if (rc) |
| 682 | goto out; |
| 683 | |
| 684 | sbsec->sid = fscontext_sid; |
| 685 | } |
| 686 | |
| 687 | /* |
| 688 | * Switch to using mount point labeling behavior. |
| 689 | * sets the label used on all file below the mountpoint, and will set |
| 690 | * the superblock context if not already set. |
| 691 | */ |
| 692 | if (context_sid) { |
| 693 | if (!fscontext_sid) { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 694 | rc = may_context_mount_sb_relabel(context_sid, sbsec, |
| 695 | cred); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 696 | if (rc) |
| 697 | goto out; |
| 698 | sbsec->sid = context_sid; |
| 699 | } else { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 700 | rc = may_context_mount_inode_relabel(context_sid, sbsec, |
| 701 | cred); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 702 | if (rc) |
| 703 | goto out; |
| 704 | } |
| 705 | if (!rootcontext_sid) |
| 706 | rootcontext_sid = context_sid; |
| 707 | |
| 708 | sbsec->mntpoint_sid = context_sid; |
| 709 | sbsec->behavior = SECURITY_FS_USE_MNTPOINT; |
| 710 | } |
| 711 | |
| 712 | if (rootcontext_sid) { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 713 | rc = may_context_mount_inode_relabel(rootcontext_sid, sbsec, |
| 714 | cred); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 715 | if (rc) |
| 716 | goto out; |
| 717 | |
| 718 | root_isec->sid = rootcontext_sid; |
| 719 | root_isec->initialized = 1; |
| 720 | } |
| 721 | |
| 722 | if (defcontext_sid) { |
| 723 | if (sbsec->behavior != SECURITY_FS_USE_XATTR) { |
| 724 | rc = -EINVAL; |
| 725 | printk(KERN_WARNING "SELinux: defcontext option is " |
| 726 | "invalid for this filesystem type\n"); |
| 727 | goto out; |
| 728 | } |
| 729 | |
| 730 | if (defcontext_sid != sbsec->def_sid) { |
| 731 | rc = may_context_mount_inode_relabel(defcontext_sid, |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 732 | sbsec, cred); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 733 | if (rc) |
| 734 | goto out; |
| 735 | } |
| 736 | |
| 737 | sbsec->def_sid = defcontext_sid; |
| 738 | } |
| 739 | |
| 740 | rc = sb_finish_set_opts(sb); |
| 741 | out: |
Eric Paris | bc7e982 | 2006-09-25 23:32:02 -0700 | [diff] [blame] | 742 | mutex_unlock(&sbsec->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | return rc; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 744 | out_double_mount: |
| 745 | rc = -EINVAL; |
| 746 | printk(KERN_WARNING "SELinux: mount invalid. Same superblock, different " |
| 747 | "security settings for (dev %s, type %s)\n", sb->s_id, name); |
| 748 | goto out; |
| 749 | } |
| 750 | |
| 751 | static void selinux_sb_clone_mnt_opts(const struct super_block *oldsb, |
| 752 | struct super_block *newsb) |
| 753 | { |
| 754 | const struct superblock_security_struct *oldsbsec = oldsb->s_security; |
| 755 | struct superblock_security_struct *newsbsec = newsb->s_security; |
| 756 | |
| 757 | int set_fscontext = (oldsbsec->flags & FSCONTEXT_MNT); |
| 758 | int set_context = (oldsbsec->flags & CONTEXT_MNT); |
| 759 | int set_rootcontext = (oldsbsec->flags & ROOTCONTEXT_MNT); |
| 760 | |
Eric Paris | 0f5e642 | 2008-04-21 16:24:11 -0400 | [diff] [blame] | 761 | /* |
| 762 | * if the parent was able to be mounted it clearly had no special lsm |
Al Viro | e8c2625 | 2010-03-23 06:36:54 -0400 | [diff] [blame] | 763 | * mount options. thus we can safely deal with this superblock later |
Eric Paris | 0f5e642 | 2008-04-21 16:24:11 -0400 | [diff] [blame] | 764 | */ |
Al Viro | e8c2625 | 2010-03-23 06:36:54 -0400 | [diff] [blame] | 765 | if (!ss_initialized) |
Eric Paris | 0f5e642 | 2008-04-21 16:24:11 -0400 | [diff] [blame] | 766 | return; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 767 | |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 768 | /* how can we clone if the old one wasn't set up?? */ |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 769 | BUG_ON(!(oldsbsec->flags & SE_SBINITIALIZED)); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 770 | |
Eric Paris | 5a55261 | 2008-04-09 14:08:35 -0400 | [diff] [blame] | 771 | /* if fs is reusing a sb, just let its options stand... */ |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 772 | if (newsbsec->flags & SE_SBINITIALIZED) |
Eric Paris | 5a55261 | 2008-04-09 14:08:35 -0400 | [diff] [blame] | 773 | return; |
| 774 | |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 775 | mutex_lock(&newsbsec->lock); |
| 776 | |
| 777 | newsbsec->flags = oldsbsec->flags; |
| 778 | |
| 779 | newsbsec->sid = oldsbsec->sid; |
| 780 | newsbsec->def_sid = oldsbsec->def_sid; |
| 781 | newsbsec->behavior = oldsbsec->behavior; |
| 782 | |
| 783 | if (set_context) { |
| 784 | u32 sid = oldsbsec->mntpoint_sid; |
| 785 | |
| 786 | if (!set_fscontext) |
| 787 | newsbsec->sid = sid; |
| 788 | if (!set_rootcontext) { |
| 789 | struct inode *newinode = newsb->s_root->d_inode; |
| 790 | struct inode_security_struct *newisec = newinode->i_security; |
| 791 | newisec->sid = sid; |
| 792 | } |
| 793 | newsbsec->mntpoint_sid = sid; |
| 794 | } |
| 795 | if (set_rootcontext) { |
| 796 | const struct inode *oldinode = oldsb->s_root->d_inode; |
| 797 | const struct inode_security_struct *oldisec = oldinode->i_security; |
| 798 | struct inode *newinode = newsb->s_root->d_inode; |
| 799 | struct inode_security_struct *newisec = newinode->i_security; |
| 800 | |
| 801 | newisec->sid = oldisec->sid; |
| 802 | } |
| 803 | |
| 804 | sb_finish_set_opts(newsb); |
| 805 | mutex_unlock(&newsbsec->lock); |
| 806 | } |
| 807 | |
Adrian Bunk | 2e1479d | 2008-03-17 22:29:23 +0200 | [diff] [blame] | 808 | static int selinux_parse_opts_str(char *options, |
| 809 | struct security_mnt_opts *opts) |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 810 | { |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 811 | char *p; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 812 | char *context = NULL, *defcontext = NULL; |
| 813 | char *fscontext = NULL, *rootcontext = NULL; |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 814 | int rc, num_mnt_opts = 0; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 815 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 816 | opts->num_mnt_opts = 0; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 817 | |
| 818 | /* Standard string-based options. */ |
| 819 | while ((p = strsep(&options, "|")) != NULL) { |
| 820 | int token; |
| 821 | substring_t args[MAX_OPT_ARGS]; |
| 822 | |
| 823 | if (!*p) |
| 824 | continue; |
| 825 | |
| 826 | token = match_token(p, tokens, args); |
| 827 | |
| 828 | switch (token) { |
| 829 | case Opt_context: |
| 830 | if (context || defcontext) { |
| 831 | rc = -EINVAL; |
| 832 | printk(KERN_WARNING SEL_MOUNT_FAIL_MSG); |
| 833 | goto out_err; |
| 834 | } |
| 835 | context = match_strdup(&args[0]); |
| 836 | if (!context) { |
| 837 | rc = -ENOMEM; |
| 838 | goto out_err; |
| 839 | } |
| 840 | break; |
| 841 | |
| 842 | case Opt_fscontext: |
| 843 | if (fscontext) { |
| 844 | rc = -EINVAL; |
| 845 | printk(KERN_WARNING SEL_MOUNT_FAIL_MSG); |
| 846 | goto out_err; |
| 847 | } |
| 848 | fscontext = match_strdup(&args[0]); |
| 849 | if (!fscontext) { |
| 850 | rc = -ENOMEM; |
| 851 | goto out_err; |
| 852 | } |
| 853 | break; |
| 854 | |
| 855 | case Opt_rootcontext: |
| 856 | if (rootcontext) { |
| 857 | rc = -EINVAL; |
| 858 | printk(KERN_WARNING SEL_MOUNT_FAIL_MSG); |
| 859 | goto out_err; |
| 860 | } |
| 861 | rootcontext = match_strdup(&args[0]); |
| 862 | if (!rootcontext) { |
| 863 | rc = -ENOMEM; |
| 864 | goto out_err; |
| 865 | } |
| 866 | break; |
| 867 | |
| 868 | case Opt_defcontext: |
| 869 | if (context || defcontext) { |
| 870 | rc = -EINVAL; |
| 871 | printk(KERN_WARNING SEL_MOUNT_FAIL_MSG); |
| 872 | goto out_err; |
| 873 | } |
| 874 | defcontext = match_strdup(&args[0]); |
| 875 | if (!defcontext) { |
| 876 | rc = -ENOMEM; |
| 877 | goto out_err; |
| 878 | } |
| 879 | break; |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 880 | case Opt_labelsupport: |
| 881 | break; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 882 | default: |
| 883 | rc = -EINVAL; |
| 884 | printk(KERN_WARNING "SELinux: unknown mount option\n"); |
| 885 | goto out_err; |
| 886 | |
| 887 | } |
| 888 | } |
| 889 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 890 | rc = -ENOMEM; |
| 891 | opts->mnt_opts = kcalloc(NUM_SEL_MNT_OPTS, sizeof(char *), GFP_ATOMIC); |
| 892 | if (!opts->mnt_opts) |
| 893 | goto out_err; |
| 894 | |
| 895 | opts->mnt_opts_flags = kcalloc(NUM_SEL_MNT_OPTS, sizeof(int), GFP_ATOMIC); |
| 896 | if (!opts->mnt_opts_flags) { |
| 897 | kfree(opts->mnt_opts); |
| 898 | goto out_err; |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 899 | } |
| 900 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 901 | if (fscontext) { |
| 902 | opts->mnt_opts[num_mnt_opts] = fscontext; |
| 903 | opts->mnt_opts_flags[num_mnt_opts++] = FSCONTEXT_MNT; |
| 904 | } |
| 905 | if (context) { |
| 906 | opts->mnt_opts[num_mnt_opts] = context; |
| 907 | opts->mnt_opts_flags[num_mnt_opts++] = CONTEXT_MNT; |
| 908 | } |
| 909 | if (rootcontext) { |
| 910 | opts->mnt_opts[num_mnt_opts] = rootcontext; |
| 911 | opts->mnt_opts_flags[num_mnt_opts++] = ROOTCONTEXT_MNT; |
| 912 | } |
| 913 | if (defcontext) { |
| 914 | opts->mnt_opts[num_mnt_opts] = defcontext; |
| 915 | opts->mnt_opts_flags[num_mnt_opts++] = DEFCONTEXT_MNT; |
| 916 | } |
| 917 | |
| 918 | opts->num_mnt_opts = num_mnt_opts; |
| 919 | return 0; |
| 920 | |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 921 | out_err: |
| 922 | kfree(context); |
| 923 | kfree(defcontext); |
| 924 | kfree(fscontext); |
| 925 | kfree(rootcontext); |
| 926 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | } |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 928 | /* |
| 929 | * string mount options parsing and call set the sbsec |
| 930 | */ |
| 931 | static int superblock_doinit(struct super_block *sb, void *data) |
| 932 | { |
| 933 | int rc = 0; |
| 934 | char *options = data; |
| 935 | struct security_mnt_opts opts; |
| 936 | |
| 937 | security_init_mnt_opts(&opts); |
| 938 | |
| 939 | if (!data) |
| 940 | goto out; |
| 941 | |
| 942 | BUG_ON(sb->s_type->fs_flags & FS_BINARY_MOUNTDATA); |
| 943 | |
| 944 | rc = selinux_parse_opts_str(options, &opts); |
| 945 | if (rc) |
| 946 | goto out_err; |
| 947 | |
| 948 | out: |
| 949 | rc = selinux_set_mnt_opts(sb, &opts); |
| 950 | |
| 951 | out_err: |
| 952 | security_free_mnt_opts(&opts); |
| 953 | return rc; |
| 954 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | |
Adrian Bunk | 3583a71 | 2008-07-22 20:21:23 +0300 | [diff] [blame] | 956 | static void selinux_write_opts(struct seq_file *m, |
| 957 | struct security_mnt_opts *opts) |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 958 | { |
| 959 | int i; |
| 960 | char *prefix; |
| 961 | |
| 962 | for (i = 0; i < opts->num_mnt_opts; i++) { |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 963 | char *has_comma; |
| 964 | |
| 965 | if (opts->mnt_opts[i]) |
| 966 | has_comma = strchr(opts->mnt_opts[i], ','); |
| 967 | else |
| 968 | has_comma = NULL; |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 969 | |
| 970 | switch (opts->mnt_opts_flags[i]) { |
| 971 | case CONTEXT_MNT: |
| 972 | prefix = CONTEXT_STR; |
| 973 | break; |
| 974 | case FSCONTEXT_MNT: |
| 975 | prefix = FSCONTEXT_STR; |
| 976 | break; |
| 977 | case ROOTCONTEXT_MNT: |
| 978 | prefix = ROOTCONTEXT_STR; |
| 979 | break; |
| 980 | case DEFCONTEXT_MNT: |
| 981 | prefix = DEFCONTEXT_STR; |
| 982 | break; |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 983 | case SE_SBLABELSUPP: |
| 984 | seq_putc(m, ','); |
| 985 | seq_puts(m, LABELSUPP_STR); |
| 986 | continue; |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 987 | default: |
| 988 | BUG(); |
| 989 | }; |
| 990 | /* we need a comma before each option */ |
| 991 | seq_putc(m, ','); |
| 992 | seq_puts(m, prefix); |
| 993 | if (has_comma) |
| 994 | seq_putc(m, '\"'); |
| 995 | seq_puts(m, opts->mnt_opts[i]); |
| 996 | if (has_comma) |
| 997 | seq_putc(m, '\"'); |
| 998 | } |
| 999 | } |
| 1000 | |
| 1001 | static int selinux_sb_show_options(struct seq_file *m, struct super_block *sb) |
| 1002 | { |
| 1003 | struct security_mnt_opts opts; |
| 1004 | int rc; |
| 1005 | |
| 1006 | rc = selinux_get_mnt_opts(sb, &opts); |
Eric Paris | 383795c | 2008-07-29 17:07:26 -0400 | [diff] [blame] | 1007 | if (rc) { |
| 1008 | /* before policy load we may get EINVAL, don't show anything */ |
| 1009 | if (rc == -EINVAL) |
| 1010 | rc = 0; |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 1011 | return rc; |
Eric Paris | 383795c | 2008-07-29 17:07:26 -0400 | [diff] [blame] | 1012 | } |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 1013 | |
| 1014 | selinux_write_opts(m, &opts); |
| 1015 | |
| 1016 | security_free_mnt_opts(&opts); |
| 1017 | |
| 1018 | return rc; |
| 1019 | } |
| 1020 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | static inline u16 inode_mode_to_security_class(umode_t mode) |
| 1022 | { |
| 1023 | switch (mode & S_IFMT) { |
| 1024 | case S_IFSOCK: |
| 1025 | return SECCLASS_SOCK_FILE; |
| 1026 | case S_IFLNK: |
| 1027 | return SECCLASS_LNK_FILE; |
| 1028 | case S_IFREG: |
| 1029 | return SECCLASS_FILE; |
| 1030 | case S_IFBLK: |
| 1031 | return SECCLASS_BLK_FILE; |
| 1032 | case S_IFDIR: |
| 1033 | return SECCLASS_DIR; |
| 1034 | case S_IFCHR: |
| 1035 | return SECCLASS_CHR_FILE; |
| 1036 | case S_IFIFO: |
| 1037 | return SECCLASS_FIFO_FILE; |
| 1038 | |
| 1039 | } |
| 1040 | |
| 1041 | return SECCLASS_FILE; |
| 1042 | } |
| 1043 | |
James Morris | 1340258 | 2005-09-30 14:24:34 -0400 | [diff] [blame] | 1044 | static inline int default_protocol_stream(int protocol) |
| 1045 | { |
| 1046 | return (protocol == IPPROTO_IP || protocol == IPPROTO_TCP); |
| 1047 | } |
| 1048 | |
| 1049 | static inline int default_protocol_dgram(int protocol) |
| 1050 | { |
| 1051 | return (protocol == IPPROTO_IP || protocol == IPPROTO_UDP); |
| 1052 | } |
| 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | static inline u16 socket_type_to_security_class(int family, int type, int protocol) |
| 1055 | { |
| 1056 | switch (family) { |
| 1057 | case PF_UNIX: |
| 1058 | switch (type) { |
| 1059 | case SOCK_STREAM: |
| 1060 | case SOCK_SEQPACKET: |
| 1061 | return SECCLASS_UNIX_STREAM_SOCKET; |
| 1062 | case SOCK_DGRAM: |
| 1063 | return SECCLASS_UNIX_DGRAM_SOCKET; |
| 1064 | } |
| 1065 | break; |
| 1066 | case PF_INET: |
| 1067 | case PF_INET6: |
| 1068 | switch (type) { |
| 1069 | case SOCK_STREAM: |
James Morris | 1340258 | 2005-09-30 14:24:34 -0400 | [diff] [blame] | 1070 | if (default_protocol_stream(protocol)) |
| 1071 | return SECCLASS_TCP_SOCKET; |
| 1072 | else |
| 1073 | return SECCLASS_RAWIP_SOCKET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | case SOCK_DGRAM: |
James Morris | 1340258 | 2005-09-30 14:24:34 -0400 | [diff] [blame] | 1075 | if (default_protocol_dgram(protocol)) |
| 1076 | return SECCLASS_UDP_SOCKET; |
| 1077 | else |
| 1078 | return SECCLASS_RAWIP_SOCKET; |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 1079 | case SOCK_DCCP: |
| 1080 | return SECCLASS_DCCP_SOCKET; |
James Morris | 1340258 | 2005-09-30 14:24:34 -0400 | [diff] [blame] | 1081 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | return SECCLASS_RAWIP_SOCKET; |
| 1083 | } |
| 1084 | break; |
| 1085 | case PF_NETLINK: |
| 1086 | switch (protocol) { |
| 1087 | case NETLINK_ROUTE: |
| 1088 | return SECCLASS_NETLINK_ROUTE_SOCKET; |
| 1089 | case NETLINK_FIREWALL: |
| 1090 | return SECCLASS_NETLINK_FIREWALL_SOCKET; |
James Morris | 216efaa | 2005-08-15 20:34:48 -0700 | [diff] [blame] | 1091 | case NETLINK_INET_DIAG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | return SECCLASS_NETLINK_TCPDIAG_SOCKET; |
| 1093 | case NETLINK_NFLOG: |
| 1094 | return SECCLASS_NETLINK_NFLOG_SOCKET; |
| 1095 | case NETLINK_XFRM: |
| 1096 | return SECCLASS_NETLINK_XFRM_SOCKET; |
| 1097 | case NETLINK_SELINUX: |
| 1098 | return SECCLASS_NETLINK_SELINUX_SOCKET; |
| 1099 | case NETLINK_AUDIT: |
| 1100 | return SECCLASS_NETLINK_AUDIT_SOCKET; |
| 1101 | case NETLINK_IP6_FW: |
| 1102 | return SECCLASS_NETLINK_IP6FW_SOCKET; |
| 1103 | case NETLINK_DNRTMSG: |
| 1104 | return SECCLASS_NETLINK_DNRT_SOCKET; |
James Morris | 0c9b794 | 2005-04-16 15:24:13 -0700 | [diff] [blame] | 1105 | case NETLINK_KOBJECT_UEVENT: |
| 1106 | return SECCLASS_NETLINK_KOBJECT_UEVENT_SOCKET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | default: |
| 1108 | return SECCLASS_NETLINK_SOCKET; |
| 1109 | } |
| 1110 | case PF_PACKET: |
| 1111 | return SECCLASS_PACKET_SOCKET; |
| 1112 | case PF_KEY: |
| 1113 | return SECCLASS_KEY_SOCKET; |
Christopher J. PeBenito | 3e3ff15 | 2006-06-09 00:25:03 -0700 | [diff] [blame] | 1114 | case PF_APPLETALK: |
| 1115 | return SECCLASS_APPLETALK_SOCKET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
| 1118 | return SECCLASS_SOCKET; |
| 1119 | } |
| 1120 | |
| 1121 | #ifdef CONFIG_PROC_FS |
Lucian Adrian Grijincu | 8e6c969 | 2011-02-01 18:42:22 +0200 | [diff] [blame] | 1122 | static int selinux_proc_get_sid(struct dentry *dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | u16 tclass, |
| 1124 | u32 *sid) |
| 1125 | { |
Lucian Adrian Grijincu | 8e6c969 | 2011-02-01 18:42:22 +0200 | [diff] [blame] | 1126 | int rc; |
| 1127 | char *buffer, *path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1129 | buffer = (char *)__get_free_page(GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | if (!buffer) |
| 1131 | return -ENOMEM; |
| 1132 | |
Lucian Adrian Grijincu | 8e6c969 | 2011-02-01 18:42:22 +0200 | [diff] [blame] | 1133 | path = dentry_path_raw(dentry, buffer, PAGE_SIZE); |
| 1134 | if (IS_ERR(path)) |
| 1135 | rc = PTR_ERR(path); |
| 1136 | else { |
| 1137 | /* each process gets a /proc/PID/ entry. Strip off the |
| 1138 | * PID part to get a valid selinux labeling. |
| 1139 | * e.g. /proc/1/net/rpc/nfs -> /net/rpc/nfs */ |
| 1140 | while (path[1] >= '0' && path[1] <= '9') { |
| 1141 | path[1] = '/'; |
| 1142 | path++; |
| 1143 | } |
| 1144 | rc = security_genfs_sid("proc", path, tclass, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | free_page((unsigned long)buffer); |
| 1147 | return rc; |
| 1148 | } |
| 1149 | #else |
Lucian Adrian Grijincu | 8e6c969 | 2011-02-01 18:42:22 +0200 | [diff] [blame] | 1150 | static int selinux_proc_get_sid(struct dentry *dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | u16 tclass, |
| 1152 | u32 *sid) |
| 1153 | { |
| 1154 | return -EINVAL; |
| 1155 | } |
| 1156 | #endif |
| 1157 | |
| 1158 | /* The inode's security attributes must be initialized before first use. */ |
| 1159 | static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dentry) |
| 1160 | { |
| 1161 | struct superblock_security_struct *sbsec = NULL; |
| 1162 | struct inode_security_struct *isec = inode->i_security; |
| 1163 | u32 sid; |
| 1164 | struct dentry *dentry; |
| 1165 | #define INITCONTEXTLEN 255 |
| 1166 | char *context = NULL; |
| 1167 | unsigned len = 0; |
| 1168 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | |
| 1170 | if (isec->initialized) |
| 1171 | goto out; |
| 1172 | |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1173 | mutex_lock(&isec->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | if (isec->initialized) |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1175 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | |
| 1177 | sbsec = inode->i_sb->s_security; |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 1178 | if (!(sbsec->flags & SE_SBINITIALIZED)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | /* Defer initialization until selinux_complete_init, |
| 1180 | after the initial policy is loaded and the security |
| 1181 | server is ready to handle calls. */ |
| 1182 | spin_lock(&sbsec->isec_lock); |
| 1183 | if (list_empty(&isec->list)) |
| 1184 | list_add(&isec->list, &sbsec->isec_head); |
| 1185 | spin_unlock(&sbsec->isec_lock); |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1186 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | switch (sbsec->behavior) { |
| 1190 | case SECURITY_FS_USE_XATTR: |
| 1191 | if (!inode->i_op->getxattr) { |
| 1192 | isec->sid = sbsec->def_sid; |
| 1193 | break; |
| 1194 | } |
| 1195 | |
| 1196 | /* Need a dentry, since the xattr API requires one. |
| 1197 | Life would be simpler if we could just pass the inode. */ |
| 1198 | if (opt_dentry) { |
| 1199 | /* Called from d_instantiate or d_splice_alias. */ |
| 1200 | dentry = dget(opt_dentry); |
| 1201 | } else { |
| 1202 | /* Called from selinux_complete_init, try to find a dentry. */ |
| 1203 | dentry = d_find_alias(inode); |
| 1204 | } |
| 1205 | if (!dentry) { |
Eric Paris | df7f54c | 2009-03-09 14:35:58 -0400 | [diff] [blame] | 1206 | /* |
| 1207 | * this is can be hit on boot when a file is accessed |
| 1208 | * before the policy is loaded. When we load policy we |
| 1209 | * may find inodes that have no dentry on the |
| 1210 | * sbsec->isec_head list. No reason to complain as these |
| 1211 | * will get fixed up the next time we go through |
| 1212 | * inode_doinit with a dentry, before these inodes could |
| 1213 | * be used again by userspace. |
| 1214 | */ |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1215 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | } |
| 1217 | |
| 1218 | len = INITCONTEXTLEN; |
Eric Paris | 4cb912f | 2009-02-12 14:50:05 -0500 | [diff] [blame] | 1219 | context = kmalloc(len+1, GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | if (!context) { |
| 1221 | rc = -ENOMEM; |
| 1222 | dput(dentry); |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1223 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | } |
Eric Paris | 4cb912f | 2009-02-12 14:50:05 -0500 | [diff] [blame] | 1225 | context[len] = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | rc = inode->i_op->getxattr(dentry, XATTR_NAME_SELINUX, |
| 1227 | context, len); |
| 1228 | if (rc == -ERANGE) { |
James Morris | 314dabb | 2009-08-10 22:00:13 +1000 | [diff] [blame] | 1229 | kfree(context); |
| 1230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | /* Need a larger buffer. Query for the right size. */ |
| 1232 | rc = inode->i_op->getxattr(dentry, XATTR_NAME_SELINUX, |
| 1233 | NULL, 0); |
| 1234 | if (rc < 0) { |
| 1235 | dput(dentry); |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1236 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | len = rc; |
Eric Paris | 4cb912f | 2009-02-12 14:50:05 -0500 | [diff] [blame] | 1239 | context = kmalloc(len+1, GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | if (!context) { |
| 1241 | rc = -ENOMEM; |
| 1242 | dput(dentry); |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1243 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | } |
Eric Paris | 4cb912f | 2009-02-12 14:50:05 -0500 | [diff] [blame] | 1245 | context[len] = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | rc = inode->i_op->getxattr(dentry, |
| 1247 | XATTR_NAME_SELINUX, |
| 1248 | context, len); |
| 1249 | } |
| 1250 | dput(dentry); |
| 1251 | if (rc < 0) { |
| 1252 | if (rc != -ENODATA) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 1253 | printk(KERN_WARNING "SELinux: %s: getxattr returned " |
Harvey Harrison | dd6f953 | 2008-03-06 10:03:59 +1100 | [diff] [blame] | 1254 | "%d for dev=%s ino=%ld\n", __func__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | -rc, inode->i_sb->s_id, inode->i_ino); |
| 1256 | kfree(context); |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1257 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | } |
| 1259 | /* Map ENODATA to the default file SID */ |
| 1260 | sid = sbsec->def_sid; |
| 1261 | rc = 0; |
| 1262 | } else { |
James Morris | f5c1d5b | 2005-07-28 01:07:37 -0700 | [diff] [blame] | 1263 | rc = security_context_to_sid_default(context, rc, &sid, |
Stephen Smalley | 869ab51 | 2008-04-04 08:46:05 -0400 | [diff] [blame] | 1264 | sbsec->def_sid, |
| 1265 | GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | if (rc) { |
Eric Paris | 4ba0a8a | 2009-02-12 15:01:10 -0500 | [diff] [blame] | 1267 | char *dev = inode->i_sb->s_id; |
| 1268 | unsigned long ino = inode->i_ino; |
| 1269 | |
| 1270 | if (rc == -EINVAL) { |
| 1271 | if (printk_ratelimit()) |
| 1272 | printk(KERN_NOTICE "SELinux: inode=%lu on dev=%s was found to have an invalid " |
| 1273 | "context=%s. This indicates you may need to relabel the inode or the " |
| 1274 | "filesystem in question.\n", ino, dev, context); |
| 1275 | } else { |
| 1276 | printk(KERN_WARNING "SELinux: %s: context_to_sid(%s) " |
| 1277 | "returned %d for dev=%s ino=%ld\n", |
| 1278 | __func__, context, -rc, dev, ino); |
| 1279 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | kfree(context); |
| 1281 | /* Leave with the unlabeled SID */ |
| 1282 | rc = 0; |
| 1283 | break; |
| 1284 | } |
| 1285 | } |
| 1286 | kfree(context); |
| 1287 | isec->sid = sid; |
| 1288 | break; |
| 1289 | case SECURITY_FS_USE_TASK: |
| 1290 | isec->sid = isec->task_sid; |
| 1291 | break; |
| 1292 | case SECURITY_FS_USE_TRANS: |
| 1293 | /* Default to the fs SID. */ |
| 1294 | isec->sid = sbsec->sid; |
| 1295 | |
| 1296 | /* Try to obtain a transition SID. */ |
| 1297 | isec->sclass = inode_mode_to_security_class(inode->i_mode); |
Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1298 | rc = security_transition_sid(isec->task_sid, sbsec->sid, |
| 1299 | isec->sclass, NULL, &sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | if (rc) |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1301 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | isec->sid = sid; |
| 1303 | break; |
Eric Paris | c312feb | 2006-07-10 04:43:53 -0700 | [diff] [blame] | 1304 | case SECURITY_FS_USE_MNTPOINT: |
| 1305 | isec->sid = sbsec->mntpoint_sid; |
| 1306 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | default: |
Eric Paris | c312feb | 2006-07-10 04:43:53 -0700 | [diff] [blame] | 1308 | /* Default to the fs superblock SID. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | isec->sid = sbsec->sid; |
| 1310 | |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 1311 | if ((sbsec->flags & SE_SBPROC) && !S_ISLNK(inode->i_mode)) { |
Lucian Adrian Grijincu | 8e6c969 | 2011-02-01 18:42:22 +0200 | [diff] [blame] | 1312 | if (opt_dentry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | isec->sclass = inode_mode_to_security_class(inode->i_mode); |
Lucian Adrian Grijincu | 8e6c969 | 2011-02-01 18:42:22 +0200 | [diff] [blame] | 1314 | rc = selinux_proc_get_sid(opt_dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | isec->sclass, |
| 1316 | &sid); |
| 1317 | if (rc) |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1318 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | isec->sid = sid; |
| 1320 | } |
| 1321 | } |
| 1322 | break; |
| 1323 | } |
| 1324 | |
| 1325 | isec->initialized = 1; |
| 1326 | |
Eric Paris | 2397074 | 2006-09-25 23:32:01 -0700 | [diff] [blame] | 1327 | out_unlock: |
| 1328 | mutex_unlock(&isec->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | out: |
| 1330 | if (isec->sclass == SECCLASS_FILE) |
| 1331 | isec->sclass = inode_mode_to_security_class(inode->i_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | return rc; |
| 1333 | } |
| 1334 | |
| 1335 | /* Convert a Linux signal to an access vector. */ |
| 1336 | static inline u32 signal_to_av(int sig) |
| 1337 | { |
| 1338 | u32 perm = 0; |
| 1339 | |
| 1340 | switch (sig) { |
| 1341 | case SIGCHLD: |
| 1342 | /* Commonly granted from child to parent. */ |
| 1343 | perm = PROCESS__SIGCHLD; |
| 1344 | break; |
| 1345 | case SIGKILL: |
| 1346 | /* Cannot be caught or ignored */ |
| 1347 | perm = PROCESS__SIGKILL; |
| 1348 | break; |
| 1349 | case SIGSTOP: |
| 1350 | /* Cannot be caught or ignored */ |
| 1351 | perm = PROCESS__SIGSTOP; |
| 1352 | break; |
| 1353 | default: |
| 1354 | /* All other signals. */ |
| 1355 | perm = PROCESS__SIGNAL; |
| 1356 | break; |
| 1357 | } |
| 1358 | |
| 1359 | return perm; |
| 1360 | } |
| 1361 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1362 | /* |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1363 | * Check permission between a pair of credentials |
| 1364 | * fork check, ptrace check, etc. |
| 1365 | */ |
| 1366 | static int cred_has_perm(const struct cred *actor, |
| 1367 | const struct cred *target, |
| 1368 | u32 perms) |
| 1369 | { |
| 1370 | u32 asid = cred_sid(actor), tsid = cred_sid(target); |
| 1371 | |
| 1372 | return avc_has_perm(asid, tsid, SECCLASS_PROCESS, perms, NULL); |
| 1373 | } |
| 1374 | |
| 1375 | /* |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1376 | * Check permission between a pair of tasks, e.g. signal checks, |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1377 | * fork check, ptrace check, etc. |
| 1378 | * tsk1 is the actor and tsk2 is the target |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 1379 | * - this uses the default subjective creds of tsk1 |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1380 | */ |
| 1381 | static int task_has_perm(const struct task_struct *tsk1, |
| 1382 | const struct task_struct *tsk2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | u32 perms) |
| 1384 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1385 | const struct task_security_struct *__tsec1, *__tsec2; |
| 1386 | u32 sid1, sid2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1388 | rcu_read_lock(); |
| 1389 | __tsec1 = __task_cred(tsk1)->security; sid1 = __tsec1->sid; |
| 1390 | __tsec2 = __task_cred(tsk2)->security; sid2 = __tsec2->sid; |
| 1391 | rcu_read_unlock(); |
| 1392 | return avc_has_perm(sid1, sid2, SECCLASS_PROCESS, perms, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | } |
| 1394 | |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 1395 | /* |
| 1396 | * Check permission between current and another task, e.g. signal checks, |
| 1397 | * fork check, ptrace check, etc. |
| 1398 | * current is the actor and tsk2 is the target |
| 1399 | * - this uses current's subjective creds |
| 1400 | */ |
| 1401 | static int current_has_perm(const struct task_struct *tsk, |
| 1402 | u32 perms) |
| 1403 | { |
| 1404 | u32 sid, tsid; |
| 1405 | |
| 1406 | sid = current_sid(); |
| 1407 | tsid = task_sid(tsk); |
| 1408 | return avc_has_perm(sid, tsid, SECCLASS_PROCESS, perms, NULL); |
| 1409 | } |
| 1410 | |
Stephen Smalley | b68e418 | 2008-02-07 11:21:04 -0500 | [diff] [blame] | 1411 | #if CAP_LAST_CAP > 63 |
| 1412 | #error Fix SELinux to handle capabilities > 63. |
| 1413 | #endif |
| 1414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | /* Check whether a task is allowed to use a capability. */ |
| 1416 | static int task_has_capability(struct task_struct *tsk, |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 1417 | const struct cred *cred, |
Eric Paris | 0611216 | 2008-11-11 22:02:50 +1100 | [diff] [blame] | 1418 | int cap, int audit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | { |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1420 | struct common_audit_data ad; |
Eric Paris | 0611216 | 2008-11-11 22:02:50 +1100 | [diff] [blame] | 1421 | struct av_decision avd; |
Stephen Smalley | b68e418 | 2008-02-07 11:21:04 -0500 | [diff] [blame] | 1422 | u16 sclass; |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 1423 | u32 sid = cred_sid(cred); |
Stephen Smalley | b68e418 | 2008-02-07 11:21:04 -0500 | [diff] [blame] | 1424 | u32 av = CAP_TO_MASK(cap); |
Eric Paris | 0611216 | 2008-11-11 22:02:50 +1100 | [diff] [blame] | 1425 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1427 | COMMON_AUDIT_DATA_INIT(&ad, CAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | ad.tsk = tsk; |
| 1429 | ad.u.cap = cap; |
| 1430 | |
Stephen Smalley | b68e418 | 2008-02-07 11:21:04 -0500 | [diff] [blame] | 1431 | switch (CAP_TO_INDEX(cap)) { |
| 1432 | case 0: |
| 1433 | sclass = SECCLASS_CAPABILITY; |
| 1434 | break; |
| 1435 | case 1: |
| 1436 | sclass = SECCLASS_CAPABILITY2; |
| 1437 | break; |
| 1438 | default: |
| 1439 | printk(KERN_ERR |
| 1440 | "SELinux: out of range capability %d\n", cap); |
| 1441 | BUG(); |
| 1442 | } |
Eric Paris | 0611216 | 2008-11-11 22:02:50 +1100 | [diff] [blame] | 1443 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1444 | rc = avc_has_perm_noaudit(sid, sid, sclass, av, 0, &avd); |
Eric Paris | 0611216 | 2008-11-11 22:02:50 +1100 | [diff] [blame] | 1445 | if (audit == SECURITY_CAP_AUDIT) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1446 | avc_audit(sid, sid, sclass, av, &avd, rc, &ad); |
Eric Paris | 0611216 | 2008-11-11 22:02:50 +1100 | [diff] [blame] | 1447 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | } |
| 1449 | |
| 1450 | /* Check whether a task is allowed to use a system operation. */ |
| 1451 | static int task_has_system(struct task_struct *tsk, |
| 1452 | u32 perms) |
| 1453 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1454 | u32 sid = task_sid(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1456 | return avc_has_perm(sid, SECINITSID_KERNEL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | SECCLASS_SYSTEM, perms, NULL); |
| 1458 | } |
| 1459 | |
| 1460 | /* Check whether a task has a particular permission to an inode. |
| 1461 | The 'adp' parameter is optional and allows other audit |
| 1462 | data to be passed (e.g. the dentry). */ |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1463 | static int inode_has_perm(const struct cred *cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | struct inode *inode, |
| 1465 | u32 perms, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1466 | struct common_audit_data *adp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | struct inode_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1469 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1470 | u32 sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | |
David Howells | e0e8173 | 2009-09-02 09:13:40 +0100 | [diff] [blame] | 1472 | validate_creds(cred); |
| 1473 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1474 | if (unlikely(IS_PRIVATE(inode))) |
Stephen Smalley | bbaca6c | 2007-02-14 00:34:16 -0800 | [diff] [blame] | 1475 | return 0; |
| 1476 | |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1477 | sid = cred_sid(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | isec = inode->i_security; |
| 1479 | |
| 1480 | if (!adp) { |
| 1481 | adp = &ad; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1482 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | ad.u.fs.inode = inode; |
| 1484 | } |
| 1485 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1486 | return avc_has_perm(sid, isec->sid, isec->sclass, perms, adp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | } |
| 1488 | |
| 1489 | /* Same as inode_has_perm, but pass explicit audit data containing |
| 1490 | the dentry to help the auditing code to more easily generate the |
| 1491 | pathname if needed. */ |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1492 | static inline int dentry_has_perm(const struct cred *cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | struct vfsmount *mnt, |
| 1494 | struct dentry *dentry, |
| 1495 | u32 av) |
| 1496 | { |
| 1497 | struct inode *inode = dentry->d_inode; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1498 | struct common_audit_data ad; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1499 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1500 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1501 | ad.u.fs.path.mnt = mnt; |
| 1502 | ad.u.fs.path.dentry = dentry; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1503 | return inode_has_perm(cred, inode, av, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | } |
| 1505 | |
| 1506 | /* Check whether a task can use an open file descriptor to |
| 1507 | access an inode in a given way. Check access to the |
| 1508 | descriptor itself, and then use dentry_has_perm to |
| 1509 | check a particular permission to the file. |
| 1510 | Access to the descriptor is implicitly granted if it |
| 1511 | has the same SID as the process. If av is zero, then |
| 1512 | access to the file is not checked, e.g. for cases |
| 1513 | where only the descriptor is affected like seek. */ |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1514 | static int file_has_perm(const struct cred *cred, |
| 1515 | struct file *file, |
| 1516 | u32 av) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | struct file_security_struct *fsec = file->f_security; |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1519 | struct inode *inode = file->f_path.dentry->d_inode; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1520 | struct common_audit_data ad; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1521 | u32 sid = cred_sid(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | int rc; |
| 1523 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1524 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1525 | ad.u.fs.path = file->f_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1527 | if (sid != fsec->sid) { |
| 1528 | rc = avc_has_perm(sid, fsec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | SECCLASS_FD, |
| 1530 | FD__USE, |
| 1531 | &ad); |
| 1532 | if (rc) |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1533 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | } |
| 1535 | |
| 1536 | /* av is zero if only checking access to the descriptor. */ |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1537 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | if (av) |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1539 | rc = inode_has_perm(cred, inode, av, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1541 | out: |
| 1542 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | } |
| 1544 | |
| 1545 | /* Check whether a task can create a file. */ |
| 1546 | static int may_create(struct inode *dir, |
| 1547 | struct dentry *dentry, |
| 1548 | u16 tclass) |
| 1549 | { |
Paul Moore | 5fb4987 | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 1550 | const struct task_security_struct *tsec = current_security(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | struct inode_security_struct *dsec; |
| 1552 | struct superblock_security_struct *sbsec; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1553 | u32 sid, newsid; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1554 | struct common_audit_data ad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | int rc; |
| 1556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | dsec = dir->i_security; |
| 1558 | sbsec = dir->i_sb->s_security; |
| 1559 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1560 | sid = tsec->sid; |
| 1561 | newsid = tsec->create_sid; |
| 1562 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1563 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1564 | ad.u.fs.path.dentry = dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1566 | rc = avc_has_perm(sid, dsec->sid, SECCLASS_DIR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | DIR__ADD_NAME | DIR__SEARCH, |
| 1568 | &ad); |
| 1569 | if (rc) |
| 1570 | return rc; |
| 1571 | |
David P. Quigley | cd89596 | 2009-01-16 09:22:04 -0500 | [diff] [blame] | 1572 | if (!newsid || !(sbsec->flags & SE_SBLABELSUPP)) { |
Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1573 | rc = security_transition_sid(sid, dsec->sid, tclass, NULL, &newsid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | if (rc) |
| 1575 | return rc; |
| 1576 | } |
| 1577 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1578 | rc = avc_has_perm(sid, newsid, tclass, FILE__CREATE, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | if (rc) |
| 1580 | return rc; |
| 1581 | |
| 1582 | return avc_has_perm(newsid, sbsec->sid, |
| 1583 | SECCLASS_FILESYSTEM, |
| 1584 | FILESYSTEM__ASSOCIATE, &ad); |
| 1585 | } |
| 1586 | |
Michael LeMay | 4eb582c | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 1587 | /* Check whether a task can create a key. */ |
| 1588 | static int may_create_key(u32 ksid, |
| 1589 | struct task_struct *ctx) |
| 1590 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1591 | u32 sid = task_sid(ctx); |
Michael LeMay | 4eb582c | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 1592 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1593 | return avc_has_perm(sid, ksid, SECCLASS_KEY, KEY__CREATE, NULL); |
Michael LeMay | 4eb582c | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 1594 | } |
| 1595 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1596 | #define MAY_LINK 0 |
| 1597 | #define MAY_UNLINK 1 |
| 1598 | #define MAY_RMDIR 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | |
| 1600 | /* Check whether a task can link, unlink, or rmdir a file/directory. */ |
| 1601 | static int may_link(struct inode *dir, |
| 1602 | struct dentry *dentry, |
| 1603 | int kind) |
| 1604 | |
| 1605 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | struct inode_security_struct *dsec, *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1607 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1608 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | u32 av; |
| 1610 | int rc; |
| 1611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | dsec = dir->i_security; |
| 1613 | isec = dentry->d_inode->i_security; |
| 1614 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1615 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1616 | ad.u.fs.path.dentry = dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | |
| 1618 | av = DIR__SEARCH; |
| 1619 | av |= (kind ? DIR__REMOVE_NAME : DIR__ADD_NAME); |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1620 | rc = avc_has_perm(sid, dsec->sid, SECCLASS_DIR, av, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | if (rc) |
| 1622 | return rc; |
| 1623 | |
| 1624 | switch (kind) { |
| 1625 | case MAY_LINK: |
| 1626 | av = FILE__LINK; |
| 1627 | break; |
| 1628 | case MAY_UNLINK: |
| 1629 | av = FILE__UNLINK; |
| 1630 | break; |
| 1631 | case MAY_RMDIR: |
| 1632 | av = DIR__RMDIR; |
| 1633 | break; |
| 1634 | default: |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 1635 | printk(KERN_WARNING "SELinux: %s: unrecognized kind %d\n", |
| 1636 | __func__, kind); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | return 0; |
| 1638 | } |
| 1639 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1640 | rc = avc_has_perm(sid, isec->sid, isec->sclass, av, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | return rc; |
| 1642 | } |
| 1643 | |
| 1644 | static inline int may_rename(struct inode *old_dir, |
| 1645 | struct dentry *old_dentry, |
| 1646 | struct inode *new_dir, |
| 1647 | struct dentry *new_dentry) |
| 1648 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | struct inode_security_struct *old_dsec, *new_dsec, *old_isec, *new_isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1650 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1651 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | u32 av; |
| 1653 | int old_is_dir, new_is_dir; |
| 1654 | int rc; |
| 1655 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | old_dsec = old_dir->i_security; |
| 1657 | old_isec = old_dentry->d_inode->i_security; |
| 1658 | old_is_dir = S_ISDIR(old_dentry->d_inode->i_mode); |
| 1659 | new_dsec = new_dir->i_security; |
| 1660 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1661 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1663 | ad.u.fs.path.dentry = old_dentry; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1664 | rc = avc_has_perm(sid, old_dsec->sid, SECCLASS_DIR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | DIR__REMOVE_NAME | DIR__SEARCH, &ad); |
| 1666 | if (rc) |
| 1667 | return rc; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1668 | rc = avc_has_perm(sid, old_isec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | old_isec->sclass, FILE__RENAME, &ad); |
| 1670 | if (rc) |
| 1671 | return rc; |
| 1672 | if (old_is_dir && new_dir != old_dir) { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1673 | rc = avc_has_perm(sid, old_isec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | old_isec->sclass, DIR__REPARENT, &ad); |
| 1675 | if (rc) |
| 1676 | return rc; |
| 1677 | } |
| 1678 | |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1679 | ad.u.fs.path.dentry = new_dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | av = DIR__ADD_NAME | DIR__SEARCH; |
| 1681 | if (new_dentry->d_inode) |
| 1682 | av |= DIR__REMOVE_NAME; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1683 | rc = avc_has_perm(sid, new_dsec->sid, SECCLASS_DIR, av, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | if (rc) |
| 1685 | return rc; |
| 1686 | if (new_dentry->d_inode) { |
| 1687 | new_isec = new_dentry->d_inode->i_security; |
| 1688 | new_is_dir = S_ISDIR(new_dentry->d_inode->i_mode); |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1689 | rc = avc_has_perm(sid, new_isec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | new_isec->sclass, |
| 1691 | (new_is_dir ? DIR__RMDIR : FILE__UNLINK), &ad); |
| 1692 | if (rc) |
| 1693 | return rc; |
| 1694 | } |
| 1695 | |
| 1696 | return 0; |
| 1697 | } |
| 1698 | |
| 1699 | /* Check whether a task can perform a filesystem operation. */ |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1700 | static int superblock_has_perm(const struct cred *cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | struct super_block *sb, |
| 1702 | u32 perms, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1703 | struct common_audit_data *ad) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | struct superblock_security_struct *sbsec; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1706 | u32 sid = cred_sid(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | sbsec = sb->s_security; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1709 | return avc_has_perm(sid, sbsec->sid, SECCLASS_FILESYSTEM, perms, ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | } |
| 1711 | |
| 1712 | /* Convert a Linux mode and permission mask to an access vector. */ |
| 1713 | static inline u32 file_mask_to_av(int mode, int mask) |
| 1714 | { |
| 1715 | u32 av = 0; |
| 1716 | |
| 1717 | if ((mode & S_IFMT) != S_IFDIR) { |
| 1718 | if (mask & MAY_EXEC) |
| 1719 | av |= FILE__EXECUTE; |
| 1720 | if (mask & MAY_READ) |
| 1721 | av |= FILE__READ; |
| 1722 | |
| 1723 | if (mask & MAY_APPEND) |
| 1724 | av |= FILE__APPEND; |
| 1725 | else if (mask & MAY_WRITE) |
| 1726 | av |= FILE__WRITE; |
| 1727 | |
| 1728 | } else { |
| 1729 | if (mask & MAY_EXEC) |
| 1730 | av |= DIR__SEARCH; |
| 1731 | if (mask & MAY_WRITE) |
| 1732 | av |= DIR__WRITE; |
| 1733 | if (mask & MAY_READ) |
| 1734 | av |= DIR__READ; |
| 1735 | } |
| 1736 | |
| 1737 | return av; |
| 1738 | } |
| 1739 | |
| 1740 | /* Convert a Linux file to an access vector. */ |
| 1741 | static inline u32 file_to_av(struct file *file) |
| 1742 | { |
| 1743 | u32 av = 0; |
| 1744 | |
| 1745 | if (file->f_mode & FMODE_READ) |
| 1746 | av |= FILE__READ; |
| 1747 | if (file->f_mode & FMODE_WRITE) { |
| 1748 | if (file->f_flags & O_APPEND) |
| 1749 | av |= FILE__APPEND; |
| 1750 | else |
| 1751 | av |= FILE__WRITE; |
| 1752 | } |
Stephen Smalley | 0794c66 | 2008-03-17 08:55:18 -0400 | [diff] [blame] | 1753 | if (!av) { |
| 1754 | /* |
| 1755 | * Special file opened with flags 3 for ioctl-only use. |
| 1756 | */ |
| 1757 | av = FILE__IOCTL; |
| 1758 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | |
| 1760 | return av; |
| 1761 | } |
| 1762 | |
Eric Paris | 8b6a5a3 | 2008-10-29 17:06:46 -0400 | [diff] [blame] | 1763 | /* |
| 1764 | * Convert a file to an access vector and include the correct open |
| 1765 | * open permission. |
| 1766 | */ |
| 1767 | static inline u32 open_file_to_av(struct file *file) |
| 1768 | { |
| 1769 | u32 av = file_to_av(file); |
| 1770 | |
Eric Paris | 49b7b8d | 2010-07-23 11:44:09 -0400 | [diff] [blame] | 1771 | if (selinux_policycap_openperm) |
| 1772 | av |= FILE__OPEN; |
| 1773 | |
Eric Paris | 8b6a5a3 | 2008-10-29 17:06:46 -0400 | [diff] [blame] | 1774 | return av; |
| 1775 | } |
| 1776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | /* Hook functions begin here. */ |
| 1778 | |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 1779 | static int selinux_ptrace_access_check(struct task_struct *child, |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1780 | unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | int rc; |
| 1783 | |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 1784 | rc = cap_ptrace_access_check(child, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | if (rc) |
| 1786 | return rc; |
| 1787 | |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 1788 | if (mode == PTRACE_MODE_READ) { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1789 | u32 sid = current_sid(); |
| 1790 | u32 csid = task_sid(child); |
| 1791 | return avc_has_perm(sid, csid, SECCLASS_FILE, FILE__READ, NULL); |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 1792 | } |
| 1793 | |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 1794 | return current_has_perm(child, PROCESS__PTRACE); |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1795 | } |
| 1796 | |
| 1797 | static int selinux_ptrace_traceme(struct task_struct *parent) |
| 1798 | { |
| 1799 | int rc; |
| 1800 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 1801 | rc = cap_ptrace_traceme(parent); |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1802 | if (rc) |
| 1803 | return rc; |
| 1804 | |
| 1805 | return task_has_perm(parent, current, PROCESS__PTRACE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | } |
| 1807 | |
| 1808 | static int selinux_capget(struct task_struct *target, kernel_cap_t *effective, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1809 | kernel_cap_t *inheritable, kernel_cap_t *permitted) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | { |
| 1811 | int error; |
| 1812 | |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 1813 | error = current_has_perm(target, PROCESS__GETCAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | if (error) |
| 1815 | return error; |
| 1816 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 1817 | return cap_capget(target, effective, inheritable, permitted); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | } |
| 1819 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1820 | static int selinux_capset(struct cred *new, const struct cred *old, |
| 1821 | const kernel_cap_t *effective, |
| 1822 | const kernel_cap_t *inheritable, |
| 1823 | const kernel_cap_t *permitted) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | { |
| 1825 | int error; |
| 1826 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 1827 | error = cap_capset(new, old, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1828 | effective, inheritable, permitted); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | if (error) |
| 1830 | return error; |
| 1831 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1832 | return cred_has_perm(old, new, PROCESS__SETCAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | } |
| 1834 | |
James Morris | 5626d3e | 2009-01-30 10:05:06 +1100 | [diff] [blame] | 1835 | /* |
| 1836 | * (This comment used to live with the selinux_task_setuid hook, |
| 1837 | * which was removed). |
| 1838 | * |
| 1839 | * Since setuid only affects the current process, and since the SELinux |
| 1840 | * controls are not based on the Linux identity attributes, SELinux does not |
| 1841 | * need to control this operation. However, SELinux does control the use of |
| 1842 | * the CAP_SETUID and CAP_SETGID capabilities using the capable hook. |
| 1843 | */ |
| 1844 | |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 1845 | static int selinux_capable(struct task_struct *tsk, const struct cred *cred, |
| 1846 | int cap, int audit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | { |
| 1848 | int rc; |
| 1849 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 1850 | rc = cap_capable(tsk, cred, cap, audit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | if (rc) |
| 1852 | return rc; |
| 1853 | |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 1854 | return task_has_capability(tsk, cred, cap, audit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | } |
| 1856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | static int selinux_quotactl(int cmds, int type, int id, struct super_block *sb) |
| 1858 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1859 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | int rc = 0; |
| 1861 | |
| 1862 | if (!sb) |
| 1863 | return 0; |
| 1864 | |
| 1865 | switch (cmds) { |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1866 | case Q_SYNC: |
| 1867 | case Q_QUOTAON: |
| 1868 | case Q_QUOTAOFF: |
| 1869 | case Q_SETINFO: |
| 1870 | case Q_SETQUOTA: |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1871 | rc = superblock_has_perm(cred, sb, FILESYSTEM__QUOTAMOD, NULL); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1872 | break; |
| 1873 | case Q_GETFMT: |
| 1874 | case Q_GETINFO: |
| 1875 | case Q_GETQUOTA: |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1876 | rc = superblock_has_perm(cred, sb, FILESYSTEM__QUOTAGET, NULL); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1877 | break; |
| 1878 | default: |
| 1879 | rc = 0; /* let the kernel handle invalid cmds */ |
| 1880 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | } |
| 1882 | return rc; |
| 1883 | } |
| 1884 | |
| 1885 | static int selinux_quota_on(struct dentry *dentry) |
| 1886 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 1887 | const struct cred *cred = current_cred(); |
| 1888 | |
| 1889 | return dentry_has_perm(cred, NULL, dentry, FILE__QUOTAON); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | } |
| 1891 | |
Eric Paris | 12b3052 | 2010-11-15 18:36:29 -0500 | [diff] [blame] | 1892 | static int selinux_syslog(int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | { |
| 1894 | int rc; |
| 1895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | switch (type) { |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1897 | case SYSLOG_ACTION_READ_ALL: /* Read last kernel messages */ |
| 1898 | case SYSLOG_ACTION_SIZE_BUFFER: /* Return size of the log buffer */ |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1899 | rc = task_has_system(current, SYSTEM__SYSLOG_READ); |
| 1900 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1901 | case SYSLOG_ACTION_CONSOLE_OFF: /* Disable logging to console */ |
| 1902 | case SYSLOG_ACTION_CONSOLE_ON: /* Enable logging to console */ |
| 1903 | /* Set level of messages printed to console */ |
| 1904 | case SYSLOG_ACTION_CONSOLE_LEVEL: |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1905 | rc = task_has_system(current, SYSTEM__SYSLOG_CONSOLE); |
| 1906 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1907 | case SYSLOG_ACTION_CLOSE: /* Close log */ |
| 1908 | case SYSLOG_ACTION_OPEN: /* Open log */ |
| 1909 | case SYSLOG_ACTION_READ: /* Read from log */ |
| 1910 | case SYSLOG_ACTION_READ_CLEAR: /* Read/clear last kernel messages */ |
| 1911 | case SYSLOG_ACTION_CLEAR: /* Clear ring buffer */ |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 1912 | default: |
| 1913 | rc = task_has_system(current, SYSTEM__SYSLOG_MOD); |
| 1914 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | } |
| 1916 | return rc; |
| 1917 | } |
| 1918 | |
| 1919 | /* |
| 1920 | * Check that a process has enough memory to allocate a new virtual |
| 1921 | * mapping. 0 means there is enough memory for the allocation to |
| 1922 | * succeed and -ENOMEM implies there is not. |
| 1923 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | * Do not audit the selinux permission check, as this is applied to all |
| 1925 | * processes that allocate mappings. |
| 1926 | */ |
Alan Cox | 34b4e4a | 2007-08-22 14:01:28 -0700 | [diff] [blame] | 1927 | static int selinux_vm_enough_memory(struct mm_struct *mm, long pages) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | { |
| 1929 | int rc, cap_sys_admin = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 1931 | rc = selinux_capable(current, current_cred(), CAP_SYS_ADMIN, |
| 1932 | SECURITY_CAP_NOAUDIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | if (rc == 0) |
| 1934 | cap_sys_admin = 1; |
| 1935 | |
Alan Cox | 34b4e4a | 2007-08-22 14:01:28 -0700 | [diff] [blame] | 1936 | return __vm_enough_memory(mm, pages, cap_sys_admin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | } |
| 1938 | |
| 1939 | /* binprm security operations */ |
| 1940 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1941 | static int selinux_bprm_set_creds(struct linux_binprm *bprm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | { |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1943 | const struct task_security_struct *old_tsec; |
| 1944 | struct task_security_struct *new_tsec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | struct inode_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1946 | struct common_audit_data ad; |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1947 | struct inode *inode = bprm->file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | int rc; |
| 1949 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 1950 | rc = cap_bprm_set_creds(bprm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | if (rc) |
| 1952 | return rc; |
| 1953 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1954 | /* SELinux context only depends on initial program or script and not |
| 1955 | * the script interpreter */ |
| 1956 | if (bprm->cred_prepared) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | return 0; |
| 1958 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1959 | old_tsec = current_security(); |
| 1960 | new_tsec = bprm->cred->security; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | isec = inode->i_security; |
| 1962 | |
| 1963 | /* Default to the current task SID. */ |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1964 | new_tsec->sid = old_tsec->sid; |
| 1965 | new_tsec->osid = old_tsec->sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | |
Michael LeMay | 28eba5b | 2006-06-27 02:53:42 -0700 | [diff] [blame] | 1967 | /* Reset fs, key, and sock SIDs on execve. */ |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1968 | new_tsec->create_sid = 0; |
| 1969 | new_tsec->keycreate_sid = 0; |
| 1970 | new_tsec->sockcreate_sid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1972 | if (old_tsec->exec_sid) { |
| 1973 | new_tsec->sid = old_tsec->exec_sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | /* Reset exec SID on execve. */ |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1975 | new_tsec->exec_sid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | } else { |
| 1977 | /* Check for a default transition on this program. */ |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1978 | rc = security_transition_sid(old_tsec->sid, isec->sid, |
Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1979 | SECCLASS_PROCESS, NULL, |
| 1980 | &new_tsec->sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | if (rc) |
| 1982 | return rc; |
| 1983 | } |
| 1984 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 1985 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1986 | ad.u.fs.path = bprm->file->f_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | |
Josef Sipek | 3d5ff52 | 2006-12-08 02:37:38 -0800 | [diff] [blame] | 1988 | if (bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID) |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1989 | new_tsec->sid = old_tsec->sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1991 | if (new_tsec->sid == old_tsec->sid) { |
| 1992 | rc = avc_has_perm(old_tsec->sid, isec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | SECCLASS_FILE, FILE__EXECUTE_NO_TRANS, &ad); |
| 1994 | if (rc) |
| 1995 | return rc; |
| 1996 | } else { |
| 1997 | /* Check permissions for the transition. */ |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1998 | rc = avc_has_perm(old_tsec->sid, new_tsec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | SECCLASS_PROCESS, PROCESS__TRANSITION, &ad); |
| 2000 | if (rc) |
| 2001 | return rc; |
| 2002 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2003 | rc = avc_has_perm(new_tsec->sid, isec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | SECCLASS_FILE, FILE__ENTRYPOINT, &ad); |
| 2005 | if (rc) |
| 2006 | return rc; |
| 2007 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2008 | /* Check for shared state */ |
| 2009 | if (bprm->unsafe & LSM_UNSAFE_SHARE) { |
| 2010 | rc = avc_has_perm(old_tsec->sid, new_tsec->sid, |
| 2011 | SECCLASS_PROCESS, PROCESS__SHARE, |
| 2012 | NULL); |
| 2013 | if (rc) |
| 2014 | return -EPERM; |
| 2015 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2017 | /* Make sure that anyone attempting to ptrace over a task that |
| 2018 | * changes its SID has the appropriate permit */ |
| 2019 | if (bprm->unsafe & |
| 2020 | (LSM_UNSAFE_PTRACE | LSM_UNSAFE_PTRACE_CAP)) { |
| 2021 | struct task_struct *tracer; |
| 2022 | struct task_security_struct *sec; |
| 2023 | u32 ptsid = 0; |
| 2024 | |
| 2025 | rcu_read_lock(); |
| 2026 | tracer = tracehook_tracer_task(current); |
| 2027 | if (likely(tracer != NULL)) { |
| 2028 | sec = __task_cred(tracer)->security; |
| 2029 | ptsid = sec->sid; |
| 2030 | } |
| 2031 | rcu_read_unlock(); |
| 2032 | |
| 2033 | if (ptsid != 0) { |
| 2034 | rc = avc_has_perm(ptsid, new_tsec->sid, |
| 2035 | SECCLASS_PROCESS, |
| 2036 | PROCESS__PTRACE, NULL); |
| 2037 | if (rc) |
| 2038 | return -EPERM; |
| 2039 | } |
| 2040 | } |
| 2041 | |
| 2042 | /* Clear any possibly unsafe personality bits on exec: */ |
| 2043 | bprm->per_clear |= PER_CLEAR_ON_SETID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | } |
| 2045 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | return 0; |
| 2047 | } |
| 2048 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2049 | static int selinux_bprm_secureexec(struct linux_binprm *bprm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | { |
Paul Moore | 5fb4987 | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 2051 | const struct task_security_struct *tsec = current_security(); |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2052 | u32 sid, osid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2053 | int atsecure = 0; |
| 2054 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2055 | sid = tsec->sid; |
| 2056 | osid = tsec->osid; |
| 2057 | |
| 2058 | if (osid != sid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | /* Enable secure mode for SIDs transitions unless |
| 2060 | the noatsecure permission is granted between |
| 2061 | the two SIDs, i.e. ahp returns 0. */ |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2062 | atsecure = avc_has_perm(osid, sid, |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2063 | SECCLASS_PROCESS, |
| 2064 | PROCESS__NOATSECURE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | } |
| 2066 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 2067 | return (atsecure || cap_bprm_secureexec(bprm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | } |
| 2069 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | extern struct vfsmount *selinuxfs_mount; |
| 2071 | extern struct dentry *selinux_null; |
| 2072 | |
| 2073 | /* Derived from fs/exec.c:flush_old_files. */ |
David Howells | 745ca24 | 2008-11-14 10:39:22 +1100 | [diff] [blame] | 2074 | static inline void flush_unauthorized_files(const struct cred *cred, |
| 2075 | struct files_struct *files) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | { |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 2077 | struct common_audit_data ad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | struct file *file, *devnull = NULL; |
Stephen Smalley | b20c812 | 2006-09-25 23:32:03 -0700 | [diff] [blame] | 2079 | struct tty_struct *tty; |
Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 2080 | struct fdtable *fdt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | long j = -1; |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2082 | int drop_tty = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2084 | tty = get_current_tty(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | if (tty) { |
Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 2086 | spin_lock(&tty_files_lock); |
Eric Paris | 37dd0bd | 2008-10-31 17:40:00 -0400 | [diff] [blame] | 2087 | if (!list_empty(&tty->tty_files)) { |
Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 2088 | struct tty_file_private *file_priv; |
Eric Paris | 37dd0bd | 2008-10-31 17:40:00 -0400 | [diff] [blame] | 2089 | struct inode *inode; |
| 2090 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | /* Revalidate access to controlling tty. |
| 2092 | Use inode_has_perm on the tty inode directly rather |
| 2093 | than using file_has_perm, as this particular open |
| 2094 | file may belong to another process and we are only |
| 2095 | interested in the inode-based check here. */ |
Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 2096 | file_priv = list_first_entry(&tty->tty_files, |
| 2097 | struct tty_file_private, list); |
| 2098 | file = file_priv->file; |
Eric Paris | 37dd0bd | 2008-10-31 17:40:00 -0400 | [diff] [blame] | 2099 | inode = file->f_path.dentry->d_inode; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2100 | if (inode_has_perm(cred, inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | FILE__READ | FILE__WRITE, NULL)) { |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2102 | drop_tty = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | } |
| 2104 | } |
Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 2105 | spin_unlock(&tty_files_lock); |
Alan Cox | 452a00d | 2008-10-13 10:39:13 +0100 | [diff] [blame] | 2106 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2107 | } |
Eric W. Biederman | 98a27ba | 2007-05-08 00:26:56 -0700 | [diff] [blame] | 2108 | /* Reset controlling tty. */ |
| 2109 | if (drop_tty) |
| 2110 | no_tty(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | |
| 2112 | /* Revalidate access to inherited open files. */ |
| 2113 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 2114 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | |
| 2116 | spin_lock(&files->file_lock); |
| 2117 | for (;;) { |
| 2118 | unsigned long set, i; |
| 2119 | int fd; |
| 2120 | |
| 2121 | j++; |
| 2122 | i = j * __NFDBITS; |
Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 2123 | fdt = files_fdtable(files); |
Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 2124 | if (i >= fdt->max_fds) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | break; |
Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 2126 | set = fdt->open_fds->fds_bits[j]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | if (!set) |
| 2128 | continue; |
| 2129 | spin_unlock(&files->file_lock); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2130 | for ( ; set ; i++, set >>= 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | if (set & 1) { |
| 2132 | file = fget(i); |
| 2133 | if (!file) |
| 2134 | continue; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2135 | if (file_has_perm(cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | file, |
| 2137 | file_to_av(file))) { |
| 2138 | sys_close(i); |
| 2139 | fd = get_unused_fd(); |
| 2140 | if (fd != i) { |
| 2141 | if (fd >= 0) |
| 2142 | put_unused_fd(fd); |
| 2143 | fput(file); |
| 2144 | continue; |
| 2145 | } |
| 2146 | if (devnull) { |
Nick Piggin | 095975d | 2006-01-08 01:02:19 -0800 | [diff] [blame] | 2147 | get_file(devnull); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | } else { |
David Howells | 745ca24 | 2008-11-14 10:39:22 +1100 | [diff] [blame] | 2149 | devnull = dentry_open( |
| 2150 | dget(selinux_null), |
| 2151 | mntget(selinuxfs_mount), |
| 2152 | O_RDWR, cred); |
Akinobu Mita | fc5d81e | 2006-11-27 15:16:48 +0900 | [diff] [blame] | 2153 | if (IS_ERR(devnull)) { |
| 2154 | devnull = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | put_unused_fd(fd); |
| 2156 | fput(file); |
| 2157 | continue; |
| 2158 | } |
| 2159 | } |
| 2160 | fd_install(fd, devnull); |
| 2161 | } |
| 2162 | fput(file); |
| 2163 | } |
| 2164 | } |
| 2165 | spin_lock(&files->file_lock); |
| 2166 | |
| 2167 | } |
| 2168 | spin_unlock(&files->file_lock); |
| 2169 | } |
| 2170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | /* |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2172 | * Prepare a process for imminent new credential changes due to exec |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | */ |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2174 | static void selinux_bprm_committing_creds(struct linux_binprm *bprm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | { |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2176 | struct task_security_struct *new_tsec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | struct rlimit *rlim, *initrlim; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | int rc, i; |
| 2179 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2180 | new_tsec = bprm->cred->security; |
| 2181 | if (new_tsec->sid == new_tsec->osid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | return; |
| 2183 | |
| 2184 | /* Close files for which the new task SID is not authorized. */ |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2185 | flush_unauthorized_files(bprm->cred, current->files); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2187 | /* Always clear parent death signal on SID transitions. */ |
| 2188 | current->pdeath_signal = 0; |
| 2189 | |
| 2190 | /* Check whether the new SID can inherit resource limits from the old |
| 2191 | * SID. If not, reset all soft limits to the lower of the current |
| 2192 | * task's hard limit and the init task's soft limit. |
| 2193 | * |
| 2194 | * Note that the setting of hard limits (even to lower them) can be |
| 2195 | * controlled by the setrlimit check. The inclusion of the init task's |
| 2196 | * soft limit into the computation is to avoid resetting soft limits |
| 2197 | * higher than the default soft limit for cases where the default is |
| 2198 | * lower than the hard limit, e.g. RLIMIT_CORE or RLIMIT_STACK. |
| 2199 | */ |
| 2200 | rc = avc_has_perm(new_tsec->osid, new_tsec->sid, SECCLASS_PROCESS, |
| 2201 | PROCESS__RLIMITINH, NULL); |
| 2202 | if (rc) { |
Oleg Nesterov | eb2d55a | 2010-06-23 22:43:32 +0200 | [diff] [blame] | 2203 | /* protect against do_prlimit() */ |
| 2204 | task_lock(current); |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2205 | for (i = 0; i < RLIM_NLIMITS; i++) { |
| 2206 | rlim = current->signal->rlim + i; |
| 2207 | initrlim = init_task.signal->rlim + i; |
| 2208 | rlim->rlim_cur = min(rlim->rlim_max, initrlim->rlim_cur); |
| 2209 | } |
Oleg Nesterov | eb2d55a | 2010-06-23 22:43:32 +0200 | [diff] [blame] | 2210 | task_unlock(current); |
| 2211 | update_rlimit_cpu(current, rlimit(RLIMIT_CPU)); |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2212 | } |
| 2213 | } |
| 2214 | |
| 2215 | /* |
| 2216 | * Clean up the process immediately after the installation of new credentials |
| 2217 | * due to exec |
| 2218 | */ |
| 2219 | static void selinux_bprm_committed_creds(struct linux_binprm *bprm) |
| 2220 | { |
| 2221 | const struct task_security_struct *tsec = current_security(); |
| 2222 | struct itimerval itimer; |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2223 | u32 osid, sid; |
| 2224 | int rc, i; |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2225 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2226 | osid = tsec->osid; |
| 2227 | sid = tsec->sid; |
| 2228 | |
| 2229 | if (sid == osid) |
| 2230 | return; |
| 2231 | |
| 2232 | /* Check whether the new SID can inherit signal state from the old SID. |
| 2233 | * If not, clear itimers to avoid subsequent signal generation and |
| 2234 | * flush and unblock signals. |
| 2235 | * |
| 2236 | * This must occur _after_ the task SID has been updated so that any |
| 2237 | * kill done after the flush will be checked against the new SID. |
| 2238 | */ |
| 2239 | rc = avc_has_perm(osid, sid, SECCLASS_PROCESS, PROCESS__SIGINH, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | if (rc) { |
| 2241 | memset(&itimer, 0, sizeof itimer); |
| 2242 | for (i = 0; i < 3; i++) |
| 2243 | do_setitimer(i, &itimer, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | spin_lock_irq(¤t->sighand->siglock); |
David Howells | 3bcac02 | 2009-04-29 13:45:05 +0100 | [diff] [blame] | 2245 | if (!(current->signal->flags & SIGNAL_GROUP_EXIT)) { |
| 2246 | __flush_signals(current); |
| 2247 | flush_signal_handlers(current, 1); |
| 2248 | sigemptyset(¤t->blocked); |
| 2249 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | spin_unlock_irq(¤t->sighand->siglock); |
| 2251 | } |
| 2252 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2253 | /* Wake up the parent if it is waiting so that it can recheck |
| 2254 | * wait permission to the new task SID. */ |
Oleg Nesterov | ecd6de3 | 2009-04-29 16:02:24 +0200 | [diff] [blame] | 2255 | read_lock(&tasklist_lock); |
Oleg Nesterov | 0b7570e | 2009-09-23 15:56:46 -0700 | [diff] [blame] | 2256 | __wake_up_parent(current, current->real_parent); |
Oleg Nesterov | ecd6de3 | 2009-04-29 16:02:24 +0200 | [diff] [blame] | 2257 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | } |
| 2259 | |
| 2260 | /* superblock security operations */ |
| 2261 | |
| 2262 | static int selinux_sb_alloc_security(struct super_block *sb) |
| 2263 | { |
| 2264 | return superblock_alloc_security(sb); |
| 2265 | } |
| 2266 | |
| 2267 | static void selinux_sb_free_security(struct super_block *sb) |
| 2268 | { |
| 2269 | superblock_free_security(sb); |
| 2270 | } |
| 2271 | |
| 2272 | static inline int match_prefix(char *prefix, int plen, char *option, int olen) |
| 2273 | { |
| 2274 | if (plen > olen) |
| 2275 | return 0; |
| 2276 | |
| 2277 | return !memcmp(prefix, option, plen); |
| 2278 | } |
| 2279 | |
| 2280 | static inline int selinux_option(char *option, int len) |
| 2281 | { |
Eric Paris | 832cbd9 | 2008-04-01 13:24:09 -0400 | [diff] [blame] | 2282 | return (match_prefix(CONTEXT_STR, sizeof(CONTEXT_STR)-1, option, len) || |
| 2283 | match_prefix(FSCONTEXT_STR, sizeof(FSCONTEXT_STR)-1, option, len) || |
| 2284 | match_prefix(DEFCONTEXT_STR, sizeof(DEFCONTEXT_STR)-1, option, len) || |
David P. Quigley | 11689d4 | 2009-01-16 09:22:03 -0500 | [diff] [blame] | 2285 | match_prefix(ROOTCONTEXT_STR, sizeof(ROOTCONTEXT_STR)-1, option, len) || |
| 2286 | match_prefix(LABELSUPP_STR, sizeof(LABELSUPP_STR)-1, option, len)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | } |
| 2288 | |
| 2289 | static inline void take_option(char **to, char *from, int *first, int len) |
| 2290 | { |
| 2291 | if (!*first) { |
| 2292 | **to = ','; |
| 2293 | *to += 1; |
Cory Olmo | 3528a95 | 2006-09-29 01:58:44 -0700 | [diff] [blame] | 2294 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | *first = 0; |
| 2296 | memcpy(*to, from, len); |
| 2297 | *to += len; |
| 2298 | } |
| 2299 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2300 | static inline void take_selinux_option(char **to, char *from, int *first, |
| 2301 | int len) |
Cory Olmo | 3528a95 | 2006-09-29 01:58:44 -0700 | [diff] [blame] | 2302 | { |
| 2303 | int current_size = 0; |
| 2304 | |
| 2305 | if (!*first) { |
| 2306 | **to = '|'; |
| 2307 | *to += 1; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2308 | } else |
Cory Olmo | 3528a95 | 2006-09-29 01:58:44 -0700 | [diff] [blame] | 2309 | *first = 0; |
| 2310 | |
| 2311 | while (current_size < len) { |
| 2312 | if (*from != '"') { |
| 2313 | **to = *from; |
| 2314 | *to += 1; |
| 2315 | } |
| 2316 | from += 1; |
| 2317 | current_size += 1; |
| 2318 | } |
| 2319 | } |
| 2320 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 2321 | static int selinux_sb_copy_data(char *orig, char *copy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2322 | { |
| 2323 | int fnosec, fsec, rc = 0; |
| 2324 | char *in_save, *in_curr, *in_end; |
| 2325 | char *sec_curr, *nosec_save, *nosec; |
Cory Olmo | 3528a95 | 2006-09-29 01:58:44 -0700 | [diff] [blame] | 2326 | int open_quote = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | |
| 2328 | in_curr = orig; |
| 2329 | sec_curr = copy; |
| 2330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | nosec = (char *)get_zeroed_page(GFP_KERNEL); |
| 2332 | if (!nosec) { |
| 2333 | rc = -ENOMEM; |
| 2334 | goto out; |
| 2335 | } |
| 2336 | |
| 2337 | nosec_save = nosec; |
| 2338 | fnosec = fsec = 1; |
| 2339 | in_save = in_end = orig; |
| 2340 | |
| 2341 | do { |
Cory Olmo | 3528a95 | 2006-09-29 01:58:44 -0700 | [diff] [blame] | 2342 | if (*in_end == '"') |
| 2343 | open_quote = !open_quote; |
| 2344 | if ((*in_end == ',' && open_quote == 0) || |
| 2345 | *in_end == '\0') { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | int len = in_end - in_curr; |
| 2347 | |
| 2348 | if (selinux_option(in_curr, len)) |
Cory Olmo | 3528a95 | 2006-09-29 01:58:44 -0700 | [diff] [blame] | 2349 | take_selinux_option(&sec_curr, in_curr, &fsec, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | else |
| 2351 | take_option(&nosec, in_curr, &fnosec, len); |
| 2352 | |
| 2353 | in_curr = in_end + 1; |
| 2354 | } |
| 2355 | } while (*in_end++); |
| 2356 | |
Eric Paris | 6931dfc | 2005-06-30 02:58:51 -0700 | [diff] [blame] | 2357 | strcpy(in_save, nosec_save); |
Gerald Schaefer | da3caa2 | 2005-06-21 17:15:18 -0700 | [diff] [blame] | 2358 | free_page((unsigned long)nosec_save); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | out: |
| 2360 | return rc; |
| 2361 | } |
| 2362 | |
James Morris | 12204e2 | 2008-12-19 10:44:42 +1100 | [diff] [blame] | 2363 | static int selinux_sb_kern_mount(struct super_block *sb, int flags, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2365 | const struct cred *cred = current_cred(); |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 2366 | struct common_audit_data ad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | int rc; |
| 2368 | |
| 2369 | rc = superblock_doinit(sb, data); |
| 2370 | if (rc) |
| 2371 | return rc; |
| 2372 | |
James Morris | 7419224 | 2008-12-19 11:41:10 +1100 | [diff] [blame] | 2373 | /* Allow all mounts performed by the kernel */ |
| 2374 | if (flags & MS_KERNMOUNT) |
| 2375 | return 0; |
| 2376 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 2377 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 2378 | ad.u.fs.path.dentry = sb->s_root; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2379 | return superblock_has_perm(cred, sb, FILESYSTEM__MOUNT, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | } |
| 2381 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 2382 | static int selinux_sb_statfs(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2384 | const struct cred *cred = current_cred(); |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 2385 | struct common_audit_data ad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 2387 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 2388 | ad.u.fs.path.dentry = dentry->d_sb->s_root; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2389 | return superblock_has_perm(cred, dentry->d_sb, FILESYSTEM__GETATTR, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | } |
| 2391 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2392 | static int selinux_mount(char *dev_name, |
Al Viro | b5266eb | 2008-03-22 17:48:24 -0400 | [diff] [blame] | 2393 | struct path *path, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2394 | char *type, |
| 2395 | unsigned long flags, |
| 2396 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2397 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2398 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | |
| 2400 | if (flags & MS_REMOUNT) |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2401 | return superblock_has_perm(cred, path->mnt->mnt_sb, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2402 | FILESYSTEM__REMOUNT, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | else |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2404 | return dentry_has_perm(cred, path->mnt, path->dentry, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2405 | FILE__MOUNTON); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | } |
| 2407 | |
| 2408 | static int selinux_umount(struct vfsmount *mnt, int flags) |
| 2409 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2410 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2412 | return superblock_has_perm(cred, mnt->mnt_sb, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2413 | FILESYSTEM__UNMOUNT, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2414 | } |
| 2415 | |
| 2416 | /* inode security operations */ |
| 2417 | |
| 2418 | static int selinux_inode_alloc_security(struct inode *inode) |
| 2419 | { |
| 2420 | return inode_alloc_security(inode); |
| 2421 | } |
| 2422 | |
| 2423 | static void selinux_inode_free_security(struct inode *inode) |
| 2424 | { |
| 2425 | inode_free_security(inode); |
| 2426 | } |
| 2427 | |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2428 | static int selinux_inode_init_security(struct inode *inode, struct inode *dir, |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 2429 | const struct qstr *qstr, char **name, |
| 2430 | void **value, size_t *len) |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2431 | { |
Paul Moore | 5fb4987 | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 2432 | const struct task_security_struct *tsec = current_security(); |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2433 | struct inode_security_struct *dsec; |
| 2434 | struct superblock_security_struct *sbsec; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2435 | u32 sid, newsid, clen; |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2436 | int rc; |
Stephen Smalley | 570bc1c | 2005-09-09 13:01:43 -0700 | [diff] [blame] | 2437 | char *namep = NULL, *context; |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2438 | |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2439 | dsec = dir->i_security; |
| 2440 | sbsec = dir->i_sb->s_security; |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2441 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2442 | sid = tsec->sid; |
| 2443 | newsid = tsec->create_sid; |
| 2444 | |
Eric Paris | 415103f | 2010-12-02 16:13:40 -0500 | [diff] [blame] | 2445 | if ((sbsec->flags & SE_SBINITIALIZED) && |
| 2446 | (sbsec->behavior == SECURITY_FS_USE_MNTPOINT)) |
| 2447 | newsid = sbsec->mntpoint_sid; |
| 2448 | else if (!newsid || !(sbsec->flags & SE_SBLABELSUPP)) { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2449 | rc = security_transition_sid(sid, dsec->sid, |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2450 | inode_mode_to_security_class(inode->i_mode), |
Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 2451 | qstr, &newsid); |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2452 | if (rc) { |
| 2453 | printk(KERN_WARNING "%s: " |
| 2454 | "security_transition_sid failed, rc=%d (dev=%s " |
| 2455 | "ino=%ld)\n", |
Harvey Harrison | dd6f953 | 2008-03-06 10:03:59 +1100 | [diff] [blame] | 2456 | __func__, |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2457 | -rc, inode->i_sb->s_id, inode->i_ino); |
| 2458 | return rc; |
| 2459 | } |
| 2460 | } |
| 2461 | |
Eric Paris | 296fddf | 2006-09-25 23:32:00 -0700 | [diff] [blame] | 2462 | /* Possibly defer initialization to selinux_complete_init. */ |
David P. Quigley | 0d90a7e | 2009-01-16 09:22:02 -0500 | [diff] [blame] | 2463 | if (sbsec->flags & SE_SBINITIALIZED) { |
Eric Paris | 296fddf | 2006-09-25 23:32:00 -0700 | [diff] [blame] | 2464 | struct inode_security_struct *isec = inode->i_security; |
| 2465 | isec->sclass = inode_mode_to_security_class(inode->i_mode); |
| 2466 | isec->sid = newsid; |
| 2467 | isec->initialized = 1; |
| 2468 | } |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2469 | |
David P. Quigley | cd89596 | 2009-01-16 09:22:04 -0500 | [diff] [blame] | 2470 | if (!ss_initialized || !(sbsec->flags & SE_SBLABELSUPP)) |
Stephen Smalley | 25a74f3 | 2005-11-08 21:34:33 -0800 | [diff] [blame] | 2471 | return -EOPNOTSUPP; |
| 2472 | |
Stephen Smalley | 570bc1c | 2005-09-09 13:01:43 -0700 | [diff] [blame] | 2473 | if (name) { |
Josef Bacik | a02fe13 | 2008-04-04 09:35:05 +1100 | [diff] [blame] | 2474 | namep = kstrdup(XATTR_SELINUX_SUFFIX, GFP_NOFS); |
Stephen Smalley | 570bc1c | 2005-09-09 13:01:43 -0700 | [diff] [blame] | 2475 | if (!namep) |
| 2476 | return -ENOMEM; |
| 2477 | *name = namep; |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2478 | } |
Stephen Smalley | 570bc1c | 2005-09-09 13:01:43 -0700 | [diff] [blame] | 2479 | |
| 2480 | if (value && len) { |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 2481 | rc = security_sid_to_context_force(newsid, &context, &clen); |
Stephen Smalley | 570bc1c | 2005-09-09 13:01:43 -0700 | [diff] [blame] | 2482 | if (rc) { |
| 2483 | kfree(namep); |
| 2484 | return rc; |
| 2485 | } |
| 2486 | *value = context; |
| 2487 | *len = clen; |
| 2488 | } |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2489 | |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2490 | return 0; |
| 2491 | } |
| 2492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2493 | static int selinux_inode_create(struct inode *dir, struct dentry *dentry, int mask) |
| 2494 | { |
| 2495 | return may_create(dir, dentry, SECCLASS_FILE); |
| 2496 | } |
| 2497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2498 | static int selinux_inode_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry) |
| 2499 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | return may_link(dir, old_dentry, MAY_LINK); |
| 2501 | } |
| 2502 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | static int selinux_inode_unlink(struct inode *dir, struct dentry *dentry) |
| 2504 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | return may_link(dir, dentry, MAY_UNLINK); |
| 2506 | } |
| 2507 | |
| 2508 | static int selinux_inode_symlink(struct inode *dir, struct dentry *dentry, const char *name) |
| 2509 | { |
| 2510 | return may_create(dir, dentry, SECCLASS_LNK_FILE); |
| 2511 | } |
| 2512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | static int selinux_inode_mkdir(struct inode *dir, struct dentry *dentry, int mask) |
| 2514 | { |
| 2515 | return may_create(dir, dentry, SECCLASS_DIR); |
| 2516 | } |
| 2517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2518 | static int selinux_inode_rmdir(struct inode *dir, struct dentry *dentry) |
| 2519 | { |
| 2520 | return may_link(dir, dentry, MAY_RMDIR); |
| 2521 | } |
| 2522 | |
| 2523 | static int selinux_inode_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev) |
| 2524 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2525 | return may_create(dir, dentry, inode_mode_to_security_class(mode)); |
| 2526 | } |
| 2527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2528 | static int selinux_inode_rename(struct inode *old_inode, struct dentry *old_dentry, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2529 | struct inode *new_inode, struct dentry *new_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | { |
| 2531 | return may_rename(old_inode, old_dentry, new_inode, new_dentry); |
| 2532 | } |
| 2533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | static int selinux_inode_readlink(struct dentry *dentry) |
| 2535 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2536 | const struct cred *cred = current_cred(); |
| 2537 | |
| 2538 | return dentry_has_perm(cred, NULL, dentry, FILE__READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | } |
| 2540 | |
| 2541 | static int selinux_inode_follow_link(struct dentry *dentry, struct nameidata *nameidata) |
| 2542 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2543 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2544 | |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2545 | return dentry_has_perm(cred, NULL, dentry, FILE__READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2546 | } |
| 2547 | |
Al Viro | b77b064 | 2008-07-17 09:37:02 -0400 | [diff] [blame] | 2548 | static int selinux_inode_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2549 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2550 | const struct cred *cred = current_cred(); |
Eric Paris | b782e0a | 2010-07-23 11:44:03 -0400 | [diff] [blame] | 2551 | struct common_audit_data ad; |
| 2552 | u32 perms; |
| 2553 | bool from_access; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2554 | |
Eric Paris | b782e0a | 2010-07-23 11:44:03 -0400 | [diff] [blame] | 2555 | from_access = mask & MAY_ACCESS; |
Eric Paris | d09ca73 | 2010-07-23 11:43:57 -0400 | [diff] [blame] | 2556 | mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND); |
| 2557 | |
Eric Paris | b782e0a | 2010-07-23 11:44:03 -0400 | [diff] [blame] | 2558 | /* No permission to check. Existence test. */ |
| 2559 | if (!mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | |
Eric Paris | b782e0a | 2010-07-23 11:44:03 -0400 | [diff] [blame] | 2562 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
| 2563 | ad.u.fs.inode = inode; |
| 2564 | |
| 2565 | if (from_access) |
| 2566 | ad.selinux_audit_data.auditdeny |= FILE__AUDIT_ACCESS; |
| 2567 | |
| 2568 | perms = file_mask_to_av(inode->i_mode, mask); |
| 2569 | |
| 2570 | return inode_has_perm(cred, inode, perms, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | } |
| 2572 | |
| 2573 | static int selinux_inode_setattr(struct dentry *dentry, struct iattr *iattr) |
| 2574 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2575 | const struct cred *cred = current_cred(); |
Amerigo Wang | bc6a600 | 2009-08-20 19:29:02 -0700 | [diff] [blame] | 2576 | unsigned int ia_valid = iattr->ia_valid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | |
Amerigo Wang | bc6a600 | 2009-08-20 19:29:02 -0700 | [diff] [blame] | 2578 | /* ATTR_FORCE is just used for ATTR_KILL_S[UG]ID. */ |
| 2579 | if (ia_valid & ATTR_FORCE) { |
| 2580 | ia_valid &= ~(ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_MODE | |
| 2581 | ATTR_FORCE); |
| 2582 | if (!ia_valid) |
| 2583 | return 0; |
| 2584 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | |
Amerigo Wang | bc6a600 | 2009-08-20 19:29:02 -0700 | [diff] [blame] | 2586 | if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID | |
| 2587 | ATTR_ATIME_SET | ATTR_MTIME_SET | ATTR_TIMES_SET)) |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2588 | return dentry_has_perm(cred, NULL, dentry, FILE__SETATTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2589 | |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2590 | return dentry_has_perm(cred, NULL, dentry, FILE__WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2591 | } |
| 2592 | |
| 2593 | static int selinux_inode_getattr(struct vfsmount *mnt, struct dentry *dentry) |
| 2594 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2595 | const struct cred *cred = current_cred(); |
| 2596 | |
| 2597 | return dentry_has_perm(cred, mnt, dentry, FILE__GETATTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | } |
| 2599 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2600 | static int selinux_inode_setotherxattr(struct dentry *dentry, const char *name) |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 2601 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2602 | const struct cred *cred = current_cred(); |
| 2603 | |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 2604 | if (!strncmp(name, XATTR_SECURITY_PREFIX, |
| 2605 | sizeof XATTR_SECURITY_PREFIX - 1)) { |
| 2606 | if (!strcmp(name, XATTR_NAME_CAPS)) { |
| 2607 | if (!capable(CAP_SETFCAP)) |
| 2608 | return -EPERM; |
| 2609 | } else if (!capable(CAP_SYS_ADMIN)) { |
| 2610 | /* A different attribute in the security namespace. |
| 2611 | Restrict to administrator. */ |
| 2612 | return -EPERM; |
| 2613 | } |
| 2614 | } |
| 2615 | |
| 2616 | /* Not an attribute we recognize, so just check the |
| 2617 | ordinary setattr permission. */ |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2618 | return dentry_has_perm(cred, NULL, dentry, FILE__SETATTR); |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 2619 | } |
| 2620 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2621 | static int selinux_inode_setxattr(struct dentry *dentry, const char *name, |
| 2622 | const void *value, size_t size, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2623 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2624 | struct inode *inode = dentry->d_inode; |
| 2625 | struct inode_security_struct *isec = inode->i_security; |
| 2626 | struct superblock_security_struct *sbsec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 2627 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2628 | u32 newsid, sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2629 | int rc = 0; |
| 2630 | |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 2631 | if (strcmp(name, XATTR_NAME_SELINUX)) |
| 2632 | return selinux_inode_setotherxattr(dentry, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2633 | |
| 2634 | sbsec = inode->i_sb->s_security; |
David P. Quigley | cd89596 | 2009-01-16 09:22:04 -0500 | [diff] [blame] | 2635 | if (!(sbsec->flags & SE_SBLABELSUPP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | return -EOPNOTSUPP; |
| 2637 | |
Satyam Sharma | 3bd858a | 2007-07-17 15:00:08 +0530 | [diff] [blame] | 2638 | if (!is_owner_or_cap(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | return -EPERM; |
| 2640 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 2641 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 2642 | ad.u.fs.path.dentry = dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2643 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2644 | rc = avc_has_perm(sid, isec->sid, isec->sclass, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2645 | FILE__RELABELFROM, &ad); |
| 2646 | if (rc) |
| 2647 | return rc; |
| 2648 | |
| 2649 | rc = security_context_to_sid(value, size, &newsid); |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 2650 | if (rc == -EINVAL) { |
| 2651 | if (!capable(CAP_MAC_ADMIN)) |
| 2652 | return rc; |
| 2653 | rc = security_context_to_sid_force(value, size, &newsid); |
| 2654 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2655 | if (rc) |
| 2656 | return rc; |
| 2657 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2658 | rc = avc_has_perm(sid, newsid, isec->sclass, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2659 | FILE__RELABELTO, &ad); |
| 2660 | if (rc) |
| 2661 | return rc; |
| 2662 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2663 | rc = security_validate_transition(isec->sid, newsid, sid, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2664 | isec->sclass); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | if (rc) |
| 2666 | return rc; |
| 2667 | |
| 2668 | return avc_has_perm(newsid, |
| 2669 | sbsec->sid, |
| 2670 | SECCLASS_FILESYSTEM, |
| 2671 | FILESYSTEM__ASSOCIATE, |
| 2672 | &ad); |
| 2673 | } |
| 2674 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2675 | static void selinux_inode_post_setxattr(struct dentry *dentry, const char *name, |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 2676 | const void *value, size_t size, |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2677 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2678 | { |
| 2679 | struct inode *inode = dentry->d_inode; |
| 2680 | struct inode_security_struct *isec = inode->i_security; |
| 2681 | u32 newsid; |
| 2682 | int rc; |
| 2683 | |
| 2684 | if (strcmp(name, XATTR_NAME_SELINUX)) { |
| 2685 | /* Not an attribute we recognize, so nothing to do. */ |
| 2686 | return; |
| 2687 | } |
| 2688 | |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 2689 | rc = security_context_to_sid_force(value, size, &newsid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | if (rc) { |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 2691 | printk(KERN_ERR "SELinux: unable to map context to SID" |
| 2692 | "for (%s, %lu), rc=%d\n", |
| 2693 | inode->i_sb->s_id, inode->i_ino, -rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | return; |
| 2695 | } |
| 2696 | |
| 2697 | isec->sid = newsid; |
| 2698 | return; |
| 2699 | } |
| 2700 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2701 | static int selinux_inode_getxattr(struct dentry *dentry, const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2703 | const struct cred *cred = current_cred(); |
| 2704 | |
| 2705 | return dentry_has_perm(cred, NULL, dentry, FILE__GETATTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | } |
| 2707 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2708 | static int selinux_inode_listxattr(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2709 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2710 | const struct cred *cred = current_cred(); |
| 2711 | |
| 2712 | return dentry_has_perm(cred, NULL, dentry, FILE__GETATTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2713 | } |
| 2714 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2715 | static int selinux_inode_removexattr(struct dentry *dentry, const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2716 | { |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 2717 | if (strcmp(name, XATTR_NAME_SELINUX)) |
| 2718 | return selinux_inode_setotherxattr(dentry, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | |
| 2720 | /* No one is allowed to remove a SELinux security label. |
| 2721 | You can change the label, but all data must be labeled. */ |
| 2722 | return -EACCES; |
| 2723 | } |
| 2724 | |
James Morris | d381d8a | 2005-10-30 14:59:22 -0800 | [diff] [blame] | 2725 | /* |
Stephen Smalley | abc69bb | 2008-05-21 14:16:12 -0400 | [diff] [blame] | 2726 | * Copy the inode security context value to the user. |
James Morris | d381d8a | 2005-10-30 14:59:22 -0800 | [diff] [blame] | 2727 | * |
| 2728 | * Permission check is handled by selinux_inode_getxattr hook. |
| 2729 | */ |
David P. Quigley | 4249259 | 2008-02-04 22:29:39 -0800 | [diff] [blame] | 2730 | static int selinux_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | { |
David P. Quigley | 4249259 | 2008-02-04 22:29:39 -0800 | [diff] [blame] | 2732 | u32 size; |
| 2733 | int error; |
| 2734 | char *context = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | struct inode_security_struct *isec = inode->i_security; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 2737 | if (strcmp(name, XATTR_SELINUX_SUFFIX)) |
| 2738 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | |
Stephen Smalley | abc69bb | 2008-05-21 14:16:12 -0400 | [diff] [blame] | 2740 | /* |
| 2741 | * If the caller has CAP_MAC_ADMIN, then get the raw context |
| 2742 | * value even if it is not defined by current policy; otherwise, |
| 2743 | * use the in-core value under current policy. |
| 2744 | * Use the non-auditing forms of the permission checks since |
| 2745 | * getxattr may be called by unprivileged processes commonly |
| 2746 | * and lack of permission just means that we fall back to the |
| 2747 | * in-core context value, not a denial. |
| 2748 | */ |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 2749 | error = selinux_capable(current, current_cred(), CAP_MAC_ADMIN, |
| 2750 | SECURITY_CAP_NOAUDIT); |
Stephen Smalley | abc69bb | 2008-05-21 14:16:12 -0400 | [diff] [blame] | 2751 | if (!error) |
| 2752 | error = security_sid_to_context_force(isec->sid, &context, |
| 2753 | &size); |
| 2754 | else |
| 2755 | error = security_sid_to_context(isec->sid, &context, &size); |
David P. Quigley | 4249259 | 2008-02-04 22:29:39 -0800 | [diff] [blame] | 2756 | if (error) |
| 2757 | return error; |
| 2758 | error = size; |
| 2759 | if (alloc) { |
| 2760 | *buffer = context; |
| 2761 | goto out_nofree; |
| 2762 | } |
| 2763 | kfree(context); |
| 2764 | out_nofree: |
| 2765 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | } |
| 2767 | |
| 2768 | static int selinux_inode_setsecurity(struct inode *inode, const char *name, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2769 | const void *value, size_t size, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | { |
| 2771 | struct inode_security_struct *isec = inode->i_security; |
| 2772 | u32 newsid; |
| 2773 | int rc; |
| 2774 | |
| 2775 | if (strcmp(name, XATTR_SELINUX_SUFFIX)) |
| 2776 | return -EOPNOTSUPP; |
| 2777 | |
| 2778 | if (!value || !size) |
| 2779 | return -EACCES; |
| 2780 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2781 | rc = security_context_to_sid((void *)value, size, &newsid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | if (rc) |
| 2783 | return rc; |
| 2784 | |
| 2785 | isec->sid = newsid; |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 2786 | isec->initialized = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | return 0; |
| 2788 | } |
| 2789 | |
| 2790 | static int selinux_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size) |
| 2791 | { |
| 2792 | const int len = sizeof(XATTR_NAME_SELINUX); |
| 2793 | if (buffer && len <= buffer_size) |
| 2794 | memcpy(buffer, XATTR_NAME_SELINUX, len); |
| 2795 | return len; |
| 2796 | } |
| 2797 | |
Ahmed S. Darwish | 713a04ae | 2008-03-01 21:52:30 +0200 | [diff] [blame] | 2798 | static void selinux_inode_getsecid(const struct inode *inode, u32 *secid) |
| 2799 | { |
| 2800 | struct inode_security_struct *isec = inode->i_security; |
| 2801 | *secid = isec->sid; |
| 2802 | } |
| 2803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | /* file security operations */ |
| 2805 | |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 2806 | static int selinux_revalidate_file_permission(struct file *file, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2807 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2808 | const struct cred *cred = current_cred(); |
Josef Sipek | 3d5ff52 | 2006-12-08 02:37:38 -0800 | [diff] [blame] | 2809 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | /* file_mask_to_av won't add FILE__WRITE if MAY_APPEND is set */ |
| 2812 | if ((file->f_flags & O_APPEND) && (mask & MAY_WRITE)) |
| 2813 | mask |= MAY_APPEND; |
| 2814 | |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 2815 | return file_has_perm(cred, file, |
| 2816 | file_mask_to_av(inode->i_mode, mask)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | } |
| 2818 | |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 2819 | static int selinux_file_permission(struct file *file, int mask) |
| 2820 | { |
Stephen Smalley | 20dda18 | 2009-06-22 14:54:53 -0400 | [diff] [blame] | 2821 | struct inode *inode = file->f_path.dentry->d_inode; |
| 2822 | struct file_security_struct *fsec = file->f_security; |
| 2823 | struct inode_security_struct *isec = inode->i_security; |
| 2824 | u32 sid = current_sid(); |
| 2825 | |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 2826 | if (!mask) |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 2827 | /* No permission to check. Existence test. */ |
| 2828 | return 0; |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 2829 | |
Stephen Smalley | 20dda18 | 2009-06-22 14:54:53 -0400 | [diff] [blame] | 2830 | if (sid == fsec->sid && fsec->isid == isec->sid && |
| 2831 | fsec->pseqno == avc_policy_seqno()) |
| 2832 | /* No change since dentry_open check. */ |
| 2833 | return 0; |
| 2834 | |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 2835 | return selinux_revalidate_file_permission(file, mask); |
| 2836 | } |
| 2837 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2838 | static int selinux_file_alloc_security(struct file *file) |
| 2839 | { |
| 2840 | return file_alloc_security(file); |
| 2841 | } |
| 2842 | |
| 2843 | static void selinux_file_free_security(struct file *file) |
| 2844 | { |
| 2845 | file_free_security(file); |
| 2846 | } |
| 2847 | |
| 2848 | static int selinux_file_ioctl(struct file *file, unsigned int cmd, |
| 2849 | unsigned long arg) |
| 2850 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2851 | const struct cred *cred = current_cred(); |
Stephen Smalley | 242631c | 2008-06-05 09:21:28 -0400 | [diff] [blame] | 2852 | u32 av = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | |
Stephen Smalley | 242631c | 2008-06-05 09:21:28 -0400 | [diff] [blame] | 2854 | if (_IOC_DIR(cmd) & _IOC_WRITE) |
| 2855 | av |= FILE__WRITE; |
| 2856 | if (_IOC_DIR(cmd) & _IOC_READ) |
| 2857 | av |= FILE__READ; |
| 2858 | if (!av) |
| 2859 | av = FILE__IOCTL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2861 | return file_has_perm(cred, file, av); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | } |
| 2863 | |
Stephen Smalley | fcaaade | 2010-04-28 15:57:57 -0400 | [diff] [blame] | 2864 | static int default_noexec; |
| 2865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | static int file_map_prot_check(struct file *file, unsigned long prot, int shared) |
| 2867 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2868 | const struct cred *cred = current_cred(); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2869 | int rc = 0; |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2870 | |
Stephen Smalley | fcaaade | 2010-04-28 15:57:57 -0400 | [diff] [blame] | 2871 | if (default_noexec && |
| 2872 | (prot & PROT_EXEC) && (!file || (!shared && (prot & PROT_WRITE)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | /* |
| 2874 | * We are making executable an anonymous mapping or a |
| 2875 | * private file mapping that will also be writable. |
| 2876 | * This has an additional check. |
| 2877 | */ |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2878 | rc = cred_has_perm(cred, cred, PROCESS__EXECMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | if (rc) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2880 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | |
| 2883 | if (file) { |
| 2884 | /* read access is always possible with a mapping */ |
| 2885 | u32 av = FILE__READ; |
| 2886 | |
| 2887 | /* write access only matters if the mapping is shared */ |
| 2888 | if (shared && (prot & PROT_WRITE)) |
| 2889 | av |= FILE__WRITE; |
| 2890 | |
| 2891 | if (prot & PROT_EXEC) |
| 2892 | av |= FILE__EXECUTE; |
| 2893 | |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2894 | return file_has_perm(cred, file, av); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2895 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2896 | |
| 2897 | error: |
| 2898 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2899 | } |
| 2900 | |
| 2901 | static int selinux_file_mmap(struct file *file, unsigned long reqprot, |
Eric Paris | ed03218 | 2007-06-28 15:55:21 -0400 | [diff] [blame] | 2902 | unsigned long prot, unsigned long flags, |
| 2903 | unsigned long addr, unsigned long addr_only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2904 | { |
Eric Paris | ed03218 | 2007-06-28 15:55:21 -0400 | [diff] [blame] | 2905 | int rc = 0; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2906 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | |
Eric Paris | 84336d1a | 2009-07-31 12:54:05 -0400 | [diff] [blame] | 2908 | /* |
| 2909 | * notice that we are intentionally putting the SELinux check before |
| 2910 | * the secondary cap_file_mmap check. This is such a likely attempt |
| 2911 | * at bad behaviour/exploit that we always want to get the AVC, even |
| 2912 | * if DAC would have also denied the operation. |
| 2913 | */ |
Eric Paris | a2551df7 | 2009-07-31 12:54:11 -0400 | [diff] [blame] | 2914 | if (addr < CONFIG_LSM_MMAP_MIN_ADDR) { |
Eric Paris | ed03218 | 2007-06-28 15:55:21 -0400 | [diff] [blame] | 2915 | rc = avc_has_perm(sid, sid, SECCLASS_MEMPROTECT, |
| 2916 | MEMPROTECT__MMAP_ZERO, NULL); |
Eric Paris | 84336d1a | 2009-07-31 12:54:05 -0400 | [diff] [blame] | 2917 | if (rc) |
| 2918 | return rc; |
| 2919 | } |
| 2920 | |
| 2921 | /* do DAC check on address space usage */ |
| 2922 | rc = cap_file_mmap(file, reqprot, prot, flags, addr, addr_only); |
Eric Paris | ed03218 | 2007-06-28 15:55:21 -0400 | [diff] [blame] | 2923 | if (rc || addr_only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | return rc; |
| 2925 | |
| 2926 | if (selinux_checkreqprot) |
| 2927 | prot = reqprot; |
| 2928 | |
| 2929 | return file_map_prot_check(file, prot, |
| 2930 | (flags & MAP_TYPE) == MAP_SHARED); |
| 2931 | } |
| 2932 | |
| 2933 | static int selinux_file_mprotect(struct vm_area_struct *vma, |
| 2934 | unsigned long reqprot, |
| 2935 | unsigned long prot) |
| 2936 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2937 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2938 | |
| 2939 | if (selinux_checkreqprot) |
| 2940 | prot = reqprot; |
| 2941 | |
Stephen Smalley | fcaaade | 2010-04-28 15:57:57 -0400 | [diff] [blame] | 2942 | if (default_noexec && |
| 2943 | (prot & PROT_EXEC) && !(vma->vm_flags & VM_EXEC)) { |
James Morris | d541bbe | 2009-01-29 12:19:51 +1100 | [diff] [blame] | 2944 | int rc = 0; |
Stephen Smalley | db4c964 | 2006-02-01 03:05:54 -0800 | [diff] [blame] | 2945 | if (vma->vm_start >= vma->vm_mm->start_brk && |
| 2946 | vma->vm_end <= vma->vm_mm->brk) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2947 | rc = cred_has_perm(cred, cred, PROCESS__EXECHEAP); |
Stephen Smalley | db4c964 | 2006-02-01 03:05:54 -0800 | [diff] [blame] | 2948 | } else if (!vma->vm_file && |
| 2949 | vma->vm_start <= vma->vm_mm->start_stack && |
| 2950 | vma->vm_end >= vma->vm_mm->start_stack) { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 2951 | rc = current_has_perm(current, PROCESS__EXECSTACK); |
Stephen Smalley | db4c964 | 2006-02-01 03:05:54 -0800 | [diff] [blame] | 2952 | } else if (vma->vm_file && vma->anon_vma) { |
| 2953 | /* |
| 2954 | * We are making executable a file mapping that has |
| 2955 | * had some COW done. Since pages might have been |
| 2956 | * written, check ability to execute the possibly |
| 2957 | * modified content. This typically should only |
| 2958 | * occur for text relocations. |
| 2959 | */ |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2960 | rc = file_has_perm(cred, vma->vm_file, FILE__EXECMOD); |
Stephen Smalley | db4c964 | 2006-02-01 03:05:54 -0800 | [diff] [blame] | 2961 | } |
Lorenzo Hernandez GarcÃa-Hierro | 6b99219 | 2005-06-25 14:54:34 -0700 | [diff] [blame] | 2962 | if (rc) |
| 2963 | return rc; |
| 2964 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | |
| 2966 | return file_map_prot_check(vma->vm_file, prot, vma->vm_flags&VM_SHARED); |
| 2967 | } |
| 2968 | |
| 2969 | static int selinux_file_lock(struct file *file, unsigned int cmd) |
| 2970 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2971 | const struct cred *cred = current_cred(); |
| 2972 | |
| 2973 | return file_has_perm(cred, file, FILE__LOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2974 | } |
| 2975 | |
| 2976 | static int selinux_file_fcntl(struct file *file, unsigned int cmd, |
| 2977 | unsigned long arg) |
| 2978 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2979 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | int err = 0; |
| 2981 | |
| 2982 | switch (cmd) { |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2983 | case F_SETFL: |
| 2984 | if (!file->f_path.dentry || !file->f_path.dentry->d_inode) { |
| 2985 | err = -EINVAL; |
| 2986 | break; |
| 2987 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2989 | if ((file->f_flags & O_APPEND) && !(arg & O_APPEND)) { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 2990 | err = file_has_perm(cred, file, FILE__WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | break; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 2992 | } |
| 2993 | /* fall through */ |
| 2994 | case F_SETOWN: |
| 2995 | case F_SETSIG: |
| 2996 | case F_GETFL: |
| 2997 | case F_GETOWN: |
| 2998 | case F_GETSIG: |
| 2999 | /* Just check FD__USE permission */ |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 3000 | err = file_has_perm(cred, file, 0); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3001 | break; |
| 3002 | case F_GETLK: |
| 3003 | case F_SETLK: |
| 3004 | case F_SETLKW: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3005 | #if BITS_PER_LONG == 32 |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3006 | case F_GETLK64: |
| 3007 | case F_SETLK64: |
| 3008 | case F_SETLKW64: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | #endif |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3010 | if (!file->f_path.dentry || !file->f_path.dentry->d_inode) { |
| 3011 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3012 | break; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3013 | } |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 3014 | err = file_has_perm(cred, file, FILE__LOCK); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3015 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3016 | } |
| 3017 | |
| 3018 | return err; |
| 3019 | } |
| 3020 | |
| 3021 | static int selinux_file_set_fowner(struct file *file) |
| 3022 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | struct file_security_struct *fsec; |
| 3024 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | fsec = file->f_security; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3026 | fsec->fown_sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3027 | |
| 3028 | return 0; |
| 3029 | } |
| 3030 | |
| 3031 | static int selinux_file_send_sigiotask(struct task_struct *tsk, |
| 3032 | struct fown_struct *fown, int signum) |
| 3033 | { |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3034 | struct file *file; |
Stephen Smalley | 65c90bc | 2009-05-04 15:43:18 -0400 | [diff] [blame] | 3035 | u32 sid = task_sid(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | u32 perm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | struct file_security_struct *fsec; |
| 3038 | |
| 3039 | /* struct fown_struct is never outside the context of a struct file */ |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3040 | file = container_of(fown, struct file, f_owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3042 | fsec = file->f_security; |
| 3043 | |
| 3044 | if (!signum) |
| 3045 | perm = signal_to_av(SIGIO); /* as per send_sigio_to_task */ |
| 3046 | else |
| 3047 | perm = signal_to_av(signum); |
| 3048 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3049 | return avc_has_perm(fsec->fown_sid, sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3050 | SECCLASS_PROCESS, perm, NULL); |
| 3051 | } |
| 3052 | |
| 3053 | static int selinux_file_receive(struct file *file) |
| 3054 | { |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 3055 | const struct cred *cred = current_cred(); |
| 3056 | |
| 3057 | return file_has_perm(cred, file, file_to_av(file)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3058 | } |
| 3059 | |
David Howells | 745ca24 | 2008-11-14 10:39:22 +1100 | [diff] [blame] | 3060 | static int selinux_dentry_open(struct file *file, const struct cred *cred) |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 3061 | { |
| 3062 | struct file_security_struct *fsec; |
| 3063 | struct inode *inode; |
| 3064 | struct inode_security_struct *isec; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 3065 | |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 3066 | inode = file->f_path.dentry->d_inode; |
| 3067 | fsec = file->f_security; |
| 3068 | isec = inode->i_security; |
| 3069 | /* |
| 3070 | * Save inode label and policy sequence number |
| 3071 | * at open-time so that selinux_file_permission |
| 3072 | * can determine whether revalidation is necessary. |
| 3073 | * Task label is already saved in the file security |
| 3074 | * struct as its SID. |
| 3075 | */ |
| 3076 | fsec->isid = isec->sid; |
| 3077 | fsec->pseqno = avc_policy_seqno(); |
| 3078 | /* |
| 3079 | * Since the inode label or policy seqno may have changed |
| 3080 | * between the selinux_inode_permission check and the saving |
| 3081 | * of state above, recheck that access is still permitted. |
| 3082 | * Otherwise, access might never be revalidated against the |
| 3083 | * new inode label or new policy. |
| 3084 | * This check is not redundant - do not remove. |
| 3085 | */ |
David Howells | 88e67f3 | 2008-11-14 10:39:21 +1100 | [diff] [blame] | 3086 | return inode_has_perm(cred, inode, open_file_to_av(file), NULL); |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 3087 | } |
| 3088 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | /* task security operations */ |
| 3090 | |
| 3091 | static int selinux_task_create(unsigned long clone_flags) |
| 3092 | { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3093 | return current_has_perm(current, PROCESS__FORK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3094 | } |
| 3095 | |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 3096 | /* |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 3097 | * allocate the SELinux part of blank credentials |
| 3098 | */ |
| 3099 | static int selinux_cred_alloc_blank(struct cred *cred, gfp_t gfp) |
| 3100 | { |
| 3101 | struct task_security_struct *tsec; |
| 3102 | |
| 3103 | tsec = kzalloc(sizeof(struct task_security_struct), gfp); |
| 3104 | if (!tsec) |
| 3105 | return -ENOMEM; |
| 3106 | |
| 3107 | cred->security = tsec; |
| 3108 | return 0; |
| 3109 | } |
| 3110 | |
| 3111 | /* |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 3112 | * detach and free the LSM part of a set of credentials |
| 3113 | */ |
| 3114 | static void selinux_cred_free(struct cred *cred) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3115 | { |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 3116 | struct task_security_struct *tsec = cred->security; |
David Howells | e0e8173 | 2009-09-02 09:13:40 +0100 | [diff] [blame] | 3117 | |
| 3118 | BUG_ON((unsigned long) cred->security < PAGE_SIZE); |
| 3119 | cred->security = (void *) 0x7UL; |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 3120 | kfree(tsec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3121 | } |
| 3122 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 3123 | /* |
| 3124 | * prepare a new set of credentials for modification |
| 3125 | */ |
| 3126 | static int selinux_cred_prepare(struct cred *new, const struct cred *old, |
| 3127 | gfp_t gfp) |
| 3128 | { |
| 3129 | const struct task_security_struct *old_tsec; |
| 3130 | struct task_security_struct *tsec; |
| 3131 | |
| 3132 | old_tsec = old->security; |
| 3133 | |
| 3134 | tsec = kmemdup(old_tsec, sizeof(struct task_security_struct), gfp); |
| 3135 | if (!tsec) |
| 3136 | return -ENOMEM; |
| 3137 | |
| 3138 | new->security = tsec; |
| 3139 | return 0; |
| 3140 | } |
| 3141 | |
| 3142 | /* |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 3143 | * transfer the SELinux data to a blank set of creds |
| 3144 | */ |
| 3145 | static void selinux_cred_transfer(struct cred *new, const struct cred *old) |
| 3146 | { |
| 3147 | const struct task_security_struct *old_tsec = old->security; |
| 3148 | struct task_security_struct *tsec = new->security; |
| 3149 | |
| 3150 | *tsec = *old_tsec; |
| 3151 | } |
| 3152 | |
| 3153 | /* |
David Howells | 3a3b7ce | 2008-11-14 10:39:28 +1100 | [diff] [blame] | 3154 | * set the security data for a kernel service |
| 3155 | * - all the creation contexts are set to unlabelled |
| 3156 | */ |
| 3157 | static int selinux_kernel_act_as(struct cred *new, u32 secid) |
| 3158 | { |
| 3159 | struct task_security_struct *tsec = new->security; |
| 3160 | u32 sid = current_sid(); |
| 3161 | int ret; |
| 3162 | |
| 3163 | ret = avc_has_perm(sid, secid, |
| 3164 | SECCLASS_KERNEL_SERVICE, |
| 3165 | KERNEL_SERVICE__USE_AS_OVERRIDE, |
| 3166 | NULL); |
| 3167 | if (ret == 0) { |
| 3168 | tsec->sid = secid; |
| 3169 | tsec->create_sid = 0; |
| 3170 | tsec->keycreate_sid = 0; |
| 3171 | tsec->sockcreate_sid = 0; |
| 3172 | } |
| 3173 | return ret; |
| 3174 | } |
| 3175 | |
| 3176 | /* |
| 3177 | * set the file creation context in a security record to the same as the |
| 3178 | * objective context of the specified inode |
| 3179 | */ |
| 3180 | static int selinux_kernel_create_files_as(struct cred *new, struct inode *inode) |
| 3181 | { |
| 3182 | struct inode_security_struct *isec = inode->i_security; |
| 3183 | struct task_security_struct *tsec = new->security; |
| 3184 | u32 sid = current_sid(); |
| 3185 | int ret; |
| 3186 | |
| 3187 | ret = avc_has_perm(sid, isec->sid, |
| 3188 | SECCLASS_KERNEL_SERVICE, |
| 3189 | KERNEL_SERVICE__CREATE_FILES_AS, |
| 3190 | NULL); |
| 3191 | |
| 3192 | if (ret == 0) |
| 3193 | tsec->create_sid = isec->sid; |
David Howells | ef57471 | 2010-02-26 01:56:16 +0000 | [diff] [blame] | 3194 | return ret; |
David Howells | 3a3b7ce | 2008-11-14 10:39:28 +1100 | [diff] [blame] | 3195 | } |
| 3196 | |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 3197 | static int selinux_kernel_module_request(char *kmod_name) |
Eric Paris | 25354c4 | 2009-08-13 09:45:03 -0400 | [diff] [blame] | 3198 | { |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 3199 | u32 sid; |
| 3200 | struct common_audit_data ad; |
| 3201 | |
| 3202 | sid = task_sid(current); |
| 3203 | |
| 3204 | COMMON_AUDIT_DATA_INIT(&ad, KMOD); |
| 3205 | ad.u.kmod_name = kmod_name; |
| 3206 | |
| 3207 | return avc_has_perm(sid, SECINITSID_KERNEL, SECCLASS_SYSTEM, |
| 3208 | SYSTEM__MODULE_REQUEST, &ad); |
Eric Paris | 25354c4 | 2009-08-13 09:45:03 -0400 | [diff] [blame] | 3209 | } |
| 3210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3211 | static int selinux_task_setpgid(struct task_struct *p, pid_t pgid) |
| 3212 | { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3213 | return current_has_perm(p, PROCESS__SETPGID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3214 | } |
| 3215 | |
| 3216 | static int selinux_task_getpgid(struct task_struct *p) |
| 3217 | { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3218 | return current_has_perm(p, PROCESS__GETPGID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3219 | } |
| 3220 | |
| 3221 | static int selinux_task_getsid(struct task_struct *p) |
| 3222 | { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3223 | return current_has_perm(p, PROCESS__GETSESSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3224 | } |
| 3225 | |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 3226 | static void selinux_task_getsecid(struct task_struct *p, u32 *secid) |
| 3227 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3228 | *secid = task_sid(p); |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 3229 | } |
| 3230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3231 | static int selinux_task_setnice(struct task_struct *p, int nice) |
| 3232 | { |
| 3233 | int rc; |
| 3234 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 3235 | rc = cap_task_setnice(p, nice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3236 | if (rc) |
| 3237 | return rc; |
| 3238 | |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3239 | return current_has_perm(p, PROCESS__SETSCHED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | } |
| 3241 | |
James Morris | 03e6806 | 2006-06-23 02:03:58 -0700 | [diff] [blame] | 3242 | static int selinux_task_setioprio(struct task_struct *p, int ioprio) |
| 3243 | { |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 3244 | int rc; |
| 3245 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 3246 | rc = cap_task_setioprio(p, ioprio); |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 3247 | if (rc) |
| 3248 | return rc; |
| 3249 | |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3250 | return current_has_perm(p, PROCESS__SETSCHED); |
James Morris | 03e6806 | 2006-06-23 02:03:58 -0700 | [diff] [blame] | 3251 | } |
| 3252 | |
David Quigley | a1836a4 | 2006-06-30 01:55:49 -0700 | [diff] [blame] | 3253 | static int selinux_task_getioprio(struct task_struct *p) |
| 3254 | { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3255 | return current_has_perm(p, PROCESS__GETSCHED); |
David Quigley | a1836a4 | 2006-06-30 01:55:49 -0700 | [diff] [blame] | 3256 | } |
| 3257 | |
Jiri Slaby | 8fd00b4 | 2009-08-26 18:41:16 +0200 | [diff] [blame] | 3258 | static int selinux_task_setrlimit(struct task_struct *p, unsigned int resource, |
| 3259 | struct rlimit *new_rlim) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3260 | { |
Jiri Slaby | 8fd00b4 | 2009-08-26 18:41:16 +0200 | [diff] [blame] | 3261 | struct rlimit *old_rlim = p->signal->rlim + resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3262 | |
| 3263 | /* Control the ability to change the hard limit (whether |
| 3264 | lowering or raising it), so that the hard limit can |
| 3265 | later be used as a safe reset point for the soft limit |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 3266 | upon context transitions. See selinux_bprm_committing_creds. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3267 | if (old_rlim->rlim_max != new_rlim->rlim_max) |
Jiri Slaby | 8fd00b4 | 2009-08-26 18:41:16 +0200 | [diff] [blame] | 3268 | return current_has_perm(p, PROCESS__SETRLIMIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3269 | |
| 3270 | return 0; |
| 3271 | } |
| 3272 | |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 3273 | static int selinux_task_setscheduler(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3274 | { |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 3275 | int rc; |
| 3276 | |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 3277 | rc = cap_task_setscheduler(p); |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 3278 | if (rc) |
| 3279 | return rc; |
| 3280 | |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3281 | return current_has_perm(p, PROCESS__SETSCHED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3282 | } |
| 3283 | |
| 3284 | static int selinux_task_getscheduler(struct task_struct *p) |
| 3285 | { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3286 | return current_has_perm(p, PROCESS__GETSCHED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3287 | } |
| 3288 | |
David Quigley | 3560154 | 2006-06-23 02:04:01 -0700 | [diff] [blame] | 3289 | static int selinux_task_movememory(struct task_struct *p) |
| 3290 | { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3291 | return current_has_perm(p, PROCESS__SETSCHED); |
David Quigley | 3560154 | 2006-06-23 02:04:01 -0700 | [diff] [blame] | 3292 | } |
| 3293 | |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 3294 | static int selinux_task_kill(struct task_struct *p, struct siginfo *info, |
| 3295 | int sig, u32 secid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3296 | { |
| 3297 | u32 perm; |
| 3298 | int rc; |
| 3299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | if (!sig) |
| 3301 | perm = PROCESS__SIGNULL; /* null signal; existence test */ |
| 3302 | else |
| 3303 | perm = signal_to_av(sig); |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 3304 | if (secid) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3305 | rc = avc_has_perm(secid, task_sid(p), |
| 3306 | SECCLASS_PROCESS, perm, NULL); |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 3307 | else |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 3308 | rc = current_has_perm(p, perm); |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 3309 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3310 | } |
| 3311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3312 | static int selinux_task_wait(struct task_struct *p) |
| 3313 | { |
Eric Paris | 8a53514 | 2007-10-22 16:10:31 -0400 | [diff] [blame] | 3314 | return task_has_perm(p, current, PROCESS__SIGCHLD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3315 | } |
| 3316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3317 | static void selinux_task_to_inode(struct task_struct *p, |
| 3318 | struct inode *inode) |
| 3319 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3320 | struct inode_security_struct *isec = inode->i_security; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3321 | u32 sid = task_sid(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3322 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3323 | isec->sid = sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | isec->initialized = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3325 | } |
| 3326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3327 | /* Returns error only if unable to parse addresses */ |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 3328 | static int selinux_parse_skb_ipv4(struct sk_buff *skb, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3329 | struct common_audit_data *ad, u8 *proto) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3330 | { |
| 3331 | int offset, ihlen, ret = -EINVAL; |
| 3332 | struct iphdr _iph, *ih; |
| 3333 | |
Arnaldo Carvalho de Melo | bbe735e | 2007-03-10 22:16:10 -0300 | [diff] [blame] | 3334 | offset = skb_network_offset(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3335 | ih = skb_header_pointer(skb, offset, sizeof(_iph), &_iph); |
| 3336 | if (ih == NULL) |
| 3337 | goto out; |
| 3338 | |
| 3339 | ihlen = ih->ihl * 4; |
| 3340 | if (ihlen < sizeof(_iph)) |
| 3341 | goto out; |
| 3342 | |
| 3343 | ad->u.net.v4info.saddr = ih->saddr; |
| 3344 | ad->u.net.v4info.daddr = ih->daddr; |
| 3345 | ret = 0; |
| 3346 | |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 3347 | if (proto) |
| 3348 | *proto = ih->protocol; |
| 3349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3350 | switch (ih->protocol) { |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3351 | case IPPROTO_TCP: { |
| 3352 | struct tcphdr _tcph, *th; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3353 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3354 | if (ntohs(ih->frag_off) & IP_OFFSET) |
| 3355 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3356 | |
| 3357 | offset += ihlen; |
| 3358 | th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph); |
| 3359 | if (th == NULL) |
| 3360 | break; |
| 3361 | |
| 3362 | ad->u.net.sport = th->source; |
| 3363 | ad->u.net.dport = th->dest; |
| 3364 | break; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3365 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3367 | case IPPROTO_UDP: { |
| 3368 | struct udphdr _udph, *uh; |
| 3369 | |
| 3370 | if (ntohs(ih->frag_off) & IP_OFFSET) |
| 3371 | break; |
| 3372 | |
| 3373 | offset += ihlen; |
| 3374 | uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph); |
| 3375 | if (uh == NULL) |
| 3376 | break; |
| 3377 | |
| 3378 | ad->u.net.sport = uh->source; |
| 3379 | ad->u.net.dport = uh->dest; |
| 3380 | break; |
| 3381 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3382 | |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 3383 | case IPPROTO_DCCP: { |
| 3384 | struct dccp_hdr _dccph, *dh; |
| 3385 | |
| 3386 | if (ntohs(ih->frag_off) & IP_OFFSET) |
| 3387 | break; |
| 3388 | |
| 3389 | offset += ihlen; |
| 3390 | dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph); |
| 3391 | if (dh == NULL) |
| 3392 | break; |
| 3393 | |
| 3394 | ad->u.net.sport = dh->dccph_sport; |
| 3395 | ad->u.net.dport = dh->dccph_dport; |
| 3396 | break; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3397 | } |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 3398 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3399 | default: |
| 3400 | break; |
| 3401 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3402 | out: |
| 3403 | return ret; |
| 3404 | } |
| 3405 | |
| 3406 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
| 3407 | |
| 3408 | /* Returns error only if unable to parse addresses */ |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 3409 | static int selinux_parse_skb_ipv6(struct sk_buff *skb, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3410 | struct common_audit_data *ad, u8 *proto) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3411 | { |
| 3412 | u8 nexthdr; |
| 3413 | int ret = -EINVAL, offset; |
| 3414 | struct ipv6hdr _ipv6h, *ip6; |
| 3415 | |
Arnaldo Carvalho de Melo | bbe735e | 2007-03-10 22:16:10 -0300 | [diff] [blame] | 3416 | offset = skb_network_offset(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3417 | ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h); |
| 3418 | if (ip6 == NULL) |
| 3419 | goto out; |
| 3420 | |
| 3421 | ipv6_addr_copy(&ad->u.net.v6info.saddr, &ip6->saddr); |
| 3422 | ipv6_addr_copy(&ad->u.net.v6info.daddr, &ip6->daddr); |
| 3423 | ret = 0; |
| 3424 | |
| 3425 | nexthdr = ip6->nexthdr; |
| 3426 | offset += sizeof(_ipv6h); |
Herbert Xu | 0d3d077 | 2005-04-24 20:16:19 -0700 | [diff] [blame] | 3427 | offset = ipv6_skip_exthdr(skb, offset, &nexthdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3428 | if (offset < 0) |
| 3429 | goto out; |
| 3430 | |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 3431 | if (proto) |
| 3432 | *proto = nexthdr; |
| 3433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3434 | switch (nexthdr) { |
| 3435 | case IPPROTO_TCP: { |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3436 | struct tcphdr _tcph, *th; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3437 | |
| 3438 | th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph); |
| 3439 | if (th == NULL) |
| 3440 | break; |
| 3441 | |
| 3442 | ad->u.net.sport = th->source; |
| 3443 | ad->u.net.dport = th->dest; |
| 3444 | break; |
| 3445 | } |
| 3446 | |
| 3447 | case IPPROTO_UDP: { |
| 3448 | struct udphdr _udph, *uh; |
| 3449 | |
| 3450 | uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph); |
| 3451 | if (uh == NULL) |
| 3452 | break; |
| 3453 | |
| 3454 | ad->u.net.sport = uh->source; |
| 3455 | ad->u.net.dport = uh->dest; |
| 3456 | break; |
| 3457 | } |
| 3458 | |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 3459 | case IPPROTO_DCCP: { |
| 3460 | struct dccp_hdr _dccph, *dh; |
| 3461 | |
| 3462 | dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph); |
| 3463 | if (dh == NULL) |
| 3464 | break; |
| 3465 | |
| 3466 | ad->u.net.sport = dh->dccph_sport; |
| 3467 | ad->u.net.dport = dh->dccph_dport; |
| 3468 | break; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3469 | } |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 3470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3471 | /* includes fragments */ |
| 3472 | default: |
| 3473 | break; |
| 3474 | } |
| 3475 | out: |
| 3476 | return ret; |
| 3477 | } |
| 3478 | |
| 3479 | #endif /* IPV6 */ |
| 3480 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3481 | static int selinux_parse_skb(struct sk_buff *skb, struct common_audit_data *ad, |
David Howells | cf9481e | 2008-07-27 21:31:07 +1000 | [diff] [blame] | 3482 | char **_addrp, int src, u8 *proto) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3483 | { |
David Howells | cf9481e | 2008-07-27 21:31:07 +1000 | [diff] [blame] | 3484 | char *addrp; |
| 3485 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3486 | |
| 3487 | switch (ad->u.net.family) { |
| 3488 | case PF_INET: |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 3489 | ret = selinux_parse_skb_ipv4(skb, ad, proto); |
David Howells | cf9481e | 2008-07-27 21:31:07 +1000 | [diff] [blame] | 3490 | if (ret) |
| 3491 | goto parse_error; |
| 3492 | addrp = (char *)(src ? &ad->u.net.v4info.saddr : |
| 3493 | &ad->u.net.v4info.daddr); |
| 3494 | goto okay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3495 | |
| 3496 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
| 3497 | case PF_INET6: |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 3498 | ret = selinux_parse_skb_ipv6(skb, ad, proto); |
David Howells | cf9481e | 2008-07-27 21:31:07 +1000 | [diff] [blame] | 3499 | if (ret) |
| 3500 | goto parse_error; |
| 3501 | addrp = (char *)(src ? &ad->u.net.v6info.saddr : |
| 3502 | &ad->u.net.v6info.daddr); |
| 3503 | goto okay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3504 | #endif /* IPV6 */ |
| 3505 | default: |
David Howells | cf9481e | 2008-07-27 21:31:07 +1000 | [diff] [blame] | 3506 | addrp = NULL; |
| 3507 | goto okay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3508 | } |
| 3509 | |
David Howells | cf9481e | 2008-07-27 21:31:07 +1000 | [diff] [blame] | 3510 | parse_error: |
| 3511 | printk(KERN_WARNING |
| 3512 | "SELinux: failure in selinux_parse_skb()," |
| 3513 | " unable to parse packet\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3514 | return ret; |
David Howells | cf9481e | 2008-07-27 21:31:07 +1000 | [diff] [blame] | 3515 | |
| 3516 | okay: |
| 3517 | if (_addrp) |
| 3518 | *_addrp = addrp; |
| 3519 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3520 | } |
| 3521 | |
Paul Moore | 4f6a993 | 2007-03-01 14:35:22 -0500 | [diff] [blame] | 3522 | /** |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3523 | * selinux_skb_peerlbl_sid - Determine the peer label of a packet |
Paul Moore | 4f6a993 | 2007-03-01 14:35:22 -0500 | [diff] [blame] | 3524 | * @skb: the packet |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 3525 | * @family: protocol family |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3526 | * @sid: the packet's peer label SID |
Paul Moore | 4f6a993 | 2007-03-01 14:35:22 -0500 | [diff] [blame] | 3527 | * |
| 3528 | * Description: |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3529 | * Check the various different forms of network peer labeling and determine |
| 3530 | * the peer label/SID for the packet; most of the magic actually occurs in |
| 3531 | * the security server function security_net_peersid_cmp(). The function |
| 3532 | * returns zero if the value in @sid is valid (although it may be SECSID_NULL) |
| 3533 | * or -EACCES if @sid is invalid due to inconsistencies with the different |
| 3534 | * peer labels. |
Paul Moore | 4f6a993 | 2007-03-01 14:35:22 -0500 | [diff] [blame] | 3535 | * |
| 3536 | */ |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3537 | static int selinux_skb_peerlbl_sid(struct sk_buff *skb, u16 family, u32 *sid) |
Paul Moore | 4f6a993 | 2007-03-01 14:35:22 -0500 | [diff] [blame] | 3538 | { |
Paul Moore | 71f1cb0 | 2008-01-29 08:51:16 -0500 | [diff] [blame] | 3539 | int err; |
Paul Moore | 4f6a993 | 2007-03-01 14:35:22 -0500 | [diff] [blame] | 3540 | u32 xfrm_sid; |
| 3541 | u32 nlbl_sid; |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3542 | u32 nlbl_type; |
Paul Moore | 4f6a993 | 2007-03-01 14:35:22 -0500 | [diff] [blame] | 3543 | |
| 3544 | selinux_skb_xfrm_sid(skb, &xfrm_sid); |
Paul Moore | 5dbe1eb | 2008-01-29 08:44:18 -0500 | [diff] [blame] | 3545 | selinux_netlbl_skbuff_getsid(skb, family, &nlbl_type, &nlbl_sid); |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3546 | |
Paul Moore | 71f1cb0 | 2008-01-29 08:51:16 -0500 | [diff] [blame] | 3547 | err = security_net_peersid_resolve(nlbl_sid, nlbl_type, xfrm_sid, sid); |
| 3548 | if (unlikely(err)) { |
| 3549 | printk(KERN_WARNING |
| 3550 | "SELinux: failure in selinux_skb_peerlbl_sid()," |
| 3551 | " unable to determine packet's peer label\n"); |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3552 | return -EACCES; |
Paul Moore | 71f1cb0 | 2008-01-29 08:51:16 -0500 | [diff] [blame] | 3553 | } |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3554 | |
| 3555 | return 0; |
Paul Moore | 4f6a993 | 2007-03-01 14:35:22 -0500 | [diff] [blame] | 3556 | } |
| 3557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3558 | /* socket security operations */ |
Paul Moore | d4f2d97 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3559 | |
| 3560 | static u32 socket_sockcreate_sid(const struct task_security_struct *tsec) |
| 3561 | { |
| 3562 | return tsec->sockcreate_sid ? : tsec->sid; |
| 3563 | } |
| 3564 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3565 | static int sock_has_perm(struct task_struct *task, struct sock *sk, u32 perms) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3566 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3567 | struct sk_security_struct *sksec = sk->sk_security; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3568 | struct common_audit_data ad; |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3569 | u32 tsid = task_sid(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3570 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3571 | if (sksec->sid == SECINITSID_KERNEL) |
| 3572 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3573 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3574 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3575 | ad.u.net.sk = sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3576 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3577 | return avc_has_perm(tsid, sksec->sid, sksec->sclass, perms, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | } |
| 3579 | |
| 3580 | static int selinux_socket_create(int family, int type, |
| 3581 | int protocol, int kern) |
| 3582 | { |
Paul Moore | 5fb4987 | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3583 | const struct task_security_struct *tsec = current_security(); |
Paul Moore | d4f2d97 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3584 | u32 newsid; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3585 | u16 secclass; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3586 | |
| 3587 | if (kern) |
Paul Moore | d4f2d97 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3588 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3589 | |
Paul Moore | d4f2d97 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3590 | newsid = socket_sockcreate_sid(tsec); |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3591 | secclass = socket_type_to_security_class(family, type, protocol); |
Paul Moore | d4f2d97 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3592 | return avc_has_perm(tsec->sid, newsid, secclass, SOCKET__CREATE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3593 | } |
| 3594 | |
Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 3595 | static int selinux_socket_post_create(struct socket *sock, int family, |
| 3596 | int type, int protocol, int kern) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3597 | { |
Paul Moore | 5fb4987 | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3598 | const struct task_security_struct *tsec = current_security(); |
Paul Moore | d4f2d97 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3599 | struct inode_security_struct *isec = SOCK_INODE(sock)->i_security; |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 3600 | struct sk_security_struct *sksec; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3601 | int err = 0; |
| 3602 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3603 | if (kern) |
| 3604 | isec->sid = SECINITSID_KERNEL; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3605 | else |
Paul Moore | d4f2d97 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3606 | isec->sid = socket_sockcreate_sid(tsec); |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 3607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3608 | isec->sclass = socket_type_to_security_class(family, type, protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3609 | isec->initialized = 1; |
| 3610 | |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 3611 | if (sock->sk) { |
| 3612 | sksec = sock->sk->sk_security; |
| 3613 | sksec->sid = isec->sid; |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3614 | sksec->sclass = isec->sclass; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 3615 | err = selinux_netlbl_socket_post_create(sock->sk, family); |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 3616 | } |
| 3617 | |
Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 3618 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3619 | } |
| 3620 | |
| 3621 | /* Range of port numbers used to automatically bind. |
| 3622 | Need to determine whether we should perform a name_bind |
| 3623 | permission check between the socket and the port number. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3624 | |
| 3625 | static int selinux_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen) |
| 3626 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3627 | struct sock *sk = sock->sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3628 | u16 family; |
| 3629 | int err; |
| 3630 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3631 | err = sock_has_perm(current, sk, SOCKET__BIND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3632 | if (err) |
| 3633 | goto out; |
| 3634 | |
| 3635 | /* |
| 3636 | * If PF_INET or PF_INET6, check name_bind permission for the port. |
James Morris | 1340258 | 2005-09-30 14:24:34 -0400 | [diff] [blame] | 3637 | * Multiple address binding for SCTP is not supported yet: we just |
| 3638 | * check the first address now. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3639 | */ |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3640 | family = sk->sk_family; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3641 | if (family == PF_INET || family == PF_INET6) { |
| 3642 | char *addrp; |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3643 | struct sk_security_struct *sksec = sk->sk_security; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3644 | struct common_audit_data ad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3645 | struct sockaddr_in *addr4 = NULL; |
| 3646 | struct sockaddr_in6 *addr6 = NULL; |
| 3647 | unsigned short snum; |
James Morris | e399f98 | 2008-06-12 01:39:58 +1000 | [diff] [blame] | 3648 | u32 sid, node_perm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3649 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | if (family == PF_INET) { |
| 3651 | addr4 = (struct sockaddr_in *)address; |
| 3652 | snum = ntohs(addr4->sin_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3653 | addrp = (char *)&addr4->sin_addr.s_addr; |
| 3654 | } else { |
| 3655 | addr6 = (struct sockaddr_in6 *)address; |
| 3656 | snum = ntohs(addr6->sin6_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3657 | addrp = (char *)&addr6->sin6_addr.s6_addr; |
| 3658 | } |
| 3659 | |
Stephen Hemminger | 227b60f | 2007-10-10 17:30:46 -0700 | [diff] [blame] | 3660 | if (snum) { |
| 3661 | int low, high; |
| 3662 | |
| 3663 | inet_get_local_port_range(&low, &high); |
| 3664 | |
| 3665 | if (snum < max(PROT_SOCK, low) || snum > high) { |
Paul Moore | 3e11217 | 2008-04-10 10:48:14 -0400 | [diff] [blame] | 3666 | err = sel_netport_sid(sk->sk_protocol, |
| 3667 | snum, &sid); |
Stephen Hemminger | 227b60f | 2007-10-10 17:30:46 -0700 | [diff] [blame] | 3668 | if (err) |
| 3669 | goto out; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3670 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Stephen Hemminger | 227b60f | 2007-10-10 17:30:46 -0700 | [diff] [blame] | 3671 | ad.u.net.sport = htons(snum); |
| 3672 | ad.u.net.family = family; |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3673 | err = avc_has_perm(sksec->sid, sid, |
| 3674 | sksec->sclass, |
Stephen Hemminger | 227b60f | 2007-10-10 17:30:46 -0700 | [diff] [blame] | 3675 | SOCKET__NAME_BIND, &ad); |
| 3676 | if (err) |
| 3677 | goto out; |
| 3678 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3679 | } |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3680 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3681 | switch (sksec->sclass) { |
James Morris | 1340258 | 2005-09-30 14:24:34 -0400 | [diff] [blame] | 3682 | case SECCLASS_TCP_SOCKET: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3683 | node_perm = TCP_SOCKET__NODE_BIND; |
| 3684 | break; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3685 | |
James Morris | 1340258 | 2005-09-30 14:24:34 -0400 | [diff] [blame] | 3686 | case SECCLASS_UDP_SOCKET: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3687 | node_perm = UDP_SOCKET__NODE_BIND; |
| 3688 | break; |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 3689 | |
| 3690 | case SECCLASS_DCCP_SOCKET: |
| 3691 | node_perm = DCCP_SOCKET__NODE_BIND; |
| 3692 | break; |
| 3693 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3694 | default: |
| 3695 | node_perm = RAWIP_SOCKET__NODE_BIND; |
| 3696 | break; |
| 3697 | } |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3698 | |
Paul Moore | 224dfbd | 2008-01-29 08:38:13 -0500 | [diff] [blame] | 3699 | err = sel_netnode_sid(addrp, family, &sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3700 | if (err) |
| 3701 | goto out; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3702 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3703 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3704 | ad.u.net.sport = htons(snum); |
| 3705 | ad.u.net.family = family; |
| 3706 | |
| 3707 | if (family == PF_INET) |
| 3708 | ad.u.net.v4info.saddr = addr4->sin_addr.s_addr; |
| 3709 | else |
| 3710 | ipv6_addr_copy(&ad.u.net.v6info.saddr, &addr6->sin6_addr); |
| 3711 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3712 | err = avc_has_perm(sksec->sid, sid, |
| 3713 | sksec->sclass, node_perm, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | if (err) |
| 3715 | goto out; |
| 3716 | } |
| 3717 | out: |
| 3718 | return err; |
| 3719 | } |
| 3720 | |
| 3721 | static int selinux_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen) |
| 3722 | { |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 3723 | struct sock *sk = sock->sk; |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3724 | struct sk_security_struct *sksec = sk->sk_security; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3725 | int err; |
| 3726 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3727 | err = sock_has_perm(current, sk, SOCKET__CONNECT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3728 | if (err) |
| 3729 | return err; |
| 3730 | |
| 3731 | /* |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 3732 | * If a TCP or DCCP socket, check name_connect permission for the port. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3733 | */ |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3734 | if (sksec->sclass == SECCLASS_TCP_SOCKET || |
| 3735 | sksec->sclass == SECCLASS_DCCP_SOCKET) { |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3736 | struct common_audit_data ad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3737 | struct sockaddr_in *addr4 = NULL; |
| 3738 | struct sockaddr_in6 *addr6 = NULL; |
| 3739 | unsigned short snum; |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 3740 | u32 sid, perm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | |
| 3742 | if (sk->sk_family == PF_INET) { |
| 3743 | addr4 = (struct sockaddr_in *)address; |
Stephen Smalley | 911656f | 2005-07-28 21:16:21 -0700 | [diff] [blame] | 3744 | if (addrlen < sizeof(struct sockaddr_in)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3745 | return -EINVAL; |
| 3746 | snum = ntohs(addr4->sin_port); |
| 3747 | } else { |
| 3748 | addr6 = (struct sockaddr_in6 *)address; |
Stephen Smalley | 911656f | 2005-07-28 21:16:21 -0700 | [diff] [blame] | 3749 | if (addrlen < SIN6_LEN_RFC2133) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3750 | return -EINVAL; |
| 3751 | snum = ntohs(addr6->sin6_port); |
| 3752 | } |
| 3753 | |
Paul Moore | 3e11217 | 2008-04-10 10:48:14 -0400 | [diff] [blame] | 3754 | err = sel_netport_sid(sk->sk_protocol, snum, &sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3755 | if (err) |
| 3756 | goto out; |
| 3757 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3758 | perm = (sksec->sclass == SECCLASS_TCP_SOCKET) ? |
James Morris | 2ee92d4 | 2006-11-13 16:09:01 -0800 | [diff] [blame] | 3759 | TCP_SOCKET__NAME_CONNECT : DCCP_SOCKET__NAME_CONNECT; |
| 3760 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3761 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3762 | ad.u.net.dport = htons(snum); |
| 3763 | ad.u.net.family = sk->sk_family; |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3764 | err = avc_has_perm(sksec->sid, sid, sksec->sclass, perm, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3765 | if (err) |
| 3766 | goto out; |
| 3767 | } |
| 3768 | |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 3769 | err = selinux_netlbl_socket_connect(sk, address); |
| 3770 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3771 | out: |
| 3772 | return err; |
| 3773 | } |
| 3774 | |
| 3775 | static int selinux_socket_listen(struct socket *sock, int backlog) |
| 3776 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3777 | return sock_has_perm(current, sock->sk, SOCKET__LISTEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3778 | } |
| 3779 | |
| 3780 | static int selinux_socket_accept(struct socket *sock, struct socket *newsock) |
| 3781 | { |
| 3782 | int err; |
| 3783 | struct inode_security_struct *isec; |
| 3784 | struct inode_security_struct *newisec; |
| 3785 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3786 | err = sock_has_perm(current, sock->sk, SOCKET__ACCEPT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3787 | if (err) |
| 3788 | return err; |
| 3789 | |
| 3790 | newisec = SOCK_INODE(newsock)->i_security; |
| 3791 | |
| 3792 | isec = SOCK_INODE(sock)->i_security; |
| 3793 | newisec->sclass = isec->sclass; |
| 3794 | newisec->sid = isec->sid; |
| 3795 | newisec->initialized = 1; |
| 3796 | |
| 3797 | return 0; |
| 3798 | } |
| 3799 | |
| 3800 | static int selinux_socket_sendmsg(struct socket *sock, struct msghdr *msg, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3801 | int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3802 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3803 | return sock_has_perm(current, sock->sk, SOCKET__WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3804 | } |
| 3805 | |
| 3806 | static int selinux_socket_recvmsg(struct socket *sock, struct msghdr *msg, |
| 3807 | int size, int flags) |
| 3808 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3809 | return sock_has_perm(current, sock->sk, SOCKET__READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3810 | } |
| 3811 | |
| 3812 | static int selinux_socket_getsockname(struct socket *sock) |
| 3813 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3814 | return sock_has_perm(current, sock->sk, SOCKET__GETATTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3815 | } |
| 3816 | |
| 3817 | static int selinux_socket_getpeername(struct socket *sock) |
| 3818 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3819 | return sock_has_perm(current, sock->sk, SOCKET__GETATTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | } |
| 3821 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 3822 | static int selinux_socket_setsockopt(struct socket *sock, int level, int optname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3823 | { |
Paul Moore | f8687af | 2006-10-30 15:22:15 -0800 | [diff] [blame] | 3824 | int err; |
| 3825 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3826 | err = sock_has_perm(current, sock->sk, SOCKET__SETOPT); |
Paul Moore | f8687af | 2006-10-30 15:22:15 -0800 | [diff] [blame] | 3827 | if (err) |
| 3828 | return err; |
| 3829 | |
| 3830 | return selinux_netlbl_socket_setsockopt(sock, level, optname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3831 | } |
| 3832 | |
| 3833 | static int selinux_socket_getsockopt(struct socket *sock, int level, |
| 3834 | int optname) |
| 3835 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3836 | return sock_has_perm(current, sock->sk, SOCKET__GETOPT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3837 | } |
| 3838 | |
| 3839 | static int selinux_socket_shutdown(struct socket *sock, int how) |
| 3840 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3841 | return sock_has_perm(current, sock->sk, SOCKET__SHUTDOWN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3842 | } |
| 3843 | |
David S. Miller | 3610cda | 2011-01-05 15:38:53 -0800 | [diff] [blame] | 3844 | static int selinux_socket_unix_stream_connect(struct sock *sock, |
| 3845 | struct sock *other, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3846 | struct sock *newsk) |
| 3847 | { |
David S. Miller | 3610cda | 2011-01-05 15:38:53 -0800 | [diff] [blame] | 3848 | struct sk_security_struct *sksec_sock = sock->sk_security; |
| 3849 | struct sk_security_struct *sksec_other = other->sk_security; |
Paul Moore | 4d1e245 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3850 | struct sk_security_struct *sksec_new = newsk->sk_security; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3851 | struct common_audit_data ad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3852 | int err; |
| 3853 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3854 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
David S. Miller | 3610cda | 2011-01-05 15:38:53 -0800 | [diff] [blame] | 3855 | ad.u.net.sk = other; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3856 | |
Paul Moore | 4d1e245 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3857 | err = avc_has_perm(sksec_sock->sid, sksec_other->sid, |
| 3858 | sksec_other->sclass, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3859 | UNIX_STREAM_SOCKET__CONNECTTO, &ad); |
| 3860 | if (err) |
| 3861 | return err; |
| 3862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3863 | /* server child socket */ |
Paul Moore | 4d1e245 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3864 | sksec_new->peer_sid = sksec_sock->sid; |
| 3865 | err = security_sid_mls_copy(sksec_other->sid, sksec_sock->sid, |
| 3866 | &sksec_new->sid); |
| 3867 | if (err) |
| 3868 | return err; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 3869 | |
Paul Moore | 4d1e245 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 3870 | /* connecting socket */ |
| 3871 | sksec_sock->peer_sid = sksec_new->sid; |
| 3872 | |
| 3873 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3874 | } |
| 3875 | |
| 3876 | static int selinux_socket_unix_may_send(struct socket *sock, |
| 3877 | struct socket *other) |
| 3878 | { |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3879 | struct sk_security_struct *ssec = sock->sk->sk_security; |
| 3880 | struct sk_security_struct *osec = other->sk->sk_security; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3881 | struct common_audit_data ad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3882 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3883 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3884 | ad.u.net.sk = other->sk; |
| 3885 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 3886 | return avc_has_perm(ssec->sid, osec->sid, osec->sclass, SOCKET__SENDTO, |
| 3887 | &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3888 | } |
| 3889 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 3890 | static int selinux_inet_sys_rcv_skb(int ifindex, char *addrp, u16 family, |
| 3891 | u32 peer_sid, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3892 | struct common_audit_data *ad) |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 3893 | { |
| 3894 | int err; |
| 3895 | u32 if_sid; |
| 3896 | u32 node_sid; |
| 3897 | |
| 3898 | err = sel_netif_sid(ifindex, &if_sid); |
| 3899 | if (err) |
| 3900 | return err; |
| 3901 | err = avc_has_perm(peer_sid, if_sid, |
| 3902 | SECCLASS_NETIF, NETIF__INGRESS, ad); |
| 3903 | if (err) |
| 3904 | return err; |
| 3905 | |
| 3906 | err = sel_netnode_sid(addrp, family, &node_sid); |
| 3907 | if (err) |
| 3908 | return err; |
| 3909 | return avc_has_perm(peer_sid, node_sid, |
| 3910 | SECCLASS_NODE, NODE__RECVFROM, ad); |
| 3911 | } |
| 3912 | |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3913 | static int selinux_sock_rcv_skb_compat(struct sock *sk, struct sk_buff *skb, |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3914 | u16 family) |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3915 | { |
Paul Moore | 277d342 | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 3916 | int err = 0; |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3917 | struct sk_security_struct *sksec = sk->sk_security; |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3918 | u32 sk_sid = sksec->sid; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3919 | struct common_audit_data ad; |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3920 | char *addrp; |
| 3921 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3922 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Eric Dumazet | 8964be4 | 2009-11-20 15:35:04 -0800 | [diff] [blame] | 3923 | ad.u.net.netif = skb->skb_iif; |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3924 | ad.u.net.family = family; |
| 3925 | err = selinux_parse_skb(skb, &ad, &addrp, 1, NULL); |
| 3926 | if (err) |
| 3927 | return err; |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3928 | |
Paul Moore | 58bfbb5 | 2009-03-27 17:10:41 -0400 | [diff] [blame] | 3929 | if (selinux_secmark_enabled()) { |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3930 | err = avc_has_perm(sk_sid, skb->secmark, SECCLASS_PACKET, |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3931 | PACKET__RECV, &ad); |
Paul Moore | 58bfbb5 | 2009-03-27 17:10:41 -0400 | [diff] [blame] | 3932 | if (err) |
| 3933 | return err; |
| 3934 | } |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3935 | |
Steffen Klassert | b9679a7 | 2011-02-23 12:55:21 +0100 | [diff] [blame^] | 3936 | err = selinux_netlbl_sock_rcv_skb(sksec, skb, family, &ad); |
| 3937 | if (err) |
| 3938 | return err; |
| 3939 | err = selinux_xfrm_sock_rcv_skb(sksec->sid, skb, &ad); |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 3940 | |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3941 | return err; |
| 3942 | } |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 3943 | |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3944 | static int selinux_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb) |
| 3945 | { |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3946 | int err; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 3947 | struct sk_security_struct *sksec = sk->sk_security; |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3948 | u16 family = sk->sk_family; |
| 3949 | u32 sk_sid = sksec->sid; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3950 | struct common_audit_data ad; |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3951 | char *addrp; |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3952 | u8 secmark_active; |
| 3953 | u8 peerlbl_active; |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3954 | |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3955 | if (family != PF_INET && family != PF_INET6) |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3956 | return 0; |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3957 | |
| 3958 | /* Handle mapped IPv4 packets arriving via IPv6 sockets */ |
Al Viro | 87fcd70 | 2006-12-04 22:00:55 +0000 | [diff] [blame] | 3959 | if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP)) |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3960 | family = PF_INET; |
| 3961 | |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3962 | /* If any sort of compatibility mode is enabled then handoff processing |
| 3963 | * to the selinux_sock_rcv_skb_compat() function to deal with the |
| 3964 | * special handling. We do this in an attempt to keep this function |
| 3965 | * as fast and as clean as possible. */ |
Paul Moore | 58bfbb5 | 2009-03-27 17:10:41 -0400 | [diff] [blame] | 3966 | if (!selinux_policycap_netpeer) |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3967 | return selinux_sock_rcv_skb_compat(sk, skb, family); |
| 3968 | |
| 3969 | secmark_active = selinux_secmark_enabled(); |
| 3970 | peerlbl_active = netlbl_enabled() || selinux_xfrm_enabled(); |
| 3971 | if (!secmark_active && !peerlbl_active) |
| 3972 | return 0; |
| 3973 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 3974 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Eric Dumazet | 8964be4 | 2009-11-20 15:35:04 -0800 | [diff] [blame] | 3975 | ad.u.net.netif = skb->skb_iif; |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3976 | ad.u.net.family = family; |
Paul Moore | 224dfbd | 2008-01-29 08:38:13 -0500 | [diff] [blame] | 3977 | err = selinux_parse_skb(skb, &ad, &addrp, 1, NULL); |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3978 | if (err) |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 3979 | return err; |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 3980 | |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3981 | if (peerlbl_active) { |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 3982 | u32 peer_sid; |
| 3983 | |
| 3984 | err = selinux_skb_peerlbl_sid(skb, family, &peer_sid); |
| 3985 | if (err) |
| 3986 | return err; |
Eric Dumazet | 8964be4 | 2009-11-20 15:35:04 -0800 | [diff] [blame] | 3987 | err = selinux_inet_sys_rcv_skb(skb->skb_iif, addrp, family, |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 3988 | peer_sid, &ad); |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 3989 | if (err) { |
| 3990 | selinux_netlbl_err(skb, err, 0); |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 3991 | return err; |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 3992 | } |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 3993 | err = avc_has_perm(sk_sid, peer_sid, SECCLASS_PEER, |
| 3994 | PEER__RECV, &ad); |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 3995 | if (err) |
| 3996 | selinux_netlbl_err(skb, err, 0); |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 3997 | } |
| 3998 | |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 3999 | if (secmark_active) { |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4000 | err = avc_has_perm(sk_sid, skb->secmark, SECCLASS_PACKET, |
| 4001 | PACKET__RECV, &ad); |
| 4002 | if (err) |
| 4003 | return err; |
| 4004 | } |
| 4005 | |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 4006 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4007 | } |
| 4008 | |
Catherine Zhang | 2c7946a | 2006-03-20 22:41:23 -0800 | [diff] [blame] | 4009 | static int selinux_socket_getpeersec_stream(struct socket *sock, char __user *optval, |
| 4010 | int __user *optlen, unsigned len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4011 | { |
| 4012 | int err = 0; |
| 4013 | char *scontext; |
| 4014 | u32 scontext_len; |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 4015 | struct sk_security_struct *sksec = sock->sk->sk_security; |
Paul Moore | 3de4bab | 2006-11-17 17:38:54 -0500 | [diff] [blame] | 4016 | u32 peer_sid = SECSID_NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4017 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 4018 | if (sksec->sclass == SECCLASS_UNIX_STREAM_SOCKET || |
| 4019 | sksec->sclass == SECCLASS_TCP_SOCKET) |
Eric Paris | dd3e783 | 2010-04-07 15:08:46 -0400 | [diff] [blame] | 4020 | peer_sid = sksec->peer_sid; |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 4021 | if (peer_sid == SECSID_NULL) |
| 4022 | return -ENOPROTOOPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4023 | |
Catherine Zhang | 2c7946a | 2006-03-20 22:41:23 -0800 | [diff] [blame] | 4024 | err = security_sid_to_context(peer_sid, &scontext, &scontext_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4025 | if (err) |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 4026 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4027 | |
| 4028 | if (scontext_len > len) { |
| 4029 | err = -ERANGE; |
| 4030 | goto out_len; |
| 4031 | } |
| 4032 | |
| 4033 | if (copy_to_user(optval, scontext, scontext_len)) |
| 4034 | err = -EFAULT; |
| 4035 | |
| 4036 | out_len: |
| 4037 | if (put_user(scontext_len, optlen)) |
| 4038 | err = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4039 | kfree(scontext); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4040 | return err; |
| 4041 | } |
| 4042 | |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 4043 | static int selinux_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid) |
Catherine Zhang | 2c7946a | 2006-03-20 22:41:23 -0800 | [diff] [blame] | 4044 | { |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 4045 | u32 peer_secid = SECSID_NULL; |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 4046 | u16 family; |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 4047 | |
Paul Moore | aa86290 | 2008-10-10 10:16:29 -0400 | [diff] [blame] | 4048 | if (skb && skb->protocol == htons(ETH_P_IP)) |
| 4049 | family = PF_INET; |
| 4050 | else if (skb && skb->protocol == htons(ETH_P_IPV6)) |
| 4051 | family = PF_INET6; |
| 4052 | else if (sock) |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 4053 | family = sock->sk->sk_family; |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 4054 | else |
| 4055 | goto out; |
| 4056 | |
| 4057 | if (sock && family == PF_UNIX) |
Ahmed S. Darwish | 713a04ae | 2008-03-01 21:52:30 +0200 | [diff] [blame] | 4058 | selinux_inode_getsecid(SOCK_INODE(sock), &peer_secid); |
Paul Moore | 3de4bab | 2006-11-17 17:38:54 -0500 | [diff] [blame] | 4059 | else if (skb) |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 4060 | selinux_skb_peerlbl_sid(skb, family, &peer_secid); |
Catherine Zhang | 2c7946a | 2006-03-20 22:41:23 -0800 | [diff] [blame] | 4061 | |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 4062 | out: |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 4063 | *secid = peer_secid; |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 4064 | if (peer_secid == SECSID_NULL) |
| 4065 | return -EINVAL; |
| 4066 | return 0; |
Catherine Zhang | 2c7946a | 2006-03-20 22:41:23 -0800 | [diff] [blame] | 4067 | } |
| 4068 | |
Al Viro | 7d877f3 | 2005-10-21 03:20:43 -0400 | [diff] [blame] | 4069 | static int selinux_sk_alloc_security(struct sock *sk, int family, gfp_t priority) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4070 | { |
Paul Moore | 84914b7 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 4071 | struct sk_security_struct *sksec; |
| 4072 | |
| 4073 | sksec = kzalloc(sizeof(*sksec), priority); |
| 4074 | if (!sksec) |
| 4075 | return -ENOMEM; |
| 4076 | |
| 4077 | sksec->peer_sid = SECINITSID_UNLABELED; |
| 4078 | sksec->sid = SECINITSID_UNLABELED; |
| 4079 | selinux_netlbl_sk_security_reset(sksec); |
| 4080 | sk->sk_security = sksec; |
| 4081 | |
| 4082 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4083 | } |
| 4084 | |
| 4085 | static void selinux_sk_free_security(struct sock *sk) |
| 4086 | { |
Paul Moore | 84914b7 | 2010-04-22 14:46:18 -0400 | [diff] [blame] | 4087 | struct sk_security_struct *sksec = sk->sk_security; |
| 4088 | |
| 4089 | sk->sk_security = NULL; |
| 4090 | selinux_netlbl_sk_security_free(sksec); |
| 4091 | kfree(sksec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4092 | } |
| 4093 | |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 4094 | static void selinux_sk_clone_security(const struct sock *sk, struct sock *newsk) |
| 4095 | { |
Eric Paris | dd3e783 | 2010-04-07 15:08:46 -0400 | [diff] [blame] | 4096 | struct sk_security_struct *sksec = sk->sk_security; |
| 4097 | struct sk_security_struct *newsksec = newsk->sk_security; |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 4098 | |
Eric Paris | dd3e783 | 2010-04-07 15:08:46 -0400 | [diff] [blame] | 4099 | newsksec->sid = sksec->sid; |
| 4100 | newsksec->peer_sid = sksec->peer_sid; |
| 4101 | newsksec->sclass = sksec->sclass; |
Paul Moore | 99f59ed | 2006-08-29 17:53:48 -0700 | [diff] [blame] | 4102 | |
Eric Paris | dd3e783 | 2010-04-07 15:08:46 -0400 | [diff] [blame] | 4103 | selinux_netlbl_sk_security_reset(newsksec); |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 4104 | } |
| 4105 | |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 4106 | static void selinux_sk_getsecid(struct sock *sk, u32 *secid) |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 4107 | { |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 4108 | if (!sk) |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 4109 | *secid = SECINITSID_ANY_SOCKET; |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 4110 | else { |
| 4111 | struct sk_security_struct *sksec = sk->sk_security; |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 4112 | |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 4113 | *secid = sksec->sid; |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 4114 | } |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 4115 | } |
| 4116 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4117 | static void selinux_sock_graft(struct sock *sk, struct socket *parent) |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4118 | { |
| 4119 | struct inode_security_struct *isec = SOCK_INODE(parent)->i_security; |
| 4120 | struct sk_security_struct *sksec = sk->sk_security; |
| 4121 | |
David Woodhouse | 2148ccc | 2006-09-29 15:50:25 -0700 | [diff] [blame] | 4122 | if (sk->sk_family == PF_INET || sk->sk_family == PF_INET6 || |
| 4123 | sk->sk_family == PF_UNIX) |
| 4124 | isec->sid = sksec->sid; |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 4125 | sksec->sclass = isec->sclass; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4126 | } |
| 4127 | |
Adrian Bunk | 9a673e5 | 2006-08-15 00:03:53 -0700 | [diff] [blame] | 4128 | static int selinux_inet_conn_request(struct sock *sk, struct sk_buff *skb, |
| 4129 | struct request_sock *req) |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4130 | { |
| 4131 | struct sk_security_struct *sksec = sk->sk_security; |
| 4132 | int err; |
Paul Moore | aa86290 | 2008-10-10 10:16:29 -0400 | [diff] [blame] | 4133 | u16 family = sk->sk_family; |
Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 4134 | u32 newsid; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4135 | u32 peersid; |
| 4136 | |
Paul Moore | aa86290 | 2008-10-10 10:16:29 -0400 | [diff] [blame] | 4137 | /* handle mapped IPv4 packets arriving via IPv6 sockets */ |
| 4138 | if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP)) |
| 4139 | family = PF_INET; |
| 4140 | |
| 4141 | err = selinux_skb_peerlbl_sid(skb, family, &peersid); |
Paul Moore | 220deb9 | 2008-01-29 08:38:23 -0500 | [diff] [blame] | 4142 | if (err) |
| 4143 | return err; |
Venkat Yekkirala | a51c64f | 2006-07-27 22:01:34 -0700 | [diff] [blame] | 4144 | if (peersid == SECSID_NULL) { |
| 4145 | req->secid = sksec->sid; |
Paul Moore | 3de4bab | 2006-11-17 17:38:54 -0500 | [diff] [blame] | 4146 | req->peer_secid = SECSID_NULL; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 4147 | } else { |
| 4148 | err = security_sid_mls_copy(sksec->sid, peersid, &newsid); |
| 4149 | if (err) |
| 4150 | return err; |
| 4151 | req->secid = newsid; |
| 4152 | req->peer_secid = peersid; |
Venkat Yekkirala | a51c64f | 2006-07-27 22:01:34 -0700 | [diff] [blame] | 4153 | } |
| 4154 | |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 4155 | return selinux_netlbl_inet_conn_request(req, family); |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4156 | } |
| 4157 | |
Adrian Bunk | 9a673e5 | 2006-08-15 00:03:53 -0700 | [diff] [blame] | 4158 | static void selinux_inet_csk_clone(struct sock *newsk, |
| 4159 | const struct request_sock *req) |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4160 | { |
| 4161 | struct sk_security_struct *newsksec = newsk->sk_security; |
| 4162 | |
| 4163 | newsksec->sid = req->secid; |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 4164 | newsksec->peer_sid = req->peer_secid; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4165 | /* NOTE: Ideally, we should also get the isec->sid for the |
| 4166 | new socket in sync, but we don't have the isec available yet. |
| 4167 | So we will wait until sock_graft to do it, by which |
| 4168 | time it will have been created and available. */ |
Paul Moore | 99f59ed | 2006-08-29 17:53:48 -0700 | [diff] [blame] | 4169 | |
Paul Moore | 9f2ad66 | 2006-11-17 17:38:53 -0500 | [diff] [blame] | 4170 | /* We don't need to take any sort of lock here as we are the only |
| 4171 | * thread with access to newsksec */ |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 4172 | selinux_netlbl_inet_csk_clone(newsk, req->rsk_ops->family); |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4173 | } |
| 4174 | |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 4175 | static void selinux_inet_conn_established(struct sock *sk, struct sk_buff *skb) |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 4176 | { |
Paul Moore | aa86290 | 2008-10-10 10:16:29 -0400 | [diff] [blame] | 4177 | u16 family = sk->sk_family; |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 4178 | struct sk_security_struct *sksec = sk->sk_security; |
| 4179 | |
Paul Moore | aa86290 | 2008-10-10 10:16:29 -0400 | [diff] [blame] | 4180 | /* handle mapped IPv4 packets arriving via IPv6 sockets */ |
| 4181 | if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP)) |
| 4182 | family = PF_INET; |
| 4183 | |
| 4184 | selinux_skb_peerlbl_sid(skb, family, &sksec->peer_sid); |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 4185 | } |
| 4186 | |
Eric Paris | 2606fd1 | 2010-10-13 16:24:41 -0400 | [diff] [blame] | 4187 | static int selinux_secmark_relabel_packet(u32 sid) |
| 4188 | { |
| 4189 | const struct task_security_struct *__tsec; |
| 4190 | u32 tsid; |
| 4191 | |
| 4192 | __tsec = current_security(); |
| 4193 | tsid = __tsec->sid; |
| 4194 | |
| 4195 | return avc_has_perm(tsid, sid, SECCLASS_PACKET, PACKET__RELABELTO, NULL); |
| 4196 | } |
| 4197 | |
| 4198 | static void selinux_secmark_refcount_inc(void) |
| 4199 | { |
| 4200 | atomic_inc(&selinux_secmark_refcount); |
| 4201 | } |
| 4202 | |
| 4203 | static void selinux_secmark_refcount_dec(void) |
| 4204 | { |
| 4205 | atomic_dec(&selinux_secmark_refcount); |
| 4206 | } |
| 4207 | |
Adrian Bunk | 9a673e5 | 2006-08-15 00:03:53 -0700 | [diff] [blame] | 4208 | static void selinux_req_classify_flow(const struct request_sock *req, |
| 4209 | struct flowi *fl) |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4210 | { |
| 4211 | fl->secid = req->secid; |
| 4212 | } |
| 4213 | |
Paul Moore | ed6d76e | 2009-08-28 18:12:49 -0400 | [diff] [blame] | 4214 | static int selinux_tun_dev_create(void) |
| 4215 | { |
| 4216 | u32 sid = current_sid(); |
| 4217 | |
| 4218 | /* we aren't taking into account the "sockcreate" SID since the socket |
| 4219 | * that is being created here is not a socket in the traditional sense, |
| 4220 | * instead it is a private sock, accessible only to the kernel, and |
| 4221 | * representing a wide range of network traffic spanning multiple |
| 4222 | * connections unlike traditional sockets - check the TUN driver to |
| 4223 | * get a better understanding of why this socket is special */ |
| 4224 | |
| 4225 | return avc_has_perm(sid, sid, SECCLASS_TUN_SOCKET, TUN_SOCKET__CREATE, |
| 4226 | NULL); |
| 4227 | } |
| 4228 | |
| 4229 | static void selinux_tun_dev_post_create(struct sock *sk) |
| 4230 | { |
| 4231 | struct sk_security_struct *sksec = sk->sk_security; |
| 4232 | |
| 4233 | /* we don't currently perform any NetLabel based labeling here and it |
| 4234 | * isn't clear that we would want to do so anyway; while we could apply |
| 4235 | * labeling without the support of the TUN user the resulting labeled |
| 4236 | * traffic from the other end of the connection would almost certainly |
| 4237 | * cause confusion to the TUN user that had no idea network labeling |
| 4238 | * protocols were being used */ |
| 4239 | |
| 4240 | /* see the comments in selinux_tun_dev_create() about why we don't use |
| 4241 | * the sockcreate SID here */ |
| 4242 | |
| 4243 | sksec->sid = current_sid(); |
| 4244 | sksec->sclass = SECCLASS_TUN_SOCKET; |
| 4245 | } |
| 4246 | |
| 4247 | static int selinux_tun_dev_attach(struct sock *sk) |
| 4248 | { |
| 4249 | struct sk_security_struct *sksec = sk->sk_security; |
| 4250 | u32 sid = current_sid(); |
| 4251 | int err; |
| 4252 | |
| 4253 | err = avc_has_perm(sid, sksec->sid, SECCLASS_TUN_SOCKET, |
| 4254 | TUN_SOCKET__RELABELFROM, NULL); |
| 4255 | if (err) |
| 4256 | return err; |
| 4257 | err = avc_has_perm(sid, sid, SECCLASS_TUN_SOCKET, |
| 4258 | TUN_SOCKET__RELABELTO, NULL); |
| 4259 | if (err) |
| 4260 | return err; |
| 4261 | |
| 4262 | sksec->sid = sid; |
| 4263 | |
| 4264 | return 0; |
| 4265 | } |
| 4266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4267 | static int selinux_nlmsg_perm(struct sock *sk, struct sk_buff *skb) |
| 4268 | { |
| 4269 | int err = 0; |
| 4270 | u32 perm; |
| 4271 | struct nlmsghdr *nlh; |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 4272 | struct sk_security_struct *sksec = sk->sk_security; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4274 | if (skb->len < NLMSG_SPACE(0)) { |
| 4275 | err = -EINVAL; |
| 4276 | goto out; |
| 4277 | } |
Arnaldo Carvalho de Melo | b529ccf | 2007-04-25 19:08:35 -0700 | [diff] [blame] | 4278 | nlh = nlmsg_hdr(skb); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4279 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 4280 | err = selinux_nlmsg_lookup(sksec->sclass, nlh->nlmsg_type, &perm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4281 | if (err) { |
| 4282 | if (err == -EINVAL) { |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 4283 | audit_log(current->audit_context, GFP_KERNEL, AUDIT_SELINUX_ERR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4284 | "SELinux: unrecognized netlink message" |
| 4285 | " type=%hu for sclass=%hu\n", |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 4286 | nlh->nlmsg_type, sksec->sclass); |
Eric Paris | 39c9aed | 2008-11-05 09:34:42 -0500 | [diff] [blame] | 4287 | if (!selinux_enforcing || security_get_allow_unknown()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4288 | err = 0; |
| 4289 | } |
| 4290 | |
| 4291 | /* Ignore */ |
| 4292 | if (err == -ENOENT) |
| 4293 | err = 0; |
| 4294 | goto out; |
| 4295 | } |
| 4296 | |
Paul Moore | 253bfae | 2010-04-22 14:46:19 -0400 | [diff] [blame] | 4297 | err = sock_has_perm(current, sk, perm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4298 | out: |
| 4299 | return err; |
| 4300 | } |
| 4301 | |
| 4302 | #ifdef CONFIG_NETFILTER |
| 4303 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4304 | static unsigned int selinux_ip_forward(struct sk_buff *skb, int ifindex, |
| 4305 | u16 family) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4306 | { |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 4307 | int err; |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4308 | char *addrp; |
| 4309 | u32 peer_sid; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4310 | struct common_audit_data ad; |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4311 | u8 secmark_active; |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 4312 | u8 netlbl_active; |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4313 | u8 peerlbl_active; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4314 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4315 | if (!selinux_policycap_netpeer) |
| 4316 | return NF_ACCEPT; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4317 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4318 | secmark_active = selinux_secmark_enabled(); |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 4319 | netlbl_active = netlbl_enabled(); |
| 4320 | peerlbl_active = netlbl_active || selinux_xfrm_enabled(); |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4321 | if (!secmark_active && !peerlbl_active) |
| 4322 | return NF_ACCEPT; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4323 | |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4324 | if (selinux_skb_peerlbl_sid(skb, family, &peer_sid) != 0) |
| 4325 | return NF_DROP; |
| 4326 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4327 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4328 | ad.u.net.netif = ifindex; |
| 4329 | ad.u.net.family = family; |
| 4330 | if (selinux_parse_skb(skb, &ad, &addrp, 1, NULL) != 0) |
| 4331 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4332 | |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 4333 | if (peerlbl_active) { |
| 4334 | err = selinux_inet_sys_rcv_skb(ifindex, addrp, family, |
| 4335 | peer_sid, &ad); |
| 4336 | if (err) { |
| 4337 | selinux_netlbl_err(skb, err, 1); |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4338 | return NF_DROP; |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 4339 | } |
| 4340 | } |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4341 | |
| 4342 | if (secmark_active) |
| 4343 | if (avc_has_perm(peer_sid, skb->secmark, |
| 4344 | SECCLASS_PACKET, PACKET__FORWARD_IN, &ad)) |
| 4345 | return NF_DROP; |
| 4346 | |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 4347 | if (netlbl_active) |
| 4348 | /* we do this in the FORWARD path and not the POST_ROUTING |
| 4349 | * path because we want to make sure we apply the necessary |
| 4350 | * labeling before IPsec is applied so we can leverage AH |
| 4351 | * protection */ |
| 4352 | if (selinux_netlbl_skbuff_setsid(skb, family, peer_sid) != 0) |
| 4353 | return NF_DROP; |
| 4354 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4355 | return NF_ACCEPT; |
| 4356 | } |
| 4357 | |
| 4358 | static unsigned int selinux_ipv4_forward(unsigned int hooknum, |
| 4359 | struct sk_buff *skb, |
| 4360 | const struct net_device *in, |
| 4361 | const struct net_device *out, |
| 4362 | int (*okfn)(struct sk_buff *)) |
| 4363 | { |
| 4364 | return selinux_ip_forward(skb, in->ifindex, PF_INET); |
| 4365 | } |
| 4366 | |
| 4367 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
| 4368 | static unsigned int selinux_ipv6_forward(unsigned int hooknum, |
| 4369 | struct sk_buff *skb, |
| 4370 | const struct net_device *in, |
| 4371 | const struct net_device *out, |
| 4372 | int (*okfn)(struct sk_buff *)) |
| 4373 | { |
| 4374 | return selinux_ip_forward(skb, in->ifindex, PF_INET6); |
| 4375 | } |
| 4376 | #endif /* IPV6 */ |
| 4377 | |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 4378 | static unsigned int selinux_ip_output(struct sk_buff *skb, |
| 4379 | u16 family) |
| 4380 | { |
| 4381 | u32 sid; |
| 4382 | |
| 4383 | if (!netlbl_enabled()) |
| 4384 | return NF_ACCEPT; |
| 4385 | |
| 4386 | /* we do this in the LOCAL_OUT path and not the POST_ROUTING path |
| 4387 | * because we want to make sure we apply the necessary labeling |
| 4388 | * before IPsec is applied so we can leverage AH protection */ |
| 4389 | if (skb->sk) { |
| 4390 | struct sk_security_struct *sksec = skb->sk->sk_security; |
| 4391 | sid = sksec->sid; |
| 4392 | } else |
| 4393 | sid = SECINITSID_KERNEL; |
| 4394 | if (selinux_netlbl_skbuff_setsid(skb, family, sid) != 0) |
| 4395 | return NF_DROP; |
| 4396 | |
| 4397 | return NF_ACCEPT; |
| 4398 | } |
| 4399 | |
| 4400 | static unsigned int selinux_ipv4_output(unsigned int hooknum, |
| 4401 | struct sk_buff *skb, |
| 4402 | const struct net_device *in, |
| 4403 | const struct net_device *out, |
| 4404 | int (*okfn)(struct sk_buff *)) |
| 4405 | { |
| 4406 | return selinux_ip_output(skb, PF_INET); |
| 4407 | } |
| 4408 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4409 | static unsigned int selinux_ip_postroute_compat(struct sk_buff *skb, |
| 4410 | int ifindex, |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4411 | u16 family) |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 4412 | { |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4413 | struct sock *sk = skb->sk; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4414 | struct sk_security_struct *sksec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4415 | struct common_audit_data ad; |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4416 | char *addrp; |
| 4417 | u8 proto; |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 4418 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4419 | if (sk == NULL) |
| 4420 | return NF_ACCEPT; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 4421 | sksec = sk->sk_security; |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 4422 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4423 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4424 | ad.u.net.netif = ifindex; |
| 4425 | ad.u.net.family = family; |
| 4426 | if (selinux_parse_skb(skb, &ad, &addrp, 0, &proto)) |
| 4427 | return NF_DROP; |
| 4428 | |
Paul Moore | 58bfbb5 | 2009-03-27 17:10:41 -0400 | [diff] [blame] | 4429 | if (selinux_secmark_enabled()) |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4430 | if (avc_has_perm(sksec->sid, skb->secmark, |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4431 | SECCLASS_PACKET, PACKET__SEND, &ad)) |
Eric Paris | 2fe66ec | 2010-11-23 06:28:08 +0000 | [diff] [blame] | 4432 | return NF_DROP_ERR(-ECONNREFUSED); |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 4433 | |
Steffen Klassert | b9679a7 | 2011-02-23 12:55:21 +0100 | [diff] [blame^] | 4434 | if (selinux_xfrm_postroute_last(sksec->sid, skb, &ad, proto)) |
| 4435 | return NF_DROP_ERR(-ECONNREFUSED); |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 4436 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4437 | return NF_ACCEPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4438 | } |
| 4439 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4440 | static unsigned int selinux_ip_postroute(struct sk_buff *skb, int ifindex, |
| 4441 | u16 family) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4442 | { |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4443 | u32 secmark_perm; |
| 4444 | u32 peer_sid; |
| 4445 | struct sock *sk; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4446 | struct common_audit_data ad; |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4447 | char *addrp; |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4448 | u8 secmark_active; |
| 4449 | u8 peerlbl_active; |
| 4450 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4451 | /* If any sort of compatibility mode is enabled then handoff processing |
| 4452 | * to the selinux_ip_postroute_compat() function to deal with the |
| 4453 | * special handling. We do this in an attempt to keep this function |
| 4454 | * as fast and as clean as possible. */ |
Paul Moore | 58bfbb5 | 2009-03-27 17:10:41 -0400 | [diff] [blame] | 4455 | if (!selinux_policycap_netpeer) |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4456 | return selinux_ip_postroute_compat(skb, ifindex, family); |
Alexey Dobriyan | def8b4f | 2008-10-28 13:24:06 -0700 | [diff] [blame] | 4457 | #ifdef CONFIG_XFRM |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4458 | /* If skb->dst->xfrm is non-NULL then the packet is undergoing an IPsec |
| 4459 | * packet transformation so allow the packet to pass without any checks |
| 4460 | * since we'll have another chance to perform access control checks |
| 4461 | * when the packet is on it's final way out. |
| 4462 | * NOTE: there appear to be some IPv6 multicast cases where skb->dst |
| 4463 | * is NULL, in this case go ahead and apply access control. */ |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 4464 | if (skb_dst(skb) != NULL && skb_dst(skb)->xfrm != NULL) |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4465 | return NF_ACCEPT; |
Alexey Dobriyan | def8b4f | 2008-10-28 13:24:06 -0700 | [diff] [blame] | 4466 | #endif |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4467 | secmark_active = selinux_secmark_enabled(); |
| 4468 | peerlbl_active = netlbl_enabled() || selinux_xfrm_enabled(); |
| 4469 | if (!secmark_active && !peerlbl_active) |
| 4470 | return NF_ACCEPT; |
| 4471 | |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4472 | /* if the packet is being forwarded then get the peer label from the |
| 4473 | * packet itself; otherwise check to see if it is from a local |
| 4474 | * application or the kernel, if from an application get the peer label |
| 4475 | * from the sending socket, otherwise use the kernel's sid */ |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4476 | sk = skb->sk; |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4477 | if (sk == NULL) { |
| 4478 | switch (family) { |
| 4479 | case PF_INET: |
| 4480 | if (IPCB(skb)->flags & IPSKB_FORWARDED) |
| 4481 | secmark_perm = PACKET__FORWARD_OUT; |
| 4482 | else |
| 4483 | secmark_perm = PACKET__SEND; |
| 4484 | break; |
| 4485 | case PF_INET6: |
| 4486 | if (IP6CB(skb)->flags & IP6SKB_FORWARDED) |
| 4487 | secmark_perm = PACKET__FORWARD_OUT; |
| 4488 | else |
| 4489 | secmark_perm = PACKET__SEND; |
| 4490 | break; |
| 4491 | default: |
Eric Paris | 1f1aaf8 | 2010-11-16 11:52:57 +0000 | [diff] [blame] | 4492 | return NF_DROP_ERR(-ECONNREFUSED); |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4493 | } |
| 4494 | if (secmark_perm == PACKET__FORWARD_OUT) { |
| 4495 | if (selinux_skb_peerlbl_sid(skb, family, &peer_sid)) |
Eric Paris | 04f6d70 | 2010-11-23 06:28:02 +0000 | [diff] [blame] | 4496 | return NF_DROP; |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4497 | } else |
| 4498 | peer_sid = SECINITSID_KERNEL; |
| 4499 | } else { |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4500 | struct sk_security_struct *sksec = sk->sk_security; |
| 4501 | peer_sid = sksec->sid; |
| 4502 | secmark_perm = PACKET__SEND; |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4503 | } |
| 4504 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4505 | COMMON_AUDIT_DATA_INIT(&ad, NET); |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4506 | ad.u.net.netif = ifindex; |
| 4507 | ad.u.net.family = family; |
| 4508 | if (selinux_parse_skb(skb, &ad, &addrp, 0, NULL)) |
Eric Paris | 04f6d70 | 2010-11-23 06:28:02 +0000 | [diff] [blame] | 4509 | return NF_DROP; |
Paul Moore | d8395c8 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 4510 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4511 | if (secmark_active) |
| 4512 | if (avc_has_perm(peer_sid, skb->secmark, |
| 4513 | SECCLASS_PACKET, secmark_perm, &ad)) |
Eric Paris | 1f1aaf8 | 2010-11-16 11:52:57 +0000 | [diff] [blame] | 4514 | return NF_DROP_ERR(-ECONNREFUSED); |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4515 | |
| 4516 | if (peerlbl_active) { |
| 4517 | u32 if_sid; |
| 4518 | u32 node_sid; |
| 4519 | |
| 4520 | if (sel_netif_sid(ifindex, &if_sid)) |
Eric Paris | 04f6d70 | 2010-11-23 06:28:02 +0000 | [diff] [blame] | 4521 | return NF_DROP; |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4522 | if (avc_has_perm(peer_sid, if_sid, |
| 4523 | SECCLASS_NETIF, NETIF__EGRESS, &ad)) |
Eric Paris | 1f1aaf8 | 2010-11-16 11:52:57 +0000 | [diff] [blame] | 4524 | return NF_DROP_ERR(-ECONNREFUSED); |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4525 | |
| 4526 | if (sel_netnode_sid(addrp, family, &node_sid)) |
Eric Paris | 04f6d70 | 2010-11-23 06:28:02 +0000 | [diff] [blame] | 4527 | return NF_DROP; |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4528 | if (avc_has_perm(peer_sid, node_sid, |
| 4529 | SECCLASS_NODE, NODE__SENDTO, &ad)) |
Eric Paris | 1f1aaf8 | 2010-11-16 11:52:57 +0000 | [diff] [blame] | 4530 | return NF_DROP_ERR(-ECONNREFUSED); |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4531 | } |
| 4532 | |
| 4533 | return NF_ACCEPT; |
| 4534 | } |
| 4535 | |
| 4536 | static unsigned int selinux_ipv4_postroute(unsigned int hooknum, |
| 4537 | struct sk_buff *skb, |
| 4538 | const struct net_device *in, |
| 4539 | const struct net_device *out, |
| 4540 | int (*okfn)(struct sk_buff *)) |
| 4541 | { |
| 4542 | return selinux_ip_postroute(skb, out->ifindex, PF_INET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4543 | } |
| 4544 | |
| 4545 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4546 | static unsigned int selinux_ipv6_postroute(unsigned int hooknum, |
| 4547 | struct sk_buff *skb, |
| 4548 | const struct net_device *in, |
| 4549 | const struct net_device *out, |
| 4550 | int (*okfn)(struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4551 | { |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 4552 | return selinux_ip_postroute(skb, out->ifindex, PF_INET6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4553 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4554 | #endif /* IPV6 */ |
| 4555 | |
| 4556 | #endif /* CONFIG_NETFILTER */ |
| 4557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4558 | static int selinux_netlink_send(struct sock *sk, struct sk_buff *skb) |
| 4559 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4560 | int err; |
| 4561 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 4562 | err = cap_netlink_send(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4563 | if (err) |
| 4564 | return err; |
| 4565 | |
Stephen Smalley | 941fc5b | 2009-10-01 14:48:23 -0400 | [diff] [blame] | 4566 | return selinux_nlmsg_perm(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4567 | } |
| 4568 | |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 4569 | static int selinux_netlink_recv(struct sk_buff *skb, int capability) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4570 | { |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 4571 | int err; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4572 | struct common_audit_data ad; |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 4573 | |
Eric Paris | 200ac53 | 2009-02-12 15:01:04 -0500 | [diff] [blame] | 4574 | err = cap_netlink_recv(skb, capability); |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 4575 | if (err) |
| 4576 | return err; |
| 4577 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4578 | COMMON_AUDIT_DATA_INIT(&ad, CAP); |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 4579 | ad.u.cap = capability; |
| 4580 | |
| 4581 | return avc_has_perm(NETLINK_CB(skb).sid, NETLINK_CB(skb).sid, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4582 | SECCLASS_CAPABILITY, CAP_TO_MASK(capability), &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4583 | } |
| 4584 | |
| 4585 | static int ipc_alloc_security(struct task_struct *task, |
| 4586 | struct kern_ipc_perm *perm, |
| 4587 | u16 sclass) |
| 4588 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | struct ipc_security_struct *isec; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4590 | u32 sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4591 | |
James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 4592 | isec = kzalloc(sizeof(struct ipc_security_struct), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4593 | if (!isec) |
| 4594 | return -ENOMEM; |
| 4595 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4596 | sid = task_sid(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4597 | isec->sclass = sclass; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4598 | isec->sid = sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4599 | perm->security = isec; |
| 4600 | |
| 4601 | return 0; |
| 4602 | } |
| 4603 | |
| 4604 | static void ipc_free_security(struct kern_ipc_perm *perm) |
| 4605 | { |
| 4606 | struct ipc_security_struct *isec = perm->security; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4607 | perm->security = NULL; |
| 4608 | kfree(isec); |
| 4609 | } |
| 4610 | |
| 4611 | static int msg_msg_alloc_security(struct msg_msg *msg) |
| 4612 | { |
| 4613 | struct msg_security_struct *msec; |
| 4614 | |
James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 4615 | msec = kzalloc(sizeof(struct msg_security_struct), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4616 | if (!msec) |
| 4617 | return -ENOMEM; |
| 4618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4619 | msec->sid = SECINITSID_UNLABELED; |
| 4620 | msg->security = msec; |
| 4621 | |
| 4622 | return 0; |
| 4623 | } |
| 4624 | |
| 4625 | static void msg_msg_free_security(struct msg_msg *msg) |
| 4626 | { |
| 4627 | struct msg_security_struct *msec = msg->security; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4628 | |
| 4629 | msg->security = NULL; |
| 4630 | kfree(msec); |
| 4631 | } |
| 4632 | |
| 4633 | static int ipc_has_perm(struct kern_ipc_perm *ipc_perms, |
Stephen Smalley | 6af963f | 2005-05-01 08:58:39 -0700 | [diff] [blame] | 4634 | u32 perms) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4635 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4636 | struct ipc_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4637 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4638 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4639 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4640 | isec = ipc_perms->security; |
| 4641 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4642 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4643 | ad.u.ipc_id = ipc_perms->key; |
| 4644 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4645 | return avc_has_perm(sid, isec->sid, isec->sclass, perms, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4646 | } |
| 4647 | |
| 4648 | static int selinux_msg_msg_alloc_security(struct msg_msg *msg) |
| 4649 | { |
| 4650 | return msg_msg_alloc_security(msg); |
| 4651 | } |
| 4652 | |
| 4653 | static void selinux_msg_msg_free_security(struct msg_msg *msg) |
| 4654 | { |
| 4655 | msg_msg_free_security(msg); |
| 4656 | } |
| 4657 | |
| 4658 | /* message queue security operations */ |
| 4659 | static int selinux_msg_queue_alloc_security(struct msg_queue *msq) |
| 4660 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4661 | struct ipc_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4662 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4663 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4664 | int rc; |
| 4665 | |
| 4666 | rc = ipc_alloc_security(current, &msq->q_perm, SECCLASS_MSGQ); |
| 4667 | if (rc) |
| 4668 | return rc; |
| 4669 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4670 | isec = msq->q_perm.security; |
| 4671 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4672 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4673 | ad.u.ipc_id = msq->q_perm.key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4674 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4675 | rc = avc_has_perm(sid, isec->sid, SECCLASS_MSGQ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4676 | MSGQ__CREATE, &ad); |
| 4677 | if (rc) { |
| 4678 | ipc_free_security(&msq->q_perm); |
| 4679 | return rc; |
| 4680 | } |
| 4681 | return 0; |
| 4682 | } |
| 4683 | |
| 4684 | static void selinux_msg_queue_free_security(struct msg_queue *msq) |
| 4685 | { |
| 4686 | ipc_free_security(&msq->q_perm); |
| 4687 | } |
| 4688 | |
| 4689 | static int selinux_msg_queue_associate(struct msg_queue *msq, int msqflg) |
| 4690 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4691 | struct ipc_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4692 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4693 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4694 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4695 | isec = msq->q_perm.security; |
| 4696 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4697 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4698 | ad.u.ipc_id = msq->q_perm.key; |
| 4699 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4700 | return avc_has_perm(sid, isec->sid, SECCLASS_MSGQ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4701 | MSGQ__ASSOCIATE, &ad); |
| 4702 | } |
| 4703 | |
| 4704 | static int selinux_msg_queue_msgctl(struct msg_queue *msq, int cmd) |
| 4705 | { |
| 4706 | int err; |
| 4707 | int perms; |
| 4708 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4709 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4710 | case IPC_INFO: |
| 4711 | case MSG_INFO: |
| 4712 | /* No specific object, just general system-wide information. */ |
| 4713 | return task_has_system(current, SYSTEM__IPC_INFO); |
| 4714 | case IPC_STAT: |
| 4715 | case MSG_STAT: |
| 4716 | perms = MSGQ__GETATTR | MSGQ__ASSOCIATE; |
| 4717 | break; |
| 4718 | case IPC_SET: |
| 4719 | perms = MSGQ__SETATTR; |
| 4720 | break; |
| 4721 | case IPC_RMID: |
| 4722 | perms = MSGQ__DESTROY; |
| 4723 | break; |
| 4724 | default: |
| 4725 | return 0; |
| 4726 | } |
| 4727 | |
Stephen Smalley | 6af963f | 2005-05-01 08:58:39 -0700 | [diff] [blame] | 4728 | err = ipc_has_perm(&msq->q_perm, perms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4729 | return err; |
| 4730 | } |
| 4731 | |
| 4732 | static int selinux_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg, int msqflg) |
| 4733 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4734 | struct ipc_security_struct *isec; |
| 4735 | struct msg_security_struct *msec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4736 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4737 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4738 | int rc; |
| 4739 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4740 | isec = msq->q_perm.security; |
| 4741 | msec = msg->security; |
| 4742 | |
| 4743 | /* |
| 4744 | * First time through, need to assign label to the message |
| 4745 | */ |
| 4746 | if (msec->sid == SECINITSID_UNLABELED) { |
| 4747 | /* |
| 4748 | * Compute new sid based on current process and |
| 4749 | * message queue this message will be stored in |
| 4750 | */ |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4751 | rc = security_transition_sid(sid, isec->sid, SECCLASS_MSG, |
Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 4752 | NULL, &msec->sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4753 | if (rc) |
| 4754 | return rc; |
| 4755 | } |
| 4756 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4757 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4758 | ad.u.ipc_id = msq->q_perm.key; |
| 4759 | |
| 4760 | /* Can this process write to the queue? */ |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4761 | rc = avc_has_perm(sid, isec->sid, SECCLASS_MSGQ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4762 | MSGQ__WRITE, &ad); |
| 4763 | if (!rc) |
| 4764 | /* Can this process send the message */ |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4765 | rc = avc_has_perm(sid, msec->sid, SECCLASS_MSG, |
| 4766 | MSG__SEND, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | if (!rc) |
| 4768 | /* Can the message be put in the queue? */ |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4769 | rc = avc_has_perm(msec->sid, isec->sid, SECCLASS_MSGQ, |
| 4770 | MSGQ__ENQUEUE, &ad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4771 | |
| 4772 | return rc; |
| 4773 | } |
| 4774 | |
| 4775 | static int selinux_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg, |
| 4776 | struct task_struct *target, |
| 4777 | long type, int mode) |
| 4778 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4779 | struct ipc_security_struct *isec; |
| 4780 | struct msg_security_struct *msec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4781 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4782 | u32 sid = task_sid(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4783 | int rc; |
| 4784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4785 | isec = msq->q_perm.security; |
| 4786 | msec = msg->security; |
| 4787 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4788 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4789 | ad.u.ipc_id = msq->q_perm.key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4790 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4791 | rc = avc_has_perm(sid, isec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4792 | SECCLASS_MSGQ, MSGQ__READ, &ad); |
| 4793 | if (!rc) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4794 | rc = avc_has_perm(sid, msec->sid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4795 | SECCLASS_MSG, MSG__RECEIVE, &ad); |
| 4796 | return rc; |
| 4797 | } |
| 4798 | |
| 4799 | /* Shared Memory security operations */ |
| 4800 | static int selinux_shm_alloc_security(struct shmid_kernel *shp) |
| 4801 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4802 | struct ipc_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4803 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4804 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4805 | int rc; |
| 4806 | |
| 4807 | rc = ipc_alloc_security(current, &shp->shm_perm, SECCLASS_SHM); |
| 4808 | if (rc) |
| 4809 | return rc; |
| 4810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4811 | isec = shp->shm_perm.security; |
| 4812 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4813 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4814 | ad.u.ipc_id = shp->shm_perm.key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4815 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4816 | rc = avc_has_perm(sid, isec->sid, SECCLASS_SHM, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4817 | SHM__CREATE, &ad); |
| 4818 | if (rc) { |
| 4819 | ipc_free_security(&shp->shm_perm); |
| 4820 | return rc; |
| 4821 | } |
| 4822 | return 0; |
| 4823 | } |
| 4824 | |
| 4825 | static void selinux_shm_free_security(struct shmid_kernel *shp) |
| 4826 | { |
| 4827 | ipc_free_security(&shp->shm_perm); |
| 4828 | } |
| 4829 | |
| 4830 | static int selinux_shm_associate(struct shmid_kernel *shp, int shmflg) |
| 4831 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4832 | struct ipc_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4833 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4834 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4835 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4836 | isec = shp->shm_perm.security; |
| 4837 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4838 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4839 | ad.u.ipc_id = shp->shm_perm.key; |
| 4840 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4841 | return avc_has_perm(sid, isec->sid, SECCLASS_SHM, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4842 | SHM__ASSOCIATE, &ad); |
| 4843 | } |
| 4844 | |
| 4845 | /* Note, at this point, shp is locked down */ |
| 4846 | static int selinux_shm_shmctl(struct shmid_kernel *shp, int cmd) |
| 4847 | { |
| 4848 | int perms; |
| 4849 | int err; |
| 4850 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4851 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4852 | case IPC_INFO: |
| 4853 | case SHM_INFO: |
| 4854 | /* No specific object, just general system-wide information. */ |
| 4855 | return task_has_system(current, SYSTEM__IPC_INFO); |
| 4856 | case IPC_STAT: |
| 4857 | case SHM_STAT: |
| 4858 | perms = SHM__GETATTR | SHM__ASSOCIATE; |
| 4859 | break; |
| 4860 | case IPC_SET: |
| 4861 | perms = SHM__SETATTR; |
| 4862 | break; |
| 4863 | case SHM_LOCK: |
| 4864 | case SHM_UNLOCK: |
| 4865 | perms = SHM__LOCK; |
| 4866 | break; |
| 4867 | case IPC_RMID: |
| 4868 | perms = SHM__DESTROY; |
| 4869 | break; |
| 4870 | default: |
| 4871 | return 0; |
| 4872 | } |
| 4873 | |
Stephen Smalley | 6af963f | 2005-05-01 08:58:39 -0700 | [diff] [blame] | 4874 | err = ipc_has_perm(&shp->shm_perm, perms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4875 | return err; |
| 4876 | } |
| 4877 | |
| 4878 | static int selinux_shm_shmat(struct shmid_kernel *shp, |
| 4879 | char __user *shmaddr, int shmflg) |
| 4880 | { |
| 4881 | u32 perms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4882 | |
| 4883 | if (shmflg & SHM_RDONLY) |
| 4884 | perms = SHM__READ; |
| 4885 | else |
| 4886 | perms = SHM__READ | SHM__WRITE; |
| 4887 | |
Stephen Smalley | 6af963f | 2005-05-01 08:58:39 -0700 | [diff] [blame] | 4888 | return ipc_has_perm(&shp->shm_perm, perms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4889 | } |
| 4890 | |
| 4891 | /* Semaphore security operations */ |
| 4892 | static int selinux_sem_alloc_security(struct sem_array *sma) |
| 4893 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4894 | struct ipc_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4895 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4896 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4897 | int rc; |
| 4898 | |
| 4899 | rc = ipc_alloc_security(current, &sma->sem_perm, SECCLASS_SEM); |
| 4900 | if (rc) |
| 4901 | return rc; |
| 4902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4903 | isec = sma->sem_perm.security; |
| 4904 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4905 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4906 | ad.u.ipc_id = sma->sem_perm.key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4907 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4908 | rc = avc_has_perm(sid, isec->sid, SECCLASS_SEM, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4909 | SEM__CREATE, &ad); |
| 4910 | if (rc) { |
| 4911 | ipc_free_security(&sma->sem_perm); |
| 4912 | return rc; |
| 4913 | } |
| 4914 | return 0; |
| 4915 | } |
| 4916 | |
| 4917 | static void selinux_sem_free_security(struct sem_array *sma) |
| 4918 | { |
| 4919 | ipc_free_security(&sma->sem_perm); |
| 4920 | } |
| 4921 | |
| 4922 | static int selinux_sem_associate(struct sem_array *sma, int semflg) |
| 4923 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4924 | struct ipc_security_struct *isec; |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4925 | struct common_audit_data ad; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4926 | u32 sid = current_sid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4928 | isec = sma->sem_perm.security; |
| 4929 | |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 4930 | COMMON_AUDIT_DATA_INIT(&ad, IPC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4931 | ad.u.ipc_id = sma->sem_perm.key; |
| 4932 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 4933 | return avc_has_perm(sid, isec->sid, SECCLASS_SEM, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4934 | SEM__ASSOCIATE, &ad); |
| 4935 | } |
| 4936 | |
| 4937 | /* Note, at this point, sma is locked down */ |
| 4938 | static int selinux_sem_semctl(struct sem_array *sma, int cmd) |
| 4939 | { |
| 4940 | int err; |
| 4941 | u32 perms; |
| 4942 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 4943 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4944 | case IPC_INFO: |
| 4945 | case SEM_INFO: |
| 4946 | /* No specific object, just general system-wide information. */ |
| 4947 | return task_has_system(current, SYSTEM__IPC_INFO); |
| 4948 | case GETPID: |
| 4949 | case GETNCNT: |
| 4950 | case GETZCNT: |
| 4951 | perms = SEM__GETATTR; |
| 4952 | break; |
| 4953 | case GETVAL: |
| 4954 | case GETALL: |
| 4955 | perms = SEM__READ; |
| 4956 | break; |
| 4957 | case SETVAL: |
| 4958 | case SETALL: |
| 4959 | perms = SEM__WRITE; |
| 4960 | break; |
| 4961 | case IPC_RMID: |
| 4962 | perms = SEM__DESTROY; |
| 4963 | break; |
| 4964 | case IPC_SET: |
| 4965 | perms = SEM__SETATTR; |
| 4966 | break; |
| 4967 | case IPC_STAT: |
| 4968 | case SEM_STAT: |
| 4969 | perms = SEM__GETATTR | SEM__ASSOCIATE; |
| 4970 | break; |
| 4971 | default: |
| 4972 | return 0; |
| 4973 | } |
| 4974 | |
Stephen Smalley | 6af963f | 2005-05-01 08:58:39 -0700 | [diff] [blame] | 4975 | err = ipc_has_perm(&sma->sem_perm, perms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4976 | return err; |
| 4977 | } |
| 4978 | |
| 4979 | static int selinux_sem_semop(struct sem_array *sma, |
| 4980 | struct sembuf *sops, unsigned nsops, int alter) |
| 4981 | { |
| 4982 | u32 perms; |
| 4983 | |
| 4984 | if (alter) |
| 4985 | perms = SEM__READ | SEM__WRITE; |
| 4986 | else |
| 4987 | perms = SEM__READ; |
| 4988 | |
Stephen Smalley | 6af963f | 2005-05-01 08:58:39 -0700 | [diff] [blame] | 4989 | return ipc_has_perm(&sma->sem_perm, perms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4990 | } |
| 4991 | |
| 4992 | static int selinux_ipc_permission(struct kern_ipc_perm *ipcp, short flag) |
| 4993 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4994 | u32 av = 0; |
| 4995 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4996 | av = 0; |
| 4997 | if (flag & S_IRUGO) |
| 4998 | av |= IPC__UNIX_READ; |
| 4999 | if (flag & S_IWUGO) |
| 5000 | av |= IPC__UNIX_WRITE; |
| 5001 | |
| 5002 | if (av == 0) |
| 5003 | return 0; |
| 5004 | |
Stephen Smalley | 6af963f | 2005-05-01 08:58:39 -0700 | [diff] [blame] | 5005 | return ipc_has_perm(ipcp, av); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5006 | } |
| 5007 | |
Ahmed S. Darwish | 713a04ae | 2008-03-01 21:52:30 +0200 | [diff] [blame] | 5008 | static void selinux_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid) |
| 5009 | { |
| 5010 | struct ipc_security_struct *isec = ipcp->security; |
| 5011 | *secid = isec->sid; |
| 5012 | } |
| 5013 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5014 | static void selinux_d_instantiate(struct dentry *dentry, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5015 | { |
| 5016 | if (inode) |
| 5017 | inode_doinit_with_dentry(inode, dentry); |
| 5018 | } |
| 5019 | |
| 5020 | static int selinux_getprocattr(struct task_struct *p, |
Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 5021 | char *name, char **value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5022 | { |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5023 | const struct task_security_struct *__tsec; |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 5024 | u32 sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5025 | int error; |
Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 5026 | unsigned len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5027 | |
| 5028 | if (current != p) { |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 5029 | error = current_has_perm(p, PROCESS__GETATTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5030 | if (error) |
| 5031 | return error; |
| 5032 | } |
| 5033 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5034 | rcu_read_lock(); |
| 5035 | __tsec = __task_cred(p)->security; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5036 | |
| 5037 | if (!strcmp(name, "current")) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5038 | sid = __tsec->sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5039 | else if (!strcmp(name, "prev")) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5040 | sid = __tsec->osid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5041 | else if (!strcmp(name, "exec")) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5042 | sid = __tsec->exec_sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5043 | else if (!strcmp(name, "fscreate")) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5044 | sid = __tsec->create_sid; |
Michael LeMay | 4eb582c | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 5045 | else if (!strcmp(name, "keycreate")) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5046 | sid = __tsec->keycreate_sid; |
Eric Paris | 42c3e03 | 2006-06-26 00:26:03 -0700 | [diff] [blame] | 5047 | else if (!strcmp(name, "sockcreate")) |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5048 | sid = __tsec->sockcreate_sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5049 | else |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5050 | goto invalid; |
| 5051 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5052 | |
| 5053 | if (!sid) |
| 5054 | return 0; |
| 5055 | |
Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 5056 | error = security_sid_to_context(sid, value, &len); |
| 5057 | if (error) |
| 5058 | return error; |
| 5059 | return len; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5060 | |
| 5061 | invalid: |
| 5062 | rcu_read_unlock(); |
| 5063 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5064 | } |
| 5065 | |
| 5066 | static int selinux_setprocattr(struct task_struct *p, |
| 5067 | char *name, void *value, size_t size) |
| 5068 | { |
| 5069 | struct task_security_struct *tsec; |
Roland McGrath | 0356357 | 2008-03-26 15:46:39 -0700 | [diff] [blame] | 5070 | struct task_struct *tracer; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5071 | struct cred *new; |
| 5072 | u32 sid = 0, ptsid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5073 | int error; |
| 5074 | char *str = value; |
| 5075 | |
| 5076 | if (current != p) { |
| 5077 | /* SELinux only allows a process to change its own |
| 5078 | security attributes. */ |
| 5079 | return -EACCES; |
| 5080 | } |
| 5081 | |
| 5082 | /* |
| 5083 | * Basic control over ability to set these attributes at all. |
| 5084 | * current == p, but we'll pass them separately in case the |
| 5085 | * above restriction is ever removed. |
| 5086 | */ |
| 5087 | if (!strcmp(name, "exec")) |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 5088 | error = current_has_perm(p, PROCESS__SETEXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5089 | else if (!strcmp(name, "fscreate")) |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 5090 | error = current_has_perm(p, PROCESS__SETFSCREATE); |
Michael LeMay | 4eb582c | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 5091 | else if (!strcmp(name, "keycreate")) |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 5092 | error = current_has_perm(p, PROCESS__SETKEYCREATE); |
Eric Paris | 42c3e03 | 2006-06-26 00:26:03 -0700 | [diff] [blame] | 5093 | else if (!strcmp(name, "sockcreate")) |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 5094 | error = current_has_perm(p, PROCESS__SETSOCKCREATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5095 | else if (!strcmp(name, "current")) |
David Howells | 3b11a1d | 2008-11-14 10:39:26 +1100 | [diff] [blame] | 5096 | error = current_has_perm(p, PROCESS__SETCURRENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5097 | else |
| 5098 | error = -EINVAL; |
| 5099 | if (error) |
| 5100 | return error; |
| 5101 | |
| 5102 | /* Obtain a SID for the context, if one was specified. */ |
| 5103 | if (size && str[1] && str[1] != '\n') { |
| 5104 | if (str[size-1] == '\n') { |
| 5105 | str[size-1] = 0; |
| 5106 | size--; |
| 5107 | } |
| 5108 | error = security_context_to_sid(value, size, &sid); |
Stephen Smalley | 12b29f3 | 2008-05-07 13:03:20 -0400 | [diff] [blame] | 5109 | if (error == -EINVAL && !strcmp(name, "fscreate")) { |
| 5110 | if (!capable(CAP_MAC_ADMIN)) |
| 5111 | return error; |
| 5112 | error = security_context_to_sid_force(value, size, |
| 5113 | &sid); |
| 5114 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5115 | if (error) |
| 5116 | return error; |
| 5117 | } |
| 5118 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5119 | new = prepare_creds(); |
| 5120 | if (!new) |
| 5121 | return -ENOMEM; |
| 5122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5123 | /* Permission checking based on the specified context is |
| 5124 | performed during the actual operation (execve, |
| 5125 | open/mkdir/...), when we know the full context of the |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5126 | operation. See selinux_bprm_set_creds for the execve |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5127 | checks and may_create for the file creation checks. The |
| 5128 | operation will then fail if the context is not permitted. */ |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5129 | tsec = new->security; |
| 5130 | if (!strcmp(name, "exec")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | tsec->exec_sid = sid; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5132 | } else if (!strcmp(name, "fscreate")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5133 | tsec->create_sid = sid; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5134 | } else if (!strcmp(name, "keycreate")) { |
Michael LeMay | 4eb582c | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 5135 | error = may_create_key(sid, p); |
| 5136 | if (error) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5137 | goto abort_change; |
Michael LeMay | 4eb582c | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 5138 | tsec->keycreate_sid = sid; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5139 | } else if (!strcmp(name, "sockcreate")) { |
Eric Paris | 42c3e03 | 2006-06-26 00:26:03 -0700 | [diff] [blame] | 5140 | tsec->sockcreate_sid = sid; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5141 | } else if (!strcmp(name, "current")) { |
| 5142 | error = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5143 | if (sid == 0) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5144 | goto abort_change; |
KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 5145 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5146 | /* Only allow single threaded processes to change context */ |
| 5147 | error = -EPERM; |
Oleg Nesterov | 5bb459b | 2009-07-10 03:48:23 +0200 | [diff] [blame] | 5148 | if (!current_is_single_threaded()) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5149 | error = security_bounded_transition(tsec->sid, sid); |
| 5150 | if (error) |
| 5151 | goto abort_change; |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5152 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5153 | |
| 5154 | /* Check permissions for the transition. */ |
| 5155 | error = avc_has_perm(tsec->sid, sid, SECCLASS_PROCESS, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5156 | PROCESS__DYNTRANSITION, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5157 | if (error) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5158 | goto abort_change; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5159 | |
| 5160 | /* Check for ptracing, and update the task SID if ok. |
| 5161 | Otherwise, leave SID unchanged and fail. */ |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5162 | ptsid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5163 | task_lock(p); |
Roland McGrath | 0d094ef | 2008-07-25 19:45:49 -0700 | [diff] [blame] | 5164 | tracer = tracehook_tracer_task(p); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5165 | if (tracer) |
| 5166 | ptsid = task_sid(tracer); |
| 5167 | task_unlock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5168 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5169 | if (tracer) { |
| 5170 | error = avc_has_perm(ptsid, sid, SECCLASS_PROCESS, |
| 5171 | PROCESS__PTRACE, NULL); |
| 5172 | if (error) |
| 5173 | goto abort_change; |
| 5174 | } |
| 5175 | |
| 5176 | tsec->sid = sid; |
| 5177 | } else { |
| 5178 | error = -EINVAL; |
| 5179 | goto abort_change; |
| 5180 | } |
| 5181 | |
| 5182 | commit_creds(new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5183 | return size; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5184 | |
| 5185 | abort_change: |
| 5186 | abort_creds(new); |
| 5187 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5188 | } |
| 5189 | |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 5190 | static int selinux_secid_to_secctx(u32 secid, char **secdata, u32 *seclen) |
| 5191 | { |
| 5192 | return security_sid_to_context(secid, secdata, seclen); |
| 5193 | } |
| 5194 | |
David Howells | 7bf570d | 2008-04-29 20:52:51 +0100 | [diff] [blame] | 5195 | static int selinux_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid) |
David Howells | 63cb344 | 2008-01-15 23:47:35 +0000 | [diff] [blame] | 5196 | { |
| 5197 | return security_context_to_sid(secdata, seclen, secid); |
| 5198 | } |
| 5199 | |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 5200 | static void selinux_release_secctx(char *secdata, u32 seclen) |
| 5201 | { |
Paul Moore | 088999e | 2007-08-01 11:12:58 -0400 | [diff] [blame] | 5202 | kfree(secdata); |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 5203 | } |
| 5204 | |
David P. Quigley | 1ee65e3 | 2009-09-03 14:25:57 -0400 | [diff] [blame] | 5205 | /* |
| 5206 | * called with inode->i_mutex locked |
| 5207 | */ |
| 5208 | static int selinux_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen) |
| 5209 | { |
| 5210 | return selinux_inode_setsecurity(inode, XATTR_SELINUX_SUFFIX, ctx, ctxlen, 0); |
| 5211 | } |
| 5212 | |
| 5213 | /* |
| 5214 | * called with inode->i_mutex locked |
| 5215 | */ |
| 5216 | static int selinux_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen) |
| 5217 | { |
| 5218 | return __vfs_setxattr_noperm(dentry, XATTR_NAME_SELINUX, ctx, ctxlen, 0); |
| 5219 | } |
| 5220 | |
| 5221 | static int selinux_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen) |
| 5222 | { |
| 5223 | int len = 0; |
| 5224 | len = selinux_inode_getsecurity(inode, XATTR_SELINUX_SUFFIX, |
| 5225 | ctx, true); |
| 5226 | if (len < 0) |
| 5227 | return len; |
| 5228 | *ctxlen = len; |
| 5229 | return 0; |
| 5230 | } |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5231 | #ifdef CONFIG_KEYS |
| 5232 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5233 | static int selinux_key_alloc(struct key *k, const struct cred *cred, |
David Howells | 7e047ef | 2006-06-26 00:24:50 -0700 | [diff] [blame] | 5234 | unsigned long flags) |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5235 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5236 | const struct task_security_struct *tsec; |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5237 | struct key_security_struct *ksec; |
| 5238 | |
| 5239 | ksec = kzalloc(sizeof(struct key_security_struct), GFP_KERNEL); |
| 5240 | if (!ksec) |
| 5241 | return -ENOMEM; |
| 5242 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5243 | tsec = cred->security; |
| 5244 | if (tsec->keycreate_sid) |
| 5245 | ksec->sid = tsec->keycreate_sid; |
Michael LeMay | 4eb582c | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 5246 | else |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5247 | ksec->sid = tsec->sid; |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5248 | |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5249 | k->security = ksec; |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5250 | return 0; |
| 5251 | } |
| 5252 | |
| 5253 | static void selinux_key_free(struct key *k) |
| 5254 | { |
| 5255 | struct key_security_struct *ksec = k->security; |
| 5256 | |
| 5257 | k->security = NULL; |
| 5258 | kfree(ksec); |
| 5259 | } |
| 5260 | |
| 5261 | static int selinux_key_permission(key_ref_t key_ref, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5262 | const struct cred *cred, |
| 5263 | key_perm_t perm) |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5264 | { |
| 5265 | struct key *key; |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5266 | struct key_security_struct *ksec; |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5267 | u32 sid; |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5268 | |
| 5269 | /* if no specific permissions are requested, we skip the |
| 5270 | permission check. No serious, additional covert channels |
| 5271 | appear to be created. */ |
| 5272 | if (perm == 0) |
| 5273 | return 0; |
| 5274 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5275 | sid = cred_sid(cred); |
David Howells | 275bb41 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5276 | |
| 5277 | key = key_ref_to_ptr(key_ref); |
| 5278 | ksec = key->security; |
| 5279 | |
| 5280 | return avc_has_perm(sid, ksec->sid, SECCLASS_KEY, perm, NULL); |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5281 | } |
| 5282 | |
David Howells | 70a5bb7 | 2008-04-29 01:01:26 -0700 | [diff] [blame] | 5283 | static int selinux_key_getsecurity(struct key *key, char **_buffer) |
| 5284 | { |
| 5285 | struct key_security_struct *ksec = key->security; |
| 5286 | char *context = NULL; |
| 5287 | unsigned len; |
| 5288 | int rc; |
| 5289 | |
| 5290 | rc = security_sid_to_context(ksec->sid, &context, &len); |
| 5291 | if (!rc) |
| 5292 | rc = len; |
| 5293 | *_buffer = context; |
| 5294 | return rc; |
| 5295 | } |
| 5296 | |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5297 | #endif |
| 5298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5299 | static struct security_operations selinux_ops = { |
Ahmed S. Darwish | 076c54c | 2008-03-06 18:09:10 +0200 | [diff] [blame] | 5300 | .name = "selinux", |
| 5301 | |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 5302 | .ptrace_access_check = selinux_ptrace_access_check, |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 5303 | .ptrace_traceme = selinux_ptrace_traceme, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5304 | .capget = selinux_capget, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5305 | .capset = selinux_capset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5306 | .capable = selinux_capable, |
| 5307 | .quotactl = selinux_quotactl, |
| 5308 | .quota_on = selinux_quota_on, |
| 5309 | .syslog = selinux_syslog, |
| 5310 | .vm_enough_memory = selinux_vm_enough_memory, |
| 5311 | |
| 5312 | .netlink_send = selinux_netlink_send, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5313 | .netlink_recv = selinux_netlink_recv, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5314 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 5315 | .bprm_set_creds = selinux_bprm_set_creds, |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 5316 | .bprm_committing_creds = selinux_bprm_committing_creds, |
| 5317 | .bprm_committed_creds = selinux_bprm_committed_creds, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5318 | .bprm_secureexec = selinux_bprm_secureexec, |
| 5319 | |
| 5320 | .sb_alloc_security = selinux_sb_alloc_security, |
| 5321 | .sb_free_security = selinux_sb_free_security, |
| 5322 | .sb_copy_data = selinux_sb_copy_data, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5323 | .sb_kern_mount = selinux_sb_kern_mount, |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 5324 | .sb_show_options = selinux_sb_show_options, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5325 | .sb_statfs = selinux_sb_statfs, |
| 5326 | .sb_mount = selinux_mount, |
| 5327 | .sb_umount = selinux_umount, |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 5328 | .sb_set_mnt_opts = selinux_set_mnt_opts, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5329 | .sb_clone_mnt_opts = selinux_sb_clone_mnt_opts, |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 5330 | .sb_parse_opts_str = selinux_parse_opts_str, |
| 5331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5332 | |
| 5333 | .inode_alloc_security = selinux_inode_alloc_security, |
| 5334 | .inode_free_security = selinux_inode_free_security, |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 5335 | .inode_init_security = selinux_inode_init_security, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5336 | .inode_create = selinux_inode_create, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5337 | .inode_link = selinux_inode_link, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5338 | .inode_unlink = selinux_inode_unlink, |
| 5339 | .inode_symlink = selinux_inode_symlink, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5340 | .inode_mkdir = selinux_inode_mkdir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5341 | .inode_rmdir = selinux_inode_rmdir, |
| 5342 | .inode_mknod = selinux_inode_mknod, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5343 | .inode_rename = selinux_inode_rename, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5344 | .inode_readlink = selinux_inode_readlink, |
| 5345 | .inode_follow_link = selinux_inode_follow_link, |
| 5346 | .inode_permission = selinux_inode_permission, |
| 5347 | .inode_setattr = selinux_inode_setattr, |
| 5348 | .inode_getattr = selinux_inode_getattr, |
| 5349 | .inode_setxattr = selinux_inode_setxattr, |
| 5350 | .inode_post_setxattr = selinux_inode_post_setxattr, |
| 5351 | .inode_getxattr = selinux_inode_getxattr, |
| 5352 | .inode_listxattr = selinux_inode_listxattr, |
| 5353 | .inode_removexattr = selinux_inode_removexattr, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5354 | .inode_getsecurity = selinux_inode_getsecurity, |
| 5355 | .inode_setsecurity = selinux_inode_setsecurity, |
| 5356 | .inode_listsecurity = selinux_inode_listsecurity, |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 5357 | .inode_getsecid = selinux_inode_getsecid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5358 | |
| 5359 | .file_permission = selinux_file_permission, |
| 5360 | .file_alloc_security = selinux_file_alloc_security, |
| 5361 | .file_free_security = selinux_file_free_security, |
| 5362 | .file_ioctl = selinux_file_ioctl, |
| 5363 | .file_mmap = selinux_file_mmap, |
| 5364 | .file_mprotect = selinux_file_mprotect, |
| 5365 | .file_lock = selinux_file_lock, |
| 5366 | .file_fcntl = selinux_file_fcntl, |
| 5367 | .file_set_fowner = selinux_file_set_fowner, |
| 5368 | .file_send_sigiotask = selinux_file_send_sigiotask, |
| 5369 | .file_receive = selinux_file_receive, |
| 5370 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5371 | .dentry_open = selinux_dentry_open, |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 5372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5373 | .task_create = selinux_task_create, |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 5374 | .cred_alloc_blank = selinux_cred_alloc_blank, |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 5375 | .cred_free = selinux_cred_free, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5376 | .cred_prepare = selinux_cred_prepare, |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 5377 | .cred_transfer = selinux_cred_transfer, |
David Howells | 3a3b7ce | 2008-11-14 10:39:28 +1100 | [diff] [blame] | 5378 | .kernel_act_as = selinux_kernel_act_as, |
| 5379 | .kernel_create_files_as = selinux_kernel_create_files_as, |
Eric Paris | 25354c4 | 2009-08-13 09:45:03 -0400 | [diff] [blame] | 5380 | .kernel_module_request = selinux_kernel_module_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5381 | .task_setpgid = selinux_task_setpgid, |
| 5382 | .task_getpgid = selinux_task_getpgid, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5383 | .task_getsid = selinux_task_getsid, |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 5384 | .task_getsecid = selinux_task_getsecid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5385 | .task_setnice = selinux_task_setnice, |
James Morris | 03e6806 | 2006-06-23 02:03:58 -0700 | [diff] [blame] | 5386 | .task_setioprio = selinux_task_setioprio, |
David Quigley | a1836a4 | 2006-06-30 01:55:49 -0700 | [diff] [blame] | 5387 | .task_getioprio = selinux_task_getioprio, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5388 | .task_setrlimit = selinux_task_setrlimit, |
| 5389 | .task_setscheduler = selinux_task_setscheduler, |
| 5390 | .task_getscheduler = selinux_task_getscheduler, |
David Quigley | 3560154 | 2006-06-23 02:04:01 -0700 | [diff] [blame] | 5391 | .task_movememory = selinux_task_movememory, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5392 | .task_kill = selinux_task_kill, |
| 5393 | .task_wait = selinux_task_wait, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5394 | .task_to_inode = selinux_task_to_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5395 | |
| 5396 | .ipc_permission = selinux_ipc_permission, |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 5397 | .ipc_getsecid = selinux_ipc_getsecid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5398 | |
| 5399 | .msg_msg_alloc_security = selinux_msg_msg_alloc_security, |
| 5400 | .msg_msg_free_security = selinux_msg_msg_free_security, |
| 5401 | |
| 5402 | .msg_queue_alloc_security = selinux_msg_queue_alloc_security, |
| 5403 | .msg_queue_free_security = selinux_msg_queue_free_security, |
| 5404 | .msg_queue_associate = selinux_msg_queue_associate, |
| 5405 | .msg_queue_msgctl = selinux_msg_queue_msgctl, |
| 5406 | .msg_queue_msgsnd = selinux_msg_queue_msgsnd, |
| 5407 | .msg_queue_msgrcv = selinux_msg_queue_msgrcv, |
| 5408 | |
| 5409 | .shm_alloc_security = selinux_shm_alloc_security, |
| 5410 | .shm_free_security = selinux_shm_free_security, |
| 5411 | .shm_associate = selinux_shm_associate, |
| 5412 | .shm_shmctl = selinux_shm_shmctl, |
| 5413 | .shm_shmat = selinux_shm_shmat, |
| 5414 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5415 | .sem_alloc_security = selinux_sem_alloc_security, |
| 5416 | .sem_free_security = selinux_sem_free_security, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5417 | .sem_associate = selinux_sem_associate, |
| 5418 | .sem_semctl = selinux_sem_semctl, |
| 5419 | .sem_semop = selinux_sem_semop, |
| 5420 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5421 | .d_instantiate = selinux_d_instantiate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5422 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5423 | .getprocattr = selinux_getprocattr, |
| 5424 | .setprocattr = selinux_setprocattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5425 | |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 5426 | .secid_to_secctx = selinux_secid_to_secctx, |
David Howells | 63cb344 | 2008-01-15 23:47:35 +0000 | [diff] [blame] | 5427 | .secctx_to_secid = selinux_secctx_to_secid, |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 5428 | .release_secctx = selinux_release_secctx, |
David P. Quigley | 1ee65e3 | 2009-09-03 14:25:57 -0400 | [diff] [blame] | 5429 | .inode_notifysecctx = selinux_inode_notifysecctx, |
| 5430 | .inode_setsecctx = selinux_inode_setsecctx, |
| 5431 | .inode_getsecctx = selinux_inode_getsecctx, |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 5432 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5433 | .unix_stream_connect = selinux_socket_unix_stream_connect, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5434 | .unix_may_send = selinux_socket_unix_may_send, |
| 5435 | |
| 5436 | .socket_create = selinux_socket_create, |
| 5437 | .socket_post_create = selinux_socket_post_create, |
| 5438 | .socket_bind = selinux_socket_bind, |
| 5439 | .socket_connect = selinux_socket_connect, |
| 5440 | .socket_listen = selinux_socket_listen, |
| 5441 | .socket_accept = selinux_socket_accept, |
| 5442 | .socket_sendmsg = selinux_socket_sendmsg, |
| 5443 | .socket_recvmsg = selinux_socket_recvmsg, |
| 5444 | .socket_getsockname = selinux_socket_getsockname, |
| 5445 | .socket_getpeername = selinux_socket_getpeername, |
| 5446 | .socket_getsockopt = selinux_socket_getsockopt, |
| 5447 | .socket_setsockopt = selinux_socket_setsockopt, |
| 5448 | .socket_shutdown = selinux_socket_shutdown, |
| 5449 | .socket_sock_rcv_skb = selinux_socket_sock_rcv_skb, |
Catherine Zhang | 2c7946a | 2006-03-20 22:41:23 -0800 | [diff] [blame] | 5450 | .socket_getpeersec_stream = selinux_socket_getpeersec_stream, |
| 5451 | .socket_getpeersec_dgram = selinux_socket_getpeersec_dgram, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5452 | .sk_alloc_security = selinux_sk_alloc_security, |
| 5453 | .sk_free_security = selinux_sk_free_security, |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 5454 | .sk_clone_security = selinux_sk_clone_security, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5455 | .sk_getsecid = selinux_sk_getsecid, |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 5456 | .sock_graft = selinux_sock_graft, |
| 5457 | .inet_conn_request = selinux_inet_conn_request, |
| 5458 | .inet_csk_clone = selinux_inet_csk_clone, |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 5459 | .inet_conn_established = selinux_inet_conn_established, |
Eric Paris | 2606fd1 | 2010-10-13 16:24:41 -0400 | [diff] [blame] | 5460 | .secmark_relabel_packet = selinux_secmark_relabel_packet, |
| 5461 | .secmark_refcount_inc = selinux_secmark_refcount_inc, |
| 5462 | .secmark_refcount_dec = selinux_secmark_refcount_dec, |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 5463 | .req_classify_flow = selinux_req_classify_flow, |
Paul Moore | ed6d76e | 2009-08-28 18:12:49 -0400 | [diff] [blame] | 5464 | .tun_dev_create = selinux_tun_dev_create, |
| 5465 | .tun_dev_post_create = selinux_tun_dev_post_create, |
| 5466 | .tun_dev_attach = selinux_tun_dev_attach, |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 5467 | |
| 5468 | #ifdef CONFIG_SECURITY_NETWORK_XFRM |
| 5469 | .xfrm_policy_alloc_security = selinux_xfrm_policy_alloc, |
| 5470 | .xfrm_policy_clone_security = selinux_xfrm_policy_clone, |
| 5471 | .xfrm_policy_free_security = selinux_xfrm_policy_free, |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 5472 | .xfrm_policy_delete_security = selinux_xfrm_policy_delete, |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 5473 | .xfrm_state_alloc_security = selinux_xfrm_state_alloc, |
| 5474 | .xfrm_state_free_security = selinux_xfrm_state_free, |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 5475 | .xfrm_state_delete_security = selinux_xfrm_state_delete, |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5476 | .xfrm_policy_lookup = selinux_xfrm_policy_lookup, |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 5477 | .xfrm_state_pol_flow_match = selinux_xfrm_state_pol_flow_match, |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 5478 | .xfrm_decode_session = selinux_xfrm_decode_session, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5479 | #endif |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5480 | |
| 5481 | #ifdef CONFIG_KEYS |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5482 | .key_alloc = selinux_key_alloc, |
| 5483 | .key_free = selinux_key_free, |
| 5484 | .key_permission = selinux_key_permission, |
David Howells | 70a5bb7 | 2008-04-29 01:01:26 -0700 | [diff] [blame] | 5485 | .key_getsecurity = selinux_key_getsecurity, |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5486 | #endif |
Ahmed S. Darwish | 9d57a7f | 2008-03-01 22:03:14 +0200 | [diff] [blame] | 5487 | |
| 5488 | #ifdef CONFIG_AUDIT |
| 5489 | .audit_rule_init = selinux_audit_rule_init, |
| 5490 | .audit_rule_known = selinux_audit_rule_known, |
| 5491 | .audit_rule_match = selinux_audit_rule_match, |
| 5492 | .audit_rule_free = selinux_audit_rule_free, |
| 5493 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5494 | }; |
| 5495 | |
| 5496 | static __init int selinux_init(void) |
| 5497 | { |
Ahmed S. Darwish | 076c54c | 2008-03-06 18:09:10 +0200 | [diff] [blame] | 5498 | if (!security_module_enable(&selinux_ops)) { |
| 5499 | selinux_enabled = 0; |
| 5500 | return 0; |
| 5501 | } |
| 5502 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5503 | if (!selinux_enabled) { |
| 5504 | printk(KERN_INFO "SELinux: Disabled at boot.\n"); |
| 5505 | return 0; |
| 5506 | } |
| 5507 | |
| 5508 | printk(KERN_INFO "SELinux: Initializing.\n"); |
| 5509 | |
| 5510 | /* Set the security state for the initial task. */ |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 5511 | cred_init_security(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5512 | |
Stephen Smalley | fcaaade | 2010-04-28 15:57:57 -0400 | [diff] [blame] | 5513 | default_noexec = !(VM_DATA_DEFAULT_FLAGS & VM_EXEC); |
| 5514 | |
James Morris | 7cae7e2 | 2006-03-22 00:09:22 -0800 | [diff] [blame] | 5515 | sel_inode_cache = kmem_cache_create("selinux_inode_security", |
| 5516 | sizeof(struct inode_security_struct), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 5517 | 0, SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5518 | avc_init(); |
| 5519 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5520 | if (register_security(&selinux_ops)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5521 | panic("SELinux: Unable to register with kernel.\n"); |
| 5522 | |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5523 | if (selinux_enforcing) |
Eric Paris | fadcdb4 | 2007-02-22 18:11:31 -0500 | [diff] [blame] | 5524 | printk(KERN_DEBUG "SELinux: Starting in enforcing mode\n"); |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5525 | else |
Eric Paris | fadcdb4 | 2007-02-22 18:11:31 -0500 | [diff] [blame] | 5526 | printk(KERN_DEBUG "SELinux: Starting in permissive mode\n"); |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 5527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5528 | return 0; |
| 5529 | } |
| 5530 | |
Al Viro | e8c2625 | 2010-03-23 06:36:54 -0400 | [diff] [blame] | 5531 | static void delayed_superblock_init(struct super_block *sb, void *unused) |
| 5532 | { |
| 5533 | superblock_doinit(sb, NULL); |
| 5534 | } |
| 5535 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5536 | void selinux_complete_init(void) |
| 5537 | { |
Eric Paris | fadcdb4 | 2007-02-22 18:11:31 -0500 | [diff] [blame] | 5538 | printk(KERN_DEBUG "SELinux: Completing initialization.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5539 | |
| 5540 | /* Set up any superblocks initialized prior to the policy load. */ |
Eric Paris | fadcdb4 | 2007-02-22 18:11:31 -0500 | [diff] [blame] | 5541 | printk(KERN_DEBUG "SELinux: Setting up existing superblocks.\n"); |
Al Viro | e8c2625 | 2010-03-23 06:36:54 -0400 | [diff] [blame] | 5542 | iterate_supers(delayed_superblock_init, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5543 | } |
| 5544 | |
| 5545 | /* SELinux requires early initialization in order to label |
| 5546 | all processes and objects when they are created. */ |
| 5547 | security_initcall(selinux_init); |
| 5548 | |
Stephen Smalley | c2b507f | 2006-02-04 23:27:50 -0800 | [diff] [blame] | 5549 | #if defined(CONFIG_NETFILTER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5550 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 5551 | static struct nf_hook_ops selinux_ipv4_ops[] = { |
| 5552 | { |
| 5553 | .hook = selinux_ipv4_postroute, |
| 5554 | .owner = THIS_MODULE, |
| 5555 | .pf = PF_INET, |
| 5556 | .hooknum = NF_INET_POST_ROUTING, |
| 5557 | .priority = NF_IP_PRI_SELINUX_LAST, |
| 5558 | }, |
| 5559 | { |
| 5560 | .hook = selinux_ipv4_forward, |
| 5561 | .owner = THIS_MODULE, |
| 5562 | .pf = PF_INET, |
| 5563 | .hooknum = NF_INET_FORWARD, |
| 5564 | .priority = NF_IP_PRI_SELINUX_FIRST, |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 5565 | }, |
| 5566 | { |
| 5567 | .hook = selinux_ipv4_output, |
| 5568 | .owner = THIS_MODULE, |
| 5569 | .pf = PF_INET, |
| 5570 | .hooknum = NF_INET_LOCAL_OUT, |
| 5571 | .priority = NF_IP_PRI_SELINUX_FIRST, |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 5572 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5573 | }; |
| 5574 | |
| 5575 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
| 5576 | |
Paul Moore | effad8d | 2008-01-29 08:49:27 -0500 | [diff] [blame] | 5577 | static struct nf_hook_ops selinux_ipv6_ops[] = { |
| 5578 | { |
| 5579 | .hook = selinux_ipv6_postroute, |
| 5580 | .owner = THIS_MODULE, |
| 5581 | .pf = PF_INET6, |
| 5582 | .hooknum = NF_INET_POST_ROUTING, |
| 5583 | .priority = NF_IP6_PRI_SELINUX_LAST, |
| 5584 | }, |
| 5585 | { |
| 5586 | .hook = selinux_ipv6_forward, |
| 5587 | .owner = THIS_MODULE, |
| 5588 | .pf = PF_INET6, |
| 5589 | .hooknum = NF_INET_FORWARD, |
| 5590 | .priority = NF_IP6_PRI_SELINUX_FIRST, |
| 5591 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5592 | }; |
| 5593 | |
| 5594 | #endif /* IPV6 */ |
| 5595 | |
| 5596 | static int __init selinux_nf_ip_init(void) |
| 5597 | { |
| 5598 | int err = 0; |
| 5599 | |
| 5600 | if (!selinux_enabled) |
| 5601 | goto out; |
Eric Paris | fadcdb4 | 2007-02-22 18:11:31 -0500 | [diff] [blame] | 5602 | |
| 5603 | printk(KERN_DEBUG "SELinux: Registering netfilter hooks\n"); |
| 5604 | |
Alexey Dobriyan | 6c5a9d2 | 2008-07-26 17:48:15 -0700 | [diff] [blame] | 5605 | err = nf_register_hooks(selinux_ipv4_ops, ARRAY_SIZE(selinux_ipv4_ops)); |
| 5606 | if (err) |
| 5607 | panic("SELinux: nf_register_hooks for IPv4: error %d\n", err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5608 | |
| 5609 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
Alexey Dobriyan | 6c5a9d2 | 2008-07-26 17:48:15 -0700 | [diff] [blame] | 5610 | err = nf_register_hooks(selinux_ipv6_ops, ARRAY_SIZE(selinux_ipv6_ops)); |
| 5611 | if (err) |
| 5612 | panic("SELinux: nf_register_hooks for IPv6: error %d\n", err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5613 | #endif /* IPV6 */ |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 5614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5615 | out: |
| 5616 | return err; |
| 5617 | } |
| 5618 | |
| 5619 | __initcall(selinux_nf_ip_init); |
| 5620 | |
| 5621 | #ifdef CONFIG_SECURITY_SELINUX_DISABLE |
| 5622 | static void selinux_nf_ip_exit(void) |
| 5623 | { |
Eric Paris | fadcdb4 | 2007-02-22 18:11:31 -0500 | [diff] [blame] | 5624 | printk(KERN_DEBUG "SELinux: Unregistering netfilter hooks\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5625 | |
Alexey Dobriyan | 6c5a9d2 | 2008-07-26 17:48:15 -0700 | [diff] [blame] | 5626 | nf_unregister_hooks(selinux_ipv4_ops, ARRAY_SIZE(selinux_ipv4_ops)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5627 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
Alexey Dobriyan | 6c5a9d2 | 2008-07-26 17:48:15 -0700 | [diff] [blame] | 5628 | nf_unregister_hooks(selinux_ipv6_ops, ARRAY_SIZE(selinux_ipv6_ops)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5629 | #endif /* IPV6 */ |
| 5630 | } |
| 5631 | #endif |
| 5632 | |
Stephen Smalley | c2b507f | 2006-02-04 23:27:50 -0800 | [diff] [blame] | 5633 | #else /* CONFIG_NETFILTER */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5634 | |
| 5635 | #ifdef CONFIG_SECURITY_SELINUX_DISABLE |
| 5636 | #define selinux_nf_ip_exit() |
| 5637 | #endif |
| 5638 | |
Stephen Smalley | c2b507f | 2006-02-04 23:27:50 -0800 | [diff] [blame] | 5639 | #endif /* CONFIG_NETFILTER */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5640 | |
| 5641 | #ifdef CONFIG_SECURITY_SELINUX_DISABLE |
Eric Paris | 828dfe1 | 2008-04-17 13:17:49 -0400 | [diff] [blame] | 5642 | static int selinux_disabled; |
| 5643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5644 | int selinux_disable(void) |
| 5645 | { |
| 5646 | extern void exit_sel_fs(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5647 | |
| 5648 | if (ss_initialized) { |
| 5649 | /* Not permitted after initial policy load. */ |
| 5650 | return -EINVAL; |
| 5651 | } |
| 5652 | |
| 5653 | if (selinux_disabled) { |
| 5654 | /* Only do this once. */ |
| 5655 | return -EINVAL; |
| 5656 | } |
| 5657 | |
| 5658 | printk(KERN_INFO "SELinux: Disabled at runtime.\n"); |
| 5659 | |
| 5660 | selinux_disabled = 1; |
Stephen Smalley | 30d5528 | 2006-05-03 10:52:36 -0400 | [diff] [blame] | 5661 | selinux_enabled = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5662 | |
wzt.wzt@gmail.com | 189b3b1 | 2010-02-23 23:15:28 +0800 | [diff] [blame] | 5663 | reset_security_ops(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5664 | |
Eric Paris | af8ff04 | 2009-09-20 21:23:01 -0400 | [diff] [blame] | 5665 | /* Try to destroy the avc node cache */ |
| 5666 | avc_disable(); |
| 5667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5668 | /* Unregister netfilter hooks. */ |
| 5669 | selinux_nf_ip_exit(); |
| 5670 | |
| 5671 | /* Unregister selinuxfs. */ |
| 5672 | exit_sel_fs(); |
| 5673 | |
| 5674 | return 0; |
| 5675 | } |
| 5676 | #endif |