blob: ca0a1c671f0ea466a0abcb85881ae9db5bdcf214 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Paris828dfe12008-04-17 13:17:49 -04007 * Chris Vance, <cvance@nai.com>
8 * Wayne Salamon, <wsalamon@nai.com>
9 * James Morris <jmorris@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Copyright (C) 2001,2002 Networks Associates Technology, Inc.
Eric Paris2069f452008-07-04 09:47:13 +100012 * Copyright (C) 2003-2008 Red Hat, Inc., James Morris <jmorris@redhat.com>
13 * Eric Paris <eparis@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
Eric Paris828dfe12008-04-17 13:17:49 -040015 * <dgoeddel@trustedcs.com>
Paul Mooreed6d76e2009-08-28 18:12:49 -040016 * Copyright (C) 2006, 2007, 2009 Hewlett-Packard Development Company, L.P.
Paul Moore82c21bf2011-08-01 11:10:33 +000017 * Paul Moore <paul@paul-moore.com>
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +090018 * Copyright (C) 2007 Hitachi Software Engineering Co., Ltd.
Eric Paris828dfe12008-04-17 13:17:49 -040019 * Yuichi Nakamura <ynakam@hitachisoft.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 *
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 Paris828dfe12008-04-17 13:17:49 -040023 * as published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
Eric Paris0b24dcb2011-02-25 15:39:20 -050027#include <linux/kd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070029#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
31#include <linux/sched.h>
32#include <linux/security.h>
33#include <linux/xattr.h>
34#include <linux/capability.h>
35#include <linux/unistd.h>
36#include <linux/mm.h>
37#include <linux/mman.h>
38#include <linux/slab.h>
39#include <linux/pagemap.h>
Eric Paris0b24dcb2011-02-25 15:39:20 -050040#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/spinlock.h>
43#include <linux/syscalls.h>
Eric Paris2a7dba32011-02-01 11:05:39 -050044#include <linux/dcache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040046#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/namei.h>
48#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/netfilter_ipv4.h>
50#include <linux/netfilter_ipv6.h>
51#include <linux/tty.h>
52#include <net/icmp.h>
Stephen Hemminger227b60f2007-10-10 17:30:46 -070053#include <net/ip.h> /* for local_port_range[] */
Eric Dumazetca10b9e2013-04-08 17:58:11 +000054#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <net/tcp.h> /* struct or_callable used in sock_rcv_skb */
Paul Moore220deb92008-01-29 08:38:23 -050056#include <net/net_namespace.h>
Paul Moored621d352008-01-29 08:43:36 -050057#include <net/netlabel.h>
Eric Parisf5269712008-05-14 11:27:45 -040058#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <asm/ioctls.h>
Arun Sharma600634972011-07-26 16:09:06 -070060#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/bitops.h>
62#include <linux/interrupt.h>
63#include <linux/netdevice.h> /* for network interface checks */
Hong zhi guo77954982013-03-27 06:49:35 +000064#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/tcp.h>
66#include <linux/udp.h>
James Morris2ee92d42006-11-13 16:09:01 -080067#include <linux/dccp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/quota.h>
69#include <linux/un.h> /* for Unix socket types */
70#include <net/af_unix.h> /* for Unix socket types */
71#include <linux/parser.h>
72#include <linux/nfs_mount.h>
73#include <net/ipv6.h>
74#include <linux/hugetlb.h>
75#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/audit.h>
Eric Paris6931dfc2005-06-30 02:58:51 -070077#include <linux/string.h>
Catherine Zhang877ce7c2006-06-29 12:27:47 -070078#include <linux/selinux.h>
Eric Paris23970742006-09-25 23:32:01 -070079#include <linux/mutex.h>
Frank Mayharf06febc2008-09-12 09:54:39 -070080#include <linux/posix-timers.h>
Kees Cook00234592010-02-03 15:36:43 -080081#include <linux/syslog.h>
Serge E. Hallyn34867402011-03-23 16:43:17 -070082#include <linux/user_namespace.h>
Paul Gortmaker44fc7ea2011-05-26 20:52:10 -040083#include <linux/export.h>
Al Viro40401532012-02-13 03:58:52 +000084#include <linux/msg.h>
85#include <linux/shm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#include "avc.h"
88#include "objsec.h"
89#include "netif.h"
Paul Moore224dfbd2008-01-29 08:38:13 -050090#include "netnode.h"
Paul Moore3e112172008-04-10 10:48:14 -040091#include "netport.h"
Trent Jaegerd28d1e02005-12-13 23:12:40 -080092#include "xfrm.h"
Paul Moorec60475b2007-02-28 15:14:23 -050093#include "netlabel.h"
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +020094#include "audit.h"
James Morris7b98a582011-08-30 12:52:32 +100095#include "avc_ss.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
James Morris20510f22007-10-16 23:31:32 -070097extern struct security_operations *security_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Paul Moored621d352008-01-29 08:43:36 -050099/* SECMARK reference count */
James Morris56a4ca92011-08-17 11:08:43 +1000100static atomic_t selinux_secmark_refcount = ATOMIC_INIT(0);
Paul Moored621d352008-01-29 08:43:36 -0500101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Eric Paris828dfe12008-04-17 13:17:49 -0400103int selinux_enforcing;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105static int __init enforcing_setup(char *str)
106{
Eric Parisf5269712008-05-14 11:27:45 -0400107 unsigned long enforcing;
108 if (!strict_strtoul(str, 0, &enforcing))
109 selinux_enforcing = enforcing ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return 1;
111}
112__setup("enforcing=", enforcing_setup);
113#endif
114
115#ifdef CONFIG_SECURITY_SELINUX_BOOTPARAM
116int selinux_enabled = CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE;
117
118static int __init selinux_enabled_setup(char *str)
119{
Eric Parisf5269712008-05-14 11:27:45 -0400120 unsigned long enabled;
121 if (!strict_strtoul(str, 0, &enabled))
122 selinux_enabled = enabled ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return 1;
124}
125__setup("selinux=", selinux_enabled_setup);
Stephen Smalley30d55282006-05-03 10:52:36 -0400126#else
127int selinux_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif
129
Christoph Lametere18b8902006-12-06 20:33:20 -0800130static struct kmem_cache *sel_inode_cache;
James Morris7cae7e22006-03-22 00:09:22 -0800131
Paul Moored621d352008-01-29 08:43:36 -0500132/**
133 * selinux_secmark_enabled - Check to see if SECMARK is currently enabled
134 *
135 * Description:
136 * This function checks the SECMARK reference counter to see if any SECMARK
137 * targets are currently configured, if the reference counter is greater than
138 * zero SECMARK is considered to be enabled. Returns true (1) if SECMARK is
139 * enabled, false (0) if SECMARK is disabled.
140 *
141 */
142static int selinux_secmark_enabled(void)
143{
144 return (atomic_read(&selinux_secmark_refcount) > 0);
145}
146
David Howellsd84f4f92008-11-14 10:39:23 +1100147/*
148 * initialise the security for the init task
149 */
150static void cred_init_security(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
David Howells3b11a1d2008-11-14 10:39:26 +1100152 struct cred *cred = (struct cred *) current->real_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct task_security_struct *tsec;
154
James Morris89d155e2005-10-30 14:59:21 -0800155 tsec = kzalloc(sizeof(struct task_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (!tsec)
David Howellsd84f4f92008-11-14 10:39:23 +1100157 panic("SELinux: Failed to initialize initial task.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
David Howellsd84f4f92008-11-14 10:39:23 +1100159 tsec->osid = tsec->sid = SECINITSID_KERNEL;
David Howellsf1752ee2008-11-14 10:39:17 +1100160 cred->security = tsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
David Howells275bb412008-11-14 10:39:19 +1100163/*
David Howells88e67f32008-11-14 10:39:21 +1100164 * get the security ID of a set of credentials
165 */
166static inline u32 cred_sid(const struct cred *cred)
167{
168 const struct task_security_struct *tsec;
169
170 tsec = cred->security;
171 return tsec->sid;
172}
173
174/*
David Howells3b11a1d2008-11-14 10:39:26 +1100175 * get the objective security ID of a task
David Howells275bb412008-11-14 10:39:19 +1100176 */
177static inline u32 task_sid(const struct task_struct *task)
178{
David Howells275bb412008-11-14 10:39:19 +1100179 u32 sid;
180
181 rcu_read_lock();
David Howells88e67f32008-11-14 10:39:21 +1100182 sid = cred_sid(__task_cred(task));
David Howells275bb412008-11-14 10:39:19 +1100183 rcu_read_unlock();
184 return sid;
185}
186
187/*
David Howells3b11a1d2008-11-14 10:39:26 +1100188 * get the subjective security ID of the current task
David Howells275bb412008-11-14 10:39:19 +1100189 */
190static inline u32 current_sid(void)
191{
Paul Moore5fb49872010-04-22 14:46:19 -0400192 const struct task_security_struct *tsec = current_security();
David Howells275bb412008-11-14 10:39:19 +1100193
194 return tsec->sid;
195}
196
David Howells88e67f32008-11-14 10:39:21 +1100197/* Allocate and free functions for each kind of security blob. */
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static int inode_alloc_security(struct inode *inode)
200{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct inode_security_struct *isec;
David Howells275bb412008-11-14 10:39:19 +1100202 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Josef Bacika02fe132008-04-04 09:35:05 +1100204 isec = kmem_cache_zalloc(sel_inode_cache, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (!isec)
206 return -ENOMEM;
207
Eric Paris23970742006-09-25 23:32:01 -0700208 mutex_init(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 INIT_LIST_HEAD(&isec->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 isec->inode = inode;
211 isec->sid = SECINITSID_UNLABELED;
212 isec->sclass = SECCLASS_FILE;
David Howells275bb412008-11-14 10:39:19 +1100213 isec->task_sid = sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 inode->i_security = isec;
215
216 return 0;
217}
218
219static void inode_free_security(struct inode *inode)
220{
221 struct inode_security_struct *isec = inode->i_security;
222 struct superblock_security_struct *sbsec = inode->i_sb->s_security;
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 spin_lock(&sbsec->isec_lock);
225 if (!list_empty(&isec->list))
226 list_del_init(&isec->list);
227 spin_unlock(&sbsec->isec_lock);
228
229 inode->i_security = NULL;
James Morris7cae7e22006-03-22 00:09:22 -0800230 kmem_cache_free(sel_inode_cache, isec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
233static int file_alloc_security(struct file *file)
234{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 struct file_security_struct *fsec;
David Howells275bb412008-11-14 10:39:19 +1100236 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Stephen Smalley26d2a4b2006-02-01 03:05:55 -0800238 fsec = kzalloc(sizeof(struct file_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (!fsec)
240 return -ENOMEM;
241
David Howells275bb412008-11-14 10:39:19 +1100242 fsec->sid = sid;
243 fsec->fown_sid = sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 file->f_security = fsec;
245
246 return 0;
247}
248
249static void file_free_security(struct file *file)
250{
251 struct file_security_struct *fsec = file->f_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 file->f_security = NULL;
253 kfree(fsec);
254}
255
256static int superblock_alloc_security(struct super_block *sb)
257{
258 struct superblock_security_struct *sbsec;
259
James Morris89d155e2005-10-30 14:59:21 -0800260 sbsec = kzalloc(sizeof(struct superblock_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!sbsec)
262 return -ENOMEM;
263
Eric Parisbc7e9822006-09-25 23:32:02 -0700264 mutex_init(&sbsec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 INIT_LIST_HEAD(&sbsec->isec_head);
266 spin_lock_init(&sbsec->isec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 sbsec->sb = sb;
268 sbsec->sid = SECINITSID_UNLABELED;
269 sbsec->def_sid = SECINITSID_FILE;
Eric Parisc312feb2006-07-10 04:43:53 -0700270 sbsec->mntpoint_sid = SECINITSID_UNLABELED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 sb->s_security = sbsec;
272
273 return 0;
274}
275
276static void superblock_free_security(struct super_block *sb)
277{
278 struct superblock_security_struct *sbsec = sb->s_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 sb->s_security = NULL;
280 kfree(sbsec);
281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/* The file system's label must be initialized prior to use. */
284
Stephen Hemminger634a5392010-03-04 21:59:03 -0800285static const char *labeling_behaviors[6] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 "uses xattr",
287 "uses transition SIDs",
288 "uses task SIDs",
289 "uses genfs_contexts",
290 "not configured for labeling",
291 "uses mountpoint labeling",
292};
293
294static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dentry);
295
296static inline int inode_doinit(struct inode *inode)
297{
298 return inode_doinit_with_dentry(inode, NULL);
299}
300
301enum {
Eric Paris31e87932007-09-19 17:19:12 -0400302 Opt_error = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 Opt_context = 1,
304 Opt_fscontext = 2,
Eric Parisc9180a52007-11-30 13:00:35 -0500305 Opt_defcontext = 3,
306 Opt_rootcontext = 4,
David P. Quigley11689d42009-01-16 09:22:03 -0500307 Opt_labelsupport = 5,
Eric Parisd355987f2012-08-24 15:58:53 -0400308 Opt_nextmntopt = 6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309};
310
Eric Parisd355987f2012-08-24 15:58:53 -0400311#define NUM_SEL_MNT_OPTS (Opt_nextmntopt - 1)
312
Steven Whitehousea447c092008-10-13 10:46:57 +0100313static const match_table_t tokens = {
Eric Paris832cbd92008-04-01 13:24:09 -0400314 {Opt_context, CONTEXT_STR "%s"},
315 {Opt_fscontext, FSCONTEXT_STR "%s"},
316 {Opt_defcontext, DEFCONTEXT_STR "%s"},
317 {Opt_rootcontext, ROOTCONTEXT_STR "%s"},
David P. Quigley11689d42009-01-16 09:22:03 -0500318 {Opt_labelsupport, LABELSUPP_STR},
Eric Paris31e87932007-09-19 17:19:12 -0400319 {Opt_error, NULL},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
322#define SEL_MOUNT_FAIL_MSG "SELinux: duplicate or incompatible mount options\n"
323
Eric Parisc312feb2006-07-10 04:43:53 -0700324static int may_context_mount_sb_relabel(u32 sid,
325 struct superblock_security_struct *sbsec,
David Howells275bb412008-11-14 10:39:19 +1100326 const struct cred *cred)
Eric Parisc312feb2006-07-10 04:43:53 -0700327{
David Howells275bb412008-11-14 10:39:19 +1100328 const struct task_security_struct *tsec = cred->security;
Eric Parisc312feb2006-07-10 04:43:53 -0700329 int rc;
330
331 rc = avc_has_perm(tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM,
332 FILESYSTEM__RELABELFROM, NULL);
333 if (rc)
334 return rc;
335
336 rc = avc_has_perm(tsec->sid, sid, SECCLASS_FILESYSTEM,
337 FILESYSTEM__RELABELTO, NULL);
338 return rc;
339}
340
Eric Paris08089252006-07-10 04:43:55 -0700341static int may_context_mount_inode_relabel(u32 sid,
342 struct superblock_security_struct *sbsec,
David Howells275bb412008-11-14 10:39:19 +1100343 const struct cred *cred)
Eric Paris08089252006-07-10 04:43:55 -0700344{
David Howells275bb412008-11-14 10:39:19 +1100345 const struct task_security_struct *tsec = cred->security;
Eric Paris08089252006-07-10 04:43:55 -0700346 int rc;
347 rc = avc_has_perm(tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM,
348 FILESYSTEM__RELABELFROM, NULL);
349 if (rc)
350 return rc;
351
352 rc = avc_has_perm(sid, sbsec->sid, SECCLASS_FILESYSTEM,
353 FILESYSTEM__ASSOCIATE, NULL);
354 return rc;
355}
356
Eric Parisc9180a52007-11-30 13:00:35 -0500357static int sb_finish_set_opts(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 struct superblock_security_struct *sbsec = sb->s_security;
360 struct dentry *root = sb->s_root;
Eric Parisc9180a52007-11-30 13:00:35 -0500361 struct inode *root_inode = root->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 int rc = 0;
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (sbsec->behavior == SECURITY_FS_USE_XATTR) {
365 /* Make sure that the xattr handler exists and that no
366 error other than -ENODATA is returned by getxattr on
367 the root directory. -ENODATA is ok, as this may be
368 the first boot of the SELinux kernel before we have
369 assigned xattr values to the filesystem. */
Eric Parisc9180a52007-11-30 13:00:35 -0500370 if (!root_inode->i_op->getxattr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 printk(KERN_WARNING "SELinux: (dev %s, type %s) has no "
372 "xattr support\n", sb->s_id, sb->s_type->name);
373 rc = -EOPNOTSUPP;
374 goto out;
375 }
Eric Parisc9180a52007-11-30 13:00:35 -0500376 rc = root_inode->i_op->getxattr(root, XATTR_NAME_SELINUX, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (rc < 0 && rc != -ENODATA) {
378 if (rc == -EOPNOTSUPP)
379 printk(KERN_WARNING "SELinux: (dev %s, type "
380 "%s) has no security xattr handler\n",
381 sb->s_id, sb->s_type->name);
382 else
383 printk(KERN_WARNING "SELinux: (dev %s, type "
384 "%s) getxattr errno %d\n", sb->s_id,
385 sb->s_type->name, -rc);
386 goto out;
387 }
388 }
389
Eric Parisc9180a52007-11-30 13:00:35 -0500390 if (sbsec->behavior > ARRAY_SIZE(labeling_behaviors))
Eric Parisfadcdb42007-02-22 18:11:31 -0500391 printk(KERN_ERR "SELinux: initialized (dev %s, type %s), unknown behavior\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 sb->s_id, sb->s_type->name);
Eric Parisc9180a52007-11-30 13:00:35 -0500393 else
Eric Parisfadcdb42007-02-22 18:11:31 -0500394 printk(KERN_DEBUG "SELinux: initialized (dev %s, type %s), %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 sb->s_id, sb->s_type->name,
396 labeling_behaviors[sbsec->behavior-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Eric Pariseadcabc2012-08-24 15:59:14 -0400398 sbsec->flags |= SE_SBINITIALIZED;
399 if (sbsec->behavior == SECURITY_FS_USE_XATTR ||
400 sbsec->behavior == SECURITY_FS_USE_TRANS ||
401 sbsec->behavior == SECURITY_FS_USE_TASK)
402 sbsec->flags |= SBLABEL_MNT;
David P. Quigley11689d42009-01-16 09:22:03 -0500403
David P. Quigleyddd29ec2009-09-09 14:25:37 -0400404 /* Special handling for sysfs. Is genfs but also has setxattr handler*/
405 if (strncmp(sb->s_type->name, "sysfs", sizeof("sysfs")) == 0)
Eric Paris12f348b2012-10-09 10:56:25 -0400406 sbsec->flags |= SBLABEL_MNT;
David P. Quigleyddd29ec2009-09-09 14:25:37 -0400407
Stephen Smalley5c73fce2013-07-23 17:38:41 -0400408 /*
409 * Special handling for rootfs. Is genfs but supports
410 * setting SELinux context on in-core inodes.
411 */
412 if (strncmp(sb->s_type->name, "rootfs", sizeof("rootfs")) == 0)
Eric Paris12f348b2012-10-09 10:56:25 -0400413 sbsec->flags |= SBLABEL_MNT;
Stephen Smalley5c73fce2013-07-23 17:38:41 -0400414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* Initialize the root inode. */
Eric Parisc9180a52007-11-30 13:00:35 -0500416 rc = inode_doinit_with_dentry(root_inode, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /* Initialize any other inodes associated with the superblock, e.g.
419 inodes created prior to initial policy load or inodes created
420 during get_sb by a pseudo filesystem that directly
421 populates itself. */
422 spin_lock(&sbsec->isec_lock);
423next_inode:
424 if (!list_empty(&sbsec->isec_head)) {
425 struct inode_security_struct *isec =
426 list_entry(sbsec->isec_head.next,
Eric Parisc9180a52007-11-30 13:00:35 -0500427 struct inode_security_struct, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct inode *inode = isec->inode;
429 spin_unlock(&sbsec->isec_lock);
430 inode = igrab(inode);
431 if (inode) {
Eric Parisc9180a52007-11-30 13:00:35 -0500432 if (!IS_PRIVATE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 inode_doinit(inode);
434 iput(inode);
435 }
436 spin_lock(&sbsec->isec_lock);
437 list_del_init(&isec->list);
438 goto next_inode;
439 }
440 spin_unlock(&sbsec->isec_lock);
441out:
Eric Parisc9180a52007-11-30 13:00:35 -0500442 return rc;
443}
444
445/*
446 * This function should allow an FS to ask what it's mount security
447 * options were so it can use those later for submounts, displaying
448 * mount options, or whatever.
449 */
450static int selinux_get_mnt_opts(const struct super_block *sb,
Eric Parise0007522008-03-05 10:31:54 -0500451 struct security_mnt_opts *opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500452{
453 int rc = 0, i;
454 struct superblock_security_struct *sbsec = sb->s_security;
455 char *context = NULL;
456 u32 len;
457 char tmp;
458
Eric Parise0007522008-03-05 10:31:54 -0500459 security_init_mnt_opts(opts);
Eric Parisc9180a52007-11-30 13:00:35 -0500460
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500461 if (!(sbsec->flags & SE_SBINITIALIZED))
Eric Parisc9180a52007-11-30 13:00:35 -0500462 return -EINVAL;
463
464 if (!ss_initialized)
465 return -EINVAL;
466
Eric Parisaf8e50c2012-08-24 15:59:00 -0400467 /* make sure we always check enough bits to cover the mask */
468 BUILD_BUG_ON(SE_MNTMASK >= (1 << NUM_SEL_MNT_OPTS));
469
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500470 tmp = sbsec->flags & SE_MNTMASK;
Eric Parisc9180a52007-11-30 13:00:35 -0500471 /* count the number of mount options for this sb */
Eric Parisaf8e50c2012-08-24 15:59:00 -0400472 for (i = 0; i < NUM_SEL_MNT_OPTS; i++) {
Eric Parisc9180a52007-11-30 13:00:35 -0500473 if (tmp & 0x01)
Eric Parise0007522008-03-05 10:31:54 -0500474 opts->num_mnt_opts++;
Eric Parisc9180a52007-11-30 13:00:35 -0500475 tmp >>= 1;
476 }
David P. Quigley11689d42009-01-16 09:22:03 -0500477 /* Check if the Label support flag is set */
Eric Paris12f348b2012-10-09 10:56:25 -0400478 if (sbsec->flags & SBLABEL_MNT)
David P. Quigley11689d42009-01-16 09:22:03 -0500479 opts->num_mnt_opts++;
Eric Parisc9180a52007-11-30 13:00:35 -0500480
Eric Parise0007522008-03-05 10:31:54 -0500481 opts->mnt_opts = kcalloc(opts->num_mnt_opts, sizeof(char *), GFP_ATOMIC);
482 if (!opts->mnt_opts) {
Eric Parisc9180a52007-11-30 13:00:35 -0500483 rc = -ENOMEM;
484 goto out_free;
485 }
486
Eric Parise0007522008-03-05 10:31:54 -0500487 opts->mnt_opts_flags = kcalloc(opts->num_mnt_opts, sizeof(int), GFP_ATOMIC);
488 if (!opts->mnt_opts_flags) {
Eric Parisc9180a52007-11-30 13:00:35 -0500489 rc = -ENOMEM;
490 goto out_free;
491 }
492
493 i = 0;
494 if (sbsec->flags & FSCONTEXT_MNT) {
495 rc = security_sid_to_context(sbsec->sid, &context, &len);
496 if (rc)
497 goto out_free;
Eric Parise0007522008-03-05 10:31:54 -0500498 opts->mnt_opts[i] = context;
499 opts->mnt_opts_flags[i++] = FSCONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500500 }
501 if (sbsec->flags & CONTEXT_MNT) {
502 rc = security_sid_to_context(sbsec->mntpoint_sid, &context, &len);
503 if (rc)
504 goto out_free;
Eric Parise0007522008-03-05 10:31:54 -0500505 opts->mnt_opts[i] = context;
506 opts->mnt_opts_flags[i++] = CONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500507 }
508 if (sbsec->flags & DEFCONTEXT_MNT) {
509 rc = security_sid_to_context(sbsec->def_sid, &context, &len);
510 if (rc)
511 goto out_free;
Eric Parise0007522008-03-05 10:31:54 -0500512 opts->mnt_opts[i] = context;
513 opts->mnt_opts_flags[i++] = DEFCONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500514 }
515 if (sbsec->flags & ROOTCONTEXT_MNT) {
516 struct inode *root = sbsec->sb->s_root->d_inode;
517 struct inode_security_struct *isec = root->i_security;
518
519 rc = security_sid_to_context(isec->sid, &context, &len);
520 if (rc)
521 goto out_free;
Eric Parise0007522008-03-05 10:31:54 -0500522 opts->mnt_opts[i] = context;
523 opts->mnt_opts_flags[i++] = ROOTCONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500524 }
Eric Paris12f348b2012-10-09 10:56:25 -0400525 if (sbsec->flags & SBLABEL_MNT) {
David P. Quigley11689d42009-01-16 09:22:03 -0500526 opts->mnt_opts[i] = NULL;
Eric Paris12f348b2012-10-09 10:56:25 -0400527 opts->mnt_opts_flags[i++] = SBLABEL_MNT;
David P. Quigley11689d42009-01-16 09:22:03 -0500528 }
Eric Parisc9180a52007-11-30 13:00:35 -0500529
Eric Parise0007522008-03-05 10:31:54 -0500530 BUG_ON(i != opts->num_mnt_opts);
Eric Parisc9180a52007-11-30 13:00:35 -0500531
532 return 0;
533
534out_free:
Eric Parise0007522008-03-05 10:31:54 -0500535 security_free_mnt_opts(opts);
Eric Parisc9180a52007-11-30 13:00:35 -0500536 return rc;
537}
538
539static int bad_option(struct superblock_security_struct *sbsec, char flag,
540 u32 old_sid, u32 new_sid)
541{
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500542 char mnt_flags = sbsec->flags & SE_MNTMASK;
543
Eric Parisc9180a52007-11-30 13:00:35 -0500544 /* check if the old mount command had the same options */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500545 if (sbsec->flags & SE_SBINITIALIZED)
Eric Parisc9180a52007-11-30 13:00:35 -0500546 if (!(sbsec->flags & flag) ||
547 (old_sid != new_sid))
548 return 1;
549
550 /* check if we were passed the same options twice,
551 * aka someone passed context=a,context=b
552 */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500553 if (!(sbsec->flags & SE_SBINITIALIZED))
554 if (mnt_flags & flag)
Eric Parisc9180a52007-11-30 13:00:35 -0500555 return 1;
556 return 0;
557}
Eric Parise0007522008-03-05 10:31:54 -0500558
Eric Parisc9180a52007-11-30 13:00:35 -0500559/*
560 * Allow filesystems with binary mount data to explicitly set mount point
561 * labeling information.
562 */
Eric Parise0007522008-03-05 10:31:54 -0500563static int selinux_set_mnt_opts(struct super_block *sb,
564 struct security_mnt_opts *opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500565{
David Howells275bb412008-11-14 10:39:19 +1100566 const struct cred *cred = current_cred();
Eric Parisc9180a52007-11-30 13:00:35 -0500567 int rc = 0, i;
Eric Parisc9180a52007-11-30 13:00:35 -0500568 struct superblock_security_struct *sbsec = sb->s_security;
569 const char *name = sb->s_type->name;
James Morris089be432008-07-15 18:32:49 +1000570 struct inode *inode = sbsec->sb->s_root->d_inode;
571 struct inode_security_struct *root_isec = inode->i_security;
Eric Parisc9180a52007-11-30 13:00:35 -0500572 u32 fscontext_sid = 0, context_sid = 0, rootcontext_sid = 0;
573 u32 defcontext_sid = 0;
Eric Parise0007522008-03-05 10:31:54 -0500574 char **mount_options = opts->mnt_opts;
575 int *flags = opts->mnt_opts_flags;
576 int num_opts = opts->num_mnt_opts;
Eric Parisc9180a52007-11-30 13:00:35 -0500577
578 mutex_lock(&sbsec->lock);
579
580 if (!ss_initialized) {
581 if (!num_opts) {
582 /* Defer initialization until selinux_complete_init,
583 after the initial policy is loaded and the security
584 server is ready to handle calls. */
Eric Parisc9180a52007-11-30 13:00:35 -0500585 goto out;
586 }
587 rc = -EINVAL;
Eric Paris744ba352008-04-17 11:52:44 -0400588 printk(KERN_WARNING "SELinux: Unable to set superblock options "
589 "before the security server is initialized\n");
Eric Parisc9180a52007-11-30 13:00:35 -0500590 goto out;
591 }
592
593 /*
Eric Parise0007522008-03-05 10:31:54 -0500594 * Binary mount data FS will come through this function twice. Once
595 * from an explicit call and once from the generic calls from the vfs.
596 * Since the generic VFS calls will not contain any security mount data
597 * we need to skip the double mount verification.
598 *
599 * This does open a hole in which we will not notice if the first
600 * mount using this sb set explict options and a second mount using
601 * this sb does not set any security options. (The first options
602 * will be used for both mounts)
603 */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500604 if ((sbsec->flags & SE_SBINITIALIZED) && (sb->s_type->fs_flags & FS_BINARY_MOUNTDATA)
Eric Parise0007522008-03-05 10:31:54 -0500605 && (num_opts == 0))
Eric Parisf5269712008-05-14 11:27:45 -0400606 goto out;
Eric Parise0007522008-03-05 10:31:54 -0500607
608 /*
Eric Parisc9180a52007-11-30 13:00:35 -0500609 * parse the mount options, check if they are valid sids.
610 * also check if someone is trying to mount the same sb more
611 * than once with different security options.
612 */
613 for (i = 0; i < num_opts; i++) {
614 u32 sid;
David P. Quigley11689d42009-01-16 09:22:03 -0500615
Eric Paris12f348b2012-10-09 10:56:25 -0400616 if (flags[i] == SBLABEL_MNT)
David P. Quigley11689d42009-01-16 09:22:03 -0500617 continue;
Eric Parisc9180a52007-11-30 13:00:35 -0500618 rc = security_context_to_sid(mount_options[i],
619 strlen(mount_options[i]), &sid);
620 if (rc) {
621 printk(KERN_WARNING "SELinux: security_context_to_sid"
622 "(%s) failed for (dev %s, type %s) errno=%d\n",
623 mount_options[i], sb->s_id, name, rc);
624 goto out;
625 }
626 switch (flags[i]) {
627 case FSCONTEXT_MNT:
628 fscontext_sid = sid;
629
630 if (bad_option(sbsec, FSCONTEXT_MNT, sbsec->sid,
631 fscontext_sid))
632 goto out_double_mount;
633
634 sbsec->flags |= FSCONTEXT_MNT;
635 break;
636 case CONTEXT_MNT:
637 context_sid = sid;
638
639 if (bad_option(sbsec, CONTEXT_MNT, sbsec->mntpoint_sid,
640 context_sid))
641 goto out_double_mount;
642
643 sbsec->flags |= CONTEXT_MNT;
644 break;
645 case ROOTCONTEXT_MNT:
646 rootcontext_sid = sid;
647
648 if (bad_option(sbsec, ROOTCONTEXT_MNT, root_isec->sid,
649 rootcontext_sid))
650 goto out_double_mount;
651
652 sbsec->flags |= ROOTCONTEXT_MNT;
653
654 break;
655 case DEFCONTEXT_MNT:
656 defcontext_sid = sid;
657
658 if (bad_option(sbsec, DEFCONTEXT_MNT, sbsec->def_sid,
659 defcontext_sid))
660 goto out_double_mount;
661
662 sbsec->flags |= DEFCONTEXT_MNT;
663
664 break;
665 default:
666 rc = -EINVAL;
667 goto out;
668 }
669 }
670
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500671 if (sbsec->flags & SE_SBINITIALIZED) {
Eric Parisc9180a52007-11-30 13:00:35 -0500672 /* previously mounted with options, but not on this attempt? */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500673 if ((sbsec->flags & SE_MNTMASK) && !num_opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500674 goto out_double_mount;
675 rc = 0;
676 goto out;
677 }
678
James Morris089be432008-07-15 18:32:49 +1000679 if (strcmp(sb->s_type->name, "proc") == 0)
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500680 sbsec->flags |= SE_SBPROC;
Eric Parisc9180a52007-11-30 13:00:35 -0500681
682 /* Determine the labeling behavior to use for this filesystem type. */
Eric Paris40d3d0b2012-08-24 15:58:45 -0400683 rc = security_fs_use(sb->s_type->name, &sbsec->behavior, &sbsec->sid);
Eric Parisc9180a52007-11-30 13:00:35 -0500684 if (rc) {
685 printk(KERN_WARNING "%s: security_fs_use(%s) returned %d\n",
James Morris089be432008-07-15 18:32:49 +1000686 __func__, sb->s_type->name, rc);
Eric Parisc9180a52007-11-30 13:00:35 -0500687 goto out;
688 }
689
690 /* sets the context of the superblock for the fs being mounted. */
691 if (fscontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100692 rc = may_context_mount_sb_relabel(fscontext_sid, sbsec, cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500693 if (rc)
694 goto out;
695
696 sbsec->sid = fscontext_sid;
697 }
698
699 /*
700 * Switch to using mount point labeling behavior.
701 * sets the label used on all file below the mountpoint, and will set
702 * the superblock context if not already set.
703 */
704 if (context_sid) {
705 if (!fscontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100706 rc = may_context_mount_sb_relabel(context_sid, sbsec,
707 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500708 if (rc)
709 goto out;
710 sbsec->sid = context_sid;
711 } else {
David Howells275bb412008-11-14 10:39:19 +1100712 rc = may_context_mount_inode_relabel(context_sid, sbsec,
713 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500714 if (rc)
715 goto out;
716 }
717 if (!rootcontext_sid)
718 rootcontext_sid = context_sid;
719
720 sbsec->mntpoint_sid = context_sid;
721 sbsec->behavior = SECURITY_FS_USE_MNTPOINT;
722 }
723
724 if (rootcontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100725 rc = may_context_mount_inode_relabel(rootcontext_sid, sbsec,
726 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500727 if (rc)
728 goto out;
729
730 root_isec->sid = rootcontext_sid;
731 root_isec->initialized = 1;
732 }
733
734 if (defcontext_sid) {
735 if (sbsec->behavior != SECURITY_FS_USE_XATTR) {
736 rc = -EINVAL;
737 printk(KERN_WARNING "SELinux: defcontext option is "
738 "invalid for this filesystem type\n");
739 goto out;
740 }
741
742 if (defcontext_sid != sbsec->def_sid) {
743 rc = may_context_mount_inode_relabel(defcontext_sid,
David Howells275bb412008-11-14 10:39:19 +1100744 sbsec, cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500745 if (rc)
746 goto out;
747 }
748
749 sbsec->def_sid = defcontext_sid;
750 }
751
752 rc = sb_finish_set_opts(sb);
753out:
Eric Parisbc7e9822006-09-25 23:32:02 -0700754 mutex_unlock(&sbsec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return rc;
Eric Parisc9180a52007-11-30 13:00:35 -0500756out_double_mount:
757 rc = -EINVAL;
758 printk(KERN_WARNING "SELinux: mount invalid. Same superblock, different "
759 "security settings for (dev %s, type %s)\n", sb->s_id, name);
760 goto out;
761}
762
Jeff Layton094f7b62013-04-01 08:14:24 -0400763static int selinux_cmp_sb_context(const struct super_block *oldsb,
764 const struct super_block *newsb)
765{
766 struct superblock_security_struct *old = oldsb->s_security;
767 struct superblock_security_struct *new = newsb->s_security;
768 char oldflags = old->flags & SE_MNTMASK;
769 char newflags = new->flags & SE_MNTMASK;
770
771 if (oldflags != newflags)
772 goto mismatch;
773 if ((oldflags & FSCONTEXT_MNT) && old->sid != new->sid)
774 goto mismatch;
775 if ((oldflags & CONTEXT_MNT) && old->mntpoint_sid != new->mntpoint_sid)
776 goto mismatch;
777 if ((oldflags & DEFCONTEXT_MNT) && old->def_sid != new->def_sid)
778 goto mismatch;
779 if (oldflags & ROOTCONTEXT_MNT) {
780 struct inode_security_struct *oldroot = oldsb->s_root->d_inode->i_security;
781 struct inode_security_struct *newroot = newsb->s_root->d_inode->i_security;
782 if (oldroot->sid != newroot->sid)
783 goto mismatch;
784 }
785 return 0;
786mismatch:
787 printk(KERN_WARNING "SELinux: mount invalid. Same superblock, "
788 "different security settings for (dev %s, "
789 "type %s)\n", newsb->s_id, newsb->s_type->name);
790 return -EBUSY;
791}
792
793static int selinux_sb_clone_mnt_opts(const struct super_block *oldsb,
Eric Parisc9180a52007-11-30 13:00:35 -0500794 struct super_block *newsb)
795{
796 const struct superblock_security_struct *oldsbsec = oldsb->s_security;
797 struct superblock_security_struct *newsbsec = newsb->s_security;
798
799 int set_fscontext = (oldsbsec->flags & FSCONTEXT_MNT);
800 int set_context = (oldsbsec->flags & CONTEXT_MNT);
801 int set_rootcontext = (oldsbsec->flags & ROOTCONTEXT_MNT);
802
Eric Paris0f5e6422008-04-21 16:24:11 -0400803 /*
804 * if the parent was able to be mounted it clearly had no special lsm
Al Viroe8c26252010-03-23 06:36:54 -0400805 * mount options. thus we can safely deal with this superblock later
Eric Paris0f5e6422008-04-21 16:24:11 -0400806 */
Al Viroe8c26252010-03-23 06:36:54 -0400807 if (!ss_initialized)
Jeff Layton094f7b62013-04-01 08:14:24 -0400808 return 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500809
Eric Parisc9180a52007-11-30 13:00:35 -0500810 /* how can we clone if the old one wasn't set up?? */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500811 BUG_ON(!(oldsbsec->flags & SE_SBINITIALIZED));
Eric Parisc9180a52007-11-30 13:00:35 -0500812
Jeff Layton094f7b62013-04-01 08:14:24 -0400813 /* if fs is reusing a sb, make sure that the contexts match */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500814 if (newsbsec->flags & SE_SBINITIALIZED)
Jeff Layton094f7b62013-04-01 08:14:24 -0400815 return selinux_cmp_sb_context(oldsb, newsb);
Eric Paris5a552612008-04-09 14:08:35 -0400816
Eric Parisc9180a52007-11-30 13:00:35 -0500817 mutex_lock(&newsbsec->lock);
818
819 newsbsec->flags = oldsbsec->flags;
820
821 newsbsec->sid = oldsbsec->sid;
822 newsbsec->def_sid = oldsbsec->def_sid;
823 newsbsec->behavior = oldsbsec->behavior;
824
825 if (set_context) {
826 u32 sid = oldsbsec->mntpoint_sid;
827
828 if (!set_fscontext)
829 newsbsec->sid = sid;
830 if (!set_rootcontext) {
831 struct inode *newinode = newsb->s_root->d_inode;
832 struct inode_security_struct *newisec = newinode->i_security;
833 newisec->sid = sid;
834 }
835 newsbsec->mntpoint_sid = sid;
836 }
837 if (set_rootcontext) {
838 const struct inode *oldinode = oldsb->s_root->d_inode;
839 const struct inode_security_struct *oldisec = oldinode->i_security;
840 struct inode *newinode = newsb->s_root->d_inode;
841 struct inode_security_struct *newisec = newinode->i_security;
842
843 newisec->sid = oldisec->sid;
844 }
845
846 sb_finish_set_opts(newsb);
847 mutex_unlock(&newsbsec->lock);
Jeff Layton094f7b62013-04-01 08:14:24 -0400848 return 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500849}
850
Adrian Bunk2e1479d2008-03-17 22:29:23 +0200851static int selinux_parse_opts_str(char *options,
852 struct security_mnt_opts *opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500853{
Eric Parise0007522008-03-05 10:31:54 -0500854 char *p;
Eric Parisc9180a52007-11-30 13:00:35 -0500855 char *context = NULL, *defcontext = NULL;
856 char *fscontext = NULL, *rootcontext = NULL;
Eric Parise0007522008-03-05 10:31:54 -0500857 int rc, num_mnt_opts = 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500858
Eric Parise0007522008-03-05 10:31:54 -0500859 opts->num_mnt_opts = 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500860
861 /* Standard string-based options. */
862 while ((p = strsep(&options, "|")) != NULL) {
863 int token;
864 substring_t args[MAX_OPT_ARGS];
865
866 if (!*p)
867 continue;
868
869 token = match_token(p, tokens, args);
870
871 switch (token) {
872 case Opt_context:
873 if (context || defcontext) {
874 rc = -EINVAL;
875 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG);
876 goto out_err;
877 }
878 context = match_strdup(&args[0]);
879 if (!context) {
880 rc = -ENOMEM;
881 goto out_err;
882 }
883 break;
884
885 case Opt_fscontext:
886 if (fscontext) {
887 rc = -EINVAL;
888 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG);
889 goto out_err;
890 }
891 fscontext = match_strdup(&args[0]);
892 if (!fscontext) {
893 rc = -ENOMEM;
894 goto out_err;
895 }
896 break;
897
898 case Opt_rootcontext:
899 if (rootcontext) {
900 rc = -EINVAL;
901 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG);
902 goto out_err;
903 }
904 rootcontext = match_strdup(&args[0]);
905 if (!rootcontext) {
906 rc = -ENOMEM;
907 goto out_err;
908 }
909 break;
910
911 case Opt_defcontext:
912 if (context || defcontext) {
913 rc = -EINVAL;
914 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG);
915 goto out_err;
916 }
917 defcontext = match_strdup(&args[0]);
918 if (!defcontext) {
919 rc = -ENOMEM;
920 goto out_err;
921 }
922 break;
David P. Quigley11689d42009-01-16 09:22:03 -0500923 case Opt_labelsupport:
924 break;
Eric Parisc9180a52007-11-30 13:00:35 -0500925 default:
926 rc = -EINVAL;
927 printk(KERN_WARNING "SELinux: unknown mount option\n");
928 goto out_err;
929
930 }
931 }
932
Eric Parise0007522008-03-05 10:31:54 -0500933 rc = -ENOMEM;
934 opts->mnt_opts = kcalloc(NUM_SEL_MNT_OPTS, sizeof(char *), GFP_ATOMIC);
935 if (!opts->mnt_opts)
936 goto out_err;
937
938 opts->mnt_opts_flags = kcalloc(NUM_SEL_MNT_OPTS, sizeof(int), GFP_ATOMIC);
939 if (!opts->mnt_opts_flags) {
940 kfree(opts->mnt_opts);
941 goto out_err;
Eric Parisc9180a52007-11-30 13:00:35 -0500942 }
943
Eric Parise0007522008-03-05 10:31:54 -0500944 if (fscontext) {
945 opts->mnt_opts[num_mnt_opts] = fscontext;
946 opts->mnt_opts_flags[num_mnt_opts++] = FSCONTEXT_MNT;
947 }
948 if (context) {
949 opts->mnt_opts[num_mnt_opts] = context;
950 opts->mnt_opts_flags[num_mnt_opts++] = CONTEXT_MNT;
951 }
952 if (rootcontext) {
953 opts->mnt_opts[num_mnt_opts] = rootcontext;
954 opts->mnt_opts_flags[num_mnt_opts++] = ROOTCONTEXT_MNT;
955 }
956 if (defcontext) {
957 opts->mnt_opts[num_mnt_opts] = defcontext;
958 opts->mnt_opts_flags[num_mnt_opts++] = DEFCONTEXT_MNT;
959 }
960
961 opts->num_mnt_opts = num_mnt_opts;
962 return 0;
963
Eric Parisc9180a52007-11-30 13:00:35 -0500964out_err:
965 kfree(context);
966 kfree(defcontext);
967 kfree(fscontext);
968 kfree(rootcontext);
969 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
Eric Parise0007522008-03-05 10:31:54 -0500971/*
972 * string mount options parsing and call set the sbsec
973 */
974static int superblock_doinit(struct super_block *sb, void *data)
975{
976 int rc = 0;
977 char *options = data;
978 struct security_mnt_opts opts;
979
980 security_init_mnt_opts(&opts);
981
982 if (!data)
983 goto out;
984
985 BUG_ON(sb->s_type->fs_flags & FS_BINARY_MOUNTDATA);
986
987 rc = selinux_parse_opts_str(options, &opts);
988 if (rc)
989 goto out_err;
990
991out:
992 rc = selinux_set_mnt_opts(sb, &opts);
993
994out_err:
995 security_free_mnt_opts(&opts);
996 return rc;
997}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Adrian Bunk3583a712008-07-22 20:21:23 +0300999static void selinux_write_opts(struct seq_file *m,
1000 struct security_mnt_opts *opts)
Eric Paris2069f452008-07-04 09:47:13 +10001001{
1002 int i;
1003 char *prefix;
1004
1005 for (i = 0; i < opts->num_mnt_opts; i++) {
David P. Quigley11689d42009-01-16 09:22:03 -05001006 char *has_comma;
1007
1008 if (opts->mnt_opts[i])
1009 has_comma = strchr(opts->mnt_opts[i], ',');
1010 else
1011 has_comma = NULL;
Eric Paris2069f452008-07-04 09:47:13 +10001012
1013 switch (opts->mnt_opts_flags[i]) {
1014 case CONTEXT_MNT:
1015 prefix = CONTEXT_STR;
1016 break;
1017 case FSCONTEXT_MNT:
1018 prefix = FSCONTEXT_STR;
1019 break;
1020 case ROOTCONTEXT_MNT:
1021 prefix = ROOTCONTEXT_STR;
1022 break;
1023 case DEFCONTEXT_MNT:
1024 prefix = DEFCONTEXT_STR;
1025 break;
Eric Paris12f348b2012-10-09 10:56:25 -04001026 case SBLABEL_MNT:
David P. Quigley11689d42009-01-16 09:22:03 -05001027 seq_putc(m, ',');
1028 seq_puts(m, LABELSUPP_STR);
1029 continue;
Eric Paris2069f452008-07-04 09:47:13 +10001030 default:
1031 BUG();
Eric Parisa35c6c832011-04-20 10:21:28 -04001032 return;
Eric Paris2069f452008-07-04 09:47:13 +10001033 };
1034 /* we need a comma before each option */
1035 seq_putc(m, ',');
1036 seq_puts(m, prefix);
1037 if (has_comma)
1038 seq_putc(m, '\"');
1039 seq_puts(m, opts->mnt_opts[i]);
1040 if (has_comma)
1041 seq_putc(m, '\"');
1042 }
1043}
1044
1045static int selinux_sb_show_options(struct seq_file *m, struct super_block *sb)
1046{
1047 struct security_mnt_opts opts;
1048 int rc;
1049
1050 rc = selinux_get_mnt_opts(sb, &opts);
Eric Paris383795c2008-07-29 17:07:26 -04001051 if (rc) {
1052 /* before policy load we may get EINVAL, don't show anything */
1053 if (rc == -EINVAL)
1054 rc = 0;
Eric Paris2069f452008-07-04 09:47:13 +10001055 return rc;
Eric Paris383795c2008-07-29 17:07:26 -04001056 }
Eric Paris2069f452008-07-04 09:47:13 +10001057
1058 selinux_write_opts(m, &opts);
1059
1060 security_free_mnt_opts(&opts);
1061
1062 return rc;
1063}
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065static inline u16 inode_mode_to_security_class(umode_t mode)
1066{
1067 switch (mode & S_IFMT) {
1068 case S_IFSOCK:
1069 return SECCLASS_SOCK_FILE;
1070 case S_IFLNK:
1071 return SECCLASS_LNK_FILE;
1072 case S_IFREG:
1073 return SECCLASS_FILE;
1074 case S_IFBLK:
1075 return SECCLASS_BLK_FILE;
1076 case S_IFDIR:
1077 return SECCLASS_DIR;
1078 case S_IFCHR:
1079 return SECCLASS_CHR_FILE;
1080 case S_IFIFO:
1081 return SECCLASS_FIFO_FILE;
1082
1083 }
1084
1085 return SECCLASS_FILE;
1086}
1087
James Morris13402582005-09-30 14:24:34 -04001088static inline int default_protocol_stream(int protocol)
1089{
1090 return (protocol == IPPROTO_IP || protocol == IPPROTO_TCP);
1091}
1092
1093static inline int default_protocol_dgram(int protocol)
1094{
1095 return (protocol == IPPROTO_IP || protocol == IPPROTO_UDP);
1096}
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static inline u16 socket_type_to_security_class(int family, int type, int protocol)
1099{
1100 switch (family) {
1101 case PF_UNIX:
1102 switch (type) {
1103 case SOCK_STREAM:
1104 case SOCK_SEQPACKET:
1105 return SECCLASS_UNIX_STREAM_SOCKET;
1106 case SOCK_DGRAM:
1107 return SECCLASS_UNIX_DGRAM_SOCKET;
1108 }
1109 break;
1110 case PF_INET:
1111 case PF_INET6:
1112 switch (type) {
1113 case SOCK_STREAM:
James Morris13402582005-09-30 14:24:34 -04001114 if (default_protocol_stream(protocol))
1115 return SECCLASS_TCP_SOCKET;
1116 else
1117 return SECCLASS_RAWIP_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 case SOCK_DGRAM:
James Morris13402582005-09-30 14:24:34 -04001119 if (default_protocol_dgram(protocol))
1120 return SECCLASS_UDP_SOCKET;
1121 else
1122 return SECCLASS_RAWIP_SOCKET;
James Morris2ee92d42006-11-13 16:09:01 -08001123 case SOCK_DCCP:
1124 return SECCLASS_DCCP_SOCKET;
James Morris13402582005-09-30 14:24:34 -04001125 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return SECCLASS_RAWIP_SOCKET;
1127 }
1128 break;
1129 case PF_NETLINK:
1130 switch (protocol) {
1131 case NETLINK_ROUTE:
1132 return SECCLASS_NETLINK_ROUTE_SOCKET;
1133 case NETLINK_FIREWALL:
1134 return SECCLASS_NETLINK_FIREWALL_SOCKET;
Pavel Emelyanov7f1fb602011-12-06 07:56:43 +00001135 case NETLINK_SOCK_DIAG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 return SECCLASS_NETLINK_TCPDIAG_SOCKET;
1137 case NETLINK_NFLOG:
1138 return SECCLASS_NETLINK_NFLOG_SOCKET;
1139 case NETLINK_XFRM:
1140 return SECCLASS_NETLINK_XFRM_SOCKET;
1141 case NETLINK_SELINUX:
1142 return SECCLASS_NETLINK_SELINUX_SOCKET;
1143 case NETLINK_AUDIT:
1144 return SECCLASS_NETLINK_AUDIT_SOCKET;
1145 case NETLINK_IP6_FW:
1146 return SECCLASS_NETLINK_IP6FW_SOCKET;
1147 case NETLINK_DNRTMSG:
1148 return SECCLASS_NETLINK_DNRT_SOCKET;
James Morris0c9b7942005-04-16 15:24:13 -07001149 case NETLINK_KOBJECT_UEVENT:
1150 return SECCLASS_NETLINK_KOBJECT_UEVENT_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 default:
1152 return SECCLASS_NETLINK_SOCKET;
1153 }
1154 case PF_PACKET:
1155 return SECCLASS_PACKET_SOCKET;
1156 case PF_KEY:
1157 return SECCLASS_KEY_SOCKET;
Christopher J. PeBenito3e3ff152006-06-09 00:25:03 -07001158 case PF_APPLETALK:
1159 return SECCLASS_APPLETALK_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161
1162 return SECCLASS_SOCKET;
1163}
1164
1165#ifdef CONFIG_PROC_FS
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001166static int selinux_proc_get_sid(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 u16 tclass,
1168 u32 *sid)
1169{
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001170 int rc;
1171 char *buffer, *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Eric Paris828dfe12008-04-17 13:17:49 -04001173 buffer = (char *)__get_free_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (!buffer)
1175 return -ENOMEM;
1176
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001177 path = dentry_path_raw(dentry, buffer, PAGE_SIZE);
1178 if (IS_ERR(path))
1179 rc = PTR_ERR(path);
1180 else {
1181 /* each process gets a /proc/PID/ entry. Strip off the
1182 * PID part to get a valid selinux labeling.
1183 * e.g. /proc/1/net/rpc/nfs -> /net/rpc/nfs */
1184 while (path[1] >= '0' && path[1] <= '9') {
1185 path[1] = '/';
1186 path++;
1187 }
1188 rc = security_genfs_sid("proc", path, tclass, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 free_page((unsigned long)buffer);
1191 return rc;
1192}
1193#else
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001194static int selinux_proc_get_sid(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 u16 tclass,
1196 u32 *sid)
1197{
1198 return -EINVAL;
1199}
1200#endif
1201
1202/* The inode's security attributes must be initialized before first use. */
1203static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dentry)
1204{
1205 struct superblock_security_struct *sbsec = NULL;
1206 struct inode_security_struct *isec = inode->i_security;
1207 u32 sid;
1208 struct dentry *dentry;
1209#define INITCONTEXTLEN 255
1210 char *context = NULL;
1211 unsigned len = 0;
1212 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 if (isec->initialized)
1215 goto out;
1216
Eric Paris23970742006-09-25 23:32:01 -07001217 mutex_lock(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (isec->initialized)
Eric Paris23970742006-09-25 23:32:01 -07001219 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 sbsec = inode->i_sb->s_security;
David P. Quigley0d90a7e2009-01-16 09:22:02 -05001222 if (!(sbsec->flags & SE_SBINITIALIZED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 /* Defer initialization until selinux_complete_init,
1224 after the initial policy is loaded and the security
1225 server is ready to handle calls. */
1226 spin_lock(&sbsec->isec_lock);
1227 if (list_empty(&isec->list))
1228 list_add(&isec->list, &sbsec->isec_head);
1229 spin_unlock(&sbsec->isec_lock);
Eric Paris23970742006-09-25 23:32:01 -07001230 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232
1233 switch (sbsec->behavior) {
1234 case SECURITY_FS_USE_XATTR:
1235 if (!inode->i_op->getxattr) {
1236 isec->sid = sbsec->def_sid;
1237 break;
1238 }
1239
1240 /* Need a dentry, since the xattr API requires one.
1241 Life would be simpler if we could just pass the inode. */
1242 if (opt_dentry) {
1243 /* Called from d_instantiate or d_splice_alias. */
1244 dentry = dget(opt_dentry);
1245 } else {
1246 /* Called from selinux_complete_init, try to find a dentry. */
1247 dentry = d_find_alias(inode);
1248 }
1249 if (!dentry) {
Eric Parisdf7f54c2009-03-09 14:35:58 -04001250 /*
1251 * this is can be hit on boot when a file is accessed
1252 * before the policy is loaded. When we load policy we
1253 * may find inodes that have no dentry on the
1254 * sbsec->isec_head list. No reason to complain as these
1255 * will get fixed up the next time we go through
1256 * inode_doinit with a dentry, before these inodes could
1257 * be used again by userspace.
1258 */
Eric Paris23970742006-09-25 23:32:01 -07001259 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261
1262 len = INITCONTEXTLEN;
Eric Paris4cb912f2009-02-12 14:50:05 -05001263 context = kmalloc(len+1, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (!context) {
1265 rc = -ENOMEM;
1266 dput(dentry);
Eric Paris23970742006-09-25 23:32:01 -07001267 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
Eric Paris4cb912f2009-02-12 14:50:05 -05001269 context[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 rc = inode->i_op->getxattr(dentry, XATTR_NAME_SELINUX,
1271 context, len);
1272 if (rc == -ERANGE) {
James Morris314dabb2009-08-10 22:00:13 +10001273 kfree(context);
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 /* Need a larger buffer. Query for the right size. */
1276 rc = inode->i_op->getxattr(dentry, XATTR_NAME_SELINUX,
1277 NULL, 0);
1278 if (rc < 0) {
1279 dput(dentry);
Eric Paris23970742006-09-25 23:32:01 -07001280 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 len = rc;
Eric Paris4cb912f2009-02-12 14:50:05 -05001283 context = kmalloc(len+1, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (!context) {
1285 rc = -ENOMEM;
1286 dput(dentry);
Eric Paris23970742006-09-25 23:32:01 -07001287 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
Eric Paris4cb912f2009-02-12 14:50:05 -05001289 context[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 rc = inode->i_op->getxattr(dentry,
1291 XATTR_NAME_SELINUX,
1292 context, len);
1293 }
1294 dput(dentry);
1295 if (rc < 0) {
1296 if (rc != -ENODATA) {
Eric Paris744ba352008-04-17 11:52:44 -04001297 printk(KERN_WARNING "SELinux: %s: getxattr returned "
Harvey Harrisondd6f9532008-03-06 10:03:59 +11001298 "%d for dev=%s ino=%ld\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 -rc, inode->i_sb->s_id, inode->i_ino);
1300 kfree(context);
Eric Paris23970742006-09-25 23:32:01 -07001301 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303 /* Map ENODATA to the default file SID */
1304 sid = sbsec->def_sid;
1305 rc = 0;
1306 } else {
James Morrisf5c1d5b2005-07-28 01:07:37 -07001307 rc = security_context_to_sid_default(context, rc, &sid,
Stephen Smalley869ab512008-04-04 08:46:05 -04001308 sbsec->def_sid,
1309 GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (rc) {
Eric Paris4ba0a8a2009-02-12 15:01:10 -05001311 char *dev = inode->i_sb->s_id;
1312 unsigned long ino = inode->i_ino;
1313
1314 if (rc == -EINVAL) {
1315 if (printk_ratelimit())
1316 printk(KERN_NOTICE "SELinux: inode=%lu on dev=%s was found to have an invalid "
1317 "context=%s. This indicates you may need to relabel the inode or the "
1318 "filesystem in question.\n", ino, dev, context);
1319 } else {
1320 printk(KERN_WARNING "SELinux: %s: context_to_sid(%s) "
1321 "returned %d for dev=%s ino=%ld\n",
1322 __func__, context, -rc, dev, ino);
1323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 kfree(context);
1325 /* Leave with the unlabeled SID */
1326 rc = 0;
1327 break;
1328 }
1329 }
1330 kfree(context);
1331 isec->sid = sid;
1332 break;
1333 case SECURITY_FS_USE_TASK:
1334 isec->sid = isec->task_sid;
1335 break;
1336 case SECURITY_FS_USE_TRANS:
1337 /* Default to the fs SID. */
1338 isec->sid = sbsec->sid;
1339
1340 /* Try to obtain a transition SID. */
1341 isec->sclass = inode_mode_to_security_class(inode->i_mode);
Eric Paris652bb9b2011-02-01 11:05:40 -05001342 rc = security_transition_sid(isec->task_sid, sbsec->sid,
1343 isec->sclass, NULL, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (rc)
Eric Paris23970742006-09-25 23:32:01 -07001345 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 isec->sid = sid;
1347 break;
Eric Parisc312feb2006-07-10 04:43:53 -07001348 case SECURITY_FS_USE_MNTPOINT:
1349 isec->sid = sbsec->mntpoint_sid;
1350 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 default:
Eric Parisc312feb2006-07-10 04:43:53 -07001352 /* Default to the fs superblock SID. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 isec->sid = sbsec->sid;
1354
David P. Quigley0d90a7e2009-01-16 09:22:02 -05001355 if ((sbsec->flags & SE_SBPROC) && !S_ISLNK(inode->i_mode)) {
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001356 if (opt_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 isec->sclass = inode_mode_to_security_class(inode->i_mode);
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001358 rc = selinux_proc_get_sid(opt_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 isec->sclass,
1360 &sid);
1361 if (rc)
Eric Paris23970742006-09-25 23:32:01 -07001362 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 isec->sid = sid;
1364 }
1365 }
1366 break;
1367 }
1368
1369 isec->initialized = 1;
1370
Eric Paris23970742006-09-25 23:32:01 -07001371out_unlock:
1372 mutex_unlock(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373out:
1374 if (isec->sclass == SECCLASS_FILE)
1375 isec->sclass = inode_mode_to_security_class(inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return rc;
1377}
1378
1379/* Convert a Linux signal to an access vector. */
1380static inline u32 signal_to_av(int sig)
1381{
1382 u32 perm = 0;
1383
1384 switch (sig) {
1385 case SIGCHLD:
1386 /* Commonly granted from child to parent. */
1387 perm = PROCESS__SIGCHLD;
1388 break;
1389 case SIGKILL:
1390 /* Cannot be caught or ignored */
1391 perm = PROCESS__SIGKILL;
1392 break;
1393 case SIGSTOP:
1394 /* Cannot be caught or ignored */
1395 perm = PROCESS__SIGSTOP;
1396 break;
1397 default:
1398 /* All other signals. */
1399 perm = PROCESS__SIGNAL;
1400 break;
1401 }
1402
1403 return perm;
1404}
1405
David Howells275bb412008-11-14 10:39:19 +11001406/*
David Howellsd84f4f92008-11-14 10:39:23 +11001407 * Check permission between a pair of credentials
1408 * fork check, ptrace check, etc.
1409 */
1410static int cred_has_perm(const struct cred *actor,
1411 const struct cred *target,
1412 u32 perms)
1413{
1414 u32 asid = cred_sid(actor), tsid = cred_sid(target);
1415
1416 return avc_has_perm(asid, tsid, SECCLASS_PROCESS, perms, NULL);
1417}
1418
1419/*
David Howells88e67f32008-11-14 10:39:21 +11001420 * Check permission between a pair of tasks, e.g. signal checks,
David Howells275bb412008-11-14 10:39:19 +11001421 * fork check, ptrace check, etc.
1422 * tsk1 is the actor and tsk2 is the target
David Howells3b11a1d2008-11-14 10:39:26 +11001423 * - this uses the default subjective creds of tsk1
David Howells275bb412008-11-14 10:39:19 +11001424 */
1425static int task_has_perm(const struct task_struct *tsk1,
1426 const struct task_struct *tsk2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 u32 perms)
1428{
David Howells275bb412008-11-14 10:39:19 +11001429 const struct task_security_struct *__tsec1, *__tsec2;
1430 u32 sid1, sid2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
David Howells275bb412008-11-14 10:39:19 +11001432 rcu_read_lock();
1433 __tsec1 = __task_cred(tsk1)->security; sid1 = __tsec1->sid;
1434 __tsec2 = __task_cred(tsk2)->security; sid2 = __tsec2->sid;
1435 rcu_read_unlock();
1436 return avc_has_perm(sid1, sid2, SECCLASS_PROCESS, perms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
David Howells3b11a1d2008-11-14 10:39:26 +11001439/*
1440 * Check permission between current and another task, e.g. signal checks,
1441 * fork check, ptrace check, etc.
1442 * current is the actor and tsk2 is the target
1443 * - this uses current's subjective creds
1444 */
1445static int current_has_perm(const struct task_struct *tsk,
1446 u32 perms)
1447{
1448 u32 sid, tsid;
1449
1450 sid = current_sid();
1451 tsid = task_sid(tsk);
1452 return avc_has_perm(sid, tsid, SECCLASS_PROCESS, perms, NULL);
1453}
1454
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001455#if CAP_LAST_CAP > 63
1456#error Fix SELinux to handle capabilities > 63.
1457#endif
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459/* Check whether a task is allowed to use a capability. */
Eric Paris6a9de492012-01-03 12:25:14 -05001460static int cred_has_capability(const struct cred *cred,
Eric Paris06112162008-11-11 22:02:50 +11001461 int cap, int audit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Thomas Liu2bf49692009-07-14 12:14:09 -04001463 struct common_audit_data ad;
Eric Paris06112162008-11-11 22:02:50 +11001464 struct av_decision avd;
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001465 u16 sclass;
David Howells3699c532009-01-06 22:27:01 +00001466 u32 sid = cred_sid(cred);
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001467 u32 av = CAP_TO_MASK(cap);
Eric Paris06112162008-11-11 22:02:50 +11001468 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Eric Paris50c205f2012-04-04 15:01:43 -04001470 ad.type = LSM_AUDIT_DATA_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 ad.u.cap = cap;
1472
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001473 switch (CAP_TO_INDEX(cap)) {
1474 case 0:
1475 sclass = SECCLASS_CAPABILITY;
1476 break;
1477 case 1:
1478 sclass = SECCLASS_CAPABILITY2;
1479 break;
1480 default:
1481 printk(KERN_ERR
1482 "SELinux: out of range capability %d\n", cap);
1483 BUG();
Eric Parisa35c6c832011-04-20 10:21:28 -04001484 return -EINVAL;
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001485 }
Eric Paris06112162008-11-11 22:02:50 +11001486
David Howells275bb412008-11-14 10:39:19 +11001487 rc = avc_has_perm_noaudit(sid, sid, sclass, av, 0, &avd);
Eric Paris9ade0cf2011-04-25 16:26:29 -04001488 if (audit == SECURITY_CAP_AUDIT) {
1489 int rc2 = avc_audit(sid, sid, sclass, av, &avd, rc, &ad, 0);
1490 if (rc2)
1491 return rc2;
1492 }
Eric Paris06112162008-11-11 22:02:50 +11001493 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
1496/* Check whether a task is allowed to use a system operation. */
1497static int task_has_system(struct task_struct *tsk,
1498 u32 perms)
1499{
David Howells275bb412008-11-14 10:39:19 +11001500 u32 sid = task_sid(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
David Howells275bb412008-11-14 10:39:19 +11001502 return avc_has_perm(sid, SECINITSID_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 SECCLASS_SYSTEM, perms, NULL);
1504}
1505
1506/* Check whether a task has a particular permission to an inode.
1507 The 'adp' parameter is optional and allows other audit
1508 data to be passed (e.g. the dentry). */
David Howells88e67f32008-11-14 10:39:21 +11001509static int inode_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 struct inode *inode,
1511 u32 perms,
Eric Paris9ade0cf2011-04-25 16:26:29 -04001512 struct common_audit_data *adp,
1513 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 struct inode_security_struct *isec;
David Howells275bb412008-11-14 10:39:19 +11001516 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
David Howellse0e81732009-09-02 09:13:40 +01001518 validate_creds(cred);
1519
Eric Paris828dfe12008-04-17 13:17:49 -04001520 if (unlikely(IS_PRIVATE(inode)))
Stephen Smalleybbaca6c2007-02-14 00:34:16 -08001521 return 0;
1522
David Howells88e67f32008-11-14 10:39:21 +11001523 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 isec = inode->i_security;
1525
Eric Paris9ade0cf2011-04-25 16:26:29 -04001526 return avc_has_perm_flags(sid, isec->sid, isec->sclass, perms, adp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
1529/* Same as inode_has_perm, but pass explicit audit data containing
1530 the dentry to help the auditing code to more easily generate the
1531 pathname if needed. */
David Howells88e67f32008-11-14 10:39:21 +11001532static inline int dentry_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 struct dentry *dentry,
1534 u32 av)
1535{
1536 struct inode *inode = dentry->d_inode;
Thomas Liu2bf49692009-07-14 12:14:09 -04001537 struct common_audit_data ad;
David Howells88e67f32008-11-14 10:39:21 +11001538
Eric Paris50c205f2012-04-04 15:01:43 -04001539 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Paris2875fa02011-04-28 16:04:24 -04001540 ad.u.dentry = dentry;
1541 return inode_has_perm(cred, inode, av, &ad, 0);
1542}
1543
1544/* Same as inode_has_perm, but pass explicit audit data containing
1545 the path to help the auditing code to more easily generate the
1546 pathname if needed. */
1547static inline int path_has_perm(const struct cred *cred,
1548 struct path *path,
1549 u32 av)
1550{
1551 struct inode *inode = path->dentry->d_inode;
1552 struct common_audit_data ad;
1553
Eric Paris50c205f2012-04-04 15:01:43 -04001554 ad.type = LSM_AUDIT_DATA_PATH;
Eric Paris2875fa02011-04-28 16:04:24 -04001555 ad.u.path = *path;
Eric Paris9ade0cf2011-04-25 16:26:29 -04001556 return inode_has_perm(cred, inode, av, &ad, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
1559/* Check whether a task can use an open file descriptor to
1560 access an inode in a given way. Check access to the
1561 descriptor itself, and then use dentry_has_perm to
1562 check a particular permission to the file.
1563 Access to the descriptor is implicitly granted if it
1564 has the same SID as the process. If av is zero, then
1565 access to the file is not checked, e.g. for cases
1566 where only the descriptor is affected like seek. */
David Howells88e67f32008-11-14 10:39:21 +11001567static int file_has_perm(const struct cred *cred,
1568 struct file *file,
1569 u32 av)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 struct file_security_struct *fsec = file->f_security;
Al Viro496ad9a2013-01-23 17:07:38 -05001572 struct inode *inode = file_inode(file);
Thomas Liu2bf49692009-07-14 12:14:09 -04001573 struct common_audit_data ad;
David Howells88e67f32008-11-14 10:39:21 +11001574 u32 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 int rc;
1576
Eric Paris50c205f2012-04-04 15:01:43 -04001577 ad.type = LSM_AUDIT_DATA_PATH;
Eric Parisf48b7392011-04-25 12:54:27 -04001578 ad.u.path = file->f_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
David Howells275bb412008-11-14 10:39:19 +11001580 if (sid != fsec->sid) {
1581 rc = avc_has_perm(sid, fsec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 SECCLASS_FD,
1583 FD__USE,
1584 &ad);
1585 if (rc)
David Howells88e67f32008-11-14 10:39:21 +11001586 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
1588
1589 /* av is zero if only checking access to the descriptor. */
David Howells88e67f32008-11-14 10:39:21 +11001590 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (av)
Eric Paris9ade0cf2011-04-25 16:26:29 -04001592 rc = inode_has_perm(cred, inode, av, &ad, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
David Howells88e67f32008-11-14 10:39:21 +11001594out:
1595 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
1598/* Check whether a task can create a file. */
1599static int may_create(struct inode *dir,
1600 struct dentry *dentry,
1601 u16 tclass)
1602{
Paul Moore5fb49872010-04-22 14:46:19 -04001603 const struct task_security_struct *tsec = current_security();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 struct inode_security_struct *dsec;
1605 struct superblock_security_struct *sbsec;
David Howells275bb412008-11-14 10:39:19 +11001606 u32 sid, newsid;
Thomas Liu2bf49692009-07-14 12:14:09 -04001607 struct common_audit_data ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 int rc;
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 dsec = dir->i_security;
1611 sbsec = dir->i_sb->s_security;
1612
David Howells275bb412008-11-14 10:39:19 +11001613 sid = tsec->sid;
1614 newsid = tsec->create_sid;
1615
Eric Paris50c205f2012-04-04 15:01:43 -04001616 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04001617 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
David Howells275bb412008-11-14 10:39:19 +11001619 rc = avc_has_perm(sid, dsec->sid, SECCLASS_DIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 DIR__ADD_NAME | DIR__SEARCH,
1621 &ad);
1622 if (rc)
1623 return rc;
1624
Eric Paris12f348b2012-10-09 10:56:25 -04001625 if (!newsid || !(sbsec->flags & SBLABEL_MNT)) {
Eric Pariscb1e9222011-04-28 15:11:21 -04001626 rc = security_transition_sid(sid, dsec->sid, tclass,
1627 &dentry->d_name, &newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (rc)
1629 return rc;
1630 }
1631
David Howells275bb412008-11-14 10:39:19 +11001632 rc = avc_has_perm(sid, newsid, tclass, FILE__CREATE, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (rc)
1634 return rc;
1635
1636 return avc_has_perm(newsid, sbsec->sid,
1637 SECCLASS_FILESYSTEM,
1638 FILESYSTEM__ASSOCIATE, &ad);
1639}
1640
Michael LeMay4eb582c2006-06-26 00:24:57 -07001641/* Check whether a task can create a key. */
1642static int may_create_key(u32 ksid,
1643 struct task_struct *ctx)
1644{
David Howells275bb412008-11-14 10:39:19 +11001645 u32 sid = task_sid(ctx);
Michael LeMay4eb582c2006-06-26 00:24:57 -07001646
David Howells275bb412008-11-14 10:39:19 +11001647 return avc_has_perm(sid, ksid, SECCLASS_KEY, KEY__CREATE, NULL);
Michael LeMay4eb582c2006-06-26 00:24:57 -07001648}
1649
Eric Paris828dfe12008-04-17 13:17:49 -04001650#define MAY_LINK 0
1651#define MAY_UNLINK 1
1652#define MAY_RMDIR 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654/* Check whether a task can link, unlink, or rmdir a file/directory. */
1655static int may_link(struct inode *dir,
1656 struct dentry *dentry,
1657 int kind)
1658
1659{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 struct inode_security_struct *dsec, *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04001661 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11001662 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 u32 av;
1664 int rc;
1665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 dsec = dir->i_security;
1667 isec = dentry->d_inode->i_security;
1668
Eric Paris50c205f2012-04-04 15:01:43 -04001669 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04001670 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 av = DIR__SEARCH;
1673 av |= (kind ? DIR__REMOVE_NAME : DIR__ADD_NAME);
David Howells275bb412008-11-14 10:39:19 +11001674 rc = avc_has_perm(sid, dsec->sid, SECCLASS_DIR, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (rc)
1676 return rc;
1677
1678 switch (kind) {
1679 case MAY_LINK:
1680 av = FILE__LINK;
1681 break;
1682 case MAY_UNLINK:
1683 av = FILE__UNLINK;
1684 break;
1685 case MAY_RMDIR:
1686 av = DIR__RMDIR;
1687 break;
1688 default:
Eric Paris744ba352008-04-17 11:52:44 -04001689 printk(KERN_WARNING "SELinux: %s: unrecognized kind %d\n",
1690 __func__, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 return 0;
1692 }
1693
David Howells275bb412008-11-14 10:39:19 +11001694 rc = avc_has_perm(sid, isec->sid, isec->sclass, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 return rc;
1696}
1697
1698static inline int may_rename(struct inode *old_dir,
1699 struct dentry *old_dentry,
1700 struct inode *new_dir,
1701 struct dentry *new_dentry)
1702{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 struct inode_security_struct *old_dsec, *new_dsec, *old_isec, *new_isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04001704 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11001705 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 u32 av;
1707 int old_is_dir, new_is_dir;
1708 int rc;
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 old_dsec = old_dir->i_security;
1711 old_isec = old_dentry->d_inode->i_security;
1712 old_is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
1713 new_dsec = new_dir->i_security;
1714
Eric Paris50c205f2012-04-04 15:01:43 -04001715 ad.type = LSM_AUDIT_DATA_DENTRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Eric Parisa2694342011-04-25 13:10:27 -04001717 ad.u.dentry = old_dentry;
David Howells275bb412008-11-14 10:39:19 +11001718 rc = avc_has_perm(sid, old_dsec->sid, SECCLASS_DIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 DIR__REMOVE_NAME | DIR__SEARCH, &ad);
1720 if (rc)
1721 return rc;
David Howells275bb412008-11-14 10:39:19 +11001722 rc = avc_has_perm(sid, old_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 old_isec->sclass, FILE__RENAME, &ad);
1724 if (rc)
1725 return rc;
1726 if (old_is_dir && new_dir != old_dir) {
David Howells275bb412008-11-14 10:39:19 +11001727 rc = avc_has_perm(sid, old_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 old_isec->sclass, DIR__REPARENT, &ad);
1729 if (rc)
1730 return rc;
1731 }
1732
Eric Parisa2694342011-04-25 13:10:27 -04001733 ad.u.dentry = new_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 av = DIR__ADD_NAME | DIR__SEARCH;
1735 if (new_dentry->d_inode)
1736 av |= DIR__REMOVE_NAME;
David Howells275bb412008-11-14 10:39:19 +11001737 rc = avc_has_perm(sid, new_dsec->sid, SECCLASS_DIR, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (rc)
1739 return rc;
1740 if (new_dentry->d_inode) {
1741 new_isec = new_dentry->d_inode->i_security;
1742 new_is_dir = S_ISDIR(new_dentry->d_inode->i_mode);
David Howells275bb412008-11-14 10:39:19 +11001743 rc = avc_has_perm(sid, new_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 new_isec->sclass,
1745 (new_is_dir ? DIR__RMDIR : FILE__UNLINK), &ad);
1746 if (rc)
1747 return rc;
1748 }
1749
1750 return 0;
1751}
1752
1753/* Check whether a task can perform a filesystem operation. */
David Howells88e67f32008-11-14 10:39:21 +11001754static int superblock_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 struct super_block *sb,
1756 u32 perms,
Thomas Liu2bf49692009-07-14 12:14:09 -04001757 struct common_audit_data *ad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 struct superblock_security_struct *sbsec;
David Howells88e67f32008-11-14 10:39:21 +11001760 u32 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 sbsec = sb->s_security;
David Howells275bb412008-11-14 10:39:19 +11001763 return avc_has_perm(sid, sbsec->sid, SECCLASS_FILESYSTEM, perms, ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
1766/* Convert a Linux mode and permission mask to an access vector. */
1767static inline u32 file_mask_to_av(int mode, int mask)
1768{
1769 u32 av = 0;
1770
Al Virodba19c62011-07-25 20:49:29 -04001771 if (!S_ISDIR(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (mask & MAY_EXEC)
1773 av |= FILE__EXECUTE;
1774 if (mask & MAY_READ)
1775 av |= FILE__READ;
1776
1777 if (mask & MAY_APPEND)
1778 av |= FILE__APPEND;
1779 else if (mask & MAY_WRITE)
1780 av |= FILE__WRITE;
1781
1782 } else {
1783 if (mask & MAY_EXEC)
1784 av |= DIR__SEARCH;
1785 if (mask & MAY_WRITE)
1786 av |= DIR__WRITE;
1787 if (mask & MAY_READ)
1788 av |= DIR__READ;
1789 }
1790
1791 return av;
1792}
1793
1794/* Convert a Linux file to an access vector. */
1795static inline u32 file_to_av(struct file *file)
1796{
1797 u32 av = 0;
1798
1799 if (file->f_mode & FMODE_READ)
1800 av |= FILE__READ;
1801 if (file->f_mode & FMODE_WRITE) {
1802 if (file->f_flags & O_APPEND)
1803 av |= FILE__APPEND;
1804 else
1805 av |= FILE__WRITE;
1806 }
Stephen Smalley0794c662008-03-17 08:55:18 -04001807 if (!av) {
1808 /*
1809 * Special file opened with flags 3 for ioctl-only use.
1810 */
1811 av = FILE__IOCTL;
1812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 return av;
1815}
1816
Eric Paris8b6a5a32008-10-29 17:06:46 -04001817/*
1818 * Convert a file to an access vector and include the correct open
1819 * open permission.
1820 */
1821static inline u32 open_file_to_av(struct file *file)
1822{
1823 u32 av = file_to_av(file);
1824
Eric Paris49b7b8d2010-07-23 11:44:09 -04001825 if (selinux_policycap_openperm)
1826 av |= FILE__OPEN;
1827
Eric Paris8b6a5a32008-10-29 17:06:46 -04001828 return av;
1829}
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831/* Hook functions begin here. */
1832
Ingo Molnar9e488582009-05-07 19:26:19 +10001833static int selinux_ptrace_access_check(struct task_struct *child,
David Howells5cd9c582008-08-14 11:37:28 +01001834 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 int rc;
1837
Ingo Molnar9e488582009-05-07 19:26:19 +10001838 rc = cap_ptrace_access_check(child, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 if (rc)
1840 return rc;
1841
Eric Paris69f594a2012-01-03 12:25:15 -05001842 if (mode & PTRACE_MODE_READ) {
David Howells275bb412008-11-14 10:39:19 +11001843 u32 sid = current_sid();
1844 u32 csid = task_sid(child);
1845 return avc_has_perm(sid, csid, SECCLASS_FILE, FILE__READ, NULL);
Stephen Smalley006ebb42008-05-19 08:32:49 -04001846 }
1847
David Howells3b11a1d2008-11-14 10:39:26 +11001848 return current_has_perm(child, PROCESS__PTRACE);
David Howells5cd9c582008-08-14 11:37:28 +01001849}
1850
1851static int selinux_ptrace_traceme(struct task_struct *parent)
1852{
1853 int rc;
1854
Eric Paris200ac532009-02-12 15:01:04 -05001855 rc = cap_ptrace_traceme(parent);
David Howells5cd9c582008-08-14 11:37:28 +01001856 if (rc)
1857 return rc;
1858
1859 return task_has_perm(parent, current, PROCESS__PTRACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
1862static int selinux_capget(struct task_struct *target, kernel_cap_t *effective,
Eric Paris828dfe12008-04-17 13:17:49 -04001863 kernel_cap_t *inheritable, kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
1865 int error;
1866
David Howells3b11a1d2008-11-14 10:39:26 +11001867 error = current_has_perm(target, PROCESS__GETCAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (error)
1869 return error;
1870
Eric Paris200ac532009-02-12 15:01:04 -05001871 return cap_capget(target, effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
David Howellsd84f4f92008-11-14 10:39:23 +11001874static int selinux_capset(struct cred *new, const struct cred *old,
1875 const kernel_cap_t *effective,
1876 const kernel_cap_t *inheritable,
1877 const kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
1879 int error;
1880
Eric Paris200ac532009-02-12 15:01:04 -05001881 error = cap_capset(new, old,
David Howellsd84f4f92008-11-14 10:39:23 +11001882 effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (error)
1884 return error;
1885
David Howellsd84f4f92008-11-14 10:39:23 +11001886 return cred_has_perm(old, new, PROCESS__SETCAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}
1888
James Morris5626d3e2009-01-30 10:05:06 +11001889/*
1890 * (This comment used to live with the selinux_task_setuid hook,
1891 * which was removed).
1892 *
1893 * Since setuid only affects the current process, and since the SELinux
1894 * controls are not based on the Linux identity attributes, SELinux does not
1895 * need to control this operation. However, SELinux does control the use of
1896 * the CAP_SETUID and CAP_SETGID capabilities using the capable hook.
1897 */
1898
Eric Paris6a9de492012-01-03 12:25:14 -05001899static int selinux_capable(const struct cred *cred, struct user_namespace *ns,
1900 int cap, int audit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
1902 int rc;
1903
Eric Paris6a9de492012-01-03 12:25:14 -05001904 rc = cap_capable(cred, ns, cap, audit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (rc)
1906 return rc;
1907
Eric Paris6a9de492012-01-03 12:25:14 -05001908 return cred_has_capability(cred, cap, audit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911static int selinux_quotactl(int cmds, int type, int id, struct super_block *sb)
1912{
David Howells88e67f32008-11-14 10:39:21 +11001913 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 int rc = 0;
1915
1916 if (!sb)
1917 return 0;
1918
1919 switch (cmds) {
Eric Paris828dfe12008-04-17 13:17:49 -04001920 case Q_SYNC:
1921 case Q_QUOTAON:
1922 case Q_QUOTAOFF:
1923 case Q_SETINFO:
1924 case Q_SETQUOTA:
David Howells88e67f32008-11-14 10:39:21 +11001925 rc = superblock_has_perm(cred, sb, FILESYSTEM__QUOTAMOD, NULL);
Eric Paris828dfe12008-04-17 13:17:49 -04001926 break;
1927 case Q_GETFMT:
1928 case Q_GETINFO:
1929 case Q_GETQUOTA:
David Howells88e67f32008-11-14 10:39:21 +11001930 rc = superblock_has_perm(cred, sb, FILESYSTEM__QUOTAGET, NULL);
Eric Paris828dfe12008-04-17 13:17:49 -04001931 break;
1932 default:
1933 rc = 0; /* let the kernel handle invalid cmds */
1934 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 return rc;
1937}
1938
1939static int selinux_quota_on(struct dentry *dentry)
1940{
David Howells88e67f32008-11-14 10:39:21 +11001941 const struct cred *cred = current_cred();
1942
Eric Paris2875fa02011-04-28 16:04:24 -04001943 return dentry_has_perm(cred, dentry, FILE__QUOTAON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
1945
Eric Paris12b30522010-11-15 18:36:29 -05001946static int selinux_syslog(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 int rc;
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08001951 case SYSLOG_ACTION_READ_ALL: /* Read last kernel messages */
1952 case SYSLOG_ACTION_SIZE_BUFFER: /* Return size of the log buffer */
Eric Paris828dfe12008-04-17 13:17:49 -04001953 rc = task_has_system(current, SYSTEM__SYSLOG_READ);
1954 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001955 case SYSLOG_ACTION_CONSOLE_OFF: /* Disable logging to console */
1956 case SYSLOG_ACTION_CONSOLE_ON: /* Enable logging to console */
1957 /* Set level of messages printed to console */
1958 case SYSLOG_ACTION_CONSOLE_LEVEL:
Eric Paris828dfe12008-04-17 13:17:49 -04001959 rc = task_has_system(current, SYSTEM__SYSLOG_CONSOLE);
1960 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001961 case SYSLOG_ACTION_CLOSE: /* Close log */
1962 case SYSLOG_ACTION_OPEN: /* Open log */
1963 case SYSLOG_ACTION_READ: /* Read from log */
1964 case SYSLOG_ACTION_READ_CLEAR: /* Read/clear last kernel messages */
1965 case SYSLOG_ACTION_CLEAR: /* Clear ring buffer */
Eric Paris828dfe12008-04-17 13:17:49 -04001966 default:
1967 rc = task_has_system(current, SYSTEM__SYSLOG_MOD);
1968 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
1970 return rc;
1971}
1972
1973/*
1974 * Check that a process has enough memory to allocate a new virtual
1975 * mapping. 0 means there is enough memory for the allocation to
1976 * succeed and -ENOMEM implies there is not.
1977 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 * Do not audit the selinux permission check, as this is applied to all
1979 * processes that allocate mappings.
1980 */
Alan Cox34b4e4a2007-08-22 14:01:28 -07001981static int selinux_vm_enough_memory(struct mm_struct *mm, long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
1983 int rc, cap_sys_admin = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Eric Paris6a9de492012-01-03 12:25:14 -05001985 rc = selinux_capable(current_cred(), &init_user_ns, CAP_SYS_ADMIN,
David Howells3699c532009-01-06 22:27:01 +00001986 SECURITY_CAP_NOAUDIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (rc == 0)
1988 cap_sys_admin = 1;
1989
Alan Cox34b4e4a2007-08-22 14:01:28 -07001990 return __vm_enough_memory(mm, pages, cap_sys_admin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992
1993/* binprm security operations */
1994
David Howellsa6f76f22008-11-14 10:39:24 +11001995static int selinux_bprm_set_creds(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
David Howellsa6f76f22008-11-14 10:39:24 +11001997 const struct task_security_struct *old_tsec;
1998 struct task_security_struct *new_tsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 struct inode_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04002000 struct common_audit_data ad;
Al Viro496ad9a2013-01-23 17:07:38 -05002001 struct inode *inode = file_inode(bprm->file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 int rc;
2003
Eric Paris200ac532009-02-12 15:01:04 -05002004 rc = cap_bprm_set_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 if (rc)
2006 return rc;
2007
David Howellsa6f76f22008-11-14 10:39:24 +11002008 /* SELinux context only depends on initial program or script and not
2009 * the script interpreter */
2010 if (bprm->cred_prepared)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return 0;
2012
David Howellsa6f76f22008-11-14 10:39:24 +11002013 old_tsec = current_security();
2014 new_tsec = bprm->cred->security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 isec = inode->i_security;
2016
2017 /* Default to the current task SID. */
David Howellsa6f76f22008-11-14 10:39:24 +11002018 new_tsec->sid = old_tsec->sid;
2019 new_tsec->osid = old_tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Michael LeMay28eba5b2006-06-27 02:53:42 -07002021 /* Reset fs, key, and sock SIDs on execve. */
David Howellsa6f76f22008-11-14 10:39:24 +11002022 new_tsec->create_sid = 0;
2023 new_tsec->keycreate_sid = 0;
2024 new_tsec->sockcreate_sid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
David Howellsa6f76f22008-11-14 10:39:24 +11002026 if (old_tsec->exec_sid) {
2027 new_tsec->sid = old_tsec->exec_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 /* Reset exec SID on execve. */
David Howellsa6f76f22008-11-14 10:39:24 +11002029 new_tsec->exec_sid = 0;
Andy Lutomirski259e5e62012-04-12 16:47:50 -05002030
2031 /*
2032 * Minimize confusion: if no_new_privs and a transition is
2033 * explicitly requested, then fail the exec.
2034 */
2035 if (bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS)
2036 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 } else {
2038 /* Check for a default transition on this program. */
David Howellsa6f76f22008-11-14 10:39:24 +11002039 rc = security_transition_sid(old_tsec->sid, isec->sid,
Eric Paris652bb9b2011-02-01 11:05:40 -05002040 SECCLASS_PROCESS, NULL,
2041 &new_tsec->sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 if (rc)
2043 return rc;
2044 }
2045
Eric Paris50c205f2012-04-04 15:01:43 -04002046 ad.type = LSM_AUDIT_DATA_PATH;
Eric Parisf48b7392011-04-25 12:54:27 -04002047 ad.u.path = bprm->file->f_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Andy Lutomirski259e5e62012-04-12 16:47:50 -05002049 if ((bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID) ||
2050 (bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS))
David Howellsa6f76f22008-11-14 10:39:24 +11002051 new_tsec->sid = old_tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
David Howellsa6f76f22008-11-14 10:39:24 +11002053 if (new_tsec->sid == old_tsec->sid) {
2054 rc = avc_has_perm(old_tsec->sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 SECCLASS_FILE, FILE__EXECUTE_NO_TRANS, &ad);
2056 if (rc)
2057 return rc;
2058 } else {
2059 /* Check permissions for the transition. */
David Howellsa6f76f22008-11-14 10:39:24 +11002060 rc = avc_has_perm(old_tsec->sid, new_tsec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 SECCLASS_PROCESS, PROCESS__TRANSITION, &ad);
2062 if (rc)
2063 return rc;
2064
David Howellsa6f76f22008-11-14 10:39:24 +11002065 rc = avc_has_perm(new_tsec->sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 SECCLASS_FILE, FILE__ENTRYPOINT, &ad);
2067 if (rc)
2068 return rc;
2069
David Howellsa6f76f22008-11-14 10:39:24 +11002070 /* Check for shared state */
2071 if (bprm->unsafe & LSM_UNSAFE_SHARE) {
2072 rc = avc_has_perm(old_tsec->sid, new_tsec->sid,
2073 SECCLASS_PROCESS, PROCESS__SHARE,
2074 NULL);
2075 if (rc)
2076 return -EPERM;
2077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
David Howellsa6f76f22008-11-14 10:39:24 +11002079 /* Make sure that anyone attempting to ptrace over a task that
2080 * changes its SID has the appropriate permit */
2081 if (bprm->unsafe &
2082 (LSM_UNSAFE_PTRACE | LSM_UNSAFE_PTRACE_CAP)) {
2083 struct task_struct *tracer;
2084 struct task_security_struct *sec;
2085 u32 ptsid = 0;
2086
2087 rcu_read_lock();
Tejun Heo06d98472011-06-17 16:50:40 +02002088 tracer = ptrace_parent(current);
David Howellsa6f76f22008-11-14 10:39:24 +11002089 if (likely(tracer != NULL)) {
2090 sec = __task_cred(tracer)->security;
2091 ptsid = sec->sid;
2092 }
2093 rcu_read_unlock();
2094
2095 if (ptsid != 0) {
2096 rc = avc_has_perm(ptsid, new_tsec->sid,
2097 SECCLASS_PROCESS,
2098 PROCESS__PTRACE, NULL);
2099 if (rc)
2100 return -EPERM;
2101 }
2102 }
2103
2104 /* Clear any possibly unsafe personality bits on exec: */
2105 bprm->per_clear |= PER_CLEAR_ON_SETID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return 0;
2109}
2110
Eric Paris828dfe12008-04-17 13:17:49 -04002111static int selinux_bprm_secureexec(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
Paul Moore5fb49872010-04-22 14:46:19 -04002113 const struct task_security_struct *tsec = current_security();
David Howells275bb412008-11-14 10:39:19 +11002114 u32 sid, osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 int atsecure = 0;
2116
David Howells275bb412008-11-14 10:39:19 +11002117 sid = tsec->sid;
2118 osid = tsec->osid;
2119
2120 if (osid != sid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 /* Enable secure mode for SIDs transitions unless
2122 the noatsecure permission is granted between
2123 the two SIDs, i.e. ahp returns 0. */
David Howells275bb412008-11-14 10:39:19 +11002124 atsecure = avc_has_perm(osid, sid,
David Howellsa6f76f22008-11-14 10:39:24 +11002125 SECCLASS_PROCESS,
2126 PROCESS__NOATSECURE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 }
2128
Eric Paris200ac532009-02-12 15:01:04 -05002129 return (atsecure || cap_bprm_secureexec(bprm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
Al Viroc3c073f2012-08-21 22:32:06 -04002132static int match_file(const void *p, struct file *file, unsigned fd)
2133{
2134 return file_has_perm(p, file, file_to_av(file)) ? fd + 1 : 0;
2135}
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137/* Derived from fs/exec.c:flush_old_files. */
David Howells745ca242008-11-14 10:39:22 +11002138static inline void flush_unauthorized_files(const struct cred *cred,
2139 struct files_struct *files)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 struct file *file, *devnull = NULL;
Stephen Smalleyb20c8122006-09-25 23:32:03 -07002142 struct tty_struct *tty;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002143 int drop_tty = 0;
Al Viroc3c073f2012-08-21 22:32:06 -04002144 unsigned n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002146 tty = get_current_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (tty) {
Nick Pigginee2ffa02010-08-18 04:37:35 +10002148 spin_lock(&tty_files_lock);
Eric Paris37dd0bd2008-10-31 17:40:00 -04002149 if (!list_empty(&tty->tty_files)) {
Nick Piggind996b622010-08-18 04:37:36 +10002150 struct tty_file_private *file_priv;
Eric Paris37dd0bd2008-10-31 17:40:00 -04002151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 /* Revalidate access to controlling tty.
Eric Paris602a8dd2012-04-04 15:01:42 -04002153 Use path_has_perm on the tty path directly rather
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 than using file_has_perm, as this particular open
2155 file may belong to another process and we are only
2156 interested in the inode-based check here. */
Nick Piggind996b622010-08-18 04:37:36 +10002157 file_priv = list_first_entry(&tty->tty_files,
2158 struct tty_file_private, list);
2159 file = file_priv->file;
Eric Paris602a8dd2012-04-04 15:01:42 -04002160 if (path_has_perm(cred, &file->f_path, FILE__READ | FILE__WRITE))
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002161 drop_tty = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 }
Nick Pigginee2ffa02010-08-18 04:37:35 +10002163 spin_unlock(&tty_files_lock);
Alan Cox452a00d2008-10-13 10:39:13 +01002164 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07002166 /* Reset controlling tty. */
2167 if (drop_tty)
2168 no_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170 /* Revalidate access to inherited open files. */
Al Viroc3c073f2012-08-21 22:32:06 -04002171 n = iterate_fd(files, 0, match_file, cred);
2172 if (!n) /* none found? */
2173 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Al Viroc3c073f2012-08-21 22:32:06 -04002175 devnull = dentry_open(&selinux_null, O_RDWR, cred);
Al Viro45525b22012-10-16 13:30:07 -04002176 if (IS_ERR(devnull))
2177 devnull = NULL;
2178 /* replace all the matching ones with this */
2179 do {
2180 replace_fd(n - 1, devnull, 0);
2181 } while ((n = iterate_fd(files, n, match_file, cred)) != 0);
2182 if (devnull)
Al Viroc3c073f2012-08-21 22:32:06 -04002183 fput(devnull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186/*
David Howellsa6f76f22008-11-14 10:39:24 +11002187 * Prepare a process for imminent new credential changes due to exec
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 */
David Howellsa6f76f22008-11-14 10:39:24 +11002189static void selinux_bprm_committing_creds(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
David Howellsa6f76f22008-11-14 10:39:24 +11002191 struct task_security_struct *new_tsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 struct rlimit *rlim, *initrlim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 int rc, i;
2194
David Howellsa6f76f22008-11-14 10:39:24 +11002195 new_tsec = bprm->cred->security;
2196 if (new_tsec->sid == new_tsec->osid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 return;
2198
2199 /* Close files for which the new task SID is not authorized. */
David Howellsa6f76f22008-11-14 10:39:24 +11002200 flush_unauthorized_files(bprm->cred, current->files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
David Howellsa6f76f22008-11-14 10:39:24 +11002202 /* Always clear parent death signal on SID transitions. */
2203 current->pdeath_signal = 0;
2204
2205 /* Check whether the new SID can inherit resource limits from the old
2206 * SID. If not, reset all soft limits to the lower of the current
2207 * task's hard limit and the init task's soft limit.
2208 *
2209 * Note that the setting of hard limits (even to lower them) can be
2210 * controlled by the setrlimit check. The inclusion of the init task's
2211 * soft limit into the computation is to avoid resetting soft limits
2212 * higher than the default soft limit for cases where the default is
2213 * lower than the hard limit, e.g. RLIMIT_CORE or RLIMIT_STACK.
2214 */
2215 rc = avc_has_perm(new_tsec->osid, new_tsec->sid, SECCLASS_PROCESS,
2216 PROCESS__RLIMITINH, NULL);
2217 if (rc) {
Oleg Nesteroveb2d55a2010-06-23 22:43:32 +02002218 /* protect against do_prlimit() */
2219 task_lock(current);
David Howellsa6f76f22008-11-14 10:39:24 +11002220 for (i = 0; i < RLIM_NLIMITS; i++) {
2221 rlim = current->signal->rlim + i;
2222 initrlim = init_task.signal->rlim + i;
2223 rlim->rlim_cur = min(rlim->rlim_max, initrlim->rlim_cur);
2224 }
Oleg Nesteroveb2d55a2010-06-23 22:43:32 +02002225 task_unlock(current);
2226 update_rlimit_cpu(current, rlimit(RLIMIT_CPU));
David Howellsa6f76f22008-11-14 10:39:24 +11002227 }
2228}
2229
2230/*
2231 * Clean up the process immediately after the installation of new credentials
2232 * due to exec
2233 */
2234static void selinux_bprm_committed_creds(struct linux_binprm *bprm)
2235{
2236 const struct task_security_struct *tsec = current_security();
2237 struct itimerval itimer;
David Howellsa6f76f22008-11-14 10:39:24 +11002238 u32 osid, sid;
2239 int rc, i;
David Howellsa6f76f22008-11-14 10:39:24 +11002240
David Howellsa6f76f22008-11-14 10:39:24 +11002241 osid = tsec->osid;
2242 sid = tsec->sid;
2243
2244 if (sid == osid)
2245 return;
2246
2247 /* Check whether the new SID can inherit signal state from the old SID.
2248 * If not, clear itimers to avoid subsequent signal generation and
2249 * flush and unblock signals.
2250 *
2251 * This must occur _after_ the task SID has been updated so that any
2252 * kill done after the flush will be checked against the new SID.
2253 */
2254 rc = avc_has_perm(osid, sid, SECCLASS_PROCESS, PROCESS__SIGINH, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 if (rc) {
2256 memset(&itimer, 0, sizeof itimer);
2257 for (i = 0; i < 3; i++)
2258 do_setitimer(i, &itimer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 spin_lock_irq(&current->sighand->siglock);
David Howells3bcac022009-04-29 13:45:05 +01002260 if (!(current->signal->flags & SIGNAL_GROUP_EXIT)) {
2261 __flush_signals(current);
2262 flush_signal_handlers(current, 1);
2263 sigemptyset(&current->blocked);
2264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 spin_unlock_irq(&current->sighand->siglock);
2266 }
2267
David Howellsa6f76f22008-11-14 10:39:24 +11002268 /* Wake up the parent if it is waiting so that it can recheck
2269 * wait permission to the new task SID. */
Oleg Nesterovecd6de32009-04-29 16:02:24 +02002270 read_lock(&tasklist_lock);
Oleg Nesterov0b7570e2009-09-23 15:56:46 -07002271 __wake_up_parent(current, current->real_parent);
Oleg Nesterovecd6de32009-04-29 16:02:24 +02002272 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
2275/* superblock security operations */
2276
2277static int selinux_sb_alloc_security(struct super_block *sb)
2278{
2279 return superblock_alloc_security(sb);
2280}
2281
2282static void selinux_sb_free_security(struct super_block *sb)
2283{
2284 superblock_free_security(sb);
2285}
2286
2287static inline int match_prefix(char *prefix, int plen, char *option, int olen)
2288{
2289 if (plen > olen)
2290 return 0;
2291
2292 return !memcmp(prefix, option, plen);
2293}
2294
2295static inline int selinux_option(char *option, int len)
2296{
Eric Paris832cbd92008-04-01 13:24:09 -04002297 return (match_prefix(CONTEXT_STR, sizeof(CONTEXT_STR)-1, option, len) ||
2298 match_prefix(FSCONTEXT_STR, sizeof(FSCONTEXT_STR)-1, option, len) ||
2299 match_prefix(DEFCONTEXT_STR, sizeof(DEFCONTEXT_STR)-1, option, len) ||
David P. Quigley11689d42009-01-16 09:22:03 -05002300 match_prefix(ROOTCONTEXT_STR, sizeof(ROOTCONTEXT_STR)-1, option, len) ||
2301 match_prefix(LABELSUPP_STR, sizeof(LABELSUPP_STR)-1, option, len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302}
2303
2304static inline void take_option(char **to, char *from, int *first, int len)
2305{
2306 if (!*first) {
2307 **to = ',';
2308 *to += 1;
Cory Olmo3528a952006-09-29 01:58:44 -07002309 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 *first = 0;
2311 memcpy(*to, from, len);
2312 *to += len;
2313}
2314
Eric Paris828dfe12008-04-17 13:17:49 -04002315static inline void take_selinux_option(char **to, char *from, int *first,
2316 int len)
Cory Olmo3528a952006-09-29 01:58:44 -07002317{
2318 int current_size = 0;
2319
2320 if (!*first) {
2321 **to = '|';
2322 *to += 1;
Eric Paris828dfe12008-04-17 13:17:49 -04002323 } else
Cory Olmo3528a952006-09-29 01:58:44 -07002324 *first = 0;
2325
2326 while (current_size < len) {
2327 if (*from != '"') {
2328 **to = *from;
2329 *to += 1;
2330 }
2331 from += 1;
2332 current_size += 1;
2333 }
2334}
2335
Eric Parise0007522008-03-05 10:31:54 -05002336static int selinux_sb_copy_data(char *orig, char *copy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337{
2338 int fnosec, fsec, rc = 0;
2339 char *in_save, *in_curr, *in_end;
2340 char *sec_curr, *nosec_save, *nosec;
Cory Olmo3528a952006-09-29 01:58:44 -07002341 int open_quote = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
2343 in_curr = orig;
2344 sec_curr = copy;
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 nosec = (char *)get_zeroed_page(GFP_KERNEL);
2347 if (!nosec) {
2348 rc = -ENOMEM;
2349 goto out;
2350 }
2351
2352 nosec_save = nosec;
2353 fnosec = fsec = 1;
2354 in_save = in_end = orig;
2355
2356 do {
Cory Olmo3528a952006-09-29 01:58:44 -07002357 if (*in_end == '"')
2358 open_quote = !open_quote;
2359 if ((*in_end == ',' && open_quote == 0) ||
2360 *in_end == '\0') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 int len = in_end - in_curr;
2362
2363 if (selinux_option(in_curr, len))
Cory Olmo3528a952006-09-29 01:58:44 -07002364 take_selinux_option(&sec_curr, in_curr, &fsec, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 else
2366 take_option(&nosec, in_curr, &fnosec, len);
2367
2368 in_curr = in_end + 1;
2369 }
2370 } while (*in_end++);
2371
Eric Paris6931dfc2005-06-30 02:58:51 -07002372 strcpy(in_save, nosec_save);
Gerald Schaeferda3caa22005-06-21 17:15:18 -07002373 free_page((unsigned long)nosec_save);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374out:
2375 return rc;
2376}
2377
Eric Paris026eb162011-03-03 16:09:14 -05002378static int selinux_sb_remount(struct super_block *sb, void *data)
2379{
2380 int rc, i, *flags;
2381 struct security_mnt_opts opts;
2382 char *secdata, **mount_options;
2383 struct superblock_security_struct *sbsec = sb->s_security;
2384
2385 if (!(sbsec->flags & SE_SBINITIALIZED))
2386 return 0;
2387
2388 if (!data)
2389 return 0;
2390
2391 if (sb->s_type->fs_flags & FS_BINARY_MOUNTDATA)
2392 return 0;
2393
2394 security_init_mnt_opts(&opts);
2395 secdata = alloc_secdata();
2396 if (!secdata)
2397 return -ENOMEM;
2398 rc = selinux_sb_copy_data(data, secdata);
2399 if (rc)
2400 goto out_free_secdata;
2401
2402 rc = selinux_parse_opts_str(secdata, &opts);
2403 if (rc)
2404 goto out_free_secdata;
2405
2406 mount_options = opts.mnt_opts;
2407 flags = opts.mnt_opts_flags;
2408
2409 for (i = 0; i < opts.num_mnt_opts; i++) {
2410 u32 sid;
2411 size_t len;
2412
Eric Paris12f348b2012-10-09 10:56:25 -04002413 if (flags[i] == SBLABEL_MNT)
Eric Paris026eb162011-03-03 16:09:14 -05002414 continue;
2415 len = strlen(mount_options[i]);
2416 rc = security_context_to_sid(mount_options[i], len, &sid);
2417 if (rc) {
2418 printk(KERN_WARNING "SELinux: security_context_to_sid"
2419 "(%s) failed for (dev %s, type %s) errno=%d\n",
2420 mount_options[i], sb->s_id, sb->s_type->name, rc);
2421 goto out_free_opts;
2422 }
2423 rc = -EINVAL;
2424 switch (flags[i]) {
2425 case FSCONTEXT_MNT:
2426 if (bad_option(sbsec, FSCONTEXT_MNT, sbsec->sid, sid))
2427 goto out_bad_option;
2428 break;
2429 case CONTEXT_MNT:
2430 if (bad_option(sbsec, CONTEXT_MNT, sbsec->mntpoint_sid, sid))
2431 goto out_bad_option;
2432 break;
2433 case ROOTCONTEXT_MNT: {
2434 struct inode_security_struct *root_isec;
2435 root_isec = sb->s_root->d_inode->i_security;
2436
2437 if (bad_option(sbsec, ROOTCONTEXT_MNT, root_isec->sid, sid))
2438 goto out_bad_option;
2439 break;
2440 }
2441 case DEFCONTEXT_MNT:
2442 if (bad_option(sbsec, DEFCONTEXT_MNT, sbsec->def_sid, sid))
2443 goto out_bad_option;
2444 break;
2445 default:
2446 goto out_free_opts;
2447 }
2448 }
2449
2450 rc = 0;
2451out_free_opts:
2452 security_free_mnt_opts(&opts);
2453out_free_secdata:
2454 free_secdata(secdata);
2455 return rc;
2456out_bad_option:
2457 printk(KERN_WARNING "SELinux: unable to change security options "
2458 "during remount (dev %s, type=%s)\n", sb->s_id,
2459 sb->s_type->name);
2460 goto out_free_opts;
2461}
2462
James Morris12204e22008-12-19 10:44:42 +11002463static int selinux_sb_kern_mount(struct super_block *sb, int flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
David Howells88e67f32008-11-14 10:39:21 +11002465 const struct cred *cred = current_cred();
Thomas Liu2bf49692009-07-14 12:14:09 -04002466 struct common_audit_data ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 int rc;
2468
2469 rc = superblock_doinit(sb, data);
2470 if (rc)
2471 return rc;
2472
James Morris74192242008-12-19 11:41:10 +11002473 /* Allow all mounts performed by the kernel */
2474 if (flags & MS_KERNMOUNT)
2475 return 0;
2476
Eric Paris50c205f2012-04-04 15:01:43 -04002477 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04002478 ad.u.dentry = sb->s_root;
David Howells88e67f32008-11-14 10:39:21 +11002479 return superblock_has_perm(cred, sb, FILESYSTEM__MOUNT, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
David Howells726c3342006-06-23 02:02:58 -07002482static int selinux_sb_statfs(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483{
David Howells88e67f32008-11-14 10:39:21 +11002484 const struct cred *cred = current_cred();
Thomas Liu2bf49692009-07-14 12:14:09 -04002485 struct common_audit_data ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Eric Paris50c205f2012-04-04 15:01:43 -04002487 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04002488 ad.u.dentry = dentry->d_sb->s_root;
David Howells88e67f32008-11-14 10:39:21 +11002489 return superblock_has_perm(cred, dentry->d_sb, FILESYSTEM__GETATTR, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490}
2491
Al Viro808d4e32012-10-11 11:42:01 -04002492static int selinux_mount(const char *dev_name,
Al Virob5266eb2008-03-22 17:48:24 -04002493 struct path *path,
Al Viro808d4e32012-10-11 11:42:01 -04002494 const char *type,
Eric Paris828dfe12008-04-17 13:17:49 -04002495 unsigned long flags,
2496 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
David Howells88e67f32008-11-14 10:39:21 +11002498 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500 if (flags & MS_REMOUNT)
Al Virod8c95842011-12-07 18:16:57 -05002501 return superblock_has_perm(cred, path->dentry->d_sb,
Eric Paris828dfe12008-04-17 13:17:49 -04002502 FILESYSTEM__REMOUNT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 else
Eric Paris2875fa02011-04-28 16:04:24 -04002504 return path_has_perm(cred, path, FILE__MOUNTON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505}
2506
2507static int selinux_umount(struct vfsmount *mnt, int flags)
2508{
David Howells88e67f32008-11-14 10:39:21 +11002509 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
David Howells88e67f32008-11-14 10:39:21 +11002511 return superblock_has_perm(cred, mnt->mnt_sb,
Eric Paris828dfe12008-04-17 13:17:49 -04002512 FILESYSTEM__UNMOUNT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513}
2514
2515/* inode security operations */
2516
2517static int selinux_inode_alloc_security(struct inode *inode)
2518{
2519 return inode_alloc_security(inode);
2520}
2521
2522static void selinux_inode_free_security(struct inode *inode)
2523{
2524 inode_free_security(inode);
2525}
2526
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002527static int selinux_inode_init_security(struct inode *inode, struct inode *dir,
Eric Paris2a7dba32011-02-01 11:05:39 -05002528 const struct qstr *qstr, char **name,
2529 void **value, size_t *len)
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002530{
Paul Moore5fb49872010-04-22 14:46:19 -04002531 const struct task_security_struct *tsec = current_security();
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002532 struct inode_security_struct *dsec;
2533 struct superblock_security_struct *sbsec;
David Howells275bb412008-11-14 10:39:19 +11002534 u32 sid, newsid, clen;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002535 int rc;
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002536 char *namep = NULL, *context;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002537
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002538 dsec = dir->i_security;
2539 sbsec = dir->i_sb->s_security;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002540
David Howells275bb412008-11-14 10:39:19 +11002541 sid = tsec->sid;
2542 newsid = tsec->create_sid;
2543
Eric Paris415103f2010-12-02 16:13:40 -05002544 if ((sbsec->flags & SE_SBINITIALIZED) &&
2545 (sbsec->behavior == SECURITY_FS_USE_MNTPOINT))
2546 newsid = sbsec->mntpoint_sid;
Eric Paris12f348b2012-10-09 10:56:25 -04002547 else if (!newsid || !(sbsec->flags & SBLABEL_MNT)) {
David Howells275bb412008-11-14 10:39:19 +11002548 rc = security_transition_sid(sid, dsec->sid,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002549 inode_mode_to_security_class(inode->i_mode),
Eric Paris652bb9b2011-02-01 11:05:40 -05002550 qstr, &newsid);
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002551 if (rc) {
2552 printk(KERN_WARNING "%s: "
2553 "security_transition_sid failed, rc=%d (dev=%s "
2554 "ino=%ld)\n",
Harvey Harrisondd6f9532008-03-06 10:03:59 +11002555 __func__,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002556 -rc, inode->i_sb->s_id, inode->i_ino);
2557 return rc;
2558 }
2559 }
2560
Eric Paris296fddf2006-09-25 23:32:00 -07002561 /* Possibly defer initialization to selinux_complete_init. */
David P. Quigley0d90a7e2009-01-16 09:22:02 -05002562 if (sbsec->flags & SE_SBINITIALIZED) {
Eric Paris296fddf2006-09-25 23:32:00 -07002563 struct inode_security_struct *isec = inode->i_security;
2564 isec->sclass = inode_mode_to_security_class(inode->i_mode);
2565 isec->sid = newsid;
2566 isec->initialized = 1;
2567 }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002568
Eric Paris12f348b2012-10-09 10:56:25 -04002569 if (!ss_initialized || !(sbsec->flags & SBLABEL_MNT))
Stephen Smalley25a74f32005-11-08 21:34:33 -08002570 return -EOPNOTSUPP;
2571
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002572 if (name) {
Josef Bacika02fe132008-04-04 09:35:05 +11002573 namep = kstrdup(XATTR_SELINUX_SUFFIX, GFP_NOFS);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002574 if (!namep)
2575 return -ENOMEM;
2576 *name = namep;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002577 }
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002578
2579 if (value && len) {
Stephen Smalley12b29f32008-05-07 13:03:20 -04002580 rc = security_sid_to_context_force(newsid, &context, &clen);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002581 if (rc) {
2582 kfree(namep);
2583 return rc;
2584 }
2585 *value = context;
2586 *len = clen;
2587 }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002588
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002589 return 0;
2590}
2591
Al Viro4acdaf22011-07-26 01:42:34 -04002592static int selinux_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
2594 return may_create(dir, dentry, SECCLASS_FILE);
2595}
2596
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597static int selinux_inode_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2598{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 return may_link(dir, old_dentry, MAY_LINK);
2600}
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602static int selinux_inode_unlink(struct inode *dir, struct dentry *dentry)
2603{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 return may_link(dir, dentry, MAY_UNLINK);
2605}
2606
2607static int selinux_inode_symlink(struct inode *dir, struct dentry *dentry, const char *name)
2608{
2609 return may_create(dir, dentry, SECCLASS_LNK_FILE);
2610}
2611
Al Viro18bb1db2011-07-26 01:41:39 -04002612static int selinux_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613{
2614 return may_create(dir, dentry, SECCLASS_DIR);
2615}
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617static int selinux_inode_rmdir(struct inode *dir, struct dentry *dentry)
2618{
2619 return may_link(dir, dentry, MAY_RMDIR);
2620}
2621
Al Viro1a67aaf2011-07-26 01:52:52 -04002622static int selinux_inode_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 return may_create(dir, dentry, inode_mode_to_security_class(mode));
2625}
2626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627static int selinux_inode_rename(struct inode *old_inode, struct dentry *old_dentry,
Eric Paris828dfe12008-04-17 13:17:49 -04002628 struct inode *new_inode, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
2630 return may_rename(old_inode, old_dentry, new_inode, new_dentry);
2631}
2632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633static int selinux_inode_readlink(struct dentry *dentry)
2634{
David Howells88e67f32008-11-14 10:39:21 +11002635 const struct cred *cred = current_cred();
2636
Eric Paris2875fa02011-04-28 16:04:24 -04002637 return dentry_has_perm(cred, dentry, FILE__READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
2640static int selinux_inode_follow_link(struct dentry *dentry, struct nameidata *nameidata)
2641{
David Howells88e67f32008-11-14 10:39:21 +11002642 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Eric Paris2875fa02011-04-28 16:04:24 -04002644 return dentry_has_perm(cred, dentry, FILE__READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645}
2646
Eric Parisd4cf970d2012-04-04 15:01:42 -04002647static noinline int audit_inode_permission(struct inode *inode,
2648 u32 perms, u32 audited, u32 denied,
2649 unsigned flags)
2650{
2651 struct common_audit_data ad;
Eric Parisd4cf970d2012-04-04 15:01:42 -04002652 struct inode_security_struct *isec = inode->i_security;
2653 int rc;
2654
Eric Paris50c205f2012-04-04 15:01:43 -04002655 ad.type = LSM_AUDIT_DATA_INODE;
Eric Parisd4cf970d2012-04-04 15:01:42 -04002656 ad.u.inode = inode;
2657
2658 rc = slow_avc_audit(current_sid(), isec->sid, isec->sclass, perms,
2659 audited, denied, &ad, flags);
2660 if (rc)
2661 return rc;
2662 return 0;
2663}
2664
Al Viroe74f71e2011-06-20 19:38:15 -04002665static int selinux_inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
David Howells88e67f32008-11-14 10:39:21 +11002667 const struct cred *cred = current_cred();
Eric Parisb782e0a2010-07-23 11:44:03 -04002668 u32 perms;
2669 bool from_access;
Al Virocf1dd1d2011-06-20 19:44:08 -04002670 unsigned flags = mask & MAY_NOT_BLOCK;
Eric Paris2e334052012-04-04 15:01:42 -04002671 struct inode_security_struct *isec;
2672 u32 sid;
2673 struct av_decision avd;
2674 int rc, rc2;
2675 u32 audited, denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Eric Parisb782e0a2010-07-23 11:44:03 -04002677 from_access = mask & MAY_ACCESS;
Eric Parisd09ca732010-07-23 11:43:57 -04002678 mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
2679
Eric Parisb782e0a2010-07-23 11:44:03 -04002680 /* No permission to check. Existence test. */
2681 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Eric Paris2e334052012-04-04 15:01:42 -04002684 validate_creds(cred);
Eric Parisb782e0a2010-07-23 11:44:03 -04002685
Eric Paris2e334052012-04-04 15:01:42 -04002686 if (unlikely(IS_PRIVATE(inode)))
2687 return 0;
Eric Parisb782e0a2010-07-23 11:44:03 -04002688
2689 perms = file_mask_to_av(inode->i_mode, mask);
2690
Eric Paris2e334052012-04-04 15:01:42 -04002691 sid = cred_sid(cred);
2692 isec = inode->i_security;
2693
2694 rc = avc_has_perm_noaudit(sid, isec->sid, isec->sclass, perms, 0, &avd);
2695 audited = avc_audit_required(perms, &avd, rc,
2696 from_access ? FILE__AUDIT_ACCESS : 0,
2697 &denied);
2698 if (likely(!audited))
2699 return rc;
2700
Eric Parisd4cf970d2012-04-04 15:01:42 -04002701 rc2 = audit_inode_permission(inode, perms, audited, denied, flags);
Eric Paris2e334052012-04-04 15:01:42 -04002702 if (rc2)
2703 return rc2;
2704 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705}
2706
2707static int selinux_inode_setattr(struct dentry *dentry, struct iattr *iattr)
2708{
David Howells88e67f32008-11-14 10:39:21 +11002709 const struct cred *cred = current_cred();
Amerigo Wangbc6a6002009-08-20 19:29:02 -07002710 unsigned int ia_valid = iattr->ia_valid;
Eric Paris95dbf732012-04-04 13:45:34 -04002711 __u32 av = FILE__WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Amerigo Wangbc6a6002009-08-20 19:29:02 -07002713 /* ATTR_FORCE is just used for ATTR_KILL_S[UG]ID. */
2714 if (ia_valid & ATTR_FORCE) {
2715 ia_valid &= ~(ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_MODE |
2716 ATTR_FORCE);
2717 if (!ia_valid)
2718 return 0;
2719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Amerigo Wangbc6a6002009-08-20 19:29:02 -07002721 if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID |
2722 ATTR_ATIME_SET | ATTR_MTIME_SET | ATTR_TIMES_SET))
Eric Paris2875fa02011-04-28 16:04:24 -04002723 return dentry_has_perm(cred, dentry, FILE__SETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Eric Paris3d2195c2012-07-06 14:13:30 -04002725 if (selinux_policycap_openperm && (ia_valid & ATTR_SIZE))
Eric Paris95dbf732012-04-04 13:45:34 -04002726 av |= FILE__OPEN;
2727
2728 return dentry_has_perm(cred, dentry, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729}
2730
2731static int selinux_inode_getattr(struct vfsmount *mnt, struct dentry *dentry)
2732{
David Howells88e67f32008-11-14 10:39:21 +11002733 const struct cred *cred = current_cred();
Eric Paris2875fa02011-04-28 16:04:24 -04002734 struct path path;
David Howells88e67f32008-11-14 10:39:21 +11002735
Eric Paris2875fa02011-04-28 16:04:24 -04002736 path.dentry = dentry;
2737 path.mnt = mnt;
2738
2739 return path_has_perm(cred, &path, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740}
2741
David Howells8f0cfa52008-04-29 00:59:41 -07002742static int selinux_inode_setotherxattr(struct dentry *dentry, const char *name)
Serge E. Hallynb5376772007-10-16 23:31:36 -07002743{
David Howells88e67f32008-11-14 10:39:21 +11002744 const struct cred *cred = current_cred();
2745
Serge E. Hallynb5376772007-10-16 23:31:36 -07002746 if (!strncmp(name, XATTR_SECURITY_PREFIX,
2747 sizeof XATTR_SECURITY_PREFIX - 1)) {
2748 if (!strcmp(name, XATTR_NAME_CAPS)) {
2749 if (!capable(CAP_SETFCAP))
2750 return -EPERM;
2751 } else if (!capable(CAP_SYS_ADMIN)) {
2752 /* A different attribute in the security namespace.
2753 Restrict to administrator. */
2754 return -EPERM;
2755 }
2756 }
2757
2758 /* Not an attribute we recognize, so just check the
2759 ordinary setattr permission. */
Eric Paris2875fa02011-04-28 16:04:24 -04002760 return dentry_has_perm(cred, dentry, FILE__SETATTR);
Serge E. Hallynb5376772007-10-16 23:31:36 -07002761}
2762
David Howells8f0cfa52008-04-29 00:59:41 -07002763static int selinux_inode_setxattr(struct dentry *dentry, const char *name,
2764 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 struct inode *inode = dentry->d_inode;
2767 struct inode_security_struct *isec = inode->i_security;
2768 struct superblock_security_struct *sbsec;
Thomas Liu2bf49692009-07-14 12:14:09 -04002769 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11002770 u32 newsid, sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 int rc = 0;
2772
Serge E. Hallynb5376772007-10-16 23:31:36 -07002773 if (strcmp(name, XATTR_NAME_SELINUX))
2774 return selinux_inode_setotherxattr(dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
2776 sbsec = inode->i_sb->s_security;
Eric Paris12f348b2012-10-09 10:56:25 -04002777 if (!(sbsec->flags & SBLABEL_MNT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 return -EOPNOTSUPP;
2779
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002780 if (!inode_owner_or_capable(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 return -EPERM;
2782
Eric Paris50c205f2012-04-04 15:01:43 -04002783 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04002784 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
David Howells275bb412008-11-14 10:39:19 +11002786 rc = avc_has_perm(sid, isec->sid, isec->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 FILE__RELABELFROM, &ad);
2788 if (rc)
2789 return rc;
2790
2791 rc = security_context_to_sid(value, size, &newsid);
Stephen Smalley12b29f32008-05-07 13:03:20 -04002792 if (rc == -EINVAL) {
Eric Parisd6ea83e2012-04-04 13:45:49 -04002793 if (!capable(CAP_MAC_ADMIN)) {
2794 struct audit_buffer *ab;
2795 size_t audit_size;
2796 const char *str;
2797
2798 /* We strip a nul only if it is at the end, otherwise the
2799 * context contains a nul and we should audit that */
Al Viroe3fea3f2012-06-09 08:15:16 +01002800 if (value) {
2801 str = value;
2802 if (str[size - 1] == '\0')
2803 audit_size = size - 1;
2804 else
2805 audit_size = size;
2806 } else {
2807 str = "";
2808 audit_size = 0;
2809 }
Eric Parisd6ea83e2012-04-04 13:45:49 -04002810 ab = audit_log_start(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR);
2811 audit_log_format(ab, "op=setxattr invalid_context=");
2812 audit_log_n_untrustedstring(ab, value, audit_size);
2813 audit_log_end(ab);
2814
Stephen Smalley12b29f32008-05-07 13:03:20 -04002815 return rc;
Eric Parisd6ea83e2012-04-04 13:45:49 -04002816 }
Stephen Smalley12b29f32008-05-07 13:03:20 -04002817 rc = security_context_to_sid_force(value, size, &newsid);
2818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 if (rc)
2820 return rc;
2821
David Howells275bb412008-11-14 10:39:19 +11002822 rc = avc_has_perm(sid, newsid, isec->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 FILE__RELABELTO, &ad);
2824 if (rc)
2825 return rc;
2826
David Howells275bb412008-11-14 10:39:19 +11002827 rc = security_validate_transition(isec->sid, newsid, sid,
Eric Paris828dfe12008-04-17 13:17:49 -04002828 isec->sclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 if (rc)
2830 return rc;
2831
2832 return avc_has_perm(newsid,
2833 sbsec->sid,
2834 SECCLASS_FILESYSTEM,
2835 FILESYSTEM__ASSOCIATE,
2836 &ad);
2837}
2838
David Howells8f0cfa52008-04-29 00:59:41 -07002839static void selinux_inode_post_setxattr(struct dentry *dentry, const char *name,
Eric Parisf5269712008-05-14 11:27:45 -04002840 const void *value, size_t size,
David Howells8f0cfa52008-04-29 00:59:41 -07002841 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
2843 struct inode *inode = dentry->d_inode;
2844 struct inode_security_struct *isec = inode->i_security;
2845 u32 newsid;
2846 int rc;
2847
2848 if (strcmp(name, XATTR_NAME_SELINUX)) {
2849 /* Not an attribute we recognize, so nothing to do. */
2850 return;
2851 }
2852
Stephen Smalley12b29f32008-05-07 13:03:20 -04002853 rc = security_context_to_sid_force(value, size, &newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 if (rc) {
Stephen Smalley12b29f32008-05-07 13:03:20 -04002855 printk(KERN_ERR "SELinux: unable to map context to SID"
2856 "for (%s, %lu), rc=%d\n",
2857 inode->i_sb->s_id, inode->i_ino, -rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 return;
2859 }
2860
2861 isec->sid = newsid;
2862 return;
2863}
2864
David Howells8f0cfa52008-04-29 00:59:41 -07002865static int selinux_inode_getxattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866{
David Howells88e67f32008-11-14 10:39:21 +11002867 const struct cred *cred = current_cred();
2868
Eric Paris2875fa02011-04-28 16:04:24 -04002869 return dentry_has_perm(cred, dentry, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870}
2871
Eric Paris828dfe12008-04-17 13:17:49 -04002872static int selinux_inode_listxattr(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
David Howells88e67f32008-11-14 10:39:21 +11002874 const struct cred *cred = current_cred();
2875
Eric Paris2875fa02011-04-28 16:04:24 -04002876 return dentry_has_perm(cred, dentry, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
David Howells8f0cfa52008-04-29 00:59:41 -07002879static int selinux_inode_removexattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002881 if (strcmp(name, XATTR_NAME_SELINUX))
2882 return selinux_inode_setotherxattr(dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
2884 /* No one is allowed to remove a SELinux security label.
2885 You can change the label, but all data must be labeled. */
2886 return -EACCES;
2887}
2888
James Morrisd381d8a2005-10-30 14:59:22 -08002889/*
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04002890 * Copy the inode security context value to the user.
James Morrisd381d8a2005-10-30 14:59:22 -08002891 *
2892 * Permission check is handled by selinux_inode_getxattr hook.
2893 */
David P. Quigley42492592008-02-04 22:29:39 -08002894static int selinux_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
David P. Quigley42492592008-02-04 22:29:39 -08002896 u32 size;
2897 int error;
2898 char *context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 struct inode_security_struct *isec = inode->i_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00002901 if (strcmp(name, XATTR_SELINUX_SUFFIX))
2902 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04002904 /*
2905 * If the caller has CAP_MAC_ADMIN, then get the raw context
2906 * value even if it is not defined by current policy; otherwise,
2907 * use the in-core value under current policy.
2908 * Use the non-auditing forms of the permission checks since
2909 * getxattr may be called by unprivileged processes commonly
2910 * and lack of permission just means that we fall back to the
2911 * in-core context value, not a denial.
2912 */
Eric Paris6a9de492012-01-03 12:25:14 -05002913 error = selinux_capable(current_cred(), &init_user_ns, CAP_MAC_ADMIN,
David Howells3699c532009-01-06 22:27:01 +00002914 SECURITY_CAP_NOAUDIT);
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04002915 if (!error)
2916 error = security_sid_to_context_force(isec->sid, &context,
2917 &size);
2918 else
2919 error = security_sid_to_context(isec->sid, &context, &size);
David P. Quigley42492592008-02-04 22:29:39 -08002920 if (error)
2921 return error;
2922 error = size;
2923 if (alloc) {
2924 *buffer = context;
2925 goto out_nofree;
2926 }
2927 kfree(context);
2928out_nofree:
2929 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930}
2931
2932static int selinux_inode_setsecurity(struct inode *inode, const char *name,
Eric Paris828dfe12008-04-17 13:17:49 -04002933 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
2935 struct inode_security_struct *isec = inode->i_security;
2936 u32 newsid;
2937 int rc;
2938
2939 if (strcmp(name, XATTR_SELINUX_SUFFIX))
2940 return -EOPNOTSUPP;
2941
2942 if (!value || !size)
2943 return -EACCES;
2944
Eric Paris828dfe12008-04-17 13:17:49 -04002945 rc = security_context_to_sid((void *)value, size, &newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 if (rc)
2947 return rc;
2948
2949 isec->sid = newsid;
David P. Quigleyddd29ec2009-09-09 14:25:37 -04002950 isec->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 return 0;
2952}
2953
2954static int selinux_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2955{
2956 const int len = sizeof(XATTR_NAME_SELINUX);
2957 if (buffer && len <= buffer_size)
2958 memcpy(buffer, XATTR_NAME_SELINUX, len);
2959 return len;
2960}
2961
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02002962static void selinux_inode_getsecid(const struct inode *inode, u32 *secid)
2963{
2964 struct inode_security_struct *isec = inode->i_security;
2965 *secid = isec->sid;
2966}
2967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968/* file security operations */
2969
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002970static int selinux_revalidate_file_permission(struct file *file, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
David Howells88e67f32008-11-14 10:39:21 +11002972 const struct cred *cred = current_cred();
Al Viro496ad9a2013-01-23 17:07:38 -05002973 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 /* file_mask_to_av won't add FILE__WRITE if MAY_APPEND is set */
2976 if ((file->f_flags & O_APPEND) && (mask & MAY_WRITE))
2977 mask |= MAY_APPEND;
2978
Paul Moore389fb8002009-03-27 17:10:34 -04002979 return file_has_perm(cred, file,
2980 file_mask_to_av(inode->i_mode, mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002983static int selinux_file_permission(struct file *file, int mask)
2984{
Al Viro496ad9a2013-01-23 17:07:38 -05002985 struct inode *inode = file_inode(file);
Stephen Smalley20dda182009-06-22 14:54:53 -04002986 struct file_security_struct *fsec = file->f_security;
2987 struct inode_security_struct *isec = inode->i_security;
2988 u32 sid = current_sid();
2989
Paul Moore389fb8002009-03-27 17:10:34 -04002990 if (!mask)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002991 /* No permission to check. Existence test. */
2992 return 0;
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002993
Stephen Smalley20dda182009-06-22 14:54:53 -04002994 if (sid == fsec->sid && fsec->isid == isec->sid &&
2995 fsec->pseqno == avc_policy_seqno())
Eric Paris83d49852012-04-04 13:45:40 -04002996 /* No change since file_open check. */
Stephen Smalley20dda182009-06-22 14:54:53 -04002997 return 0;
2998
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002999 return selinux_revalidate_file_permission(file, mask);
3000}
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002static int selinux_file_alloc_security(struct file *file)
3003{
3004 return file_alloc_security(file);
3005}
3006
3007static void selinux_file_free_security(struct file *file)
3008{
3009 file_free_security(file);
3010}
3011
3012static int selinux_file_ioctl(struct file *file, unsigned int cmd,
3013 unsigned long arg)
3014{
David Howells88e67f32008-11-14 10:39:21 +11003015 const struct cred *cred = current_cred();
Eric Paris0b24dcb2011-02-25 15:39:20 -05003016 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Eric Paris0b24dcb2011-02-25 15:39:20 -05003018 switch (cmd) {
3019 case FIONREAD:
3020 /* fall through */
3021 case FIBMAP:
3022 /* fall through */
3023 case FIGETBSZ:
3024 /* fall through */
Al Viro2f99c362012-03-23 16:04:05 -04003025 case FS_IOC_GETFLAGS:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003026 /* fall through */
Al Viro2f99c362012-03-23 16:04:05 -04003027 case FS_IOC_GETVERSION:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003028 error = file_has_perm(cred, file, FILE__GETATTR);
3029 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Al Viro2f99c362012-03-23 16:04:05 -04003031 case FS_IOC_SETFLAGS:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003032 /* fall through */
Al Viro2f99c362012-03-23 16:04:05 -04003033 case FS_IOC_SETVERSION:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003034 error = file_has_perm(cred, file, FILE__SETATTR);
3035 break;
3036
3037 /* sys_ioctl() checks */
3038 case FIONBIO:
3039 /* fall through */
3040 case FIOASYNC:
3041 error = file_has_perm(cred, file, 0);
3042 break;
3043
3044 case KDSKBENT:
3045 case KDSKBSENT:
Eric Paris6a9de492012-01-03 12:25:14 -05003046 error = cred_has_capability(cred, CAP_SYS_TTY_CONFIG,
3047 SECURITY_CAP_AUDIT);
Eric Paris0b24dcb2011-02-25 15:39:20 -05003048 break;
3049
3050 /* default case assumes that the command will go
3051 * to the file's ioctl() function.
3052 */
3053 default:
3054 error = file_has_perm(cred, file, FILE__IOCTL);
3055 }
3056 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057}
3058
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003059static int default_noexec;
3060
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061static int file_map_prot_check(struct file *file, unsigned long prot, int shared)
3062{
David Howells88e67f32008-11-14 10:39:21 +11003063 const struct cred *cred = current_cred();
David Howellsd84f4f92008-11-14 10:39:23 +11003064 int rc = 0;
David Howells88e67f32008-11-14 10:39:21 +11003065
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003066 if (default_noexec &&
3067 (prot & PROT_EXEC) && (!file || (!shared && (prot & PROT_WRITE)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 /*
3069 * We are making executable an anonymous mapping or a
3070 * private file mapping that will also be writable.
3071 * This has an additional check.
3072 */
David Howellsd84f4f92008-11-14 10:39:23 +11003073 rc = cred_has_perm(cred, cred, PROCESS__EXECMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 if (rc)
David Howellsd84f4f92008-11-14 10:39:23 +11003075 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
3078 if (file) {
3079 /* read access is always possible with a mapping */
3080 u32 av = FILE__READ;
3081
3082 /* write access only matters if the mapping is shared */
3083 if (shared && (prot & PROT_WRITE))
3084 av |= FILE__WRITE;
3085
3086 if (prot & PROT_EXEC)
3087 av |= FILE__EXECUTE;
3088
David Howells88e67f32008-11-14 10:39:21 +11003089 return file_has_perm(cred, file, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 }
David Howellsd84f4f92008-11-14 10:39:23 +11003091
3092error:
3093 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094}
3095
Al Viroe5467852012-05-30 13:30:51 -04003096static int selinux_mmap_addr(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097{
Eric Parised032182007-06-28 15:55:21 -04003098 int rc = 0;
David Howells275bb412008-11-14 10:39:19 +11003099 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Eric Paris84336d1a2009-07-31 12:54:05 -04003101 /*
3102 * notice that we are intentionally putting the SELinux check before
3103 * the secondary cap_file_mmap check. This is such a likely attempt
3104 * at bad behaviour/exploit that we always want to get the AVC, even
3105 * if DAC would have also denied the operation.
3106 */
Eric Parisa2551df72009-07-31 12:54:11 -04003107 if (addr < CONFIG_LSM_MMAP_MIN_ADDR) {
Eric Parised032182007-06-28 15:55:21 -04003108 rc = avc_has_perm(sid, sid, SECCLASS_MEMPROTECT,
3109 MEMPROTECT__MMAP_ZERO, NULL);
Eric Paris84336d1a2009-07-31 12:54:05 -04003110 if (rc)
3111 return rc;
3112 }
3113
3114 /* do DAC check on address space usage */
Al Viroe5467852012-05-30 13:30:51 -04003115 return cap_mmap_addr(addr);
3116}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Al Viroe5467852012-05-30 13:30:51 -04003118static int selinux_mmap_file(struct file *file, unsigned long reqprot,
3119 unsigned long prot, unsigned long flags)
3120{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 if (selinux_checkreqprot)
3122 prot = reqprot;
3123
3124 return file_map_prot_check(file, prot,
3125 (flags & MAP_TYPE) == MAP_SHARED);
3126}
3127
3128static int selinux_file_mprotect(struct vm_area_struct *vma,
3129 unsigned long reqprot,
3130 unsigned long prot)
3131{
David Howells88e67f32008-11-14 10:39:21 +11003132 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
3134 if (selinux_checkreqprot)
3135 prot = reqprot;
3136
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003137 if (default_noexec &&
3138 (prot & PROT_EXEC) && !(vma->vm_flags & VM_EXEC)) {
James Morrisd541bbe2009-01-29 12:19:51 +11003139 int rc = 0;
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003140 if (vma->vm_start >= vma->vm_mm->start_brk &&
3141 vma->vm_end <= vma->vm_mm->brk) {
David Howellsd84f4f92008-11-14 10:39:23 +11003142 rc = cred_has_perm(cred, cred, PROCESS__EXECHEAP);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003143 } else if (!vma->vm_file &&
3144 vma->vm_start <= vma->vm_mm->start_stack &&
3145 vma->vm_end >= vma->vm_mm->start_stack) {
David Howells3b11a1d2008-11-14 10:39:26 +11003146 rc = current_has_perm(current, PROCESS__EXECSTACK);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003147 } else if (vma->vm_file && vma->anon_vma) {
3148 /*
3149 * We are making executable a file mapping that has
3150 * had some COW done. Since pages might have been
3151 * written, check ability to execute the possibly
3152 * modified content. This typically should only
3153 * occur for text relocations.
3154 */
David Howellsd84f4f92008-11-14 10:39:23 +11003155 rc = file_has_perm(cred, vma->vm_file, FILE__EXECMOD);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003156 }
Lorenzo Hernandez García-Hierro6b992192005-06-25 14:54:34 -07003157 if (rc)
3158 return rc;
3159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161 return file_map_prot_check(vma->vm_file, prot, vma->vm_flags&VM_SHARED);
3162}
3163
3164static int selinux_file_lock(struct file *file, unsigned int cmd)
3165{
David Howells88e67f32008-11-14 10:39:21 +11003166 const struct cred *cred = current_cred();
3167
3168 return file_has_perm(cred, file, FILE__LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169}
3170
3171static int selinux_file_fcntl(struct file *file, unsigned int cmd,
3172 unsigned long arg)
3173{
David Howells88e67f32008-11-14 10:39:21 +11003174 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 int err = 0;
3176
3177 switch (cmd) {
Eric Paris828dfe12008-04-17 13:17:49 -04003178 case F_SETFL:
Eric Paris828dfe12008-04-17 13:17:49 -04003179 if ((file->f_flags & O_APPEND) && !(arg & O_APPEND)) {
David Howells88e67f32008-11-14 10:39:21 +11003180 err = file_has_perm(cred, file, FILE__WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003182 }
3183 /* fall through */
3184 case F_SETOWN:
3185 case F_SETSIG:
3186 case F_GETFL:
3187 case F_GETOWN:
3188 case F_GETSIG:
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -07003189 case F_GETOWNER_UIDS:
Eric Paris828dfe12008-04-17 13:17:49 -04003190 /* Just check FD__USE permission */
David Howells88e67f32008-11-14 10:39:21 +11003191 err = file_has_perm(cred, file, 0);
Eric Paris828dfe12008-04-17 13:17:49 -04003192 break;
3193 case F_GETLK:
3194 case F_SETLK:
3195 case F_SETLKW:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196#if BITS_PER_LONG == 32
Eric Paris828dfe12008-04-17 13:17:49 -04003197 case F_GETLK64:
3198 case F_SETLK64:
3199 case F_SETLKW64:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200#endif
David Howells88e67f32008-11-14 10:39:21 +11003201 err = file_has_perm(cred, file, FILE__LOCK);
Eric Paris828dfe12008-04-17 13:17:49 -04003202 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 }
3204
3205 return err;
3206}
3207
3208static int selinux_file_set_fowner(struct file *file)
3209{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 struct file_security_struct *fsec;
3211
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 fsec = file->f_security;
David Howells275bb412008-11-14 10:39:19 +11003213 fsec->fown_sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
3215 return 0;
3216}
3217
3218static int selinux_file_send_sigiotask(struct task_struct *tsk,
3219 struct fown_struct *fown, int signum)
3220{
Eric Paris828dfe12008-04-17 13:17:49 -04003221 struct file *file;
Stephen Smalley65c90bc2009-05-04 15:43:18 -04003222 u32 sid = task_sid(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 u32 perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 struct file_security_struct *fsec;
3225
3226 /* struct fown_struct is never outside the context of a struct file */
Eric Paris828dfe12008-04-17 13:17:49 -04003227 file = container_of(fown, struct file, f_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 fsec = file->f_security;
3230
3231 if (!signum)
3232 perm = signal_to_av(SIGIO); /* as per send_sigio_to_task */
3233 else
3234 perm = signal_to_av(signum);
3235
David Howells275bb412008-11-14 10:39:19 +11003236 return avc_has_perm(fsec->fown_sid, sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 SECCLASS_PROCESS, perm, NULL);
3238}
3239
3240static int selinux_file_receive(struct file *file)
3241{
David Howells88e67f32008-11-14 10:39:21 +11003242 const struct cred *cred = current_cred();
3243
3244 return file_has_perm(cred, file, file_to_av(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245}
3246
Eric Paris83d49852012-04-04 13:45:40 -04003247static int selinux_file_open(struct file *file, const struct cred *cred)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003248{
3249 struct file_security_struct *fsec;
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003250 struct inode_security_struct *isec;
David Howellsd84f4f92008-11-14 10:39:23 +11003251
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003252 fsec = file->f_security;
Al Viro496ad9a2013-01-23 17:07:38 -05003253 isec = file_inode(file)->i_security;
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003254 /*
3255 * Save inode label and policy sequence number
3256 * at open-time so that selinux_file_permission
3257 * can determine whether revalidation is necessary.
3258 * Task label is already saved in the file security
3259 * struct as its SID.
3260 */
3261 fsec->isid = isec->sid;
3262 fsec->pseqno = avc_policy_seqno();
3263 /*
3264 * Since the inode label or policy seqno may have changed
3265 * between the selinux_inode_permission check and the saving
3266 * of state above, recheck that access is still permitted.
3267 * Otherwise, access might never be revalidated against the
3268 * new inode label or new policy.
3269 * This check is not redundant - do not remove.
3270 */
Eric Paris602a8dd2012-04-04 15:01:42 -04003271 return path_has_perm(cred, &file->f_path, open_file_to_av(file));
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003272}
3273
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274/* task security operations */
3275
3276static int selinux_task_create(unsigned long clone_flags)
3277{
David Howells3b11a1d2008-11-14 10:39:26 +11003278 return current_has_perm(current, PROCESS__FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279}
3280
David Howellsf1752ee2008-11-14 10:39:17 +11003281/*
David Howellsee18d642009-09-02 09:14:21 +01003282 * allocate the SELinux part of blank credentials
3283 */
3284static int selinux_cred_alloc_blank(struct cred *cred, gfp_t gfp)
3285{
3286 struct task_security_struct *tsec;
3287
3288 tsec = kzalloc(sizeof(struct task_security_struct), gfp);
3289 if (!tsec)
3290 return -ENOMEM;
3291
3292 cred->security = tsec;
3293 return 0;
3294}
3295
3296/*
David Howellsf1752ee2008-11-14 10:39:17 +11003297 * detach and free the LSM part of a set of credentials
3298 */
3299static void selinux_cred_free(struct cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300{
David Howellsf1752ee2008-11-14 10:39:17 +11003301 struct task_security_struct *tsec = cred->security;
David Howellse0e81732009-09-02 09:13:40 +01003302
Tetsuo Handa2edeaa32011-02-07 13:36:10 +00003303 /*
3304 * cred->security == NULL if security_cred_alloc_blank() or
3305 * security_prepare_creds() returned an error.
3306 */
3307 BUG_ON(cred->security && (unsigned long) cred->security < PAGE_SIZE);
David Howellse0e81732009-09-02 09:13:40 +01003308 cred->security = (void *) 0x7UL;
David Howellsf1752ee2008-11-14 10:39:17 +11003309 kfree(tsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310}
3311
David Howellsd84f4f92008-11-14 10:39:23 +11003312/*
3313 * prepare a new set of credentials for modification
3314 */
3315static int selinux_cred_prepare(struct cred *new, const struct cred *old,
3316 gfp_t gfp)
3317{
3318 const struct task_security_struct *old_tsec;
3319 struct task_security_struct *tsec;
3320
3321 old_tsec = old->security;
3322
3323 tsec = kmemdup(old_tsec, sizeof(struct task_security_struct), gfp);
3324 if (!tsec)
3325 return -ENOMEM;
3326
3327 new->security = tsec;
3328 return 0;
3329}
3330
3331/*
David Howellsee18d642009-09-02 09:14:21 +01003332 * transfer the SELinux data to a blank set of creds
3333 */
3334static void selinux_cred_transfer(struct cred *new, const struct cred *old)
3335{
3336 const struct task_security_struct *old_tsec = old->security;
3337 struct task_security_struct *tsec = new->security;
3338
3339 *tsec = *old_tsec;
3340}
3341
3342/*
David Howells3a3b7ce2008-11-14 10:39:28 +11003343 * set the security data for a kernel service
3344 * - all the creation contexts are set to unlabelled
3345 */
3346static int selinux_kernel_act_as(struct cred *new, u32 secid)
3347{
3348 struct task_security_struct *tsec = new->security;
3349 u32 sid = current_sid();
3350 int ret;
3351
3352 ret = avc_has_perm(sid, secid,
3353 SECCLASS_KERNEL_SERVICE,
3354 KERNEL_SERVICE__USE_AS_OVERRIDE,
3355 NULL);
3356 if (ret == 0) {
3357 tsec->sid = secid;
3358 tsec->create_sid = 0;
3359 tsec->keycreate_sid = 0;
3360 tsec->sockcreate_sid = 0;
3361 }
3362 return ret;
3363}
3364
3365/*
3366 * set the file creation context in a security record to the same as the
3367 * objective context of the specified inode
3368 */
3369static int selinux_kernel_create_files_as(struct cred *new, struct inode *inode)
3370{
3371 struct inode_security_struct *isec = inode->i_security;
3372 struct task_security_struct *tsec = new->security;
3373 u32 sid = current_sid();
3374 int ret;
3375
3376 ret = avc_has_perm(sid, isec->sid,
3377 SECCLASS_KERNEL_SERVICE,
3378 KERNEL_SERVICE__CREATE_FILES_AS,
3379 NULL);
3380
3381 if (ret == 0)
3382 tsec->create_sid = isec->sid;
David Howellsef574712010-02-26 01:56:16 +00003383 return ret;
David Howells3a3b7ce2008-11-14 10:39:28 +11003384}
3385
Eric Parisdd8dbf22009-11-03 16:35:32 +11003386static int selinux_kernel_module_request(char *kmod_name)
Eric Paris25354c42009-08-13 09:45:03 -04003387{
Eric Parisdd8dbf22009-11-03 16:35:32 +11003388 u32 sid;
3389 struct common_audit_data ad;
3390
3391 sid = task_sid(current);
3392
Eric Paris50c205f2012-04-04 15:01:43 -04003393 ad.type = LSM_AUDIT_DATA_KMOD;
Eric Parisdd8dbf22009-11-03 16:35:32 +11003394 ad.u.kmod_name = kmod_name;
3395
3396 return avc_has_perm(sid, SECINITSID_KERNEL, SECCLASS_SYSTEM,
3397 SYSTEM__MODULE_REQUEST, &ad);
Eric Paris25354c42009-08-13 09:45:03 -04003398}
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400static int selinux_task_setpgid(struct task_struct *p, pid_t pgid)
3401{
David Howells3b11a1d2008-11-14 10:39:26 +11003402 return current_has_perm(p, PROCESS__SETPGID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403}
3404
3405static int selinux_task_getpgid(struct task_struct *p)
3406{
David Howells3b11a1d2008-11-14 10:39:26 +11003407 return current_has_perm(p, PROCESS__GETPGID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408}
3409
3410static int selinux_task_getsid(struct task_struct *p)
3411{
David Howells3b11a1d2008-11-14 10:39:26 +11003412 return current_has_perm(p, PROCESS__GETSESSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413}
3414
David Quigleyf9008e42006-06-30 01:55:46 -07003415static void selinux_task_getsecid(struct task_struct *p, u32 *secid)
3416{
David Howells275bb412008-11-14 10:39:19 +11003417 *secid = task_sid(p);
David Quigleyf9008e42006-06-30 01:55:46 -07003418}
3419
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420static int selinux_task_setnice(struct task_struct *p, int nice)
3421{
3422 int rc;
3423
Eric Paris200ac532009-02-12 15:01:04 -05003424 rc = cap_task_setnice(p, nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 if (rc)
3426 return rc;
3427
David Howells3b11a1d2008-11-14 10:39:26 +11003428 return current_has_perm(p, PROCESS__SETSCHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429}
3430
James Morris03e68062006-06-23 02:03:58 -07003431static int selinux_task_setioprio(struct task_struct *p, int ioprio)
3432{
Serge E. Hallynb5376772007-10-16 23:31:36 -07003433 int rc;
3434
Eric Paris200ac532009-02-12 15:01:04 -05003435 rc = cap_task_setioprio(p, ioprio);
Serge E. Hallynb5376772007-10-16 23:31:36 -07003436 if (rc)
3437 return rc;
3438
David Howells3b11a1d2008-11-14 10:39:26 +11003439 return current_has_perm(p, PROCESS__SETSCHED);
James Morris03e68062006-06-23 02:03:58 -07003440}
3441
David Quigleya1836a42006-06-30 01:55:49 -07003442static int selinux_task_getioprio(struct task_struct *p)
3443{
David Howells3b11a1d2008-11-14 10:39:26 +11003444 return current_has_perm(p, PROCESS__GETSCHED);
David Quigleya1836a42006-06-30 01:55:49 -07003445}
3446
Jiri Slaby8fd00b42009-08-26 18:41:16 +02003447static int selinux_task_setrlimit(struct task_struct *p, unsigned int resource,
3448 struct rlimit *new_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449{
Jiri Slaby8fd00b42009-08-26 18:41:16 +02003450 struct rlimit *old_rlim = p->signal->rlim + resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
3452 /* Control the ability to change the hard limit (whether
3453 lowering or raising it), so that the hard limit can
3454 later be used as a safe reset point for the soft limit
David Howellsd84f4f92008-11-14 10:39:23 +11003455 upon context transitions. See selinux_bprm_committing_creds. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 if (old_rlim->rlim_max != new_rlim->rlim_max)
Jiri Slaby8fd00b42009-08-26 18:41:16 +02003457 return current_has_perm(p, PROCESS__SETRLIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
3459 return 0;
3460}
3461
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003462static int selinux_task_setscheduler(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463{
Serge E. Hallynb5376772007-10-16 23:31:36 -07003464 int rc;
3465
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003466 rc = cap_task_setscheduler(p);
Serge E. Hallynb5376772007-10-16 23:31:36 -07003467 if (rc)
3468 return rc;
3469
David Howells3b11a1d2008-11-14 10:39:26 +11003470 return current_has_perm(p, PROCESS__SETSCHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471}
3472
3473static int selinux_task_getscheduler(struct task_struct *p)
3474{
David Howells3b11a1d2008-11-14 10:39:26 +11003475 return current_has_perm(p, PROCESS__GETSCHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476}
3477
David Quigley35601542006-06-23 02:04:01 -07003478static int selinux_task_movememory(struct task_struct *p)
3479{
David Howells3b11a1d2008-11-14 10:39:26 +11003480 return current_has_perm(p, PROCESS__SETSCHED);
David Quigley35601542006-06-23 02:04:01 -07003481}
3482
David Quigleyf9008e42006-06-30 01:55:46 -07003483static int selinux_task_kill(struct task_struct *p, struct siginfo *info,
3484 int sig, u32 secid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485{
3486 u32 perm;
3487 int rc;
3488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 if (!sig)
3490 perm = PROCESS__SIGNULL; /* null signal; existence test */
3491 else
3492 perm = signal_to_av(sig);
David Quigleyf9008e42006-06-30 01:55:46 -07003493 if (secid)
David Howells275bb412008-11-14 10:39:19 +11003494 rc = avc_has_perm(secid, task_sid(p),
3495 SECCLASS_PROCESS, perm, NULL);
David Quigleyf9008e42006-06-30 01:55:46 -07003496 else
David Howells3b11a1d2008-11-14 10:39:26 +11003497 rc = current_has_perm(p, perm);
David Quigleyf9008e42006-06-30 01:55:46 -07003498 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499}
3500
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501static int selinux_task_wait(struct task_struct *p)
3502{
Eric Paris8a535142007-10-22 16:10:31 -04003503 return task_has_perm(p, current, PROCESS__SIGCHLD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504}
3505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506static void selinux_task_to_inode(struct task_struct *p,
3507 struct inode *inode)
3508{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 struct inode_security_struct *isec = inode->i_security;
David Howells275bb412008-11-14 10:39:19 +11003510 u32 sid = task_sid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
David Howells275bb412008-11-14 10:39:19 +11003512 isec->sid = sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 isec->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514}
3515
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516/* Returns error only if unable to parse addresses */
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003517static int selinux_parse_skb_ipv4(struct sk_buff *skb,
Thomas Liu2bf49692009-07-14 12:14:09 -04003518 struct common_audit_data *ad, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519{
3520 int offset, ihlen, ret = -EINVAL;
3521 struct iphdr _iph, *ih;
3522
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03003523 offset = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 ih = skb_header_pointer(skb, offset, sizeof(_iph), &_iph);
3525 if (ih == NULL)
3526 goto out;
3527
3528 ihlen = ih->ihl * 4;
3529 if (ihlen < sizeof(_iph))
3530 goto out;
3531
Eric Paris48c62af2012-04-02 13:15:44 -04003532 ad->u.net->v4info.saddr = ih->saddr;
3533 ad->u.net->v4info.daddr = ih->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 ret = 0;
3535
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003536 if (proto)
3537 *proto = ih->protocol;
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 switch (ih->protocol) {
Eric Paris828dfe12008-04-17 13:17:49 -04003540 case IPPROTO_TCP: {
3541 struct tcphdr _tcph, *th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Eric Paris828dfe12008-04-17 13:17:49 -04003543 if (ntohs(ih->frag_off) & IP_OFFSET)
3544 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
3546 offset += ihlen;
3547 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3548 if (th == NULL)
3549 break;
3550
Eric Paris48c62af2012-04-02 13:15:44 -04003551 ad->u.net->sport = th->source;
3552 ad->u.net->dport = th->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
Eric Paris828dfe12008-04-17 13:17:49 -04003556 case IPPROTO_UDP: {
3557 struct udphdr _udph, *uh;
3558
3559 if (ntohs(ih->frag_off) & IP_OFFSET)
3560 break;
3561
3562 offset += ihlen;
3563 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3564 if (uh == NULL)
3565 break;
3566
Eric Paris48c62af2012-04-02 13:15:44 -04003567 ad->u.net->sport = uh->source;
3568 ad->u.net->dport = uh->dest;
Eric Paris828dfe12008-04-17 13:17:49 -04003569 break;
3570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
James Morris2ee92d42006-11-13 16:09:01 -08003572 case IPPROTO_DCCP: {
3573 struct dccp_hdr _dccph, *dh;
3574
3575 if (ntohs(ih->frag_off) & IP_OFFSET)
3576 break;
3577
3578 offset += ihlen;
3579 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3580 if (dh == NULL)
3581 break;
3582
Eric Paris48c62af2012-04-02 13:15:44 -04003583 ad->u.net->sport = dh->dccph_sport;
3584 ad->u.net->dport = dh->dccph_dport;
James Morris2ee92d42006-11-13 16:09:01 -08003585 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003586 }
James Morris2ee92d42006-11-13 16:09:01 -08003587
Eric Paris828dfe12008-04-17 13:17:49 -04003588 default:
3589 break;
3590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591out:
3592 return ret;
3593}
3594
3595#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3596
3597/* Returns error only if unable to parse addresses */
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003598static int selinux_parse_skb_ipv6(struct sk_buff *skb,
Thomas Liu2bf49692009-07-14 12:14:09 -04003599 struct common_audit_data *ad, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600{
3601 u8 nexthdr;
3602 int ret = -EINVAL, offset;
3603 struct ipv6hdr _ipv6h, *ip6;
Jesse Gross75f28112011-11-30 17:05:51 -08003604 __be16 frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03003606 offset = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3608 if (ip6 == NULL)
3609 goto out;
3610
Eric Paris48c62af2012-04-02 13:15:44 -04003611 ad->u.net->v6info.saddr = ip6->saddr;
3612 ad->u.net->v6info.daddr = ip6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 ret = 0;
3614
3615 nexthdr = ip6->nexthdr;
3616 offset += sizeof(_ipv6h);
Jesse Gross75f28112011-11-30 17:05:51 -08003617 offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 if (offset < 0)
3619 goto out;
3620
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003621 if (proto)
3622 *proto = nexthdr;
3623
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 switch (nexthdr) {
3625 case IPPROTO_TCP: {
Eric Paris828dfe12008-04-17 13:17:49 -04003626 struct tcphdr _tcph, *th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
3628 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3629 if (th == NULL)
3630 break;
3631
Eric Paris48c62af2012-04-02 13:15:44 -04003632 ad->u.net->sport = th->source;
3633 ad->u.net->dport = th->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 break;
3635 }
3636
3637 case IPPROTO_UDP: {
3638 struct udphdr _udph, *uh;
3639
3640 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3641 if (uh == NULL)
3642 break;
3643
Eric Paris48c62af2012-04-02 13:15:44 -04003644 ad->u.net->sport = uh->source;
3645 ad->u.net->dport = uh->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 break;
3647 }
3648
James Morris2ee92d42006-11-13 16:09:01 -08003649 case IPPROTO_DCCP: {
3650 struct dccp_hdr _dccph, *dh;
3651
3652 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3653 if (dh == NULL)
3654 break;
3655
Eric Paris48c62af2012-04-02 13:15:44 -04003656 ad->u.net->sport = dh->dccph_sport;
3657 ad->u.net->dport = dh->dccph_dport;
James Morris2ee92d42006-11-13 16:09:01 -08003658 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003659 }
James Morris2ee92d42006-11-13 16:09:01 -08003660
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 /* includes fragments */
3662 default:
3663 break;
3664 }
3665out:
3666 return ret;
3667}
3668
3669#endif /* IPV6 */
3670
Thomas Liu2bf49692009-07-14 12:14:09 -04003671static int selinux_parse_skb(struct sk_buff *skb, struct common_audit_data *ad,
David Howellscf9481e2008-07-27 21:31:07 +10003672 char **_addrp, int src, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673{
David Howellscf9481e2008-07-27 21:31:07 +10003674 char *addrp;
3675 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
Eric Paris48c62af2012-04-02 13:15:44 -04003677 switch (ad->u.net->family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 case PF_INET:
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003679 ret = selinux_parse_skb_ipv4(skb, ad, proto);
David Howellscf9481e2008-07-27 21:31:07 +10003680 if (ret)
3681 goto parse_error;
Eric Paris48c62af2012-04-02 13:15:44 -04003682 addrp = (char *)(src ? &ad->u.net->v4info.saddr :
3683 &ad->u.net->v4info.daddr);
David Howellscf9481e2008-07-27 21:31:07 +10003684 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
3686#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3687 case PF_INET6:
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003688 ret = selinux_parse_skb_ipv6(skb, ad, proto);
David Howellscf9481e2008-07-27 21:31:07 +10003689 if (ret)
3690 goto parse_error;
Eric Paris48c62af2012-04-02 13:15:44 -04003691 addrp = (char *)(src ? &ad->u.net->v6info.saddr :
3692 &ad->u.net->v6info.daddr);
David Howellscf9481e2008-07-27 21:31:07 +10003693 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694#endif /* IPV6 */
3695 default:
David Howellscf9481e2008-07-27 21:31:07 +10003696 addrp = NULL;
3697 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 }
3699
David Howellscf9481e2008-07-27 21:31:07 +10003700parse_error:
3701 printk(KERN_WARNING
3702 "SELinux: failure in selinux_parse_skb(),"
3703 " unable to parse packet\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 return ret;
David Howellscf9481e2008-07-27 21:31:07 +10003705
3706okay:
3707 if (_addrp)
3708 *_addrp = addrp;
3709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710}
3711
Paul Moore4f6a9932007-03-01 14:35:22 -05003712/**
Paul Moore220deb92008-01-29 08:38:23 -05003713 * selinux_skb_peerlbl_sid - Determine the peer label of a packet
Paul Moore4f6a9932007-03-01 14:35:22 -05003714 * @skb: the packet
Paul Moore75e22912008-01-29 08:38:04 -05003715 * @family: protocol family
Paul Moore220deb92008-01-29 08:38:23 -05003716 * @sid: the packet's peer label SID
Paul Moore4f6a9932007-03-01 14:35:22 -05003717 *
3718 * Description:
Paul Moore220deb92008-01-29 08:38:23 -05003719 * Check the various different forms of network peer labeling and determine
3720 * the peer label/SID for the packet; most of the magic actually occurs in
3721 * the security server function security_net_peersid_cmp(). The function
3722 * returns zero if the value in @sid is valid (although it may be SECSID_NULL)
3723 * or -EACCES if @sid is invalid due to inconsistencies with the different
3724 * peer labels.
Paul Moore4f6a9932007-03-01 14:35:22 -05003725 *
3726 */
Paul Moore220deb92008-01-29 08:38:23 -05003727static int selinux_skb_peerlbl_sid(struct sk_buff *skb, u16 family, u32 *sid)
Paul Moore4f6a9932007-03-01 14:35:22 -05003728{
Paul Moore71f1cb02008-01-29 08:51:16 -05003729 int err;
Paul Moore4f6a9932007-03-01 14:35:22 -05003730 u32 xfrm_sid;
3731 u32 nlbl_sid;
Paul Moore220deb92008-01-29 08:38:23 -05003732 u32 nlbl_type;
Paul Moore4f6a9932007-03-01 14:35:22 -05003733
Paul Moorebed4d7e2013-07-23 17:38:40 -04003734 err = selinux_skb_xfrm_sid(skb, &xfrm_sid);
3735 if (unlikely(err))
3736 return -EACCES;
3737 err = selinux_netlbl_skbuff_getsid(skb, family, &nlbl_type, &nlbl_sid);
3738 if (unlikely(err))
3739 return -EACCES;
Paul Moore220deb92008-01-29 08:38:23 -05003740
Paul Moore71f1cb02008-01-29 08:51:16 -05003741 err = security_net_peersid_resolve(nlbl_sid, nlbl_type, xfrm_sid, sid);
3742 if (unlikely(err)) {
3743 printk(KERN_WARNING
3744 "SELinux: failure in selinux_skb_peerlbl_sid(),"
3745 " unable to determine packet's peer label\n");
Paul Moore220deb92008-01-29 08:38:23 -05003746 return -EACCES;
Paul Moore71f1cb02008-01-29 08:51:16 -05003747 }
Paul Moore220deb92008-01-29 08:38:23 -05003748
3749 return 0;
Paul Moore4f6a9932007-03-01 14:35:22 -05003750}
3751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752/* socket security operations */
Paul Moored4f2d972010-04-22 14:46:18 -04003753
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003754static int socket_sockcreate_sid(const struct task_security_struct *tsec,
3755 u16 secclass, u32 *socksid)
Paul Moored4f2d972010-04-22 14:46:18 -04003756{
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003757 if (tsec->sockcreate_sid > SECSID_NULL) {
3758 *socksid = tsec->sockcreate_sid;
3759 return 0;
3760 }
3761
3762 return security_transition_sid(tsec->sid, tsec->sid, secclass, NULL,
3763 socksid);
Paul Moored4f2d972010-04-22 14:46:18 -04003764}
3765
Paul Moore253bfae2010-04-22 14:46:19 -04003766static int sock_has_perm(struct task_struct *task, struct sock *sk, u32 perms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767{
Paul Moore253bfae2010-04-22 14:46:19 -04003768 struct sk_security_struct *sksec = sk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04003769 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04003770 struct lsm_network_audit net = {0,};
Paul Moore253bfae2010-04-22 14:46:19 -04003771 u32 tsid = task_sid(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Paul Moore253bfae2010-04-22 14:46:19 -04003773 if (sksec->sid == SECINITSID_KERNEL)
3774 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
Eric Paris50c205f2012-04-04 15:01:43 -04003776 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04003777 ad.u.net = &net;
3778 ad.u.net->sk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Paul Moore253bfae2010-04-22 14:46:19 -04003780 return avc_has_perm(tsid, sksec->sid, sksec->sclass, perms, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781}
3782
3783static int selinux_socket_create(int family, int type,
3784 int protocol, int kern)
3785{
Paul Moore5fb49872010-04-22 14:46:19 -04003786 const struct task_security_struct *tsec = current_security();
Paul Moored4f2d972010-04-22 14:46:18 -04003787 u32 newsid;
David Howells275bb412008-11-14 10:39:19 +11003788 u16 secclass;
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003789 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
3791 if (kern)
Paul Moored4f2d972010-04-22 14:46:18 -04003792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
David Howells275bb412008-11-14 10:39:19 +11003794 secclass = socket_type_to_security_class(family, type, protocol);
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003795 rc = socket_sockcreate_sid(tsec, secclass, &newsid);
3796 if (rc)
3797 return rc;
3798
Paul Moored4f2d972010-04-22 14:46:18 -04003799 return avc_has_perm(tsec->sid, newsid, secclass, SOCKET__CREATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800}
3801
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003802static int selinux_socket_post_create(struct socket *sock, int family,
3803 int type, int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804{
Paul Moore5fb49872010-04-22 14:46:19 -04003805 const struct task_security_struct *tsec = current_security();
Paul Moored4f2d972010-04-22 14:46:18 -04003806 struct inode_security_struct *isec = SOCK_INODE(sock)->i_security;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07003807 struct sk_security_struct *sksec;
David Howells275bb412008-11-14 10:39:19 +11003808 int err = 0;
3809
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003810 isec->sclass = socket_type_to_security_class(family, type, protocol);
3811
David Howells275bb412008-11-14 10:39:19 +11003812 if (kern)
3813 isec->sid = SECINITSID_KERNEL;
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003814 else {
3815 err = socket_sockcreate_sid(tsec, isec->sclass, &(isec->sid));
3816 if (err)
3817 return err;
3818 }
David Howells275bb412008-11-14 10:39:19 +11003819
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 isec->initialized = 1;
3821
Venkat Yekkirala892c1412006-08-04 23:08:56 -07003822 if (sock->sk) {
3823 sksec = sock->sk->sk_security;
3824 sksec->sid = isec->sid;
Paul Moore220deb92008-01-29 08:38:23 -05003825 sksec->sclass = isec->sclass;
Paul Moore389fb8002009-03-27 17:10:34 -04003826 err = selinux_netlbl_socket_post_create(sock->sk, family);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07003827 }
3828
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003829 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830}
3831
3832/* Range of port numbers used to automatically bind.
3833 Need to determine whether we should perform a name_bind
3834 permission check between the socket and the port number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
3836static int selinux_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen)
3837{
Paul Moore253bfae2010-04-22 14:46:19 -04003838 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 u16 family;
3840 int err;
3841
Paul Moore253bfae2010-04-22 14:46:19 -04003842 err = sock_has_perm(current, sk, SOCKET__BIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 if (err)
3844 goto out;
3845
3846 /*
3847 * If PF_INET or PF_INET6, check name_bind permission for the port.
James Morris13402582005-09-30 14:24:34 -04003848 * Multiple address binding for SCTP is not supported yet: we just
3849 * check the first address now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 */
Paul Moore253bfae2010-04-22 14:46:19 -04003851 family = sk->sk_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 if (family == PF_INET || family == PF_INET6) {
3853 char *addrp;
Paul Moore253bfae2010-04-22 14:46:19 -04003854 struct sk_security_struct *sksec = sk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04003855 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04003856 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 struct sockaddr_in *addr4 = NULL;
3858 struct sockaddr_in6 *addr6 = NULL;
3859 unsigned short snum;
James Morrise399f982008-06-12 01:39:58 +10003860 u32 sid, node_perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 if (family == PF_INET) {
3863 addr4 = (struct sockaddr_in *)address;
3864 snum = ntohs(addr4->sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 addrp = (char *)&addr4->sin_addr.s_addr;
3866 } else {
3867 addr6 = (struct sockaddr_in6 *)address;
3868 snum = ntohs(addr6->sin6_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 addrp = (char *)&addr6->sin6_addr.s6_addr;
3870 }
3871
Stephen Hemminger227b60f2007-10-10 17:30:46 -07003872 if (snum) {
3873 int low, high;
3874
3875 inet_get_local_port_range(&low, &high);
3876
3877 if (snum < max(PROT_SOCK, low) || snum > high) {
Paul Moore3e112172008-04-10 10:48:14 -04003878 err = sel_netport_sid(sk->sk_protocol,
3879 snum, &sid);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07003880 if (err)
3881 goto out;
Eric Paris50c205f2012-04-04 15:01:43 -04003882 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04003883 ad.u.net = &net;
3884 ad.u.net->sport = htons(snum);
3885 ad.u.net->family = family;
Paul Moore253bfae2010-04-22 14:46:19 -04003886 err = avc_has_perm(sksec->sid, sid,
3887 sksec->sclass,
Stephen Hemminger227b60f2007-10-10 17:30:46 -07003888 SOCKET__NAME_BIND, &ad);
3889 if (err)
3890 goto out;
3891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 }
Eric Paris828dfe12008-04-17 13:17:49 -04003893
Paul Moore253bfae2010-04-22 14:46:19 -04003894 switch (sksec->sclass) {
James Morris13402582005-09-30 14:24:34 -04003895 case SECCLASS_TCP_SOCKET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 node_perm = TCP_SOCKET__NODE_BIND;
3897 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003898
James Morris13402582005-09-30 14:24:34 -04003899 case SECCLASS_UDP_SOCKET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 node_perm = UDP_SOCKET__NODE_BIND;
3901 break;
James Morris2ee92d42006-11-13 16:09:01 -08003902
3903 case SECCLASS_DCCP_SOCKET:
3904 node_perm = DCCP_SOCKET__NODE_BIND;
3905 break;
3906
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 default:
3908 node_perm = RAWIP_SOCKET__NODE_BIND;
3909 break;
3910 }
Eric Paris828dfe12008-04-17 13:17:49 -04003911
Paul Moore224dfbd2008-01-29 08:38:13 -05003912 err = sel_netnode_sid(addrp, family, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 if (err)
3914 goto out;
Eric Paris828dfe12008-04-17 13:17:49 -04003915
Eric Paris50c205f2012-04-04 15:01:43 -04003916 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04003917 ad.u.net = &net;
3918 ad.u.net->sport = htons(snum);
3919 ad.u.net->family = family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
3921 if (family == PF_INET)
Eric Paris48c62af2012-04-02 13:15:44 -04003922 ad.u.net->v4info.saddr = addr4->sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 else
Eric Paris48c62af2012-04-02 13:15:44 -04003924 ad.u.net->v6info.saddr = addr6->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
Paul Moore253bfae2010-04-22 14:46:19 -04003926 err = avc_has_perm(sksec->sid, sid,
3927 sksec->sclass, node_perm, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 if (err)
3929 goto out;
3930 }
3931out:
3932 return err;
3933}
3934
3935static int selinux_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen)
3936{
Paul Moore014ab192008-10-10 10:16:33 -04003937 struct sock *sk = sock->sk;
Paul Moore253bfae2010-04-22 14:46:19 -04003938 struct sk_security_struct *sksec = sk->sk_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 int err;
3940
Paul Moore253bfae2010-04-22 14:46:19 -04003941 err = sock_has_perm(current, sk, SOCKET__CONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 if (err)
3943 return err;
3944
3945 /*
James Morris2ee92d42006-11-13 16:09:01 -08003946 * If a TCP or DCCP socket, check name_connect permission for the port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 */
Paul Moore253bfae2010-04-22 14:46:19 -04003948 if (sksec->sclass == SECCLASS_TCP_SOCKET ||
3949 sksec->sclass == SECCLASS_DCCP_SOCKET) {
Thomas Liu2bf49692009-07-14 12:14:09 -04003950 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04003951 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 struct sockaddr_in *addr4 = NULL;
3953 struct sockaddr_in6 *addr6 = NULL;
3954 unsigned short snum;
James Morris2ee92d42006-11-13 16:09:01 -08003955 u32 sid, perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
3957 if (sk->sk_family == PF_INET) {
3958 addr4 = (struct sockaddr_in *)address;
Stephen Smalley911656f2005-07-28 21:16:21 -07003959 if (addrlen < sizeof(struct sockaddr_in))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 return -EINVAL;
3961 snum = ntohs(addr4->sin_port);
3962 } else {
3963 addr6 = (struct sockaddr_in6 *)address;
Stephen Smalley911656f2005-07-28 21:16:21 -07003964 if (addrlen < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 return -EINVAL;
3966 snum = ntohs(addr6->sin6_port);
3967 }
3968
Paul Moore3e112172008-04-10 10:48:14 -04003969 err = sel_netport_sid(sk->sk_protocol, snum, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 if (err)
3971 goto out;
3972
Paul Moore253bfae2010-04-22 14:46:19 -04003973 perm = (sksec->sclass == SECCLASS_TCP_SOCKET) ?
James Morris2ee92d42006-11-13 16:09:01 -08003974 TCP_SOCKET__NAME_CONNECT : DCCP_SOCKET__NAME_CONNECT;
3975
Eric Paris50c205f2012-04-04 15:01:43 -04003976 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04003977 ad.u.net = &net;
3978 ad.u.net->dport = htons(snum);
3979 ad.u.net->family = sk->sk_family;
Paul Moore253bfae2010-04-22 14:46:19 -04003980 err = avc_has_perm(sksec->sid, sid, sksec->sclass, perm, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 if (err)
3982 goto out;
3983 }
3984
Paul Moore014ab192008-10-10 10:16:33 -04003985 err = selinux_netlbl_socket_connect(sk, address);
3986
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987out:
3988 return err;
3989}
3990
3991static int selinux_socket_listen(struct socket *sock, int backlog)
3992{
Paul Moore253bfae2010-04-22 14:46:19 -04003993 return sock_has_perm(current, sock->sk, SOCKET__LISTEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994}
3995
3996static int selinux_socket_accept(struct socket *sock, struct socket *newsock)
3997{
3998 int err;
3999 struct inode_security_struct *isec;
4000 struct inode_security_struct *newisec;
4001
Paul Moore253bfae2010-04-22 14:46:19 -04004002 err = sock_has_perm(current, sock->sk, SOCKET__ACCEPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 if (err)
4004 return err;
4005
4006 newisec = SOCK_INODE(newsock)->i_security;
4007
4008 isec = SOCK_INODE(sock)->i_security;
4009 newisec->sclass = isec->sclass;
4010 newisec->sid = isec->sid;
4011 newisec->initialized = 1;
4012
4013 return 0;
4014}
4015
4016static int selinux_socket_sendmsg(struct socket *sock, struct msghdr *msg,
Eric Paris828dfe12008-04-17 13:17:49 -04004017 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018{
Paul Moore253bfae2010-04-22 14:46:19 -04004019 return sock_has_perm(current, sock->sk, SOCKET__WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020}
4021
4022static int selinux_socket_recvmsg(struct socket *sock, struct msghdr *msg,
4023 int size, int flags)
4024{
Paul Moore253bfae2010-04-22 14:46:19 -04004025 return sock_has_perm(current, sock->sk, SOCKET__READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026}
4027
4028static int selinux_socket_getsockname(struct socket *sock)
4029{
Paul Moore253bfae2010-04-22 14:46:19 -04004030 return sock_has_perm(current, sock->sk, SOCKET__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031}
4032
4033static int selinux_socket_getpeername(struct socket *sock)
4034{
Paul Moore253bfae2010-04-22 14:46:19 -04004035 return sock_has_perm(current, sock->sk, SOCKET__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036}
4037
Eric Paris828dfe12008-04-17 13:17:49 -04004038static int selinux_socket_setsockopt(struct socket *sock, int level, int optname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039{
Paul Mooref8687af2006-10-30 15:22:15 -08004040 int err;
4041
Paul Moore253bfae2010-04-22 14:46:19 -04004042 err = sock_has_perm(current, sock->sk, SOCKET__SETOPT);
Paul Mooref8687af2006-10-30 15:22:15 -08004043 if (err)
4044 return err;
4045
4046 return selinux_netlbl_socket_setsockopt(sock, level, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047}
4048
4049static int selinux_socket_getsockopt(struct socket *sock, int level,
4050 int optname)
4051{
Paul Moore253bfae2010-04-22 14:46:19 -04004052 return sock_has_perm(current, sock->sk, SOCKET__GETOPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053}
4054
4055static int selinux_socket_shutdown(struct socket *sock, int how)
4056{
Paul Moore253bfae2010-04-22 14:46:19 -04004057 return sock_has_perm(current, sock->sk, SOCKET__SHUTDOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058}
4059
David S. Miller3610cda2011-01-05 15:38:53 -08004060static int selinux_socket_unix_stream_connect(struct sock *sock,
4061 struct sock *other,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 struct sock *newsk)
4063{
David S. Miller3610cda2011-01-05 15:38:53 -08004064 struct sk_security_struct *sksec_sock = sock->sk_security;
4065 struct sk_security_struct *sksec_other = other->sk_security;
Paul Moore4d1e2452010-04-22 14:46:18 -04004066 struct sk_security_struct *sksec_new = newsk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04004067 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004068 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 int err;
4070
Eric Paris50c205f2012-04-04 15:01:43 -04004071 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004072 ad.u.net = &net;
4073 ad.u.net->sk = other;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Paul Moore4d1e2452010-04-22 14:46:18 -04004075 err = avc_has_perm(sksec_sock->sid, sksec_other->sid,
4076 sksec_other->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 UNIX_STREAM_SOCKET__CONNECTTO, &ad);
4078 if (err)
4079 return err;
4080
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 /* server child socket */
Paul Moore4d1e2452010-04-22 14:46:18 -04004082 sksec_new->peer_sid = sksec_sock->sid;
4083 err = security_sid_mls_copy(sksec_other->sid, sksec_sock->sid,
4084 &sksec_new->sid);
4085 if (err)
4086 return err;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004087
Paul Moore4d1e2452010-04-22 14:46:18 -04004088 /* connecting socket */
4089 sksec_sock->peer_sid = sksec_new->sid;
4090
4091 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092}
4093
4094static int selinux_socket_unix_may_send(struct socket *sock,
4095 struct socket *other)
4096{
Paul Moore253bfae2010-04-22 14:46:19 -04004097 struct sk_security_struct *ssec = sock->sk->sk_security;
4098 struct sk_security_struct *osec = other->sk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04004099 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004100 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
Eric Paris50c205f2012-04-04 15:01:43 -04004102 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004103 ad.u.net = &net;
4104 ad.u.net->sk = other->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Paul Moore253bfae2010-04-22 14:46:19 -04004106 return avc_has_perm(ssec->sid, osec->sid, osec->sclass, SOCKET__SENDTO,
4107 &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108}
4109
Paul Mooreeffad8d2008-01-29 08:49:27 -05004110static int selinux_inet_sys_rcv_skb(int ifindex, char *addrp, u16 family,
4111 u32 peer_sid,
Thomas Liu2bf49692009-07-14 12:14:09 -04004112 struct common_audit_data *ad)
Paul Mooreeffad8d2008-01-29 08:49:27 -05004113{
4114 int err;
4115 u32 if_sid;
4116 u32 node_sid;
4117
4118 err = sel_netif_sid(ifindex, &if_sid);
4119 if (err)
4120 return err;
4121 err = avc_has_perm(peer_sid, if_sid,
4122 SECCLASS_NETIF, NETIF__INGRESS, ad);
4123 if (err)
4124 return err;
4125
4126 err = sel_netnode_sid(addrp, family, &node_sid);
4127 if (err)
4128 return err;
4129 return avc_has_perm(peer_sid, node_sid,
4130 SECCLASS_NODE, NODE__RECVFROM, ad);
4131}
4132
Paul Moore220deb92008-01-29 08:38:23 -05004133static int selinux_sock_rcv_skb_compat(struct sock *sk, struct sk_buff *skb,
Paul Moored8395c82008-10-10 10:16:30 -04004134 u16 family)
Paul Moore220deb92008-01-29 08:38:23 -05004135{
Paul Moore277d3422008-12-31 12:54:11 -05004136 int err = 0;
Paul Moore220deb92008-01-29 08:38:23 -05004137 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore220deb92008-01-29 08:38:23 -05004138 u32 sk_sid = sksec->sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04004139 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004140 struct lsm_network_audit net = {0,};
Paul Moored8395c82008-10-10 10:16:30 -04004141 char *addrp;
4142
Eric Paris50c205f2012-04-04 15:01:43 -04004143 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004144 ad.u.net = &net;
4145 ad.u.net->netif = skb->skb_iif;
4146 ad.u.net->family = family;
Paul Moored8395c82008-10-10 10:16:30 -04004147 err = selinux_parse_skb(skb, &ad, &addrp, 1, NULL);
4148 if (err)
4149 return err;
Paul Moore220deb92008-01-29 08:38:23 -05004150
Paul Moore58bfbb52009-03-27 17:10:41 -04004151 if (selinux_secmark_enabled()) {
Paul Moore220deb92008-01-29 08:38:23 -05004152 err = avc_has_perm(sk_sid, skb->secmark, SECCLASS_PACKET,
Paul Moored8395c82008-10-10 10:16:30 -04004153 PACKET__RECV, &ad);
Paul Moore58bfbb52009-03-27 17:10:41 -04004154 if (err)
4155 return err;
4156 }
Paul Moore220deb92008-01-29 08:38:23 -05004157
Steffen Klassertb9679a72011-02-23 12:55:21 +01004158 err = selinux_netlbl_sock_rcv_skb(sksec, skb, family, &ad);
4159 if (err)
4160 return err;
4161 err = selinux_xfrm_sock_rcv_skb(sksec->sid, skb, &ad);
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004162
James Morris4e5ab4c2006-06-09 00:33:33 -07004163 return err;
4164}
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004165
James Morris4e5ab4c2006-06-09 00:33:33 -07004166static int selinux_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
4167{
Paul Moore220deb92008-01-29 08:38:23 -05004168 int err;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004169 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore220deb92008-01-29 08:38:23 -05004170 u16 family = sk->sk_family;
4171 u32 sk_sid = sksec->sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04004172 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004173 struct lsm_network_audit net = {0,};
Paul Moore220deb92008-01-29 08:38:23 -05004174 char *addrp;
Paul Moored8395c82008-10-10 10:16:30 -04004175 u8 secmark_active;
4176 u8 peerlbl_active;
James Morris4e5ab4c2006-06-09 00:33:33 -07004177
James Morris4e5ab4c2006-06-09 00:33:33 -07004178 if (family != PF_INET && family != PF_INET6)
Paul Moore220deb92008-01-29 08:38:23 -05004179 return 0;
James Morris4e5ab4c2006-06-09 00:33:33 -07004180
4181 /* Handle mapped IPv4 packets arriving via IPv6 sockets */
Al Viro87fcd702006-12-04 22:00:55 +00004182 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
James Morris4e5ab4c2006-06-09 00:33:33 -07004183 family = PF_INET;
4184
Paul Moored8395c82008-10-10 10:16:30 -04004185 /* If any sort of compatibility mode is enabled then handoff processing
4186 * to the selinux_sock_rcv_skb_compat() function to deal with the
4187 * special handling. We do this in an attempt to keep this function
4188 * as fast and as clean as possible. */
Paul Moore58bfbb52009-03-27 17:10:41 -04004189 if (!selinux_policycap_netpeer)
Paul Moored8395c82008-10-10 10:16:30 -04004190 return selinux_sock_rcv_skb_compat(sk, skb, family);
4191
4192 secmark_active = selinux_secmark_enabled();
4193 peerlbl_active = netlbl_enabled() || selinux_xfrm_enabled();
4194 if (!secmark_active && !peerlbl_active)
4195 return 0;
4196
Eric Paris50c205f2012-04-04 15:01:43 -04004197 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004198 ad.u.net = &net;
4199 ad.u.net->netif = skb->skb_iif;
4200 ad.u.net->family = family;
Paul Moore224dfbd2008-01-29 08:38:13 -05004201 err = selinux_parse_skb(skb, &ad, &addrp, 1, NULL);
James Morris4e5ab4c2006-06-09 00:33:33 -07004202 if (err)
Paul Moore220deb92008-01-29 08:38:23 -05004203 return err;
James Morris4e5ab4c2006-06-09 00:33:33 -07004204
Paul Moored8395c82008-10-10 10:16:30 -04004205 if (peerlbl_active) {
Paul Moored621d352008-01-29 08:43:36 -05004206 u32 peer_sid;
4207
4208 err = selinux_skb_peerlbl_sid(skb, family, &peer_sid);
4209 if (err)
4210 return err;
Eric Dumazet8964be42009-11-20 15:35:04 -08004211 err = selinux_inet_sys_rcv_skb(skb->skb_iif, addrp, family,
Paul Mooreeffad8d2008-01-29 08:49:27 -05004212 peer_sid, &ad);
Paul Mooredfaebe92008-10-10 10:16:31 -04004213 if (err) {
4214 selinux_netlbl_err(skb, err, 0);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004215 return err;
Paul Mooredfaebe92008-10-10 10:16:31 -04004216 }
Paul Moored621d352008-01-29 08:43:36 -05004217 err = avc_has_perm(sk_sid, peer_sid, SECCLASS_PEER,
4218 PEER__RECV, &ad);
Paul Mooredfaebe92008-10-10 10:16:31 -04004219 if (err)
4220 selinux_netlbl_err(skb, err, 0);
Paul Moored621d352008-01-29 08:43:36 -05004221 }
4222
Paul Moored8395c82008-10-10 10:16:30 -04004223 if (secmark_active) {
Paul Mooreeffad8d2008-01-29 08:49:27 -05004224 err = avc_has_perm(sk_sid, skb->secmark, SECCLASS_PACKET,
4225 PACKET__RECV, &ad);
4226 if (err)
4227 return err;
4228 }
4229
Paul Moored621d352008-01-29 08:43:36 -05004230 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231}
4232
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004233static int selinux_socket_getpeersec_stream(struct socket *sock, char __user *optval,
4234 int __user *optlen, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235{
4236 int err = 0;
4237 char *scontext;
4238 u32 scontext_len;
Paul Moore253bfae2010-04-22 14:46:19 -04004239 struct sk_security_struct *sksec = sock->sk->sk_security;
Paul Moore3de4bab2006-11-17 17:38:54 -05004240 u32 peer_sid = SECSID_NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Paul Moore253bfae2010-04-22 14:46:19 -04004242 if (sksec->sclass == SECCLASS_UNIX_STREAM_SOCKET ||
4243 sksec->sclass == SECCLASS_TCP_SOCKET)
Eric Parisdd3e7832010-04-07 15:08:46 -04004244 peer_sid = sksec->peer_sid;
Paul Moore253bfae2010-04-22 14:46:19 -04004245 if (peer_sid == SECSID_NULL)
4246 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004248 err = security_sid_to_context(peer_sid, &scontext, &scontext_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 if (err)
Paul Moore253bfae2010-04-22 14:46:19 -04004250 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
4252 if (scontext_len > len) {
4253 err = -ERANGE;
4254 goto out_len;
4255 }
4256
4257 if (copy_to_user(optval, scontext, scontext_len))
4258 err = -EFAULT;
4259
4260out_len:
4261 if (put_user(scontext_len, optlen))
4262 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 kfree(scontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 return err;
4265}
4266
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07004267static int selinux_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004268{
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07004269 u32 peer_secid = SECSID_NULL;
Paul Moore75e22912008-01-29 08:38:04 -05004270 u16 family;
Catherine Zhang877ce7c2006-06-29 12:27:47 -07004271
Paul Mooreaa862902008-10-10 10:16:29 -04004272 if (skb && skb->protocol == htons(ETH_P_IP))
4273 family = PF_INET;
4274 else if (skb && skb->protocol == htons(ETH_P_IPV6))
4275 family = PF_INET6;
4276 else if (sock)
Paul Moore75e22912008-01-29 08:38:04 -05004277 family = sock->sk->sk_family;
Paul Moore75e22912008-01-29 08:38:04 -05004278 else
4279 goto out;
4280
4281 if (sock && family == PF_UNIX)
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02004282 selinux_inode_getsecid(SOCK_INODE(sock), &peer_secid);
Paul Moore3de4bab2006-11-17 17:38:54 -05004283 else if (skb)
Paul Moore220deb92008-01-29 08:38:23 -05004284 selinux_skb_peerlbl_sid(skb, family, &peer_secid);
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004285
Paul Moore75e22912008-01-29 08:38:04 -05004286out:
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07004287 *secid = peer_secid;
Paul Moore75e22912008-01-29 08:38:04 -05004288 if (peer_secid == SECSID_NULL)
4289 return -EINVAL;
4290 return 0;
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004291}
4292
Al Viro7d877f32005-10-21 03:20:43 -04004293static int selinux_sk_alloc_security(struct sock *sk, int family, gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294{
Paul Moore84914b72010-04-22 14:46:18 -04004295 struct sk_security_struct *sksec;
4296
4297 sksec = kzalloc(sizeof(*sksec), priority);
4298 if (!sksec)
4299 return -ENOMEM;
4300
4301 sksec->peer_sid = SECINITSID_UNLABELED;
4302 sksec->sid = SECINITSID_UNLABELED;
4303 selinux_netlbl_sk_security_reset(sksec);
4304 sk->sk_security = sksec;
4305
4306 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307}
4308
4309static void selinux_sk_free_security(struct sock *sk)
4310{
Paul Moore84914b72010-04-22 14:46:18 -04004311 struct sk_security_struct *sksec = sk->sk_security;
4312
4313 sk->sk_security = NULL;
4314 selinux_netlbl_sk_security_free(sksec);
4315 kfree(sksec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316}
4317
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004318static void selinux_sk_clone_security(const struct sock *sk, struct sock *newsk)
4319{
Eric Parisdd3e7832010-04-07 15:08:46 -04004320 struct sk_security_struct *sksec = sk->sk_security;
4321 struct sk_security_struct *newsksec = newsk->sk_security;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004322
Eric Parisdd3e7832010-04-07 15:08:46 -04004323 newsksec->sid = sksec->sid;
4324 newsksec->peer_sid = sksec->peer_sid;
4325 newsksec->sclass = sksec->sclass;
Paul Moore99f59ed2006-08-29 17:53:48 -07004326
Eric Parisdd3e7832010-04-07 15:08:46 -04004327 selinux_netlbl_sk_security_reset(newsksec);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004328}
4329
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07004330static void selinux_sk_getsecid(struct sock *sk, u32 *secid)
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004331{
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004332 if (!sk)
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07004333 *secid = SECINITSID_ANY_SOCKET;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004334 else {
4335 struct sk_security_struct *sksec = sk->sk_security;
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004336
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07004337 *secid = sksec->sid;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004338 }
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004339}
4340
Eric Paris828dfe12008-04-17 13:17:49 -04004341static void selinux_sock_graft(struct sock *sk, struct socket *parent)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004342{
4343 struct inode_security_struct *isec = SOCK_INODE(parent)->i_security;
4344 struct sk_security_struct *sksec = sk->sk_security;
4345
David Woodhouse2148ccc2006-09-29 15:50:25 -07004346 if (sk->sk_family == PF_INET || sk->sk_family == PF_INET6 ||
4347 sk->sk_family == PF_UNIX)
4348 isec->sid = sksec->sid;
Paul Moore220deb92008-01-29 08:38:23 -05004349 sksec->sclass = isec->sclass;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004350}
4351
Adrian Bunk9a673e52006-08-15 00:03:53 -07004352static int selinux_inet_conn_request(struct sock *sk, struct sk_buff *skb,
4353 struct request_sock *req)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004354{
4355 struct sk_security_struct *sksec = sk->sk_security;
4356 int err;
Paul Mooreaa862902008-10-10 10:16:29 -04004357 u16 family = sk->sk_family;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07004358 u32 newsid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004359 u32 peersid;
4360
Paul Mooreaa862902008-10-10 10:16:29 -04004361 /* handle mapped IPv4 packets arriving via IPv6 sockets */
4362 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
4363 family = PF_INET;
4364
4365 err = selinux_skb_peerlbl_sid(skb, family, &peersid);
Paul Moore220deb92008-01-29 08:38:23 -05004366 if (err)
4367 return err;
Venkat Yekkiralaa51c64f2006-07-27 22:01:34 -07004368 if (peersid == SECSID_NULL) {
4369 req->secid = sksec->sid;
Paul Moore3de4bab2006-11-17 17:38:54 -05004370 req->peer_secid = SECSID_NULL;
Paul Moore389fb8002009-03-27 17:10:34 -04004371 } else {
4372 err = security_sid_mls_copy(sksec->sid, peersid, &newsid);
4373 if (err)
4374 return err;
4375 req->secid = newsid;
4376 req->peer_secid = peersid;
Venkat Yekkiralaa51c64f2006-07-27 22:01:34 -07004377 }
4378
Paul Moore389fb8002009-03-27 17:10:34 -04004379 return selinux_netlbl_inet_conn_request(req, family);
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004380}
4381
Adrian Bunk9a673e52006-08-15 00:03:53 -07004382static void selinux_inet_csk_clone(struct sock *newsk,
4383 const struct request_sock *req)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004384{
4385 struct sk_security_struct *newsksec = newsk->sk_security;
4386
4387 newsksec->sid = req->secid;
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004388 newsksec->peer_sid = req->peer_secid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004389 /* NOTE: Ideally, we should also get the isec->sid for the
4390 new socket in sync, but we don't have the isec available yet.
4391 So we will wait until sock_graft to do it, by which
4392 time it will have been created and available. */
Paul Moore99f59ed2006-08-29 17:53:48 -07004393
Paul Moore9f2ad662006-11-17 17:38:53 -05004394 /* We don't need to take any sort of lock here as we are the only
4395 * thread with access to newsksec */
Paul Moore389fb8002009-03-27 17:10:34 -04004396 selinux_netlbl_inet_csk_clone(newsk, req->rsk_ops->family);
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004397}
4398
Paul Moore014ab192008-10-10 10:16:33 -04004399static void selinux_inet_conn_established(struct sock *sk, struct sk_buff *skb)
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004400{
Paul Mooreaa862902008-10-10 10:16:29 -04004401 u16 family = sk->sk_family;
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004402 struct sk_security_struct *sksec = sk->sk_security;
4403
Paul Mooreaa862902008-10-10 10:16:29 -04004404 /* handle mapped IPv4 packets arriving via IPv6 sockets */
4405 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
4406 family = PF_INET;
4407
4408 selinux_skb_peerlbl_sid(skb, family, &sksec->peer_sid);
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004409}
4410
Eric Dumazetca10b9e2013-04-08 17:58:11 +00004411static void selinux_skb_owned_by(struct sk_buff *skb, struct sock *sk)
4412{
4413 skb_set_owner_w(skb, sk);
4414}
4415
Eric Paris2606fd12010-10-13 16:24:41 -04004416static int selinux_secmark_relabel_packet(u32 sid)
4417{
4418 const struct task_security_struct *__tsec;
4419 u32 tsid;
4420
4421 __tsec = current_security();
4422 tsid = __tsec->sid;
4423
4424 return avc_has_perm(tsid, sid, SECCLASS_PACKET, PACKET__RELABELTO, NULL);
4425}
4426
4427static void selinux_secmark_refcount_inc(void)
4428{
4429 atomic_inc(&selinux_secmark_refcount);
4430}
4431
4432static void selinux_secmark_refcount_dec(void)
4433{
4434 atomic_dec(&selinux_secmark_refcount);
4435}
4436
Adrian Bunk9a673e52006-08-15 00:03:53 -07004437static void selinux_req_classify_flow(const struct request_sock *req,
4438 struct flowi *fl)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004439{
David S. Miller1d28f422011-03-12 00:29:39 -05004440 fl->flowi_secid = req->secid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004441}
4442
Paul Moore5dbbaf22013-01-14 07:12:19 +00004443static int selinux_tun_dev_alloc_security(void **security)
4444{
4445 struct tun_security_struct *tunsec;
4446
4447 tunsec = kzalloc(sizeof(*tunsec), GFP_KERNEL);
4448 if (!tunsec)
4449 return -ENOMEM;
4450 tunsec->sid = current_sid();
4451
4452 *security = tunsec;
4453 return 0;
4454}
4455
4456static void selinux_tun_dev_free_security(void *security)
4457{
4458 kfree(security);
4459}
4460
Paul Mooreed6d76e2009-08-28 18:12:49 -04004461static int selinux_tun_dev_create(void)
4462{
4463 u32 sid = current_sid();
4464
4465 /* we aren't taking into account the "sockcreate" SID since the socket
4466 * that is being created here is not a socket in the traditional sense,
4467 * instead it is a private sock, accessible only to the kernel, and
4468 * representing a wide range of network traffic spanning multiple
4469 * connections unlike traditional sockets - check the TUN driver to
4470 * get a better understanding of why this socket is special */
4471
4472 return avc_has_perm(sid, sid, SECCLASS_TUN_SOCKET, TUN_SOCKET__CREATE,
4473 NULL);
4474}
4475
Paul Moore5dbbaf22013-01-14 07:12:19 +00004476static int selinux_tun_dev_attach_queue(void *security)
Paul Mooreed6d76e2009-08-28 18:12:49 -04004477{
Paul Moore5dbbaf22013-01-14 07:12:19 +00004478 struct tun_security_struct *tunsec = security;
4479
4480 return avc_has_perm(current_sid(), tunsec->sid, SECCLASS_TUN_SOCKET,
4481 TUN_SOCKET__ATTACH_QUEUE, NULL);
4482}
4483
4484static int selinux_tun_dev_attach(struct sock *sk, void *security)
4485{
4486 struct tun_security_struct *tunsec = security;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004487 struct sk_security_struct *sksec = sk->sk_security;
4488
4489 /* we don't currently perform any NetLabel based labeling here and it
4490 * isn't clear that we would want to do so anyway; while we could apply
4491 * labeling without the support of the TUN user the resulting labeled
4492 * traffic from the other end of the connection would almost certainly
4493 * cause confusion to the TUN user that had no idea network labeling
4494 * protocols were being used */
4495
Paul Moore5dbbaf22013-01-14 07:12:19 +00004496 sksec->sid = tunsec->sid;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004497 sksec->sclass = SECCLASS_TUN_SOCKET;
Paul Moore5dbbaf22013-01-14 07:12:19 +00004498
4499 return 0;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004500}
4501
Paul Moore5dbbaf22013-01-14 07:12:19 +00004502static int selinux_tun_dev_open(void *security)
Paul Mooreed6d76e2009-08-28 18:12:49 -04004503{
Paul Moore5dbbaf22013-01-14 07:12:19 +00004504 struct tun_security_struct *tunsec = security;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004505 u32 sid = current_sid();
4506 int err;
4507
Paul Moore5dbbaf22013-01-14 07:12:19 +00004508 err = avc_has_perm(sid, tunsec->sid, SECCLASS_TUN_SOCKET,
Paul Mooreed6d76e2009-08-28 18:12:49 -04004509 TUN_SOCKET__RELABELFROM, NULL);
4510 if (err)
4511 return err;
4512 err = avc_has_perm(sid, sid, SECCLASS_TUN_SOCKET,
4513 TUN_SOCKET__RELABELTO, NULL);
4514 if (err)
4515 return err;
Paul Moore5dbbaf22013-01-14 07:12:19 +00004516 tunsec->sid = sid;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004517
4518 return 0;
4519}
4520
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521static int selinux_nlmsg_perm(struct sock *sk, struct sk_buff *skb)
4522{
4523 int err = 0;
4524 u32 perm;
4525 struct nlmsghdr *nlh;
Paul Moore253bfae2010-04-22 14:46:19 -04004526 struct sk_security_struct *sksec = sk->sk_security;
Eric Paris828dfe12008-04-17 13:17:49 -04004527
Hong zhi guo77954982013-03-27 06:49:35 +00004528 if (skb->len < NLMSG_HDRLEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 err = -EINVAL;
4530 goto out;
4531 }
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07004532 nlh = nlmsg_hdr(skb);
Eric Paris828dfe12008-04-17 13:17:49 -04004533
Paul Moore253bfae2010-04-22 14:46:19 -04004534 err = selinux_nlmsg_lookup(sksec->sclass, nlh->nlmsg_type, &perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 if (err) {
4536 if (err == -EINVAL) {
David Woodhouse9ad9ad32005-06-22 15:04:33 +01004537 audit_log(current->audit_context, GFP_KERNEL, AUDIT_SELINUX_ERR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 "SELinux: unrecognized netlink message"
4539 " type=%hu for sclass=%hu\n",
Paul Moore253bfae2010-04-22 14:46:19 -04004540 nlh->nlmsg_type, sksec->sclass);
Eric Paris39c9aed2008-11-05 09:34:42 -05004541 if (!selinux_enforcing || security_get_allow_unknown())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542 err = 0;
4543 }
4544
4545 /* Ignore */
4546 if (err == -ENOENT)
4547 err = 0;
4548 goto out;
4549 }
4550
Paul Moore253bfae2010-04-22 14:46:19 -04004551 err = sock_has_perm(current, sk, perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552out:
4553 return err;
4554}
4555
4556#ifdef CONFIG_NETFILTER
4557
Paul Mooreeffad8d2008-01-29 08:49:27 -05004558static unsigned int selinux_ip_forward(struct sk_buff *skb, int ifindex,
4559 u16 family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560{
Paul Mooredfaebe92008-10-10 10:16:31 -04004561 int err;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004562 char *addrp;
4563 u32 peer_sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04004564 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004565 struct lsm_network_audit net = {0,};
Paul Mooreeffad8d2008-01-29 08:49:27 -05004566 u8 secmark_active;
Paul Moore948bf852008-10-10 10:16:32 -04004567 u8 netlbl_active;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004568 u8 peerlbl_active;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004569
Paul Mooreeffad8d2008-01-29 08:49:27 -05004570 if (!selinux_policycap_netpeer)
4571 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004572
Paul Mooreeffad8d2008-01-29 08:49:27 -05004573 secmark_active = selinux_secmark_enabled();
Paul Moore948bf852008-10-10 10:16:32 -04004574 netlbl_active = netlbl_enabled();
4575 peerlbl_active = netlbl_active || selinux_xfrm_enabled();
Paul Mooreeffad8d2008-01-29 08:49:27 -05004576 if (!secmark_active && !peerlbl_active)
4577 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004578
Paul Moored8395c82008-10-10 10:16:30 -04004579 if (selinux_skb_peerlbl_sid(skb, family, &peer_sid) != 0)
4580 return NF_DROP;
4581
Eric Paris50c205f2012-04-04 15:01:43 -04004582 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004583 ad.u.net = &net;
4584 ad.u.net->netif = ifindex;
4585 ad.u.net->family = family;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004586 if (selinux_parse_skb(skb, &ad, &addrp, 1, NULL) != 0)
4587 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
Paul Mooredfaebe92008-10-10 10:16:31 -04004589 if (peerlbl_active) {
4590 err = selinux_inet_sys_rcv_skb(ifindex, addrp, family,
4591 peer_sid, &ad);
4592 if (err) {
4593 selinux_netlbl_err(skb, err, 1);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004594 return NF_DROP;
Paul Mooredfaebe92008-10-10 10:16:31 -04004595 }
4596 }
Paul Mooreeffad8d2008-01-29 08:49:27 -05004597
4598 if (secmark_active)
4599 if (avc_has_perm(peer_sid, skb->secmark,
4600 SECCLASS_PACKET, PACKET__FORWARD_IN, &ad))
4601 return NF_DROP;
4602
Paul Moore948bf852008-10-10 10:16:32 -04004603 if (netlbl_active)
4604 /* we do this in the FORWARD path and not the POST_ROUTING
4605 * path because we want to make sure we apply the necessary
4606 * labeling before IPsec is applied so we can leverage AH
4607 * protection */
4608 if (selinux_netlbl_skbuff_setsid(skb, family, peer_sid) != 0)
4609 return NF_DROP;
4610
Paul Mooreeffad8d2008-01-29 08:49:27 -05004611 return NF_ACCEPT;
4612}
4613
4614static unsigned int selinux_ipv4_forward(unsigned int hooknum,
4615 struct sk_buff *skb,
4616 const struct net_device *in,
4617 const struct net_device *out,
4618 int (*okfn)(struct sk_buff *))
4619{
4620 return selinux_ip_forward(skb, in->ifindex, PF_INET);
4621}
4622
4623#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
4624static unsigned int selinux_ipv6_forward(unsigned int hooknum,
4625 struct sk_buff *skb,
4626 const struct net_device *in,
4627 const struct net_device *out,
4628 int (*okfn)(struct sk_buff *))
4629{
4630 return selinux_ip_forward(skb, in->ifindex, PF_INET6);
4631}
4632#endif /* IPV6 */
4633
Paul Moore948bf852008-10-10 10:16:32 -04004634static unsigned int selinux_ip_output(struct sk_buff *skb,
4635 u16 family)
4636{
4637 u32 sid;
4638
4639 if (!netlbl_enabled())
4640 return NF_ACCEPT;
4641
4642 /* we do this in the LOCAL_OUT path and not the POST_ROUTING path
4643 * because we want to make sure we apply the necessary labeling
4644 * before IPsec is applied so we can leverage AH protection */
4645 if (skb->sk) {
4646 struct sk_security_struct *sksec = skb->sk->sk_security;
4647 sid = sksec->sid;
4648 } else
4649 sid = SECINITSID_KERNEL;
4650 if (selinux_netlbl_skbuff_setsid(skb, family, sid) != 0)
4651 return NF_DROP;
4652
4653 return NF_ACCEPT;
4654}
4655
4656static unsigned int selinux_ipv4_output(unsigned int hooknum,
4657 struct sk_buff *skb,
4658 const struct net_device *in,
4659 const struct net_device *out,
4660 int (*okfn)(struct sk_buff *))
4661{
4662 return selinux_ip_output(skb, PF_INET);
4663}
4664
Paul Mooreeffad8d2008-01-29 08:49:27 -05004665static unsigned int selinux_ip_postroute_compat(struct sk_buff *skb,
4666 int ifindex,
Paul Moored8395c82008-10-10 10:16:30 -04004667 u16 family)
James Morris4e5ab4c2006-06-09 00:33:33 -07004668{
Paul Mooreeffad8d2008-01-29 08:49:27 -05004669 struct sock *sk = skb->sk;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004670 struct sk_security_struct *sksec;
Thomas Liu2bf49692009-07-14 12:14:09 -04004671 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004672 struct lsm_network_audit net = {0,};
Paul Moored8395c82008-10-10 10:16:30 -04004673 char *addrp;
4674 u8 proto;
James Morris4e5ab4c2006-06-09 00:33:33 -07004675
Paul Mooreeffad8d2008-01-29 08:49:27 -05004676 if (sk == NULL)
4677 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004678 sksec = sk->sk_security;
James Morris4e5ab4c2006-06-09 00:33:33 -07004679
Eric Paris50c205f2012-04-04 15:01:43 -04004680 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004681 ad.u.net = &net;
4682 ad.u.net->netif = ifindex;
4683 ad.u.net->family = family;
Paul Moored8395c82008-10-10 10:16:30 -04004684 if (selinux_parse_skb(skb, &ad, &addrp, 0, &proto))
4685 return NF_DROP;
4686
Paul Moore58bfbb52009-03-27 17:10:41 -04004687 if (selinux_secmark_enabled())
Paul Mooreeffad8d2008-01-29 08:49:27 -05004688 if (avc_has_perm(sksec->sid, skb->secmark,
Paul Moored8395c82008-10-10 10:16:30 -04004689 SECCLASS_PACKET, PACKET__SEND, &ad))
Eric Paris2fe66ec2010-11-23 06:28:08 +00004690 return NF_DROP_ERR(-ECONNREFUSED);
James Morris4e5ab4c2006-06-09 00:33:33 -07004691
Steffen Klassertb9679a72011-02-23 12:55:21 +01004692 if (selinux_xfrm_postroute_last(sksec->sid, skb, &ad, proto))
4693 return NF_DROP_ERR(-ECONNREFUSED);
James Morris4e5ab4c2006-06-09 00:33:33 -07004694
Paul Mooreeffad8d2008-01-29 08:49:27 -05004695 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696}
4697
Paul Mooreeffad8d2008-01-29 08:49:27 -05004698static unsigned int selinux_ip_postroute(struct sk_buff *skb, int ifindex,
4699 u16 family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700{
Paul Mooreeffad8d2008-01-29 08:49:27 -05004701 u32 secmark_perm;
4702 u32 peer_sid;
4703 struct sock *sk;
Thomas Liu2bf49692009-07-14 12:14:09 -04004704 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004705 struct lsm_network_audit net = {0,};
Paul Mooreeffad8d2008-01-29 08:49:27 -05004706 char *addrp;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004707 u8 secmark_active;
4708 u8 peerlbl_active;
4709
Paul Mooreeffad8d2008-01-29 08:49:27 -05004710 /* If any sort of compatibility mode is enabled then handoff processing
4711 * to the selinux_ip_postroute_compat() function to deal with the
4712 * special handling. We do this in an attempt to keep this function
4713 * as fast and as clean as possible. */
Paul Moore58bfbb52009-03-27 17:10:41 -04004714 if (!selinux_policycap_netpeer)
Paul Moored8395c82008-10-10 10:16:30 -04004715 return selinux_ip_postroute_compat(skb, ifindex, family);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -07004716#ifdef CONFIG_XFRM
Paul Mooreeffad8d2008-01-29 08:49:27 -05004717 /* If skb->dst->xfrm is non-NULL then the packet is undergoing an IPsec
4718 * packet transformation so allow the packet to pass without any checks
4719 * since we'll have another chance to perform access control checks
4720 * when the packet is on it's final way out.
4721 * NOTE: there appear to be some IPv6 multicast cases where skb->dst
4722 * is NULL, in this case go ahead and apply access control. */
Eric Dumazetadf30902009-06-02 05:19:30 +00004723 if (skb_dst(skb) != NULL && skb_dst(skb)->xfrm != NULL)
Paul Mooreeffad8d2008-01-29 08:49:27 -05004724 return NF_ACCEPT;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -07004725#endif
Paul Mooreeffad8d2008-01-29 08:49:27 -05004726 secmark_active = selinux_secmark_enabled();
4727 peerlbl_active = netlbl_enabled() || selinux_xfrm_enabled();
4728 if (!secmark_active && !peerlbl_active)
4729 return NF_ACCEPT;
4730
Paul Moored8395c82008-10-10 10:16:30 -04004731 /* if the packet is being forwarded then get the peer label from the
4732 * packet itself; otherwise check to see if it is from a local
4733 * application or the kernel, if from an application get the peer label
4734 * from the sending socket, otherwise use the kernel's sid */
Paul Mooreeffad8d2008-01-29 08:49:27 -05004735 sk = skb->sk;
Paul Moored8395c82008-10-10 10:16:30 -04004736 if (sk == NULL) {
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01004737 if (skb->skb_iif) {
4738 secmark_perm = PACKET__FORWARD_OUT;
Paul Moored8395c82008-10-10 10:16:30 -04004739 if (selinux_skb_peerlbl_sid(skb, family, &peer_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00004740 return NF_DROP;
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01004741 } else {
4742 secmark_perm = PACKET__SEND;
Paul Moored8395c82008-10-10 10:16:30 -04004743 peer_sid = SECINITSID_KERNEL;
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01004744 }
Paul Moored8395c82008-10-10 10:16:30 -04004745 } else {
Paul Mooreeffad8d2008-01-29 08:49:27 -05004746 struct sk_security_struct *sksec = sk->sk_security;
4747 peer_sid = sksec->sid;
4748 secmark_perm = PACKET__SEND;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004749 }
4750
Eric Paris50c205f2012-04-04 15:01:43 -04004751 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004752 ad.u.net = &net;
4753 ad.u.net->netif = ifindex;
4754 ad.u.net->family = family;
Paul Moored8395c82008-10-10 10:16:30 -04004755 if (selinux_parse_skb(skb, &ad, &addrp, 0, NULL))
Eric Paris04f6d702010-11-23 06:28:02 +00004756 return NF_DROP;
Paul Moored8395c82008-10-10 10:16:30 -04004757
Paul Mooreeffad8d2008-01-29 08:49:27 -05004758 if (secmark_active)
4759 if (avc_has_perm(peer_sid, skb->secmark,
4760 SECCLASS_PACKET, secmark_perm, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00004761 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004762
4763 if (peerlbl_active) {
4764 u32 if_sid;
4765 u32 node_sid;
4766
4767 if (sel_netif_sid(ifindex, &if_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00004768 return NF_DROP;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004769 if (avc_has_perm(peer_sid, if_sid,
4770 SECCLASS_NETIF, NETIF__EGRESS, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00004771 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004772
4773 if (sel_netnode_sid(addrp, family, &node_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00004774 return NF_DROP;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004775 if (avc_has_perm(peer_sid, node_sid,
4776 SECCLASS_NODE, NODE__SENDTO, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00004777 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004778 }
4779
4780 return NF_ACCEPT;
4781}
4782
4783static unsigned int selinux_ipv4_postroute(unsigned int hooknum,
4784 struct sk_buff *skb,
4785 const struct net_device *in,
4786 const struct net_device *out,
4787 int (*okfn)(struct sk_buff *))
4788{
4789 return selinux_ip_postroute(skb, out->ifindex, PF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790}
4791
4792#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Paul Mooreeffad8d2008-01-29 08:49:27 -05004793static unsigned int selinux_ipv6_postroute(unsigned int hooknum,
4794 struct sk_buff *skb,
4795 const struct net_device *in,
4796 const struct net_device *out,
4797 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798{
Paul Mooreeffad8d2008-01-29 08:49:27 -05004799 return selinux_ip_postroute(skb, out->ifindex, PF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801#endif /* IPV6 */
4802
4803#endif /* CONFIG_NETFILTER */
4804
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805static int selinux_netlink_send(struct sock *sk, struct sk_buff *skb)
4806{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 int err;
4808
Eric Paris200ac532009-02-12 15:01:04 -05004809 err = cap_netlink_send(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 if (err)
4811 return err;
4812
Stephen Smalley941fc5b2009-10-01 14:48:23 -04004813 return selinux_nlmsg_perm(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814}
4815
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816static int ipc_alloc_security(struct task_struct *task,
4817 struct kern_ipc_perm *perm,
4818 u16 sclass)
4819{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 struct ipc_security_struct *isec;
David Howells275bb412008-11-14 10:39:19 +11004821 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
James Morris89d155e2005-10-30 14:59:21 -08004823 isec = kzalloc(sizeof(struct ipc_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 if (!isec)
4825 return -ENOMEM;
4826
David Howells275bb412008-11-14 10:39:19 +11004827 sid = task_sid(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 isec->sclass = sclass;
David Howells275bb412008-11-14 10:39:19 +11004829 isec->sid = sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 perm->security = isec;
4831
4832 return 0;
4833}
4834
4835static void ipc_free_security(struct kern_ipc_perm *perm)
4836{
4837 struct ipc_security_struct *isec = perm->security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 perm->security = NULL;
4839 kfree(isec);
4840}
4841
4842static int msg_msg_alloc_security(struct msg_msg *msg)
4843{
4844 struct msg_security_struct *msec;
4845
James Morris89d155e2005-10-30 14:59:21 -08004846 msec = kzalloc(sizeof(struct msg_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 if (!msec)
4848 return -ENOMEM;
4849
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 msec->sid = SECINITSID_UNLABELED;
4851 msg->security = msec;
4852
4853 return 0;
4854}
4855
4856static void msg_msg_free_security(struct msg_msg *msg)
4857{
4858 struct msg_security_struct *msec = msg->security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
4860 msg->security = NULL;
4861 kfree(msec);
4862}
4863
4864static int ipc_has_perm(struct kern_ipc_perm *ipc_perms,
Stephen Smalley6af963f2005-05-01 08:58:39 -07004865 u32 perms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04004868 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11004869 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 isec = ipc_perms->security;
4872
Eric Paris50c205f2012-04-04 15:01:43 -04004873 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 ad.u.ipc_id = ipc_perms->key;
4875
David Howells275bb412008-11-14 10:39:19 +11004876 return avc_has_perm(sid, isec->sid, isec->sclass, perms, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877}
4878
4879static int selinux_msg_msg_alloc_security(struct msg_msg *msg)
4880{
4881 return msg_msg_alloc_security(msg);
4882}
4883
4884static void selinux_msg_msg_free_security(struct msg_msg *msg)
4885{
4886 msg_msg_free_security(msg);
4887}
4888
4889/* message queue security operations */
4890static int selinux_msg_queue_alloc_security(struct msg_queue *msq)
4891{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04004893 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11004894 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 int rc;
4896
4897 rc = ipc_alloc_security(current, &msq->q_perm, SECCLASS_MSGQ);
4898 if (rc)
4899 return rc;
4900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 isec = msq->q_perm.security;
4902
Eric Paris50c205f2012-04-04 15:01:43 -04004903 ad.type = LSM_AUDIT_DATA_IPC;
Eric Paris828dfe12008-04-17 13:17:49 -04004904 ad.u.ipc_id = msq->q_perm.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905
David Howells275bb412008-11-14 10:39:19 +11004906 rc = avc_has_perm(sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 MSGQ__CREATE, &ad);
4908 if (rc) {
4909 ipc_free_security(&msq->q_perm);
4910 return rc;
4911 }
4912 return 0;
4913}
4914
4915static void selinux_msg_queue_free_security(struct msg_queue *msq)
4916{
4917 ipc_free_security(&msq->q_perm);
4918}
4919
4920static int selinux_msg_queue_associate(struct msg_queue *msq, int msqflg)
4921{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04004923 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11004924 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 isec = msq->q_perm.security;
4927
Eric Paris50c205f2012-04-04 15:01:43 -04004928 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929 ad.u.ipc_id = msq->q_perm.key;
4930
David Howells275bb412008-11-14 10:39:19 +11004931 return avc_has_perm(sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 MSGQ__ASSOCIATE, &ad);
4933}
4934
4935static int selinux_msg_queue_msgctl(struct msg_queue *msq, int cmd)
4936{
4937 int err;
4938 int perms;
4939
Eric Paris828dfe12008-04-17 13:17:49 -04004940 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 case IPC_INFO:
4942 case MSG_INFO:
4943 /* No specific object, just general system-wide information. */
4944 return task_has_system(current, SYSTEM__IPC_INFO);
4945 case IPC_STAT:
4946 case MSG_STAT:
4947 perms = MSGQ__GETATTR | MSGQ__ASSOCIATE;
4948 break;
4949 case IPC_SET:
4950 perms = MSGQ__SETATTR;
4951 break;
4952 case IPC_RMID:
4953 perms = MSGQ__DESTROY;
4954 break;
4955 default:
4956 return 0;
4957 }
4958
Stephen Smalley6af963f2005-05-01 08:58:39 -07004959 err = ipc_has_perm(&msq->q_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 return err;
4961}
4962
4963static int selinux_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg, int msqflg)
4964{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 struct ipc_security_struct *isec;
4966 struct msg_security_struct *msec;
Thomas Liu2bf49692009-07-14 12:14:09 -04004967 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11004968 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969 int rc;
4970
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 isec = msq->q_perm.security;
4972 msec = msg->security;
4973
4974 /*
4975 * First time through, need to assign label to the message
4976 */
4977 if (msec->sid == SECINITSID_UNLABELED) {
4978 /*
4979 * Compute new sid based on current process and
4980 * message queue this message will be stored in
4981 */
David Howells275bb412008-11-14 10:39:19 +11004982 rc = security_transition_sid(sid, isec->sid, SECCLASS_MSG,
Eric Paris652bb9b2011-02-01 11:05:40 -05004983 NULL, &msec->sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 if (rc)
4985 return rc;
4986 }
4987
Eric Paris50c205f2012-04-04 15:01:43 -04004988 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 ad.u.ipc_id = msq->q_perm.key;
4990
4991 /* Can this process write to the queue? */
David Howells275bb412008-11-14 10:39:19 +11004992 rc = avc_has_perm(sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 MSGQ__WRITE, &ad);
4994 if (!rc)
4995 /* Can this process send the message */
David Howells275bb412008-11-14 10:39:19 +11004996 rc = avc_has_perm(sid, msec->sid, SECCLASS_MSG,
4997 MSG__SEND, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 if (!rc)
4999 /* Can the message be put in the queue? */
David Howells275bb412008-11-14 10:39:19 +11005000 rc = avc_has_perm(msec->sid, isec->sid, SECCLASS_MSGQ,
5001 MSGQ__ENQUEUE, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002
5003 return rc;
5004}
5005
5006static int selinux_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
5007 struct task_struct *target,
5008 long type, int mode)
5009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 struct ipc_security_struct *isec;
5011 struct msg_security_struct *msec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005012 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005013 u32 sid = task_sid(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 int rc;
5015
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 isec = msq->q_perm.security;
5017 msec = msg->security;
5018
Eric Paris50c205f2012-04-04 15:01:43 -04005019 ad.type = LSM_AUDIT_DATA_IPC;
Eric Paris828dfe12008-04-17 13:17:49 -04005020 ad.u.ipc_id = msq->q_perm.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021
David Howells275bb412008-11-14 10:39:19 +11005022 rc = avc_has_perm(sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 SECCLASS_MSGQ, MSGQ__READ, &ad);
5024 if (!rc)
David Howells275bb412008-11-14 10:39:19 +11005025 rc = avc_has_perm(sid, msec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026 SECCLASS_MSG, MSG__RECEIVE, &ad);
5027 return rc;
5028}
5029
5030/* Shared Memory security operations */
5031static int selinux_shm_alloc_security(struct shmid_kernel *shp)
5032{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005034 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005035 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 int rc;
5037
5038 rc = ipc_alloc_security(current, &shp->shm_perm, SECCLASS_SHM);
5039 if (rc)
5040 return rc;
5041
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 isec = shp->shm_perm.security;
5043
Eric Paris50c205f2012-04-04 15:01:43 -04005044 ad.type = LSM_AUDIT_DATA_IPC;
Eric Paris828dfe12008-04-17 13:17:49 -04005045 ad.u.ipc_id = shp->shm_perm.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
David Howells275bb412008-11-14 10:39:19 +11005047 rc = avc_has_perm(sid, isec->sid, SECCLASS_SHM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 SHM__CREATE, &ad);
5049 if (rc) {
5050 ipc_free_security(&shp->shm_perm);
5051 return rc;
5052 }
5053 return 0;
5054}
5055
5056static void selinux_shm_free_security(struct shmid_kernel *shp)
5057{
5058 ipc_free_security(&shp->shm_perm);
5059}
5060
5061static int selinux_shm_associate(struct shmid_kernel *shp, int shmflg)
5062{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005064 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005065 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 isec = shp->shm_perm.security;
5068
Eric Paris50c205f2012-04-04 15:01:43 -04005069 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 ad.u.ipc_id = shp->shm_perm.key;
5071
David Howells275bb412008-11-14 10:39:19 +11005072 return avc_has_perm(sid, isec->sid, SECCLASS_SHM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 SHM__ASSOCIATE, &ad);
5074}
5075
5076/* Note, at this point, shp is locked down */
5077static int selinux_shm_shmctl(struct shmid_kernel *shp, int cmd)
5078{
5079 int perms;
5080 int err;
5081
Eric Paris828dfe12008-04-17 13:17:49 -04005082 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 case IPC_INFO:
5084 case SHM_INFO:
5085 /* No specific object, just general system-wide information. */
5086 return task_has_system(current, SYSTEM__IPC_INFO);
5087 case IPC_STAT:
5088 case SHM_STAT:
5089 perms = SHM__GETATTR | SHM__ASSOCIATE;
5090 break;
5091 case IPC_SET:
5092 perms = SHM__SETATTR;
5093 break;
5094 case SHM_LOCK:
5095 case SHM_UNLOCK:
5096 perms = SHM__LOCK;
5097 break;
5098 case IPC_RMID:
5099 perms = SHM__DESTROY;
5100 break;
5101 default:
5102 return 0;
5103 }
5104
Stephen Smalley6af963f2005-05-01 08:58:39 -07005105 err = ipc_has_perm(&shp->shm_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 return err;
5107}
5108
5109static int selinux_shm_shmat(struct shmid_kernel *shp,
5110 char __user *shmaddr, int shmflg)
5111{
5112 u32 perms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
5114 if (shmflg & SHM_RDONLY)
5115 perms = SHM__READ;
5116 else
5117 perms = SHM__READ | SHM__WRITE;
5118
Stephen Smalley6af963f2005-05-01 08:58:39 -07005119 return ipc_has_perm(&shp->shm_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120}
5121
5122/* Semaphore security operations */
5123static int selinux_sem_alloc_security(struct sem_array *sma)
5124{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005126 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005127 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 int rc;
5129
5130 rc = ipc_alloc_security(current, &sma->sem_perm, SECCLASS_SEM);
5131 if (rc)
5132 return rc;
5133
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 isec = sma->sem_perm.security;
5135
Eric Paris50c205f2012-04-04 15:01:43 -04005136 ad.type = LSM_AUDIT_DATA_IPC;
Eric Paris828dfe12008-04-17 13:17:49 -04005137 ad.u.ipc_id = sma->sem_perm.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138
David Howells275bb412008-11-14 10:39:19 +11005139 rc = avc_has_perm(sid, isec->sid, SECCLASS_SEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 SEM__CREATE, &ad);
5141 if (rc) {
5142 ipc_free_security(&sma->sem_perm);
5143 return rc;
5144 }
5145 return 0;
5146}
5147
5148static void selinux_sem_free_security(struct sem_array *sma)
5149{
5150 ipc_free_security(&sma->sem_perm);
5151}
5152
5153static int selinux_sem_associate(struct sem_array *sma, int semflg)
5154{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005156 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005157 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 isec = sma->sem_perm.security;
5160
Eric Paris50c205f2012-04-04 15:01:43 -04005161 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 ad.u.ipc_id = sma->sem_perm.key;
5163
David Howells275bb412008-11-14 10:39:19 +11005164 return avc_has_perm(sid, isec->sid, SECCLASS_SEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 SEM__ASSOCIATE, &ad);
5166}
5167
5168/* Note, at this point, sma is locked down */
5169static int selinux_sem_semctl(struct sem_array *sma, int cmd)
5170{
5171 int err;
5172 u32 perms;
5173
Eric Paris828dfe12008-04-17 13:17:49 -04005174 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 case IPC_INFO:
5176 case SEM_INFO:
5177 /* No specific object, just general system-wide information. */
5178 return task_has_system(current, SYSTEM__IPC_INFO);
5179 case GETPID:
5180 case GETNCNT:
5181 case GETZCNT:
5182 perms = SEM__GETATTR;
5183 break;
5184 case GETVAL:
5185 case GETALL:
5186 perms = SEM__READ;
5187 break;
5188 case SETVAL:
5189 case SETALL:
5190 perms = SEM__WRITE;
5191 break;
5192 case IPC_RMID:
5193 perms = SEM__DESTROY;
5194 break;
5195 case IPC_SET:
5196 perms = SEM__SETATTR;
5197 break;
5198 case IPC_STAT:
5199 case SEM_STAT:
5200 perms = SEM__GETATTR | SEM__ASSOCIATE;
5201 break;
5202 default:
5203 return 0;
5204 }
5205
Stephen Smalley6af963f2005-05-01 08:58:39 -07005206 err = ipc_has_perm(&sma->sem_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 return err;
5208}
5209
5210static int selinux_sem_semop(struct sem_array *sma,
5211 struct sembuf *sops, unsigned nsops, int alter)
5212{
5213 u32 perms;
5214
5215 if (alter)
5216 perms = SEM__READ | SEM__WRITE;
5217 else
5218 perms = SEM__READ;
5219
Stephen Smalley6af963f2005-05-01 08:58:39 -07005220 return ipc_has_perm(&sma->sem_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221}
5222
5223static int selinux_ipc_permission(struct kern_ipc_perm *ipcp, short flag)
5224{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 u32 av = 0;
5226
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 av = 0;
5228 if (flag & S_IRUGO)
5229 av |= IPC__UNIX_READ;
5230 if (flag & S_IWUGO)
5231 av |= IPC__UNIX_WRITE;
5232
5233 if (av == 0)
5234 return 0;
5235
Stephen Smalley6af963f2005-05-01 08:58:39 -07005236 return ipc_has_perm(ipcp, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237}
5238
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02005239static void selinux_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
5240{
5241 struct ipc_security_struct *isec = ipcp->security;
5242 *secid = isec->sid;
5243}
5244
Eric Paris828dfe12008-04-17 13:17:49 -04005245static void selinux_d_instantiate(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246{
5247 if (inode)
5248 inode_doinit_with_dentry(inode, dentry);
5249}
5250
5251static int selinux_getprocattr(struct task_struct *p,
Al Viro04ff9702007-03-12 16:17:58 +00005252 char *name, char **value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253{
David Howells275bb412008-11-14 10:39:19 +11005254 const struct task_security_struct *__tsec;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00005255 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 int error;
Al Viro04ff9702007-03-12 16:17:58 +00005257 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
5259 if (current != p) {
David Howells3b11a1d2008-11-14 10:39:26 +11005260 error = current_has_perm(p, PROCESS__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 if (error)
5262 return error;
5263 }
5264
David Howells275bb412008-11-14 10:39:19 +11005265 rcu_read_lock();
5266 __tsec = __task_cred(p)->security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
5268 if (!strcmp(name, "current"))
David Howells275bb412008-11-14 10:39:19 +11005269 sid = __tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 else if (!strcmp(name, "prev"))
David Howells275bb412008-11-14 10:39:19 +11005271 sid = __tsec->osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 else if (!strcmp(name, "exec"))
David Howells275bb412008-11-14 10:39:19 +11005273 sid = __tsec->exec_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 else if (!strcmp(name, "fscreate"))
David Howells275bb412008-11-14 10:39:19 +11005275 sid = __tsec->create_sid;
Michael LeMay4eb582c2006-06-26 00:24:57 -07005276 else if (!strcmp(name, "keycreate"))
David Howells275bb412008-11-14 10:39:19 +11005277 sid = __tsec->keycreate_sid;
Eric Paris42c3e032006-06-26 00:26:03 -07005278 else if (!strcmp(name, "sockcreate"))
David Howells275bb412008-11-14 10:39:19 +11005279 sid = __tsec->sockcreate_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 else
David Howells275bb412008-11-14 10:39:19 +11005281 goto invalid;
5282 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283
5284 if (!sid)
5285 return 0;
5286
Al Viro04ff9702007-03-12 16:17:58 +00005287 error = security_sid_to_context(sid, value, &len);
5288 if (error)
5289 return error;
5290 return len;
David Howells275bb412008-11-14 10:39:19 +11005291
5292invalid:
5293 rcu_read_unlock();
5294 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295}
5296
5297static int selinux_setprocattr(struct task_struct *p,
5298 char *name, void *value, size_t size)
5299{
5300 struct task_security_struct *tsec;
Roland McGrath03563572008-03-26 15:46:39 -07005301 struct task_struct *tracer;
David Howellsd84f4f92008-11-14 10:39:23 +11005302 struct cred *new;
5303 u32 sid = 0, ptsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 int error;
5305 char *str = value;
5306
5307 if (current != p) {
5308 /* SELinux only allows a process to change its own
5309 security attributes. */
5310 return -EACCES;
5311 }
5312
5313 /*
5314 * Basic control over ability to set these attributes at all.
5315 * current == p, but we'll pass them separately in case the
5316 * above restriction is ever removed.
5317 */
5318 if (!strcmp(name, "exec"))
David Howells3b11a1d2008-11-14 10:39:26 +11005319 error = current_has_perm(p, PROCESS__SETEXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 else if (!strcmp(name, "fscreate"))
David Howells3b11a1d2008-11-14 10:39:26 +11005321 error = current_has_perm(p, PROCESS__SETFSCREATE);
Michael LeMay4eb582c2006-06-26 00:24:57 -07005322 else if (!strcmp(name, "keycreate"))
David Howells3b11a1d2008-11-14 10:39:26 +11005323 error = current_has_perm(p, PROCESS__SETKEYCREATE);
Eric Paris42c3e032006-06-26 00:26:03 -07005324 else if (!strcmp(name, "sockcreate"))
David Howells3b11a1d2008-11-14 10:39:26 +11005325 error = current_has_perm(p, PROCESS__SETSOCKCREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326 else if (!strcmp(name, "current"))
David Howells3b11a1d2008-11-14 10:39:26 +11005327 error = current_has_perm(p, PROCESS__SETCURRENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 else
5329 error = -EINVAL;
5330 if (error)
5331 return error;
5332
5333 /* Obtain a SID for the context, if one was specified. */
5334 if (size && str[1] && str[1] != '\n') {
5335 if (str[size-1] == '\n') {
5336 str[size-1] = 0;
5337 size--;
5338 }
5339 error = security_context_to_sid(value, size, &sid);
Stephen Smalley12b29f32008-05-07 13:03:20 -04005340 if (error == -EINVAL && !strcmp(name, "fscreate")) {
Eric Parisd6ea83e2012-04-04 13:45:49 -04005341 if (!capable(CAP_MAC_ADMIN)) {
5342 struct audit_buffer *ab;
5343 size_t audit_size;
5344
5345 /* We strip a nul only if it is at the end, otherwise the
5346 * context contains a nul and we should audit that */
5347 if (str[size - 1] == '\0')
5348 audit_size = size - 1;
5349 else
5350 audit_size = size;
5351 ab = audit_log_start(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR);
5352 audit_log_format(ab, "op=fscreate invalid_context=");
5353 audit_log_n_untrustedstring(ab, value, audit_size);
5354 audit_log_end(ab);
5355
Stephen Smalley12b29f32008-05-07 13:03:20 -04005356 return error;
Eric Parisd6ea83e2012-04-04 13:45:49 -04005357 }
Stephen Smalley12b29f32008-05-07 13:03:20 -04005358 error = security_context_to_sid_force(value, size,
5359 &sid);
5360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 if (error)
5362 return error;
5363 }
5364
David Howellsd84f4f92008-11-14 10:39:23 +11005365 new = prepare_creds();
5366 if (!new)
5367 return -ENOMEM;
5368
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 /* Permission checking based on the specified context is
5370 performed during the actual operation (execve,
5371 open/mkdir/...), when we know the full context of the
David Howellsd84f4f92008-11-14 10:39:23 +11005372 operation. See selinux_bprm_set_creds for the execve
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 checks and may_create for the file creation checks. The
5374 operation will then fail if the context is not permitted. */
David Howellsd84f4f92008-11-14 10:39:23 +11005375 tsec = new->security;
5376 if (!strcmp(name, "exec")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 tsec->exec_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11005378 } else if (!strcmp(name, "fscreate")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379 tsec->create_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11005380 } else if (!strcmp(name, "keycreate")) {
Michael LeMay4eb582c2006-06-26 00:24:57 -07005381 error = may_create_key(sid, p);
5382 if (error)
David Howellsd84f4f92008-11-14 10:39:23 +11005383 goto abort_change;
Michael LeMay4eb582c2006-06-26 00:24:57 -07005384 tsec->keycreate_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11005385 } else if (!strcmp(name, "sockcreate")) {
Eric Paris42c3e032006-06-26 00:26:03 -07005386 tsec->sockcreate_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11005387 } else if (!strcmp(name, "current")) {
5388 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 if (sid == 0)
David Howellsd84f4f92008-11-14 10:39:23 +11005390 goto abort_change;
KaiGai Koheid9250de2008-08-28 16:35:57 +09005391
David Howellsd84f4f92008-11-14 10:39:23 +11005392 /* Only allow single threaded processes to change context */
5393 error = -EPERM;
Oleg Nesterov5bb459b2009-07-10 03:48:23 +02005394 if (!current_is_single_threaded()) {
David Howellsd84f4f92008-11-14 10:39:23 +11005395 error = security_bounded_transition(tsec->sid, sid);
5396 if (error)
5397 goto abort_change;
Eric Paris828dfe12008-04-17 13:17:49 -04005398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399
5400 /* Check permissions for the transition. */
5401 error = avc_has_perm(tsec->sid, sid, SECCLASS_PROCESS,
Eric Paris828dfe12008-04-17 13:17:49 -04005402 PROCESS__DYNTRANSITION, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403 if (error)
David Howellsd84f4f92008-11-14 10:39:23 +11005404 goto abort_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405
5406 /* Check for ptracing, and update the task SID if ok.
5407 Otherwise, leave SID unchanged and fail. */
David Howellsd84f4f92008-11-14 10:39:23 +11005408 ptsid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 task_lock(p);
Tejun Heo06d98472011-06-17 16:50:40 +02005410 tracer = ptrace_parent(p);
David Howellsd84f4f92008-11-14 10:39:23 +11005411 if (tracer)
5412 ptsid = task_sid(tracer);
5413 task_unlock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
David Howellsd84f4f92008-11-14 10:39:23 +11005415 if (tracer) {
5416 error = avc_has_perm(ptsid, sid, SECCLASS_PROCESS,
5417 PROCESS__PTRACE, NULL);
5418 if (error)
5419 goto abort_change;
5420 }
5421
5422 tsec->sid = sid;
5423 } else {
5424 error = -EINVAL;
5425 goto abort_change;
5426 }
5427
5428 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 return size;
David Howellsd84f4f92008-11-14 10:39:23 +11005430
5431abort_change:
5432 abort_creds(new);
5433 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434}
5435
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005436static int selinux_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
5437{
5438 return security_sid_to_context(secid, secdata, seclen);
5439}
5440
David Howells7bf570d2008-04-29 20:52:51 +01005441static int selinux_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
David Howells63cb3442008-01-15 23:47:35 +00005442{
5443 return security_context_to_sid(secdata, seclen, secid);
5444}
5445
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005446static void selinux_release_secctx(char *secdata, u32 seclen)
5447{
Paul Moore088999e2007-08-01 11:12:58 -04005448 kfree(secdata);
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005449}
5450
David P. Quigley1ee65e32009-09-03 14:25:57 -04005451/*
5452 * called with inode->i_mutex locked
5453 */
5454static int selinux_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
5455{
5456 return selinux_inode_setsecurity(inode, XATTR_SELINUX_SUFFIX, ctx, ctxlen, 0);
5457}
5458
5459/*
5460 * called with inode->i_mutex locked
5461 */
5462static int selinux_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
5463{
5464 return __vfs_setxattr_noperm(dentry, XATTR_NAME_SELINUX, ctx, ctxlen, 0);
5465}
5466
5467static int selinux_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
5468{
5469 int len = 0;
5470 len = selinux_inode_getsecurity(inode, XATTR_SELINUX_SUFFIX,
5471 ctx, true);
5472 if (len < 0)
5473 return len;
5474 *ctxlen = len;
5475 return 0;
5476}
Michael LeMayd7200242006-06-22 14:47:17 -07005477#ifdef CONFIG_KEYS
5478
David Howellsd84f4f92008-11-14 10:39:23 +11005479static int selinux_key_alloc(struct key *k, const struct cred *cred,
David Howells7e047ef2006-06-26 00:24:50 -07005480 unsigned long flags)
Michael LeMayd7200242006-06-22 14:47:17 -07005481{
David Howellsd84f4f92008-11-14 10:39:23 +11005482 const struct task_security_struct *tsec;
Michael LeMayd7200242006-06-22 14:47:17 -07005483 struct key_security_struct *ksec;
5484
5485 ksec = kzalloc(sizeof(struct key_security_struct), GFP_KERNEL);
5486 if (!ksec)
5487 return -ENOMEM;
5488
David Howellsd84f4f92008-11-14 10:39:23 +11005489 tsec = cred->security;
5490 if (tsec->keycreate_sid)
5491 ksec->sid = tsec->keycreate_sid;
Michael LeMay4eb582c2006-06-26 00:24:57 -07005492 else
David Howellsd84f4f92008-11-14 10:39:23 +11005493 ksec->sid = tsec->sid;
Michael LeMayd7200242006-06-22 14:47:17 -07005494
David Howells275bb412008-11-14 10:39:19 +11005495 k->security = ksec;
Michael LeMayd7200242006-06-22 14:47:17 -07005496 return 0;
5497}
5498
5499static void selinux_key_free(struct key *k)
5500{
5501 struct key_security_struct *ksec = k->security;
5502
5503 k->security = NULL;
5504 kfree(ksec);
5505}
5506
5507static int selinux_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11005508 const struct cred *cred,
5509 key_perm_t perm)
Michael LeMayd7200242006-06-22 14:47:17 -07005510{
5511 struct key *key;
Michael LeMayd7200242006-06-22 14:47:17 -07005512 struct key_security_struct *ksec;
David Howells275bb412008-11-14 10:39:19 +11005513 u32 sid;
Michael LeMayd7200242006-06-22 14:47:17 -07005514
5515 /* if no specific permissions are requested, we skip the
5516 permission check. No serious, additional covert channels
5517 appear to be created. */
5518 if (perm == 0)
5519 return 0;
5520
David Howellsd84f4f92008-11-14 10:39:23 +11005521 sid = cred_sid(cred);
David Howells275bb412008-11-14 10:39:19 +11005522
5523 key = key_ref_to_ptr(key_ref);
5524 ksec = key->security;
5525
5526 return avc_has_perm(sid, ksec->sid, SECCLASS_KEY, perm, NULL);
Michael LeMayd7200242006-06-22 14:47:17 -07005527}
5528
David Howells70a5bb72008-04-29 01:01:26 -07005529static int selinux_key_getsecurity(struct key *key, char **_buffer)
5530{
5531 struct key_security_struct *ksec = key->security;
5532 char *context = NULL;
5533 unsigned len;
5534 int rc;
5535
5536 rc = security_sid_to_context(ksec->sid, &context, &len);
5537 if (!rc)
5538 rc = len;
5539 *_buffer = context;
5540 return rc;
5541}
5542
Michael LeMayd7200242006-06-22 14:47:17 -07005543#endif
5544
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545static struct security_operations selinux_ops = {
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02005546 .name = "selinux",
5547
Ingo Molnar9e488582009-05-07 19:26:19 +10005548 .ptrace_access_check = selinux_ptrace_access_check,
David Howells5cd9c582008-08-14 11:37:28 +01005549 .ptrace_traceme = selinux_ptrace_traceme,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550 .capget = selinux_capget,
David Howellsd84f4f92008-11-14 10:39:23 +11005551 .capset = selinux_capset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 .capable = selinux_capable,
5553 .quotactl = selinux_quotactl,
5554 .quota_on = selinux_quota_on,
5555 .syslog = selinux_syslog,
5556 .vm_enough_memory = selinux_vm_enough_memory,
5557
5558 .netlink_send = selinux_netlink_send,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
David Howellsa6f76f22008-11-14 10:39:24 +11005560 .bprm_set_creds = selinux_bprm_set_creds,
David Howellsa6f76f22008-11-14 10:39:24 +11005561 .bprm_committing_creds = selinux_bprm_committing_creds,
5562 .bprm_committed_creds = selinux_bprm_committed_creds,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 .bprm_secureexec = selinux_bprm_secureexec,
5564
5565 .sb_alloc_security = selinux_sb_alloc_security,
5566 .sb_free_security = selinux_sb_free_security,
5567 .sb_copy_data = selinux_sb_copy_data,
Eric Paris026eb162011-03-03 16:09:14 -05005568 .sb_remount = selinux_sb_remount,
Eric Paris828dfe12008-04-17 13:17:49 -04005569 .sb_kern_mount = selinux_sb_kern_mount,
Eric Paris2069f452008-07-04 09:47:13 +10005570 .sb_show_options = selinux_sb_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 .sb_statfs = selinux_sb_statfs,
5572 .sb_mount = selinux_mount,
5573 .sb_umount = selinux_umount,
Eric Parisc9180a52007-11-30 13:00:35 -05005574 .sb_set_mnt_opts = selinux_set_mnt_opts,
Eric Paris828dfe12008-04-17 13:17:49 -04005575 .sb_clone_mnt_opts = selinux_sb_clone_mnt_opts,
Eric Parise0007522008-03-05 10:31:54 -05005576 .sb_parse_opts_str = selinux_parse_opts_str,
5577
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578
5579 .inode_alloc_security = selinux_inode_alloc_security,
5580 .inode_free_security = selinux_inode_free_security,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07005581 .inode_init_security = selinux_inode_init_security,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582 .inode_create = selinux_inode_create,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583 .inode_link = selinux_inode_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 .inode_unlink = selinux_inode_unlink,
5585 .inode_symlink = selinux_inode_symlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 .inode_mkdir = selinux_inode_mkdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587 .inode_rmdir = selinux_inode_rmdir,
5588 .inode_mknod = selinux_inode_mknod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 .inode_rename = selinux_inode_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 .inode_readlink = selinux_inode_readlink,
5591 .inode_follow_link = selinux_inode_follow_link,
5592 .inode_permission = selinux_inode_permission,
5593 .inode_setattr = selinux_inode_setattr,
5594 .inode_getattr = selinux_inode_getattr,
5595 .inode_setxattr = selinux_inode_setxattr,
5596 .inode_post_setxattr = selinux_inode_post_setxattr,
5597 .inode_getxattr = selinux_inode_getxattr,
5598 .inode_listxattr = selinux_inode_listxattr,
5599 .inode_removexattr = selinux_inode_removexattr,
Eric Paris828dfe12008-04-17 13:17:49 -04005600 .inode_getsecurity = selinux_inode_getsecurity,
5601 .inode_setsecurity = selinux_inode_setsecurity,
5602 .inode_listsecurity = selinux_inode_listsecurity,
Eric Parisf5269712008-05-14 11:27:45 -04005603 .inode_getsecid = selinux_inode_getsecid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
5605 .file_permission = selinux_file_permission,
5606 .file_alloc_security = selinux_file_alloc_security,
5607 .file_free_security = selinux_file_free_security,
5608 .file_ioctl = selinux_file_ioctl,
Al Viroe5467852012-05-30 13:30:51 -04005609 .mmap_file = selinux_mmap_file,
5610 .mmap_addr = selinux_mmap_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611 .file_mprotect = selinux_file_mprotect,
5612 .file_lock = selinux_file_lock,
5613 .file_fcntl = selinux_file_fcntl,
5614 .file_set_fowner = selinux_file_set_fowner,
5615 .file_send_sigiotask = selinux_file_send_sigiotask,
5616 .file_receive = selinux_file_receive,
5617
Eric Paris83d49852012-04-04 13:45:40 -04005618 .file_open = selinux_file_open,
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09005619
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620 .task_create = selinux_task_create,
David Howellsee18d642009-09-02 09:14:21 +01005621 .cred_alloc_blank = selinux_cred_alloc_blank,
David Howellsf1752ee2008-11-14 10:39:17 +11005622 .cred_free = selinux_cred_free,
David Howellsd84f4f92008-11-14 10:39:23 +11005623 .cred_prepare = selinux_cred_prepare,
David Howellsee18d642009-09-02 09:14:21 +01005624 .cred_transfer = selinux_cred_transfer,
David Howells3a3b7ce2008-11-14 10:39:28 +11005625 .kernel_act_as = selinux_kernel_act_as,
5626 .kernel_create_files_as = selinux_kernel_create_files_as,
Eric Paris25354c42009-08-13 09:45:03 -04005627 .kernel_module_request = selinux_kernel_module_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628 .task_setpgid = selinux_task_setpgid,
5629 .task_getpgid = selinux_task_getpgid,
Eric Paris828dfe12008-04-17 13:17:49 -04005630 .task_getsid = selinux_task_getsid,
David Quigleyf9008e42006-06-30 01:55:46 -07005631 .task_getsecid = selinux_task_getsecid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632 .task_setnice = selinux_task_setnice,
James Morris03e68062006-06-23 02:03:58 -07005633 .task_setioprio = selinux_task_setioprio,
David Quigleya1836a42006-06-30 01:55:49 -07005634 .task_getioprio = selinux_task_getioprio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 .task_setrlimit = selinux_task_setrlimit,
5636 .task_setscheduler = selinux_task_setscheduler,
5637 .task_getscheduler = selinux_task_getscheduler,
David Quigley35601542006-06-23 02:04:01 -07005638 .task_movememory = selinux_task_movememory,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639 .task_kill = selinux_task_kill,
5640 .task_wait = selinux_task_wait,
Eric Paris828dfe12008-04-17 13:17:49 -04005641 .task_to_inode = selinux_task_to_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642
5643 .ipc_permission = selinux_ipc_permission,
Eric Parisf5269712008-05-14 11:27:45 -04005644 .ipc_getsecid = selinux_ipc_getsecid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645
5646 .msg_msg_alloc_security = selinux_msg_msg_alloc_security,
5647 .msg_msg_free_security = selinux_msg_msg_free_security,
5648
5649 .msg_queue_alloc_security = selinux_msg_queue_alloc_security,
5650 .msg_queue_free_security = selinux_msg_queue_free_security,
5651 .msg_queue_associate = selinux_msg_queue_associate,
5652 .msg_queue_msgctl = selinux_msg_queue_msgctl,
5653 .msg_queue_msgsnd = selinux_msg_queue_msgsnd,
5654 .msg_queue_msgrcv = selinux_msg_queue_msgrcv,
5655
5656 .shm_alloc_security = selinux_shm_alloc_security,
5657 .shm_free_security = selinux_shm_free_security,
5658 .shm_associate = selinux_shm_associate,
5659 .shm_shmctl = selinux_shm_shmctl,
5660 .shm_shmat = selinux_shm_shmat,
5661
Eric Paris828dfe12008-04-17 13:17:49 -04005662 .sem_alloc_security = selinux_sem_alloc_security,
5663 .sem_free_security = selinux_sem_free_security,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 .sem_associate = selinux_sem_associate,
5665 .sem_semctl = selinux_sem_semctl,
5666 .sem_semop = selinux_sem_semop,
5667
Eric Paris828dfe12008-04-17 13:17:49 -04005668 .d_instantiate = selinux_d_instantiate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669
Eric Paris828dfe12008-04-17 13:17:49 -04005670 .getprocattr = selinux_getprocattr,
5671 .setprocattr = selinux_setprocattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005673 .secid_to_secctx = selinux_secid_to_secctx,
David Howells63cb3442008-01-15 23:47:35 +00005674 .secctx_to_secid = selinux_secctx_to_secid,
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005675 .release_secctx = selinux_release_secctx,
David P. Quigley1ee65e32009-09-03 14:25:57 -04005676 .inode_notifysecctx = selinux_inode_notifysecctx,
5677 .inode_setsecctx = selinux_inode_setsecctx,
5678 .inode_getsecctx = selinux_inode_getsecctx,
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005679
Eric Paris828dfe12008-04-17 13:17:49 -04005680 .unix_stream_connect = selinux_socket_unix_stream_connect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681 .unix_may_send = selinux_socket_unix_may_send,
5682
5683 .socket_create = selinux_socket_create,
5684 .socket_post_create = selinux_socket_post_create,
5685 .socket_bind = selinux_socket_bind,
5686 .socket_connect = selinux_socket_connect,
5687 .socket_listen = selinux_socket_listen,
5688 .socket_accept = selinux_socket_accept,
5689 .socket_sendmsg = selinux_socket_sendmsg,
5690 .socket_recvmsg = selinux_socket_recvmsg,
5691 .socket_getsockname = selinux_socket_getsockname,
5692 .socket_getpeername = selinux_socket_getpeername,
5693 .socket_getsockopt = selinux_socket_getsockopt,
5694 .socket_setsockopt = selinux_socket_setsockopt,
5695 .socket_shutdown = selinux_socket_shutdown,
5696 .socket_sock_rcv_skb = selinux_socket_sock_rcv_skb,
Catherine Zhang2c7946a2006-03-20 22:41:23 -08005697 .socket_getpeersec_stream = selinux_socket_getpeersec_stream,
5698 .socket_getpeersec_dgram = selinux_socket_getpeersec_dgram,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699 .sk_alloc_security = selinux_sk_alloc_security,
5700 .sk_free_security = selinux_sk_free_security,
Venkat Yekkirala892c1412006-08-04 23:08:56 -07005701 .sk_clone_security = selinux_sk_clone_security,
Eric Paris828dfe12008-04-17 13:17:49 -04005702 .sk_getsecid = selinux_sk_getsecid,
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005703 .sock_graft = selinux_sock_graft,
5704 .inet_conn_request = selinux_inet_conn_request,
5705 .inet_csk_clone = selinux_inet_csk_clone,
Venkat Yekkirala6b877692006-11-08 17:04:09 -06005706 .inet_conn_established = selinux_inet_conn_established,
Eric Paris2606fd12010-10-13 16:24:41 -04005707 .secmark_relabel_packet = selinux_secmark_relabel_packet,
5708 .secmark_refcount_inc = selinux_secmark_refcount_inc,
5709 .secmark_refcount_dec = selinux_secmark_refcount_dec,
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005710 .req_classify_flow = selinux_req_classify_flow,
Paul Moore5dbbaf22013-01-14 07:12:19 +00005711 .tun_dev_alloc_security = selinux_tun_dev_alloc_security,
5712 .tun_dev_free_security = selinux_tun_dev_free_security,
Paul Mooreed6d76e2009-08-28 18:12:49 -04005713 .tun_dev_create = selinux_tun_dev_create,
Paul Moore5dbbaf22013-01-14 07:12:19 +00005714 .tun_dev_attach_queue = selinux_tun_dev_attach_queue,
Paul Mooreed6d76e2009-08-28 18:12:49 -04005715 .tun_dev_attach = selinux_tun_dev_attach,
Paul Moore5dbbaf22013-01-14 07:12:19 +00005716 .tun_dev_open = selinux_tun_dev_open,
Eric Dumazetca10b9e2013-04-08 17:58:11 +00005717 .skb_owned_by = selinux_skb_owned_by,
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005718
5719#ifdef CONFIG_SECURITY_NETWORK_XFRM
5720 .xfrm_policy_alloc_security = selinux_xfrm_policy_alloc,
5721 .xfrm_policy_clone_security = selinux_xfrm_policy_clone,
5722 .xfrm_policy_free_security = selinux_xfrm_policy_free,
Catherine Zhangc8c05a82006-06-08 23:39:49 -07005723 .xfrm_policy_delete_security = selinux_xfrm_policy_delete,
Paul Moore2e5aa862013-07-23 17:38:38 -04005724 .xfrm_state_alloc = selinux_xfrm_state_alloc,
5725 .xfrm_state_alloc_acquire = selinux_xfrm_state_alloc_acquire,
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005726 .xfrm_state_free_security = selinux_xfrm_state_free,
Catherine Zhangc8c05a82006-06-08 23:39:49 -07005727 .xfrm_state_delete_security = selinux_xfrm_state_delete,
Eric Paris828dfe12008-04-17 13:17:49 -04005728 .xfrm_policy_lookup = selinux_xfrm_policy_lookup,
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07005729 .xfrm_state_pol_flow_match = selinux_xfrm_state_pol_flow_match,
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07005730 .xfrm_decode_session = selinux_xfrm_decode_session,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731#endif
Michael LeMayd7200242006-06-22 14:47:17 -07005732
5733#ifdef CONFIG_KEYS
Eric Paris828dfe12008-04-17 13:17:49 -04005734 .key_alloc = selinux_key_alloc,
5735 .key_free = selinux_key_free,
5736 .key_permission = selinux_key_permission,
David Howells70a5bb72008-04-29 01:01:26 -07005737 .key_getsecurity = selinux_key_getsecurity,
Michael LeMayd7200242006-06-22 14:47:17 -07005738#endif
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02005739
5740#ifdef CONFIG_AUDIT
5741 .audit_rule_init = selinux_audit_rule_init,
5742 .audit_rule_known = selinux_audit_rule_known,
5743 .audit_rule_match = selinux_audit_rule_match,
5744 .audit_rule_free = selinux_audit_rule_free,
5745#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746};
5747
5748static __init int selinux_init(void)
5749{
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02005750 if (!security_module_enable(&selinux_ops)) {
5751 selinux_enabled = 0;
5752 return 0;
5753 }
5754
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 if (!selinux_enabled) {
5756 printk(KERN_INFO "SELinux: Disabled at boot.\n");
5757 return 0;
5758 }
5759
5760 printk(KERN_INFO "SELinux: Initializing.\n");
5761
5762 /* Set the security state for the initial task. */
David Howellsd84f4f92008-11-14 10:39:23 +11005763 cred_init_security();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04005765 default_noexec = !(VM_DATA_DEFAULT_FLAGS & VM_EXEC);
5766
James Morris7cae7e22006-03-22 00:09:22 -08005767 sel_inode_cache = kmem_cache_create("selinux_inode_security",
5768 sizeof(struct inode_security_struct),
Paul Mundt20c2df82007-07-20 10:11:58 +09005769 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770 avc_init();
5771
Eric Paris828dfe12008-04-17 13:17:49 -04005772 if (register_security(&selinux_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773 panic("SELinux: Unable to register with kernel.\n");
5774
Eric Paris828dfe12008-04-17 13:17:49 -04005775 if (selinux_enforcing)
Eric Parisfadcdb42007-02-22 18:11:31 -05005776 printk(KERN_DEBUG "SELinux: Starting in enforcing mode\n");
Eric Paris828dfe12008-04-17 13:17:49 -04005777 else
Eric Parisfadcdb42007-02-22 18:11:31 -05005778 printk(KERN_DEBUG "SELinux: Starting in permissive mode\n");
Michael LeMayd7200242006-06-22 14:47:17 -07005779
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780 return 0;
5781}
5782
Al Viroe8c26252010-03-23 06:36:54 -04005783static void delayed_superblock_init(struct super_block *sb, void *unused)
5784{
5785 superblock_doinit(sb, NULL);
5786}
5787
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788void selinux_complete_init(void)
5789{
Eric Parisfadcdb42007-02-22 18:11:31 -05005790 printk(KERN_DEBUG "SELinux: Completing initialization.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
5792 /* Set up any superblocks initialized prior to the policy load. */
Eric Parisfadcdb42007-02-22 18:11:31 -05005793 printk(KERN_DEBUG "SELinux: Setting up existing superblocks.\n");
Al Viroe8c26252010-03-23 06:36:54 -04005794 iterate_supers(delayed_superblock_init, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795}
5796
5797/* SELinux requires early initialization in order to label
5798 all processes and objects when they are created. */
5799security_initcall(selinux_init);
5800
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08005801#if defined(CONFIG_NETFILTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802
Paul Mooreeffad8d2008-01-29 08:49:27 -05005803static struct nf_hook_ops selinux_ipv4_ops[] = {
5804 {
5805 .hook = selinux_ipv4_postroute,
5806 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005807 .pf = NFPROTO_IPV4,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005808 .hooknum = NF_INET_POST_ROUTING,
5809 .priority = NF_IP_PRI_SELINUX_LAST,
5810 },
5811 {
5812 .hook = selinux_ipv4_forward,
5813 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005814 .pf = NFPROTO_IPV4,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005815 .hooknum = NF_INET_FORWARD,
5816 .priority = NF_IP_PRI_SELINUX_FIRST,
Paul Moore948bf852008-10-10 10:16:32 -04005817 },
5818 {
5819 .hook = selinux_ipv4_output,
5820 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005821 .pf = NFPROTO_IPV4,
Paul Moore948bf852008-10-10 10:16:32 -04005822 .hooknum = NF_INET_LOCAL_OUT,
5823 .priority = NF_IP_PRI_SELINUX_FIRST,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825};
5826
5827#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
5828
Paul Mooreeffad8d2008-01-29 08:49:27 -05005829static struct nf_hook_ops selinux_ipv6_ops[] = {
5830 {
5831 .hook = selinux_ipv6_postroute,
5832 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005833 .pf = NFPROTO_IPV6,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005834 .hooknum = NF_INET_POST_ROUTING,
5835 .priority = NF_IP6_PRI_SELINUX_LAST,
5836 },
5837 {
5838 .hook = selinux_ipv6_forward,
5839 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005840 .pf = NFPROTO_IPV6,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005841 .hooknum = NF_INET_FORWARD,
5842 .priority = NF_IP6_PRI_SELINUX_FIRST,
5843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844};
5845
5846#endif /* IPV6 */
5847
5848static int __init selinux_nf_ip_init(void)
5849{
5850 int err = 0;
5851
5852 if (!selinux_enabled)
5853 goto out;
Eric Parisfadcdb42007-02-22 18:11:31 -05005854
5855 printk(KERN_DEBUG "SELinux: Registering netfilter hooks\n");
5856
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07005857 err = nf_register_hooks(selinux_ipv4_ops, ARRAY_SIZE(selinux_ipv4_ops));
5858 if (err)
5859 panic("SELinux: nf_register_hooks for IPv4: error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
5861#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07005862 err = nf_register_hooks(selinux_ipv6_ops, ARRAY_SIZE(selinux_ipv6_ops));
5863 if (err)
5864 panic("SELinux: nf_register_hooks for IPv6: error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865#endif /* IPV6 */
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005866
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867out:
5868 return err;
5869}
5870
5871__initcall(selinux_nf_ip_init);
5872
5873#ifdef CONFIG_SECURITY_SELINUX_DISABLE
5874static void selinux_nf_ip_exit(void)
5875{
Eric Parisfadcdb42007-02-22 18:11:31 -05005876 printk(KERN_DEBUG "SELinux: Unregistering netfilter hooks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07005878 nf_unregister_hooks(selinux_ipv4_ops, ARRAY_SIZE(selinux_ipv4_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07005880 nf_unregister_hooks(selinux_ipv6_ops, ARRAY_SIZE(selinux_ipv6_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881#endif /* IPV6 */
5882}
5883#endif
5884
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08005885#else /* CONFIG_NETFILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886
5887#ifdef CONFIG_SECURITY_SELINUX_DISABLE
5888#define selinux_nf_ip_exit()
5889#endif
5890
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08005891#endif /* CONFIG_NETFILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892
5893#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Eric Paris828dfe12008-04-17 13:17:49 -04005894static int selinux_disabled;
5895
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896int selinux_disable(void)
5897{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898 if (ss_initialized) {
5899 /* Not permitted after initial policy load. */
5900 return -EINVAL;
5901 }
5902
5903 if (selinux_disabled) {
5904 /* Only do this once. */
5905 return -EINVAL;
5906 }
5907
5908 printk(KERN_INFO "SELinux: Disabled at runtime.\n");
5909
5910 selinux_disabled = 1;
Stephen Smalley30d55282006-05-03 10:52:36 -04005911 selinux_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912
wzt.wzt@gmail.com189b3b12010-02-23 23:15:28 +08005913 reset_security_ops();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914
Eric Parisaf8ff042009-09-20 21:23:01 -04005915 /* Try to destroy the avc node cache */
5916 avc_disable();
5917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 /* Unregister netfilter hooks. */
5919 selinux_nf_ip_exit();
5920
5921 /* Unregister selinuxfs. */
5922 exit_sel_fs();
5923
5924 return 0;
5925}
5926#endif