blob: a7096e130c0434ab9b403c6d23f4d14e32acb5ec [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 Moore216c4a72013-12-04 16:10:45 -050056#include <net/inet_connection_sock.h>
Paul Moore220deb92008-01-29 08:38:23 -050057#include <net/net_namespace.h>
Paul Moored621d352008-01-29 08:43:36 -050058#include <net/netlabel.h>
Eric Parisf5269712008-05-14 11:27:45 -040059#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/ioctls.h>
Arun Sharma600634972011-07-26 16:09:06 -070061#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/bitops.h>
63#include <linux/interrupt.h>
64#include <linux/netdevice.h> /* for network interface checks */
Hong zhi guo77954982013-03-27 06:49:35 +000065#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/tcp.h>
67#include <linux/udp.h>
James Morris2ee92d42006-11-13 16:09:01 -080068#include <linux/dccp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <linux/quota.h>
70#include <linux/un.h> /* for Unix socket types */
71#include <net/af_unix.h> /* for Unix socket types */
72#include <linux/parser.h>
73#include <linux/nfs_mount.h>
74#include <net/ipv6.h>
75#include <linux/hugetlb.h>
76#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/audit.h>
Eric Paris6931dfc2005-06-30 02:58:51 -070078#include <linux/string.h>
Catherine Zhang877ce7c2006-06-29 12:27:47 -070079#include <linux/selinux.h>
Eric Paris23970742006-09-25 23:32:01 -070080#include <linux/mutex.h>
Frank Mayharf06febc2008-09-12 09:54:39 -070081#include <linux/posix-timers.h>
Kees Cook00234592010-02-03 15:36:43 -080082#include <linux/syslog.h>
Serge E. Hallyn34867402011-03-23 16:43:17 -070083#include <linux/user_namespace.h>
Paul Gortmaker44fc7ea2011-05-26 20:52:10 -040084#include <linux/export.h>
Al Viro40401532012-02-13 03:58:52 +000085#include <linux/msg.h>
86#include <linux/shm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#include "avc.h"
89#include "objsec.h"
90#include "netif.h"
Paul Moore224dfbd2008-01-29 08:38:13 -050091#include "netnode.h"
Paul Moore3e112172008-04-10 10:48:14 -040092#include "netport.h"
Trent Jaegerd28d1e02005-12-13 23:12:40 -080093#include "xfrm.h"
Paul Moorec60475b2007-02-28 15:14:23 -050094#include "netlabel.h"
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +020095#include "audit.h"
James Morris7b98a582011-08-30 12:52:32 +100096#include "avc_ss.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David P. Quigley11689d42009-01-16 09:22:03 -050098#define NUM_SEL_MNT_OPTS 5
Eric Parisc9180a52007-11-30 13:00:35 -050099
James Morris20510f22007-10-16 23:31:32 -0700100extern struct security_operations *security_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Paul Moored621d352008-01-29 08:43:36 -0500102/* SECMARK reference count */
James Morris56a4ca92011-08-17 11:08:43 +1000103static atomic_t selinux_secmark_refcount = ATOMIC_INIT(0);
Paul Moored621d352008-01-29 08:43:36 -0500104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Eric Paris828dfe12008-04-17 13:17:49 -0400106int selinux_enforcing;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108static int __init enforcing_setup(char *str)
109{
Eric Parisf5269712008-05-14 11:27:45 -0400110 unsigned long enforcing;
111 if (!strict_strtoul(str, 0, &enforcing))
112 selinux_enforcing = enforcing ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return 1;
114}
115__setup("enforcing=", enforcing_setup);
116#endif
117
118#ifdef CONFIG_SECURITY_SELINUX_BOOTPARAM
119int selinux_enabled = CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE;
120
121static int __init selinux_enabled_setup(char *str)
122{
Eric Parisf5269712008-05-14 11:27:45 -0400123 unsigned long enabled;
124 if (!strict_strtoul(str, 0, &enabled))
125 selinux_enabled = enabled ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return 1;
127}
128__setup("selinux=", selinux_enabled_setup);
Stephen Smalley30d55282006-05-03 10:52:36 -0400129#else
130int selinux_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif
132
Christoph Lametere18b8902006-12-06 20:33:20 -0800133static struct kmem_cache *sel_inode_cache;
James Morris7cae7e22006-03-22 00:09:22 -0800134
Paul Moored621d352008-01-29 08:43:36 -0500135/**
136 * selinux_secmark_enabled - Check to see if SECMARK is currently enabled
137 *
138 * Description:
139 * This function checks the SECMARK reference counter to see if any SECMARK
140 * targets are currently configured, if the reference counter is greater than
141 * zero SECMARK is considered to be enabled. Returns true (1) if SECMARK is
142 * enabled, false (0) if SECMARK is disabled.
143 *
144 */
145static int selinux_secmark_enabled(void)
146{
147 return (atomic_read(&selinux_secmark_refcount) > 0);
148}
149
David Howellsd84f4f92008-11-14 10:39:23 +1100150/*
151 * initialise the security for the init task
152 */
153static void cred_init_security(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
David Howells3b11a1d2008-11-14 10:39:26 +1100155 struct cred *cred = (struct cred *) current->real_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct task_security_struct *tsec;
157
James Morris89d155e2005-10-30 14:59:21 -0800158 tsec = kzalloc(sizeof(struct task_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (!tsec)
David Howellsd84f4f92008-11-14 10:39:23 +1100160 panic("SELinux: Failed to initialize initial task.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
David Howellsd84f4f92008-11-14 10:39:23 +1100162 tsec->osid = tsec->sid = SECINITSID_KERNEL;
David Howellsf1752ee2008-11-14 10:39:17 +1100163 cred->security = tsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
David Howells275bb412008-11-14 10:39:19 +1100166/*
David Howells88e67f32008-11-14 10:39:21 +1100167 * get the security ID of a set of credentials
168 */
169static inline u32 cred_sid(const struct cred *cred)
170{
171 const struct task_security_struct *tsec;
172
173 tsec = cred->security;
174 return tsec->sid;
175}
176
177/*
David Howells3b11a1d2008-11-14 10:39:26 +1100178 * get the objective security ID of a task
David Howells275bb412008-11-14 10:39:19 +1100179 */
180static inline u32 task_sid(const struct task_struct *task)
181{
David Howells275bb412008-11-14 10:39:19 +1100182 u32 sid;
183
184 rcu_read_lock();
David Howells88e67f32008-11-14 10:39:21 +1100185 sid = cred_sid(__task_cred(task));
David Howells275bb412008-11-14 10:39:19 +1100186 rcu_read_unlock();
187 return sid;
188}
189
190/*
David Howells3b11a1d2008-11-14 10:39:26 +1100191 * get the subjective security ID of the current task
David Howells275bb412008-11-14 10:39:19 +1100192 */
193static inline u32 current_sid(void)
194{
Paul Moore5fb49872010-04-22 14:46:19 -0400195 const struct task_security_struct *tsec = current_security();
David Howells275bb412008-11-14 10:39:19 +1100196
197 return tsec->sid;
198}
199
David Howells88e67f32008-11-14 10:39:21 +1100200/* Allocate and free functions for each kind of security blob. */
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static int inode_alloc_security(struct inode *inode)
203{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct inode_security_struct *isec;
David Howells275bb412008-11-14 10:39:19 +1100205 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Josef Bacika02fe132008-04-04 09:35:05 +1100207 isec = kmem_cache_zalloc(sel_inode_cache, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (!isec)
209 return -ENOMEM;
210
Eric Paris23970742006-09-25 23:32:01 -0700211 mutex_init(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 INIT_LIST_HEAD(&isec->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 isec->inode = inode;
214 isec->sid = SECINITSID_UNLABELED;
215 isec->sclass = SECCLASS_FILE;
David Howells275bb412008-11-14 10:39:19 +1100216 isec->task_sid = sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 inode->i_security = isec;
218
219 return 0;
220}
221
Steven Rostedt057f2f72014-01-09 21:46:34 -0500222static void inode_free_rcu(struct rcu_head *head)
223{
224 struct inode_security_struct *isec;
225
226 isec = container_of(head, struct inode_security_struct, rcu);
227 kmem_cache_free(sel_inode_cache, isec);
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static void inode_free_security(struct inode *inode)
231{
232 struct inode_security_struct *isec = inode->i_security;
233 struct superblock_security_struct *sbsec = inode->i_sb->s_security;
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 spin_lock(&sbsec->isec_lock);
236 if (!list_empty(&isec->list))
237 list_del_init(&isec->list);
238 spin_unlock(&sbsec->isec_lock);
239
Steven Rostedt057f2f72014-01-09 21:46:34 -0500240 /*
241 * The inode may still be referenced in a path walk and
242 * a call to selinux_inode_permission() can be made
243 * after inode_free_security() is called. Ideally, the VFS
244 * wouldn't do this, but fixing that is a much harder
245 * job. For now, simply free the i_security via RCU, and
246 * leave the current inode->i_security pointer intact.
247 * The inode will be freed after the RCU grace period too.
248 */
249 call_rcu(&isec->rcu, inode_free_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252static int file_alloc_security(struct file *file)
253{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 struct file_security_struct *fsec;
David Howells275bb412008-11-14 10:39:19 +1100255 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Stephen Smalley26d2a4b2006-02-01 03:05:55 -0800257 fsec = kzalloc(sizeof(struct file_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (!fsec)
259 return -ENOMEM;
260
David Howells275bb412008-11-14 10:39:19 +1100261 fsec->sid = sid;
262 fsec->fown_sid = sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 file->f_security = fsec;
264
265 return 0;
266}
267
268static void file_free_security(struct file *file)
269{
270 struct file_security_struct *fsec = file->f_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 file->f_security = NULL;
272 kfree(fsec);
273}
274
275static int superblock_alloc_security(struct super_block *sb)
276{
277 struct superblock_security_struct *sbsec;
278
James Morris89d155e2005-10-30 14:59:21 -0800279 sbsec = kzalloc(sizeof(struct superblock_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (!sbsec)
281 return -ENOMEM;
282
Eric Parisbc7e9822006-09-25 23:32:02 -0700283 mutex_init(&sbsec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 INIT_LIST_HEAD(&sbsec->isec_head);
285 spin_lock_init(&sbsec->isec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 sbsec->sb = sb;
287 sbsec->sid = SECINITSID_UNLABELED;
288 sbsec->def_sid = SECINITSID_FILE;
Eric Parisc312feb2006-07-10 04:43:53 -0700289 sbsec->mntpoint_sid = SECINITSID_UNLABELED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 sb->s_security = sbsec;
291
292 return 0;
293}
294
295static void superblock_free_security(struct super_block *sb)
296{
297 struct superblock_security_struct *sbsec = sb->s_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 sb->s_security = NULL;
299 kfree(sbsec);
300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/* The file system's label must be initialized prior to use. */
303
Stephen Hemminger634a5392010-03-04 21:59:03 -0800304static const char *labeling_behaviors[6] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 "uses xattr",
306 "uses transition SIDs",
307 "uses task SIDs",
308 "uses genfs_contexts",
309 "not configured for labeling",
310 "uses mountpoint labeling",
311};
312
313static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dentry);
314
315static inline int inode_doinit(struct inode *inode)
316{
317 return inode_doinit_with_dentry(inode, NULL);
318}
319
320enum {
Eric Paris31e87932007-09-19 17:19:12 -0400321 Opt_error = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 Opt_context = 1,
323 Opt_fscontext = 2,
Eric Parisc9180a52007-11-30 13:00:35 -0500324 Opt_defcontext = 3,
325 Opt_rootcontext = 4,
David P. Quigley11689d42009-01-16 09:22:03 -0500326 Opt_labelsupport = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327};
328
Steven Whitehousea447c092008-10-13 10:46:57 +0100329static const match_table_t tokens = {
Eric Paris832cbd92008-04-01 13:24:09 -0400330 {Opt_context, CONTEXT_STR "%s"},
331 {Opt_fscontext, FSCONTEXT_STR "%s"},
332 {Opt_defcontext, DEFCONTEXT_STR "%s"},
333 {Opt_rootcontext, ROOTCONTEXT_STR "%s"},
David P. Quigley11689d42009-01-16 09:22:03 -0500334 {Opt_labelsupport, LABELSUPP_STR},
Eric Paris31e87932007-09-19 17:19:12 -0400335 {Opt_error, NULL},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336};
337
338#define SEL_MOUNT_FAIL_MSG "SELinux: duplicate or incompatible mount options\n"
339
Eric Parisc312feb2006-07-10 04:43:53 -0700340static int may_context_mount_sb_relabel(u32 sid,
341 struct superblock_security_struct *sbsec,
David Howells275bb412008-11-14 10:39:19 +1100342 const struct cred *cred)
Eric Parisc312feb2006-07-10 04:43:53 -0700343{
David Howells275bb412008-11-14 10:39:19 +1100344 const struct task_security_struct *tsec = cred->security;
Eric Parisc312feb2006-07-10 04:43:53 -0700345 int rc;
346
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(tsec->sid, sid, SECCLASS_FILESYSTEM,
353 FILESYSTEM__RELABELTO, NULL);
354 return rc;
355}
356
Eric Paris08089252006-07-10 04:43:55 -0700357static int may_context_mount_inode_relabel(u32 sid,
358 struct superblock_security_struct *sbsec,
David Howells275bb412008-11-14 10:39:19 +1100359 const struct cred *cred)
Eric Paris08089252006-07-10 04:43:55 -0700360{
David Howells275bb412008-11-14 10:39:19 +1100361 const struct task_security_struct *tsec = cred->security;
Eric Paris08089252006-07-10 04:43:55 -0700362 int rc;
363 rc = avc_has_perm(tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM,
364 FILESYSTEM__RELABELFROM, NULL);
365 if (rc)
366 return rc;
367
368 rc = avc_has_perm(sid, sbsec->sid, SECCLASS_FILESYSTEM,
369 FILESYSTEM__ASSOCIATE, NULL);
370 return rc;
371}
372
Eric Parisc9180a52007-11-30 13:00:35 -0500373static int sb_finish_set_opts(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 struct superblock_security_struct *sbsec = sb->s_security;
376 struct dentry *root = sb->s_root;
Eric Parisc9180a52007-11-30 13:00:35 -0500377 struct inode *root_inode = root->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int rc = 0;
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (sbsec->behavior == SECURITY_FS_USE_XATTR) {
381 /* Make sure that the xattr handler exists and that no
382 error other than -ENODATA is returned by getxattr on
383 the root directory. -ENODATA is ok, as this may be
384 the first boot of the SELinux kernel before we have
385 assigned xattr values to the filesystem. */
Eric Parisc9180a52007-11-30 13:00:35 -0500386 if (!root_inode->i_op->getxattr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 printk(KERN_WARNING "SELinux: (dev %s, type %s) has no "
388 "xattr support\n", sb->s_id, sb->s_type->name);
389 rc = -EOPNOTSUPP;
390 goto out;
391 }
Eric Parisc9180a52007-11-30 13:00:35 -0500392 rc = root_inode->i_op->getxattr(root, XATTR_NAME_SELINUX, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (rc < 0 && rc != -ENODATA) {
394 if (rc == -EOPNOTSUPP)
395 printk(KERN_WARNING "SELinux: (dev %s, type "
396 "%s) has no security xattr handler\n",
397 sb->s_id, sb->s_type->name);
398 else
399 printk(KERN_WARNING "SELinux: (dev %s, type "
400 "%s) getxattr errno %d\n", sb->s_id,
401 sb->s_type->name, -rc);
402 goto out;
403 }
404 }
405
David P. Quigley11689d42009-01-16 09:22:03 -0500406 sbsec->flags |= (SE_SBINITIALIZED | SE_SBLABELSUPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Eric Parisc9180a52007-11-30 13:00:35 -0500408 if (sbsec->behavior > ARRAY_SIZE(labeling_behaviors))
Eric Parisfadcdb42007-02-22 18:11:31 -0500409 printk(KERN_ERR "SELinux: initialized (dev %s, type %s), unknown behavior\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 sb->s_id, sb->s_type->name);
Eric Parisc9180a52007-11-30 13:00:35 -0500411 else
Eric Parisfadcdb42007-02-22 18:11:31 -0500412 printk(KERN_DEBUG "SELinux: initialized (dev %s, type %s), %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 sb->s_id, sb->s_type->name,
414 labeling_behaviors[sbsec->behavior-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
David P. Quigley11689d42009-01-16 09:22:03 -0500416 if (sbsec->behavior == SECURITY_FS_USE_GENFS ||
417 sbsec->behavior == SECURITY_FS_USE_MNTPOINT ||
418 sbsec->behavior == SECURITY_FS_USE_NONE ||
419 sbsec->behavior > ARRAY_SIZE(labeling_behaviors))
420 sbsec->flags &= ~SE_SBLABELSUPP;
421
David P. Quigleyddd29ec2009-09-09 14:25:37 -0400422 /* Special handling for sysfs. Is genfs but also has setxattr handler*/
423 if (strncmp(sb->s_type->name, "sysfs", sizeof("sysfs")) == 0)
424 sbsec->flags |= SE_SBLABELSUPP;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* Initialize the root inode. */
Eric Parisc9180a52007-11-30 13:00:35 -0500427 rc = inode_doinit_with_dentry(root_inode, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /* Initialize any other inodes associated with the superblock, e.g.
430 inodes created prior to initial policy load or inodes created
431 during get_sb by a pseudo filesystem that directly
432 populates itself. */
433 spin_lock(&sbsec->isec_lock);
434next_inode:
435 if (!list_empty(&sbsec->isec_head)) {
436 struct inode_security_struct *isec =
437 list_entry(sbsec->isec_head.next,
Eric Parisc9180a52007-11-30 13:00:35 -0500438 struct inode_security_struct, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 struct inode *inode = isec->inode;
440 spin_unlock(&sbsec->isec_lock);
441 inode = igrab(inode);
442 if (inode) {
Eric Parisc9180a52007-11-30 13:00:35 -0500443 if (!IS_PRIVATE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 inode_doinit(inode);
445 iput(inode);
446 }
447 spin_lock(&sbsec->isec_lock);
448 list_del_init(&isec->list);
449 goto next_inode;
450 }
451 spin_unlock(&sbsec->isec_lock);
452out:
Eric Parisc9180a52007-11-30 13:00:35 -0500453 return rc;
454}
455
456/*
457 * This function should allow an FS to ask what it's mount security
458 * options were so it can use those later for submounts, displaying
459 * mount options, or whatever.
460 */
461static int selinux_get_mnt_opts(const struct super_block *sb,
Eric Parise0007522008-03-05 10:31:54 -0500462 struct security_mnt_opts *opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500463{
464 int rc = 0, i;
465 struct superblock_security_struct *sbsec = sb->s_security;
466 char *context = NULL;
467 u32 len;
468 char tmp;
469
Eric Parise0007522008-03-05 10:31:54 -0500470 security_init_mnt_opts(opts);
Eric Parisc9180a52007-11-30 13:00:35 -0500471
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500472 if (!(sbsec->flags & SE_SBINITIALIZED))
Eric Parisc9180a52007-11-30 13:00:35 -0500473 return -EINVAL;
474
475 if (!ss_initialized)
476 return -EINVAL;
477
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500478 tmp = sbsec->flags & SE_MNTMASK;
Eric Parisc9180a52007-11-30 13:00:35 -0500479 /* count the number of mount options for this sb */
480 for (i = 0; i < 8; i++) {
481 if (tmp & 0x01)
Eric Parise0007522008-03-05 10:31:54 -0500482 opts->num_mnt_opts++;
Eric Parisc9180a52007-11-30 13:00:35 -0500483 tmp >>= 1;
484 }
David P. Quigley11689d42009-01-16 09:22:03 -0500485 /* Check if the Label support flag is set */
486 if (sbsec->flags & SE_SBLABELSUPP)
487 opts->num_mnt_opts++;
Eric Parisc9180a52007-11-30 13:00:35 -0500488
Eric Parise0007522008-03-05 10:31:54 -0500489 opts->mnt_opts = kcalloc(opts->num_mnt_opts, sizeof(char *), GFP_ATOMIC);
490 if (!opts->mnt_opts) {
Eric Parisc9180a52007-11-30 13:00:35 -0500491 rc = -ENOMEM;
492 goto out_free;
493 }
494
Eric Parise0007522008-03-05 10:31:54 -0500495 opts->mnt_opts_flags = kcalloc(opts->num_mnt_opts, sizeof(int), GFP_ATOMIC);
496 if (!opts->mnt_opts_flags) {
Eric Parisc9180a52007-11-30 13:00:35 -0500497 rc = -ENOMEM;
498 goto out_free;
499 }
500
501 i = 0;
502 if (sbsec->flags & FSCONTEXT_MNT) {
503 rc = security_sid_to_context(sbsec->sid, &context, &len);
504 if (rc)
505 goto out_free;
Eric Parise0007522008-03-05 10:31:54 -0500506 opts->mnt_opts[i] = context;
507 opts->mnt_opts_flags[i++] = FSCONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500508 }
509 if (sbsec->flags & CONTEXT_MNT) {
510 rc = security_sid_to_context(sbsec->mntpoint_sid, &context, &len);
511 if (rc)
512 goto out_free;
Eric Parise0007522008-03-05 10:31:54 -0500513 opts->mnt_opts[i] = context;
514 opts->mnt_opts_flags[i++] = CONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500515 }
516 if (sbsec->flags & DEFCONTEXT_MNT) {
517 rc = security_sid_to_context(sbsec->def_sid, &context, &len);
518 if (rc)
519 goto out_free;
Eric Parise0007522008-03-05 10:31:54 -0500520 opts->mnt_opts[i] = context;
521 opts->mnt_opts_flags[i++] = DEFCONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500522 }
523 if (sbsec->flags & ROOTCONTEXT_MNT) {
524 struct inode *root = sbsec->sb->s_root->d_inode;
525 struct inode_security_struct *isec = root->i_security;
526
527 rc = security_sid_to_context(isec->sid, &context, &len);
528 if (rc)
529 goto out_free;
Eric Parise0007522008-03-05 10:31:54 -0500530 opts->mnt_opts[i] = context;
531 opts->mnt_opts_flags[i++] = ROOTCONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500532 }
David P. Quigley11689d42009-01-16 09:22:03 -0500533 if (sbsec->flags & SE_SBLABELSUPP) {
534 opts->mnt_opts[i] = NULL;
535 opts->mnt_opts_flags[i++] = SE_SBLABELSUPP;
536 }
Eric Parisc9180a52007-11-30 13:00:35 -0500537
Eric Parise0007522008-03-05 10:31:54 -0500538 BUG_ON(i != opts->num_mnt_opts);
Eric Parisc9180a52007-11-30 13:00:35 -0500539
540 return 0;
541
542out_free:
Eric Parise0007522008-03-05 10:31:54 -0500543 security_free_mnt_opts(opts);
Eric Parisc9180a52007-11-30 13:00:35 -0500544 return rc;
545}
546
547static int bad_option(struct superblock_security_struct *sbsec, char flag,
548 u32 old_sid, u32 new_sid)
549{
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500550 char mnt_flags = sbsec->flags & SE_MNTMASK;
551
Eric Parisc9180a52007-11-30 13:00:35 -0500552 /* check if the old mount command had the same options */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500553 if (sbsec->flags & SE_SBINITIALIZED)
Eric Parisc9180a52007-11-30 13:00:35 -0500554 if (!(sbsec->flags & flag) ||
555 (old_sid != new_sid))
556 return 1;
557
558 /* check if we were passed the same options twice,
559 * aka someone passed context=a,context=b
560 */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500561 if (!(sbsec->flags & SE_SBINITIALIZED))
562 if (mnt_flags & flag)
Eric Parisc9180a52007-11-30 13:00:35 -0500563 return 1;
564 return 0;
565}
Eric Parise0007522008-03-05 10:31:54 -0500566
Eric Parisc9180a52007-11-30 13:00:35 -0500567/*
568 * Allow filesystems with binary mount data to explicitly set mount point
569 * labeling information.
570 */
Eric Parise0007522008-03-05 10:31:54 -0500571static int selinux_set_mnt_opts(struct super_block *sb,
572 struct security_mnt_opts *opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500573{
David Howells275bb412008-11-14 10:39:19 +1100574 const struct cred *cred = current_cred();
Eric Parisc9180a52007-11-30 13:00:35 -0500575 int rc = 0, i;
Eric Parisc9180a52007-11-30 13:00:35 -0500576 struct superblock_security_struct *sbsec = sb->s_security;
577 const char *name = sb->s_type->name;
James Morris089be432008-07-15 18:32:49 +1000578 struct inode *inode = sbsec->sb->s_root->d_inode;
579 struct inode_security_struct *root_isec = inode->i_security;
Eric Parisc9180a52007-11-30 13:00:35 -0500580 u32 fscontext_sid = 0, context_sid = 0, rootcontext_sid = 0;
581 u32 defcontext_sid = 0;
Eric Parise0007522008-03-05 10:31:54 -0500582 char **mount_options = opts->mnt_opts;
583 int *flags = opts->mnt_opts_flags;
584 int num_opts = opts->num_mnt_opts;
Eric Parisc9180a52007-11-30 13:00:35 -0500585
586 mutex_lock(&sbsec->lock);
587
588 if (!ss_initialized) {
589 if (!num_opts) {
590 /* Defer initialization until selinux_complete_init,
591 after the initial policy is loaded and the security
592 server is ready to handle calls. */
Eric Parisc9180a52007-11-30 13:00:35 -0500593 goto out;
594 }
595 rc = -EINVAL;
Eric Paris744ba352008-04-17 11:52:44 -0400596 printk(KERN_WARNING "SELinux: Unable to set superblock options "
597 "before the security server is initialized\n");
Eric Parisc9180a52007-11-30 13:00:35 -0500598 goto out;
599 }
600
601 /*
Eric Parise0007522008-03-05 10:31:54 -0500602 * Binary mount data FS will come through this function twice. Once
603 * from an explicit call and once from the generic calls from the vfs.
604 * Since the generic VFS calls will not contain any security mount data
605 * we need to skip the double mount verification.
606 *
607 * This does open a hole in which we will not notice if the first
608 * mount using this sb set explict options and a second mount using
609 * this sb does not set any security options. (The first options
610 * will be used for both mounts)
611 */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500612 if ((sbsec->flags & SE_SBINITIALIZED) && (sb->s_type->fs_flags & FS_BINARY_MOUNTDATA)
Eric Parise0007522008-03-05 10:31:54 -0500613 && (num_opts == 0))
Eric Parisf5269712008-05-14 11:27:45 -0400614 goto out;
Eric Parise0007522008-03-05 10:31:54 -0500615
616 /*
Eric Parisc9180a52007-11-30 13:00:35 -0500617 * parse the mount options, check if they are valid sids.
618 * also check if someone is trying to mount the same sb more
619 * than once with different security options.
620 */
621 for (i = 0; i < num_opts; i++) {
622 u32 sid;
David P. Quigley11689d42009-01-16 09:22:03 -0500623
624 if (flags[i] == SE_SBLABELSUPP)
625 continue;
Eric Parisc9180a52007-11-30 13:00:35 -0500626 rc = security_context_to_sid(mount_options[i],
627 strlen(mount_options[i]), &sid);
628 if (rc) {
629 printk(KERN_WARNING "SELinux: security_context_to_sid"
630 "(%s) failed for (dev %s, type %s) errno=%d\n",
631 mount_options[i], sb->s_id, name, rc);
632 goto out;
633 }
634 switch (flags[i]) {
635 case FSCONTEXT_MNT:
636 fscontext_sid = sid;
637
638 if (bad_option(sbsec, FSCONTEXT_MNT, sbsec->sid,
639 fscontext_sid))
640 goto out_double_mount;
641
642 sbsec->flags |= FSCONTEXT_MNT;
643 break;
644 case CONTEXT_MNT:
645 context_sid = sid;
646
647 if (bad_option(sbsec, CONTEXT_MNT, sbsec->mntpoint_sid,
648 context_sid))
649 goto out_double_mount;
650
651 sbsec->flags |= CONTEXT_MNT;
652 break;
653 case ROOTCONTEXT_MNT:
654 rootcontext_sid = sid;
655
656 if (bad_option(sbsec, ROOTCONTEXT_MNT, root_isec->sid,
657 rootcontext_sid))
658 goto out_double_mount;
659
660 sbsec->flags |= ROOTCONTEXT_MNT;
661
662 break;
663 case DEFCONTEXT_MNT:
664 defcontext_sid = sid;
665
666 if (bad_option(sbsec, DEFCONTEXT_MNT, sbsec->def_sid,
667 defcontext_sid))
668 goto out_double_mount;
669
670 sbsec->flags |= DEFCONTEXT_MNT;
671
672 break;
673 default:
674 rc = -EINVAL;
675 goto out;
676 }
677 }
678
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500679 if (sbsec->flags & SE_SBINITIALIZED) {
Eric Parisc9180a52007-11-30 13:00:35 -0500680 /* previously mounted with options, but not on this attempt? */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500681 if ((sbsec->flags & SE_MNTMASK) && !num_opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500682 goto out_double_mount;
683 rc = 0;
684 goto out;
685 }
686
James Morris089be432008-07-15 18:32:49 +1000687 if (strcmp(sb->s_type->name, "proc") == 0)
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500688 sbsec->flags |= SE_SBPROC;
Eric Parisc9180a52007-11-30 13:00:35 -0500689
690 /* Determine the labeling behavior to use for this filesystem type. */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500691 rc = security_fs_use((sbsec->flags & SE_SBPROC) ? "proc" : sb->s_type->name, &sbsec->behavior, &sbsec->sid);
Eric Parisc9180a52007-11-30 13:00:35 -0500692 if (rc) {
693 printk(KERN_WARNING "%s: security_fs_use(%s) returned %d\n",
James Morris089be432008-07-15 18:32:49 +1000694 __func__, sb->s_type->name, rc);
Eric Parisc9180a52007-11-30 13:00:35 -0500695 goto out;
696 }
697
698 /* sets the context of the superblock for the fs being mounted. */
699 if (fscontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100700 rc = may_context_mount_sb_relabel(fscontext_sid, sbsec, cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500701 if (rc)
702 goto out;
703
704 sbsec->sid = fscontext_sid;
705 }
706
707 /*
708 * Switch to using mount point labeling behavior.
709 * sets the label used on all file below the mountpoint, and will set
710 * the superblock context if not already set.
711 */
712 if (context_sid) {
713 if (!fscontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100714 rc = may_context_mount_sb_relabel(context_sid, sbsec,
715 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500716 if (rc)
717 goto out;
718 sbsec->sid = context_sid;
719 } else {
David Howells275bb412008-11-14 10:39:19 +1100720 rc = may_context_mount_inode_relabel(context_sid, sbsec,
721 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500722 if (rc)
723 goto out;
724 }
725 if (!rootcontext_sid)
726 rootcontext_sid = context_sid;
727
728 sbsec->mntpoint_sid = context_sid;
729 sbsec->behavior = SECURITY_FS_USE_MNTPOINT;
730 }
731
732 if (rootcontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100733 rc = may_context_mount_inode_relabel(rootcontext_sid, sbsec,
734 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500735 if (rc)
736 goto out;
737
738 root_isec->sid = rootcontext_sid;
739 root_isec->initialized = 1;
740 }
741
742 if (defcontext_sid) {
743 if (sbsec->behavior != SECURITY_FS_USE_XATTR) {
744 rc = -EINVAL;
745 printk(KERN_WARNING "SELinux: defcontext option is "
746 "invalid for this filesystem type\n");
747 goto out;
748 }
749
750 if (defcontext_sid != sbsec->def_sid) {
751 rc = may_context_mount_inode_relabel(defcontext_sid,
David Howells275bb412008-11-14 10:39:19 +1100752 sbsec, cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500753 if (rc)
754 goto out;
755 }
756
757 sbsec->def_sid = defcontext_sid;
758 }
759
760 rc = sb_finish_set_opts(sb);
761out:
Eric Parisbc7e9822006-09-25 23:32:02 -0700762 mutex_unlock(&sbsec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return rc;
Eric Parisc9180a52007-11-30 13:00:35 -0500764out_double_mount:
765 rc = -EINVAL;
766 printk(KERN_WARNING "SELinux: mount invalid. Same superblock, different "
767 "security settings for (dev %s, type %s)\n", sb->s_id, name);
768 goto out;
769}
770
Jeff Layton094f7b62013-04-01 08:14:24 -0400771static int selinux_cmp_sb_context(const struct super_block *oldsb,
772 const struct super_block *newsb)
773{
774 struct superblock_security_struct *old = oldsb->s_security;
775 struct superblock_security_struct *new = newsb->s_security;
776 char oldflags = old->flags & SE_MNTMASK;
777 char newflags = new->flags & SE_MNTMASK;
778
779 if (oldflags != newflags)
780 goto mismatch;
781 if ((oldflags & FSCONTEXT_MNT) && old->sid != new->sid)
782 goto mismatch;
783 if ((oldflags & CONTEXT_MNT) && old->mntpoint_sid != new->mntpoint_sid)
784 goto mismatch;
785 if ((oldflags & DEFCONTEXT_MNT) && old->def_sid != new->def_sid)
786 goto mismatch;
787 if (oldflags & ROOTCONTEXT_MNT) {
788 struct inode_security_struct *oldroot = oldsb->s_root->d_inode->i_security;
789 struct inode_security_struct *newroot = newsb->s_root->d_inode->i_security;
790 if (oldroot->sid != newroot->sid)
791 goto mismatch;
792 }
793 return 0;
794mismatch:
795 printk(KERN_WARNING "SELinux: mount invalid. Same superblock, "
796 "different security settings for (dev %s, "
797 "type %s)\n", newsb->s_id, newsb->s_type->name);
798 return -EBUSY;
799}
800
801static int selinux_sb_clone_mnt_opts(const struct super_block *oldsb,
Eric Parisc9180a52007-11-30 13:00:35 -0500802 struct super_block *newsb)
803{
804 const struct superblock_security_struct *oldsbsec = oldsb->s_security;
805 struct superblock_security_struct *newsbsec = newsb->s_security;
806
807 int set_fscontext = (oldsbsec->flags & FSCONTEXT_MNT);
808 int set_context = (oldsbsec->flags & CONTEXT_MNT);
809 int set_rootcontext = (oldsbsec->flags & ROOTCONTEXT_MNT);
810
Eric Paris0f5e6422008-04-21 16:24:11 -0400811 /*
812 * if the parent was able to be mounted it clearly had no special lsm
Al Viroe8c26252010-03-23 06:36:54 -0400813 * mount options. thus we can safely deal with this superblock later
Eric Paris0f5e6422008-04-21 16:24:11 -0400814 */
Al Viroe8c26252010-03-23 06:36:54 -0400815 if (!ss_initialized)
Jeff Layton094f7b62013-04-01 08:14:24 -0400816 return 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500817
Eric Parisc9180a52007-11-30 13:00:35 -0500818 /* how can we clone if the old one wasn't set up?? */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500819 BUG_ON(!(oldsbsec->flags & SE_SBINITIALIZED));
Eric Parisc9180a52007-11-30 13:00:35 -0500820
Jeff Layton094f7b62013-04-01 08:14:24 -0400821 /* if fs is reusing a sb, make sure that the contexts match */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500822 if (newsbsec->flags & SE_SBINITIALIZED)
Jeff Layton094f7b62013-04-01 08:14:24 -0400823 return selinux_cmp_sb_context(oldsb, newsb);
Eric Paris5a552612008-04-09 14:08:35 -0400824
Eric Parisc9180a52007-11-30 13:00:35 -0500825 mutex_lock(&newsbsec->lock);
826
827 newsbsec->flags = oldsbsec->flags;
828
829 newsbsec->sid = oldsbsec->sid;
830 newsbsec->def_sid = oldsbsec->def_sid;
831 newsbsec->behavior = oldsbsec->behavior;
832
833 if (set_context) {
834 u32 sid = oldsbsec->mntpoint_sid;
835
836 if (!set_fscontext)
837 newsbsec->sid = sid;
838 if (!set_rootcontext) {
839 struct inode *newinode = newsb->s_root->d_inode;
840 struct inode_security_struct *newisec = newinode->i_security;
841 newisec->sid = sid;
842 }
843 newsbsec->mntpoint_sid = sid;
844 }
845 if (set_rootcontext) {
846 const struct inode *oldinode = oldsb->s_root->d_inode;
847 const struct inode_security_struct *oldisec = oldinode->i_security;
848 struct inode *newinode = newsb->s_root->d_inode;
849 struct inode_security_struct *newisec = newinode->i_security;
850
851 newisec->sid = oldisec->sid;
852 }
853
854 sb_finish_set_opts(newsb);
855 mutex_unlock(&newsbsec->lock);
Jeff Layton094f7b62013-04-01 08:14:24 -0400856 return 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500857}
858
Adrian Bunk2e1479d2008-03-17 22:29:23 +0200859static int selinux_parse_opts_str(char *options,
860 struct security_mnt_opts *opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500861{
Eric Parise0007522008-03-05 10:31:54 -0500862 char *p;
Eric Parisc9180a52007-11-30 13:00:35 -0500863 char *context = NULL, *defcontext = NULL;
864 char *fscontext = NULL, *rootcontext = NULL;
Eric Parise0007522008-03-05 10:31:54 -0500865 int rc, num_mnt_opts = 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500866
Eric Parise0007522008-03-05 10:31:54 -0500867 opts->num_mnt_opts = 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500868
869 /* Standard string-based options. */
870 while ((p = strsep(&options, "|")) != NULL) {
871 int token;
872 substring_t args[MAX_OPT_ARGS];
873
874 if (!*p)
875 continue;
876
877 token = match_token(p, tokens, args);
878
879 switch (token) {
880 case Opt_context:
881 if (context || defcontext) {
882 rc = -EINVAL;
883 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG);
884 goto out_err;
885 }
886 context = match_strdup(&args[0]);
887 if (!context) {
888 rc = -ENOMEM;
889 goto out_err;
890 }
891 break;
892
893 case Opt_fscontext:
894 if (fscontext) {
895 rc = -EINVAL;
896 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG);
897 goto out_err;
898 }
899 fscontext = match_strdup(&args[0]);
900 if (!fscontext) {
901 rc = -ENOMEM;
902 goto out_err;
903 }
904 break;
905
906 case Opt_rootcontext:
907 if (rootcontext) {
908 rc = -EINVAL;
909 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG);
910 goto out_err;
911 }
912 rootcontext = match_strdup(&args[0]);
913 if (!rootcontext) {
914 rc = -ENOMEM;
915 goto out_err;
916 }
917 break;
918
919 case Opt_defcontext:
920 if (context || defcontext) {
921 rc = -EINVAL;
922 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG);
923 goto out_err;
924 }
925 defcontext = match_strdup(&args[0]);
926 if (!defcontext) {
927 rc = -ENOMEM;
928 goto out_err;
929 }
930 break;
David P. Quigley11689d42009-01-16 09:22:03 -0500931 case Opt_labelsupport:
932 break;
Eric Parisc9180a52007-11-30 13:00:35 -0500933 default:
934 rc = -EINVAL;
935 printk(KERN_WARNING "SELinux: unknown mount option\n");
936 goto out_err;
937
938 }
939 }
940
Eric Parise0007522008-03-05 10:31:54 -0500941 rc = -ENOMEM;
942 opts->mnt_opts = kcalloc(NUM_SEL_MNT_OPTS, sizeof(char *), GFP_ATOMIC);
943 if (!opts->mnt_opts)
944 goto out_err;
945
946 opts->mnt_opts_flags = kcalloc(NUM_SEL_MNT_OPTS, sizeof(int), GFP_ATOMIC);
947 if (!opts->mnt_opts_flags) {
948 kfree(opts->mnt_opts);
949 goto out_err;
Eric Parisc9180a52007-11-30 13:00:35 -0500950 }
951
Eric Parise0007522008-03-05 10:31:54 -0500952 if (fscontext) {
953 opts->mnt_opts[num_mnt_opts] = fscontext;
954 opts->mnt_opts_flags[num_mnt_opts++] = FSCONTEXT_MNT;
955 }
956 if (context) {
957 opts->mnt_opts[num_mnt_opts] = context;
958 opts->mnt_opts_flags[num_mnt_opts++] = CONTEXT_MNT;
959 }
960 if (rootcontext) {
961 opts->mnt_opts[num_mnt_opts] = rootcontext;
962 opts->mnt_opts_flags[num_mnt_opts++] = ROOTCONTEXT_MNT;
963 }
964 if (defcontext) {
965 opts->mnt_opts[num_mnt_opts] = defcontext;
966 opts->mnt_opts_flags[num_mnt_opts++] = DEFCONTEXT_MNT;
967 }
968
969 opts->num_mnt_opts = num_mnt_opts;
970 return 0;
971
Eric Parisc9180a52007-11-30 13:00:35 -0500972out_err:
973 kfree(context);
974 kfree(defcontext);
975 kfree(fscontext);
976 kfree(rootcontext);
977 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
Eric Parise0007522008-03-05 10:31:54 -0500979/*
980 * string mount options parsing and call set the sbsec
981 */
982static int superblock_doinit(struct super_block *sb, void *data)
983{
984 int rc = 0;
985 char *options = data;
986 struct security_mnt_opts opts;
987
988 security_init_mnt_opts(&opts);
989
990 if (!data)
991 goto out;
992
993 BUG_ON(sb->s_type->fs_flags & FS_BINARY_MOUNTDATA);
994
995 rc = selinux_parse_opts_str(options, &opts);
996 if (rc)
997 goto out_err;
998
999out:
1000 rc = selinux_set_mnt_opts(sb, &opts);
1001
1002out_err:
1003 security_free_mnt_opts(&opts);
1004 return rc;
1005}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Adrian Bunk3583a712008-07-22 20:21:23 +03001007static void selinux_write_opts(struct seq_file *m,
1008 struct security_mnt_opts *opts)
Eric Paris2069f452008-07-04 09:47:13 +10001009{
1010 int i;
1011 char *prefix;
1012
1013 for (i = 0; i < opts->num_mnt_opts; i++) {
David P. Quigley11689d42009-01-16 09:22:03 -05001014 char *has_comma;
1015
1016 if (opts->mnt_opts[i])
1017 has_comma = strchr(opts->mnt_opts[i], ',');
1018 else
1019 has_comma = NULL;
Eric Paris2069f452008-07-04 09:47:13 +10001020
1021 switch (opts->mnt_opts_flags[i]) {
1022 case CONTEXT_MNT:
1023 prefix = CONTEXT_STR;
1024 break;
1025 case FSCONTEXT_MNT:
1026 prefix = FSCONTEXT_STR;
1027 break;
1028 case ROOTCONTEXT_MNT:
1029 prefix = ROOTCONTEXT_STR;
1030 break;
1031 case DEFCONTEXT_MNT:
1032 prefix = DEFCONTEXT_STR;
1033 break;
David P. Quigley11689d42009-01-16 09:22:03 -05001034 case SE_SBLABELSUPP:
1035 seq_putc(m, ',');
1036 seq_puts(m, LABELSUPP_STR);
1037 continue;
Eric Paris2069f452008-07-04 09:47:13 +10001038 default:
1039 BUG();
Eric Parisa35c6c832011-04-20 10:21:28 -04001040 return;
Eric Paris2069f452008-07-04 09:47:13 +10001041 };
1042 /* we need a comma before each option */
1043 seq_putc(m, ',');
1044 seq_puts(m, prefix);
1045 if (has_comma)
1046 seq_putc(m, '\"');
1047 seq_puts(m, opts->mnt_opts[i]);
1048 if (has_comma)
1049 seq_putc(m, '\"');
1050 }
1051}
1052
1053static int selinux_sb_show_options(struct seq_file *m, struct super_block *sb)
1054{
1055 struct security_mnt_opts opts;
1056 int rc;
1057
1058 rc = selinux_get_mnt_opts(sb, &opts);
Eric Paris383795c2008-07-29 17:07:26 -04001059 if (rc) {
1060 /* before policy load we may get EINVAL, don't show anything */
1061 if (rc == -EINVAL)
1062 rc = 0;
Eric Paris2069f452008-07-04 09:47:13 +10001063 return rc;
Eric Paris383795c2008-07-29 17:07:26 -04001064 }
Eric Paris2069f452008-07-04 09:47:13 +10001065
1066 selinux_write_opts(m, &opts);
1067
1068 security_free_mnt_opts(&opts);
1069
1070 return rc;
1071}
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073static inline u16 inode_mode_to_security_class(umode_t mode)
1074{
1075 switch (mode & S_IFMT) {
1076 case S_IFSOCK:
1077 return SECCLASS_SOCK_FILE;
1078 case S_IFLNK:
1079 return SECCLASS_LNK_FILE;
1080 case S_IFREG:
1081 return SECCLASS_FILE;
1082 case S_IFBLK:
1083 return SECCLASS_BLK_FILE;
1084 case S_IFDIR:
1085 return SECCLASS_DIR;
1086 case S_IFCHR:
1087 return SECCLASS_CHR_FILE;
1088 case S_IFIFO:
1089 return SECCLASS_FIFO_FILE;
1090
1091 }
1092
1093 return SECCLASS_FILE;
1094}
1095
James Morris13402582005-09-30 14:24:34 -04001096static inline int default_protocol_stream(int protocol)
1097{
1098 return (protocol == IPPROTO_IP || protocol == IPPROTO_TCP);
1099}
1100
1101static inline int default_protocol_dgram(int protocol)
1102{
1103 return (protocol == IPPROTO_IP || protocol == IPPROTO_UDP);
1104}
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106static inline u16 socket_type_to_security_class(int family, int type, int protocol)
1107{
1108 switch (family) {
1109 case PF_UNIX:
1110 switch (type) {
1111 case SOCK_STREAM:
1112 case SOCK_SEQPACKET:
1113 return SECCLASS_UNIX_STREAM_SOCKET;
1114 case SOCK_DGRAM:
1115 return SECCLASS_UNIX_DGRAM_SOCKET;
1116 }
1117 break;
1118 case PF_INET:
1119 case PF_INET6:
1120 switch (type) {
1121 case SOCK_STREAM:
James Morris13402582005-09-30 14:24:34 -04001122 if (default_protocol_stream(protocol))
1123 return SECCLASS_TCP_SOCKET;
1124 else
1125 return SECCLASS_RAWIP_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 case SOCK_DGRAM:
James Morris13402582005-09-30 14:24:34 -04001127 if (default_protocol_dgram(protocol))
1128 return SECCLASS_UDP_SOCKET;
1129 else
1130 return SECCLASS_RAWIP_SOCKET;
James Morris2ee92d42006-11-13 16:09:01 -08001131 case SOCK_DCCP:
1132 return SECCLASS_DCCP_SOCKET;
James Morris13402582005-09-30 14:24:34 -04001133 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return SECCLASS_RAWIP_SOCKET;
1135 }
1136 break;
1137 case PF_NETLINK:
1138 switch (protocol) {
1139 case NETLINK_ROUTE:
1140 return SECCLASS_NETLINK_ROUTE_SOCKET;
1141 case NETLINK_FIREWALL:
1142 return SECCLASS_NETLINK_FIREWALL_SOCKET;
Pavel Emelyanov7f1fb602011-12-06 07:56:43 +00001143 case NETLINK_SOCK_DIAG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return SECCLASS_NETLINK_TCPDIAG_SOCKET;
1145 case NETLINK_NFLOG:
1146 return SECCLASS_NETLINK_NFLOG_SOCKET;
1147 case NETLINK_XFRM:
1148 return SECCLASS_NETLINK_XFRM_SOCKET;
1149 case NETLINK_SELINUX:
1150 return SECCLASS_NETLINK_SELINUX_SOCKET;
1151 case NETLINK_AUDIT:
1152 return SECCLASS_NETLINK_AUDIT_SOCKET;
1153 case NETLINK_IP6_FW:
1154 return SECCLASS_NETLINK_IP6FW_SOCKET;
1155 case NETLINK_DNRTMSG:
1156 return SECCLASS_NETLINK_DNRT_SOCKET;
James Morris0c9b7942005-04-16 15:24:13 -07001157 case NETLINK_KOBJECT_UEVENT:
1158 return SECCLASS_NETLINK_KOBJECT_UEVENT_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 default:
1160 return SECCLASS_NETLINK_SOCKET;
1161 }
1162 case PF_PACKET:
1163 return SECCLASS_PACKET_SOCKET;
1164 case PF_KEY:
1165 return SECCLASS_KEY_SOCKET;
Christopher J. PeBenito3e3ff152006-06-09 00:25:03 -07001166 case PF_APPLETALK:
1167 return SECCLASS_APPLETALK_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
1169
1170 return SECCLASS_SOCKET;
1171}
1172
1173#ifdef CONFIG_PROC_FS
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001174static int selinux_proc_get_sid(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 u16 tclass,
1176 u32 *sid)
1177{
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001178 int rc;
1179 char *buffer, *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Eric Paris828dfe12008-04-17 13:17:49 -04001181 buffer = (char *)__get_free_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (!buffer)
1183 return -ENOMEM;
1184
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001185 path = dentry_path_raw(dentry, buffer, PAGE_SIZE);
1186 if (IS_ERR(path))
1187 rc = PTR_ERR(path);
1188 else {
1189 /* each process gets a /proc/PID/ entry. Strip off the
1190 * PID part to get a valid selinux labeling.
1191 * e.g. /proc/1/net/rpc/nfs -> /net/rpc/nfs */
1192 while (path[1] >= '0' && path[1] <= '9') {
1193 path[1] = '/';
1194 path++;
1195 }
1196 rc = security_genfs_sid("proc", path, tclass, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 free_page((unsigned long)buffer);
1199 return rc;
1200}
1201#else
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001202static int selinux_proc_get_sid(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 u16 tclass,
1204 u32 *sid)
1205{
1206 return -EINVAL;
1207}
1208#endif
1209
1210/* The inode's security attributes must be initialized before first use. */
1211static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dentry)
1212{
1213 struct superblock_security_struct *sbsec = NULL;
1214 struct inode_security_struct *isec = inode->i_security;
1215 u32 sid;
1216 struct dentry *dentry;
1217#define INITCONTEXTLEN 255
1218 char *context = NULL;
1219 unsigned len = 0;
1220 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 if (isec->initialized)
1223 goto out;
1224
Eric Paris23970742006-09-25 23:32:01 -07001225 mutex_lock(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (isec->initialized)
Eric Paris23970742006-09-25 23:32:01 -07001227 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 sbsec = inode->i_sb->s_security;
David P. Quigley0d90a7e2009-01-16 09:22:02 -05001230 if (!(sbsec->flags & SE_SBINITIALIZED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 /* Defer initialization until selinux_complete_init,
1232 after the initial policy is loaded and the security
1233 server is ready to handle calls. */
1234 spin_lock(&sbsec->isec_lock);
1235 if (list_empty(&isec->list))
1236 list_add(&isec->list, &sbsec->isec_head);
1237 spin_unlock(&sbsec->isec_lock);
Eric Paris23970742006-09-25 23:32:01 -07001238 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240
1241 switch (sbsec->behavior) {
1242 case SECURITY_FS_USE_XATTR:
1243 if (!inode->i_op->getxattr) {
1244 isec->sid = sbsec->def_sid;
1245 break;
1246 }
1247
1248 /* Need a dentry, since the xattr API requires one.
1249 Life would be simpler if we could just pass the inode. */
1250 if (opt_dentry) {
1251 /* Called from d_instantiate or d_splice_alias. */
1252 dentry = dget(opt_dentry);
1253 } else {
1254 /* Called from selinux_complete_init, try to find a dentry. */
1255 dentry = d_find_alias(inode);
1256 }
1257 if (!dentry) {
Eric Parisdf7f54c2009-03-09 14:35:58 -04001258 /*
1259 * this is can be hit on boot when a file is accessed
1260 * before the policy is loaded. When we load policy we
1261 * may find inodes that have no dentry on the
1262 * sbsec->isec_head list. No reason to complain as these
1263 * will get fixed up the next time we go through
1264 * inode_doinit with a dentry, before these inodes could
1265 * be used again by userspace.
1266 */
Eric Paris23970742006-09-25 23:32:01 -07001267 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
1270 len = INITCONTEXTLEN;
Eric Paris4cb912f2009-02-12 14:50:05 -05001271 context = kmalloc(len+1, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (!context) {
1273 rc = -ENOMEM;
1274 dput(dentry);
Eric Paris23970742006-09-25 23:32:01 -07001275 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
Eric Paris4cb912f2009-02-12 14:50:05 -05001277 context[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 rc = inode->i_op->getxattr(dentry, XATTR_NAME_SELINUX,
1279 context, len);
1280 if (rc == -ERANGE) {
James Morris314dabb2009-08-10 22:00:13 +10001281 kfree(context);
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 /* Need a larger buffer. Query for the right size. */
1284 rc = inode->i_op->getxattr(dentry, XATTR_NAME_SELINUX,
1285 NULL, 0);
1286 if (rc < 0) {
1287 dput(dentry);
Eric Paris23970742006-09-25 23:32:01 -07001288 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 len = rc;
Eric Paris4cb912f2009-02-12 14:50:05 -05001291 context = kmalloc(len+1, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (!context) {
1293 rc = -ENOMEM;
1294 dput(dentry);
Eric Paris23970742006-09-25 23:32:01 -07001295 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
Eric Paris4cb912f2009-02-12 14:50:05 -05001297 context[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 rc = inode->i_op->getxattr(dentry,
1299 XATTR_NAME_SELINUX,
1300 context, len);
1301 }
1302 dput(dentry);
1303 if (rc < 0) {
1304 if (rc != -ENODATA) {
Eric Paris744ba352008-04-17 11:52:44 -04001305 printk(KERN_WARNING "SELinux: %s: getxattr returned "
Harvey Harrisondd6f9532008-03-06 10:03:59 +11001306 "%d for dev=%s ino=%ld\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 -rc, inode->i_sb->s_id, inode->i_ino);
1308 kfree(context);
Eric Paris23970742006-09-25 23:32:01 -07001309 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311 /* Map ENODATA to the default file SID */
1312 sid = sbsec->def_sid;
1313 rc = 0;
1314 } else {
James Morrisf5c1d5b2005-07-28 01:07:37 -07001315 rc = security_context_to_sid_default(context, rc, &sid,
Stephen Smalley869ab512008-04-04 08:46:05 -04001316 sbsec->def_sid,
1317 GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (rc) {
Eric Paris4ba0a8a2009-02-12 15:01:10 -05001319 char *dev = inode->i_sb->s_id;
1320 unsigned long ino = inode->i_ino;
1321
1322 if (rc == -EINVAL) {
1323 if (printk_ratelimit())
1324 printk(KERN_NOTICE "SELinux: inode=%lu on dev=%s was found to have an invalid "
1325 "context=%s. This indicates you may need to relabel the inode or the "
1326 "filesystem in question.\n", ino, dev, context);
1327 } else {
1328 printk(KERN_WARNING "SELinux: %s: context_to_sid(%s) "
1329 "returned %d for dev=%s ino=%ld\n",
1330 __func__, context, -rc, dev, ino);
1331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 kfree(context);
1333 /* Leave with the unlabeled SID */
1334 rc = 0;
1335 break;
1336 }
1337 }
1338 kfree(context);
1339 isec->sid = sid;
1340 break;
1341 case SECURITY_FS_USE_TASK:
1342 isec->sid = isec->task_sid;
1343 break;
1344 case SECURITY_FS_USE_TRANS:
1345 /* Default to the fs SID. */
1346 isec->sid = sbsec->sid;
1347
1348 /* Try to obtain a transition SID. */
1349 isec->sclass = inode_mode_to_security_class(inode->i_mode);
Eric Paris652bb9b2011-02-01 11:05:40 -05001350 rc = security_transition_sid(isec->task_sid, sbsec->sid,
1351 isec->sclass, NULL, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (rc)
Eric Paris23970742006-09-25 23:32:01 -07001353 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 isec->sid = sid;
1355 break;
Eric Parisc312feb2006-07-10 04:43:53 -07001356 case SECURITY_FS_USE_MNTPOINT:
1357 isec->sid = sbsec->mntpoint_sid;
1358 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 default:
Eric Parisc312feb2006-07-10 04:43:53 -07001360 /* Default to the fs superblock SID. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 isec->sid = sbsec->sid;
1362
David P. Quigley0d90a7e2009-01-16 09:22:02 -05001363 if ((sbsec->flags & SE_SBPROC) && !S_ISLNK(inode->i_mode)) {
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001364 if (opt_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 isec->sclass = inode_mode_to_security_class(inode->i_mode);
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001366 rc = selinux_proc_get_sid(opt_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 isec->sclass,
1368 &sid);
1369 if (rc)
Eric Paris23970742006-09-25 23:32:01 -07001370 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 isec->sid = sid;
1372 }
1373 }
1374 break;
1375 }
1376
1377 isec->initialized = 1;
1378
Eric Paris23970742006-09-25 23:32:01 -07001379out_unlock:
1380 mutex_unlock(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381out:
1382 if (isec->sclass == SECCLASS_FILE)
1383 isec->sclass = inode_mode_to_security_class(inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return rc;
1385}
1386
1387/* Convert a Linux signal to an access vector. */
1388static inline u32 signal_to_av(int sig)
1389{
1390 u32 perm = 0;
1391
1392 switch (sig) {
1393 case SIGCHLD:
1394 /* Commonly granted from child to parent. */
1395 perm = PROCESS__SIGCHLD;
1396 break;
1397 case SIGKILL:
1398 /* Cannot be caught or ignored */
1399 perm = PROCESS__SIGKILL;
1400 break;
1401 case SIGSTOP:
1402 /* Cannot be caught or ignored */
1403 perm = PROCESS__SIGSTOP;
1404 break;
1405 default:
1406 /* All other signals. */
1407 perm = PROCESS__SIGNAL;
1408 break;
1409 }
1410
1411 return perm;
1412}
1413
David Howells275bb412008-11-14 10:39:19 +11001414/*
David Howellsd84f4f92008-11-14 10:39:23 +11001415 * Check permission between a pair of credentials
1416 * fork check, ptrace check, etc.
1417 */
1418static int cred_has_perm(const struct cred *actor,
1419 const struct cred *target,
1420 u32 perms)
1421{
1422 u32 asid = cred_sid(actor), tsid = cred_sid(target);
1423
1424 return avc_has_perm(asid, tsid, SECCLASS_PROCESS, perms, NULL);
1425}
1426
1427/*
David Howells88e67f32008-11-14 10:39:21 +11001428 * Check permission between a pair of tasks, e.g. signal checks,
David Howells275bb412008-11-14 10:39:19 +11001429 * fork check, ptrace check, etc.
1430 * tsk1 is the actor and tsk2 is the target
David Howells3b11a1d2008-11-14 10:39:26 +11001431 * - this uses the default subjective creds of tsk1
David Howells275bb412008-11-14 10:39:19 +11001432 */
1433static int task_has_perm(const struct task_struct *tsk1,
1434 const struct task_struct *tsk2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 u32 perms)
1436{
David Howells275bb412008-11-14 10:39:19 +11001437 const struct task_security_struct *__tsec1, *__tsec2;
1438 u32 sid1, sid2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
David Howells275bb412008-11-14 10:39:19 +11001440 rcu_read_lock();
1441 __tsec1 = __task_cred(tsk1)->security; sid1 = __tsec1->sid;
1442 __tsec2 = __task_cred(tsk2)->security; sid2 = __tsec2->sid;
1443 rcu_read_unlock();
1444 return avc_has_perm(sid1, sid2, SECCLASS_PROCESS, perms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
David Howells3b11a1d2008-11-14 10:39:26 +11001447/*
1448 * Check permission between current and another task, e.g. signal checks,
1449 * fork check, ptrace check, etc.
1450 * current is the actor and tsk2 is the target
1451 * - this uses current's subjective creds
1452 */
1453static int current_has_perm(const struct task_struct *tsk,
1454 u32 perms)
1455{
1456 u32 sid, tsid;
1457
1458 sid = current_sid();
1459 tsid = task_sid(tsk);
1460 return avc_has_perm(sid, tsid, SECCLASS_PROCESS, perms, NULL);
1461}
1462
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001463#if CAP_LAST_CAP > 63
1464#error Fix SELinux to handle capabilities > 63.
1465#endif
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467/* Check whether a task is allowed to use a capability. */
Eric Paris6a9de492012-01-03 12:25:14 -05001468static int cred_has_capability(const struct cred *cred,
Eric Paris06112162008-11-11 22:02:50 +11001469 int cap, int audit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Thomas Liu2bf49692009-07-14 12:14:09 -04001471 struct common_audit_data ad;
Eric Paris06112162008-11-11 22:02:50 +11001472 struct av_decision avd;
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001473 u16 sclass;
David Howells3699c532009-01-06 22:27:01 +00001474 u32 sid = cred_sid(cred);
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001475 u32 av = CAP_TO_MASK(cap);
Eric Paris06112162008-11-11 22:02:50 +11001476 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Eric Paris50c205f2012-04-04 15:01:43 -04001478 ad.type = LSM_AUDIT_DATA_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 ad.u.cap = cap;
1480
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001481 switch (CAP_TO_INDEX(cap)) {
1482 case 0:
1483 sclass = SECCLASS_CAPABILITY;
1484 break;
1485 case 1:
1486 sclass = SECCLASS_CAPABILITY2;
1487 break;
1488 default:
1489 printk(KERN_ERR
1490 "SELinux: out of range capability %d\n", cap);
1491 BUG();
Eric Parisa35c6c832011-04-20 10:21:28 -04001492 return -EINVAL;
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001493 }
Eric Paris06112162008-11-11 22:02:50 +11001494
David Howells275bb412008-11-14 10:39:19 +11001495 rc = avc_has_perm_noaudit(sid, sid, sclass, av, 0, &avd);
Eric Paris9ade0cf2011-04-25 16:26:29 -04001496 if (audit == SECURITY_CAP_AUDIT) {
1497 int rc2 = avc_audit(sid, sid, sclass, av, &avd, rc, &ad, 0);
1498 if (rc2)
1499 return rc2;
1500 }
Eric Paris06112162008-11-11 22:02:50 +11001501 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
1504/* Check whether a task is allowed to use a system operation. */
1505static int task_has_system(struct task_struct *tsk,
1506 u32 perms)
1507{
David Howells275bb412008-11-14 10:39:19 +11001508 u32 sid = task_sid(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
David Howells275bb412008-11-14 10:39:19 +11001510 return avc_has_perm(sid, SECINITSID_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 SECCLASS_SYSTEM, perms, NULL);
1512}
1513
1514/* Check whether a task has a particular permission to an inode.
1515 The 'adp' parameter is optional and allows other audit
1516 data to be passed (e.g. the dentry). */
David Howells88e67f32008-11-14 10:39:21 +11001517static int inode_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 struct inode *inode,
1519 u32 perms,
Eric Paris9ade0cf2011-04-25 16:26:29 -04001520 struct common_audit_data *adp,
1521 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 struct inode_security_struct *isec;
David Howells275bb412008-11-14 10:39:19 +11001524 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
David Howellse0e81732009-09-02 09:13:40 +01001526 validate_creds(cred);
1527
Eric Paris828dfe12008-04-17 13:17:49 -04001528 if (unlikely(IS_PRIVATE(inode)))
Stephen Smalleybbaca6c2007-02-14 00:34:16 -08001529 return 0;
1530
David Howells88e67f32008-11-14 10:39:21 +11001531 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 isec = inode->i_security;
1533
Eric Paris9ade0cf2011-04-25 16:26:29 -04001534 return avc_has_perm_flags(sid, isec->sid, isec->sclass, perms, adp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
1537/* Same as inode_has_perm, but pass explicit audit data containing
1538 the dentry to help the auditing code to more easily generate the
1539 pathname if needed. */
David Howells88e67f32008-11-14 10:39:21 +11001540static inline int dentry_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 struct dentry *dentry,
1542 u32 av)
1543{
1544 struct inode *inode = dentry->d_inode;
Thomas Liu2bf49692009-07-14 12:14:09 -04001545 struct common_audit_data ad;
David Howells88e67f32008-11-14 10:39:21 +11001546
Eric Paris50c205f2012-04-04 15:01:43 -04001547 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Paris2875fa02011-04-28 16:04:24 -04001548 ad.u.dentry = dentry;
1549 return inode_has_perm(cred, inode, av, &ad, 0);
1550}
1551
1552/* Same as inode_has_perm, but pass explicit audit data containing
1553 the path to help the auditing code to more easily generate the
1554 pathname if needed. */
1555static inline int path_has_perm(const struct cred *cred,
1556 struct path *path,
1557 u32 av)
1558{
1559 struct inode *inode = path->dentry->d_inode;
1560 struct common_audit_data ad;
1561
Eric Paris50c205f2012-04-04 15:01:43 -04001562 ad.type = LSM_AUDIT_DATA_PATH;
Eric Paris2875fa02011-04-28 16:04:24 -04001563 ad.u.path = *path;
Eric Paris9ade0cf2011-04-25 16:26:29 -04001564 return inode_has_perm(cred, inode, av, &ad, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
1567/* Check whether a task can use an open file descriptor to
1568 access an inode in a given way. Check access to the
1569 descriptor itself, and then use dentry_has_perm to
1570 check a particular permission to the file.
1571 Access to the descriptor is implicitly granted if it
1572 has the same SID as the process. If av is zero, then
1573 access to the file is not checked, e.g. for cases
1574 where only the descriptor is affected like seek. */
David Howells88e67f32008-11-14 10:39:21 +11001575static int file_has_perm(const struct cred *cred,
1576 struct file *file,
1577 u32 av)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 struct file_security_struct *fsec = file->f_security;
Al Viro496ad9a2013-01-23 17:07:38 -05001580 struct inode *inode = file_inode(file);
Thomas Liu2bf49692009-07-14 12:14:09 -04001581 struct common_audit_data ad;
David Howells88e67f32008-11-14 10:39:21 +11001582 u32 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 int rc;
1584
Eric Paris50c205f2012-04-04 15:01:43 -04001585 ad.type = LSM_AUDIT_DATA_PATH;
Eric Parisf48b7392011-04-25 12:54:27 -04001586 ad.u.path = file->f_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
David Howells275bb412008-11-14 10:39:19 +11001588 if (sid != fsec->sid) {
1589 rc = avc_has_perm(sid, fsec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 SECCLASS_FD,
1591 FD__USE,
1592 &ad);
1593 if (rc)
David Howells88e67f32008-11-14 10:39:21 +11001594 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
1596
1597 /* av is zero if only checking access to the descriptor. */
David Howells88e67f32008-11-14 10:39:21 +11001598 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 if (av)
Eric Paris9ade0cf2011-04-25 16:26:29 -04001600 rc = inode_has_perm(cred, inode, av, &ad, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
David Howells88e67f32008-11-14 10:39:21 +11001602out:
1603 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
1606/* Check whether a task can create a file. */
1607static int may_create(struct inode *dir,
1608 struct dentry *dentry,
1609 u16 tclass)
1610{
Paul Moore5fb49872010-04-22 14:46:19 -04001611 const struct task_security_struct *tsec = current_security();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 struct inode_security_struct *dsec;
1613 struct superblock_security_struct *sbsec;
David Howells275bb412008-11-14 10:39:19 +11001614 u32 sid, newsid;
Thomas Liu2bf49692009-07-14 12:14:09 -04001615 struct common_audit_data ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 int rc;
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 dsec = dir->i_security;
1619 sbsec = dir->i_sb->s_security;
1620
David Howells275bb412008-11-14 10:39:19 +11001621 sid = tsec->sid;
1622 newsid = tsec->create_sid;
1623
Eric Paris50c205f2012-04-04 15:01:43 -04001624 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04001625 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
David Howells275bb412008-11-14 10:39:19 +11001627 rc = avc_has_perm(sid, dsec->sid, SECCLASS_DIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 DIR__ADD_NAME | DIR__SEARCH,
1629 &ad);
1630 if (rc)
1631 return rc;
1632
David P. Quigleycd895962009-01-16 09:22:04 -05001633 if (!newsid || !(sbsec->flags & SE_SBLABELSUPP)) {
Eric Pariscb1e9222011-04-28 15:11:21 -04001634 rc = security_transition_sid(sid, dsec->sid, tclass,
1635 &dentry->d_name, &newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (rc)
1637 return rc;
1638 }
1639
David Howells275bb412008-11-14 10:39:19 +11001640 rc = avc_has_perm(sid, newsid, tclass, FILE__CREATE, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (rc)
1642 return rc;
1643
1644 return avc_has_perm(newsid, sbsec->sid,
1645 SECCLASS_FILESYSTEM,
1646 FILESYSTEM__ASSOCIATE, &ad);
1647}
1648
Michael LeMay4eb582c2006-06-26 00:24:57 -07001649/* Check whether a task can create a key. */
1650static int may_create_key(u32 ksid,
1651 struct task_struct *ctx)
1652{
David Howells275bb412008-11-14 10:39:19 +11001653 u32 sid = task_sid(ctx);
Michael LeMay4eb582c2006-06-26 00:24:57 -07001654
David Howells275bb412008-11-14 10:39:19 +11001655 return avc_has_perm(sid, ksid, SECCLASS_KEY, KEY__CREATE, NULL);
Michael LeMay4eb582c2006-06-26 00:24:57 -07001656}
1657
Eric Paris828dfe12008-04-17 13:17:49 -04001658#define MAY_LINK 0
1659#define MAY_UNLINK 1
1660#define MAY_RMDIR 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662/* Check whether a task can link, unlink, or rmdir a file/directory. */
1663static int may_link(struct inode *dir,
1664 struct dentry *dentry,
1665 int kind)
1666
1667{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 struct inode_security_struct *dsec, *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04001669 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11001670 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 u32 av;
1672 int rc;
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 dsec = dir->i_security;
1675 isec = dentry->d_inode->i_security;
1676
Eric Paris50c205f2012-04-04 15:01:43 -04001677 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04001678 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 av = DIR__SEARCH;
1681 av |= (kind ? DIR__REMOVE_NAME : DIR__ADD_NAME);
David Howells275bb412008-11-14 10:39:19 +11001682 rc = avc_has_perm(sid, dsec->sid, SECCLASS_DIR, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (rc)
1684 return rc;
1685
1686 switch (kind) {
1687 case MAY_LINK:
1688 av = FILE__LINK;
1689 break;
1690 case MAY_UNLINK:
1691 av = FILE__UNLINK;
1692 break;
1693 case MAY_RMDIR:
1694 av = DIR__RMDIR;
1695 break;
1696 default:
Eric Paris744ba352008-04-17 11:52:44 -04001697 printk(KERN_WARNING "SELinux: %s: unrecognized kind %d\n",
1698 __func__, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 return 0;
1700 }
1701
David Howells275bb412008-11-14 10:39:19 +11001702 rc = avc_has_perm(sid, isec->sid, isec->sclass, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return rc;
1704}
1705
1706static inline int may_rename(struct inode *old_dir,
1707 struct dentry *old_dentry,
1708 struct inode *new_dir,
1709 struct dentry *new_dentry)
1710{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 struct inode_security_struct *old_dsec, *new_dsec, *old_isec, *new_isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04001712 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11001713 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 u32 av;
1715 int old_is_dir, new_is_dir;
1716 int rc;
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 old_dsec = old_dir->i_security;
1719 old_isec = old_dentry->d_inode->i_security;
1720 old_is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
1721 new_dsec = new_dir->i_security;
1722
Eric Paris50c205f2012-04-04 15:01:43 -04001723 ad.type = LSM_AUDIT_DATA_DENTRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Eric Parisa2694342011-04-25 13:10:27 -04001725 ad.u.dentry = old_dentry;
David Howells275bb412008-11-14 10:39:19 +11001726 rc = avc_has_perm(sid, old_dsec->sid, SECCLASS_DIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 DIR__REMOVE_NAME | DIR__SEARCH, &ad);
1728 if (rc)
1729 return rc;
David Howells275bb412008-11-14 10:39:19 +11001730 rc = avc_has_perm(sid, old_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 old_isec->sclass, FILE__RENAME, &ad);
1732 if (rc)
1733 return rc;
1734 if (old_is_dir && new_dir != old_dir) {
David Howells275bb412008-11-14 10:39:19 +11001735 rc = avc_has_perm(sid, old_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 old_isec->sclass, DIR__REPARENT, &ad);
1737 if (rc)
1738 return rc;
1739 }
1740
Eric Parisa2694342011-04-25 13:10:27 -04001741 ad.u.dentry = new_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 av = DIR__ADD_NAME | DIR__SEARCH;
1743 if (new_dentry->d_inode)
1744 av |= DIR__REMOVE_NAME;
David Howells275bb412008-11-14 10:39:19 +11001745 rc = avc_has_perm(sid, new_dsec->sid, SECCLASS_DIR, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (rc)
1747 return rc;
1748 if (new_dentry->d_inode) {
1749 new_isec = new_dentry->d_inode->i_security;
1750 new_is_dir = S_ISDIR(new_dentry->d_inode->i_mode);
David Howells275bb412008-11-14 10:39:19 +11001751 rc = avc_has_perm(sid, new_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 new_isec->sclass,
1753 (new_is_dir ? DIR__RMDIR : FILE__UNLINK), &ad);
1754 if (rc)
1755 return rc;
1756 }
1757
1758 return 0;
1759}
1760
1761/* Check whether a task can perform a filesystem operation. */
David Howells88e67f32008-11-14 10:39:21 +11001762static int superblock_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 struct super_block *sb,
1764 u32 perms,
Thomas Liu2bf49692009-07-14 12:14:09 -04001765 struct common_audit_data *ad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 struct superblock_security_struct *sbsec;
David Howells88e67f32008-11-14 10:39:21 +11001768 u32 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 sbsec = sb->s_security;
David Howells275bb412008-11-14 10:39:19 +11001771 return avc_has_perm(sid, sbsec->sid, SECCLASS_FILESYSTEM, perms, ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772}
1773
1774/* Convert a Linux mode and permission mask to an access vector. */
1775static inline u32 file_mask_to_av(int mode, int mask)
1776{
1777 u32 av = 0;
1778
Al Virodba19c62011-07-25 20:49:29 -04001779 if (!S_ISDIR(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (mask & MAY_EXEC)
1781 av |= FILE__EXECUTE;
1782 if (mask & MAY_READ)
1783 av |= FILE__READ;
1784
1785 if (mask & MAY_APPEND)
1786 av |= FILE__APPEND;
1787 else if (mask & MAY_WRITE)
1788 av |= FILE__WRITE;
1789
1790 } else {
1791 if (mask & MAY_EXEC)
1792 av |= DIR__SEARCH;
1793 if (mask & MAY_WRITE)
1794 av |= DIR__WRITE;
1795 if (mask & MAY_READ)
1796 av |= DIR__READ;
1797 }
1798
1799 return av;
1800}
1801
1802/* Convert a Linux file to an access vector. */
1803static inline u32 file_to_av(struct file *file)
1804{
1805 u32 av = 0;
1806
1807 if (file->f_mode & FMODE_READ)
1808 av |= FILE__READ;
1809 if (file->f_mode & FMODE_WRITE) {
1810 if (file->f_flags & O_APPEND)
1811 av |= FILE__APPEND;
1812 else
1813 av |= FILE__WRITE;
1814 }
Stephen Smalley0794c662008-03-17 08:55:18 -04001815 if (!av) {
1816 /*
1817 * Special file opened with flags 3 for ioctl-only use.
1818 */
1819 av = FILE__IOCTL;
1820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 return av;
1823}
1824
Eric Paris8b6a5a32008-10-29 17:06:46 -04001825/*
1826 * Convert a file to an access vector and include the correct open
1827 * open permission.
1828 */
1829static inline u32 open_file_to_av(struct file *file)
1830{
1831 u32 av = file_to_av(file);
1832
Eric Paris49b7b8d2010-07-23 11:44:09 -04001833 if (selinux_policycap_openperm)
1834 av |= FILE__OPEN;
1835
Eric Paris8b6a5a32008-10-29 17:06:46 -04001836 return av;
1837}
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839/* Hook functions begin here. */
1840
Ingo Molnar9e488582009-05-07 19:26:19 +10001841static int selinux_ptrace_access_check(struct task_struct *child,
David Howells5cd9c582008-08-14 11:37:28 +01001842 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 int rc;
1845
Ingo Molnar9e488582009-05-07 19:26:19 +10001846 rc = cap_ptrace_access_check(child, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if (rc)
1848 return rc;
1849
Eric Paris69f594a2012-01-03 12:25:15 -05001850 if (mode & PTRACE_MODE_READ) {
David Howells275bb412008-11-14 10:39:19 +11001851 u32 sid = current_sid();
1852 u32 csid = task_sid(child);
1853 return avc_has_perm(sid, csid, SECCLASS_FILE, FILE__READ, NULL);
Stephen Smalley006ebb42008-05-19 08:32:49 -04001854 }
1855
David Howells3b11a1d2008-11-14 10:39:26 +11001856 return current_has_perm(child, PROCESS__PTRACE);
David Howells5cd9c582008-08-14 11:37:28 +01001857}
1858
1859static int selinux_ptrace_traceme(struct task_struct *parent)
1860{
1861 int rc;
1862
Eric Paris200ac532009-02-12 15:01:04 -05001863 rc = cap_ptrace_traceme(parent);
David Howells5cd9c582008-08-14 11:37:28 +01001864 if (rc)
1865 return rc;
1866
1867 return task_has_perm(parent, current, PROCESS__PTRACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869
1870static int selinux_capget(struct task_struct *target, kernel_cap_t *effective,
Eric Paris828dfe12008-04-17 13:17:49 -04001871 kernel_cap_t *inheritable, kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
1873 int error;
1874
David Howells3b11a1d2008-11-14 10:39:26 +11001875 error = current_has_perm(target, PROCESS__GETCAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if (error)
1877 return error;
1878
Eric Paris200ac532009-02-12 15:01:04 -05001879 return cap_capget(target, effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
David Howellsd84f4f92008-11-14 10:39:23 +11001882static int selinux_capset(struct cred *new, const struct cred *old,
1883 const kernel_cap_t *effective,
1884 const kernel_cap_t *inheritable,
1885 const kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
1887 int error;
1888
Eric Paris200ac532009-02-12 15:01:04 -05001889 error = cap_capset(new, old,
David Howellsd84f4f92008-11-14 10:39:23 +11001890 effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (error)
1892 return error;
1893
David Howellsd84f4f92008-11-14 10:39:23 +11001894 return cred_has_perm(old, new, PROCESS__SETCAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895}
1896
James Morris5626d3e2009-01-30 10:05:06 +11001897/*
1898 * (This comment used to live with the selinux_task_setuid hook,
1899 * which was removed).
1900 *
1901 * Since setuid only affects the current process, and since the SELinux
1902 * controls are not based on the Linux identity attributes, SELinux does not
1903 * need to control this operation. However, SELinux does control the use of
1904 * the CAP_SETUID and CAP_SETGID capabilities using the capable hook.
1905 */
1906
Eric Paris6a9de492012-01-03 12:25:14 -05001907static int selinux_capable(const struct cred *cred, struct user_namespace *ns,
1908 int cap, int audit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
1910 int rc;
1911
Eric Paris6a9de492012-01-03 12:25:14 -05001912 rc = cap_capable(cred, ns, cap, audit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 if (rc)
1914 return rc;
1915
Eric Paris6a9de492012-01-03 12:25:14 -05001916 return cred_has_capability(cred, cap, audit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
1918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919static int selinux_quotactl(int cmds, int type, int id, struct super_block *sb)
1920{
David Howells88e67f32008-11-14 10:39:21 +11001921 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 int rc = 0;
1923
1924 if (!sb)
1925 return 0;
1926
1927 switch (cmds) {
Eric Paris828dfe12008-04-17 13:17:49 -04001928 case Q_SYNC:
1929 case Q_QUOTAON:
1930 case Q_QUOTAOFF:
1931 case Q_SETINFO:
1932 case Q_SETQUOTA:
David Howells88e67f32008-11-14 10:39:21 +11001933 rc = superblock_has_perm(cred, sb, FILESYSTEM__QUOTAMOD, NULL);
Eric Paris828dfe12008-04-17 13:17:49 -04001934 break;
1935 case Q_GETFMT:
1936 case Q_GETINFO:
1937 case Q_GETQUOTA:
David Howells88e67f32008-11-14 10:39:21 +11001938 rc = superblock_has_perm(cred, sb, FILESYSTEM__QUOTAGET, NULL);
Eric Paris828dfe12008-04-17 13:17:49 -04001939 break;
1940 default:
1941 rc = 0; /* let the kernel handle invalid cmds */
1942 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944 return rc;
1945}
1946
1947static int selinux_quota_on(struct dentry *dentry)
1948{
David Howells88e67f32008-11-14 10:39:21 +11001949 const struct cred *cred = current_cred();
1950
Eric Paris2875fa02011-04-28 16:04:24 -04001951 return dentry_has_perm(cred, dentry, FILE__QUOTAON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
Eric Paris12b30522010-11-15 18:36:29 -05001954static int selinux_syslog(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
1956 int rc;
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08001959 case SYSLOG_ACTION_READ_ALL: /* Read last kernel messages */
1960 case SYSLOG_ACTION_SIZE_BUFFER: /* Return size of the log buffer */
Eric Paris828dfe12008-04-17 13:17:49 -04001961 rc = task_has_system(current, SYSTEM__SYSLOG_READ);
1962 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001963 case SYSLOG_ACTION_CONSOLE_OFF: /* Disable logging to console */
1964 case SYSLOG_ACTION_CONSOLE_ON: /* Enable logging to console */
1965 /* Set level of messages printed to console */
1966 case SYSLOG_ACTION_CONSOLE_LEVEL:
Eric Paris828dfe12008-04-17 13:17:49 -04001967 rc = task_has_system(current, SYSTEM__SYSLOG_CONSOLE);
1968 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001969 case SYSLOG_ACTION_CLOSE: /* Close log */
1970 case SYSLOG_ACTION_OPEN: /* Open log */
1971 case SYSLOG_ACTION_READ: /* Read from log */
1972 case SYSLOG_ACTION_READ_CLEAR: /* Read/clear last kernel messages */
1973 case SYSLOG_ACTION_CLEAR: /* Clear ring buffer */
Eric Paris828dfe12008-04-17 13:17:49 -04001974 default:
1975 rc = task_has_system(current, SYSTEM__SYSLOG_MOD);
1976 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978 return rc;
1979}
1980
1981/*
1982 * Check that a process has enough memory to allocate a new virtual
1983 * mapping. 0 means there is enough memory for the allocation to
1984 * succeed and -ENOMEM implies there is not.
1985 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 * Do not audit the selinux permission check, as this is applied to all
1987 * processes that allocate mappings.
1988 */
Alan Cox34b4e4a2007-08-22 14:01:28 -07001989static int selinux_vm_enough_memory(struct mm_struct *mm, long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
1991 int rc, cap_sys_admin = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Eric Paris6a9de492012-01-03 12:25:14 -05001993 rc = selinux_capable(current_cred(), &init_user_ns, CAP_SYS_ADMIN,
David Howells3699c532009-01-06 22:27:01 +00001994 SECURITY_CAP_NOAUDIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 if (rc == 0)
1996 cap_sys_admin = 1;
1997
Alan Cox34b4e4a2007-08-22 14:01:28 -07001998 return __vm_enough_memory(mm, pages, cap_sys_admin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000
2001/* binprm security operations */
2002
David Howellsa6f76f22008-11-14 10:39:24 +11002003static int selinux_bprm_set_creds(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
David Howellsa6f76f22008-11-14 10:39:24 +11002005 const struct task_security_struct *old_tsec;
2006 struct task_security_struct *new_tsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 struct inode_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04002008 struct common_audit_data ad;
Al Viro496ad9a2013-01-23 17:07:38 -05002009 struct inode *inode = file_inode(bprm->file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 int rc;
2011
Eric Paris200ac532009-02-12 15:01:04 -05002012 rc = cap_bprm_set_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (rc)
2014 return rc;
2015
David Howellsa6f76f22008-11-14 10:39:24 +11002016 /* SELinux context only depends on initial program or script and not
2017 * the script interpreter */
2018 if (bprm->cred_prepared)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return 0;
2020
David Howellsa6f76f22008-11-14 10:39:24 +11002021 old_tsec = current_security();
2022 new_tsec = bprm->cred->security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 isec = inode->i_security;
2024
2025 /* Default to the current task SID. */
David Howellsa6f76f22008-11-14 10:39:24 +11002026 new_tsec->sid = old_tsec->sid;
2027 new_tsec->osid = old_tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Michael LeMay28eba5b2006-06-27 02:53:42 -07002029 /* Reset fs, key, and sock SIDs on execve. */
David Howellsa6f76f22008-11-14 10:39:24 +11002030 new_tsec->create_sid = 0;
2031 new_tsec->keycreate_sid = 0;
2032 new_tsec->sockcreate_sid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
David Howellsa6f76f22008-11-14 10:39:24 +11002034 if (old_tsec->exec_sid) {
2035 new_tsec->sid = old_tsec->exec_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 /* Reset exec SID on execve. */
David Howellsa6f76f22008-11-14 10:39:24 +11002037 new_tsec->exec_sid = 0;
Andy Lutomirski259e5e62012-04-12 16:47:50 -05002038
2039 /*
2040 * Minimize confusion: if no_new_privs and a transition is
2041 * explicitly requested, then fail the exec.
2042 */
2043 if (bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS)
2044 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 } else {
2046 /* Check for a default transition on this program. */
David Howellsa6f76f22008-11-14 10:39:24 +11002047 rc = security_transition_sid(old_tsec->sid, isec->sid,
Eric Paris652bb9b2011-02-01 11:05:40 -05002048 SECCLASS_PROCESS, NULL,
2049 &new_tsec->sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (rc)
2051 return rc;
2052 }
2053
Eric Paris50c205f2012-04-04 15:01:43 -04002054 ad.type = LSM_AUDIT_DATA_PATH;
Eric Parisf48b7392011-04-25 12:54:27 -04002055 ad.u.path = bprm->file->f_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Andy Lutomirski259e5e62012-04-12 16:47:50 -05002057 if ((bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID) ||
2058 (bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS))
David Howellsa6f76f22008-11-14 10:39:24 +11002059 new_tsec->sid = old_tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
David Howellsa6f76f22008-11-14 10:39:24 +11002061 if (new_tsec->sid == old_tsec->sid) {
2062 rc = avc_has_perm(old_tsec->sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 SECCLASS_FILE, FILE__EXECUTE_NO_TRANS, &ad);
2064 if (rc)
2065 return rc;
2066 } else {
2067 /* Check permissions for the transition. */
David Howellsa6f76f22008-11-14 10:39:24 +11002068 rc = avc_has_perm(old_tsec->sid, new_tsec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 SECCLASS_PROCESS, PROCESS__TRANSITION, &ad);
2070 if (rc)
2071 return rc;
2072
David Howellsa6f76f22008-11-14 10:39:24 +11002073 rc = avc_has_perm(new_tsec->sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 SECCLASS_FILE, FILE__ENTRYPOINT, &ad);
2075 if (rc)
2076 return rc;
2077
David Howellsa6f76f22008-11-14 10:39:24 +11002078 /* Check for shared state */
2079 if (bprm->unsafe & LSM_UNSAFE_SHARE) {
2080 rc = avc_has_perm(old_tsec->sid, new_tsec->sid,
2081 SECCLASS_PROCESS, PROCESS__SHARE,
2082 NULL);
2083 if (rc)
2084 return -EPERM;
2085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
David Howellsa6f76f22008-11-14 10:39:24 +11002087 /* Make sure that anyone attempting to ptrace over a task that
2088 * changes its SID has the appropriate permit */
2089 if (bprm->unsafe &
2090 (LSM_UNSAFE_PTRACE | LSM_UNSAFE_PTRACE_CAP)) {
2091 struct task_struct *tracer;
2092 struct task_security_struct *sec;
2093 u32 ptsid = 0;
2094
2095 rcu_read_lock();
Tejun Heo06d98472011-06-17 16:50:40 +02002096 tracer = ptrace_parent(current);
David Howellsa6f76f22008-11-14 10:39:24 +11002097 if (likely(tracer != NULL)) {
2098 sec = __task_cred(tracer)->security;
2099 ptsid = sec->sid;
2100 }
2101 rcu_read_unlock();
2102
2103 if (ptsid != 0) {
2104 rc = avc_has_perm(ptsid, new_tsec->sid,
2105 SECCLASS_PROCESS,
2106 PROCESS__PTRACE, NULL);
2107 if (rc)
2108 return -EPERM;
2109 }
2110 }
2111
2112 /* Clear any possibly unsafe personality bits on exec: */
2113 bprm->per_clear |= PER_CLEAR_ON_SETID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 return 0;
2117}
2118
Eric Paris828dfe12008-04-17 13:17:49 -04002119static int selinux_bprm_secureexec(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Paul Moore5fb49872010-04-22 14:46:19 -04002121 const struct task_security_struct *tsec = current_security();
David Howells275bb412008-11-14 10:39:19 +11002122 u32 sid, osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 int atsecure = 0;
2124
David Howells275bb412008-11-14 10:39:19 +11002125 sid = tsec->sid;
2126 osid = tsec->osid;
2127
2128 if (osid != sid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 /* Enable secure mode for SIDs transitions unless
2130 the noatsecure permission is granted between
2131 the two SIDs, i.e. ahp returns 0. */
David Howells275bb412008-11-14 10:39:19 +11002132 atsecure = avc_has_perm(osid, sid,
David Howellsa6f76f22008-11-14 10:39:24 +11002133 SECCLASS_PROCESS,
2134 PROCESS__NOATSECURE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
2136
Eric Paris200ac532009-02-12 15:01:04 -05002137 return (atsecure || cap_bprm_secureexec(bprm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
Al Viroc3c073f2012-08-21 22:32:06 -04002140static int match_file(const void *p, struct file *file, unsigned fd)
2141{
2142 return file_has_perm(p, file, file_to_av(file)) ? fd + 1 : 0;
2143}
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145/* Derived from fs/exec.c:flush_old_files. */
David Howells745ca242008-11-14 10:39:22 +11002146static inline void flush_unauthorized_files(const struct cred *cred,
2147 struct files_struct *files)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 struct file *file, *devnull = NULL;
Stephen Smalleyb20c8122006-09-25 23:32:03 -07002150 struct tty_struct *tty;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002151 int drop_tty = 0;
Al Viroc3c073f2012-08-21 22:32:06 -04002152 unsigned n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002154 tty = get_current_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 if (tty) {
Nick Pigginee2ffa02010-08-18 04:37:35 +10002156 spin_lock(&tty_files_lock);
Eric Paris37dd0bd2008-10-31 17:40:00 -04002157 if (!list_empty(&tty->tty_files)) {
Nick Piggind996b622010-08-18 04:37:36 +10002158 struct tty_file_private *file_priv;
Eric Paris37dd0bd2008-10-31 17:40:00 -04002159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 /* Revalidate access to controlling tty.
Eric Paris602a8dd2012-04-04 15:01:42 -04002161 Use path_has_perm on the tty path directly rather
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 than using file_has_perm, as this particular open
2163 file may belong to another process and we are only
2164 interested in the inode-based check here. */
Nick Piggind996b622010-08-18 04:37:36 +10002165 file_priv = list_first_entry(&tty->tty_files,
2166 struct tty_file_private, list);
2167 file = file_priv->file;
Eric Paris602a8dd2012-04-04 15:01:42 -04002168 if (path_has_perm(cred, &file->f_path, FILE__READ | FILE__WRITE))
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002169 drop_tty = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
Nick Pigginee2ffa02010-08-18 04:37:35 +10002171 spin_unlock(&tty_files_lock);
Alan Cox452a00d2008-10-13 10:39:13 +01002172 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07002174 /* Reset controlling tty. */
2175 if (drop_tty)
2176 no_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
2178 /* Revalidate access to inherited open files. */
Al Viroc3c073f2012-08-21 22:32:06 -04002179 n = iterate_fd(files, 0, match_file, cred);
2180 if (!n) /* none found? */
2181 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Al Viroc3c073f2012-08-21 22:32:06 -04002183 devnull = dentry_open(&selinux_null, O_RDWR, cred);
Al Viro45525b22012-10-16 13:30:07 -04002184 if (IS_ERR(devnull))
2185 devnull = NULL;
2186 /* replace all the matching ones with this */
2187 do {
2188 replace_fd(n - 1, devnull, 0);
2189 } while ((n = iterate_fd(files, n, match_file, cred)) != 0);
2190 if (devnull)
Al Viroc3c073f2012-08-21 22:32:06 -04002191 fput(devnull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194/*
David Howellsa6f76f22008-11-14 10:39:24 +11002195 * Prepare a process for imminent new credential changes due to exec
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 */
David Howellsa6f76f22008-11-14 10:39:24 +11002197static void selinux_bprm_committing_creds(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
David Howellsa6f76f22008-11-14 10:39:24 +11002199 struct task_security_struct *new_tsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 struct rlimit *rlim, *initrlim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 int rc, i;
2202
David Howellsa6f76f22008-11-14 10:39:24 +11002203 new_tsec = bprm->cred->security;
2204 if (new_tsec->sid == new_tsec->osid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return;
2206
2207 /* Close files for which the new task SID is not authorized. */
David Howellsa6f76f22008-11-14 10:39:24 +11002208 flush_unauthorized_files(bprm->cred, current->files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
David Howellsa6f76f22008-11-14 10:39:24 +11002210 /* Always clear parent death signal on SID transitions. */
2211 current->pdeath_signal = 0;
2212
2213 /* Check whether the new SID can inherit resource limits from the old
2214 * SID. If not, reset all soft limits to the lower of the current
2215 * task's hard limit and the init task's soft limit.
2216 *
2217 * Note that the setting of hard limits (even to lower them) can be
2218 * controlled by the setrlimit check. The inclusion of the init task's
2219 * soft limit into the computation is to avoid resetting soft limits
2220 * higher than the default soft limit for cases where the default is
2221 * lower than the hard limit, e.g. RLIMIT_CORE or RLIMIT_STACK.
2222 */
2223 rc = avc_has_perm(new_tsec->osid, new_tsec->sid, SECCLASS_PROCESS,
2224 PROCESS__RLIMITINH, NULL);
2225 if (rc) {
Oleg Nesteroveb2d55a2010-06-23 22:43:32 +02002226 /* protect against do_prlimit() */
2227 task_lock(current);
David Howellsa6f76f22008-11-14 10:39:24 +11002228 for (i = 0; i < RLIM_NLIMITS; i++) {
2229 rlim = current->signal->rlim + i;
2230 initrlim = init_task.signal->rlim + i;
2231 rlim->rlim_cur = min(rlim->rlim_max, initrlim->rlim_cur);
2232 }
Oleg Nesteroveb2d55a2010-06-23 22:43:32 +02002233 task_unlock(current);
2234 update_rlimit_cpu(current, rlimit(RLIMIT_CPU));
David Howellsa6f76f22008-11-14 10:39:24 +11002235 }
2236}
2237
2238/*
2239 * Clean up the process immediately after the installation of new credentials
2240 * due to exec
2241 */
2242static void selinux_bprm_committed_creds(struct linux_binprm *bprm)
2243{
2244 const struct task_security_struct *tsec = current_security();
2245 struct itimerval itimer;
David Howellsa6f76f22008-11-14 10:39:24 +11002246 u32 osid, sid;
2247 int rc, i;
David Howellsa6f76f22008-11-14 10:39:24 +11002248
David Howellsa6f76f22008-11-14 10:39:24 +11002249 osid = tsec->osid;
2250 sid = tsec->sid;
2251
2252 if (sid == osid)
2253 return;
2254
2255 /* Check whether the new SID can inherit signal state from the old SID.
2256 * If not, clear itimers to avoid subsequent signal generation and
2257 * flush and unblock signals.
2258 *
2259 * This must occur _after_ the task SID has been updated so that any
2260 * kill done after the flush will be checked against the new SID.
2261 */
2262 rc = avc_has_perm(osid, sid, SECCLASS_PROCESS, PROCESS__SIGINH, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 if (rc) {
2264 memset(&itimer, 0, sizeof itimer);
2265 for (i = 0; i < 3; i++)
2266 do_setitimer(i, &itimer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 spin_lock_irq(&current->sighand->siglock);
David Howells3bcac022009-04-29 13:45:05 +01002268 if (!(current->signal->flags & SIGNAL_GROUP_EXIT)) {
2269 __flush_signals(current);
2270 flush_signal_handlers(current, 1);
2271 sigemptyset(&current->blocked);
2272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 spin_unlock_irq(&current->sighand->siglock);
2274 }
2275
David Howellsa6f76f22008-11-14 10:39:24 +11002276 /* Wake up the parent if it is waiting so that it can recheck
2277 * wait permission to the new task SID. */
Oleg Nesterovecd6de32009-04-29 16:02:24 +02002278 read_lock(&tasklist_lock);
Oleg Nesterov0b7570e2009-09-23 15:56:46 -07002279 __wake_up_parent(current, current->real_parent);
Oleg Nesterovecd6de32009-04-29 16:02:24 +02002280 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281}
2282
2283/* superblock security operations */
2284
2285static int selinux_sb_alloc_security(struct super_block *sb)
2286{
2287 return superblock_alloc_security(sb);
2288}
2289
2290static void selinux_sb_free_security(struct super_block *sb)
2291{
2292 superblock_free_security(sb);
2293}
2294
2295static inline int match_prefix(char *prefix, int plen, char *option, int olen)
2296{
2297 if (plen > olen)
2298 return 0;
2299
2300 return !memcmp(prefix, option, plen);
2301}
2302
2303static inline int selinux_option(char *option, int len)
2304{
Eric Paris832cbd92008-04-01 13:24:09 -04002305 return (match_prefix(CONTEXT_STR, sizeof(CONTEXT_STR)-1, option, len) ||
2306 match_prefix(FSCONTEXT_STR, sizeof(FSCONTEXT_STR)-1, option, len) ||
2307 match_prefix(DEFCONTEXT_STR, sizeof(DEFCONTEXT_STR)-1, option, len) ||
David P. Quigley11689d42009-01-16 09:22:03 -05002308 match_prefix(ROOTCONTEXT_STR, sizeof(ROOTCONTEXT_STR)-1, option, len) ||
2309 match_prefix(LABELSUPP_STR, sizeof(LABELSUPP_STR)-1, option, len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310}
2311
2312static inline void take_option(char **to, char *from, int *first, int len)
2313{
2314 if (!*first) {
2315 **to = ',';
2316 *to += 1;
Cory Olmo3528a952006-09-29 01:58:44 -07002317 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 *first = 0;
2319 memcpy(*to, from, len);
2320 *to += len;
2321}
2322
Eric Paris828dfe12008-04-17 13:17:49 -04002323static inline void take_selinux_option(char **to, char *from, int *first,
2324 int len)
Cory Olmo3528a952006-09-29 01:58:44 -07002325{
2326 int current_size = 0;
2327
2328 if (!*first) {
2329 **to = '|';
2330 *to += 1;
Eric Paris828dfe12008-04-17 13:17:49 -04002331 } else
Cory Olmo3528a952006-09-29 01:58:44 -07002332 *first = 0;
2333
2334 while (current_size < len) {
2335 if (*from != '"') {
2336 **to = *from;
2337 *to += 1;
2338 }
2339 from += 1;
2340 current_size += 1;
2341 }
2342}
2343
Eric Parise0007522008-03-05 10:31:54 -05002344static int selinux_sb_copy_data(char *orig, char *copy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345{
2346 int fnosec, fsec, rc = 0;
2347 char *in_save, *in_curr, *in_end;
2348 char *sec_curr, *nosec_save, *nosec;
Cory Olmo3528a952006-09-29 01:58:44 -07002349 int open_quote = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351 in_curr = orig;
2352 sec_curr = copy;
2353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 nosec = (char *)get_zeroed_page(GFP_KERNEL);
2355 if (!nosec) {
2356 rc = -ENOMEM;
2357 goto out;
2358 }
2359
2360 nosec_save = nosec;
2361 fnosec = fsec = 1;
2362 in_save = in_end = orig;
2363
2364 do {
Cory Olmo3528a952006-09-29 01:58:44 -07002365 if (*in_end == '"')
2366 open_quote = !open_quote;
2367 if ((*in_end == ',' && open_quote == 0) ||
2368 *in_end == '\0') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 int len = in_end - in_curr;
2370
2371 if (selinux_option(in_curr, len))
Cory Olmo3528a952006-09-29 01:58:44 -07002372 take_selinux_option(&sec_curr, in_curr, &fsec, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 else
2374 take_option(&nosec, in_curr, &fnosec, len);
2375
2376 in_curr = in_end + 1;
2377 }
2378 } while (*in_end++);
2379
Eric Paris6931dfc2005-06-30 02:58:51 -07002380 strcpy(in_save, nosec_save);
Gerald Schaeferda3caa22005-06-21 17:15:18 -07002381 free_page((unsigned long)nosec_save);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382out:
2383 return rc;
2384}
2385
Eric Paris026eb162011-03-03 16:09:14 -05002386static int selinux_sb_remount(struct super_block *sb, void *data)
2387{
2388 int rc, i, *flags;
2389 struct security_mnt_opts opts;
2390 char *secdata, **mount_options;
2391 struct superblock_security_struct *sbsec = sb->s_security;
2392
2393 if (!(sbsec->flags & SE_SBINITIALIZED))
2394 return 0;
2395
2396 if (!data)
2397 return 0;
2398
2399 if (sb->s_type->fs_flags & FS_BINARY_MOUNTDATA)
2400 return 0;
2401
2402 security_init_mnt_opts(&opts);
2403 secdata = alloc_secdata();
2404 if (!secdata)
2405 return -ENOMEM;
2406 rc = selinux_sb_copy_data(data, secdata);
2407 if (rc)
2408 goto out_free_secdata;
2409
2410 rc = selinux_parse_opts_str(secdata, &opts);
2411 if (rc)
2412 goto out_free_secdata;
2413
2414 mount_options = opts.mnt_opts;
2415 flags = opts.mnt_opts_flags;
2416
2417 for (i = 0; i < opts.num_mnt_opts; i++) {
2418 u32 sid;
2419 size_t len;
2420
2421 if (flags[i] == SE_SBLABELSUPP)
2422 continue;
2423 len = strlen(mount_options[i]);
2424 rc = security_context_to_sid(mount_options[i], len, &sid);
2425 if (rc) {
2426 printk(KERN_WARNING "SELinux: security_context_to_sid"
2427 "(%s) failed for (dev %s, type %s) errno=%d\n",
2428 mount_options[i], sb->s_id, sb->s_type->name, rc);
2429 goto out_free_opts;
2430 }
2431 rc = -EINVAL;
2432 switch (flags[i]) {
2433 case FSCONTEXT_MNT:
2434 if (bad_option(sbsec, FSCONTEXT_MNT, sbsec->sid, sid))
2435 goto out_bad_option;
2436 break;
2437 case CONTEXT_MNT:
2438 if (bad_option(sbsec, CONTEXT_MNT, sbsec->mntpoint_sid, sid))
2439 goto out_bad_option;
2440 break;
2441 case ROOTCONTEXT_MNT: {
2442 struct inode_security_struct *root_isec;
2443 root_isec = sb->s_root->d_inode->i_security;
2444
2445 if (bad_option(sbsec, ROOTCONTEXT_MNT, root_isec->sid, sid))
2446 goto out_bad_option;
2447 break;
2448 }
2449 case DEFCONTEXT_MNT:
2450 if (bad_option(sbsec, DEFCONTEXT_MNT, sbsec->def_sid, sid))
2451 goto out_bad_option;
2452 break;
2453 default:
2454 goto out_free_opts;
2455 }
2456 }
2457
2458 rc = 0;
2459out_free_opts:
2460 security_free_mnt_opts(&opts);
2461out_free_secdata:
2462 free_secdata(secdata);
2463 return rc;
2464out_bad_option:
2465 printk(KERN_WARNING "SELinux: unable to change security options "
2466 "during remount (dev %s, type=%s)\n", sb->s_id,
2467 sb->s_type->name);
2468 goto out_free_opts;
2469}
2470
James Morris12204e22008-12-19 10:44:42 +11002471static int selinux_sb_kern_mount(struct super_block *sb, int flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472{
David Howells88e67f32008-11-14 10:39:21 +11002473 const struct cred *cred = current_cred();
Thomas Liu2bf49692009-07-14 12:14:09 -04002474 struct common_audit_data ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 int rc;
2476
2477 rc = superblock_doinit(sb, data);
2478 if (rc)
2479 return rc;
2480
James Morris74192242008-12-19 11:41:10 +11002481 /* Allow all mounts performed by the kernel */
2482 if (flags & MS_KERNMOUNT)
2483 return 0;
2484
Eric Paris50c205f2012-04-04 15:01:43 -04002485 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04002486 ad.u.dentry = sb->s_root;
David Howells88e67f32008-11-14 10:39:21 +11002487 return superblock_has_perm(cred, sb, FILESYSTEM__MOUNT, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
David Howells726c3342006-06-23 02:02:58 -07002490static int selinux_sb_statfs(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
David Howells88e67f32008-11-14 10:39:21 +11002492 const struct cred *cred = current_cred();
Thomas Liu2bf49692009-07-14 12:14:09 -04002493 struct common_audit_data ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Eric Paris50c205f2012-04-04 15:01:43 -04002495 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04002496 ad.u.dentry = dentry->d_sb->s_root;
David Howells88e67f32008-11-14 10:39:21 +11002497 return superblock_has_perm(cred, dentry->d_sb, FILESYSTEM__GETATTR, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
Al Viro808d4e32012-10-11 11:42:01 -04002500static int selinux_mount(const char *dev_name,
Al Virob5266eb2008-03-22 17:48:24 -04002501 struct path *path,
Al Viro808d4e32012-10-11 11:42:01 -04002502 const char *type,
Eric Paris828dfe12008-04-17 13:17:49 -04002503 unsigned long flags,
2504 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
David Howells88e67f32008-11-14 10:39:21 +11002506 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508 if (flags & MS_REMOUNT)
Al Virod8c95842011-12-07 18:16:57 -05002509 return superblock_has_perm(cred, path->dentry->d_sb,
Eric Paris828dfe12008-04-17 13:17:49 -04002510 FILESYSTEM__REMOUNT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 else
Eric Paris2875fa02011-04-28 16:04:24 -04002512 return path_has_perm(cred, path, FILE__MOUNTON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513}
2514
2515static int selinux_umount(struct vfsmount *mnt, int flags)
2516{
David Howells88e67f32008-11-14 10:39:21 +11002517 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
David Howells88e67f32008-11-14 10:39:21 +11002519 return superblock_has_perm(cred, mnt->mnt_sb,
Eric Paris828dfe12008-04-17 13:17:49 -04002520 FILESYSTEM__UNMOUNT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
2523/* inode security operations */
2524
2525static int selinux_inode_alloc_security(struct inode *inode)
2526{
2527 return inode_alloc_security(inode);
2528}
2529
2530static void selinux_inode_free_security(struct inode *inode)
2531{
2532 inode_free_security(inode);
2533}
2534
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002535static int selinux_inode_init_security(struct inode *inode, struct inode *dir,
Eric Paris2a7dba32011-02-01 11:05:39 -05002536 const struct qstr *qstr, char **name,
2537 void **value, size_t *len)
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002538{
Paul Moore5fb49872010-04-22 14:46:19 -04002539 const struct task_security_struct *tsec = current_security();
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002540 struct inode_security_struct *dsec;
2541 struct superblock_security_struct *sbsec;
David Howells275bb412008-11-14 10:39:19 +11002542 u32 sid, newsid, clen;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002543 int rc;
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002544 char *namep = NULL, *context;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002545
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002546 dsec = dir->i_security;
2547 sbsec = dir->i_sb->s_security;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002548
David Howells275bb412008-11-14 10:39:19 +11002549 sid = tsec->sid;
2550 newsid = tsec->create_sid;
2551
Eric Paris415103f2010-12-02 16:13:40 -05002552 if ((sbsec->flags & SE_SBINITIALIZED) &&
2553 (sbsec->behavior == SECURITY_FS_USE_MNTPOINT))
2554 newsid = sbsec->mntpoint_sid;
2555 else if (!newsid || !(sbsec->flags & SE_SBLABELSUPP)) {
David Howells275bb412008-11-14 10:39:19 +11002556 rc = security_transition_sid(sid, dsec->sid,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002557 inode_mode_to_security_class(inode->i_mode),
Eric Paris652bb9b2011-02-01 11:05:40 -05002558 qstr, &newsid);
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002559 if (rc) {
2560 printk(KERN_WARNING "%s: "
2561 "security_transition_sid failed, rc=%d (dev=%s "
2562 "ino=%ld)\n",
Harvey Harrisondd6f9532008-03-06 10:03:59 +11002563 __func__,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002564 -rc, inode->i_sb->s_id, inode->i_ino);
2565 return rc;
2566 }
2567 }
2568
Eric Paris296fddf2006-09-25 23:32:00 -07002569 /* Possibly defer initialization to selinux_complete_init. */
David P. Quigley0d90a7e2009-01-16 09:22:02 -05002570 if (sbsec->flags & SE_SBINITIALIZED) {
Eric Paris296fddf2006-09-25 23:32:00 -07002571 struct inode_security_struct *isec = inode->i_security;
2572 isec->sclass = inode_mode_to_security_class(inode->i_mode);
2573 isec->sid = newsid;
2574 isec->initialized = 1;
2575 }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002576
David P. Quigleycd895962009-01-16 09:22:04 -05002577 if (!ss_initialized || !(sbsec->flags & SE_SBLABELSUPP))
Stephen Smalley25a74f32005-11-08 21:34:33 -08002578 return -EOPNOTSUPP;
2579
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002580 if (name) {
Josef Bacika02fe132008-04-04 09:35:05 +11002581 namep = kstrdup(XATTR_SELINUX_SUFFIX, GFP_NOFS);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002582 if (!namep)
2583 return -ENOMEM;
2584 *name = namep;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002585 }
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002586
2587 if (value && len) {
Stephen Smalley12b29f32008-05-07 13:03:20 -04002588 rc = security_sid_to_context_force(newsid, &context, &clen);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002589 if (rc) {
2590 kfree(namep);
2591 return rc;
2592 }
2593 *value = context;
2594 *len = clen;
2595 }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002596
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002597 return 0;
2598}
2599
Al Viro4acdaf22011-07-26 01:42:34 -04002600static int selinux_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
2602 return may_create(dir, dentry, SECCLASS_FILE);
2603}
2604
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605static int selinux_inode_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2606{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 return may_link(dir, old_dentry, MAY_LINK);
2608}
2609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610static int selinux_inode_unlink(struct inode *dir, struct dentry *dentry)
2611{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 return may_link(dir, dentry, MAY_UNLINK);
2613}
2614
2615static int selinux_inode_symlink(struct inode *dir, struct dentry *dentry, const char *name)
2616{
2617 return may_create(dir, dentry, SECCLASS_LNK_FILE);
2618}
2619
Al Viro18bb1db2011-07-26 01:41:39 -04002620static int selinux_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621{
2622 return may_create(dir, dentry, SECCLASS_DIR);
2623}
2624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625static int selinux_inode_rmdir(struct inode *dir, struct dentry *dentry)
2626{
2627 return may_link(dir, dentry, MAY_RMDIR);
2628}
2629
Al Viro1a67aaf2011-07-26 01:52:52 -04002630static int selinux_inode_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 return may_create(dir, dentry, inode_mode_to_security_class(mode));
2633}
2634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635static int selinux_inode_rename(struct inode *old_inode, struct dentry *old_dentry,
Eric Paris828dfe12008-04-17 13:17:49 -04002636 struct inode *new_inode, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637{
2638 return may_rename(old_inode, old_dentry, new_inode, new_dentry);
2639}
2640
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641static int selinux_inode_readlink(struct dentry *dentry)
2642{
David Howells88e67f32008-11-14 10:39:21 +11002643 const struct cred *cred = current_cred();
2644
Eric Paris2875fa02011-04-28 16:04:24 -04002645 return dentry_has_perm(cred, dentry, FILE__READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646}
2647
2648static int selinux_inode_follow_link(struct dentry *dentry, struct nameidata *nameidata)
2649{
David Howells88e67f32008-11-14 10:39:21 +11002650 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
Eric Paris2875fa02011-04-28 16:04:24 -04002652 return dentry_has_perm(cred, dentry, FILE__READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653}
2654
Eric Parisd4cf970d2012-04-04 15:01:42 -04002655static noinline int audit_inode_permission(struct inode *inode,
2656 u32 perms, u32 audited, u32 denied,
2657 unsigned flags)
2658{
2659 struct common_audit_data ad;
Eric Parisd4cf970d2012-04-04 15:01:42 -04002660 struct inode_security_struct *isec = inode->i_security;
2661 int rc;
2662
Eric Paris50c205f2012-04-04 15:01:43 -04002663 ad.type = LSM_AUDIT_DATA_INODE;
Eric Parisd4cf970d2012-04-04 15:01:42 -04002664 ad.u.inode = inode;
2665
2666 rc = slow_avc_audit(current_sid(), isec->sid, isec->sclass, perms,
2667 audited, denied, &ad, flags);
2668 if (rc)
2669 return rc;
2670 return 0;
2671}
2672
Al Viroe74f71e2011-06-20 19:38:15 -04002673static int selinux_inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674{
David Howells88e67f32008-11-14 10:39:21 +11002675 const struct cred *cred = current_cred();
Eric Parisb782e0a2010-07-23 11:44:03 -04002676 u32 perms;
2677 bool from_access;
Al Virocf1dd1d2011-06-20 19:44:08 -04002678 unsigned flags = mask & MAY_NOT_BLOCK;
Eric Paris2e334052012-04-04 15:01:42 -04002679 struct inode_security_struct *isec;
2680 u32 sid;
2681 struct av_decision avd;
2682 int rc, rc2;
2683 u32 audited, denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Eric Parisb782e0a2010-07-23 11:44:03 -04002685 from_access = mask & MAY_ACCESS;
Eric Parisd09ca732010-07-23 11:43:57 -04002686 mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
2687
Eric Parisb782e0a2010-07-23 11:44:03 -04002688 /* No permission to check. Existence test. */
2689 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Eric Paris2e334052012-04-04 15:01:42 -04002692 validate_creds(cred);
Eric Parisb782e0a2010-07-23 11:44:03 -04002693
Eric Paris2e334052012-04-04 15:01:42 -04002694 if (unlikely(IS_PRIVATE(inode)))
2695 return 0;
Eric Parisb782e0a2010-07-23 11:44:03 -04002696
2697 perms = file_mask_to_av(inode->i_mode, mask);
2698
Eric Paris2e334052012-04-04 15:01:42 -04002699 sid = cred_sid(cred);
2700 isec = inode->i_security;
2701
2702 rc = avc_has_perm_noaudit(sid, isec->sid, isec->sclass, perms, 0, &avd);
2703 audited = avc_audit_required(perms, &avd, rc,
2704 from_access ? FILE__AUDIT_ACCESS : 0,
2705 &denied);
2706 if (likely(!audited))
2707 return rc;
2708
Eric Parisd4cf970d2012-04-04 15:01:42 -04002709 rc2 = audit_inode_permission(inode, perms, audited, denied, flags);
Eric Paris2e334052012-04-04 15:01:42 -04002710 if (rc2)
2711 return rc2;
2712 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713}
2714
2715static int selinux_inode_setattr(struct dentry *dentry, struct iattr *iattr)
2716{
David Howells88e67f32008-11-14 10:39:21 +11002717 const struct cred *cred = current_cred();
Amerigo Wangbc6a6002009-08-20 19:29:02 -07002718 unsigned int ia_valid = iattr->ia_valid;
Eric Paris95dbf732012-04-04 13:45:34 -04002719 __u32 av = FILE__WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Amerigo Wangbc6a6002009-08-20 19:29:02 -07002721 /* ATTR_FORCE is just used for ATTR_KILL_S[UG]ID. */
2722 if (ia_valid & ATTR_FORCE) {
2723 ia_valid &= ~(ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_MODE |
2724 ATTR_FORCE);
2725 if (!ia_valid)
2726 return 0;
2727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Amerigo Wangbc6a6002009-08-20 19:29:02 -07002729 if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID |
2730 ATTR_ATIME_SET | ATTR_MTIME_SET | ATTR_TIMES_SET))
Eric Paris2875fa02011-04-28 16:04:24 -04002731 return dentry_has_perm(cred, dentry, FILE__SETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Eric Paris3d2195c2012-07-06 14:13:30 -04002733 if (selinux_policycap_openperm && (ia_valid & ATTR_SIZE))
Eric Paris95dbf732012-04-04 13:45:34 -04002734 av |= FILE__OPEN;
2735
2736 return dentry_has_perm(cred, dentry, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
2739static int selinux_inode_getattr(struct vfsmount *mnt, struct dentry *dentry)
2740{
David Howells88e67f32008-11-14 10:39:21 +11002741 const struct cred *cred = current_cred();
Eric Paris2875fa02011-04-28 16:04:24 -04002742 struct path path;
David Howells88e67f32008-11-14 10:39:21 +11002743
Eric Paris2875fa02011-04-28 16:04:24 -04002744 path.dentry = dentry;
2745 path.mnt = mnt;
2746
2747 return path_has_perm(cred, &path, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748}
2749
David Howells8f0cfa52008-04-29 00:59:41 -07002750static int selinux_inode_setotherxattr(struct dentry *dentry, const char *name)
Serge E. Hallynb5376772007-10-16 23:31:36 -07002751{
David Howells88e67f32008-11-14 10:39:21 +11002752 const struct cred *cred = current_cred();
2753
Serge E. Hallynb5376772007-10-16 23:31:36 -07002754 if (!strncmp(name, XATTR_SECURITY_PREFIX,
2755 sizeof XATTR_SECURITY_PREFIX - 1)) {
2756 if (!strcmp(name, XATTR_NAME_CAPS)) {
2757 if (!capable(CAP_SETFCAP))
2758 return -EPERM;
2759 } else if (!capable(CAP_SYS_ADMIN)) {
2760 /* A different attribute in the security namespace.
2761 Restrict to administrator. */
2762 return -EPERM;
2763 }
2764 }
2765
2766 /* Not an attribute we recognize, so just check the
2767 ordinary setattr permission. */
Eric Paris2875fa02011-04-28 16:04:24 -04002768 return dentry_has_perm(cred, dentry, FILE__SETATTR);
Serge E. Hallynb5376772007-10-16 23:31:36 -07002769}
2770
David Howells8f0cfa52008-04-29 00:59:41 -07002771static int selinux_inode_setxattr(struct dentry *dentry, const char *name,
2772 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 struct inode *inode = dentry->d_inode;
2775 struct inode_security_struct *isec = inode->i_security;
2776 struct superblock_security_struct *sbsec;
Thomas Liu2bf49692009-07-14 12:14:09 -04002777 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11002778 u32 newsid, sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 int rc = 0;
2780
Serge E. Hallynb5376772007-10-16 23:31:36 -07002781 if (strcmp(name, XATTR_NAME_SELINUX))
2782 return selinux_inode_setotherxattr(dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 sbsec = inode->i_sb->s_security;
David P. Quigleycd895962009-01-16 09:22:04 -05002785 if (!(sbsec->flags & SE_SBLABELSUPP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 return -EOPNOTSUPP;
2787
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002788 if (!inode_owner_or_capable(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 return -EPERM;
2790
Eric Paris50c205f2012-04-04 15:01:43 -04002791 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04002792 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
David Howells275bb412008-11-14 10:39:19 +11002794 rc = avc_has_perm(sid, isec->sid, isec->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 FILE__RELABELFROM, &ad);
2796 if (rc)
2797 return rc;
2798
2799 rc = security_context_to_sid(value, size, &newsid);
Stephen Smalley12b29f32008-05-07 13:03:20 -04002800 if (rc == -EINVAL) {
Eric Parisd6ea83e2012-04-04 13:45:49 -04002801 if (!capable(CAP_MAC_ADMIN)) {
2802 struct audit_buffer *ab;
2803 size_t audit_size;
2804 const char *str;
2805
2806 /* We strip a nul only if it is at the end, otherwise the
2807 * context contains a nul and we should audit that */
Al Viroe3fea3f2012-06-09 08:15:16 +01002808 if (value) {
2809 str = value;
2810 if (str[size - 1] == '\0')
2811 audit_size = size - 1;
2812 else
2813 audit_size = size;
2814 } else {
2815 str = "";
2816 audit_size = 0;
2817 }
Eric Parisd6ea83e2012-04-04 13:45:49 -04002818 ab = audit_log_start(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR);
2819 audit_log_format(ab, "op=setxattr invalid_context=");
2820 audit_log_n_untrustedstring(ab, value, audit_size);
2821 audit_log_end(ab);
2822
Stephen Smalley12b29f32008-05-07 13:03:20 -04002823 return rc;
Eric Parisd6ea83e2012-04-04 13:45:49 -04002824 }
Stephen Smalley12b29f32008-05-07 13:03:20 -04002825 rc = security_context_to_sid_force(value, size, &newsid);
2826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 if (rc)
2828 return rc;
2829
David Howells275bb412008-11-14 10:39:19 +11002830 rc = avc_has_perm(sid, newsid, isec->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 FILE__RELABELTO, &ad);
2832 if (rc)
2833 return rc;
2834
David Howells275bb412008-11-14 10:39:19 +11002835 rc = security_validate_transition(isec->sid, newsid, sid,
Eric Paris828dfe12008-04-17 13:17:49 -04002836 isec->sclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 if (rc)
2838 return rc;
2839
2840 return avc_has_perm(newsid,
2841 sbsec->sid,
2842 SECCLASS_FILESYSTEM,
2843 FILESYSTEM__ASSOCIATE,
2844 &ad);
2845}
2846
David Howells8f0cfa52008-04-29 00:59:41 -07002847static void selinux_inode_post_setxattr(struct dentry *dentry, const char *name,
Eric Parisf5269712008-05-14 11:27:45 -04002848 const void *value, size_t size,
David Howells8f0cfa52008-04-29 00:59:41 -07002849 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850{
2851 struct inode *inode = dentry->d_inode;
2852 struct inode_security_struct *isec = inode->i_security;
2853 u32 newsid;
2854 int rc;
2855
2856 if (strcmp(name, XATTR_NAME_SELINUX)) {
2857 /* Not an attribute we recognize, so nothing to do. */
2858 return;
2859 }
2860
Stephen Smalley12b29f32008-05-07 13:03:20 -04002861 rc = security_context_to_sid_force(value, size, &newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (rc) {
Stephen Smalley12b29f32008-05-07 13:03:20 -04002863 printk(KERN_ERR "SELinux: unable to map context to SID"
2864 "for (%s, %lu), rc=%d\n",
2865 inode->i_sb->s_id, inode->i_ino, -rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 return;
2867 }
2868
2869 isec->sid = newsid;
2870 return;
2871}
2872
David Howells8f0cfa52008-04-29 00:59:41 -07002873static int selinux_inode_getxattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874{
David Howells88e67f32008-11-14 10:39:21 +11002875 const struct cred *cred = current_cred();
2876
Eric Paris2875fa02011-04-28 16:04:24 -04002877 return dentry_has_perm(cred, dentry, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878}
2879
Eric Paris828dfe12008-04-17 13:17:49 -04002880static int selinux_inode_listxattr(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881{
David Howells88e67f32008-11-14 10:39:21 +11002882 const struct cred *cred = current_cred();
2883
Eric Paris2875fa02011-04-28 16:04:24 -04002884 return dentry_has_perm(cred, dentry, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885}
2886
David Howells8f0cfa52008-04-29 00:59:41 -07002887static int selinux_inode_removexattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002889 if (strcmp(name, XATTR_NAME_SELINUX))
2890 return selinux_inode_setotherxattr(dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892 /* No one is allowed to remove a SELinux security label.
2893 You can change the label, but all data must be labeled. */
2894 return -EACCES;
2895}
2896
James Morrisd381d8a2005-10-30 14:59:22 -08002897/*
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04002898 * Copy the inode security context value to the user.
James Morrisd381d8a2005-10-30 14:59:22 -08002899 *
2900 * Permission check is handled by selinux_inode_getxattr hook.
2901 */
David P. Quigley42492592008-02-04 22:29:39 -08002902static int selinux_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903{
David P. Quigley42492592008-02-04 22:29:39 -08002904 u32 size;
2905 int error;
2906 char *context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 struct inode_security_struct *isec = inode->i_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00002909 if (strcmp(name, XATTR_SELINUX_SUFFIX))
2910 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04002912 /*
2913 * If the caller has CAP_MAC_ADMIN, then get the raw context
2914 * value even if it is not defined by current policy; otherwise,
2915 * use the in-core value under current policy.
2916 * Use the non-auditing forms of the permission checks since
2917 * getxattr may be called by unprivileged processes commonly
2918 * and lack of permission just means that we fall back to the
2919 * in-core context value, not a denial.
2920 */
Eric Paris6a9de492012-01-03 12:25:14 -05002921 error = selinux_capable(current_cred(), &init_user_ns, CAP_MAC_ADMIN,
David Howells3699c532009-01-06 22:27:01 +00002922 SECURITY_CAP_NOAUDIT);
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04002923 if (!error)
2924 error = security_sid_to_context_force(isec->sid, &context,
2925 &size);
2926 else
2927 error = security_sid_to_context(isec->sid, &context, &size);
David P. Quigley42492592008-02-04 22:29:39 -08002928 if (error)
2929 return error;
2930 error = size;
2931 if (alloc) {
2932 *buffer = context;
2933 goto out_nofree;
2934 }
2935 kfree(context);
2936out_nofree:
2937 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938}
2939
2940static int selinux_inode_setsecurity(struct inode *inode, const char *name,
Eric Paris828dfe12008-04-17 13:17:49 -04002941 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942{
2943 struct inode_security_struct *isec = inode->i_security;
2944 u32 newsid;
2945 int rc;
2946
2947 if (strcmp(name, XATTR_SELINUX_SUFFIX))
2948 return -EOPNOTSUPP;
2949
2950 if (!value || !size)
2951 return -EACCES;
2952
Eric Paris828dfe12008-04-17 13:17:49 -04002953 rc = security_context_to_sid((void *)value, size, &newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 if (rc)
2955 return rc;
2956
2957 isec->sid = newsid;
David P. Quigleyddd29ec2009-09-09 14:25:37 -04002958 isec->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 return 0;
2960}
2961
2962static int selinux_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2963{
2964 const int len = sizeof(XATTR_NAME_SELINUX);
2965 if (buffer && len <= buffer_size)
2966 memcpy(buffer, XATTR_NAME_SELINUX, len);
2967 return len;
2968}
2969
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02002970static void selinux_inode_getsecid(const struct inode *inode, u32 *secid)
2971{
2972 struct inode_security_struct *isec = inode->i_security;
2973 *secid = isec->sid;
2974}
2975
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976/* file security operations */
2977
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002978static int selinux_revalidate_file_permission(struct file *file, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979{
David Howells88e67f32008-11-14 10:39:21 +11002980 const struct cred *cred = current_cred();
Al Viro496ad9a2013-01-23 17:07:38 -05002981 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 /* file_mask_to_av won't add FILE__WRITE if MAY_APPEND is set */
2984 if ((file->f_flags & O_APPEND) && (mask & MAY_WRITE))
2985 mask |= MAY_APPEND;
2986
Paul Moore389fb8002009-03-27 17:10:34 -04002987 return file_has_perm(cred, file,
2988 file_mask_to_av(inode->i_mode, mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989}
2990
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002991static int selinux_file_permission(struct file *file, int mask)
2992{
Al Viro496ad9a2013-01-23 17:07:38 -05002993 struct inode *inode = file_inode(file);
Stephen Smalley20dda182009-06-22 14:54:53 -04002994 struct file_security_struct *fsec = file->f_security;
2995 struct inode_security_struct *isec = inode->i_security;
2996 u32 sid = current_sid();
2997
Paul Moore389fb8002009-03-27 17:10:34 -04002998 if (!mask)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002999 /* No permission to check. Existence test. */
3000 return 0;
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003001
Stephen Smalley20dda182009-06-22 14:54:53 -04003002 if (sid == fsec->sid && fsec->isid == isec->sid &&
3003 fsec->pseqno == avc_policy_seqno())
Eric Paris83d49852012-04-04 13:45:40 -04003004 /* No change since file_open check. */
Stephen Smalley20dda182009-06-22 14:54:53 -04003005 return 0;
3006
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003007 return selinux_revalidate_file_permission(file, mask);
3008}
3009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010static int selinux_file_alloc_security(struct file *file)
3011{
3012 return file_alloc_security(file);
3013}
3014
3015static void selinux_file_free_security(struct file *file)
3016{
3017 file_free_security(file);
3018}
3019
3020static int selinux_file_ioctl(struct file *file, unsigned int cmd,
3021 unsigned long arg)
3022{
David Howells88e67f32008-11-14 10:39:21 +11003023 const struct cred *cred = current_cred();
Eric Paris0b24dcb2011-02-25 15:39:20 -05003024 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Eric Paris0b24dcb2011-02-25 15:39:20 -05003026 switch (cmd) {
3027 case FIONREAD:
3028 /* fall through */
3029 case FIBMAP:
3030 /* fall through */
3031 case FIGETBSZ:
3032 /* fall through */
Al Viro2f99c362012-03-23 16:04:05 -04003033 case FS_IOC_GETFLAGS:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003034 /* fall through */
Al Viro2f99c362012-03-23 16:04:05 -04003035 case FS_IOC_GETVERSION:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003036 error = file_has_perm(cred, file, FILE__GETATTR);
3037 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Al Viro2f99c362012-03-23 16:04:05 -04003039 case FS_IOC_SETFLAGS:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003040 /* fall through */
Al Viro2f99c362012-03-23 16:04:05 -04003041 case FS_IOC_SETVERSION:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003042 error = file_has_perm(cred, file, FILE__SETATTR);
3043 break;
3044
3045 /* sys_ioctl() checks */
3046 case FIONBIO:
3047 /* fall through */
3048 case FIOASYNC:
3049 error = file_has_perm(cred, file, 0);
3050 break;
3051
3052 case KDSKBENT:
3053 case KDSKBSENT:
Eric Paris6a9de492012-01-03 12:25:14 -05003054 error = cred_has_capability(cred, CAP_SYS_TTY_CONFIG,
3055 SECURITY_CAP_AUDIT);
Eric Paris0b24dcb2011-02-25 15:39:20 -05003056 break;
3057
3058 /* default case assumes that the command will go
3059 * to the file's ioctl() function.
3060 */
3061 default:
3062 error = file_has_perm(cred, file, FILE__IOCTL);
3063 }
3064 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065}
3066
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003067static int default_noexec;
3068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069static int file_map_prot_check(struct file *file, unsigned long prot, int shared)
3070{
David Howells88e67f32008-11-14 10:39:21 +11003071 const struct cred *cred = current_cred();
David Howellsd84f4f92008-11-14 10:39:23 +11003072 int rc = 0;
David Howells88e67f32008-11-14 10:39:21 +11003073
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003074 if (default_noexec &&
3075 (prot & PROT_EXEC) && (!file || (!shared && (prot & PROT_WRITE)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 /*
3077 * We are making executable an anonymous mapping or a
3078 * private file mapping that will also be writable.
3079 * This has an additional check.
3080 */
David Howellsd84f4f92008-11-14 10:39:23 +11003081 rc = cred_has_perm(cred, cred, PROCESS__EXECMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 if (rc)
David Howellsd84f4f92008-11-14 10:39:23 +11003083 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
3086 if (file) {
3087 /* read access is always possible with a mapping */
3088 u32 av = FILE__READ;
3089
3090 /* write access only matters if the mapping is shared */
3091 if (shared && (prot & PROT_WRITE))
3092 av |= FILE__WRITE;
3093
3094 if (prot & PROT_EXEC)
3095 av |= FILE__EXECUTE;
3096
David Howells88e67f32008-11-14 10:39:21 +11003097 return file_has_perm(cred, file, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 }
David Howellsd84f4f92008-11-14 10:39:23 +11003099
3100error:
3101 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102}
3103
Al Viroe5467852012-05-30 13:30:51 -04003104static int selinux_mmap_addr(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105{
Eric Parised032182007-06-28 15:55:21 -04003106 int rc = 0;
David Howells275bb412008-11-14 10:39:19 +11003107 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Eric Paris84336d1a2009-07-31 12:54:05 -04003109 /*
3110 * notice that we are intentionally putting the SELinux check before
3111 * the secondary cap_file_mmap check. This is such a likely attempt
3112 * at bad behaviour/exploit that we always want to get the AVC, even
3113 * if DAC would have also denied the operation.
3114 */
Eric Parisa2551df2009-07-31 12:54:11 -04003115 if (addr < CONFIG_LSM_MMAP_MIN_ADDR) {
Eric Parised032182007-06-28 15:55:21 -04003116 rc = avc_has_perm(sid, sid, SECCLASS_MEMPROTECT,
3117 MEMPROTECT__MMAP_ZERO, NULL);
Eric Paris84336d1a2009-07-31 12:54:05 -04003118 if (rc)
3119 return rc;
3120 }
3121
3122 /* do DAC check on address space usage */
Al Viroe5467852012-05-30 13:30:51 -04003123 return cap_mmap_addr(addr);
3124}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Al Viroe5467852012-05-30 13:30:51 -04003126static int selinux_mmap_file(struct file *file, unsigned long reqprot,
3127 unsigned long prot, unsigned long flags)
3128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 if (selinux_checkreqprot)
3130 prot = reqprot;
3131
3132 return file_map_prot_check(file, prot,
3133 (flags & MAP_TYPE) == MAP_SHARED);
3134}
3135
3136static int selinux_file_mprotect(struct vm_area_struct *vma,
3137 unsigned long reqprot,
3138 unsigned long prot)
3139{
David Howells88e67f32008-11-14 10:39:21 +11003140 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
3142 if (selinux_checkreqprot)
3143 prot = reqprot;
3144
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003145 if (default_noexec &&
3146 (prot & PROT_EXEC) && !(vma->vm_flags & VM_EXEC)) {
James Morrisd541bbe2009-01-29 12:19:51 +11003147 int rc = 0;
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003148 if (vma->vm_start >= vma->vm_mm->start_brk &&
3149 vma->vm_end <= vma->vm_mm->brk) {
David Howellsd84f4f92008-11-14 10:39:23 +11003150 rc = cred_has_perm(cred, cred, PROCESS__EXECHEAP);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003151 } else if (!vma->vm_file &&
3152 vma->vm_start <= vma->vm_mm->start_stack &&
3153 vma->vm_end >= vma->vm_mm->start_stack) {
David Howells3b11a1d2008-11-14 10:39:26 +11003154 rc = current_has_perm(current, PROCESS__EXECSTACK);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003155 } else if (vma->vm_file && vma->anon_vma) {
3156 /*
3157 * We are making executable a file mapping that has
3158 * had some COW done. Since pages might have been
3159 * written, check ability to execute the possibly
3160 * modified content. This typically should only
3161 * occur for text relocations.
3162 */
David Howellsd84f4f92008-11-14 10:39:23 +11003163 rc = file_has_perm(cred, vma->vm_file, FILE__EXECMOD);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003164 }
Lorenzo Hernandez García-Hierro6b992192005-06-25 14:54:34 -07003165 if (rc)
3166 return rc;
3167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
3169 return file_map_prot_check(vma->vm_file, prot, vma->vm_flags&VM_SHARED);
3170}
3171
3172static int selinux_file_lock(struct file *file, unsigned int cmd)
3173{
David Howells88e67f32008-11-14 10:39:21 +11003174 const struct cred *cred = current_cred();
3175
3176 return file_has_perm(cred, file, FILE__LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177}
3178
3179static int selinux_file_fcntl(struct file *file, unsigned int cmd,
3180 unsigned long arg)
3181{
David Howells88e67f32008-11-14 10:39:21 +11003182 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 int err = 0;
3184
3185 switch (cmd) {
Eric Paris828dfe12008-04-17 13:17:49 -04003186 case F_SETFL:
Eric Paris828dfe12008-04-17 13:17:49 -04003187 if ((file->f_flags & O_APPEND) && !(arg & O_APPEND)) {
David Howells88e67f32008-11-14 10:39:21 +11003188 err = file_has_perm(cred, file, FILE__WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003190 }
3191 /* fall through */
3192 case F_SETOWN:
3193 case F_SETSIG:
3194 case F_GETFL:
3195 case F_GETOWN:
3196 case F_GETSIG:
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -07003197 case F_GETOWNER_UIDS:
Eric Paris828dfe12008-04-17 13:17:49 -04003198 /* Just check FD__USE permission */
David Howells88e67f32008-11-14 10:39:21 +11003199 err = file_has_perm(cred, file, 0);
Eric Paris828dfe12008-04-17 13:17:49 -04003200 break;
3201 case F_GETLK:
3202 case F_SETLK:
3203 case F_SETLKW:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204#if BITS_PER_LONG == 32
Eric Paris828dfe12008-04-17 13:17:49 -04003205 case F_GETLK64:
3206 case F_SETLK64:
3207 case F_SETLKW64:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208#endif
David Howells88e67f32008-11-14 10:39:21 +11003209 err = file_has_perm(cred, file, FILE__LOCK);
Eric Paris828dfe12008-04-17 13:17:49 -04003210 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 }
3212
3213 return err;
3214}
3215
3216static int selinux_file_set_fowner(struct file *file)
3217{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 struct file_security_struct *fsec;
3219
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 fsec = file->f_security;
David Howells275bb412008-11-14 10:39:19 +11003221 fsec->fown_sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
3223 return 0;
3224}
3225
3226static int selinux_file_send_sigiotask(struct task_struct *tsk,
3227 struct fown_struct *fown, int signum)
3228{
Eric Paris828dfe12008-04-17 13:17:49 -04003229 struct file *file;
Stephen Smalley65c90bc2009-05-04 15:43:18 -04003230 u32 sid = task_sid(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 u32 perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 struct file_security_struct *fsec;
3233
3234 /* struct fown_struct is never outside the context of a struct file */
Eric Paris828dfe12008-04-17 13:17:49 -04003235 file = container_of(fown, struct file, f_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 fsec = file->f_security;
3238
3239 if (!signum)
3240 perm = signal_to_av(SIGIO); /* as per send_sigio_to_task */
3241 else
3242 perm = signal_to_av(signum);
3243
David Howells275bb412008-11-14 10:39:19 +11003244 return avc_has_perm(fsec->fown_sid, sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 SECCLASS_PROCESS, perm, NULL);
3246}
3247
3248static int selinux_file_receive(struct file *file)
3249{
David Howells88e67f32008-11-14 10:39:21 +11003250 const struct cred *cred = current_cred();
3251
3252 return file_has_perm(cred, file, file_to_av(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253}
3254
Eric Paris83d49852012-04-04 13:45:40 -04003255static int selinux_file_open(struct file *file, const struct cred *cred)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003256{
3257 struct file_security_struct *fsec;
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003258 struct inode_security_struct *isec;
David Howellsd84f4f92008-11-14 10:39:23 +11003259
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003260 fsec = file->f_security;
Al Viro496ad9a2013-01-23 17:07:38 -05003261 isec = file_inode(file)->i_security;
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003262 /*
3263 * Save inode label and policy sequence number
3264 * at open-time so that selinux_file_permission
3265 * can determine whether revalidation is necessary.
3266 * Task label is already saved in the file security
3267 * struct as its SID.
3268 */
3269 fsec->isid = isec->sid;
3270 fsec->pseqno = avc_policy_seqno();
3271 /*
3272 * Since the inode label or policy seqno may have changed
3273 * between the selinux_inode_permission check and the saving
3274 * of state above, recheck that access is still permitted.
3275 * Otherwise, access might never be revalidated against the
3276 * new inode label or new policy.
3277 * This check is not redundant - do not remove.
3278 */
Eric Paris602a8dd2012-04-04 15:01:42 -04003279 return path_has_perm(cred, &file->f_path, open_file_to_av(file));
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003280}
3281
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282/* task security operations */
3283
3284static int selinux_task_create(unsigned long clone_flags)
3285{
David Howells3b11a1d2008-11-14 10:39:26 +11003286 return current_has_perm(current, PROCESS__FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287}
3288
David Howellsf1752ee2008-11-14 10:39:17 +11003289/*
David Howellsee18d642009-09-02 09:14:21 +01003290 * allocate the SELinux part of blank credentials
3291 */
3292static int selinux_cred_alloc_blank(struct cred *cred, gfp_t gfp)
3293{
3294 struct task_security_struct *tsec;
3295
3296 tsec = kzalloc(sizeof(struct task_security_struct), gfp);
3297 if (!tsec)
3298 return -ENOMEM;
3299
3300 cred->security = tsec;
3301 return 0;
3302}
3303
3304/*
David Howellsf1752ee2008-11-14 10:39:17 +11003305 * detach and free the LSM part of a set of credentials
3306 */
3307static void selinux_cred_free(struct cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308{
David Howellsf1752ee2008-11-14 10:39:17 +11003309 struct task_security_struct *tsec = cred->security;
David Howellse0e81732009-09-02 09:13:40 +01003310
Tetsuo Handa2edeaa32011-02-07 13:36:10 +00003311 /*
3312 * cred->security == NULL if security_cred_alloc_blank() or
3313 * security_prepare_creds() returned an error.
3314 */
3315 BUG_ON(cred->security && (unsigned long) cred->security < PAGE_SIZE);
David Howellse0e81732009-09-02 09:13:40 +01003316 cred->security = (void *) 0x7UL;
David Howellsf1752ee2008-11-14 10:39:17 +11003317 kfree(tsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318}
3319
David Howellsd84f4f92008-11-14 10:39:23 +11003320/*
3321 * prepare a new set of credentials for modification
3322 */
3323static int selinux_cred_prepare(struct cred *new, const struct cred *old,
3324 gfp_t gfp)
3325{
3326 const struct task_security_struct *old_tsec;
3327 struct task_security_struct *tsec;
3328
3329 old_tsec = old->security;
3330
3331 tsec = kmemdup(old_tsec, sizeof(struct task_security_struct), gfp);
3332 if (!tsec)
3333 return -ENOMEM;
3334
3335 new->security = tsec;
3336 return 0;
3337}
3338
3339/*
David Howellsee18d642009-09-02 09:14:21 +01003340 * transfer the SELinux data to a blank set of creds
3341 */
3342static void selinux_cred_transfer(struct cred *new, const struct cred *old)
3343{
3344 const struct task_security_struct *old_tsec = old->security;
3345 struct task_security_struct *tsec = new->security;
3346
3347 *tsec = *old_tsec;
3348}
3349
3350/*
David Howells3a3b7ce2008-11-14 10:39:28 +11003351 * set the security data for a kernel service
3352 * - all the creation contexts are set to unlabelled
3353 */
3354static int selinux_kernel_act_as(struct cred *new, u32 secid)
3355{
3356 struct task_security_struct *tsec = new->security;
3357 u32 sid = current_sid();
3358 int ret;
3359
3360 ret = avc_has_perm(sid, secid,
3361 SECCLASS_KERNEL_SERVICE,
3362 KERNEL_SERVICE__USE_AS_OVERRIDE,
3363 NULL);
3364 if (ret == 0) {
3365 tsec->sid = secid;
3366 tsec->create_sid = 0;
3367 tsec->keycreate_sid = 0;
3368 tsec->sockcreate_sid = 0;
3369 }
3370 return ret;
3371}
3372
3373/*
3374 * set the file creation context in a security record to the same as the
3375 * objective context of the specified inode
3376 */
3377static int selinux_kernel_create_files_as(struct cred *new, struct inode *inode)
3378{
3379 struct inode_security_struct *isec = inode->i_security;
3380 struct task_security_struct *tsec = new->security;
3381 u32 sid = current_sid();
3382 int ret;
3383
3384 ret = avc_has_perm(sid, isec->sid,
3385 SECCLASS_KERNEL_SERVICE,
3386 KERNEL_SERVICE__CREATE_FILES_AS,
3387 NULL);
3388
3389 if (ret == 0)
3390 tsec->create_sid = isec->sid;
David Howellsef574712010-02-26 01:56:16 +00003391 return ret;
David Howells3a3b7ce2008-11-14 10:39:28 +11003392}
3393
Eric Parisdd8dbf22009-11-03 16:35:32 +11003394static int selinux_kernel_module_request(char *kmod_name)
Eric Paris25354c42009-08-13 09:45:03 -04003395{
Eric Parisdd8dbf22009-11-03 16:35:32 +11003396 u32 sid;
3397 struct common_audit_data ad;
3398
3399 sid = task_sid(current);
3400
Eric Paris50c205f2012-04-04 15:01:43 -04003401 ad.type = LSM_AUDIT_DATA_KMOD;
Eric Parisdd8dbf22009-11-03 16:35:32 +11003402 ad.u.kmod_name = kmod_name;
3403
3404 return avc_has_perm(sid, SECINITSID_KERNEL, SECCLASS_SYSTEM,
3405 SYSTEM__MODULE_REQUEST, &ad);
Eric Paris25354c42009-08-13 09:45:03 -04003406}
3407
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408static int selinux_task_setpgid(struct task_struct *p, pid_t pgid)
3409{
David Howells3b11a1d2008-11-14 10:39:26 +11003410 return current_has_perm(p, PROCESS__SETPGID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411}
3412
3413static int selinux_task_getpgid(struct task_struct *p)
3414{
David Howells3b11a1d2008-11-14 10:39:26 +11003415 return current_has_perm(p, PROCESS__GETPGID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416}
3417
3418static int selinux_task_getsid(struct task_struct *p)
3419{
David Howells3b11a1d2008-11-14 10:39:26 +11003420 return current_has_perm(p, PROCESS__GETSESSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421}
3422
David Quigleyf9008e42006-06-30 01:55:46 -07003423static void selinux_task_getsecid(struct task_struct *p, u32 *secid)
3424{
David Howells275bb412008-11-14 10:39:19 +11003425 *secid = task_sid(p);
David Quigleyf9008e42006-06-30 01:55:46 -07003426}
3427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428static int selinux_task_setnice(struct task_struct *p, int nice)
3429{
3430 int rc;
3431
Eric Paris200ac532009-02-12 15:01:04 -05003432 rc = cap_task_setnice(p, nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 if (rc)
3434 return rc;
3435
David Howells3b11a1d2008-11-14 10:39:26 +11003436 return current_has_perm(p, PROCESS__SETSCHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437}
3438
James Morris03e68062006-06-23 02:03:58 -07003439static int selinux_task_setioprio(struct task_struct *p, int ioprio)
3440{
Serge E. Hallynb5376772007-10-16 23:31:36 -07003441 int rc;
3442
Eric Paris200ac532009-02-12 15:01:04 -05003443 rc = cap_task_setioprio(p, ioprio);
Serge E. Hallynb5376772007-10-16 23:31:36 -07003444 if (rc)
3445 return rc;
3446
David Howells3b11a1d2008-11-14 10:39:26 +11003447 return current_has_perm(p, PROCESS__SETSCHED);
James Morris03e68062006-06-23 02:03:58 -07003448}
3449
David Quigleya1836a42006-06-30 01:55:49 -07003450static int selinux_task_getioprio(struct task_struct *p)
3451{
David Howells3b11a1d2008-11-14 10:39:26 +11003452 return current_has_perm(p, PROCESS__GETSCHED);
David Quigleya1836a42006-06-30 01:55:49 -07003453}
3454
Jiri Slaby8fd00b42009-08-26 18:41:16 +02003455static int selinux_task_setrlimit(struct task_struct *p, unsigned int resource,
3456 struct rlimit *new_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457{
Jiri Slaby8fd00b42009-08-26 18:41:16 +02003458 struct rlimit *old_rlim = p->signal->rlim + resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
3460 /* Control the ability to change the hard limit (whether
3461 lowering or raising it), so that the hard limit can
3462 later be used as a safe reset point for the soft limit
David Howellsd84f4f92008-11-14 10:39:23 +11003463 upon context transitions. See selinux_bprm_committing_creds. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 if (old_rlim->rlim_max != new_rlim->rlim_max)
Jiri Slaby8fd00b42009-08-26 18:41:16 +02003465 return current_has_perm(p, PROCESS__SETRLIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
3467 return 0;
3468}
3469
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003470static int selinux_task_setscheduler(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471{
Serge E. Hallynb5376772007-10-16 23:31:36 -07003472 int rc;
3473
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003474 rc = cap_task_setscheduler(p);
Serge E. Hallynb5376772007-10-16 23:31:36 -07003475 if (rc)
3476 return rc;
3477
David Howells3b11a1d2008-11-14 10:39:26 +11003478 return current_has_perm(p, PROCESS__SETSCHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479}
3480
3481static int selinux_task_getscheduler(struct task_struct *p)
3482{
David Howells3b11a1d2008-11-14 10:39:26 +11003483 return current_has_perm(p, PROCESS__GETSCHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484}
3485
David Quigley35601542006-06-23 02:04:01 -07003486static int selinux_task_movememory(struct task_struct *p)
3487{
David Howells3b11a1d2008-11-14 10:39:26 +11003488 return current_has_perm(p, PROCESS__SETSCHED);
David Quigley35601542006-06-23 02:04:01 -07003489}
3490
David Quigleyf9008e42006-06-30 01:55:46 -07003491static int selinux_task_kill(struct task_struct *p, struct siginfo *info,
3492 int sig, u32 secid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493{
3494 u32 perm;
3495 int rc;
3496
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 if (!sig)
3498 perm = PROCESS__SIGNULL; /* null signal; existence test */
3499 else
3500 perm = signal_to_av(sig);
David Quigleyf9008e42006-06-30 01:55:46 -07003501 if (secid)
David Howells275bb412008-11-14 10:39:19 +11003502 rc = avc_has_perm(secid, task_sid(p),
3503 SECCLASS_PROCESS, perm, NULL);
David Quigleyf9008e42006-06-30 01:55:46 -07003504 else
David Howells3b11a1d2008-11-14 10:39:26 +11003505 rc = current_has_perm(p, perm);
David Quigleyf9008e42006-06-30 01:55:46 -07003506 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507}
3508
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509static int selinux_task_wait(struct task_struct *p)
3510{
Eric Paris8a535142007-10-22 16:10:31 -04003511 return task_has_perm(p, current, PROCESS__SIGCHLD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512}
3513
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514static void selinux_task_to_inode(struct task_struct *p,
3515 struct inode *inode)
3516{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 struct inode_security_struct *isec = inode->i_security;
David Howells275bb412008-11-14 10:39:19 +11003518 u32 sid = task_sid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
David Howells275bb412008-11-14 10:39:19 +11003520 isec->sid = sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 isec->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522}
3523
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524/* Returns error only if unable to parse addresses */
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003525static int selinux_parse_skb_ipv4(struct sk_buff *skb,
Thomas Liu2bf49692009-07-14 12:14:09 -04003526 struct common_audit_data *ad, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527{
3528 int offset, ihlen, ret = -EINVAL;
3529 struct iphdr _iph, *ih;
3530
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03003531 offset = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 ih = skb_header_pointer(skb, offset, sizeof(_iph), &_iph);
3533 if (ih == NULL)
3534 goto out;
3535
3536 ihlen = ih->ihl * 4;
3537 if (ihlen < sizeof(_iph))
3538 goto out;
3539
Eric Paris48c62af2012-04-02 13:15:44 -04003540 ad->u.net->v4info.saddr = ih->saddr;
3541 ad->u.net->v4info.daddr = ih->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 ret = 0;
3543
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003544 if (proto)
3545 *proto = ih->protocol;
3546
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 switch (ih->protocol) {
Eric Paris828dfe12008-04-17 13:17:49 -04003548 case IPPROTO_TCP: {
3549 struct tcphdr _tcph, *th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Eric Paris828dfe12008-04-17 13:17:49 -04003551 if (ntohs(ih->frag_off) & IP_OFFSET)
3552 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 offset += ihlen;
3555 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3556 if (th == NULL)
3557 break;
3558
Eric Paris48c62af2012-04-02 13:15:44 -04003559 ad->u.net->sport = th->source;
3560 ad->u.net->dport = th->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
Eric Paris828dfe12008-04-17 13:17:49 -04003564 case IPPROTO_UDP: {
3565 struct udphdr _udph, *uh;
3566
3567 if (ntohs(ih->frag_off) & IP_OFFSET)
3568 break;
3569
3570 offset += ihlen;
3571 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3572 if (uh == NULL)
3573 break;
3574
Eric Paris48c62af2012-04-02 13:15:44 -04003575 ad->u.net->sport = uh->source;
3576 ad->u.net->dport = uh->dest;
Eric Paris828dfe12008-04-17 13:17:49 -04003577 break;
3578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
James Morris2ee92d42006-11-13 16:09:01 -08003580 case IPPROTO_DCCP: {
3581 struct dccp_hdr _dccph, *dh;
3582
3583 if (ntohs(ih->frag_off) & IP_OFFSET)
3584 break;
3585
3586 offset += ihlen;
3587 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3588 if (dh == NULL)
3589 break;
3590
Eric Paris48c62af2012-04-02 13:15:44 -04003591 ad->u.net->sport = dh->dccph_sport;
3592 ad->u.net->dport = dh->dccph_dport;
James Morris2ee92d42006-11-13 16:09:01 -08003593 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003594 }
James Morris2ee92d42006-11-13 16:09:01 -08003595
Eric Paris828dfe12008-04-17 13:17:49 -04003596 default:
3597 break;
3598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599out:
3600 return ret;
3601}
3602
3603#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3604
3605/* Returns error only if unable to parse addresses */
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003606static int selinux_parse_skb_ipv6(struct sk_buff *skb,
Thomas Liu2bf49692009-07-14 12:14:09 -04003607 struct common_audit_data *ad, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608{
3609 u8 nexthdr;
3610 int ret = -EINVAL, offset;
3611 struct ipv6hdr _ipv6h, *ip6;
Jesse Gross75f28112011-11-30 17:05:51 -08003612 __be16 frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03003614 offset = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3616 if (ip6 == NULL)
3617 goto out;
3618
Eric Paris48c62af2012-04-02 13:15:44 -04003619 ad->u.net->v6info.saddr = ip6->saddr;
3620 ad->u.net->v6info.daddr = ip6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 ret = 0;
3622
3623 nexthdr = ip6->nexthdr;
3624 offset += sizeof(_ipv6h);
Jesse Gross75f28112011-11-30 17:05:51 -08003625 offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 if (offset < 0)
3627 goto out;
3628
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003629 if (proto)
3630 *proto = nexthdr;
3631
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 switch (nexthdr) {
3633 case IPPROTO_TCP: {
Eric Paris828dfe12008-04-17 13:17:49 -04003634 struct tcphdr _tcph, *th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
3636 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3637 if (th == NULL)
3638 break;
3639
Eric Paris48c62af2012-04-02 13:15:44 -04003640 ad->u.net->sport = th->source;
3641 ad->u.net->dport = th->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 break;
3643 }
3644
3645 case IPPROTO_UDP: {
3646 struct udphdr _udph, *uh;
3647
3648 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3649 if (uh == NULL)
3650 break;
3651
Eric Paris48c62af2012-04-02 13:15:44 -04003652 ad->u.net->sport = uh->source;
3653 ad->u.net->dport = uh->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 break;
3655 }
3656
James Morris2ee92d42006-11-13 16:09:01 -08003657 case IPPROTO_DCCP: {
3658 struct dccp_hdr _dccph, *dh;
3659
3660 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3661 if (dh == NULL)
3662 break;
3663
Eric Paris48c62af2012-04-02 13:15:44 -04003664 ad->u.net->sport = dh->dccph_sport;
3665 ad->u.net->dport = dh->dccph_dport;
James Morris2ee92d42006-11-13 16:09:01 -08003666 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003667 }
James Morris2ee92d42006-11-13 16:09:01 -08003668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 /* includes fragments */
3670 default:
3671 break;
3672 }
3673out:
3674 return ret;
3675}
3676
3677#endif /* IPV6 */
3678
Thomas Liu2bf49692009-07-14 12:14:09 -04003679static int selinux_parse_skb(struct sk_buff *skb, struct common_audit_data *ad,
David Howellscf9481e2008-07-27 21:31:07 +10003680 char **_addrp, int src, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681{
David Howellscf9481e2008-07-27 21:31:07 +10003682 char *addrp;
3683 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
Eric Paris48c62af2012-04-02 13:15:44 -04003685 switch (ad->u.net->family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 case PF_INET:
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003687 ret = selinux_parse_skb_ipv4(skb, ad, proto);
David Howellscf9481e2008-07-27 21:31:07 +10003688 if (ret)
3689 goto parse_error;
Eric Paris48c62af2012-04-02 13:15:44 -04003690 addrp = (char *)(src ? &ad->u.net->v4info.saddr :
3691 &ad->u.net->v4info.daddr);
David Howellscf9481e2008-07-27 21:31:07 +10003692 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693
3694#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3695 case PF_INET6:
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06003696 ret = selinux_parse_skb_ipv6(skb, ad, proto);
David Howellscf9481e2008-07-27 21:31:07 +10003697 if (ret)
3698 goto parse_error;
Eric Paris48c62af2012-04-02 13:15:44 -04003699 addrp = (char *)(src ? &ad->u.net->v6info.saddr :
3700 &ad->u.net->v6info.daddr);
David Howellscf9481e2008-07-27 21:31:07 +10003701 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702#endif /* IPV6 */
3703 default:
David Howellscf9481e2008-07-27 21:31:07 +10003704 addrp = NULL;
3705 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 }
3707
David Howellscf9481e2008-07-27 21:31:07 +10003708parse_error:
3709 printk(KERN_WARNING
3710 "SELinux: failure in selinux_parse_skb(),"
3711 " unable to parse packet\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 return ret;
David Howellscf9481e2008-07-27 21:31:07 +10003713
3714okay:
3715 if (_addrp)
3716 *_addrp = addrp;
3717 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718}
3719
Paul Moore4f6a9932007-03-01 14:35:22 -05003720/**
Paul Moore220deb92008-01-29 08:38:23 -05003721 * selinux_skb_peerlbl_sid - Determine the peer label of a packet
Paul Moore4f6a9932007-03-01 14:35:22 -05003722 * @skb: the packet
Paul Moore75e22912008-01-29 08:38:04 -05003723 * @family: protocol family
Paul Moore220deb92008-01-29 08:38:23 -05003724 * @sid: the packet's peer label SID
Paul Moore4f6a9932007-03-01 14:35:22 -05003725 *
3726 * Description:
Paul Moore220deb92008-01-29 08:38:23 -05003727 * Check the various different forms of network peer labeling and determine
3728 * the peer label/SID for the packet; most of the magic actually occurs in
3729 * the security server function security_net_peersid_cmp(). The function
3730 * returns zero if the value in @sid is valid (although it may be SECSID_NULL)
3731 * or -EACCES if @sid is invalid due to inconsistencies with the different
3732 * peer labels.
Paul Moore4f6a9932007-03-01 14:35:22 -05003733 *
3734 */
Paul Moore220deb92008-01-29 08:38:23 -05003735static int selinux_skb_peerlbl_sid(struct sk_buff *skb, u16 family, u32 *sid)
Paul Moore4f6a9932007-03-01 14:35:22 -05003736{
Paul Moore71f1cb02008-01-29 08:51:16 -05003737 int err;
Paul Moore4f6a9932007-03-01 14:35:22 -05003738 u32 xfrm_sid;
3739 u32 nlbl_sid;
Paul Moore220deb92008-01-29 08:38:23 -05003740 u32 nlbl_type;
Paul Moore4f6a9932007-03-01 14:35:22 -05003741
Paul Moore07035702013-12-10 14:57:54 -05003742 selinux_xfrm_skb_sid(skb, &xfrm_sid);
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003743 selinux_netlbl_skbuff_getsid(skb, family, &nlbl_type, &nlbl_sid);
Paul Moore220deb92008-01-29 08:38:23 -05003744
Paul Moore71f1cb02008-01-29 08:51:16 -05003745 err = security_net_peersid_resolve(nlbl_sid, nlbl_type, xfrm_sid, sid);
3746 if (unlikely(err)) {
3747 printk(KERN_WARNING
3748 "SELinux: failure in selinux_skb_peerlbl_sid(),"
3749 " unable to determine packet's peer label\n");
Paul Moore220deb92008-01-29 08:38:23 -05003750 return -EACCES;
Paul Moore71f1cb02008-01-29 08:51:16 -05003751 }
Paul Moore220deb92008-01-29 08:38:23 -05003752
3753 return 0;
Paul Moore4f6a9932007-03-01 14:35:22 -05003754}
3755
Paul Moore348d7862013-12-04 16:10:51 -05003756/**
3757 * selinux_conn_sid - Determine the child socket label for a connection
3758 * @sk_sid: the parent socket's SID
3759 * @skb_sid: the packet's SID
3760 * @conn_sid: the resulting connection SID
3761 *
3762 * If @skb_sid is valid then the user:role:type information from @sk_sid is
3763 * combined with the MLS information from @skb_sid in order to create
3764 * @conn_sid. If @skb_sid is not valid then then @conn_sid is simply a copy
3765 * of @sk_sid. Returns zero on success, negative values on failure.
3766 *
3767 */
3768static int selinux_conn_sid(u32 sk_sid, u32 skb_sid, u32 *conn_sid)
3769{
3770 int err = 0;
3771
3772 if (skb_sid != SECSID_NULL)
3773 err = security_sid_mls_copy(sk_sid, skb_sid, conn_sid);
3774 else
3775 *conn_sid = sk_sid;
3776
3777 return err;
3778}
3779
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780/* socket security operations */
Paul Moored4f2d972010-04-22 14:46:18 -04003781
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003782static int socket_sockcreate_sid(const struct task_security_struct *tsec,
3783 u16 secclass, u32 *socksid)
Paul Moored4f2d972010-04-22 14:46:18 -04003784{
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003785 if (tsec->sockcreate_sid > SECSID_NULL) {
3786 *socksid = tsec->sockcreate_sid;
3787 return 0;
3788 }
3789
3790 return security_transition_sid(tsec->sid, tsec->sid, secclass, NULL,
3791 socksid);
Paul Moored4f2d972010-04-22 14:46:18 -04003792}
3793
Paul Moore253bfae2010-04-22 14:46:19 -04003794static int sock_has_perm(struct task_struct *task, struct sock *sk, u32 perms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795{
Paul Moore253bfae2010-04-22 14:46:19 -04003796 struct sk_security_struct *sksec = sk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04003797 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04003798 struct lsm_network_audit net = {0,};
Paul Moore253bfae2010-04-22 14:46:19 -04003799 u32 tsid = task_sid(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Paul Moore253bfae2010-04-22 14:46:19 -04003801 if (sksec->sid == SECINITSID_KERNEL)
3802 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
Eric Paris50c205f2012-04-04 15:01:43 -04003804 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04003805 ad.u.net = &net;
3806 ad.u.net->sk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Paul Moore253bfae2010-04-22 14:46:19 -04003808 return avc_has_perm(tsid, sksec->sid, sksec->sclass, perms, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809}
3810
3811static int selinux_socket_create(int family, int type,
3812 int protocol, int kern)
3813{
Paul Moore5fb49872010-04-22 14:46:19 -04003814 const struct task_security_struct *tsec = current_security();
Paul Moored4f2d972010-04-22 14:46:18 -04003815 u32 newsid;
David Howells275bb412008-11-14 10:39:19 +11003816 u16 secclass;
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003817 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
3819 if (kern)
Paul Moored4f2d972010-04-22 14:46:18 -04003820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
David Howells275bb412008-11-14 10:39:19 +11003822 secclass = socket_type_to_security_class(family, type, protocol);
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003823 rc = socket_sockcreate_sid(tsec, secclass, &newsid);
3824 if (rc)
3825 return rc;
3826
Paul Moored4f2d972010-04-22 14:46:18 -04003827 return avc_has_perm(tsec->sid, newsid, secclass, SOCKET__CREATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828}
3829
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003830static int selinux_socket_post_create(struct socket *sock, int family,
3831 int type, int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832{
Paul Moore5fb49872010-04-22 14:46:19 -04003833 const struct task_security_struct *tsec = current_security();
Paul Moored4f2d972010-04-22 14:46:18 -04003834 struct inode_security_struct *isec = SOCK_INODE(sock)->i_security;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07003835 struct sk_security_struct *sksec;
David Howells275bb412008-11-14 10:39:19 +11003836 int err = 0;
3837
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003838 isec->sclass = socket_type_to_security_class(family, type, protocol);
3839
David Howells275bb412008-11-14 10:39:19 +11003840 if (kern)
3841 isec->sid = SECINITSID_KERNEL;
Harry Ciao2ad18bd2011-03-02 13:32:34 +08003842 else {
3843 err = socket_sockcreate_sid(tsec, isec->sclass, &(isec->sid));
3844 if (err)
3845 return err;
3846 }
David Howells275bb412008-11-14 10:39:19 +11003847
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 isec->initialized = 1;
3849
Venkat Yekkirala892c1412006-08-04 23:08:56 -07003850 if (sock->sk) {
3851 sksec = sock->sk->sk_security;
3852 sksec->sid = isec->sid;
Paul Moore220deb92008-01-29 08:38:23 -05003853 sksec->sclass = isec->sclass;
Paul Moore389fb8002009-03-27 17:10:34 -04003854 err = selinux_netlbl_socket_post_create(sock->sk, family);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07003855 }
3856
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003857 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858}
3859
3860/* Range of port numbers used to automatically bind.
3861 Need to determine whether we should perform a name_bind
3862 permission check between the socket and the port number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
3864static int selinux_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen)
3865{
Paul Moore253bfae2010-04-22 14:46:19 -04003866 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 u16 family;
3868 int err;
3869
Paul Moore253bfae2010-04-22 14:46:19 -04003870 err = sock_has_perm(current, sk, SOCKET__BIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 if (err)
3872 goto out;
3873
3874 /*
3875 * If PF_INET or PF_INET6, check name_bind permission for the port.
James Morris13402582005-09-30 14:24:34 -04003876 * Multiple address binding for SCTP is not supported yet: we just
3877 * check the first address now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 */
Paul Moore253bfae2010-04-22 14:46:19 -04003879 family = sk->sk_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 if (family == PF_INET || family == PF_INET6) {
3881 char *addrp;
Paul Moore253bfae2010-04-22 14:46:19 -04003882 struct sk_security_struct *sksec = sk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04003883 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04003884 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 struct sockaddr_in *addr4 = NULL;
3886 struct sockaddr_in6 *addr6 = NULL;
3887 unsigned short snum;
James Morrise399f982008-06-12 01:39:58 +10003888 u32 sid, node_perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 if (family == PF_INET) {
3891 addr4 = (struct sockaddr_in *)address;
3892 snum = ntohs(addr4->sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 addrp = (char *)&addr4->sin_addr.s_addr;
3894 } else {
3895 addr6 = (struct sockaddr_in6 *)address;
3896 snum = ntohs(addr6->sin6_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 addrp = (char *)&addr6->sin6_addr.s6_addr;
3898 }
3899
Stephen Hemminger227b60f2007-10-10 17:30:46 -07003900 if (snum) {
3901 int low, high;
3902
3903 inet_get_local_port_range(&low, &high);
3904
3905 if (snum < max(PROT_SOCK, low) || snum > high) {
Paul Moore3e112172008-04-10 10:48:14 -04003906 err = sel_netport_sid(sk->sk_protocol,
3907 snum, &sid);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07003908 if (err)
3909 goto out;
Eric Paris50c205f2012-04-04 15:01:43 -04003910 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04003911 ad.u.net = &net;
3912 ad.u.net->sport = htons(snum);
3913 ad.u.net->family = family;
Paul Moore253bfae2010-04-22 14:46:19 -04003914 err = avc_has_perm(sksec->sid, sid,
3915 sksec->sclass,
Stephen Hemminger227b60f2007-10-10 17:30:46 -07003916 SOCKET__NAME_BIND, &ad);
3917 if (err)
3918 goto out;
3919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 }
Eric Paris828dfe12008-04-17 13:17:49 -04003921
Paul Moore253bfae2010-04-22 14:46:19 -04003922 switch (sksec->sclass) {
James Morris13402582005-09-30 14:24:34 -04003923 case SECCLASS_TCP_SOCKET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 node_perm = TCP_SOCKET__NODE_BIND;
3925 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003926
James Morris13402582005-09-30 14:24:34 -04003927 case SECCLASS_UDP_SOCKET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 node_perm = UDP_SOCKET__NODE_BIND;
3929 break;
James Morris2ee92d42006-11-13 16:09:01 -08003930
3931 case SECCLASS_DCCP_SOCKET:
3932 node_perm = DCCP_SOCKET__NODE_BIND;
3933 break;
3934
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 default:
3936 node_perm = RAWIP_SOCKET__NODE_BIND;
3937 break;
3938 }
Eric Paris828dfe12008-04-17 13:17:49 -04003939
Paul Moore224dfbd2008-01-29 08:38:13 -05003940 err = sel_netnode_sid(addrp, family, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 if (err)
3942 goto out;
Eric Paris828dfe12008-04-17 13:17:49 -04003943
Eric Paris50c205f2012-04-04 15:01:43 -04003944 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04003945 ad.u.net = &net;
3946 ad.u.net->sport = htons(snum);
3947 ad.u.net->family = family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
3949 if (family == PF_INET)
Eric Paris48c62af2012-04-02 13:15:44 -04003950 ad.u.net->v4info.saddr = addr4->sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 else
Eric Paris48c62af2012-04-02 13:15:44 -04003952 ad.u.net->v6info.saddr = addr6->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Paul Moore253bfae2010-04-22 14:46:19 -04003954 err = avc_has_perm(sksec->sid, sid,
3955 sksec->sclass, node_perm, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 if (err)
3957 goto out;
3958 }
3959out:
3960 return err;
3961}
3962
3963static int selinux_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen)
3964{
Paul Moore014ab192008-10-10 10:16:33 -04003965 struct sock *sk = sock->sk;
Paul Moore253bfae2010-04-22 14:46:19 -04003966 struct sk_security_struct *sksec = sk->sk_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 int err;
3968
Paul Moore253bfae2010-04-22 14:46:19 -04003969 err = sock_has_perm(current, sk, SOCKET__CONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 if (err)
3971 return err;
3972
3973 /*
James Morris2ee92d42006-11-13 16:09:01 -08003974 * If a TCP or DCCP socket, check name_connect permission for the port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 */
Paul Moore253bfae2010-04-22 14:46:19 -04003976 if (sksec->sclass == SECCLASS_TCP_SOCKET ||
3977 sksec->sclass == SECCLASS_DCCP_SOCKET) {
Thomas Liu2bf49692009-07-14 12:14:09 -04003978 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04003979 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 struct sockaddr_in *addr4 = NULL;
3981 struct sockaddr_in6 *addr6 = NULL;
3982 unsigned short snum;
James Morris2ee92d42006-11-13 16:09:01 -08003983 u32 sid, perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
3985 if (sk->sk_family == PF_INET) {
3986 addr4 = (struct sockaddr_in *)address;
Stephen Smalley911656f2005-07-28 21:16:21 -07003987 if (addrlen < sizeof(struct sockaddr_in))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 return -EINVAL;
3989 snum = ntohs(addr4->sin_port);
3990 } else {
3991 addr6 = (struct sockaddr_in6 *)address;
Stephen Smalley911656f2005-07-28 21:16:21 -07003992 if (addrlen < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 return -EINVAL;
3994 snum = ntohs(addr6->sin6_port);
3995 }
3996
Paul Moore3e112172008-04-10 10:48:14 -04003997 err = sel_netport_sid(sk->sk_protocol, snum, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 if (err)
3999 goto out;
4000
Paul Moore253bfae2010-04-22 14:46:19 -04004001 perm = (sksec->sclass == SECCLASS_TCP_SOCKET) ?
James Morris2ee92d42006-11-13 16:09:01 -08004002 TCP_SOCKET__NAME_CONNECT : DCCP_SOCKET__NAME_CONNECT;
4003
Eric Paris50c205f2012-04-04 15:01:43 -04004004 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004005 ad.u.net = &net;
4006 ad.u.net->dport = htons(snum);
4007 ad.u.net->family = sk->sk_family;
Paul Moore253bfae2010-04-22 14:46:19 -04004008 err = avc_has_perm(sksec->sid, sid, sksec->sclass, perm, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 if (err)
4010 goto out;
4011 }
4012
Paul Moore014ab192008-10-10 10:16:33 -04004013 err = selinux_netlbl_socket_connect(sk, address);
4014
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015out:
4016 return err;
4017}
4018
4019static int selinux_socket_listen(struct socket *sock, int backlog)
4020{
Paul Moore253bfae2010-04-22 14:46:19 -04004021 return sock_has_perm(current, sock->sk, SOCKET__LISTEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022}
4023
4024static int selinux_socket_accept(struct socket *sock, struct socket *newsock)
4025{
4026 int err;
4027 struct inode_security_struct *isec;
4028 struct inode_security_struct *newisec;
4029
Paul Moore253bfae2010-04-22 14:46:19 -04004030 err = sock_has_perm(current, sock->sk, SOCKET__ACCEPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 if (err)
4032 return err;
4033
4034 newisec = SOCK_INODE(newsock)->i_security;
4035
4036 isec = SOCK_INODE(sock)->i_security;
4037 newisec->sclass = isec->sclass;
4038 newisec->sid = isec->sid;
4039 newisec->initialized = 1;
4040
4041 return 0;
4042}
4043
4044static int selinux_socket_sendmsg(struct socket *sock, struct msghdr *msg,
Eric Paris828dfe12008-04-17 13:17:49 -04004045 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046{
Paul Moore253bfae2010-04-22 14:46:19 -04004047 return sock_has_perm(current, sock->sk, SOCKET__WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048}
4049
4050static int selinux_socket_recvmsg(struct socket *sock, struct msghdr *msg,
4051 int size, int flags)
4052{
Paul Moore253bfae2010-04-22 14:46:19 -04004053 return sock_has_perm(current, sock->sk, SOCKET__READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054}
4055
4056static int selinux_socket_getsockname(struct socket *sock)
4057{
Paul Moore253bfae2010-04-22 14:46:19 -04004058 return sock_has_perm(current, sock->sk, SOCKET__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059}
4060
4061static int selinux_socket_getpeername(struct socket *sock)
4062{
Paul Moore253bfae2010-04-22 14:46:19 -04004063 return sock_has_perm(current, sock->sk, SOCKET__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064}
4065
Eric Paris828dfe12008-04-17 13:17:49 -04004066static int selinux_socket_setsockopt(struct socket *sock, int level, int optname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067{
Paul Mooref8687af2006-10-30 15:22:15 -08004068 int err;
4069
Paul Moore253bfae2010-04-22 14:46:19 -04004070 err = sock_has_perm(current, sock->sk, SOCKET__SETOPT);
Paul Mooref8687af2006-10-30 15:22:15 -08004071 if (err)
4072 return err;
4073
4074 return selinux_netlbl_socket_setsockopt(sock, level, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075}
4076
4077static int selinux_socket_getsockopt(struct socket *sock, int level,
4078 int optname)
4079{
Paul Moore253bfae2010-04-22 14:46:19 -04004080 return sock_has_perm(current, sock->sk, SOCKET__GETOPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081}
4082
4083static int selinux_socket_shutdown(struct socket *sock, int how)
4084{
Paul Moore253bfae2010-04-22 14:46:19 -04004085 return sock_has_perm(current, sock->sk, SOCKET__SHUTDOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086}
4087
David S. Miller3610cda2011-01-05 15:38:53 -08004088static int selinux_socket_unix_stream_connect(struct sock *sock,
4089 struct sock *other,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 struct sock *newsk)
4091{
David S. Miller3610cda2011-01-05 15:38:53 -08004092 struct sk_security_struct *sksec_sock = sock->sk_security;
4093 struct sk_security_struct *sksec_other = other->sk_security;
Paul Moore4d1e2452010-04-22 14:46:18 -04004094 struct sk_security_struct *sksec_new = newsk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04004095 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004096 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 int err;
4098
Eric Paris50c205f2012-04-04 15:01:43 -04004099 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004100 ad.u.net = &net;
4101 ad.u.net->sk = other;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Paul Moore4d1e2452010-04-22 14:46:18 -04004103 err = avc_has_perm(sksec_sock->sid, sksec_other->sid,
4104 sksec_other->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 UNIX_STREAM_SOCKET__CONNECTTO, &ad);
4106 if (err)
4107 return err;
4108
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 /* server child socket */
Paul Moore4d1e2452010-04-22 14:46:18 -04004110 sksec_new->peer_sid = sksec_sock->sid;
4111 err = security_sid_mls_copy(sksec_other->sid, sksec_sock->sid,
4112 &sksec_new->sid);
4113 if (err)
4114 return err;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004115
Paul Moore4d1e2452010-04-22 14:46:18 -04004116 /* connecting socket */
4117 sksec_sock->peer_sid = sksec_new->sid;
4118
4119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120}
4121
4122static int selinux_socket_unix_may_send(struct socket *sock,
4123 struct socket *other)
4124{
Paul Moore253bfae2010-04-22 14:46:19 -04004125 struct sk_security_struct *ssec = sock->sk->sk_security;
4126 struct sk_security_struct *osec = other->sk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04004127 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004128 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Eric Paris50c205f2012-04-04 15:01:43 -04004130 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004131 ad.u.net = &net;
4132 ad.u.net->sk = other->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
Paul Moore253bfae2010-04-22 14:46:19 -04004134 return avc_has_perm(ssec->sid, osec->sid, osec->sclass, SOCKET__SENDTO,
4135 &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136}
4137
Paul Mooreeffad8d2008-01-29 08:49:27 -05004138static int selinux_inet_sys_rcv_skb(int ifindex, char *addrp, u16 family,
4139 u32 peer_sid,
Thomas Liu2bf49692009-07-14 12:14:09 -04004140 struct common_audit_data *ad)
Paul Mooreeffad8d2008-01-29 08:49:27 -05004141{
4142 int err;
4143 u32 if_sid;
4144 u32 node_sid;
4145
4146 err = sel_netif_sid(ifindex, &if_sid);
4147 if (err)
4148 return err;
4149 err = avc_has_perm(peer_sid, if_sid,
4150 SECCLASS_NETIF, NETIF__INGRESS, ad);
4151 if (err)
4152 return err;
4153
4154 err = sel_netnode_sid(addrp, family, &node_sid);
4155 if (err)
4156 return err;
4157 return avc_has_perm(peer_sid, node_sid,
4158 SECCLASS_NODE, NODE__RECVFROM, ad);
4159}
4160
Paul Moore220deb92008-01-29 08:38:23 -05004161static int selinux_sock_rcv_skb_compat(struct sock *sk, struct sk_buff *skb,
Paul Moored8395c82008-10-10 10:16:30 -04004162 u16 family)
Paul Moore220deb92008-01-29 08:38:23 -05004163{
Paul Moore277d3422008-12-31 12:54:11 -05004164 int err = 0;
Paul Moore220deb92008-01-29 08:38:23 -05004165 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore220deb92008-01-29 08:38:23 -05004166 u32 sk_sid = sksec->sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04004167 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004168 struct lsm_network_audit net = {0,};
Paul Moored8395c82008-10-10 10:16:30 -04004169 char *addrp;
4170
Eric Paris50c205f2012-04-04 15:01:43 -04004171 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004172 ad.u.net = &net;
4173 ad.u.net->netif = skb->skb_iif;
4174 ad.u.net->family = family;
Paul Moored8395c82008-10-10 10:16:30 -04004175 err = selinux_parse_skb(skb, &ad, &addrp, 1, NULL);
4176 if (err)
4177 return err;
Paul Moore220deb92008-01-29 08:38:23 -05004178
Paul Moore58bfbb52009-03-27 17:10:41 -04004179 if (selinux_secmark_enabled()) {
Paul Moore220deb92008-01-29 08:38:23 -05004180 err = avc_has_perm(sk_sid, skb->secmark, SECCLASS_PACKET,
Paul Moored8395c82008-10-10 10:16:30 -04004181 PACKET__RECV, &ad);
Paul Moore58bfbb52009-03-27 17:10:41 -04004182 if (err)
4183 return err;
4184 }
Paul Moore220deb92008-01-29 08:38:23 -05004185
Steffen Klassertb9679a72011-02-23 12:55:21 +01004186 err = selinux_netlbl_sock_rcv_skb(sksec, skb, family, &ad);
4187 if (err)
4188 return err;
4189 err = selinux_xfrm_sock_rcv_skb(sksec->sid, skb, &ad);
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004190
James Morris4e5ab4c2006-06-09 00:33:33 -07004191 return err;
4192}
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004193
James Morris4e5ab4c2006-06-09 00:33:33 -07004194static int selinux_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
4195{
Paul Moore220deb92008-01-29 08:38:23 -05004196 int err;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004197 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore220deb92008-01-29 08:38:23 -05004198 u16 family = sk->sk_family;
4199 u32 sk_sid = sksec->sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04004200 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004201 struct lsm_network_audit net = {0,};
Paul Moore220deb92008-01-29 08:38:23 -05004202 char *addrp;
Paul Moored8395c82008-10-10 10:16:30 -04004203 u8 secmark_active;
4204 u8 peerlbl_active;
James Morris4e5ab4c2006-06-09 00:33:33 -07004205
James Morris4e5ab4c2006-06-09 00:33:33 -07004206 if (family != PF_INET && family != PF_INET6)
Paul Moore220deb92008-01-29 08:38:23 -05004207 return 0;
James Morris4e5ab4c2006-06-09 00:33:33 -07004208
4209 /* Handle mapped IPv4 packets arriving via IPv6 sockets */
Al Viro87fcd702006-12-04 22:00:55 +00004210 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
James Morris4e5ab4c2006-06-09 00:33:33 -07004211 family = PF_INET;
4212
Paul Moored8395c82008-10-10 10:16:30 -04004213 /* If any sort of compatibility mode is enabled then handoff processing
4214 * to the selinux_sock_rcv_skb_compat() function to deal with the
4215 * special handling. We do this in an attempt to keep this function
4216 * as fast and as clean as possible. */
Paul Moore58bfbb52009-03-27 17:10:41 -04004217 if (!selinux_policycap_netpeer)
Paul Moored8395c82008-10-10 10:16:30 -04004218 return selinux_sock_rcv_skb_compat(sk, skb, family);
4219
4220 secmark_active = selinux_secmark_enabled();
4221 peerlbl_active = netlbl_enabled() || selinux_xfrm_enabled();
4222 if (!secmark_active && !peerlbl_active)
4223 return 0;
4224
Eric Paris50c205f2012-04-04 15:01:43 -04004225 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004226 ad.u.net = &net;
4227 ad.u.net->netif = skb->skb_iif;
4228 ad.u.net->family = family;
Paul Moore224dfbd2008-01-29 08:38:13 -05004229 err = selinux_parse_skb(skb, &ad, &addrp, 1, NULL);
James Morris4e5ab4c2006-06-09 00:33:33 -07004230 if (err)
Paul Moore220deb92008-01-29 08:38:23 -05004231 return err;
James Morris4e5ab4c2006-06-09 00:33:33 -07004232
Paul Moored8395c82008-10-10 10:16:30 -04004233 if (peerlbl_active) {
Paul Moored621d352008-01-29 08:43:36 -05004234 u32 peer_sid;
4235
4236 err = selinux_skb_peerlbl_sid(skb, family, &peer_sid);
4237 if (err)
4238 return err;
Eric Dumazet8964be42009-11-20 15:35:04 -08004239 err = selinux_inet_sys_rcv_skb(skb->skb_iif, addrp, family,
Paul Mooreeffad8d2008-01-29 08:49:27 -05004240 peer_sid, &ad);
Paul Mooredfaebe92008-10-10 10:16:31 -04004241 if (err) {
4242 selinux_netlbl_err(skb, err, 0);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004243 return err;
Paul Mooredfaebe92008-10-10 10:16:31 -04004244 }
Paul Moored621d352008-01-29 08:43:36 -05004245 err = avc_has_perm(sk_sid, peer_sid, SECCLASS_PEER,
4246 PEER__RECV, &ad);
Chad Hansonfaecbbe2013-12-23 17:45:01 -05004247 if (err) {
Paul Mooredfaebe92008-10-10 10:16:31 -04004248 selinux_netlbl_err(skb, err, 0);
Chad Hansonfaecbbe2013-12-23 17:45:01 -05004249 return err;
4250 }
Paul Moored621d352008-01-29 08:43:36 -05004251 }
4252
Paul Moored8395c82008-10-10 10:16:30 -04004253 if (secmark_active) {
Paul Mooreeffad8d2008-01-29 08:49:27 -05004254 err = avc_has_perm(sk_sid, skb->secmark, SECCLASS_PACKET,
4255 PACKET__RECV, &ad);
4256 if (err)
4257 return err;
4258 }
4259
Paul Moored621d352008-01-29 08:43:36 -05004260 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261}
4262
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004263static int selinux_socket_getpeersec_stream(struct socket *sock, char __user *optval,
4264 int __user *optlen, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265{
4266 int err = 0;
4267 char *scontext;
4268 u32 scontext_len;
Paul Moore253bfae2010-04-22 14:46:19 -04004269 struct sk_security_struct *sksec = sock->sk->sk_security;
Paul Moore3de4bab2006-11-17 17:38:54 -05004270 u32 peer_sid = SECSID_NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Paul Moore253bfae2010-04-22 14:46:19 -04004272 if (sksec->sclass == SECCLASS_UNIX_STREAM_SOCKET ||
4273 sksec->sclass == SECCLASS_TCP_SOCKET)
Eric Parisdd3e7832010-04-07 15:08:46 -04004274 peer_sid = sksec->peer_sid;
Paul Moore253bfae2010-04-22 14:46:19 -04004275 if (peer_sid == SECSID_NULL)
4276 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004278 err = security_sid_to_context(peer_sid, &scontext, &scontext_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 if (err)
Paul Moore253bfae2010-04-22 14:46:19 -04004280 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
4282 if (scontext_len > len) {
4283 err = -ERANGE;
4284 goto out_len;
4285 }
4286
4287 if (copy_to_user(optval, scontext, scontext_len))
4288 err = -EFAULT;
4289
4290out_len:
4291 if (put_user(scontext_len, optlen))
4292 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 kfree(scontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 return err;
4295}
4296
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07004297static int selinux_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004298{
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07004299 u32 peer_secid = SECSID_NULL;
Paul Moore75e22912008-01-29 08:38:04 -05004300 u16 family;
Catherine Zhang877ce7c2006-06-29 12:27:47 -07004301
Paul Mooreaa862902008-10-10 10:16:29 -04004302 if (skb && skb->protocol == htons(ETH_P_IP))
4303 family = PF_INET;
4304 else if (skb && skb->protocol == htons(ETH_P_IPV6))
4305 family = PF_INET6;
4306 else if (sock)
Paul Moore75e22912008-01-29 08:38:04 -05004307 family = sock->sk->sk_family;
Paul Moore75e22912008-01-29 08:38:04 -05004308 else
4309 goto out;
4310
4311 if (sock && family == PF_UNIX)
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02004312 selinux_inode_getsecid(SOCK_INODE(sock), &peer_secid);
Paul Moore3de4bab2006-11-17 17:38:54 -05004313 else if (skb)
Paul Moore220deb92008-01-29 08:38:23 -05004314 selinux_skb_peerlbl_sid(skb, family, &peer_secid);
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004315
Paul Moore75e22912008-01-29 08:38:04 -05004316out:
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07004317 *secid = peer_secid;
Paul Moore75e22912008-01-29 08:38:04 -05004318 if (peer_secid == SECSID_NULL)
4319 return -EINVAL;
4320 return 0;
Catherine Zhang2c7946a2006-03-20 22:41:23 -08004321}
4322
Al Viro7d877f32005-10-21 03:20:43 -04004323static int selinux_sk_alloc_security(struct sock *sk, int family, gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324{
Paul Moore84914b72010-04-22 14:46:18 -04004325 struct sk_security_struct *sksec;
4326
4327 sksec = kzalloc(sizeof(*sksec), priority);
4328 if (!sksec)
4329 return -ENOMEM;
4330
4331 sksec->peer_sid = SECINITSID_UNLABELED;
4332 sksec->sid = SECINITSID_UNLABELED;
4333 selinux_netlbl_sk_security_reset(sksec);
4334 sk->sk_security = sksec;
4335
4336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337}
4338
4339static void selinux_sk_free_security(struct sock *sk)
4340{
Paul Moore84914b72010-04-22 14:46:18 -04004341 struct sk_security_struct *sksec = sk->sk_security;
4342
4343 sk->sk_security = NULL;
4344 selinux_netlbl_sk_security_free(sksec);
4345 kfree(sksec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346}
4347
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004348static void selinux_sk_clone_security(const struct sock *sk, struct sock *newsk)
4349{
Eric Parisdd3e7832010-04-07 15:08:46 -04004350 struct sk_security_struct *sksec = sk->sk_security;
4351 struct sk_security_struct *newsksec = newsk->sk_security;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004352
Eric Parisdd3e7832010-04-07 15:08:46 -04004353 newsksec->sid = sksec->sid;
4354 newsksec->peer_sid = sksec->peer_sid;
4355 newsksec->sclass = sksec->sclass;
Paul Moore99f59ed2006-08-29 17:53:48 -07004356
Eric Parisdd3e7832010-04-07 15:08:46 -04004357 selinux_netlbl_sk_security_reset(newsksec);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004358}
4359
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07004360static void selinux_sk_getsecid(struct sock *sk, u32 *secid)
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004361{
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004362 if (!sk)
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07004363 *secid = SECINITSID_ANY_SOCKET;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004364 else {
4365 struct sk_security_struct *sksec = sk->sk_security;
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004366
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07004367 *secid = sksec->sid;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004368 }
Trent Jaegerd28d1e02005-12-13 23:12:40 -08004369}
4370
Eric Paris828dfe12008-04-17 13:17:49 -04004371static void selinux_sock_graft(struct sock *sk, struct socket *parent)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004372{
4373 struct inode_security_struct *isec = SOCK_INODE(parent)->i_security;
4374 struct sk_security_struct *sksec = sk->sk_security;
4375
David Woodhouse2148ccc2006-09-29 15:50:25 -07004376 if (sk->sk_family == PF_INET || sk->sk_family == PF_INET6 ||
4377 sk->sk_family == PF_UNIX)
4378 isec->sid = sksec->sid;
Paul Moore220deb92008-01-29 08:38:23 -05004379 sksec->sclass = isec->sclass;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004380}
4381
Adrian Bunk9a673e52006-08-15 00:03:53 -07004382static int selinux_inet_conn_request(struct sock *sk, struct sk_buff *skb,
4383 struct request_sock *req)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004384{
4385 struct sk_security_struct *sksec = sk->sk_security;
4386 int err;
Paul Mooreaa862902008-10-10 10:16:29 -04004387 u16 family = sk->sk_family;
Paul Moore348d7862013-12-04 16:10:51 -05004388 u32 connsid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004389 u32 peersid;
4390
Paul Mooreaa862902008-10-10 10:16:29 -04004391 /* handle mapped IPv4 packets arriving via IPv6 sockets */
4392 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
4393 family = PF_INET;
4394
4395 err = selinux_skb_peerlbl_sid(skb, family, &peersid);
Paul Moore220deb92008-01-29 08:38:23 -05004396 if (err)
4397 return err;
Paul Moore348d7862013-12-04 16:10:51 -05004398 err = selinux_conn_sid(sksec->sid, peersid, &connsid);
4399 if (err)
4400 return err;
4401 req->secid = connsid;
4402 req->peer_secid = peersid;
Venkat Yekkiralaa51c64f2006-07-27 22:01:34 -07004403
Paul Moore389fb8002009-03-27 17:10:34 -04004404 return selinux_netlbl_inet_conn_request(req, family);
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004405}
4406
Adrian Bunk9a673e52006-08-15 00:03:53 -07004407static void selinux_inet_csk_clone(struct sock *newsk,
4408 const struct request_sock *req)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004409{
4410 struct sk_security_struct *newsksec = newsk->sk_security;
4411
4412 newsksec->sid = req->secid;
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004413 newsksec->peer_sid = req->peer_secid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004414 /* NOTE: Ideally, we should also get the isec->sid for the
4415 new socket in sync, but we don't have the isec available yet.
4416 So we will wait until sock_graft to do it, by which
4417 time it will have been created and available. */
Paul Moore99f59ed2006-08-29 17:53:48 -07004418
Paul Moore9f2ad662006-11-17 17:38:53 -05004419 /* We don't need to take any sort of lock here as we are the only
4420 * thread with access to newsksec */
Paul Moore389fb8002009-03-27 17:10:34 -04004421 selinux_netlbl_inet_csk_clone(newsk, req->rsk_ops->family);
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004422}
4423
Paul Moore014ab192008-10-10 10:16:33 -04004424static void selinux_inet_conn_established(struct sock *sk, struct sk_buff *skb)
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004425{
Paul Mooreaa862902008-10-10 10:16:29 -04004426 u16 family = sk->sk_family;
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004427 struct sk_security_struct *sksec = sk->sk_security;
4428
Paul Mooreaa862902008-10-10 10:16:29 -04004429 /* handle mapped IPv4 packets arriving via IPv6 sockets */
4430 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
4431 family = PF_INET;
4432
4433 selinux_skb_peerlbl_sid(skb, family, &sksec->peer_sid);
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004434}
4435
Eric Dumazetca10b9e2013-04-08 17:58:11 +00004436static void selinux_skb_owned_by(struct sk_buff *skb, struct sock *sk)
4437{
4438 skb_set_owner_w(skb, sk);
4439}
4440
Eric Paris2606fd12010-10-13 16:24:41 -04004441static int selinux_secmark_relabel_packet(u32 sid)
4442{
4443 const struct task_security_struct *__tsec;
4444 u32 tsid;
4445
4446 __tsec = current_security();
4447 tsid = __tsec->sid;
4448
4449 return avc_has_perm(tsid, sid, SECCLASS_PACKET, PACKET__RELABELTO, NULL);
4450}
4451
4452static void selinux_secmark_refcount_inc(void)
4453{
4454 atomic_inc(&selinux_secmark_refcount);
4455}
4456
4457static void selinux_secmark_refcount_dec(void)
4458{
4459 atomic_dec(&selinux_secmark_refcount);
4460}
4461
Adrian Bunk9a673e52006-08-15 00:03:53 -07004462static void selinux_req_classify_flow(const struct request_sock *req,
4463 struct flowi *fl)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004464{
David S. Miller1d28f422011-03-12 00:29:39 -05004465 fl->flowi_secid = req->secid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004466}
4467
Paul Moore5dbbaf22013-01-14 07:12:19 +00004468static int selinux_tun_dev_alloc_security(void **security)
4469{
4470 struct tun_security_struct *tunsec;
4471
4472 tunsec = kzalloc(sizeof(*tunsec), GFP_KERNEL);
4473 if (!tunsec)
4474 return -ENOMEM;
4475 tunsec->sid = current_sid();
4476
4477 *security = tunsec;
4478 return 0;
4479}
4480
4481static void selinux_tun_dev_free_security(void *security)
4482{
4483 kfree(security);
4484}
4485
Paul Mooreed6d76e2009-08-28 18:12:49 -04004486static int selinux_tun_dev_create(void)
4487{
4488 u32 sid = current_sid();
4489
4490 /* we aren't taking into account the "sockcreate" SID since the socket
4491 * that is being created here is not a socket in the traditional sense,
4492 * instead it is a private sock, accessible only to the kernel, and
4493 * representing a wide range of network traffic spanning multiple
4494 * connections unlike traditional sockets - check the TUN driver to
4495 * get a better understanding of why this socket is special */
4496
4497 return avc_has_perm(sid, sid, SECCLASS_TUN_SOCKET, TUN_SOCKET__CREATE,
4498 NULL);
4499}
4500
Paul Moore5dbbaf22013-01-14 07:12:19 +00004501static int selinux_tun_dev_attach_queue(void *security)
Paul Mooreed6d76e2009-08-28 18:12:49 -04004502{
Paul Moore5dbbaf22013-01-14 07:12:19 +00004503 struct tun_security_struct *tunsec = security;
4504
4505 return avc_has_perm(current_sid(), tunsec->sid, SECCLASS_TUN_SOCKET,
4506 TUN_SOCKET__ATTACH_QUEUE, NULL);
4507}
4508
4509static int selinux_tun_dev_attach(struct sock *sk, void *security)
4510{
4511 struct tun_security_struct *tunsec = security;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004512 struct sk_security_struct *sksec = sk->sk_security;
4513
4514 /* we don't currently perform any NetLabel based labeling here and it
4515 * isn't clear that we would want to do so anyway; while we could apply
4516 * labeling without the support of the TUN user the resulting labeled
4517 * traffic from the other end of the connection would almost certainly
4518 * cause confusion to the TUN user that had no idea network labeling
4519 * protocols were being used */
4520
Paul Moore5dbbaf22013-01-14 07:12:19 +00004521 sksec->sid = tunsec->sid;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004522 sksec->sclass = SECCLASS_TUN_SOCKET;
Paul Moore5dbbaf22013-01-14 07:12:19 +00004523
4524 return 0;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004525}
4526
Paul Moore5dbbaf22013-01-14 07:12:19 +00004527static int selinux_tun_dev_open(void *security)
Paul Mooreed6d76e2009-08-28 18:12:49 -04004528{
Paul Moore5dbbaf22013-01-14 07:12:19 +00004529 struct tun_security_struct *tunsec = security;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004530 u32 sid = current_sid();
4531 int err;
4532
Paul Moore5dbbaf22013-01-14 07:12:19 +00004533 err = avc_has_perm(sid, tunsec->sid, SECCLASS_TUN_SOCKET,
Paul Mooreed6d76e2009-08-28 18:12:49 -04004534 TUN_SOCKET__RELABELFROM, NULL);
4535 if (err)
4536 return err;
4537 err = avc_has_perm(sid, sid, SECCLASS_TUN_SOCKET,
4538 TUN_SOCKET__RELABELTO, NULL);
4539 if (err)
4540 return err;
Paul Moore5dbbaf22013-01-14 07:12:19 +00004541 tunsec->sid = sid;
Paul Mooreed6d76e2009-08-28 18:12:49 -04004542
4543 return 0;
4544}
4545
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546static int selinux_nlmsg_perm(struct sock *sk, struct sk_buff *skb)
4547{
4548 int err = 0;
4549 u32 perm;
4550 struct nlmsghdr *nlh;
Paul Moore253bfae2010-04-22 14:46:19 -04004551 struct sk_security_struct *sksec = sk->sk_security;
Eric Paris828dfe12008-04-17 13:17:49 -04004552
Hong zhi guo77954982013-03-27 06:49:35 +00004553 if (skb->len < NLMSG_HDRLEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 err = -EINVAL;
4555 goto out;
4556 }
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07004557 nlh = nlmsg_hdr(skb);
Eric Paris828dfe12008-04-17 13:17:49 -04004558
Paul Moore253bfae2010-04-22 14:46:19 -04004559 err = selinux_nlmsg_lookup(sksec->sclass, nlh->nlmsg_type, &perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 if (err) {
4561 if (err == -EINVAL) {
David Woodhouse9ad9ad32005-06-22 15:04:33 +01004562 audit_log(current->audit_context, GFP_KERNEL, AUDIT_SELINUX_ERR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 "SELinux: unrecognized netlink message"
4564 " type=%hu for sclass=%hu\n",
Paul Moore253bfae2010-04-22 14:46:19 -04004565 nlh->nlmsg_type, sksec->sclass);
Eric Paris39c9aed2008-11-05 09:34:42 -05004566 if (!selinux_enforcing || security_get_allow_unknown())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 err = 0;
4568 }
4569
4570 /* Ignore */
4571 if (err == -ENOENT)
4572 err = 0;
4573 goto out;
4574 }
4575
Paul Moore253bfae2010-04-22 14:46:19 -04004576 err = sock_has_perm(current, sk, perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577out:
4578 return err;
4579}
4580
4581#ifdef CONFIG_NETFILTER
4582
Paul Mooreeffad8d2008-01-29 08:49:27 -05004583static unsigned int selinux_ip_forward(struct sk_buff *skb, int ifindex,
4584 u16 family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585{
Paul Mooredfaebe92008-10-10 10:16:31 -04004586 int err;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004587 char *addrp;
4588 u32 peer_sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04004589 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004590 struct lsm_network_audit net = {0,};
Paul Mooreeffad8d2008-01-29 08:49:27 -05004591 u8 secmark_active;
Paul Moore948bf852008-10-10 10:16:32 -04004592 u8 netlbl_active;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004593 u8 peerlbl_active;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004594
Paul Mooreeffad8d2008-01-29 08:49:27 -05004595 if (!selinux_policycap_netpeer)
4596 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004597
Paul Mooreeffad8d2008-01-29 08:49:27 -05004598 secmark_active = selinux_secmark_enabled();
Paul Moore948bf852008-10-10 10:16:32 -04004599 netlbl_active = netlbl_enabled();
4600 peerlbl_active = netlbl_active || selinux_xfrm_enabled();
Paul Mooreeffad8d2008-01-29 08:49:27 -05004601 if (!secmark_active && !peerlbl_active)
4602 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004603
Paul Moored8395c82008-10-10 10:16:30 -04004604 if (selinux_skb_peerlbl_sid(skb, family, &peer_sid) != 0)
4605 return NF_DROP;
4606
Eric Paris50c205f2012-04-04 15:01:43 -04004607 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004608 ad.u.net = &net;
4609 ad.u.net->netif = ifindex;
4610 ad.u.net->family = family;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004611 if (selinux_parse_skb(skb, &ad, &addrp, 1, NULL) != 0)
4612 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613
Paul Mooredfaebe92008-10-10 10:16:31 -04004614 if (peerlbl_active) {
4615 err = selinux_inet_sys_rcv_skb(ifindex, addrp, family,
4616 peer_sid, &ad);
4617 if (err) {
4618 selinux_netlbl_err(skb, err, 1);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004619 return NF_DROP;
Paul Mooredfaebe92008-10-10 10:16:31 -04004620 }
4621 }
Paul Mooreeffad8d2008-01-29 08:49:27 -05004622
4623 if (secmark_active)
4624 if (avc_has_perm(peer_sid, skb->secmark,
4625 SECCLASS_PACKET, PACKET__FORWARD_IN, &ad))
4626 return NF_DROP;
4627
Paul Moore948bf852008-10-10 10:16:32 -04004628 if (netlbl_active)
4629 /* we do this in the FORWARD path and not the POST_ROUTING
4630 * path because we want to make sure we apply the necessary
4631 * labeling before IPsec is applied so we can leverage AH
4632 * protection */
4633 if (selinux_netlbl_skbuff_setsid(skb, family, peer_sid) != 0)
4634 return NF_DROP;
4635
Paul Mooreeffad8d2008-01-29 08:49:27 -05004636 return NF_ACCEPT;
4637}
4638
4639static unsigned int selinux_ipv4_forward(unsigned int hooknum,
4640 struct sk_buff *skb,
4641 const struct net_device *in,
4642 const struct net_device *out,
4643 int (*okfn)(struct sk_buff *))
4644{
4645 return selinux_ip_forward(skb, in->ifindex, PF_INET);
4646}
4647
4648#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
4649static unsigned int selinux_ipv6_forward(unsigned int hooknum,
4650 struct sk_buff *skb,
4651 const struct net_device *in,
4652 const struct net_device *out,
4653 int (*okfn)(struct sk_buff *))
4654{
4655 return selinux_ip_forward(skb, in->ifindex, PF_INET6);
4656}
4657#endif /* IPV6 */
4658
Paul Moore948bf852008-10-10 10:16:32 -04004659static unsigned int selinux_ip_output(struct sk_buff *skb,
4660 u16 family)
4661{
Paul Moore216c4a72013-12-04 16:10:45 -05004662 struct sock *sk;
Paul Moore948bf852008-10-10 10:16:32 -04004663 u32 sid;
4664
4665 if (!netlbl_enabled())
4666 return NF_ACCEPT;
4667
4668 /* we do this in the LOCAL_OUT path and not the POST_ROUTING path
4669 * because we want to make sure we apply the necessary labeling
4670 * before IPsec is applied so we can leverage AH protection */
Paul Moore216c4a72013-12-04 16:10:45 -05004671 sk = skb->sk;
4672 if (sk) {
4673 struct sk_security_struct *sksec;
4674
4675 if (sk->sk_state == TCP_LISTEN)
4676 /* if the socket is the listening state then this
4677 * packet is a SYN-ACK packet which means it needs to
4678 * be labeled based on the connection/request_sock and
4679 * not the parent socket. unfortunately, we can't
4680 * lookup the request_sock yet as it isn't queued on
4681 * the parent socket until after the SYN-ACK is sent.
4682 * the "solution" is to simply pass the packet as-is
4683 * as any IP option based labeling should be copied
4684 * from the initial connection request (in the IP
4685 * layer). it is far from ideal, but until we get a
4686 * security label in the packet itself this is the
4687 * best we can do. */
4688 return NF_ACCEPT;
4689
4690 /* standard practice, label using the parent socket */
4691 sksec = sk->sk_security;
Paul Moore948bf852008-10-10 10:16:32 -04004692 sid = sksec->sid;
4693 } else
4694 sid = SECINITSID_KERNEL;
4695 if (selinux_netlbl_skbuff_setsid(skb, family, sid) != 0)
4696 return NF_DROP;
4697
4698 return NF_ACCEPT;
4699}
4700
4701static unsigned int selinux_ipv4_output(unsigned int hooknum,
4702 struct sk_buff *skb,
4703 const struct net_device *in,
4704 const struct net_device *out,
4705 int (*okfn)(struct sk_buff *))
4706{
4707 return selinux_ip_output(skb, PF_INET);
4708}
4709
Paul Mooreeffad8d2008-01-29 08:49:27 -05004710static unsigned int selinux_ip_postroute_compat(struct sk_buff *skb,
4711 int ifindex,
Paul Moored8395c82008-10-10 10:16:30 -04004712 u16 family)
James Morris4e5ab4c2006-06-09 00:33:33 -07004713{
Paul Mooreeffad8d2008-01-29 08:49:27 -05004714 struct sock *sk = skb->sk;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004715 struct sk_security_struct *sksec;
Thomas Liu2bf49692009-07-14 12:14:09 -04004716 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004717 struct lsm_network_audit net = {0,};
Paul Moored8395c82008-10-10 10:16:30 -04004718 char *addrp;
4719 u8 proto;
James Morris4e5ab4c2006-06-09 00:33:33 -07004720
Paul Mooreeffad8d2008-01-29 08:49:27 -05004721 if (sk == NULL)
4722 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07004723 sksec = sk->sk_security;
James Morris4e5ab4c2006-06-09 00:33:33 -07004724
Eric Paris50c205f2012-04-04 15:01:43 -04004725 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004726 ad.u.net = &net;
4727 ad.u.net->netif = ifindex;
4728 ad.u.net->family = family;
Paul Moored8395c82008-10-10 10:16:30 -04004729 if (selinux_parse_skb(skb, &ad, &addrp, 0, &proto))
4730 return NF_DROP;
4731
Paul Moore58bfbb52009-03-27 17:10:41 -04004732 if (selinux_secmark_enabled())
Paul Mooreeffad8d2008-01-29 08:49:27 -05004733 if (avc_has_perm(sksec->sid, skb->secmark,
Paul Moored8395c82008-10-10 10:16:30 -04004734 SECCLASS_PACKET, PACKET__SEND, &ad))
Eric Paris2fe66ec2010-11-23 06:28:08 +00004735 return NF_DROP_ERR(-ECONNREFUSED);
James Morris4e5ab4c2006-06-09 00:33:33 -07004736
Steffen Klassertb9679a72011-02-23 12:55:21 +01004737 if (selinux_xfrm_postroute_last(sksec->sid, skb, &ad, proto))
4738 return NF_DROP_ERR(-ECONNREFUSED);
James Morris4e5ab4c2006-06-09 00:33:33 -07004739
Paul Mooreeffad8d2008-01-29 08:49:27 -05004740 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741}
4742
Paul Mooreeffad8d2008-01-29 08:49:27 -05004743static unsigned int selinux_ip_postroute(struct sk_buff *skb, int ifindex,
4744 u16 family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745{
Paul Mooreeffad8d2008-01-29 08:49:27 -05004746 u32 secmark_perm;
4747 u32 peer_sid;
4748 struct sock *sk;
Thomas Liu2bf49692009-07-14 12:14:09 -04004749 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004750 struct lsm_network_audit net = {0,};
Paul Mooreeffad8d2008-01-29 08:49:27 -05004751 char *addrp;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004752 u8 secmark_active;
4753 u8 peerlbl_active;
4754
Paul Mooreeffad8d2008-01-29 08:49:27 -05004755 /* If any sort of compatibility mode is enabled then handoff processing
4756 * to the selinux_ip_postroute_compat() function to deal with the
4757 * special handling. We do this in an attempt to keep this function
4758 * as fast and as clean as possible. */
Paul Moore58bfbb52009-03-27 17:10:41 -04004759 if (!selinux_policycap_netpeer)
Paul Moored8395c82008-10-10 10:16:30 -04004760 return selinux_ip_postroute_compat(skb, ifindex, family);
Paul Moore0fdb9382013-12-10 14:58:01 -05004761
Paul Mooreeffad8d2008-01-29 08:49:27 -05004762 secmark_active = selinux_secmark_enabled();
4763 peerlbl_active = netlbl_enabled() || selinux_xfrm_enabled();
4764 if (!secmark_active && !peerlbl_active)
4765 return NF_ACCEPT;
4766
Paul Mooreeffad8d2008-01-29 08:49:27 -05004767 sk = skb->sk;
Paul Moore0fdb9382013-12-10 14:58:01 -05004768
4769#ifdef CONFIG_XFRM
4770 /* If skb->dst->xfrm is non-NULL then the packet is undergoing an IPsec
4771 * packet transformation so allow the packet to pass without any checks
4772 * since we'll have another chance to perform access control checks
4773 * when the packet is on it's final way out.
4774 * NOTE: there appear to be some IPv6 multicast cases where skb->dst
4775 * is NULL, in this case go ahead and apply access control.
4776 * is NULL, in this case go ahead and apply access control.
4777 * NOTE: if this is a local socket (skb->sk != NULL) that is in the
4778 * TCP listening state we cannot wait until the XFRM processing
4779 * is done as we will miss out on the SA label if we do;
4780 * unfortunately, this means more work, but it is only once per
4781 * connection. */
4782 if (skb_dst(skb) != NULL && skb_dst(skb)->xfrm != NULL &&
4783 !(sk != NULL && sk->sk_state == TCP_LISTEN))
4784 return NF_ACCEPT;
4785#endif
4786
Paul Moored8395c82008-10-10 10:16:30 -04004787 if (sk == NULL) {
Paul Moore348d7862013-12-04 16:10:51 -05004788 /* Without an associated socket the packet is either coming
4789 * from the kernel or it is being forwarded; check the packet
4790 * to determine which and if the packet is being forwarded
4791 * query the packet directly to determine the security label. */
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01004792 if (skb->skb_iif) {
4793 secmark_perm = PACKET__FORWARD_OUT;
Paul Moored8395c82008-10-10 10:16:30 -04004794 if (selinux_skb_peerlbl_sid(skb, family, &peer_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00004795 return NF_DROP;
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01004796 } else {
4797 secmark_perm = PACKET__SEND;
Paul Moored8395c82008-10-10 10:16:30 -04004798 peer_sid = SECINITSID_KERNEL;
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01004799 }
Paul Moore348d7862013-12-04 16:10:51 -05004800 } else if (sk->sk_state == TCP_LISTEN) {
4801 /* Locally generated packet but the associated socket is in the
4802 * listening state which means this is a SYN-ACK packet. In
4803 * this particular case the correct security label is assigned
4804 * to the connection/request_sock but unfortunately we can't
4805 * query the request_sock as it isn't queued on the parent
4806 * socket until after the SYN-ACK packet is sent; the only
4807 * viable choice is to regenerate the label like we do in
4808 * selinux_inet_conn_request(). See also selinux_ip_output()
4809 * for similar problems. */
4810 u32 skb_sid;
4811 struct sk_security_struct *sksec = sk->sk_security;
4812 if (selinux_skb_peerlbl_sid(skb, family, &skb_sid))
4813 return NF_DROP;
Paul Moore0fdb9382013-12-10 14:58:01 -05004814 /* At this point, if the returned skb peerlbl is SECSID_NULL
4815 * and the packet has been through at least one XFRM
4816 * transformation then we must be dealing with the "final"
4817 * form of labeled IPsec packet; since we've already applied
4818 * all of our access controls on this packet we can safely
4819 * pass the packet. */
4820 if (skb_sid == SECSID_NULL) {
4821 switch (family) {
4822 case PF_INET:
4823 if (IPCB(skb)->flags & IPSKB_XFRM_TRANSFORMED)
4824 return NF_ACCEPT;
4825 break;
4826 case PF_INET6:
4827 if (IP6CB(skb)->flags & IP6SKB_XFRM_TRANSFORMED)
4828 return NF_ACCEPT;
4829 default:
4830 return NF_DROP_ERR(-ECONNREFUSED);
4831 }
4832 }
Paul Moore348d7862013-12-04 16:10:51 -05004833 if (selinux_conn_sid(sksec->sid, skb_sid, &peer_sid))
4834 return NF_DROP;
4835 secmark_perm = PACKET__SEND;
Paul Moored8395c82008-10-10 10:16:30 -04004836 } else {
Paul Moore348d7862013-12-04 16:10:51 -05004837 /* Locally generated packet, fetch the security label from the
4838 * associated socket. */
Paul Mooreeffad8d2008-01-29 08:49:27 -05004839 struct sk_security_struct *sksec = sk->sk_security;
4840 peer_sid = sksec->sid;
4841 secmark_perm = PACKET__SEND;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004842 }
4843
Eric Paris50c205f2012-04-04 15:01:43 -04004844 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004845 ad.u.net = &net;
4846 ad.u.net->netif = ifindex;
4847 ad.u.net->family = family;
Paul Moored8395c82008-10-10 10:16:30 -04004848 if (selinux_parse_skb(skb, &ad, &addrp, 0, NULL))
Eric Paris04f6d702010-11-23 06:28:02 +00004849 return NF_DROP;
Paul Moored8395c82008-10-10 10:16:30 -04004850
Paul Mooreeffad8d2008-01-29 08:49:27 -05004851 if (secmark_active)
4852 if (avc_has_perm(peer_sid, skb->secmark,
4853 SECCLASS_PACKET, secmark_perm, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00004854 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004855
4856 if (peerlbl_active) {
4857 u32 if_sid;
4858 u32 node_sid;
4859
4860 if (sel_netif_sid(ifindex, &if_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00004861 return NF_DROP;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004862 if (avc_has_perm(peer_sid, if_sid,
4863 SECCLASS_NETIF, NETIF__EGRESS, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00004864 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004865
4866 if (sel_netnode_sid(addrp, family, &node_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00004867 return NF_DROP;
Paul Mooreeffad8d2008-01-29 08:49:27 -05004868 if (avc_has_perm(peer_sid, node_sid,
4869 SECCLASS_NODE, NODE__SENDTO, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00004870 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05004871 }
4872
4873 return NF_ACCEPT;
4874}
4875
4876static unsigned int selinux_ipv4_postroute(unsigned int hooknum,
4877 struct sk_buff *skb,
4878 const struct net_device *in,
4879 const struct net_device *out,
4880 int (*okfn)(struct sk_buff *))
4881{
4882 return selinux_ip_postroute(skb, out->ifindex, PF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883}
4884
4885#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Paul Mooreeffad8d2008-01-29 08:49:27 -05004886static unsigned int selinux_ipv6_postroute(unsigned int hooknum,
4887 struct sk_buff *skb,
4888 const struct net_device *in,
4889 const struct net_device *out,
4890 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891{
Paul Mooreeffad8d2008-01-29 08:49:27 -05004892 return selinux_ip_postroute(skb, out->ifindex, PF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894#endif /* IPV6 */
4895
4896#endif /* CONFIG_NETFILTER */
4897
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898static int selinux_netlink_send(struct sock *sk, struct sk_buff *skb)
4899{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 int err;
4901
Eric Paris200ac532009-02-12 15:01:04 -05004902 err = cap_netlink_send(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 if (err)
4904 return err;
4905
Stephen Smalley941fc5b2009-10-01 14:48:23 -04004906 return selinux_nlmsg_perm(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907}
4908
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909static int ipc_alloc_security(struct task_struct *task,
4910 struct kern_ipc_perm *perm,
4911 u16 sclass)
4912{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 struct ipc_security_struct *isec;
David Howells275bb412008-11-14 10:39:19 +11004914 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
James Morris89d155e2005-10-30 14:59:21 -08004916 isec = kzalloc(sizeof(struct ipc_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 if (!isec)
4918 return -ENOMEM;
4919
David Howells275bb412008-11-14 10:39:19 +11004920 sid = task_sid(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 isec->sclass = sclass;
David Howells275bb412008-11-14 10:39:19 +11004922 isec->sid = sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 perm->security = isec;
4924
4925 return 0;
4926}
4927
4928static void ipc_free_security(struct kern_ipc_perm *perm)
4929{
4930 struct ipc_security_struct *isec = perm->security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 perm->security = NULL;
4932 kfree(isec);
4933}
4934
4935static int msg_msg_alloc_security(struct msg_msg *msg)
4936{
4937 struct msg_security_struct *msec;
4938
James Morris89d155e2005-10-30 14:59:21 -08004939 msec = kzalloc(sizeof(struct msg_security_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 if (!msec)
4941 return -ENOMEM;
4942
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 msec->sid = SECINITSID_UNLABELED;
4944 msg->security = msec;
4945
4946 return 0;
4947}
4948
4949static void msg_msg_free_security(struct msg_msg *msg)
4950{
4951 struct msg_security_struct *msec = msg->security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952
4953 msg->security = NULL;
4954 kfree(msec);
4955}
4956
4957static int ipc_has_perm(struct kern_ipc_perm *ipc_perms,
Stephen Smalley6af963f2005-05-01 08:58:39 -07004958 u32 perms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04004961 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11004962 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 isec = ipc_perms->security;
4965
Eric Paris50c205f2012-04-04 15:01:43 -04004966 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 ad.u.ipc_id = ipc_perms->key;
4968
David Howells275bb412008-11-14 10:39:19 +11004969 return avc_has_perm(sid, isec->sid, isec->sclass, perms, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970}
4971
4972static int selinux_msg_msg_alloc_security(struct msg_msg *msg)
4973{
4974 return msg_msg_alloc_security(msg);
4975}
4976
4977static void selinux_msg_msg_free_security(struct msg_msg *msg)
4978{
4979 msg_msg_free_security(msg);
4980}
4981
4982/* message queue security operations */
4983static int selinux_msg_queue_alloc_security(struct msg_queue *msq)
4984{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04004986 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11004987 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 int rc;
4989
4990 rc = ipc_alloc_security(current, &msq->q_perm, SECCLASS_MSGQ);
4991 if (rc)
4992 return rc;
4993
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 isec = msq->q_perm.security;
4995
Eric Paris50c205f2012-04-04 15:01:43 -04004996 ad.type = LSM_AUDIT_DATA_IPC;
Eric Paris828dfe12008-04-17 13:17:49 -04004997 ad.u.ipc_id = msq->q_perm.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998
David Howells275bb412008-11-14 10:39:19 +11004999 rc = avc_has_perm(sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 MSGQ__CREATE, &ad);
5001 if (rc) {
5002 ipc_free_security(&msq->q_perm);
5003 return rc;
5004 }
5005 return 0;
5006}
5007
5008static void selinux_msg_queue_free_security(struct msg_queue *msq)
5009{
5010 ipc_free_security(&msq->q_perm);
5011}
5012
5013static int selinux_msg_queue_associate(struct msg_queue *msq, int msqflg)
5014{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005016 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005017 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 isec = msq->q_perm.security;
5020
Eric Paris50c205f2012-04-04 15:01:43 -04005021 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 ad.u.ipc_id = msq->q_perm.key;
5023
David Howells275bb412008-11-14 10:39:19 +11005024 return avc_has_perm(sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 MSGQ__ASSOCIATE, &ad);
5026}
5027
5028static int selinux_msg_queue_msgctl(struct msg_queue *msq, int cmd)
5029{
5030 int err;
5031 int perms;
5032
Eric Paris828dfe12008-04-17 13:17:49 -04005033 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 case IPC_INFO:
5035 case MSG_INFO:
5036 /* No specific object, just general system-wide information. */
5037 return task_has_system(current, SYSTEM__IPC_INFO);
5038 case IPC_STAT:
5039 case MSG_STAT:
5040 perms = MSGQ__GETATTR | MSGQ__ASSOCIATE;
5041 break;
5042 case IPC_SET:
5043 perms = MSGQ__SETATTR;
5044 break;
5045 case IPC_RMID:
5046 perms = MSGQ__DESTROY;
5047 break;
5048 default:
5049 return 0;
5050 }
5051
Stephen Smalley6af963f2005-05-01 08:58:39 -07005052 err = ipc_has_perm(&msq->q_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 return err;
5054}
5055
5056static int selinux_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg, int msqflg)
5057{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 struct ipc_security_struct *isec;
5059 struct msg_security_struct *msec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005060 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005061 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062 int rc;
5063
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 isec = msq->q_perm.security;
5065 msec = msg->security;
5066
5067 /*
5068 * First time through, need to assign label to the message
5069 */
5070 if (msec->sid == SECINITSID_UNLABELED) {
5071 /*
5072 * Compute new sid based on current process and
5073 * message queue this message will be stored in
5074 */
David Howells275bb412008-11-14 10:39:19 +11005075 rc = security_transition_sid(sid, isec->sid, SECCLASS_MSG,
Eric Paris652bb9b2011-02-01 11:05:40 -05005076 NULL, &msec->sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 if (rc)
5078 return rc;
5079 }
5080
Eric Paris50c205f2012-04-04 15:01:43 -04005081 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 ad.u.ipc_id = msq->q_perm.key;
5083
5084 /* Can this process write to the queue? */
David Howells275bb412008-11-14 10:39:19 +11005085 rc = avc_has_perm(sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 MSGQ__WRITE, &ad);
5087 if (!rc)
5088 /* Can this process send the message */
David Howells275bb412008-11-14 10:39:19 +11005089 rc = avc_has_perm(sid, msec->sid, SECCLASS_MSG,
5090 MSG__SEND, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091 if (!rc)
5092 /* Can the message be put in the queue? */
David Howells275bb412008-11-14 10:39:19 +11005093 rc = avc_has_perm(msec->sid, isec->sid, SECCLASS_MSGQ,
5094 MSGQ__ENQUEUE, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095
5096 return rc;
5097}
5098
5099static int selinux_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
5100 struct task_struct *target,
5101 long type, int mode)
5102{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 struct ipc_security_struct *isec;
5104 struct msg_security_struct *msec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005105 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005106 u32 sid = task_sid(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 int rc;
5108
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 isec = msq->q_perm.security;
5110 msec = msg->security;
5111
Eric Paris50c205f2012-04-04 15:01:43 -04005112 ad.type = LSM_AUDIT_DATA_IPC;
Eric Paris828dfe12008-04-17 13:17:49 -04005113 ad.u.ipc_id = msq->q_perm.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
David Howells275bb412008-11-14 10:39:19 +11005115 rc = avc_has_perm(sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116 SECCLASS_MSGQ, MSGQ__READ, &ad);
5117 if (!rc)
David Howells275bb412008-11-14 10:39:19 +11005118 rc = avc_has_perm(sid, msec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 SECCLASS_MSG, MSG__RECEIVE, &ad);
5120 return rc;
5121}
5122
5123/* Shared Memory security operations */
5124static int selinux_shm_alloc_security(struct shmid_kernel *shp)
5125{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005127 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005128 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 int rc;
5130
5131 rc = ipc_alloc_security(current, &shp->shm_perm, SECCLASS_SHM);
5132 if (rc)
5133 return rc;
5134
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 isec = shp->shm_perm.security;
5136
Eric Paris50c205f2012-04-04 15:01:43 -04005137 ad.type = LSM_AUDIT_DATA_IPC;
Eric Paris828dfe12008-04-17 13:17:49 -04005138 ad.u.ipc_id = shp->shm_perm.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139
David Howells275bb412008-11-14 10:39:19 +11005140 rc = avc_has_perm(sid, isec->sid, SECCLASS_SHM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 SHM__CREATE, &ad);
5142 if (rc) {
5143 ipc_free_security(&shp->shm_perm);
5144 return rc;
5145 }
5146 return 0;
5147}
5148
5149static void selinux_shm_free_security(struct shmid_kernel *shp)
5150{
5151 ipc_free_security(&shp->shm_perm);
5152}
5153
5154static int selinux_shm_associate(struct shmid_kernel *shp, int shmflg)
5155{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005157 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005158 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160 isec = shp->shm_perm.security;
5161
Eric Paris50c205f2012-04-04 15:01:43 -04005162 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 ad.u.ipc_id = shp->shm_perm.key;
5164
David Howells275bb412008-11-14 10:39:19 +11005165 return avc_has_perm(sid, isec->sid, SECCLASS_SHM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 SHM__ASSOCIATE, &ad);
5167}
5168
5169/* Note, at this point, shp is locked down */
5170static int selinux_shm_shmctl(struct shmid_kernel *shp, int cmd)
5171{
5172 int perms;
5173 int err;
5174
Eric Paris828dfe12008-04-17 13:17:49 -04005175 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 case IPC_INFO:
5177 case SHM_INFO:
5178 /* No specific object, just general system-wide information. */
5179 return task_has_system(current, SYSTEM__IPC_INFO);
5180 case IPC_STAT:
5181 case SHM_STAT:
5182 perms = SHM__GETATTR | SHM__ASSOCIATE;
5183 break;
5184 case IPC_SET:
5185 perms = SHM__SETATTR;
5186 break;
5187 case SHM_LOCK:
5188 case SHM_UNLOCK:
5189 perms = SHM__LOCK;
5190 break;
5191 case IPC_RMID:
5192 perms = SHM__DESTROY;
5193 break;
5194 default:
5195 return 0;
5196 }
5197
Stephen Smalley6af963f2005-05-01 08:58:39 -07005198 err = ipc_has_perm(&shp->shm_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 return err;
5200}
5201
5202static int selinux_shm_shmat(struct shmid_kernel *shp,
5203 char __user *shmaddr, int shmflg)
5204{
5205 u32 perms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
5207 if (shmflg & SHM_RDONLY)
5208 perms = SHM__READ;
5209 else
5210 perms = SHM__READ | SHM__WRITE;
5211
Stephen Smalley6af963f2005-05-01 08:58:39 -07005212 return ipc_has_perm(&shp->shm_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213}
5214
5215/* Semaphore security operations */
5216static int selinux_sem_alloc_security(struct sem_array *sma)
5217{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005219 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005220 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 int rc;
5222
5223 rc = ipc_alloc_security(current, &sma->sem_perm, SECCLASS_SEM);
5224 if (rc)
5225 return rc;
5226
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 isec = sma->sem_perm.security;
5228
Eric Paris50c205f2012-04-04 15:01:43 -04005229 ad.type = LSM_AUDIT_DATA_IPC;
Eric Paris828dfe12008-04-17 13:17:49 -04005230 ad.u.ipc_id = sma->sem_perm.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
David Howells275bb412008-11-14 10:39:19 +11005232 rc = avc_has_perm(sid, isec->sid, SECCLASS_SEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 SEM__CREATE, &ad);
5234 if (rc) {
5235 ipc_free_security(&sma->sem_perm);
5236 return rc;
5237 }
5238 return 0;
5239}
5240
5241static void selinux_sem_free_security(struct sem_array *sma)
5242{
5243 ipc_free_security(&sma->sem_perm);
5244}
5245
5246static int selinux_sem_associate(struct sem_array *sma, int semflg)
5247{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005249 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005250 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 isec = sma->sem_perm.security;
5253
Eric Paris50c205f2012-04-04 15:01:43 -04005254 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 ad.u.ipc_id = sma->sem_perm.key;
5256
David Howells275bb412008-11-14 10:39:19 +11005257 return avc_has_perm(sid, isec->sid, SECCLASS_SEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 SEM__ASSOCIATE, &ad);
5259}
5260
5261/* Note, at this point, sma is locked down */
5262static int selinux_sem_semctl(struct sem_array *sma, int cmd)
5263{
5264 int err;
5265 u32 perms;
5266
Eric Paris828dfe12008-04-17 13:17:49 -04005267 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268 case IPC_INFO:
5269 case SEM_INFO:
5270 /* No specific object, just general system-wide information. */
5271 return task_has_system(current, SYSTEM__IPC_INFO);
5272 case GETPID:
5273 case GETNCNT:
5274 case GETZCNT:
5275 perms = SEM__GETATTR;
5276 break;
5277 case GETVAL:
5278 case GETALL:
5279 perms = SEM__READ;
5280 break;
5281 case SETVAL:
5282 case SETALL:
5283 perms = SEM__WRITE;
5284 break;
5285 case IPC_RMID:
5286 perms = SEM__DESTROY;
5287 break;
5288 case IPC_SET:
5289 perms = SEM__SETATTR;
5290 break;
5291 case IPC_STAT:
5292 case SEM_STAT:
5293 perms = SEM__GETATTR | SEM__ASSOCIATE;
5294 break;
5295 default:
5296 return 0;
5297 }
5298
Stephen Smalley6af963f2005-05-01 08:58:39 -07005299 err = ipc_has_perm(&sma->sem_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 return err;
5301}
5302
5303static int selinux_sem_semop(struct sem_array *sma,
5304 struct sembuf *sops, unsigned nsops, int alter)
5305{
5306 u32 perms;
5307
5308 if (alter)
5309 perms = SEM__READ | SEM__WRITE;
5310 else
5311 perms = SEM__READ;
5312
Stephen Smalley6af963f2005-05-01 08:58:39 -07005313 return ipc_has_perm(&sma->sem_perm, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314}
5315
5316static int selinux_ipc_permission(struct kern_ipc_perm *ipcp, short flag)
5317{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 u32 av = 0;
5319
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 av = 0;
5321 if (flag & S_IRUGO)
5322 av |= IPC__UNIX_READ;
5323 if (flag & S_IWUGO)
5324 av |= IPC__UNIX_WRITE;
5325
5326 if (av == 0)
5327 return 0;
5328
Stephen Smalley6af963f2005-05-01 08:58:39 -07005329 return ipc_has_perm(ipcp, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330}
5331
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02005332static void selinux_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
5333{
5334 struct ipc_security_struct *isec = ipcp->security;
5335 *secid = isec->sid;
5336}
5337
Eric Paris828dfe12008-04-17 13:17:49 -04005338static void selinux_d_instantiate(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339{
5340 if (inode)
5341 inode_doinit_with_dentry(inode, dentry);
5342}
5343
5344static int selinux_getprocattr(struct task_struct *p,
Al Viro04ff9702007-03-12 16:17:58 +00005345 char *name, char **value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346{
David Howells275bb412008-11-14 10:39:19 +11005347 const struct task_security_struct *__tsec;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00005348 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 int error;
Al Viro04ff9702007-03-12 16:17:58 +00005350 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
5352 if (current != p) {
David Howells3b11a1d2008-11-14 10:39:26 +11005353 error = current_has_perm(p, PROCESS__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 if (error)
5355 return error;
5356 }
5357
David Howells275bb412008-11-14 10:39:19 +11005358 rcu_read_lock();
5359 __tsec = __task_cred(p)->security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360
5361 if (!strcmp(name, "current"))
David Howells275bb412008-11-14 10:39:19 +11005362 sid = __tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363 else if (!strcmp(name, "prev"))
David Howells275bb412008-11-14 10:39:19 +11005364 sid = __tsec->osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365 else if (!strcmp(name, "exec"))
David Howells275bb412008-11-14 10:39:19 +11005366 sid = __tsec->exec_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 else if (!strcmp(name, "fscreate"))
David Howells275bb412008-11-14 10:39:19 +11005368 sid = __tsec->create_sid;
Michael LeMay4eb582c2006-06-26 00:24:57 -07005369 else if (!strcmp(name, "keycreate"))
David Howells275bb412008-11-14 10:39:19 +11005370 sid = __tsec->keycreate_sid;
Eric Paris42c3e032006-06-26 00:26:03 -07005371 else if (!strcmp(name, "sockcreate"))
David Howells275bb412008-11-14 10:39:19 +11005372 sid = __tsec->sockcreate_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 else
David Howells275bb412008-11-14 10:39:19 +11005374 goto invalid;
5375 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376
5377 if (!sid)
5378 return 0;
5379
Al Viro04ff9702007-03-12 16:17:58 +00005380 error = security_sid_to_context(sid, value, &len);
5381 if (error)
5382 return error;
5383 return len;
David Howells275bb412008-11-14 10:39:19 +11005384
5385invalid:
5386 rcu_read_unlock();
5387 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388}
5389
5390static int selinux_setprocattr(struct task_struct *p,
5391 char *name, void *value, size_t size)
5392{
5393 struct task_security_struct *tsec;
Roland McGrath03563572008-03-26 15:46:39 -07005394 struct task_struct *tracer;
David Howellsd84f4f92008-11-14 10:39:23 +11005395 struct cred *new;
5396 u32 sid = 0, ptsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397 int error;
5398 char *str = value;
5399
5400 if (current != p) {
5401 /* SELinux only allows a process to change its own
5402 security attributes. */
5403 return -EACCES;
5404 }
5405
5406 /*
5407 * Basic control over ability to set these attributes at all.
5408 * current == p, but we'll pass them separately in case the
5409 * above restriction is ever removed.
5410 */
5411 if (!strcmp(name, "exec"))
David Howells3b11a1d2008-11-14 10:39:26 +11005412 error = current_has_perm(p, PROCESS__SETEXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 else if (!strcmp(name, "fscreate"))
David Howells3b11a1d2008-11-14 10:39:26 +11005414 error = current_has_perm(p, PROCESS__SETFSCREATE);
Michael LeMay4eb582c2006-06-26 00:24:57 -07005415 else if (!strcmp(name, "keycreate"))
David Howells3b11a1d2008-11-14 10:39:26 +11005416 error = current_has_perm(p, PROCESS__SETKEYCREATE);
Eric Paris42c3e032006-06-26 00:26:03 -07005417 else if (!strcmp(name, "sockcreate"))
David Howells3b11a1d2008-11-14 10:39:26 +11005418 error = current_has_perm(p, PROCESS__SETSOCKCREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 else if (!strcmp(name, "current"))
David Howells3b11a1d2008-11-14 10:39:26 +11005420 error = current_has_perm(p, PROCESS__SETCURRENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 else
5422 error = -EINVAL;
5423 if (error)
5424 return error;
5425
5426 /* Obtain a SID for the context, if one was specified. */
5427 if (size && str[1] && str[1] != '\n') {
5428 if (str[size-1] == '\n') {
5429 str[size-1] = 0;
5430 size--;
5431 }
5432 error = security_context_to_sid(value, size, &sid);
Stephen Smalley12b29f32008-05-07 13:03:20 -04005433 if (error == -EINVAL && !strcmp(name, "fscreate")) {
Eric Parisd6ea83e2012-04-04 13:45:49 -04005434 if (!capable(CAP_MAC_ADMIN)) {
5435 struct audit_buffer *ab;
5436 size_t audit_size;
5437
5438 /* We strip a nul only if it is at the end, otherwise the
5439 * context contains a nul and we should audit that */
5440 if (str[size - 1] == '\0')
5441 audit_size = size - 1;
5442 else
5443 audit_size = size;
5444 ab = audit_log_start(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR);
5445 audit_log_format(ab, "op=fscreate invalid_context=");
5446 audit_log_n_untrustedstring(ab, value, audit_size);
5447 audit_log_end(ab);
5448
Stephen Smalley12b29f32008-05-07 13:03:20 -04005449 return error;
Eric Parisd6ea83e2012-04-04 13:45:49 -04005450 }
Stephen Smalley12b29f32008-05-07 13:03:20 -04005451 error = security_context_to_sid_force(value, size,
5452 &sid);
5453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454 if (error)
5455 return error;
5456 }
5457
David Howellsd84f4f92008-11-14 10:39:23 +11005458 new = prepare_creds();
5459 if (!new)
5460 return -ENOMEM;
5461
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 /* Permission checking based on the specified context is
5463 performed during the actual operation (execve,
5464 open/mkdir/...), when we know the full context of the
David Howellsd84f4f92008-11-14 10:39:23 +11005465 operation. See selinux_bprm_set_creds for the execve
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466 checks and may_create for the file creation checks. The
5467 operation will then fail if the context is not permitted. */
David Howellsd84f4f92008-11-14 10:39:23 +11005468 tsec = new->security;
5469 if (!strcmp(name, "exec")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 tsec->exec_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11005471 } else if (!strcmp(name, "fscreate")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472 tsec->create_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11005473 } else if (!strcmp(name, "keycreate")) {
Michael LeMay4eb582c2006-06-26 00:24:57 -07005474 error = may_create_key(sid, p);
5475 if (error)
David Howellsd84f4f92008-11-14 10:39:23 +11005476 goto abort_change;
Michael LeMay4eb582c2006-06-26 00:24:57 -07005477 tsec->keycreate_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11005478 } else if (!strcmp(name, "sockcreate")) {
Eric Paris42c3e032006-06-26 00:26:03 -07005479 tsec->sockcreate_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11005480 } else if (!strcmp(name, "current")) {
5481 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 if (sid == 0)
David Howellsd84f4f92008-11-14 10:39:23 +11005483 goto abort_change;
KaiGai Koheid9250de2008-08-28 16:35:57 +09005484
David Howellsd84f4f92008-11-14 10:39:23 +11005485 /* Only allow single threaded processes to change context */
5486 error = -EPERM;
Oleg Nesterov5bb459b2009-07-10 03:48:23 +02005487 if (!current_is_single_threaded()) {
David Howellsd84f4f92008-11-14 10:39:23 +11005488 error = security_bounded_transition(tsec->sid, sid);
5489 if (error)
5490 goto abort_change;
Eric Paris828dfe12008-04-17 13:17:49 -04005491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492
5493 /* Check permissions for the transition. */
5494 error = avc_has_perm(tsec->sid, sid, SECCLASS_PROCESS,
Eric Paris828dfe12008-04-17 13:17:49 -04005495 PROCESS__DYNTRANSITION, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 if (error)
David Howellsd84f4f92008-11-14 10:39:23 +11005497 goto abort_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
5499 /* Check for ptracing, and update the task SID if ok.
5500 Otherwise, leave SID unchanged and fail. */
David Howellsd84f4f92008-11-14 10:39:23 +11005501 ptsid = 0;
Oleg Nesterov2b259252013-12-23 17:45:01 -05005502 rcu_read_lock();
Tejun Heo06d98472011-06-17 16:50:40 +02005503 tracer = ptrace_parent(p);
David Howellsd84f4f92008-11-14 10:39:23 +11005504 if (tracer)
5505 ptsid = task_sid(tracer);
Oleg Nesterov2b259252013-12-23 17:45:01 -05005506 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507
David Howellsd84f4f92008-11-14 10:39:23 +11005508 if (tracer) {
5509 error = avc_has_perm(ptsid, sid, SECCLASS_PROCESS,
5510 PROCESS__PTRACE, NULL);
5511 if (error)
5512 goto abort_change;
5513 }
5514
5515 tsec->sid = sid;
5516 } else {
5517 error = -EINVAL;
5518 goto abort_change;
5519 }
5520
5521 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522 return size;
David Howellsd84f4f92008-11-14 10:39:23 +11005523
5524abort_change:
5525 abort_creds(new);
5526 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527}
5528
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005529static int selinux_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
5530{
5531 return security_sid_to_context(secid, secdata, seclen);
5532}
5533
David Howells7bf570d2008-04-29 20:52:51 +01005534static int selinux_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
David Howells63cb3442008-01-15 23:47:35 +00005535{
5536 return security_context_to_sid(secdata, seclen, secid);
5537}
5538
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005539static void selinux_release_secctx(char *secdata, u32 seclen)
5540{
Paul Moore088999e2007-08-01 11:12:58 -04005541 kfree(secdata);
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005542}
5543
David P. Quigley1ee65e32009-09-03 14:25:57 -04005544/*
5545 * called with inode->i_mutex locked
5546 */
5547static int selinux_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
5548{
5549 return selinux_inode_setsecurity(inode, XATTR_SELINUX_SUFFIX, ctx, ctxlen, 0);
5550}
5551
5552/*
5553 * called with inode->i_mutex locked
5554 */
5555static int selinux_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
5556{
5557 return __vfs_setxattr_noperm(dentry, XATTR_NAME_SELINUX, ctx, ctxlen, 0);
5558}
5559
5560static int selinux_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
5561{
5562 int len = 0;
5563 len = selinux_inode_getsecurity(inode, XATTR_SELINUX_SUFFIX,
5564 ctx, true);
5565 if (len < 0)
5566 return len;
5567 *ctxlen = len;
5568 return 0;
5569}
Michael LeMayd7200242006-06-22 14:47:17 -07005570#ifdef CONFIG_KEYS
5571
David Howellsd84f4f92008-11-14 10:39:23 +11005572static int selinux_key_alloc(struct key *k, const struct cred *cred,
David Howells7e047ef2006-06-26 00:24:50 -07005573 unsigned long flags)
Michael LeMayd7200242006-06-22 14:47:17 -07005574{
David Howellsd84f4f92008-11-14 10:39:23 +11005575 const struct task_security_struct *tsec;
Michael LeMayd7200242006-06-22 14:47:17 -07005576 struct key_security_struct *ksec;
5577
5578 ksec = kzalloc(sizeof(struct key_security_struct), GFP_KERNEL);
5579 if (!ksec)
5580 return -ENOMEM;
5581
David Howellsd84f4f92008-11-14 10:39:23 +11005582 tsec = cred->security;
5583 if (tsec->keycreate_sid)
5584 ksec->sid = tsec->keycreate_sid;
Michael LeMay4eb582c2006-06-26 00:24:57 -07005585 else
David Howellsd84f4f92008-11-14 10:39:23 +11005586 ksec->sid = tsec->sid;
Michael LeMayd7200242006-06-22 14:47:17 -07005587
David Howells275bb412008-11-14 10:39:19 +11005588 k->security = ksec;
Michael LeMayd7200242006-06-22 14:47:17 -07005589 return 0;
5590}
5591
5592static void selinux_key_free(struct key *k)
5593{
5594 struct key_security_struct *ksec = k->security;
5595
5596 k->security = NULL;
5597 kfree(ksec);
5598}
5599
5600static int selinux_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11005601 const struct cred *cred,
5602 key_perm_t perm)
Michael LeMayd7200242006-06-22 14:47:17 -07005603{
5604 struct key *key;
Michael LeMayd7200242006-06-22 14:47:17 -07005605 struct key_security_struct *ksec;
David Howells275bb412008-11-14 10:39:19 +11005606 u32 sid;
Michael LeMayd7200242006-06-22 14:47:17 -07005607
5608 /* if no specific permissions are requested, we skip the
5609 permission check. No serious, additional covert channels
5610 appear to be created. */
5611 if (perm == 0)
5612 return 0;
5613
David Howellsd84f4f92008-11-14 10:39:23 +11005614 sid = cred_sid(cred);
David Howells275bb412008-11-14 10:39:19 +11005615
5616 key = key_ref_to_ptr(key_ref);
5617 ksec = key->security;
5618
5619 return avc_has_perm(sid, ksec->sid, SECCLASS_KEY, perm, NULL);
Michael LeMayd7200242006-06-22 14:47:17 -07005620}
5621
David Howells70a5bb72008-04-29 01:01:26 -07005622static int selinux_key_getsecurity(struct key *key, char **_buffer)
5623{
5624 struct key_security_struct *ksec = key->security;
5625 char *context = NULL;
5626 unsigned len;
5627 int rc;
5628
5629 rc = security_sid_to_context(ksec->sid, &context, &len);
5630 if (!rc)
5631 rc = len;
5632 *_buffer = context;
5633 return rc;
5634}
5635
Michael LeMayd7200242006-06-22 14:47:17 -07005636#endif
5637
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638static struct security_operations selinux_ops = {
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02005639 .name = "selinux",
5640
Ingo Molnar9e488582009-05-07 19:26:19 +10005641 .ptrace_access_check = selinux_ptrace_access_check,
David Howells5cd9c582008-08-14 11:37:28 +01005642 .ptrace_traceme = selinux_ptrace_traceme,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 .capget = selinux_capget,
David Howellsd84f4f92008-11-14 10:39:23 +11005644 .capset = selinux_capset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645 .capable = selinux_capable,
5646 .quotactl = selinux_quotactl,
5647 .quota_on = selinux_quota_on,
5648 .syslog = selinux_syslog,
5649 .vm_enough_memory = selinux_vm_enough_memory,
5650
5651 .netlink_send = selinux_netlink_send,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
David Howellsa6f76f22008-11-14 10:39:24 +11005653 .bprm_set_creds = selinux_bprm_set_creds,
David Howellsa6f76f22008-11-14 10:39:24 +11005654 .bprm_committing_creds = selinux_bprm_committing_creds,
5655 .bprm_committed_creds = selinux_bprm_committed_creds,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656 .bprm_secureexec = selinux_bprm_secureexec,
5657
5658 .sb_alloc_security = selinux_sb_alloc_security,
5659 .sb_free_security = selinux_sb_free_security,
5660 .sb_copy_data = selinux_sb_copy_data,
Eric Paris026eb162011-03-03 16:09:14 -05005661 .sb_remount = selinux_sb_remount,
Eric Paris828dfe12008-04-17 13:17:49 -04005662 .sb_kern_mount = selinux_sb_kern_mount,
Eric Paris2069f452008-07-04 09:47:13 +10005663 .sb_show_options = selinux_sb_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 .sb_statfs = selinux_sb_statfs,
5665 .sb_mount = selinux_mount,
5666 .sb_umount = selinux_umount,
Eric Parisc9180a52007-11-30 13:00:35 -05005667 .sb_set_mnt_opts = selinux_set_mnt_opts,
Eric Paris828dfe12008-04-17 13:17:49 -04005668 .sb_clone_mnt_opts = selinux_sb_clone_mnt_opts,
Eric Parise0007522008-03-05 10:31:54 -05005669 .sb_parse_opts_str = selinux_parse_opts_str,
5670
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
5672 .inode_alloc_security = selinux_inode_alloc_security,
5673 .inode_free_security = selinux_inode_free_security,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07005674 .inode_init_security = selinux_inode_init_security,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675 .inode_create = selinux_inode_create,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676 .inode_link = selinux_inode_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677 .inode_unlink = selinux_inode_unlink,
5678 .inode_symlink = selinux_inode_symlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 .inode_mkdir = selinux_inode_mkdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680 .inode_rmdir = selinux_inode_rmdir,
5681 .inode_mknod = selinux_inode_mknod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682 .inode_rename = selinux_inode_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 .inode_readlink = selinux_inode_readlink,
5684 .inode_follow_link = selinux_inode_follow_link,
5685 .inode_permission = selinux_inode_permission,
5686 .inode_setattr = selinux_inode_setattr,
5687 .inode_getattr = selinux_inode_getattr,
5688 .inode_setxattr = selinux_inode_setxattr,
5689 .inode_post_setxattr = selinux_inode_post_setxattr,
5690 .inode_getxattr = selinux_inode_getxattr,
5691 .inode_listxattr = selinux_inode_listxattr,
5692 .inode_removexattr = selinux_inode_removexattr,
Eric Paris828dfe12008-04-17 13:17:49 -04005693 .inode_getsecurity = selinux_inode_getsecurity,
5694 .inode_setsecurity = selinux_inode_setsecurity,
5695 .inode_listsecurity = selinux_inode_listsecurity,
Eric Parisf5269712008-05-14 11:27:45 -04005696 .inode_getsecid = selinux_inode_getsecid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697
5698 .file_permission = selinux_file_permission,
5699 .file_alloc_security = selinux_file_alloc_security,
5700 .file_free_security = selinux_file_free_security,
5701 .file_ioctl = selinux_file_ioctl,
Al Viroe5467852012-05-30 13:30:51 -04005702 .mmap_file = selinux_mmap_file,
5703 .mmap_addr = selinux_mmap_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704 .file_mprotect = selinux_file_mprotect,
5705 .file_lock = selinux_file_lock,
5706 .file_fcntl = selinux_file_fcntl,
5707 .file_set_fowner = selinux_file_set_fowner,
5708 .file_send_sigiotask = selinux_file_send_sigiotask,
5709 .file_receive = selinux_file_receive,
5710
Eric Paris83d49852012-04-04 13:45:40 -04005711 .file_open = selinux_file_open,
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09005712
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713 .task_create = selinux_task_create,
David Howellsee18d642009-09-02 09:14:21 +01005714 .cred_alloc_blank = selinux_cred_alloc_blank,
David Howellsf1752ee2008-11-14 10:39:17 +11005715 .cred_free = selinux_cred_free,
David Howellsd84f4f92008-11-14 10:39:23 +11005716 .cred_prepare = selinux_cred_prepare,
David Howellsee18d642009-09-02 09:14:21 +01005717 .cred_transfer = selinux_cred_transfer,
David Howells3a3b7ce2008-11-14 10:39:28 +11005718 .kernel_act_as = selinux_kernel_act_as,
5719 .kernel_create_files_as = selinux_kernel_create_files_as,
Eric Paris25354c42009-08-13 09:45:03 -04005720 .kernel_module_request = selinux_kernel_module_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 .task_setpgid = selinux_task_setpgid,
5722 .task_getpgid = selinux_task_getpgid,
Eric Paris828dfe12008-04-17 13:17:49 -04005723 .task_getsid = selinux_task_getsid,
David Quigleyf9008e42006-06-30 01:55:46 -07005724 .task_getsecid = selinux_task_getsecid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725 .task_setnice = selinux_task_setnice,
James Morris03e68062006-06-23 02:03:58 -07005726 .task_setioprio = selinux_task_setioprio,
David Quigleya1836a42006-06-30 01:55:49 -07005727 .task_getioprio = selinux_task_getioprio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728 .task_setrlimit = selinux_task_setrlimit,
5729 .task_setscheduler = selinux_task_setscheduler,
5730 .task_getscheduler = selinux_task_getscheduler,
David Quigley35601542006-06-23 02:04:01 -07005731 .task_movememory = selinux_task_movememory,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 .task_kill = selinux_task_kill,
5733 .task_wait = selinux_task_wait,
Eric Paris828dfe12008-04-17 13:17:49 -04005734 .task_to_inode = selinux_task_to_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735
5736 .ipc_permission = selinux_ipc_permission,
Eric Parisf5269712008-05-14 11:27:45 -04005737 .ipc_getsecid = selinux_ipc_getsecid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738
5739 .msg_msg_alloc_security = selinux_msg_msg_alloc_security,
5740 .msg_msg_free_security = selinux_msg_msg_free_security,
5741
5742 .msg_queue_alloc_security = selinux_msg_queue_alloc_security,
5743 .msg_queue_free_security = selinux_msg_queue_free_security,
5744 .msg_queue_associate = selinux_msg_queue_associate,
5745 .msg_queue_msgctl = selinux_msg_queue_msgctl,
5746 .msg_queue_msgsnd = selinux_msg_queue_msgsnd,
5747 .msg_queue_msgrcv = selinux_msg_queue_msgrcv,
5748
5749 .shm_alloc_security = selinux_shm_alloc_security,
5750 .shm_free_security = selinux_shm_free_security,
5751 .shm_associate = selinux_shm_associate,
5752 .shm_shmctl = selinux_shm_shmctl,
5753 .shm_shmat = selinux_shm_shmat,
5754
Eric Paris828dfe12008-04-17 13:17:49 -04005755 .sem_alloc_security = selinux_sem_alloc_security,
5756 .sem_free_security = selinux_sem_free_security,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 .sem_associate = selinux_sem_associate,
5758 .sem_semctl = selinux_sem_semctl,
5759 .sem_semop = selinux_sem_semop,
5760
Eric Paris828dfe12008-04-17 13:17:49 -04005761 .d_instantiate = selinux_d_instantiate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762
Eric Paris828dfe12008-04-17 13:17:49 -04005763 .getprocattr = selinux_getprocattr,
5764 .setprocattr = selinux_setprocattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005766 .secid_to_secctx = selinux_secid_to_secctx,
David Howells63cb3442008-01-15 23:47:35 +00005767 .secctx_to_secid = selinux_secctx_to_secid,
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005768 .release_secctx = selinux_release_secctx,
David P. Quigley1ee65e32009-09-03 14:25:57 -04005769 .inode_notifysecctx = selinux_inode_notifysecctx,
5770 .inode_setsecctx = selinux_inode_setsecctx,
5771 .inode_getsecctx = selinux_inode_getsecctx,
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005772
Eric Paris828dfe12008-04-17 13:17:49 -04005773 .unix_stream_connect = selinux_socket_unix_stream_connect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774 .unix_may_send = selinux_socket_unix_may_send,
5775
5776 .socket_create = selinux_socket_create,
5777 .socket_post_create = selinux_socket_post_create,
5778 .socket_bind = selinux_socket_bind,
5779 .socket_connect = selinux_socket_connect,
5780 .socket_listen = selinux_socket_listen,
5781 .socket_accept = selinux_socket_accept,
5782 .socket_sendmsg = selinux_socket_sendmsg,
5783 .socket_recvmsg = selinux_socket_recvmsg,
5784 .socket_getsockname = selinux_socket_getsockname,
5785 .socket_getpeername = selinux_socket_getpeername,
5786 .socket_getsockopt = selinux_socket_getsockopt,
5787 .socket_setsockopt = selinux_socket_setsockopt,
5788 .socket_shutdown = selinux_socket_shutdown,
5789 .socket_sock_rcv_skb = selinux_socket_sock_rcv_skb,
Catherine Zhang2c7946a2006-03-20 22:41:23 -08005790 .socket_getpeersec_stream = selinux_socket_getpeersec_stream,
5791 .socket_getpeersec_dgram = selinux_socket_getpeersec_dgram,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792 .sk_alloc_security = selinux_sk_alloc_security,
5793 .sk_free_security = selinux_sk_free_security,
Venkat Yekkirala892c1412006-08-04 23:08:56 -07005794 .sk_clone_security = selinux_sk_clone_security,
Eric Paris828dfe12008-04-17 13:17:49 -04005795 .sk_getsecid = selinux_sk_getsecid,
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005796 .sock_graft = selinux_sock_graft,
5797 .inet_conn_request = selinux_inet_conn_request,
5798 .inet_csk_clone = selinux_inet_csk_clone,
Venkat Yekkirala6b877692006-11-08 17:04:09 -06005799 .inet_conn_established = selinux_inet_conn_established,
Eric Paris2606fd12010-10-13 16:24:41 -04005800 .secmark_relabel_packet = selinux_secmark_relabel_packet,
5801 .secmark_refcount_inc = selinux_secmark_refcount_inc,
5802 .secmark_refcount_dec = selinux_secmark_refcount_dec,
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005803 .req_classify_flow = selinux_req_classify_flow,
Paul Moore5dbbaf22013-01-14 07:12:19 +00005804 .tun_dev_alloc_security = selinux_tun_dev_alloc_security,
5805 .tun_dev_free_security = selinux_tun_dev_free_security,
Paul Mooreed6d76e2009-08-28 18:12:49 -04005806 .tun_dev_create = selinux_tun_dev_create,
Paul Moore5dbbaf22013-01-14 07:12:19 +00005807 .tun_dev_attach_queue = selinux_tun_dev_attach_queue,
Paul Mooreed6d76e2009-08-28 18:12:49 -04005808 .tun_dev_attach = selinux_tun_dev_attach,
Paul Moore5dbbaf22013-01-14 07:12:19 +00005809 .tun_dev_open = selinux_tun_dev_open,
Eric Dumazetca10b9e2013-04-08 17:58:11 +00005810 .skb_owned_by = selinux_skb_owned_by,
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005811
5812#ifdef CONFIG_SECURITY_NETWORK_XFRM
5813 .xfrm_policy_alloc_security = selinux_xfrm_policy_alloc,
5814 .xfrm_policy_clone_security = selinux_xfrm_policy_clone,
5815 .xfrm_policy_free_security = selinux_xfrm_policy_free,
Catherine Zhangc8c05a82006-06-08 23:39:49 -07005816 .xfrm_policy_delete_security = selinux_xfrm_policy_delete,
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005817 .xfrm_state_alloc_security = selinux_xfrm_state_alloc,
5818 .xfrm_state_free_security = selinux_xfrm_state_free,
Catherine Zhangc8c05a82006-06-08 23:39:49 -07005819 .xfrm_state_delete_security = selinux_xfrm_state_delete,
Eric Paris828dfe12008-04-17 13:17:49 -04005820 .xfrm_policy_lookup = selinux_xfrm_policy_lookup,
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07005821 .xfrm_state_pol_flow_match = selinux_xfrm_state_pol_flow_match,
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07005822 .xfrm_decode_session = selinux_xfrm_decode_session,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823#endif
Michael LeMayd7200242006-06-22 14:47:17 -07005824
5825#ifdef CONFIG_KEYS
Eric Paris828dfe12008-04-17 13:17:49 -04005826 .key_alloc = selinux_key_alloc,
5827 .key_free = selinux_key_free,
5828 .key_permission = selinux_key_permission,
David Howells70a5bb72008-04-29 01:01:26 -07005829 .key_getsecurity = selinux_key_getsecurity,
Michael LeMayd7200242006-06-22 14:47:17 -07005830#endif
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02005831
5832#ifdef CONFIG_AUDIT
5833 .audit_rule_init = selinux_audit_rule_init,
5834 .audit_rule_known = selinux_audit_rule_known,
5835 .audit_rule_match = selinux_audit_rule_match,
5836 .audit_rule_free = selinux_audit_rule_free,
5837#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838};
5839
5840static __init int selinux_init(void)
5841{
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02005842 if (!security_module_enable(&selinux_ops)) {
5843 selinux_enabled = 0;
5844 return 0;
5845 }
5846
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 if (!selinux_enabled) {
5848 printk(KERN_INFO "SELinux: Disabled at boot.\n");
5849 return 0;
5850 }
5851
5852 printk(KERN_INFO "SELinux: Initializing.\n");
5853
5854 /* Set the security state for the initial task. */
David Howellsd84f4f92008-11-14 10:39:23 +11005855 cred_init_security();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04005857 default_noexec = !(VM_DATA_DEFAULT_FLAGS & VM_EXEC);
5858
James Morris7cae7e22006-03-22 00:09:22 -08005859 sel_inode_cache = kmem_cache_create("selinux_inode_security",
5860 sizeof(struct inode_security_struct),
Paul Mundt20c2df82007-07-20 10:11:58 +09005861 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 avc_init();
5863
Eric Paris828dfe12008-04-17 13:17:49 -04005864 if (register_security(&selinux_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 panic("SELinux: Unable to register with kernel.\n");
5866
Eric Paris828dfe12008-04-17 13:17:49 -04005867 if (selinux_enforcing)
Eric Parisfadcdb42007-02-22 18:11:31 -05005868 printk(KERN_DEBUG "SELinux: Starting in enforcing mode\n");
Eric Paris828dfe12008-04-17 13:17:49 -04005869 else
Eric Parisfadcdb42007-02-22 18:11:31 -05005870 printk(KERN_DEBUG "SELinux: Starting in permissive mode\n");
Michael LeMayd7200242006-06-22 14:47:17 -07005871
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 return 0;
5873}
5874
Al Viroe8c26252010-03-23 06:36:54 -04005875static void delayed_superblock_init(struct super_block *sb, void *unused)
5876{
5877 superblock_doinit(sb, NULL);
5878}
5879
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880void selinux_complete_init(void)
5881{
Eric Parisfadcdb42007-02-22 18:11:31 -05005882 printk(KERN_DEBUG "SELinux: Completing initialization.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883
5884 /* Set up any superblocks initialized prior to the policy load. */
Eric Parisfadcdb42007-02-22 18:11:31 -05005885 printk(KERN_DEBUG "SELinux: Setting up existing superblocks.\n");
Al Viroe8c26252010-03-23 06:36:54 -04005886 iterate_supers(delayed_superblock_init, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887}
5888
5889/* SELinux requires early initialization in order to label
5890 all processes and objects when they are created. */
5891security_initcall(selinux_init);
5892
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08005893#if defined(CONFIG_NETFILTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894
Paul Mooreeffad8d2008-01-29 08:49:27 -05005895static struct nf_hook_ops selinux_ipv4_ops[] = {
5896 {
5897 .hook = selinux_ipv4_postroute,
5898 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005899 .pf = NFPROTO_IPV4,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005900 .hooknum = NF_INET_POST_ROUTING,
5901 .priority = NF_IP_PRI_SELINUX_LAST,
5902 },
5903 {
5904 .hook = selinux_ipv4_forward,
5905 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005906 .pf = NFPROTO_IPV4,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005907 .hooknum = NF_INET_FORWARD,
5908 .priority = NF_IP_PRI_SELINUX_FIRST,
Paul Moore948bf852008-10-10 10:16:32 -04005909 },
5910 {
5911 .hook = selinux_ipv4_output,
5912 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005913 .pf = NFPROTO_IPV4,
Paul Moore948bf852008-10-10 10:16:32 -04005914 .hooknum = NF_INET_LOCAL_OUT,
5915 .priority = NF_IP_PRI_SELINUX_FIRST,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917};
5918
5919#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
5920
Paul Mooreeffad8d2008-01-29 08:49:27 -05005921static struct nf_hook_ops selinux_ipv6_ops[] = {
5922 {
5923 .hook = selinux_ipv6_postroute,
5924 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005925 .pf = NFPROTO_IPV6,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005926 .hooknum = NF_INET_POST_ROUTING,
5927 .priority = NF_IP6_PRI_SELINUX_LAST,
5928 },
5929 {
5930 .hook = selinux_ipv6_forward,
5931 .owner = THIS_MODULE,
Alban Crequy2597a832012-05-14 03:56:39 +00005932 .pf = NFPROTO_IPV6,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005933 .hooknum = NF_INET_FORWARD,
5934 .priority = NF_IP6_PRI_SELINUX_FIRST,
5935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936};
5937
5938#endif /* IPV6 */
5939
5940static int __init selinux_nf_ip_init(void)
5941{
5942 int err = 0;
5943
5944 if (!selinux_enabled)
5945 goto out;
Eric Parisfadcdb42007-02-22 18:11:31 -05005946
5947 printk(KERN_DEBUG "SELinux: Registering netfilter hooks\n");
5948
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07005949 err = nf_register_hooks(selinux_ipv4_ops, ARRAY_SIZE(selinux_ipv4_ops));
5950 if (err)
5951 panic("SELinux: nf_register_hooks for IPv4: error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952
5953#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07005954 err = nf_register_hooks(selinux_ipv6_ops, ARRAY_SIZE(selinux_ipv6_ops));
5955 if (err)
5956 panic("SELinux: nf_register_hooks for IPv6: error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957#endif /* IPV6 */
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005958
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959out:
5960 return err;
5961}
5962
5963__initcall(selinux_nf_ip_init);
5964
5965#ifdef CONFIG_SECURITY_SELINUX_DISABLE
5966static void selinux_nf_ip_exit(void)
5967{
Eric Parisfadcdb42007-02-22 18:11:31 -05005968 printk(KERN_DEBUG "SELinux: Unregistering netfilter hooks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07005970 nf_unregister_hooks(selinux_ipv4_ops, ARRAY_SIZE(selinux_ipv4_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07005972 nf_unregister_hooks(selinux_ipv6_ops, ARRAY_SIZE(selinux_ipv6_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973#endif /* IPV6 */
5974}
5975#endif
5976
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08005977#else /* CONFIG_NETFILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
5979#ifdef CONFIG_SECURITY_SELINUX_DISABLE
5980#define selinux_nf_ip_exit()
5981#endif
5982
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08005983#endif /* CONFIG_NETFILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984
5985#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Eric Paris828dfe12008-04-17 13:17:49 -04005986static int selinux_disabled;
5987
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988int selinux_disable(void)
5989{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990 if (ss_initialized) {
5991 /* Not permitted after initial policy load. */
5992 return -EINVAL;
5993 }
5994
5995 if (selinux_disabled) {
5996 /* Only do this once. */
5997 return -EINVAL;
5998 }
5999
6000 printk(KERN_INFO "SELinux: Disabled at runtime.\n");
6001
6002 selinux_disabled = 1;
Stephen Smalley30d55282006-05-03 10:52:36 -04006003 selinux_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
wzt.wzt@gmail.com189b3b12010-02-23 23:15:28 +08006005 reset_security_ops();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006
Eric Parisaf8ff042009-09-20 21:23:01 -04006007 /* Try to destroy the avc node cache */
6008 avc_disable();
6009
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010 /* Unregister netfilter hooks. */
6011 selinux_nf_ip_exit();
6012
6013 /* Unregister selinuxfs. */
6014 exit_sel_fs();
6015
6016 return 0;
6017}
6018#endif