blob: 5b6895e4fc29eb66859a3d6941b8a0f2df408942 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * NSA Security-Enhanced Linux (SELinux) security module
4 *
5 * This file contains the SELinux hook function implementations.
6 *
Stephen Smalley7efbb602017-08-17 13:32:36 -04007 * Authors: Stephen Smalley, <sds@tycho.nsa.gov>
Eric Paris828dfe12008-04-17 13:17:49 -04008 * Chris Vance, <cvance@nai.com>
9 * Wayne Salamon, <wsalamon@nai.com>
10 * James Morris <jmorris@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Copyright (C) 2001,2002 Networks Associates Technology, Inc.
Eric Paris2069f452008-07-04 09:47:13 +100013 * Copyright (C) 2003-2008 Red Hat, Inc., James Morris <jmorris@redhat.com>
14 * Eric Paris <eparis@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
Eric Paris828dfe12008-04-17 13:17:49 -040016 * <dgoeddel@trustedcs.com>
Paul Mooreed6d76e2009-08-28 18:12:49 -040017 * Copyright (C) 2006, 2007, 2009 Hewlett-Packard Development Company, L.P.
Paul Moore82c21bf2011-08-01 11:10:33 +000018 * Paul Moore <paul@paul-moore.com>
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +090019 * Copyright (C) 2007 Hitachi Software Engineering Co., Ltd.
Eric Paris828dfe12008-04-17 13:17:49 -040020 * Yuichi Nakamura <ynakam@hitachisoft.jp>
Daniel Jurgens3a976fa2017-05-19 15:48:56 +030021 * Copyright (C) 2016 Mellanox Technologies
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
Eric Paris0b24dcb2011-02-25 15:39:20 -050025#include <linux/kd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
Scott Brandenb89999d02020-10-02 10:38:15 -070027#include <linux/kernel_read_file.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070028#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/errno.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010030#include <linux/sched/signal.h>
Ingo Molnar29930022017-02-08 18:51:36 +010031#include <linux/sched/task.h>
Casey Schaufler3c4ed7b2015-05-02 15:10:46 -070032#include <linux/lsm_hooks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#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>
David Howells442155c2018-11-01 23:07:24 +000049#include <linux/fs_context.h>
50#include <linux/fs_parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/netfilter_ipv4.h>
52#include <linux/netfilter_ipv6.h>
53#include <linux/tty.h>
54#include <net/icmp.h>
Stephen Hemminger227b60f2007-10-10 17:30:46 -070055#include <net/ip.h> /* for local_port_range[] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <net/tcp.h> /* struct or_callable used in sock_rcv_skb */
Paul Moore47180062013-12-04 16:10:45 -050057#include <net/inet_connection_sock.h>
Paul Moore220deb92008-01-29 08:38:23 -050058#include <net/net_namespace.h>
Paul Moored621d352008-01-29 08:43:36 -050059#include <net/netlabel.h>
Eric Parisf5269712008-05-14 11:27:45 -040060#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <asm/ioctls.h>
Arun Sharma600634972011-07-26 16:09:06 -070062#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/bitops.h>
64#include <linux/interrupt.h>
65#include <linux/netdevice.h> /* for network interface checks */
Hong zhi guo77954982013-03-27 06:49:35 +000066#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/tcp.h>
68#include <linux/udp.h>
James Morris2ee92d42006-11-13 16:09:01 -080069#include <linux/dccp.h>
Richard Hainesd4529302018-02-13 20:57:18 +000070#include <linux/sctp.h>
71#include <net/sctp/structs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/quota.h>
73#include <linux/un.h> /* for Unix socket types */
74#include <net/af_unix.h> /* for Unix socket types */
75#include <linux/parser.h>
76#include <linux/nfs_mount.h>
77#include <net/ipv6.h>
78#include <linux/hugetlb.h>
79#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/audit.h>
Eric Paris6931dfc2005-06-30 02:58:51 -070081#include <linux/string.h>
Eric Paris23970742006-09-25 23:32:01 -070082#include <linux/mutex.h>
Frank Mayharf06febc2008-09-12 09:54:39 -070083#include <linux/posix-timers.h>
Kees Cook00234592010-02-03 15:36:43 -080084#include <linux/syslog.h>
Serge E. Hallyn34867402011-03-23 16:43:17 -070085#include <linux/user_namespace.h>
Paul Gortmaker44fc7ea2011-05-26 20:52:10 -040086#include <linux/export.h>
Al Viro40401532012-02-13 03:58:52 +000087#include <linux/msg.h>
88#include <linux/shm.h>
Chenbo Fengec27c352017-10-18 13:00:25 -070089#include <linux/bpf.h>
Ondrej Mosnacekec882da2019-02-22 15:57:17 +010090#include <linux/kernfs.h>
91#include <linux/stringhash.h> /* for hashlen_string() */
David Howellse262e32d2018-11-01 23:07:23 +000092#include <uapi/linux/mount.h>
Aaron Goidelac5656d2019-08-12 11:20:00 -040093#include <linux/fsnotify.h>
94#include <linux/fanotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#include "avc.h"
97#include "objsec.h"
98#include "netif.h"
Paul Moore224dfbd2008-01-29 08:38:13 -050099#include "netnode.h"
Paul Moore3e112172008-04-10 10:48:14 -0400100#include "netport.h"
Daniel Jurgens409dcf32017-05-19 15:48:59 +0300101#include "ibpkey.h"
Trent Jaegerd28d1e02005-12-13 23:12:40 -0800102#include "xfrm.h"
Paul Moorec60475b2007-02-28 15:14:23 -0500103#include "netlabel.h"
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +0200104#include "audit.h"
James Morris7b98a582011-08-30 12:52:32 +1000105#include "avc_ss.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500107struct selinux_state selinux_state;
108
Paul Moored621d352008-01-29 08:43:36 -0500109/* SECMARK reference count */
James Morris56a4ca92011-08-17 11:08:43 +1000110static atomic_t selinux_secmark_refcount = ATOMIC_INIT(0);
Paul Moored621d352008-01-29 08:43:36 -0500111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500113static int selinux_enforcing_boot __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115static int __init enforcing_setup(char *str)
116{
Eric Parisf5269712008-05-14 11:27:45 -0400117 unsigned long enforcing;
Jingoo Han29707b22014-02-05 15:13:14 +0900118 if (!kstrtoul(str, 0, &enforcing))
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500119 selinux_enforcing_boot = enforcing ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return 1;
121}
122__setup("enforcing=", enforcing_setup);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500123#else
124#define selinux_enforcing_boot 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif
126
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500127int selinux_enabled_boot __initdata = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#ifdef CONFIG_SECURITY_SELINUX_BOOTPARAM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static int __init selinux_enabled_setup(char *str)
130{
Eric Parisf5269712008-05-14 11:27:45 -0400131 unsigned long enabled;
Jingoo Han29707b22014-02-05 15:13:14 +0900132 if (!kstrtoul(str, 0, &enabled))
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500133 selinux_enabled_boot = enabled ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return 1;
135}
136__setup("selinux=", selinux_enabled_setup);
137#endif
138
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500139static unsigned int selinux_checkreqprot_boot =
140 CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
141
142static int __init checkreqprot_setup(char *str)
143{
144 unsigned long checkreqprot;
145
Stephen Smalleye9c38f92020-01-08 11:24:47 -0500146 if (!kstrtoul(str, 0, &checkreqprot)) {
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500147 selinux_checkreqprot_boot = checkreqprot ? 1 : 0;
Stephen Smalleye9c38f92020-01-08 11:24:47 -0500148 if (checkreqprot)
149 pr_warn("SELinux: checkreqprot set to 1 via kernel parameter. This is deprecated and will be rejected in a future kernel release.\n");
150 }
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500151 return 1;
152}
153__setup("checkreqprot=", checkreqprot_setup);
154
Paul Moored621d352008-01-29 08:43:36 -0500155/**
156 * selinux_secmark_enabled - Check to see if SECMARK is currently enabled
157 *
158 * Description:
159 * This function checks the SECMARK reference counter to see if any SECMARK
160 * targets are currently configured, if the reference counter is greater than
161 * zero SECMARK is considered to be enabled. Returns true (1) if SECMARK is
Chris PeBenito2be4d742013-05-03 09:05:39 -0400162 * enabled, false (0) if SECMARK is disabled. If the always_check_network
163 * policy capability is enabled, SECMARK is always considered enabled.
Paul Moored621d352008-01-29 08:43:36 -0500164 *
165 */
166static int selinux_secmark_enabled(void)
167{
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500168 return (selinux_policycap_alwaysnetwork() ||
169 atomic_read(&selinux_secmark_refcount));
Chris PeBenito2be4d742013-05-03 09:05:39 -0400170}
171
172/**
173 * selinux_peerlbl_enabled - Check to see if peer labeling is currently enabled
174 *
175 * Description:
176 * This function checks if NetLabel or labeled IPSEC is enabled. Returns true
177 * (1) if any are enabled or false (0) if neither are enabled. If the
178 * always_check_network policy capability is enabled, peer labeling
179 * is always considered enabled.
180 *
181 */
182static int selinux_peerlbl_enabled(void)
183{
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500184 return (selinux_policycap_alwaysnetwork() ||
185 netlbl_enabled() || selinux_xfrm_enabled());
Paul Moored621d352008-01-29 08:43:36 -0500186}
187
Paul Moore615e51f2014-06-26 14:33:56 -0400188static int selinux_netcache_avc_callback(u32 event)
189{
190 if (event == AVC_CALLBACK_RESET) {
191 sel_netif_flush();
192 sel_netnode_flush();
193 sel_netport_flush();
194 synchronize_net();
195 }
196 return 0;
197}
198
Daniel Jurgens8f408ab2017-05-19 15:48:53 +0300199static int selinux_lsm_notifier_avc_callback(u32 event)
200{
Daniel Jurgens409dcf32017-05-19 15:48:59 +0300201 if (event == AVC_CALLBACK_RESET) {
202 sel_ib_pkey_flush();
Janne Karhunen42df7442019-06-14 15:20:14 +0300203 call_blocking_lsm_notifier(LSM_POLICY_CHANGE, NULL);
Daniel Jurgens409dcf32017-05-19 15:48:59 +0300204 }
Daniel Jurgens8f408ab2017-05-19 15:48:53 +0300205
206 return 0;
207}
208
David Howellsd84f4f92008-11-14 10:39:23 +1100209/*
210 * initialise the security for the init task
211 */
212static void cred_init_security(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
David Howells3b11a1d2008-11-14 10:39:26 +1100214 struct cred *cred = (struct cred *) current->real_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 struct task_security_struct *tsec;
216
Casey Schauflerbbd36622018-11-12 09:30:56 -0800217 tsec = selinux_cred(cred);
David Howellsd84f4f92008-11-14 10:39:23 +1100218 tsec->osid = tsec->sid = SECINITSID_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
David Howells275bb412008-11-14 10:39:19 +1100221/*
David Howells88e67f32008-11-14 10:39:21 +1100222 * get the security ID of a set of credentials
223 */
224static inline u32 cred_sid(const struct cred *cred)
225{
226 const struct task_security_struct *tsec;
227
Casey Schaufler0c6cfa62018-09-21 17:17:16 -0700228 tsec = selinux_cred(cred);
David Howells88e67f32008-11-14 10:39:21 +1100229 return tsec->sid;
230}
231
232/*
David Howells3b11a1d2008-11-14 10:39:26 +1100233 * get the objective security ID of a task
David Howells275bb412008-11-14 10:39:19 +1100234 */
Paul Mooreeb1231f2021-02-18 15:13:40 -0500235static inline u32 task_sid_obj(const struct task_struct *task)
David Howells275bb412008-11-14 10:39:19 +1100236{
David Howells275bb412008-11-14 10:39:19 +1100237 u32 sid;
238
239 rcu_read_lock();
David Howells88e67f32008-11-14 10:39:21 +1100240 sid = cred_sid(__task_cred(task));
David Howells275bb412008-11-14 10:39:19 +1100241 rcu_read_unlock();
242 return sid;
243}
244
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500245static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dentry);
246
247/*
248 * Try reloading inode security labels that have been marked as invalid. The
249 * @may_sleep parameter indicates when sleeping and thus reloading labels is
Andreas Gruenbacher42059112016-11-10 22:18:27 +0100250 * allowed; when set to false, returns -ECHILD when the label is
Al Viroe9193282018-04-24 21:31:02 -0400251 * invalid. The @dentry parameter should be set to a dentry of the inode.
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500252 */
253static int __inode_security_revalidate(struct inode *inode,
Al Viroe9193282018-04-24 21:31:02 -0400254 struct dentry *dentry,
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500255 bool may_sleep)
256{
Casey Schaufler80788c22018-09-21 17:19:11 -0700257 struct inode_security_struct *isec = selinux_inode(inode);
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500258
259 might_sleep_if(may_sleep);
260
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +0100261 if (selinux_initialized(&selinux_state) &&
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500262 isec->initialized != LABEL_INITIALIZED) {
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500263 if (!may_sleep)
264 return -ECHILD;
265
266 /*
267 * Try reloading the inode security label. This will fail if
268 * @opt_dentry is NULL and no dentry for this inode can be
269 * found; in that case, continue using the old label.
270 */
Al Viroe9193282018-04-24 21:31:02 -0400271 inode_doinit_with_dentry(inode, dentry);
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500272 }
273 return 0;
274}
275
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500276static struct inode_security_struct *inode_security_novalidate(struct inode *inode)
277{
Casey Schaufler80788c22018-09-21 17:19:11 -0700278 return selinux_inode(inode);
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500279}
280
281static struct inode_security_struct *inode_security_rcu(struct inode *inode, bool rcu)
282{
283 int error;
284
285 error = __inode_security_revalidate(inode, NULL, !rcu);
286 if (error)
287 return ERR_PTR(error);
Casey Schaufler80788c22018-09-21 17:19:11 -0700288 return selinux_inode(inode);
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500289}
290
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -0500291/*
292 * Get the security label of an inode.
293 */
294static struct inode_security_struct *inode_security(struct inode *inode)
295{
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500296 __inode_security_revalidate(inode, NULL, true);
Casey Schaufler80788c22018-09-21 17:19:11 -0700297 return selinux_inode(inode);
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -0500298}
299
Paul Moore2c971652016-04-19 16:36:28 -0400300static struct inode_security_struct *backing_inode_security_novalidate(struct dentry *dentry)
301{
302 struct inode *inode = d_backing_inode(dentry);
303
Casey Schaufler80788c22018-09-21 17:19:11 -0700304 return selinux_inode(inode);
Paul Moore2c971652016-04-19 16:36:28 -0400305}
306
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -0500307/*
308 * Get the security label of a dentry's backing inode.
309 */
310static struct inode_security_struct *backing_inode_security(struct dentry *dentry)
311{
312 struct inode *inode = d_backing_inode(dentry);
313
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -0500314 __inode_security_revalidate(inode, dentry, true);
Casey Schaufler80788c22018-09-21 17:19:11 -0700315 return selinux_inode(inode);
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -0500316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318static void inode_free_security(struct inode *inode)
319{
Casey Schaufler80788c22018-09-21 17:19:11 -0700320 struct inode_security_struct *isec = selinux_inode(inode);
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700321 struct superblock_security_struct *sbsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700323 if (!isec)
324 return;
Casey Schaufler1aea7802021-04-22 17:41:15 +0200325 sbsec = selinux_superblock(inode->i_sb);
Waiman Long9629d042015-07-10 17:19:56 -0400326 /*
327 * As not all inode security structures are in a list, we check for
328 * empty list outside of the lock to make sure that we won't waste
329 * time taking a lock doing nothing.
330 *
331 * The list_del_init() function can be safely called more than once.
332 * It should not be possible for this function to be called with
333 * concurrent list_add(), but for better safety against future changes
334 * in the code, we use list_empty_careful() here.
335 */
336 if (!list_empty_careful(&isec->list)) {
337 spin_lock(&sbsec->isec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 list_del_init(&isec->list);
Waiman Long9629d042015-07-10 17:19:56 -0400339 spin_unlock(&sbsec->isec_lock);
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Al Virobd323652018-12-13 15:04:59 -0500343struct selinux_mnt_opts {
344 const char *fscontext, *context, *rootcontext, *defcontext;
345};
346
Al Viro204cc0c2018-12-13 13:41:47 -0500347static void selinux_free_mnt_opts(void *mnt_opts)
348{
Al Virobd323652018-12-13 15:04:59 -0500349 struct selinux_mnt_opts *opts = mnt_opts;
350 kfree(opts->fscontext);
351 kfree(opts->context);
352 kfree(opts->rootcontext);
353 kfree(opts->defcontext);
Al Viro204cc0c2018-12-13 13:41:47 -0500354 kfree(opts);
355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357enum {
Eric Paris31e87932007-09-19 17:19:12 -0400358 Opt_error = -1,
David Howells442155c2018-11-01 23:07:24 +0000359 Opt_context = 0,
360 Opt_defcontext = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 Opt_fscontext = 2,
David Howells442155c2018-11-01 23:07:24 +0000362 Opt_rootcontext = 3,
363 Opt_seclabel = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364};
365
Al Viroda3d76a2018-12-17 10:14:16 -0500366#define A(s, has_arg) {#s, sizeof(#s) - 1, Opt_##s, has_arg}
Al Viro169d68efb2018-12-14 22:44:50 -0500367static struct {
368 const char *name;
369 int len;
370 int opt;
371 bool has_arg;
372} tokens[] = {
Al Viroda3d76a2018-12-17 10:14:16 -0500373 A(context, true),
374 A(fscontext, true),
375 A(defcontext, true),
376 A(rootcontext, true),
377 A(seclabel, false),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378};
Al Viro169d68efb2018-12-14 22:44:50 -0500379#undef A
380
381static int match_opt_prefix(char *s, int l, char **arg)
382{
383 int i;
384
385 for (i = 0; i < ARRAY_SIZE(tokens); i++) {
386 size_t len = tokens[i].len;
387 if (len > l || memcmp(s, tokens[i].name, len))
388 continue;
389 if (tokens[i].has_arg) {
390 if (len == l || s[len] != '=')
391 continue;
392 *arg = s + len + 1;
393 } else if (len != l)
394 continue;
395 return tokens[i].opt;
396 }
397 return Opt_error;
398}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400#define SEL_MOUNT_FAIL_MSG "SELinux: duplicate or incompatible mount options\n"
401
Eric Parisc312feb2006-07-10 04:43:53 -0700402static int may_context_mount_sb_relabel(u32 sid,
403 struct superblock_security_struct *sbsec,
David Howells275bb412008-11-14 10:39:19 +1100404 const struct cred *cred)
Eric Parisc312feb2006-07-10 04:43:53 -0700405{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -0700406 const struct task_security_struct *tsec = selinux_cred(cred);
Eric Parisc312feb2006-07-10 04:43:53 -0700407 int rc;
408
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500409 rc = avc_has_perm(&selinux_state,
410 tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM,
Eric Parisc312feb2006-07-10 04:43:53 -0700411 FILESYSTEM__RELABELFROM, NULL);
412 if (rc)
413 return rc;
414
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500415 rc = avc_has_perm(&selinux_state,
416 tsec->sid, sid, SECCLASS_FILESYSTEM,
Eric Parisc312feb2006-07-10 04:43:53 -0700417 FILESYSTEM__RELABELTO, NULL);
418 return rc;
419}
420
Eric Paris08089252006-07-10 04:43:55 -0700421static int may_context_mount_inode_relabel(u32 sid,
422 struct superblock_security_struct *sbsec,
David Howells275bb412008-11-14 10:39:19 +1100423 const struct cred *cred)
Eric Paris08089252006-07-10 04:43:55 -0700424{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -0700425 const struct task_security_struct *tsec = selinux_cred(cred);
Eric Paris08089252006-07-10 04:43:55 -0700426 int rc;
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500427 rc = avc_has_perm(&selinux_state,
428 tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM,
Eric Paris08089252006-07-10 04:43:55 -0700429 FILESYSTEM__RELABELFROM, NULL);
430 if (rc)
431 return rc;
432
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500433 rc = avc_has_perm(&selinux_state,
434 sid, sbsec->sid, SECCLASS_FILESYSTEM,
Eric Paris08089252006-07-10 04:43:55 -0700435 FILESYSTEM__ASSOCIATE, NULL);
436 return rc;
437}
438
Ondrej Mosnaceka83d6dd2018-12-21 21:18:52 +0100439static int selinux_is_genfs_special_handling(struct super_block *sb)
Eric Parisb43e7252012-10-10 14:27:35 -0400440{
Ondrej Mosnaceka83d6dd2018-12-21 21:18:52 +0100441 /* Special handling. Genfs but also in-core setxattr handler */
442 return !strcmp(sb->s_type->name, "sysfs") ||
Mark Salyzynd5f3a5f2015-02-04 11:34:30 -0500443 !strcmp(sb->s_type->name, "pstore") ||
444 !strcmp(sb->s_type->name, "debugfs") ||
Yongqin Liua2c7c6f2017-01-09 10:07:30 -0500445 !strcmp(sb->s_type->name, "tracefs") ||
Stephen Smalley2651225b2017-02-28 10:35:56 -0500446 !strcmp(sb->s_type->name, "rootfs") ||
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500447 (selinux_policycap_cgroupseclabel() &&
Stephen Smalley2651225b2017-02-28 10:35:56 -0500448 (!strcmp(sb->s_type->name, "cgroup") ||
449 !strcmp(sb->s_type->name, "cgroup2")));
Eric Parisb43e7252012-10-10 14:27:35 -0400450}
451
Ondrej Mosnaceka83d6dd2018-12-21 21:18:52 +0100452static int selinux_is_sblabel_mnt(struct super_block *sb)
453{
Casey Schaufler1aea7802021-04-22 17:41:15 +0200454 struct superblock_security_struct *sbsec = selinux_superblock(sb);
Ondrej Mosnaceka83d6dd2018-12-21 21:18:52 +0100455
456 /*
457 * IMPORTANT: Double-check logic in this function when adding a new
458 * SECURITY_FS_USE_* definition!
459 */
460 BUILD_BUG_ON(SECURITY_FS_USE_MAX != 7);
461
462 switch (sbsec->behavior) {
463 case SECURITY_FS_USE_XATTR:
464 case SECURITY_FS_USE_TRANS:
465 case SECURITY_FS_USE_TASK:
466 case SECURITY_FS_USE_NATIVE:
467 return 1;
468
469 case SECURITY_FS_USE_GENFS:
470 return selinux_is_genfs_special_handling(sb);
471
472 /* Never allow relabeling on context mounts */
473 case SECURITY_FS_USE_MNTPOINT:
474 case SECURITY_FS_USE_NONE:
475 default:
476 return 0;
477 }
478}
479
Ondrej Mosnacek08abe462021-01-13 13:38:02 +0100480static int sb_check_xattr_support(struct super_block *sb)
481{
482 struct superblock_security_struct *sbsec = sb->s_security;
483 struct dentry *root = sb->s_root;
484 struct inode *root_inode = d_backing_inode(root);
485 u32 sid;
486 int rc;
487
488 /*
489 * Make sure that the xattr handler exists and that no
490 * error other than -ENODATA is returned by getxattr on
491 * the root directory. -ENODATA is ok, as this may be
492 * the first boot of the SELinux kernel before we have
493 * assigned xattr values to the filesystem.
494 */
495 if (!(root_inode->i_opflags & IOP_XATTR)) {
496 pr_warn("SELinux: (dev %s, type %s) has no xattr support\n",
497 sb->s_id, sb->s_type->name);
498 goto fallback;
499 }
500
501 rc = __vfs_getxattr(root, root_inode, XATTR_NAME_SELINUX, NULL, 0);
502 if (rc < 0 && rc != -ENODATA) {
503 if (rc == -EOPNOTSUPP) {
504 pr_warn("SELinux: (dev %s, type %s) has no security xattr handler\n",
505 sb->s_id, sb->s_type->name);
506 goto fallback;
507 } else {
508 pr_warn("SELinux: (dev %s, type %s) getxattr errno %d\n",
509 sb->s_id, sb->s_type->name, -rc);
510 return rc;
511 }
512 }
513 return 0;
514
515fallback:
516 /* No xattr support - try to fallback to genfs if possible. */
517 rc = security_genfs_sid(&selinux_state, sb->s_type->name, "/",
518 SECCLASS_DIR, &sid);
519 if (rc)
520 return -EOPNOTSUPP;
521
522 pr_warn("SELinux: (dev %s, type %s) falling back to genfs\n",
523 sb->s_id, sb->s_type->name);
524 sbsec->behavior = SECURITY_FS_USE_GENFS;
525 sbsec->sid = sid;
526 return 0;
527}
528
Eric Parisc9180a52007-11-30 13:00:35 -0500529static int sb_finish_set_opts(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Casey Schaufler1aea7802021-04-22 17:41:15 +0200531 struct superblock_security_struct *sbsec = selinux_superblock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 struct dentry *root = sb->s_root;
David Howellsc6f493d2015-03-17 22:26:22 +0000533 struct inode *root_inode = d_backing_inode(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int rc = 0;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (sbsec->behavior == SECURITY_FS_USE_XATTR) {
Ondrej Mosnacek08abe462021-01-13 13:38:02 +0100537 rc = sb_check_xattr_support(sb);
538 if (rc)
539 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541
Eric Pariseadcabc2012-08-24 15:59:14 -0400542 sbsec->flags |= SE_SBINITIALIZED;
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400543
544 /*
545 * Explicitly set or clear SBLABEL_MNT. It's not sufficient to simply
546 * leave the flag untouched because sb_clone_mnt_opts might be handing
547 * us a superblock that needs the flag to be cleared.
548 */
Eric Parisb43e7252012-10-10 14:27:35 -0400549 if (selinux_is_sblabel_mnt(sb))
Eric Paris12f348b2012-10-09 10:56:25 -0400550 sbsec->flags |= SBLABEL_MNT;
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400551 else
552 sbsec->flags &= ~SBLABEL_MNT;
David P. Quigleyddd29ec2009-09-09 14:25:37 -0400553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 /* Initialize the root inode. */
Eric Parisc9180a52007-11-30 13:00:35 -0500555 rc = inode_doinit_with_dentry(root_inode, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 /* Initialize any other inodes associated with the superblock, e.g.
558 inodes created prior to initial policy load or inodes created
559 during get_sb by a pseudo filesystem that directly
560 populates itself. */
561 spin_lock(&sbsec->isec_lock);
Al Viro8d641242018-12-10 15:34:12 -0500562 while (!list_empty(&sbsec->isec_head)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 struct inode_security_struct *isec =
Al Viro8d641242018-12-10 15:34:12 -0500564 list_first_entry(&sbsec->isec_head,
Eric Parisc9180a52007-11-30 13:00:35 -0500565 struct inode_security_struct, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 struct inode *inode = isec->inode;
Stephen Smalley923190d2014-10-06 16:32:52 -0400567 list_del_init(&isec->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 spin_unlock(&sbsec->isec_lock);
569 inode = igrab(inode);
570 if (inode) {
Eric Parisc9180a52007-11-30 13:00:35 -0500571 if (!IS_PRIVATE(inode))
Paul Moorecb89e242020-01-10 16:32:10 -0500572 inode_doinit_with_dentry(inode, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 iput(inode);
574 }
575 spin_lock(&sbsec->isec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577 spin_unlock(&sbsec->isec_lock);
Eric Parisc9180a52007-11-30 13:00:35 -0500578 return rc;
579}
580
Eric Parisc9180a52007-11-30 13:00:35 -0500581static int bad_option(struct superblock_security_struct *sbsec, char flag,
582 u32 old_sid, u32 new_sid)
583{
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500584 char mnt_flags = sbsec->flags & SE_MNTMASK;
585
Eric Parisc9180a52007-11-30 13:00:35 -0500586 /* check if the old mount command had the same options */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500587 if (sbsec->flags & SE_SBINITIALIZED)
Eric Parisc9180a52007-11-30 13:00:35 -0500588 if (!(sbsec->flags & flag) ||
589 (old_sid != new_sid))
590 return 1;
591
592 /* check if we were passed the same options twice,
593 * aka someone passed context=a,context=b
594 */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500595 if (!(sbsec->flags & SE_SBINITIALIZED))
596 if (mnt_flags & flag)
Eric Parisc9180a52007-11-30 13:00:35 -0500597 return 1;
598 return 0;
599}
Eric Parise0007522008-03-05 10:31:54 -0500600
Scott Mayhewcc274ae2021-12-15 16:28:40 -0500601static int parse_sid(struct super_block *sb, const char *s, u32 *sid,
602 gfp_t gfp)
Al Virobd323652018-12-13 15:04:59 -0500603{
604 int rc = security_context_str_to_sid(&selinux_state, s,
Scott Mayhewcc274ae2021-12-15 16:28:40 -0500605 sid, gfp);
Al Virobd323652018-12-13 15:04:59 -0500606 if (rc)
607 pr_warn("SELinux: security_context_str_to_sid"
608 "(%s) failed for (dev %s, type %s) errno=%d\n",
609 s, sb->s_id, sb->s_type->name, rc);
610 return rc;
611}
612
Eric Parisc9180a52007-11-30 13:00:35 -0500613/*
614 * Allow filesystems with binary mount data to explicitly set mount point
615 * labeling information.
616 */
Eric Parise0007522008-03-05 10:31:54 -0500617static int selinux_set_mnt_opts(struct super_block *sb,
Al Viro204cc0c2018-12-13 13:41:47 -0500618 void *mnt_opts,
David Quigley649f6e72013-05-22 12:50:36 -0400619 unsigned long kern_flags,
620 unsigned long *set_kern_flags)
Eric Parisc9180a52007-11-30 13:00:35 -0500621{
David Howells275bb412008-11-14 10:39:19 +1100622 const struct cred *cred = current_cred();
Casey Schaufler1aea7802021-04-22 17:41:15 +0200623 struct superblock_security_struct *sbsec = selinux_superblock(sb);
Ondrej Mosnacekb159e862020-11-04 13:01:10 +0100624 struct dentry *root = sb->s_root;
Al Virobd323652018-12-13 15:04:59 -0500625 struct selinux_mnt_opts *opts = mnt_opts;
Paul Moore2c971652016-04-19 16:36:28 -0400626 struct inode_security_struct *root_isec;
Eric Parisc9180a52007-11-30 13:00:35 -0500627 u32 fscontext_sid = 0, context_sid = 0, rootcontext_sid = 0;
628 u32 defcontext_sid = 0;
Al Virobd323652018-12-13 15:04:59 -0500629 int rc = 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500630
631 mutex_lock(&sbsec->lock);
632
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +0100633 if (!selinux_initialized(&selinux_state)) {
Al Virobd323652018-12-13 15:04:59 -0500634 if (!opts) {
Eric Parisc9180a52007-11-30 13:00:35 -0500635 /* Defer initialization until selinux_complete_init,
636 after the initial policy is loaded and the security
637 server is ready to handle calls. */
Eric Parisc9180a52007-11-30 13:00:35 -0500638 goto out;
639 }
640 rc = -EINVAL;
peter enderborgc103a912018-06-12 10:09:03 +0200641 pr_warn("SELinux: Unable to set superblock options "
Eric Paris744ba352008-04-17 11:52:44 -0400642 "before the security server is initialized\n");
Eric Parisc9180a52007-11-30 13:00:35 -0500643 goto out;
644 }
David Quigley649f6e72013-05-22 12:50:36 -0400645 if (kern_flags && !set_kern_flags) {
646 /* Specifying internal flags without providing a place to
647 * place the results is not allowed */
648 rc = -EINVAL;
649 goto out;
650 }
Eric Parisc9180a52007-11-30 13:00:35 -0500651
652 /*
Eric Parise0007522008-03-05 10:31:54 -0500653 * Binary mount data FS will come through this function twice. Once
654 * from an explicit call and once from the generic calls from the vfs.
655 * Since the generic VFS calls will not contain any security mount data
656 * we need to skip the double mount verification.
657 *
658 * This does open a hole in which we will not notice if the first
659 * mount using this sb set explict options and a second mount using
660 * this sb does not set any security options. (The first options
661 * will be used for both mounts)
662 */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500663 if ((sbsec->flags & SE_SBINITIALIZED) && (sb->s_type->fs_flags & FS_BINARY_MOUNTDATA)
Al Virobd323652018-12-13 15:04:59 -0500664 && !opts)
Eric Parisf5269712008-05-14 11:27:45 -0400665 goto out;
Eric Parise0007522008-03-05 10:31:54 -0500666
Paul Moore2c971652016-04-19 16:36:28 -0400667 root_isec = backing_inode_security_novalidate(root);
668
Eric Parise0007522008-03-05 10:31:54 -0500669 /*
Eric Parisc9180a52007-11-30 13:00:35 -0500670 * parse the mount options, check if they are valid sids.
671 * also check if someone is trying to mount the same sb more
672 * than once with different security options.
673 */
Al Virobd323652018-12-13 15:04:59 -0500674 if (opts) {
675 if (opts->fscontext) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -0500676 rc = parse_sid(sb, opts->fscontext, &fscontext_sid,
677 GFP_KERNEL);
Al Virobd323652018-12-13 15:04:59 -0500678 if (rc)
679 goto out;
Eric Parisc9180a52007-11-30 13:00:35 -0500680 if (bad_option(sbsec, FSCONTEXT_MNT, sbsec->sid,
681 fscontext_sid))
682 goto out_double_mount;
Eric Parisc9180a52007-11-30 13:00:35 -0500683 sbsec->flags |= FSCONTEXT_MNT;
Al Virobd323652018-12-13 15:04:59 -0500684 }
685 if (opts->context) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -0500686 rc = parse_sid(sb, opts->context, &context_sid,
687 GFP_KERNEL);
Al Virobd323652018-12-13 15:04:59 -0500688 if (rc)
689 goto out;
Eric Parisc9180a52007-11-30 13:00:35 -0500690 if (bad_option(sbsec, CONTEXT_MNT, sbsec->mntpoint_sid,
691 context_sid))
692 goto out_double_mount;
Eric Parisc9180a52007-11-30 13:00:35 -0500693 sbsec->flags |= CONTEXT_MNT;
Al Virobd323652018-12-13 15:04:59 -0500694 }
695 if (opts->rootcontext) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -0500696 rc = parse_sid(sb, opts->rootcontext, &rootcontext_sid,
697 GFP_KERNEL);
Al Virobd323652018-12-13 15:04:59 -0500698 if (rc)
699 goto out;
Eric Parisc9180a52007-11-30 13:00:35 -0500700 if (bad_option(sbsec, ROOTCONTEXT_MNT, root_isec->sid,
701 rootcontext_sid))
702 goto out_double_mount;
Eric Parisc9180a52007-11-30 13:00:35 -0500703 sbsec->flags |= ROOTCONTEXT_MNT;
Al Virobd323652018-12-13 15:04:59 -0500704 }
705 if (opts->defcontext) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -0500706 rc = parse_sid(sb, opts->defcontext, &defcontext_sid,
707 GFP_KERNEL);
Al Virobd323652018-12-13 15:04:59 -0500708 if (rc)
709 goto out;
Eric Parisc9180a52007-11-30 13:00:35 -0500710 if (bad_option(sbsec, DEFCONTEXT_MNT, sbsec->def_sid,
711 defcontext_sid))
712 goto out_double_mount;
Eric Parisc9180a52007-11-30 13:00:35 -0500713 sbsec->flags |= DEFCONTEXT_MNT;
Eric Parisc9180a52007-11-30 13:00:35 -0500714 }
715 }
716
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500717 if (sbsec->flags & SE_SBINITIALIZED) {
Eric Parisc9180a52007-11-30 13:00:35 -0500718 /* previously mounted with options, but not on this attempt? */
Al Virobd323652018-12-13 15:04:59 -0500719 if ((sbsec->flags & SE_MNTMASK) && !opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500720 goto out_double_mount;
721 rc = 0;
722 goto out;
723 }
724
James Morris089be432008-07-15 18:32:49 +1000725 if (strcmp(sb->s_type->name, "proc") == 0)
Stephen Smalley134509d2015-06-04 16:22:17 -0400726 sbsec->flags |= SE_SBPROC | SE_SBGENFS;
727
Stephen Smalley8e014722015-06-04 16:22:17 -0400728 if (!strcmp(sb->s_type->name, "debugfs") ||
Jeff Vander Stoep6a391182017-06-20 09:35:33 -0700729 !strcmp(sb->s_type->name, "tracefs") ||
Hridya Valsarajua20456a2020-02-01 17:46:23 -0800730 !strcmp(sb->s_type->name, "binder") ||
Connor O'Brien4ca54d32020-02-07 10:01:49 -0800731 !strcmp(sb->s_type->name, "bpf") ||
Christian Göttsche8a764ef2021-09-28 17:39:31 +0200732 !strcmp(sb->s_type->name, "pstore") ||
733 !strcmp(sb->s_type->name, "securityfs"))
Ondrej Mosnacekb7540262019-02-22 15:57:14 +0100734 sbsec->flags |= SE_SBGENFS;
735
736 if (!strcmp(sb->s_type->name, "sysfs") ||
Antonio Murdaca901ef842017-02-09 17:02:42 +0100737 !strcmp(sb->s_type->name, "cgroup") ||
738 !strcmp(sb->s_type->name, "cgroup2"))
Ondrej Mosnacekb7540262019-02-22 15:57:14 +0100739 sbsec->flags |= SE_SBGENFS | SE_SBGENFS_XATTR;
Eric Parisc9180a52007-11-30 13:00:35 -0500740
David Quigleyeb9ae682013-05-22 12:50:37 -0400741 if (!sbsec->behavior) {
742 /*
743 * Determine the labeling behavior to use for this
744 * filesystem type.
745 */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500746 rc = security_fs_use(&selinux_state, sb);
David Quigleyeb9ae682013-05-22 12:50:37 -0400747 if (rc) {
peter enderborgc103a912018-06-12 10:09:03 +0200748 pr_warn("%s: security_fs_use(%s) returned %d\n",
David Quigleyeb9ae682013-05-22 12:50:37 -0400749 __func__, sb->s_type->name, rc);
750 goto out;
751 }
Eric Parisc9180a52007-11-30 13:00:35 -0500752 }
Seth Forsheeaad82892016-04-26 14:36:20 -0500753
754 /*
Stephen Smalley01593d32017-01-09 10:07:31 -0500755 * If this is a user namespace mount and the filesystem type is not
756 * explicitly whitelisted, then no contexts are allowed on the command
757 * line and security labels must be ignored.
Seth Forsheeaad82892016-04-26 14:36:20 -0500758 */
Stephen Smalley01593d32017-01-09 10:07:31 -0500759 if (sb->s_user_ns != &init_user_ns &&
760 strcmp(sb->s_type->name, "tmpfs") &&
761 strcmp(sb->s_type->name, "ramfs") &&
Vivek Goyal7fa2e792021-02-11 13:03:03 -0500762 strcmp(sb->s_type->name, "devpts") &&
763 strcmp(sb->s_type->name, "overlay")) {
Seth Forsheeaad82892016-04-26 14:36:20 -0500764 if (context_sid || fscontext_sid || rootcontext_sid ||
765 defcontext_sid) {
766 rc = -EACCES;
767 goto out;
768 }
769 if (sbsec->behavior == SECURITY_FS_USE_XATTR) {
770 sbsec->behavior = SECURITY_FS_USE_MNTPOINT;
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500771 rc = security_transition_sid(&selinux_state,
772 current_sid(),
773 current_sid(),
Seth Forsheeaad82892016-04-26 14:36:20 -0500774 SECCLASS_FILE, NULL,
775 &sbsec->mntpoint_sid);
776 if (rc)
777 goto out;
778 }
779 goto out_set_opts;
780 }
781
Eric Parisc9180a52007-11-30 13:00:35 -0500782 /* sets the context of the superblock for the fs being mounted. */
783 if (fscontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100784 rc = may_context_mount_sb_relabel(fscontext_sid, sbsec, cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500785 if (rc)
786 goto out;
787
788 sbsec->sid = fscontext_sid;
789 }
790
791 /*
792 * Switch to using mount point labeling behavior.
793 * sets the label used on all file below the mountpoint, and will set
794 * the superblock context if not already set.
795 */
David Quigleyeb9ae682013-05-22 12:50:37 -0400796 if (kern_flags & SECURITY_LSM_NATIVE_LABELS && !context_sid) {
797 sbsec->behavior = SECURITY_FS_USE_NATIVE;
798 *set_kern_flags |= SECURITY_LSM_NATIVE_LABELS;
799 }
800
Eric Parisc9180a52007-11-30 13:00:35 -0500801 if (context_sid) {
802 if (!fscontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100803 rc = may_context_mount_sb_relabel(context_sid, sbsec,
804 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500805 if (rc)
806 goto out;
807 sbsec->sid = context_sid;
808 } else {
David Howells275bb412008-11-14 10:39:19 +1100809 rc = may_context_mount_inode_relabel(context_sid, sbsec,
810 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500811 if (rc)
812 goto out;
813 }
814 if (!rootcontext_sid)
815 rootcontext_sid = context_sid;
816
817 sbsec->mntpoint_sid = context_sid;
818 sbsec->behavior = SECURITY_FS_USE_MNTPOINT;
819 }
820
821 if (rootcontext_sid) {
David Howells275bb412008-11-14 10:39:19 +1100822 rc = may_context_mount_inode_relabel(rootcontext_sid, sbsec,
823 cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500824 if (rc)
825 goto out;
826
827 root_isec->sid = rootcontext_sid;
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -0500828 root_isec->initialized = LABEL_INITIALIZED;
Eric Parisc9180a52007-11-30 13:00:35 -0500829 }
830
831 if (defcontext_sid) {
David Quigleyeb9ae682013-05-22 12:50:37 -0400832 if (sbsec->behavior != SECURITY_FS_USE_XATTR &&
833 sbsec->behavior != SECURITY_FS_USE_NATIVE) {
Eric Parisc9180a52007-11-30 13:00:35 -0500834 rc = -EINVAL;
peter enderborgc103a912018-06-12 10:09:03 +0200835 pr_warn("SELinux: defcontext option is "
Eric Parisc9180a52007-11-30 13:00:35 -0500836 "invalid for this filesystem type\n");
837 goto out;
838 }
839
840 if (defcontext_sid != sbsec->def_sid) {
841 rc = may_context_mount_inode_relabel(defcontext_sid,
David Howells275bb412008-11-14 10:39:19 +1100842 sbsec, cred);
Eric Parisc9180a52007-11-30 13:00:35 -0500843 if (rc)
844 goto out;
845 }
846
847 sbsec->def_sid = defcontext_sid;
848 }
849
Seth Forsheeaad82892016-04-26 14:36:20 -0500850out_set_opts:
Eric Parisc9180a52007-11-30 13:00:35 -0500851 rc = sb_finish_set_opts(sb);
852out:
Eric Parisbc7e9822006-09-25 23:32:02 -0700853 mutex_unlock(&sbsec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return rc;
Eric Parisc9180a52007-11-30 13:00:35 -0500855out_double_mount:
856 rc = -EINVAL;
peter enderborgc103a912018-06-12 10:09:03 +0200857 pr_warn("SELinux: mount invalid. Same superblock, different "
Al Virobd323652018-12-13 15:04:59 -0500858 "security settings for (dev %s, type %s)\n", sb->s_id,
859 sb->s_type->name);
Eric Parisc9180a52007-11-30 13:00:35 -0500860 goto out;
861}
862
Jeff Layton094f7b62013-04-01 08:14:24 -0400863static int selinux_cmp_sb_context(const struct super_block *oldsb,
864 const struct super_block *newsb)
865{
Casey Schaufler1aea7802021-04-22 17:41:15 +0200866 struct superblock_security_struct *old = selinux_superblock(oldsb);
867 struct superblock_security_struct *new = selinux_superblock(newsb);
Jeff Layton094f7b62013-04-01 08:14:24 -0400868 char oldflags = old->flags & SE_MNTMASK;
869 char newflags = new->flags & SE_MNTMASK;
870
871 if (oldflags != newflags)
872 goto mismatch;
873 if ((oldflags & FSCONTEXT_MNT) && old->sid != new->sid)
874 goto mismatch;
875 if ((oldflags & CONTEXT_MNT) && old->mntpoint_sid != new->mntpoint_sid)
876 goto mismatch;
877 if ((oldflags & DEFCONTEXT_MNT) && old->def_sid != new->def_sid)
878 goto mismatch;
879 if (oldflags & ROOTCONTEXT_MNT) {
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -0500880 struct inode_security_struct *oldroot = backing_inode_security(oldsb->s_root);
881 struct inode_security_struct *newroot = backing_inode_security(newsb->s_root);
Jeff Layton094f7b62013-04-01 08:14:24 -0400882 if (oldroot->sid != newroot->sid)
883 goto mismatch;
884 }
885 return 0;
886mismatch:
peter enderborgc103a912018-06-12 10:09:03 +0200887 pr_warn("SELinux: mount invalid. Same superblock, "
Jeff Layton094f7b62013-04-01 08:14:24 -0400888 "different security settings for (dev %s, "
889 "type %s)\n", newsb->s_id, newsb->s_type->name);
890 return -EBUSY;
891}
892
893static int selinux_sb_clone_mnt_opts(const struct super_block *oldsb,
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400894 struct super_block *newsb,
895 unsigned long kern_flags,
896 unsigned long *set_kern_flags)
Eric Parisc9180a52007-11-30 13:00:35 -0500897{
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400898 int rc = 0;
Casey Schaufler1aea7802021-04-22 17:41:15 +0200899 const struct superblock_security_struct *oldsbsec =
900 selinux_superblock(oldsb);
901 struct superblock_security_struct *newsbsec = selinux_superblock(newsb);
Eric Parisc9180a52007-11-30 13:00:35 -0500902
903 int set_fscontext = (oldsbsec->flags & FSCONTEXT_MNT);
904 int set_context = (oldsbsec->flags & CONTEXT_MNT);
905 int set_rootcontext = (oldsbsec->flags & ROOTCONTEXT_MNT);
906
Eric Paris0f5e6422008-04-21 16:24:11 -0400907 /*
908 * if the parent was able to be mounted it clearly had no special lsm
Al Viroe8c26252010-03-23 06:36:54 -0400909 * mount options. thus we can safely deal with this superblock later
Eric Paris0f5e6422008-04-21 16:24:11 -0400910 */
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +0100911 if (!selinux_initialized(&selinux_state))
Jeff Layton094f7b62013-04-01 08:14:24 -0400912 return 0;
Eric Parisc9180a52007-11-30 13:00:35 -0500913
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400914 /*
915 * Specifying internal flags without providing a place to
916 * place the results is not allowed.
917 */
918 if (kern_flags && !set_kern_flags)
919 return -EINVAL;
920
Eric Parisc9180a52007-11-30 13:00:35 -0500921 /* how can we clone if the old one wasn't set up?? */
David P. Quigley0d90a7e2009-01-16 09:22:02 -0500922 BUG_ON(!(oldsbsec->flags & SE_SBINITIALIZED));
Eric Parisc9180a52007-11-30 13:00:35 -0500923
Jeff Layton094f7b62013-04-01 08:14:24 -0400924 /* if fs is reusing a sb, make sure that the contexts match */
J. Bruce Fields3815a242019-03-05 16:17:58 -0500925 if (newsbsec->flags & SE_SBINITIALIZED) {
926 if ((kern_flags & SECURITY_LSM_NATIVE_LABELS) && !set_context)
927 *set_kern_flags |= SECURITY_LSM_NATIVE_LABELS;
Jeff Layton094f7b62013-04-01 08:14:24 -0400928 return selinux_cmp_sb_context(oldsb, newsb);
J. Bruce Fields3815a242019-03-05 16:17:58 -0500929 }
Eric Paris5a552612008-04-09 14:08:35 -0400930
Eric Parisc9180a52007-11-30 13:00:35 -0500931 mutex_lock(&newsbsec->lock);
932
933 newsbsec->flags = oldsbsec->flags;
934
935 newsbsec->sid = oldsbsec->sid;
936 newsbsec->def_sid = oldsbsec->def_sid;
937 newsbsec->behavior = oldsbsec->behavior;
938
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400939 if (newsbsec->behavior == SECURITY_FS_USE_NATIVE &&
940 !(kern_flags & SECURITY_LSM_NATIVE_LABELS) && !set_context) {
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500941 rc = security_fs_use(&selinux_state, newsb);
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400942 if (rc)
943 goto out;
944 }
945
946 if (kern_flags & SECURITY_LSM_NATIVE_LABELS && !set_context) {
947 newsbsec->behavior = SECURITY_FS_USE_NATIVE;
948 *set_kern_flags |= SECURITY_LSM_NATIVE_LABELS;
949 }
950
Eric Parisc9180a52007-11-30 13:00:35 -0500951 if (set_context) {
952 u32 sid = oldsbsec->mntpoint_sid;
953
954 if (!set_fscontext)
955 newsbsec->sid = sid;
956 if (!set_rootcontext) {
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -0500957 struct inode_security_struct *newisec = backing_inode_security(newsb->s_root);
Eric Parisc9180a52007-11-30 13:00:35 -0500958 newisec->sid = sid;
959 }
960 newsbsec->mntpoint_sid = sid;
961 }
962 if (set_rootcontext) {
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -0500963 const struct inode_security_struct *oldisec = backing_inode_security(oldsb->s_root);
964 struct inode_security_struct *newisec = backing_inode_security(newsb->s_root);
Eric Parisc9180a52007-11-30 13:00:35 -0500965
966 newisec->sid = oldisec->sid;
967 }
968
969 sb_finish_set_opts(newsb);
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400970out:
Eric Parisc9180a52007-11-30 13:00:35 -0500971 mutex_unlock(&newsbsec->lock);
Scott Mayhew0b4d3452017-06-05 11:45:04 -0400972 return rc;
Eric Parisc9180a52007-11-30 13:00:35 -0500973}
974
Al Viroba641862018-12-14 20:28:15 -0500975static int selinux_add_opt(int token, const char *s, void **mnt_opts)
Eric Parisc9180a52007-11-30 13:00:35 -0500976{
Al Viroba641862018-12-14 20:28:15 -0500977 struct selinux_mnt_opts *opts = *mnt_opts;
Bernard Zhao2e08df32021-12-10 04:03:58 -0800978 bool is_alloc_opts = false;
Eric Parisc9180a52007-11-30 13:00:35 -0500979
Paul Moore6cd9d4b2021-12-21 15:01:29 -0500980 if (token == Opt_seclabel)
981 /* eaten and completely ignored */
Al Viro169d68efb2018-12-14 22:44:50 -0500982 return 0;
Bernard Zhao2e08df32021-12-10 04:03:58 -0800983 if (!s)
984 return -ENOMEM;
Eric Parisc9180a52007-11-30 13:00:35 -0500985
Al Viroba641862018-12-14 20:28:15 -0500986 if (!opts) {
Paul Moore6cd9d4b2021-12-21 15:01:29 -0500987 opts = kzalloc(sizeof(*opts), GFP_KERNEL);
Al Viroba641862018-12-14 20:28:15 -0500988 if (!opts)
989 return -ENOMEM;
990 *mnt_opts = opts;
Bernard Zhao2e08df32021-12-10 04:03:58 -0800991 is_alloc_opts = true;
Al Viroba641862018-12-14 20:28:15 -0500992 }
Bernard Zhao2e08df32021-12-10 04:03:58 -0800993
Al Viroba641862018-12-14 20:28:15 -0500994 switch (token) {
995 case Opt_context:
996 if (opts->context || opts->defcontext)
Paul Moore6cd9d4b2021-12-21 15:01:29 -0500997 goto err;
Al Viroba641862018-12-14 20:28:15 -0500998 opts->context = s;
999 break;
1000 case Opt_fscontext:
1001 if (opts->fscontext)
Paul Moore6cd9d4b2021-12-21 15:01:29 -05001002 goto err;
Al Viroba641862018-12-14 20:28:15 -05001003 opts->fscontext = s;
1004 break;
1005 case Opt_rootcontext:
1006 if (opts->rootcontext)
Paul Moore6cd9d4b2021-12-21 15:01:29 -05001007 goto err;
Al Viroba641862018-12-14 20:28:15 -05001008 opts->rootcontext = s;
1009 break;
1010 case Opt_defcontext:
1011 if (opts->context || opts->defcontext)
Paul Moore6cd9d4b2021-12-21 15:01:29 -05001012 goto err;
Al Viroba641862018-12-14 20:28:15 -05001013 opts->defcontext = s;
1014 break;
1015 }
Paul Moore6cd9d4b2021-12-21 15:01:29 -05001016
Al Viroba641862018-12-14 20:28:15 -05001017 return 0;
Eric Parisc9180a52007-11-30 13:00:35 -05001018
Paul Moore6cd9d4b2021-12-21 15:01:29 -05001019err:
Bernard Zhao2e08df32021-12-10 04:03:58 -08001020 if (is_alloc_opts) {
1021 kfree(opts);
Gen Zhange2e0e092019-06-12 21:28:21 +08001022 *mnt_opts = NULL;
Al Viro757cbe52018-12-14 23:42:21 -05001023 }
Eric Parisc9180a52007-11-30 13:00:35 -05001024 pr_warn(SEL_MOUNT_FAIL_MSG);
1025 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Al Viroe3489f82018-12-13 00:24:36 -05001028static int show_sid(struct seq_file *m, u32 sid)
Eric Paris2069f452008-07-04 09:47:13 +10001029{
Al Viroe3489f82018-12-13 00:24:36 -05001030 char *context = NULL;
1031 u32 len;
1032 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Al Viroe3489f82018-12-13 00:24:36 -05001034 rc = security_sid_to_context(&selinux_state, sid,
1035 &context, &len);
1036 if (!rc) {
1037 bool has_comma = context && strchr(context, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
David Howells442155c2018-11-01 23:07:24 +00001039 seq_putc(m, '=');
Eric Paris2069f452008-07-04 09:47:13 +10001040 if (has_comma)
1041 seq_putc(m, '\"');
Al Viroe3489f82018-12-13 00:24:36 -05001042 seq_escape(m, context, "\"\n\\");
Eric Paris2069f452008-07-04 09:47:13 +10001043 if (has_comma)
1044 seq_putc(m, '\"');
1045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 kfree(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return rc;
1048}
Eric Paris2069f452008-07-04 09:47:13 +10001049
1050static int selinux_sb_show_options(struct seq_file *m, struct super_block *sb)
1051{
Casey Schaufler1aea7802021-04-22 17:41:15 +02001052 struct superblock_security_struct *sbsec = selinux_superblock(sb);
Eric Paris2069f452008-07-04 09:47:13 +10001053 int rc;
1054
Al Viroe3489f82018-12-13 00:24:36 -05001055 if (!(sbsec->flags & SE_SBINITIALIZED))
1056 return 0;
1057
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +01001058 if (!selinux_initialized(&selinux_state))
Al Viroe3489f82018-12-13 00:24:36 -05001059 return 0;
1060
1061 if (sbsec->flags & FSCONTEXT_MNT) {
1062 seq_putc(m, ',');
1063 seq_puts(m, FSCONTEXT_STR);
1064 rc = show_sid(m, sbsec->sid);
1065 if (rc)
1066 return rc;
Eric Paris383795c2008-07-29 17:07:26 -04001067 }
Al Viroe3489f82018-12-13 00:24:36 -05001068 if (sbsec->flags & CONTEXT_MNT) {
1069 seq_putc(m, ',');
1070 seq_puts(m, CONTEXT_STR);
1071 rc = show_sid(m, sbsec->mntpoint_sid);
1072 if (rc)
1073 return rc;
1074 }
1075 if (sbsec->flags & DEFCONTEXT_MNT) {
1076 seq_putc(m, ',');
1077 seq_puts(m, DEFCONTEXT_STR);
1078 rc = show_sid(m, sbsec->def_sid);
1079 if (rc)
1080 return rc;
1081 }
1082 if (sbsec->flags & ROOTCONTEXT_MNT) {
Ondrej Mosnacekb159e862020-11-04 13:01:10 +01001083 struct dentry *root = sb->s_root;
Al Viroe3489f82018-12-13 00:24:36 -05001084 struct inode_security_struct *isec = backing_inode_security(root);
1085 seq_putc(m, ',');
1086 seq_puts(m, ROOTCONTEXT_STR);
1087 rc = show_sid(m, isec->sid);
1088 if (rc)
1089 return rc;
1090 }
1091 if (sbsec->flags & SBLABEL_MNT) {
1092 seq_putc(m, ',');
David Howells442155c2018-11-01 23:07:24 +00001093 seq_puts(m, SECLABEL_STR);
Al Viroe3489f82018-12-13 00:24:36 -05001094 }
1095 return 0;
Eric Paris2069f452008-07-04 09:47:13 +10001096}
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static inline u16 inode_mode_to_security_class(umode_t mode)
1099{
1100 switch (mode & S_IFMT) {
1101 case S_IFSOCK:
1102 return SECCLASS_SOCK_FILE;
1103 case S_IFLNK:
1104 return SECCLASS_LNK_FILE;
1105 case S_IFREG:
1106 return SECCLASS_FILE;
1107 case S_IFBLK:
1108 return SECCLASS_BLK_FILE;
1109 case S_IFDIR:
1110 return SECCLASS_DIR;
1111 case S_IFCHR:
1112 return SECCLASS_CHR_FILE;
1113 case S_IFIFO:
1114 return SECCLASS_FIFO_FILE;
1115
1116 }
1117
1118 return SECCLASS_FILE;
1119}
1120
James Morris13402582005-09-30 14:24:34 -04001121static inline int default_protocol_stream(int protocol)
1122{
Paolo Abeni95ca9072020-12-16 12:55:27 +01001123 return (protocol == IPPROTO_IP || protocol == IPPROTO_TCP ||
1124 protocol == IPPROTO_MPTCP);
James Morris13402582005-09-30 14:24:34 -04001125}
1126
1127static inline int default_protocol_dgram(int protocol)
1128{
1129 return (protocol == IPPROTO_IP || protocol == IPPROTO_UDP);
1130}
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132static inline u16 socket_type_to_security_class(int family, int type, int protocol)
1133{
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05001134 int extsockclass = selinux_policycap_extsockclass();
Stephen Smalleyda69a532017-01-09 10:07:30 -05001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 switch (family) {
1137 case PF_UNIX:
1138 switch (type) {
1139 case SOCK_STREAM:
1140 case SOCK_SEQPACKET:
1141 return SECCLASS_UNIX_STREAM_SOCKET;
1142 case SOCK_DGRAM:
Luis Ressel2a764b52017-07-25 15:13:41 -04001143 case SOCK_RAW:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return SECCLASS_UNIX_DGRAM_SOCKET;
1145 }
1146 break;
1147 case PF_INET:
1148 case PF_INET6:
1149 switch (type) {
1150 case SOCK_STREAM:
Stephen Smalleyda69a532017-01-09 10:07:30 -05001151 case SOCK_SEQPACKET:
James Morris13402582005-09-30 14:24:34 -04001152 if (default_protocol_stream(protocol))
1153 return SECCLASS_TCP_SOCKET;
Stephen Smalleyda69a532017-01-09 10:07:30 -05001154 else if (extsockclass && protocol == IPPROTO_SCTP)
1155 return SECCLASS_SCTP_SOCKET;
James Morris13402582005-09-30 14:24:34 -04001156 else
1157 return SECCLASS_RAWIP_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 case SOCK_DGRAM:
James Morris13402582005-09-30 14:24:34 -04001159 if (default_protocol_dgram(protocol))
1160 return SECCLASS_UDP_SOCKET;
Stephen Smalleyef379792017-01-09 10:07:31 -05001161 else if (extsockclass && (protocol == IPPROTO_ICMP ||
1162 protocol == IPPROTO_ICMPV6))
Stephen Smalleyda69a532017-01-09 10:07:30 -05001163 return SECCLASS_ICMP_SOCKET;
James Morris13402582005-09-30 14:24:34 -04001164 else
1165 return SECCLASS_RAWIP_SOCKET;
James Morris2ee92d42006-11-13 16:09:01 -08001166 case SOCK_DCCP:
1167 return SECCLASS_DCCP_SOCKET;
James Morris13402582005-09-30 14:24:34 -04001168 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return SECCLASS_RAWIP_SOCKET;
1170 }
1171 break;
1172 case PF_NETLINK:
1173 switch (protocol) {
1174 case NETLINK_ROUTE:
1175 return SECCLASS_NETLINK_ROUTE_SOCKET;
Pavel Emelyanov7f1fb602011-12-06 07:56:43 +00001176 case NETLINK_SOCK_DIAG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return SECCLASS_NETLINK_TCPDIAG_SOCKET;
1178 case NETLINK_NFLOG:
1179 return SECCLASS_NETLINK_NFLOG_SOCKET;
1180 case NETLINK_XFRM:
1181 return SECCLASS_NETLINK_XFRM_SOCKET;
1182 case NETLINK_SELINUX:
1183 return SECCLASS_NETLINK_SELINUX_SOCKET;
Stephen Smalley6c6d2e92015-06-04 16:22:16 -04001184 case NETLINK_ISCSI:
1185 return SECCLASS_NETLINK_ISCSI_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 case NETLINK_AUDIT:
1187 return SECCLASS_NETLINK_AUDIT_SOCKET;
Stephen Smalley6c6d2e92015-06-04 16:22:16 -04001188 case NETLINK_FIB_LOOKUP:
1189 return SECCLASS_NETLINK_FIB_LOOKUP_SOCKET;
1190 case NETLINK_CONNECTOR:
1191 return SECCLASS_NETLINK_CONNECTOR_SOCKET;
1192 case NETLINK_NETFILTER:
1193 return SECCLASS_NETLINK_NETFILTER_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 case NETLINK_DNRTMSG:
1195 return SECCLASS_NETLINK_DNRT_SOCKET;
James Morris0c9b7942005-04-16 15:24:13 -07001196 case NETLINK_KOBJECT_UEVENT:
1197 return SECCLASS_NETLINK_KOBJECT_UEVENT_SOCKET;
Stephen Smalley6c6d2e92015-06-04 16:22:16 -04001198 case NETLINK_GENERIC:
1199 return SECCLASS_NETLINK_GENERIC_SOCKET;
1200 case NETLINK_SCSITRANSPORT:
1201 return SECCLASS_NETLINK_SCSITRANSPORT_SOCKET;
1202 case NETLINK_RDMA:
1203 return SECCLASS_NETLINK_RDMA_SOCKET;
1204 case NETLINK_CRYPTO:
1205 return SECCLASS_NETLINK_CRYPTO_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 default:
1207 return SECCLASS_NETLINK_SOCKET;
1208 }
1209 case PF_PACKET:
1210 return SECCLASS_PACKET_SOCKET;
1211 case PF_KEY:
1212 return SECCLASS_KEY_SOCKET;
Christopher J. PeBenito3e3ff152006-06-09 00:25:03 -07001213 case PF_APPLETALK:
1214 return SECCLASS_APPLETALK_SOCKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
Stephen Smalleyda69a532017-01-09 10:07:30 -05001217 if (extsockclass) {
1218 switch (family) {
1219 case PF_AX25:
1220 return SECCLASS_AX25_SOCKET;
1221 case PF_IPX:
1222 return SECCLASS_IPX_SOCKET;
1223 case PF_NETROM:
1224 return SECCLASS_NETROM_SOCKET;
Stephen Smalleyda69a532017-01-09 10:07:30 -05001225 case PF_ATMPVC:
1226 return SECCLASS_ATMPVC_SOCKET;
1227 case PF_X25:
1228 return SECCLASS_X25_SOCKET;
1229 case PF_ROSE:
1230 return SECCLASS_ROSE_SOCKET;
1231 case PF_DECnet:
1232 return SECCLASS_DECNET_SOCKET;
1233 case PF_ATMSVC:
1234 return SECCLASS_ATMSVC_SOCKET;
1235 case PF_RDS:
1236 return SECCLASS_RDS_SOCKET;
1237 case PF_IRDA:
1238 return SECCLASS_IRDA_SOCKET;
1239 case PF_PPPOX:
1240 return SECCLASS_PPPOX_SOCKET;
1241 case PF_LLC:
1242 return SECCLASS_LLC_SOCKET;
Stephen Smalleyda69a532017-01-09 10:07:30 -05001243 case PF_CAN:
1244 return SECCLASS_CAN_SOCKET;
1245 case PF_TIPC:
1246 return SECCLASS_TIPC_SOCKET;
1247 case PF_BLUETOOTH:
1248 return SECCLASS_BLUETOOTH_SOCKET;
1249 case PF_IUCV:
1250 return SECCLASS_IUCV_SOCKET;
1251 case PF_RXRPC:
1252 return SECCLASS_RXRPC_SOCKET;
1253 case PF_ISDN:
1254 return SECCLASS_ISDN_SOCKET;
1255 case PF_PHONET:
1256 return SECCLASS_PHONET_SOCKET;
1257 case PF_IEEE802154:
1258 return SECCLASS_IEEE802154_SOCKET;
1259 case PF_CAIF:
1260 return SECCLASS_CAIF_SOCKET;
1261 case PF_ALG:
1262 return SECCLASS_ALG_SOCKET;
1263 case PF_NFC:
1264 return SECCLASS_NFC_SOCKET;
1265 case PF_VSOCK:
1266 return SECCLASS_VSOCK_SOCKET;
1267 case PF_KCM:
1268 return SECCLASS_KCM_SOCKET;
1269 case PF_QIPCRTR:
1270 return SECCLASS_QIPCRTR_SOCKET;
Linus Torvalds3051bf32017-02-22 10:15:09 -08001271 case PF_SMC:
1272 return SECCLASS_SMC_SOCKET;
Björn Töpel68e8b842018-05-02 13:01:22 +02001273 case PF_XDP:
1274 return SECCLASS_XDP_SOCKET;
Jeremy Kerrbc49d812021-07-29 10:20:39 +08001275 case PF_MCTP:
1276 return SECCLASS_MCTP_SOCKET;
1277#if PF_MAX > 46
Stephen Smalleyda69a532017-01-09 10:07:30 -05001278#error New address family defined, please update this function.
1279#endif
1280 }
1281 }
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return SECCLASS_SOCKET;
1284}
1285
Stephen Smalley134509d2015-06-04 16:22:17 -04001286static int selinux_genfs_get_sid(struct dentry *dentry,
1287 u16 tclass,
1288 u16 flags,
1289 u32 *sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001291 int rc;
Al Virofc640052016-04-10 01:33:30 -04001292 struct super_block *sb = dentry->d_sb;
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001293 char *buffer, *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Eric Paris828dfe12008-04-17 13:17:49 -04001295 buffer = (char *)__get_free_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (!buffer)
1297 return -ENOMEM;
1298
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001299 path = dentry_path_raw(dentry, buffer, PAGE_SIZE);
1300 if (IS_ERR(path))
1301 rc = PTR_ERR(path);
1302 else {
Stephen Smalley134509d2015-06-04 16:22:17 -04001303 if (flags & SE_SBPROC) {
1304 /* each process gets a /proc/PID/ entry. Strip off the
1305 * PID part to get a valid selinux labeling.
1306 * e.g. /proc/1/net/rpc/nfs -> /net/rpc/nfs */
1307 while (path[1] >= '0' && path[1] <= '9') {
1308 path[1] = '/';
1309 path++;
1310 }
Lucian Adrian Grijincu8e6c9692011-02-01 18:42:22 +02001311 }
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05001312 rc = security_genfs_sid(&selinux_state, sb->s_type->name,
1313 path, tclass, sid);
Stephen Smalley7bb185e2018-09-04 16:51:36 -04001314 if (rc == -ENOENT) {
1315 /* No match in policy, mark as unlabeled. */
1316 *sid = SECINITSID_UNLABELED;
1317 rc = 0;
1318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 free_page((unsigned long)buffer);
1321 return rc;
1322}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Ondrej Mosnacekb7540262019-02-22 15:57:14 +01001324static int inode_doinit_use_xattr(struct inode *inode, struct dentry *dentry,
1325 u32 def_sid, u32 *sid)
1326{
1327#define INITCONTEXTLEN 255
1328 char *context;
1329 unsigned int len;
1330 int rc;
1331
1332 len = INITCONTEXTLEN;
1333 context = kmalloc(len + 1, GFP_NOFS);
1334 if (!context)
1335 return -ENOMEM;
1336
1337 context[len] = '\0';
1338 rc = __vfs_getxattr(dentry, inode, XATTR_NAME_SELINUX, context, len);
1339 if (rc == -ERANGE) {
1340 kfree(context);
1341
1342 /* Need a larger buffer. Query for the right size. */
1343 rc = __vfs_getxattr(dentry, inode, XATTR_NAME_SELINUX, NULL, 0);
1344 if (rc < 0)
1345 return rc;
1346
1347 len = rc;
1348 context = kmalloc(len + 1, GFP_NOFS);
1349 if (!context)
1350 return -ENOMEM;
1351
1352 context[len] = '\0';
1353 rc = __vfs_getxattr(dentry, inode, XATTR_NAME_SELINUX,
1354 context, len);
1355 }
1356 if (rc < 0) {
1357 kfree(context);
1358 if (rc != -ENODATA) {
1359 pr_warn("SELinux: %s: getxattr returned %d for dev=%s ino=%ld\n",
1360 __func__, -rc, inode->i_sb->s_id, inode->i_ino);
1361 return rc;
1362 }
1363 *sid = def_sid;
1364 return 0;
1365 }
1366
1367 rc = security_context_to_sid_default(&selinux_state, context, rc, sid,
1368 def_sid, GFP_NOFS);
1369 if (rc) {
1370 char *dev = inode->i_sb->s_id;
1371 unsigned long ino = inode->i_ino;
1372
1373 if (rc == -EINVAL) {
1374 pr_notice_ratelimited("SELinux: inode=%lu on dev=%s was found to have an invalid context=%s. This indicates you may need to relabel the inode or the filesystem in question.\n",
1375 ino, dev, context);
1376 } else {
1377 pr_warn("SELinux: %s: context_to_sid(%s) returned %d for dev=%s ino=%ld\n",
1378 __func__, context, -rc, dev, ino);
1379 }
1380 }
1381 kfree(context);
1382 return 0;
1383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385/* The inode's security attributes must be initialized before first use. */
1386static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dentry)
1387{
1388 struct superblock_security_struct *sbsec = NULL;
Casey Schaufler80788c22018-09-21 17:19:11 -07001389 struct inode_security_struct *isec = selinux_inode(inode);
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001390 u32 task_sid, sid = 0;
1391 u16 sclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05001395 if (isec->initialized == LABEL_INITIALIZED)
Andreas Gruenbacher13457d02016-11-10 22:18:29 +01001396 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001398 spin_lock(&isec->lock);
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05001399 if (isec->initialized == LABEL_INITIALIZED)
Eric Paris23970742006-09-25 23:32:01 -07001400 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Andreas Gruenbacher13457d02016-11-10 22:18:29 +01001402 if (isec->sclass == SECCLASS_FILE)
1403 isec->sclass = inode_mode_to_security_class(inode->i_mode);
1404
Casey Schaufler1aea7802021-04-22 17:41:15 +02001405 sbsec = selinux_superblock(inode->i_sb);
David P. Quigley0d90a7e2009-01-16 09:22:02 -05001406 if (!(sbsec->flags & SE_SBINITIALIZED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /* Defer initialization until selinux_complete_init,
1408 after the initial policy is loaded and the security
1409 server is ready to handle calls. */
1410 spin_lock(&sbsec->isec_lock);
1411 if (list_empty(&isec->list))
1412 list_add(&isec->list, &sbsec->isec_head);
1413 spin_unlock(&sbsec->isec_lock);
Eric Paris23970742006-09-25 23:32:01 -07001414 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001417 sclass = isec->sclass;
1418 task_sid = isec->task_sid;
1419 sid = isec->sid;
1420 isec->initialized = LABEL_PENDING;
1421 spin_unlock(&isec->lock);
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 switch (sbsec->behavior) {
David Quigleyeb9ae682013-05-22 12:50:37 -04001424 case SECURITY_FS_USE_NATIVE:
1425 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 case SECURITY_FS_USE_XATTR:
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +02001427 if (!(inode->i_opflags & IOP_XATTR)) {
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001428 sid = sbsec->def_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 break;
1430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /* Need a dentry, since the xattr API requires one.
1432 Life would be simpler if we could just pass the inode. */
1433 if (opt_dentry) {
1434 /* Called from d_instantiate or d_splice_alias. */
1435 dentry = dget(opt_dentry);
1436 } else {
Al Virob1271252018-04-25 10:28:38 -04001437 /*
1438 * Called from selinux_complete_init, try to find a dentry.
1439 * Some filesystems really want a connected one, so try
1440 * that first. We could split SECURITY_FS_USE_XATTR in
1441 * two, depending upon that...
1442 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 dentry = d_find_alias(inode);
Al Virob1271252018-04-25 10:28:38 -04001444 if (!dentry)
1445 dentry = d_find_any_alias(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447 if (!dentry) {
Eric Parisdf7f54c2009-03-09 14:35:58 -04001448 /*
1449 * this is can be hit on boot when a file is accessed
1450 * before the policy is loaded. When we load policy we
1451 * may find inodes that have no dentry on the
1452 * sbsec->isec_head list. No reason to complain as these
1453 * will get fixed up the next time we go through
1454 * inode_doinit with a dentry, before these inodes could
1455 * be used again by userspace.
1456 */
Paul Moore200ea5a2020-11-03 11:49:38 -05001457 goto out_invalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459
Ondrej Mosnacekb7540262019-02-22 15:57:14 +01001460 rc = inode_doinit_use_xattr(inode, dentry, sbsec->def_sid,
1461 &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 dput(dentry);
Ondrej Mosnacekb7540262019-02-22 15:57:14 +01001463 if (rc)
1464 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 break;
1466 case SECURITY_FS_USE_TASK:
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001467 sid = task_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 break;
1469 case SECURITY_FS_USE_TRANS:
1470 /* Default to the fs SID. */
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001471 sid = sbsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /* Try to obtain a transition SID. */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05001474 rc = security_transition_sid(&selinux_state, task_sid, sid,
1475 sclass, NULL, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (rc)
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001477 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 break;
Eric Parisc312feb2006-07-10 04:43:53 -07001479 case SECURITY_FS_USE_MNTPOINT:
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001480 sid = sbsec->mntpoint_sid;
Eric Parisc312feb2006-07-10 04:43:53 -07001481 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 default:
Eric Parisc312feb2006-07-10 04:43:53 -07001483 /* Default to the fs superblock SID. */
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001484 sid = sbsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Christian Göttsche7470d0d12020-01-28 20:16:48 +01001486 if ((sbsec->flags & SE_SBGENFS) &&
1487 (!S_ISLNK(inode->i_mode) ||
1488 selinux_policycap_genfs_seclabel_symlinks())) {
Paul Mooref64410e2014-03-19 16:46:18 -04001489 /* We must have a dentry to determine the label on
1490 * procfs inodes */
Al Virob1271252018-04-25 10:28:38 -04001491 if (opt_dentry) {
Paul Mooref64410e2014-03-19 16:46:18 -04001492 /* Called from d_instantiate or
1493 * d_splice_alias. */
1494 dentry = dget(opt_dentry);
Al Virob1271252018-04-25 10:28:38 -04001495 } else {
Paul Mooref64410e2014-03-19 16:46:18 -04001496 /* Called from selinux_complete_init, try to
Al Virob1271252018-04-25 10:28:38 -04001497 * find a dentry. Some filesystems really want
1498 * a connected one, so try that first.
1499 */
Paul Mooref64410e2014-03-19 16:46:18 -04001500 dentry = d_find_alias(inode);
Al Virob1271252018-04-25 10:28:38 -04001501 if (!dentry)
1502 dentry = d_find_any_alias(inode);
1503 }
Paul Mooref64410e2014-03-19 16:46:18 -04001504 /*
1505 * This can be hit on boot when a file is accessed
1506 * before the policy is loaded. When we load policy we
1507 * may find inodes that have no dentry on the
1508 * sbsec->isec_head list. No reason to complain as
1509 * these will get fixed up the next time we go through
1510 * inode_doinit() with a dentry, before these inodes
1511 * could be used again by userspace.
1512 */
1513 if (!dentry)
Paul Moore200ea5a2020-11-03 11:49:38 -05001514 goto out_invalid;
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001515 rc = selinux_genfs_get_sid(dentry, sclass,
Stephen Smalley134509d2015-06-04 16:22:17 -04001516 sbsec->flags, &sid);
Ondrej Mosnacekb7540262019-02-22 15:57:14 +01001517 if (rc) {
1518 dput(dentry);
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001519 goto out;
Ondrej Mosnacekb7540262019-02-22 15:57:14 +01001520 }
1521
1522 if ((sbsec->flags & SE_SBGENFS_XATTR) &&
1523 (inode->i_opflags & IOP_XATTR)) {
1524 rc = inode_doinit_use_xattr(inode, dentry,
1525 sid, &sid);
1526 if (rc) {
1527 dput(dentry);
1528 goto out;
1529 }
1530 }
1531 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533 break;
1534 }
1535
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001536out:
1537 spin_lock(&isec->lock);
1538 if (isec->initialized == LABEL_PENDING) {
Paul Moore200ea5a2020-11-03 11:49:38 -05001539 if (rc) {
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001540 isec->initialized = LABEL_INVALID;
1541 goto out_unlock;
1542 }
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001543 isec->initialized = LABEL_INITIALIZED;
1544 isec->sid = sid;
1545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Eric Paris23970742006-09-25 23:32:01 -07001547out_unlock:
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01001548 spin_unlock(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return rc;
Paul Moore200ea5a2020-11-03 11:49:38 -05001550
1551out_invalid:
1552 spin_lock(&isec->lock);
1553 if (isec->initialized == LABEL_PENDING) {
1554 isec->initialized = LABEL_INVALID;
1555 isec->sid = sid;
1556 }
1557 spin_unlock(&isec->lock);
1558 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
1561/* Convert a Linux signal to an access vector. */
1562static inline u32 signal_to_av(int sig)
1563{
1564 u32 perm = 0;
1565
1566 switch (sig) {
1567 case SIGCHLD:
1568 /* Commonly granted from child to parent. */
1569 perm = PROCESS__SIGCHLD;
1570 break;
1571 case SIGKILL:
1572 /* Cannot be caught or ignored */
1573 perm = PROCESS__SIGKILL;
1574 break;
1575 case SIGSTOP:
1576 /* Cannot be caught or ignored */
1577 perm = PROCESS__SIGSTOP;
1578 break;
1579 default:
1580 /* All other signals. */
1581 perm = PROCESS__SIGNAL;
1582 break;
1583 }
1584
1585 return perm;
1586}
1587
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001588#if CAP_LAST_CAP > 63
1589#error Fix SELinux to handle capabilities > 63.
1590#endif
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592/* Check whether a task is allowed to use a capability. */
Eric Paris6a9de492012-01-03 12:25:14 -05001593static int cred_has_capability(const struct cred *cred,
Micah Mortonc1a85a02019-01-07 16:10:53 -08001594 int cap, unsigned int opts, bool initns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Thomas Liu2bf49692009-07-14 12:14:09 -04001596 struct common_audit_data ad;
Eric Paris06112162008-11-11 22:02:50 +11001597 struct av_decision avd;
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001598 u16 sclass;
David Howells3699c532009-01-06 22:27:01 +00001599 u32 sid = cred_sid(cred);
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001600 u32 av = CAP_TO_MASK(cap);
Eric Paris06112162008-11-11 22:02:50 +11001601 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Eric Paris50c205f2012-04-04 15:01:43 -04001603 ad.type = LSM_AUDIT_DATA_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 ad.u.cap = cap;
1605
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001606 switch (CAP_TO_INDEX(cap)) {
1607 case 0:
Stephen Smalley8e4ff6f2016-04-08 13:52:00 -04001608 sclass = initns ? SECCLASS_CAPABILITY : SECCLASS_CAP_USERNS;
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001609 break;
1610 case 1:
Stephen Smalley8e4ff6f2016-04-08 13:52:00 -04001611 sclass = initns ? SECCLASS_CAPABILITY2 : SECCLASS_CAP2_USERNS;
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001612 break;
1613 default:
peter enderborgc103a912018-06-12 10:09:03 +02001614 pr_err("SELinux: out of range capability %d\n", cap);
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001615 BUG();
Eric Parisa35c6c832011-04-20 10:21:28 -04001616 return -EINVAL;
Stephen Smalleyb68e4182008-02-07 11:21:04 -05001617 }
Eric Paris06112162008-11-11 22:02:50 +11001618
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001619 rc = avc_has_perm_noaudit(&selinux_state,
1620 sid, sid, sclass, av, 0, &avd);
Micah Mortonc1a85a02019-01-07 16:10:53 -08001621 if (!(opts & CAP_OPT_NOAUDIT)) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001622 int rc2 = avc_audit(&selinux_state,
Al Virod99cf132021-01-16 15:57:49 -05001623 sid, sid, sclass, av, &avd, rc, &ad);
Eric Paris9ade0cf2011-04-25 16:26:29 -04001624 if (rc2)
1625 return rc2;
1626 }
Eric Paris06112162008-11-11 22:02:50 +11001627 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630/* Check whether a task has a particular permission to an inode.
1631 The 'adp' parameter is optional and allows other audit
1632 data to be passed (e.g. the dentry). */
David Howells88e67f32008-11-14 10:39:21 +11001633static int inode_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 struct inode *inode,
1635 u32 perms,
Linus Torvalds19e49832013-10-04 12:54:11 -07001636 struct common_audit_data *adp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 struct inode_security_struct *isec;
David Howells275bb412008-11-14 10:39:19 +11001639 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
David Howellse0e81732009-09-02 09:13:40 +01001641 validate_creds(cred);
1642
Eric Paris828dfe12008-04-17 13:17:49 -04001643 if (unlikely(IS_PRIVATE(inode)))
Stephen Smalleybbaca6c2007-02-14 00:34:16 -08001644 return 0;
1645
David Howells88e67f32008-11-14 10:39:21 +11001646 sid = cred_sid(cred);
Casey Schaufler80788c22018-09-21 17:19:11 -07001647 isec = selinux_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001649 return avc_has_perm(&selinux_state,
1650 sid, isec->sid, isec->sclass, perms, adp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
1653/* Same as inode_has_perm, but pass explicit audit data containing
1654 the dentry to help the auditing code to more easily generate the
1655 pathname if needed. */
David Howells88e67f32008-11-14 10:39:21 +11001656static inline int dentry_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 struct dentry *dentry,
1658 u32 av)
1659{
David Howellsc6f493d2015-03-17 22:26:22 +00001660 struct inode *inode = d_backing_inode(dentry);
Thomas Liu2bf49692009-07-14 12:14:09 -04001661 struct common_audit_data ad;
David Howells88e67f32008-11-14 10:39:21 +11001662
Eric Paris50c205f2012-04-04 15:01:43 -04001663 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Paris2875fa02011-04-28 16:04:24 -04001664 ad.u.dentry = dentry;
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -05001665 __inode_security_revalidate(inode, dentry, true);
Linus Torvalds19e49832013-10-04 12:54:11 -07001666 return inode_has_perm(cred, inode, av, &ad);
Eric Paris2875fa02011-04-28 16:04:24 -04001667}
1668
1669/* Same as inode_has_perm, but pass explicit audit data containing
1670 the path to help the auditing code to more easily generate the
1671 pathname if needed. */
1672static inline int path_has_perm(const struct cred *cred,
Al Viro3f7036a2015-03-08 19:28:30 -04001673 const struct path *path,
Eric Paris2875fa02011-04-28 16:04:24 -04001674 u32 av)
1675{
David Howellsc6f493d2015-03-17 22:26:22 +00001676 struct inode *inode = d_backing_inode(path->dentry);
Eric Paris2875fa02011-04-28 16:04:24 -04001677 struct common_audit_data ad;
1678
Eric Paris50c205f2012-04-04 15:01:43 -04001679 ad.type = LSM_AUDIT_DATA_PATH;
Eric Paris2875fa02011-04-28 16:04:24 -04001680 ad.u.path = *path;
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -05001681 __inode_security_revalidate(inode, path->dentry, true);
Linus Torvalds19e49832013-10-04 12:54:11 -07001682 return inode_has_perm(cred, inode, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
David Howells13f8e982013-06-13 23:37:55 +01001685/* Same as path_has_perm, but uses the inode from the file struct. */
1686static inline int file_path_has_perm(const struct cred *cred,
1687 struct file *file,
1688 u32 av)
1689{
1690 struct common_audit_data ad;
1691
Vivek Goyal43af5de2016-09-09 11:37:49 -04001692 ad.type = LSM_AUDIT_DATA_FILE;
1693 ad.u.file = file;
Linus Torvalds19e49832013-10-04 12:54:11 -07001694 return inode_has_perm(cred, file_inode(file), av, &ad);
David Howells13f8e982013-06-13 23:37:55 +01001695}
1696
Chenbo Fengf66e4482017-10-18 13:00:26 -07001697#ifdef CONFIG_BPF_SYSCALL
1698static int bpf_fd_pass(struct file *file, u32 sid);
1699#endif
1700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701/* Check whether a task can use an open file descriptor to
1702 access an inode in a given way. Check access to the
1703 descriptor itself, and then use dentry_has_perm to
1704 check a particular permission to the file.
1705 Access to the descriptor is implicitly granted if it
1706 has the same SID as the process. If av is zero, then
1707 access to the file is not checked, e.g. for cases
1708 where only the descriptor is affected like seek. */
David Howells88e67f32008-11-14 10:39:21 +11001709static int file_has_perm(const struct cred *cred,
1710 struct file *file,
1711 u32 av)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Casey Schauflerbb6c6b02018-09-21 17:22:32 -07001713 struct file_security_struct *fsec = selinux_file(file);
Al Viro496ad9a2013-01-23 17:07:38 -05001714 struct inode *inode = file_inode(file);
Thomas Liu2bf49692009-07-14 12:14:09 -04001715 struct common_audit_data ad;
David Howells88e67f32008-11-14 10:39:21 +11001716 u32 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 int rc;
1718
Vivek Goyal43af5de2016-09-09 11:37:49 -04001719 ad.type = LSM_AUDIT_DATA_FILE;
1720 ad.u.file = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
David Howells275bb412008-11-14 10:39:19 +11001722 if (sid != fsec->sid) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001723 rc = avc_has_perm(&selinux_state,
1724 sid, fsec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 SECCLASS_FD,
1726 FD__USE,
1727 &ad);
1728 if (rc)
David Howells88e67f32008-11-14 10:39:21 +11001729 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 }
1731
Chenbo Fengf66e4482017-10-18 13:00:26 -07001732#ifdef CONFIG_BPF_SYSCALL
1733 rc = bpf_fd_pass(file, cred_sid(cred));
1734 if (rc)
1735 return rc;
1736#endif
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 /* av is zero if only checking access to the descriptor. */
David Howells88e67f32008-11-14 10:39:21 +11001739 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (av)
Linus Torvalds19e49832013-10-04 12:54:11 -07001741 rc = inode_has_perm(cred, inode, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
David Howells88e67f32008-11-14 10:39:21 +11001743out:
1744 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
David Howellsc3c188b2015-07-10 17:19:58 -04001747/*
1748 * Determine the label for an inode that might be unioned.
1749 */
Vivek Goyalc957f6d2016-07-13 10:44:51 -04001750static int
1751selinux_determine_inode_label(const struct task_security_struct *tsec,
1752 struct inode *dir,
1753 const struct qstr *name, u16 tclass,
1754 u32 *_new_isid)
David Howellsc3c188b2015-07-10 17:19:58 -04001755{
Casey Schaufler1aea7802021-04-22 17:41:15 +02001756 const struct superblock_security_struct *sbsec =
1757 selinux_superblock(dir->i_sb);
David Howellsc3c188b2015-07-10 17:19:58 -04001758
1759 if ((sbsec->flags & SE_SBINITIALIZED) &&
1760 (sbsec->behavior == SECURITY_FS_USE_MNTPOINT)) {
1761 *_new_isid = sbsec->mntpoint_sid;
1762 } else if ((sbsec->flags & SBLABEL_MNT) &&
1763 tsec->create_sid) {
1764 *_new_isid = tsec->create_sid;
1765 } else {
Paul Moore20cdef82016-04-04 14:14:42 -04001766 const struct inode_security_struct *dsec = inode_security(dir);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05001767 return security_transition_sid(&selinux_state, tsec->sid,
1768 dsec->sid, tclass,
David Howellsc3c188b2015-07-10 17:19:58 -04001769 name, _new_isid);
1770 }
1771
1772 return 0;
1773}
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775/* Check whether a task can create a file. */
1776static int may_create(struct inode *dir,
1777 struct dentry *dentry,
1778 u16 tclass)
1779{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07001780 const struct task_security_struct *tsec = selinux_cred(current_cred());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 struct inode_security_struct *dsec;
1782 struct superblock_security_struct *sbsec;
David Howells275bb412008-11-14 10:39:19 +11001783 u32 sid, newsid;
Thomas Liu2bf49692009-07-14 12:14:09 -04001784 struct common_audit_data ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 int rc;
1786
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05001787 dsec = inode_security(dir);
Casey Schaufler1aea7802021-04-22 17:41:15 +02001788 sbsec = selinux_superblock(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
David Howells275bb412008-11-14 10:39:19 +11001790 sid = tsec->sid;
David Howells275bb412008-11-14 10:39:19 +11001791
Eric Paris50c205f2012-04-04 15:01:43 -04001792 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04001793 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001795 rc = avc_has_perm(&selinux_state,
1796 sid, dsec->sid, SECCLASS_DIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 DIR__ADD_NAME | DIR__SEARCH,
1798 &ad);
1799 if (rc)
1800 return rc;
1801
Yang Guo210a2922019-12-12 10:02:24 +08001802 rc = selinux_determine_inode_label(tsec, dir, &dentry->d_name, tclass,
1803 &newsid);
David Howellsc3c188b2015-07-10 17:19:58 -04001804 if (rc)
1805 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001807 rc = avc_has_perm(&selinux_state,
1808 sid, newsid, tclass, FILE__CREATE, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 if (rc)
1810 return rc;
1811
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001812 return avc_has_perm(&selinux_state,
1813 newsid, sbsec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 SECCLASS_FILESYSTEM,
1815 FILESYSTEM__ASSOCIATE, &ad);
1816}
1817
Eric Paris828dfe12008-04-17 13:17:49 -04001818#define MAY_LINK 0
1819#define MAY_UNLINK 1
1820#define MAY_RMDIR 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822/* Check whether a task can link, unlink, or rmdir a file/directory. */
1823static int may_link(struct inode *dir,
1824 struct dentry *dentry,
1825 int kind)
1826
1827{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 struct inode_security_struct *dsec, *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04001829 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11001830 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 u32 av;
1832 int rc;
1833
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05001834 dsec = inode_security(dir);
1835 isec = backing_inode_security(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Eric Paris50c205f2012-04-04 15:01:43 -04001837 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04001838 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 av = DIR__SEARCH;
1841 av |= (kind ? DIR__REMOVE_NAME : DIR__ADD_NAME);
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001842 rc = avc_has_perm(&selinux_state,
1843 sid, dsec->sid, SECCLASS_DIR, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (rc)
1845 return rc;
1846
1847 switch (kind) {
1848 case MAY_LINK:
1849 av = FILE__LINK;
1850 break;
1851 case MAY_UNLINK:
1852 av = FILE__UNLINK;
1853 break;
1854 case MAY_RMDIR:
1855 av = DIR__RMDIR;
1856 break;
1857 default:
peter enderborgc103a912018-06-12 10:09:03 +02001858 pr_warn("SELinux: %s: unrecognized kind %d\n",
Eric Paris744ba352008-04-17 11:52:44 -04001859 __func__, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 return 0;
1861 }
1862
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001863 rc = avc_has_perm(&selinux_state,
1864 sid, isec->sid, isec->sclass, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 return rc;
1866}
1867
1868static inline int may_rename(struct inode *old_dir,
1869 struct dentry *old_dentry,
1870 struct inode *new_dir,
1871 struct dentry *new_dentry)
1872{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 struct inode_security_struct *old_dsec, *new_dsec, *old_isec, *new_isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04001874 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11001875 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 u32 av;
1877 int old_is_dir, new_is_dir;
1878 int rc;
1879
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05001880 old_dsec = inode_security(old_dir);
1881 old_isec = backing_inode_security(old_dentry);
David Howellse36cb0b2015-01-29 12:02:35 +00001882 old_is_dir = d_is_dir(old_dentry);
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05001883 new_dsec = inode_security(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Eric Paris50c205f2012-04-04 15:01:43 -04001885 ad.type = LSM_AUDIT_DATA_DENTRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Eric Parisa2694342011-04-25 13:10:27 -04001887 ad.u.dentry = old_dentry;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001888 rc = avc_has_perm(&selinux_state,
1889 sid, old_dsec->sid, SECCLASS_DIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 DIR__REMOVE_NAME | DIR__SEARCH, &ad);
1891 if (rc)
1892 return rc;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001893 rc = avc_has_perm(&selinux_state,
1894 sid, old_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 old_isec->sclass, FILE__RENAME, &ad);
1896 if (rc)
1897 return rc;
1898 if (old_is_dir && new_dir != old_dir) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001899 rc = avc_has_perm(&selinux_state,
1900 sid, old_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 old_isec->sclass, DIR__REPARENT, &ad);
1902 if (rc)
1903 return rc;
1904 }
1905
Eric Parisa2694342011-04-25 13:10:27 -04001906 ad.u.dentry = new_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 av = DIR__ADD_NAME | DIR__SEARCH;
David Howells2c616d42015-01-29 12:02:33 +00001908 if (d_is_positive(new_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 av |= DIR__REMOVE_NAME;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001910 rc = avc_has_perm(&selinux_state,
1911 sid, new_dsec->sid, SECCLASS_DIR, av, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 if (rc)
1913 return rc;
David Howells2c616d42015-01-29 12:02:33 +00001914 if (d_is_positive(new_dentry)) {
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05001915 new_isec = backing_inode_security(new_dentry);
David Howellse36cb0b2015-01-29 12:02:35 +00001916 new_is_dir = d_is_dir(new_dentry);
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001917 rc = avc_has_perm(&selinux_state,
1918 sid, new_isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 new_isec->sclass,
1920 (new_is_dir ? DIR__RMDIR : FILE__UNLINK), &ad);
1921 if (rc)
1922 return rc;
1923 }
1924
1925 return 0;
1926}
1927
1928/* Check whether a task can perform a filesystem operation. */
David Howells88e67f32008-11-14 10:39:21 +11001929static int superblock_has_perm(const struct cred *cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 struct super_block *sb,
1931 u32 perms,
Thomas Liu2bf49692009-07-14 12:14:09 -04001932 struct common_audit_data *ad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 struct superblock_security_struct *sbsec;
David Howells88e67f32008-11-14 10:39:21 +11001935 u32 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Casey Schaufler1aea7802021-04-22 17:41:15 +02001937 sbsec = selinux_superblock(sb);
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001938 return avc_has_perm(&selinux_state,
1939 sid, sbsec->sid, SECCLASS_FILESYSTEM, perms, ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
1942/* Convert a Linux mode and permission mask to an access vector. */
1943static inline u32 file_mask_to_av(int mode, int mask)
1944{
1945 u32 av = 0;
1946
Al Virodba19c62011-07-25 20:49:29 -04001947 if (!S_ISDIR(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 if (mask & MAY_EXEC)
1949 av |= FILE__EXECUTE;
1950 if (mask & MAY_READ)
1951 av |= FILE__READ;
1952
1953 if (mask & MAY_APPEND)
1954 av |= FILE__APPEND;
1955 else if (mask & MAY_WRITE)
1956 av |= FILE__WRITE;
1957
1958 } else {
1959 if (mask & MAY_EXEC)
1960 av |= DIR__SEARCH;
1961 if (mask & MAY_WRITE)
1962 av |= DIR__WRITE;
1963 if (mask & MAY_READ)
1964 av |= DIR__READ;
1965 }
1966
1967 return av;
1968}
1969
1970/* Convert a Linux file to an access vector. */
1971static inline u32 file_to_av(struct file *file)
1972{
1973 u32 av = 0;
1974
1975 if (file->f_mode & FMODE_READ)
1976 av |= FILE__READ;
1977 if (file->f_mode & FMODE_WRITE) {
1978 if (file->f_flags & O_APPEND)
1979 av |= FILE__APPEND;
1980 else
1981 av |= FILE__WRITE;
1982 }
Stephen Smalley0794c662008-03-17 08:55:18 -04001983 if (!av) {
1984 /*
1985 * Special file opened with flags 3 for ioctl-only use.
1986 */
1987 av = FILE__IOCTL;
1988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 return av;
1991}
1992
Eric Paris8b6a5a32008-10-29 17:06:46 -04001993/*
Randy Dunlapc76a2f92020-08-07 09:51:34 -07001994 * Convert a file to an access vector and include the correct
Eric Paris8b6a5a32008-10-29 17:06:46 -04001995 * open permission.
1996 */
1997static inline u32 open_file_to_av(struct file *file)
1998{
1999 u32 av = file_to_av(file);
Stephen Smalleyccb54472017-05-12 12:41:24 -04002000 struct inode *inode = file_inode(file);
Eric Paris8b6a5a32008-10-29 17:06:46 -04002001
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05002002 if (selinux_policycap_openperm() &&
2003 inode->i_sb->s_magic != SOCKFS_MAGIC)
Eric Paris49b7b8d2010-07-23 11:44:09 -04002004 av |= FILE__OPEN;
2005
Eric Paris8b6a5a32008-10-29 17:06:46 -04002006 return av;
2007}
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009/* Hook functions begin here. */
2010
Todd Kjos52f88692021-10-12 09:56:13 -07002011static int selinux_binder_set_context_mgr(const struct cred *mgr)
Stephen Smalley79af7302015-01-21 10:54:10 -05002012{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002013 return avc_has_perm(&selinux_state,
Todd Kjos52f88692021-10-12 09:56:13 -07002014 current_sid(), cred_sid(mgr), SECCLASS_BINDER,
Stephen Smalley79af7302015-01-21 10:54:10 -05002015 BINDER__SET_CONTEXT_MGR, NULL);
2016}
2017
Todd Kjos52f88692021-10-12 09:56:13 -07002018static int selinux_binder_transaction(const struct cred *from,
2019 const struct cred *to)
Stephen Smalley79af7302015-01-21 10:54:10 -05002020{
2021 u32 mysid = current_sid();
Todd Kjos52f88692021-10-12 09:56:13 -07002022 u32 fromsid = cred_sid(from);
2023 u32 tosid = cred_sid(to);
Stephen Smalley79af7302015-01-21 10:54:10 -05002024 int rc;
2025
2026 if (mysid != fromsid) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002027 rc = avc_has_perm(&selinux_state,
2028 mysid, fromsid, SECCLASS_BINDER,
Stephen Smalley79af7302015-01-21 10:54:10 -05002029 BINDER__IMPERSONATE, NULL);
2030 if (rc)
2031 return rc;
2032 }
2033
Todd Kjos52f88692021-10-12 09:56:13 -07002034 return avc_has_perm(&selinux_state, fromsid, tosid,
Paul Mooreeb1231f2021-02-18 15:13:40 -05002035 SECCLASS_BINDER, BINDER__CALL, NULL);
Stephen Smalley79af7302015-01-21 10:54:10 -05002036}
2037
Todd Kjos52f88692021-10-12 09:56:13 -07002038static int selinux_binder_transfer_binder(const struct cred *from,
2039 const struct cred *to)
Stephen Smalley79af7302015-01-21 10:54:10 -05002040{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002041 return avc_has_perm(&selinux_state,
Todd Kjos52f88692021-10-12 09:56:13 -07002042 cred_sid(from), cred_sid(to),
Paul Mooreeb1231f2021-02-18 15:13:40 -05002043 SECCLASS_BINDER, BINDER__TRANSFER,
Stephen Smalley79af7302015-01-21 10:54:10 -05002044 NULL);
2045}
2046
Todd Kjos52f88692021-10-12 09:56:13 -07002047static int selinux_binder_transfer_file(const struct cred *from,
2048 const struct cred *to,
Stephen Smalley79af7302015-01-21 10:54:10 -05002049 struct file *file)
2050{
Todd Kjos52f88692021-10-12 09:56:13 -07002051 u32 sid = cred_sid(to);
Casey Schauflerbb6c6b02018-09-21 17:22:32 -07002052 struct file_security_struct *fsec = selinux_file(file);
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05002053 struct dentry *dentry = file->f_path.dentry;
Paul Moore20cdef82016-04-04 14:14:42 -04002054 struct inode_security_struct *isec;
Stephen Smalley79af7302015-01-21 10:54:10 -05002055 struct common_audit_data ad;
2056 int rc;
2057
2058 ad.type = LSM_AUDIT_DATA_PATH;
2059 ad.u.path = file->f_path;
2060
2061 if (sid != fsec->sid) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002062 rc = avc_has_perm(&selinux_state,
2063 sid, fsec->sid,
Stephen Smalley79af7302015-01-21 10:54:10 -05002064 SECCLASS_FD,
2065 FD__USE,
2066 &ad);
2067 if (rc)
2068 return rc;
2069 }
2070
Chenbo Fengf66e4482017-10-18 13:00:26 -07002071#ifdef CONFIG_BPF_SYSCALL
2072 rc = bpf_fd_pass(file, sid);
2073 if (rc)
2074 return rc;
2075#endif
2076
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05002077 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
Stephen Smalley79af7302015-01-21 10:54:10 -05002078 return 0;
2079
Paul Moore20cdef82016-04-04 14:14:42 -04002080 isec = backing_inode_security(dentry);
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002081 return avc_has_perm(&selinux_state,
2082 sid, isec->sid, isec->sclass, file_to_av(file),
Stephen Smalley79af7302015-01-21 10:54:10 -05002083 &ad);
2084}
2085
Ingo Molnar9e488582009-05-07 19:26:19 +10002086static int selinux_ptrace_access_check(struct task_struct *child,
Paul Mooreeb1231f2021-02-18 15:13:40 -05002087 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002089 u32 sid = current_sid();
Paul Mooreeb1231f2021-02-18 15:13:40 -05002090 u32 csid = task_sid_obj(child);
Stephen Smalley006ebb42008-05-19 08:32:49 -04002091
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002092 if (mode & PTRACE_MODE_READ)
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002093 return avc_has_perm(&selinux_state,
2094 sid, csid, SECCLASS_FILE, FILE__READ, NULL);
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002095
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002096 return avc_has_perm(&selinux_state,
2097 sid, csid, SECCLASS_PROCESS, PROCESS__PTRACE, NULL);
David Howells5cd9c582008-08-14 11:37:28 +01002098}
2099
2100static int selinux_ptrace_traceme(struct task_struct *parent)
2101{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002102 return avc_has_perm(&selinux_state,
Paul Moorea3727a82021-09-23 09:50:11 -04002103 task_sid_obj(parent), task_sid_obj(current),
Paul Mooreeb1231f2021-02-18 15:13:40 -05002104 SECCLASS_PROCESS, PROCESS__PTRACE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
2106
2107static int selinux_capget(struct task_struct *target, kernel_cap_t *effective,
Eric Paris828dfe12008-04-17 13:17:49 -04002108 kernel_cap_t *inheritable, kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002110 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05002111 current_sid(), task_sid_obj(target), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002112 PROCESS__GETCAP, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113}
2114
David Howellsd84f4f92008-11-14 10:39:23 +11002115static int selinux_capset(struct cred *new, const struct cred *old,
2116 const kernel_cap_t *effective,
2117 const kernel_cap_t *inheritable,
2118 const kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002120 return avc_has_perm(&selinux_state,
2121 cred_sid(old), cred_sid(new), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002122 PROCESS__SETCAP, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
James Morris5626d3e2009-01-30 10:05:06 +11002125/*
2126 * (This comment used to live with the selinux_task_setuid hook,
2127 * which was removed).
2128 *
2129 * Since setuid only affects the current process, and since the SELinux
2130 * controls are not based on the Linux identity attributes, SELinux does not
2131 * need to control this operation. However, SELinux does control the use of
2132 * the CAP_SETUID and CAP_SETGID capabilities using the capable hook.
2133 */
2134
Eric Paris6a9de492012-01-03 12:25:14 -05002135static int selinux_capable(const struct cred *cred, struct user_namespace *ns,
Micah Mortonc1a85a02019-01-07 16:10:53 -08002136 int cap, unsigned int opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Micah Mortonc1a85a02019-01-07 16:10:53 -08002138 return cred_has_capability(cred, cap, opts, ns == &init_user_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139}
2140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141static int selinux_quotactl(int cmds, int type, int id, struct super_block *sb)
2142{
David Howells88e67f32008-11-14 10:39:21 +11002143 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 int rc = 0;
2145
2146 if (!sb)
2147 return 0;
2148
2149 switch (cmds) {
Eric Paris828dfe12008-04-17 13:17:49 -04002150 case Q_SYNC:
2151 case Q_QUOTAON:
2152 case Q_QUOTAOFF:
2153 case Q_SETINFO:
2154 case Q_SETQUOTA:
Richard Hainese4cfa052020-02-20 15:32:34 +00002155 case Q_XQUOTAOFF:
2156 case Q_XQUOTAON:
2157 case Q_XSETQLIM:
David Howells88e67f32008-11-14 10:39:21 +11002158 rc = superblock_has_perm(cred, sb, FILESYSTEM__QUOTAMOD, NULL);
Eric Paris828dfe12008-04-17 13:17:49 -04002159 break;
2160 case Q_GETFMT:
2161 case Q_GETINFO:
2162 case Q_GETQUOTA:
Richard Hainese4cfa052020-02-20 15:32:34 +00002163 case Q_XGETQUOTA:
2164 case Q_XGETQSTAT:
2165 case Q_XGETQSTATV:
2166 case Q_XGETNEXTQUOTA:
David Howells88e67f32008-11-14 10:39:21 +11002167 rc = superblock_has_perm(cred, sb, FILESYSTEM__QUOTAGET, NULL);
Eric Paris828dfe12008-04-17 13:17:49 -04002168 break;
2169 default:
2170 rc = 0; /* let the kernel handle invalid cmds */
2171 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 }
2173 return rc;
2174}
2175
2176static int selinux_quota_on(struct dentry *dentry)
2177{
David Howells88e67f32008-11-14 10:39:21 +11002178 const struct cred *cred = current_cred();
2179
Eric Paris2875fa02011-04-28 16:04:24 -04002180 return dentry_has_perm(cred, dentry, FILE__QUOTAON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
Eric Paris12b30522010-11-15 18:36:29 -05002183static int selinux_syslog(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08002186 case SYSLOG_ACTION_READ_ALL: /* Read last kernel messages */
2187 case SYSLOG_ACTION_SIZE_BUFFER: /* Return size of the log buffer */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002188 return avc_has_perm(&selinux_state,
2189 current_sid(), SECINITSID_KERNEL,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002190 SECCLASS_SYSTEM, SYSTEM__SYSLOG_READ, NULL);
Kees Cookd78ca3c2010-02-03 15:37:13 -08002191 case SYSLOG_ACTION_CONSOLE_OFF: /* Disable logging to console */
2192 case SYSLOG_ACTION_CONSOLE_ON: /* Enable logging to console */
2193 /* Set level of messages printed to console */
2194 case SYSLOG_ACTION_CONSOLE_LEVEL:
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002195 return avc_has_perm(&selinux_state,
2196 current_sid(), SECINITSID_KERNEL,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002197 SECCLASS_SYSTEM, SYSTEM__SYSLOG_CONSOLE,
2198 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002200 /* All other syslog types */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002201 return avc_has_perm(&selinux_state,
2202 current_sid(), SECINITSID_KERNEL,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002203 SECCLASS_SYSTEM, SYSTEM__SYSLOG_MOD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
2206/*
2207 * Check that a process has enough memory to allocate a new virtual
2208 * mapping. 0 means there is enough memory for the allocation to
2209 * succeed and -ENOMEM implies there is not.
2210 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 * Do not audit the selinux permission check, as this is applied to all
2212 * processes that allocate mappings.
2213 */
Alan Cox34b4e4a2007-08-22 14:01:28 -07002214static int selinux_vm_enough_memory(struct mm_struct *mm, long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
2216 int rc, cap_sys_admin = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07002218 rc = cred_has_capability(current_cred(), CAP_SYS_ADMIN,
Micah Mortonc1a85a02019-01-07 16:10:53 -08002219 CAP_OPT_NOAUDIT, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 if (rc == 0)
2221 cap_sys_admin = 1;
2222
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07002223 return cap_sys_admin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224}
2225
2226/* binprm security operations */
2227
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002228static u32 ptrace_parent_sid(void)
Paul Moore0c6181c2016-03-30 21:41:21 -04002229{
2230 u32 sid = 0;
2231 struct task_struct *tracer;
2232
2233 rcu_read_lock();
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002234 tracer = ptrace_parent(current);
Paul Moore0c6181c2016-03-30 21:41:21 -04002235 if (tracer)
Paul Mooreeb1231f2021-02-18 15:13:40 -05002236 sid = task_sid_obj(tracer);
Paul Moore0c6181c2016-03-30 21:41:21 -04002237 rcu_read_unlock();
2238
2239 return sid;
2240}
2241
Stephen Smalley7b0d0b42014-08-04 13:36:49 -04002242static int check_nnp_nosuid(const struct linux_binprm *bprm,
2243 const struct task_security_struct *old_tsec,
2244 const struct task_security_struct *new_tsec)
2245{
2246 int nnp = (bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS);
Andy Lutomirski380cf5b2016-06-23 16:41:05 -05002247 int nosuid = !mnt_may_suid(bprm->file->f_path.mnt);
Stephen Smalley7b0d0b42014-08-04 13:36:49 -04002248 int rc;
Stephen Smalleyaf63f412017-07-31 10:12:46 -04002249 u32 av;
Stephen Smalley7b0d0b42014-08-04 13:36:49 -04002250
2251 if (!nnp && !nosuid)
2252 return 0; /* neither NNP nor nosuid */
2253
2254 if (new_tsec->sid == old_tsec->sid)
2255 return 0; /* No change in credentials */
2256
2257 /*
Stephen Smalleyaf63f412017-07-31 10:12:46 -04002258 * If the policy enables the nnp_nosuid_transition policy capability,
2259 * then we permit transitions under NNP or nosuid if the
2260 * policy allows the corresponding permission between
2261 * the old and new contexts.
2262 */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05002263 if (selinux_policycap_nnp_nosuid_transition()) {
Stephen Smalleyaf63f412017-07-31 10:12:46 -04002264 av = 0;
2265 if (nnp)
2266 av |= PROCESS2__NNP_TRANSITION;
2267 if (nosuid)
2268 av |= PROCESS2__NOSUID_TRANSITION;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002269 rc = avc_has_perm(&selinux_state,
2270 old_tsec->sid, new_tsec->sid,
Stephen Smalleyaf63f412017-07-31 10:12:46 -04002271 SECCLASS_PROCESS2, av, NULL);
2272 if (!rc)
2273 return 0;
2274 }
2275
2276 /*
2277 * We also permit NNP or nosuid transitions to bounded SIDs,
2278 * i.e. SIDs that are guaranteed to only be allowed a subset
2279 * of the permissions of the current SID.
Stephen Smalley7b0d0b42014-08-04 13:36:49 -04002280 */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05002281 rc = security_bounded_transition(&selinux_state, old_tsec->sid,
2282 new_tsec->sid);
Stephen Smalleyaf63f412017-07-31 10:12:46 -04002283 if (!rc)
2284 return 0;
2285
2286 /*
2287 * On failure, preserve the errno values for NNP vs nosuid.
2288 * NNP: Operation not permitted for caller.
2289 * nosuid: Permission denied to file.
2290 */
2291 if (nnp)
2292 return -EPERM;
2293 return -EACCES;
Stephen Smalley7b0d0b42014-08-04 13:36:49 -04002294}
2295
Eric W. Biedermanb8bff592020-03-22 15:46:24 -05002296static int selinux_bprm_creds_for_exec(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
David Howellsa6f76f22008-11-14 10:39:24 +11002298 const struct task_security_struct *old_tsec;
2299 struct task_security_struct *new_tsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 struct inode_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04002301 struct common_audit_data ad;
Al Viro496ad9a2013-01-23 17:07:38 -05002302 struct inode *inode = file_inode(bprm->file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 int rc;
2304
David Howellsa6f76f22008-11-14 10:39:24 +11002305 /* SELinux context only depends on initial program or script and not
2306 * the script interpreter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07002308 old_tsec = selinux_cred(current_cred());
2309 new_tsec = selinux_cred(bprm->cred);
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05002310 isec = inode_security(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 /* Default to the current task SID. */
David Howellsa6f76f22008-11-14 10:39:24 +11002313 new_tsec->sid = old_tsec->sid;
2314 new_tsec->osid = old_tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Michael LeMay28eba5b2006-06-27 02:53:42 -07002316 /* Reset fs, key, and sock SIDs on execve. */
David Howellsa6f76f22008-11-14 10:39:24 +11002317 new_tsec->create_sid = 0;
2318 new_tsec->keycreate_sid = 0;
2319 new_tsec->sockcreate_sid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
David Howellsa6f76f22008-11-14 10:39:24 +11002321 if (old_tsec->exec_sid) {
2322 new_tsec->sid = old_tsec->exec_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 /* Reset exec SID on execve. */
David Howellsa6f76f22008-11-14 10:39:24 +11002324 new_tsec->exec_sid = 0;
Andy Lutomirski259e5e62012-04-12 16:47:50 -05002325
Stephen Smalley7b0d0b42014-08-04 13:36:49 -04002326 /* Fail on NNP or nosuid if not an allowed transition. */
2327 rc = check_nnp_nosuid(bprm, old_tsec, new_tsec);
2328 if (rc)
2329 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 } else {
2331 /* Check for a default transition on this program. */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05002332 rc = security_transition_sid(&selinux_state, old_tsec->sid,
2333 isec->sid, SECCLASS_PROCESS, NULL,
Eric Paris652bb9b2011-02-01 11:05:40 -05002334 &new_tsec->sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 if (rc)
2336 return rc;
Stephen Smalley7b0d0b42014-08-04 13:36:49 -04002337
2338 /*
2339 * Fallback to old SID on NNP or nosuid if not an allowed
2340 * transition.
2341 */
2342 rc = check_nnp_nosuid(bprm, old_tsec, new_tsec);
2343 if (rc)
2344 new_tsec->sid = old_tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
2346
Vivek Goyal43af5de2016-09-09 11:37:49 -04002347 ad.type = LSM_AUDIT_DATA_FILE;
2348 ad.u.file = bprm->file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
David Howellsa6f76f22008-11-14 10:39:24 +11002350 if (new_tsec->sid == old_tsec->sid) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002351 rc = avc_has_perm(&selinux_state,
2352 old_tsec->sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 SECCLASS_FILE, FILE__EXECUTE_NO_TRANS, &ad);
2354 if (rc)
2355 return rc;
2356 } else {
2357 /* Check permissions for the transition. */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002358 rc = avc_has_perm(&selinux_state,
2359 old_tsec->sid, new_tsec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 SECCLASS_PROCESS, PROCESS__TRANSITION, &ad);
2361 if (rc)
2362 return rc;
2363
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002364 rc = avc_has_perm(&selinux_state,
2365 new_tsec->sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 SECCLASS_FILE, FILE__ENTRYPOINT, &ad);
2367 if (rc)
2368 return rc;
2369
David Howellsa6f76f22008-11-14 10:39:24 +11002370 /* Check for shared state */
2371 if (bprm->unsafe & LSM_UNSAFE_SHARE) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002372 rc = avc_has_perm(&selinux_state,
2373 old_tsec->sid, new_tsec->sid,
David Howellsa6f76f22008-11-14 10:39:24 +11002374 SECCLASS_PROCESS, PROCESS__SHARE,
2375 NULL);
2376 if (rc)
2377 return -EPERM;
2378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
David Howellsa6f76f22008-11-14 10:39:24 +11002380 /* Make sure that anyone attempting to ptrace over a task that
2381 * changes its SID has the appropriate permit */
Eric W. Biederman9227dd22017-01-23 17:26:31 +13002382 if (bprm->unsafe & LSM_UNSAFE_PTRACE) {
Stephen Smalleybe0554c2017-01-09 10:07:31 -05002383 u32 ptsid = ptrace_parent_sid();
David Howellsa6f76f22008-11-14 10:39:24 +11002384 if (ptsid != 0) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002385 rc = avc_has_perm(&selinux_state,
2386 ptsid, new_tsec->sid,
David Howellsa6f76f22008-11-14 10:39:24 +11002387 SECCLASS_PROCESS,
2388 PROCESS__PTRACE, NULL);
2389 if (rc)
2390 return -EPERM;
2391 }
2392 }
2393
2394 /* Clear any possibly unsafe personality bits on exec: */
2395 bprm->per_clear |= PER_CLEAR_ON_SETID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 /* Enable secure mode for SIDs transitions unless
2398 the noatsecure permission is granted between
2399 the two SIDs, i.e. ahp returns 0. */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002400 rc = avc_has_perm(&selinux_state,
2401 old_tsec->sid, new_tsec->sid,
Kees Cook62874c32017-07-18 15:25:25 -07002402 SECCLASS_PROCESS, PROCESS__NOATSECURE,
2403 NULL);
2404 bprm->secureexec |= !!rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 }
2406
Kees Cook62874c32017-07-18 15:25:25 -07002407 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408}
2409
Al Viroc3c073f2012-08-21 22:32:06 -04002410static int match_file(const void *p, struct file *file, unsigned fd)
2411{
2412 return file_has_perm(p, file, file_to_av(file)) ? fd + 1 : 0;
2413}
2414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415/* Derived from fs/exec.c:flush_old_files. */
David Howells745ca242008-11-14 10:39:22 +11002416static inline void flush_unauthorized_files(const struct cred *cred,
2417 struct files_struct *files)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 struct file *file, *devnull = NULL;
Stephen Smalleyb20c8122006-09-25 23:32:03 -07002420 struct tty_struct *tty;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002421 int drop_tty = 0;
Al Viroc3c073f2012-08-21 22:32:06 -04002422 unsigned n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002424 tty = get_current_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (tty) {
Peter Hurley4a510962016-01-09 21:35:23 -08002426 spin_lock(&tty->files_lock);
Eric Paris37dd0bd2008-10-31 17:40:00 -04002427 if (!list_empty(&tty->tty_files)) {
Nick Piggind996b622010-08-18 04:37:36 +10002428 struct tty_file_private *file_priv;
Eric Paris37dd0bd2008-10-31 17:40:00 -04002429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 /* Revalidate access to controlling tty.
David Howells13f8e982013-06-13 23:37:55 +01002431 Use file_path_has_perm on the tty path directly
2432 rather than using file_has_perm, as this particular
2433 open file may belong to another process and we are
2434 only interested in the inode-based check here. */
Nick Piggind996b622010-08-18 04:37:36 +10002435 file_priv = list_first_entry(&tty->tty_files,
2436 struct tty_file_private, list);
2437 file = file_priv->file;
David Howells13f8e982013-06-13 23:37:55 +01002438 if (file_path_has_perm(cred, file, FILE__READ | FILE__WRITE))
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002439 drop_tty = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 }
Peter Hurley4a510962016-01-09 21:35:23 -08002441 spin_unlock(&tty->files_lock);
Alan Cox452a00d2008-10-13 10:39:13 +01002442 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 }
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07002444 /* Reset controlling tty. */
2445 if (drop_tty)
2446 no_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
2448 /* Revalidate access to inherited open files. */
Al Viroc3c073f2012-08-21 22:32:06 -04002449 n = iterate_fd(files, 0, match_file, cred);
2450 if (!n) /* none found? */
2451 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Al Viroc3c073f2012-08-21 22:32:06 -04002453 devnull = dentry_open(&selinux_null, O_RDWR, cred);
Al Viro45525b22012-10-16 13:30:07 -04002454 if (IS_ERR(devnull))
2455 devnull = NULL;
2456 /* replace all the matching ones with this */
2457 do {
2458 replace_fd(n - 1, devnull, 0);
2459 } while ((n = iterate_fd(files, n, match_file, cred)) != 0);
2460 if (devnull)
Al Viroc3c073f2012-08-21 22:32:06 -04002461 fput(devnull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462}
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464/*
David Howellsa6f76f22008-11-14 10:39:24 +11002465 * Prepare a process for imminent new credential changes due to exec
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 */
David Howellsa6f76f22008-11-14 10:39:24 +11002467static void selinux_bprm_committing_creds(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
David Howellsa6f76f22008-11-14 10:39:24 +11002469 struct task_security_struct *new_tsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 struct rlimit *rlim, *initrlim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 int rc, i;
2472
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07002473 new_tsec = selinux_cred(bprm->cred);
David Howellsa6f76f22008-11-14 10:39:24 +11002474 if (new_tsec->sid == new_tsec->osid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 return;
2476
2477 /* Close files for which the new task SID is not authorized. */
David Howellsa6f76f22008-11-14 10:39:24 +11002478 flush_unauthorized_files(bprm->cred, current->files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
David Howellsa6f76f22008-11-14 10:39:24 +11002480 /* Always clear parent death signal on SID transitions. */
2481 current->pdeath_signal = 0;
2482
2483 /* Check whether the new SID can inherit resource limits from the old
2484 * SID. If not, reset all soft limits to the lower of the current
2485 * task's hard limit and the init task's soft limit.
2486 *
2487 * Note that the setting of hard limits (even to lower them) can be
2488 * controlled by the setrlimit check. The inclusion of the init task's
2489 * soft limit into the computation is to avoid resetting soft limits
2490 * higher than the default soft limit for cases where the default is
2491 * lower than the hard limit, e.g. RLIMIT_CORE or RLIMIT_STACK.
2492 */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002493 rc = avc_has_perm(&selinux_state,
2494 new_tsec->osid, new_tsec->sid, SECCLASS_PROCESS,
David Howellsa6f76f22008-11-14 10:39:24 +11002495 PROCESS__RLIMITINH, NULL);
2496 if (rc) {
Oleg Nesteroveb2d55a2010-06-23 22:43:32 +02002497 /* protect against do_prlimit() */
2498 task_lock(current);
David Howellsa6f76f22008-11-14 10:39:24 +11002499 for (i = 0; i < RLIM_NLIMITS; i++) {
2500 rlim = current->signal->rlim + i;
2501 initrlim = init_task.signal->rlim + i;
2502 rlim->rlim_cur = min(rlim->rlim_max, initrlim->rlim_cur);
2503 }
Oleg Nesteroveb2d55a2010-06-23 22:43:32 +02002504 task_unlock(current);
Nicolas Pitrebaa73d92016-11-11 00:10:10 -05002505 if (IS_ENABLED(CONFIG_POSIX_TIMERS))
2506 update_rlimit_cpu(current, rlimit(RLIMIT_CPU));
David Howellsa6f76f22008-11-14 10:39:24 +11002507 }
2508}
2509
2510/*
2511 * Clean up the process immediately after the installation of new credentials
2512 * due to exec
2513 */
2514static void selinux_bprm_committed_creds(struct linux_binprm *bprm)
2515{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07002516 const struct task_security_struct *tsec = selinux_cred(current_cred());
David Howellsa6f76f22008-11-14 10:39:24 +11002517 u32 osid, sid;
Arnd Bergmannddbc7d02019-10-25 21:37:43 +02002518 int rc;
David Howellsa6f76f22008-11-14 10:39:24 +11002519
David Howellsa6f76f22008-11-14 10:39:24 +11002520 osid = tsec->osid;
2521 sid = tsec->sid;
2522
2523 if (sid == osid)
2524 return;
2525
2526 /* Check whether the new SID can inherit signal state from the old SID.
2527 * If not, clear itimers to avoid subsequent signal generation and
2528 * flush and unblock signals.
2529 *
2530 * This must occur _after_ the task SID has been updated so that any
2531 * kill done after the flush will be checked against the new SID.
2532 */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05002533 rc = avc_has_perm(&selinux_state,
2534 osid, sid, SECCLASS_PROCESS, PROCESS__SIGINH, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 if (rc) {
Arnd Bergmannddbc7d02019-10-25 21:37:43 +02002536 clear_itimer();
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov9e7c8f82015-06-04 16:22:16 -04002539 if (!fatal_signal_pending(current)) {
2540 flush_sigqueue(&current->pending);
2541 flush_sigqueue(&current->signal->shared_pending);
David Howells3bcac022009-04-29 13:45:05 +01002542 flush_signal_handlers(current, 1);
2543 sigemptyset(&current->blocked);
Oleg Nesterov9e7c8f82015-06-04 16:22:16 -04002544 recalc_sigpending();
David Howells3bcac022009-04-29 13:45:05 +01002545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 spin_unlock_irq(&current->sighand->siglock);
2547 }
2548
David Howellsa6f76f22008-11-14 10:39:24 +11002549 /* Wake up the parent if it is waiting so that it can recheck
2550 * wait permission to the new task SID. */
Oleg Nesterovecd6de32009-04-29 16:02:24 +02002551 read_lock(&tasklist_lock);
Oleg Nesterov0b7570e2009-09-23 15:56:46 -07002552 __wake_up_parent(current, current->real_parent);
Oleg Nesterovecd6de32009-04-29 16:02:24 +02002553 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554}
2555
2556/* superblock security operations */
2557
2558static int selinux_sb_alloc_security(struct super_block *sb)
2559{
Casey Schaufler1aea7802021-04-22 17:41:15 +02002560 struct superblock_security_struct *sbsec = selinux_superblock(sb);
Paul Moorecb89e242020-01-10 16:32:10 -05002561
2562 mutex_init(&sbsec->lock);
2563 INIT_LIST_HEAD(&sbsec->isec_head);
2564 spin_lock_init(&sbsec->isec_lock);
Paul Moorecb89e242020-01-10 16:32:10 -05002565 sbsec->sid = SECINITSID_UNLABELED;
2566 sbsec->def_sid = SECINITSID_FILE;
2567 sbsec->mntpoint_sid = SECINITSID_UNLABELED;
Paul Moorecb89e242020-01-10 16:32:10 -05002568
2569 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570}
2571
Al Viro99dbbb52018-12-14 21:56:23 -05002572static inline int opt_len(const char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
Al Viro99dbbb52018-12-14 21:56:23 -05002574 bool open_quote = false;
2575 int len;
2576 char c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Al Viro99dbbb52018-12-14 21:56:23 -05002578 for (len = 0; (c = s[len]) != '\0'; len++) {
2579 if (c == '"')
Cory Olmo3528a952006-09-29 01:58:44 -07002580 open_quote = !open_quote;
Al Viro99dbbb52018-12-14 21:56:23 -05002581 if (c == ',' && !open_quote)
2582 break;
2583 }
2584 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585}
2586
Al Viro204cc0c2018-12-13 13:41:47 -05002587static int selinux_sb_eat_lsm_opts(char *options, void **mnt_opts)
Eric Paris026eb162011-03-03 16:09:14 -05002588{
Al Viro99dbbb52018-12-14 21:56:23 -05002589 char *from = options;
2590 char *to = options;
2591 bool first = true;
Gen Zhangfec63752019-06-12 21:55:38 +08002592 int rc;
Al Viro5b400232018-12-12 20:13:29 -05002593
Al Viro99dbbb52018-12-14 21:56:23 -05002594 while (1) {
2595 int len = opt_len(from);
Gen Zhangfec63752019-06-12 21:55:38 +08002596 int token;
Al Viro99dbbb52018-12-14 21:56:23 -05002597 char *arg = NULL;
2598
2599 token = match_opt_prefix(from, len, &arg);
2600
2601 if (token != Opt_error) {
2602 char *p, *q;
2603
2604 /* strip quotes */
2605 if (arg) {
2606 for (p = q = arg; p < from + len; p++) {
2607 char c = *p;
2608 if (c != '"')
2609 *q++ = c;
2610 }
2611 arg = kmemdup_nul(arg, q - arg, GFP_KERNEL);
Gen Zhangfec63752019-06-12 21:55:38 +08002612 if (!arg) {
2613 rc = -ENOMEM;
2614 goto free_opt;
2615 }
Al Viro99dbbb52018-12-14 21:56:23 -05002616 }
2617 rc = selinux_add_opt(token, arg, mnt_opts);
2618 if (unlikely(rc)) {
2619 kfree(arg);
Gen Zhangfec63752019-06-12 21:55:38 +08002620 goto free_opt;
Al Viro99dbbb52018-12-14 21:56:23 -05002621 }
2622 } else {
2623 if (!first) { // copy with preceding comma
2624 from--;
2625 len++;
2626 }
2627 if (to != from)
2628 memmove(to, from, len);
2629 to += len;
2630 first = false;
2631 }
2632 if (!from[len])
2633 break;
2634 from += len + 1;
2635 }
2636 *to = '\0';
2637 return 0;
Gen Zhangfec63752019-06-12 21:55:38 +08002638
2639free_opt:
2640 if (*mnt_opts) {
2641 selinux_free_mnt_opts(*mnt_opts);
2642 *mnt_opts = NULL;
2643 }
2644 return rc;
Al Viro5b400232018-12-12 20:13:29 -05002645}
2646
Olga Kornievskaia69c4a422021-02-26 22:37:55 -05002647static int selinux_sb_mnt_opts_compat(struct super_block *sb, void *mnt_opts)
2648{
2649 struct selinux_mnt_opts *opts = mnt_opts;
2650 struct superblock_security_struct *sbsec = sb->s_security;
2651 u32 sid;
2652 int rc;
2653
2654 /*
2655 * Superblock not initialized (i.e. no options) - reject if any
2656 * options specified, otherwise accept.
2657 */
2658 if (!(sbsec->flags & SE_SBINITIALIZED))
2659 return opts ? 1 : 0;
2660
2661 /*
2662 * Superblock initialized and no options specified - reject if
2663 * superblock has any options set, otherwise accept.
2664 */
2665 if (!opts)
2666 return (sbsec->flags & SE_MNTMASK) ? 1 : 0;
2667
2668 if (opts->fscontext) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -05002669 rc = parse_sid(sb, opts->fscontext, &sid, GFP_NOWAIT);
Olga Kornievskaia69c4a422021-02-26 22:37:55 -05002670 if (rc)
2671 return 1;
2672 if (bad_option(sbsec, FSCONTEXT_MNT, sbsec->sid, sid))
2673 return 1;
2674 }
2675 if (opts->context) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -05002676 rc = parse_sid(sb, opts->context, &sid, GFP_NOWAIT);
Olga Kornievskaia69c4a422021-02-26 22:37:55 -05002677 if (rc)
2678 return 1;
2679 if (bad_option(sbsec, CONTEXT_MNT, sbsec->mntpoint_sid, sid))
2680 return 1;
2681 }
2682 if (opts->rootcontext) {
2683 struct inode_security_struct *root_isec;
2684
2685 root_isec = backing_inode_security(sb->s_root);
Scott Mayhewcc274ae2021-12-15 16:28:40 -05002686 rc = parse_sid(sb, opts->rootcontext, &sid, GFP_NOWAIT);
Olga Kornievskaia69c4a422021-02-26 22:37:55 -05002687 if (rc)
2688 return 1;
2689 if (bad_option(sbsec, ROOTCONTEXT_MNT, root_isec->sid, sid))
2690 return 1;
2691 }
2692 if (opts->defcontext) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -05002693 rc = parse_sid(sb, opts->defcontext, &sid, GFP_NOWAIT);
Olga Kornievskaia69c4a422021-02-26 22:37:55 -05002694 if (rc)
2695 return 1;
2696 if (bad_option(sbsec, DEFCONTEXT_MNT, sbsec->def_sid, sid))
2697 return 1;
2698 }
2699 return 0;
2700}
2701
Al Viro204cc0c2018-12-13 13:41:47 -05002702static int selinux_sb_remount(struct super_block *sb, void *mnt_opts)
Eric Paris026eb162011-03-03 16:09:14 -05002703{
Al Virobd323652018-12-13 15:04:59 -05002704 struct selinux_mnt_opts *opts = mnt_opts;
Casey Schaufler1aea7802021-04-22 17:41:15 +02002705 struct superblock_security_struct *sbsec = selinux_superblock(sb);
Al Virobd323652018-12-13 15:04:59 -05002706 u32 sid;
2707 int rc;
Eric Paris026eb162011-03-03 16:09:14 -05002708
2709 if (!(sbsec->flags & SE_SBINITIALIZED))
2710 return 0;
2711
Al Viro204cc0c2018-12-13 13:41:47 -05002712 if (!opts)
Eric Paris026eb162011-03-03 16:09:14 -05002713 return 0;
2714
Al Virobd323652018-12-13 15:04:59 -05002715 if (opts->fscontext) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -05002716 rc = parse_sid(sb, opts->fscontext, &sid, GFP_KERNEL);
Al Virobd323652018-12-13 15:04:59 -05002717 if (rc)
Al Viroc039bc32018-12-01 23:06:57 -05002718 return rc;
Al Virobd323652018-12-13 15:04:59 -05002719 if (bad_option(sbsec, FSCONTEXT_MNT, sbsec->sid, sid))
2720 goto out_bad_option;
Eric Paris026eb162011-03-03 16:09:14 -05002721 }
Al Virobd323652018-12-13 15:04:59 -05002722 if (opts->context) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -05002723 rc = parse_sid(sb, opts->context, &sid, GFP_KERNEL);
Al Virobd323652018-12-13 15:04:59 -05002724 if (rc)
2725 return rc;
2726 if (bad_option(sbsec, CONTEXT_MNT, sbsec->mntpoint_sid, sid))
2727 goto out_bad_option;
2728 }
2729 if (opts->rootcontext) {
2730 struct inode_security_struct *root_isec;
2731 root_isec = backing_inode_security(sb->s_root);
Scott Mayhewcc274ae2021-12-15 16:28:40 -05002732 rc = parse_sid(sb, opts->rootcontext, &sid, GFP_KERNEL);
Al Virobd323652018-12-13 15:04:59 -05002733 if (rc)
2734 return rc;
2735 if (bad_option(sbsec, ROOTCONTEXT_MNT, root_isec->sid, sid))
2736 goto out_bad_option;
2737 }
2738 if (opts->defcontext) {
Scott Mayhewcc274ae2021-12-15 16:28:40 -05002739 rc = parse_sid(sb, opts->defcontext, &sid, GFP_KERNEL);
Al Virobd323652018-12-13 15:04:59 -05002740 if (rc)
2741 return rc;
2742 if (bad_option(sbsec, DEFCONTEXT_MNT, sbsec->def_sid, sid))
2743 goto out_bad_option;
Eric Paris026eb162011-03-03 16:09:14 -05002744 }
Al Viroc039bc32018-12-01 23:06:57 -05002745 return 0;
Eric Paris026eb162011-03-03 16:09:14 -05002746
Eric Paris026eb162011-03-03 16:09:14 -05002747out_bad_option:
peter enderborgc103a912018-06-12 10:09:03 +02002748 pr_warn("SELinux: unable to change security options "
Linus Torvalds29b1deb2013-12-15 11:17:45 -08002749 "during remount (dev %s, type=%s)\n", sb->s_id,
2750 sb->s_type->name);
Al Viroc039bc32018-12-01 23:06:57 -05002751 return -EINVAL;
Eric Paris026eb162011-03-03 16:09:14 -05002752}
2753
Al Viroa10d7c22018-12-05 11:58:35 -05002754static int selinux_sb_kern_mount(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755{
David Howells88e67f32008-11-14 10:39:21 +11002756 const struct cred *cred = current_cred();
Thomas Liu2bf49692009-07-14 12:14:09 -04002757 struct common_audit_data ad;
James Morris74192242008-12-19 11:41:10 +11002758
Eric Paris50c205f2012-04-04 15:01:43 -04002759 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04002760 ad.u.dentry = sb->s_root;
David Howells88e67f32008-11-14 10:39:21 +11002761 return superblock_has_perm(cred, sb, FILESYSTEM__MOUNT, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762}
2763
David Howells726c3342006-06-23 02:02:58 -07002764static int selinux_sb_statfs(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
David Howells88e67f32008-11-14 10:39:21 +11002766 const struct cred *cred = current_cred();
Thomas Liu2bf49692009-07-14 12:14:09 -04002767 struct common_audit_data ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Eric Paris50c205f2012-04-04 15:01:43 -04002769 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04002770 ad.u.dentry = dentry->d_sb->s_root;
David Howells88e67f32008-11-14 10:39:21 +11002771 return superblock_has_perm(cred, dentry->d_sb, FILESYSTEM__GETATTR, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772}
2773
Al Viro808d4e32012-10-11 11:42:01 -04002774static int selinux_mount(const char *dev_name,
Al Viro8a04c432016-03-25 14:52:53 -04002775 const struct path *path,
Al Viro808d4e32012-10-11 11:42:01 -04002776 const char *type,
Eric Paris828dfe12008-04-17 13:17:49 -04002777 unsigned long flags,
2778 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
David Howells88e67f32008-11-14 10:39:21 +11002780 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782 if (flags & MS_REMOUNT)
Al Virod8c95842011-12-07 18:16:57 -05002783 return superblock_has_perm(cred, path->dentry->d_sb,
Eric Paris828dfe12008-04-17 13:17:49 -04002784 FILESYSTEM__REMOUNT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 else
Eric Paris2875fa02011-04-28 16:04:24 -04002786 return path_has_perm(cred, path, FILE__MOUNTON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787}
2788
Stephen Smalley98aa0032020-01-17 15:24:07 -05002789static int selinux_move_mount(const struct path *from_path,
2790 const struct path *to_path)
2791{
2792 const struct cred *cred = current_cred();
2793
2794 return path_has_perm(cred, to_path, FILE__MOUNTON);
2795}
2796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797static int selinux_umount(struct vfsmount *mnt, int flags)
2798{
David Howells88e67f32008-11-14 10:39:21 +11002799 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
David Howells88e67f32008-11-14 10:39:21 +11002801 return superblock_has_perm(cred, mnt->mnt_sb,
Eric Paris828dfe12008-04-17 13:17:49 -04002802 FILESYSTEM__UNMOUNT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803}
2804
Al Viro0b520752018-12-23 16:02:47 -05002805static int selinux_fs_context_dup(struct fs_context *fc,
2806 struct fs_context *src_fc)
2807{
2808 const struct selinux_mnt_opts *src = src_fc->security;
2809 struct selinux_mnt_opts *opts;
2810
2811 if (!src)
2812 return 0;
2813
2814 fc->security = kzalloc(sizeof(struct selinux_mnt_opts), GFP_KERNEL);
2815 if (!fc->security)
2816 return -ENOMEM;
2817
2818 opts = fc->security;
2819
2820 if (src->fscontext) {
2821 opts->fscontext = kstrdup(src->fscontext, GFP_KERNEL);
2822 if (!opts->fscontext)
2823 return -ENOMEM;
2824 }
2825 if (src->context) {
2826 opts->context = kstrdup(src->context, GFP_KERNEL);
2827 if (!opts->context)
2828 return -ENOMEM;
2829 }
2830 if (src->rootcontext) {
2831 opts->rootcontext = kstrdup(src->rootcontext, GFP_KERNEL);
2832 if (!opts->rootcontext)
2833 return -ENOMEM;
2834 }
2835 if (src->defcontext) {
2836 opts->defcontext = kstrdup(src->defcontext, GFP_KERNEL);
2837 if (!opts->defcontext)
2838 return -ENOMEM;
2839 }
2840 return 0;
2841}
2842
Al Virod7167b12019-09-07 07:23:15 -04002843static const struct fs_parameter_spec selinux_fs_parameters[] = {
David Howells442155c2018-11-01 23:07:24 +00002844 fsparam_string(CONTEXT_STR, Opt_context),
2845 fsparam_string(DEFCONTEXT_STR, Opt_defcontext),
2846 fsparam_string(FSCONTEXT_STR, Opt_fscontext),
2847 fsparam_string(ROOTCONTEXT_STR, Opt_rootcontext),
2848 fsparam_flag (SECLABEL_STR, Opt_seclabel),
2849 {}
2850};
2851
David Howells442155c2018-11-01 23:07:24 +00002852static int selinux_fs_context_parse_param(struct fs_context *fc,
2853 struct fs_parameter *param)
2854{
2855 struct fs_parse_result result;
2856 int opt, rc;
2857
Al Virod7167b12019-09-07 07:23:15 -04002858 opt = fs_parse(fc, selinux_fs_parameters, param, &result);
David Howells442155c2018-11-01 23:07:24 +00002859 if (opt < 0)
2860 return opt;
2861
2862 rc = selinux_add_opt(opt, param->string, &fc->security);
2863 if (!rc) {
2864 param->string = NULL;
2865 rc = 1;
2866 }
2867 return rc;
2868}
2869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870/* inode security operations */
2871
2872static int selinux_inode_alloc_security(struct inode *inode)
2873{
Paul Moorecb89e242020-01-10 16:32:10 -05002874 struct inode_security_struct *isec = selinux_inode(inode);
2875 u32 sid = current_sid();
2876
2877 spin_lock_init(&isec->lock);
2878 INIT_LIST_HEAD(&isec->list);
2879 isec->inode = inode;
2880 isec->sid = SECINITSID_UNLABELED;
2881 isec->sclass = SECCLASS_FILE;
2882 isec->task_sid = sid;
2883 isec->initialized = LABEL_INVALID;
2884
2885 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886}
2887
2888static void selinux_inode_free_security(struct inode *inode)
2889{
2890 inode_free_security(inode);
2891}
2892
David Quigleyd47be3d2013-05-22 12:50:34 -04002893static int selinux_dentry_init_security(struct dentry *dentry, int mode,
Vivek Goyal15bf3232021-10-12 09:23:07 -04002894 const struct qstr *name,
2895 const char **xattr_name, void **ctx,
David Quigleyd47be3d2013-05-22 12:50:34 -04002896 u32 *ctxlen)
2897{
David Quigleyd47be3d2013-05-22 12:50:34 -04002898 u32 newsid;
2899 int rc;
2900
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07002901 rc = selinux_determine_inode_label(selinux_cred(current_cred()),
Vivek Goyalc957f6d2016-07-13 10:44:51 -04002902 d_inode(dentry->d_parent), name,
David Howellsc3c188b2015-07-10 17:19:58 -04002903 inode_mode_to_security_class(mode),
2904 &newsid);
2905 if (rc)
2906 return rc;
David Quigleyd47be3d2013-05-22 12:50:34 -04002907
Vivek Goyal15bf3232021-10-12 09:23:07 -04002908 if (xattr_name)
2909 *xattr_name = XATTR_NAME_SELINUX;
2910
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05002911 return security_sid_to_context(&selinux_state, newsid, (char **)ctx,
2912 ctxlen);
David Quigleyd47be3d2013-05-22 12:50:34 -04002913}
2914
Vivek Goyala518b0a2016-07-13 10:44:53 -04002915static int selinux_dentry_create_files_as(struct dentry *dentry, int mode,
2916 struct qstr *name,
2917 const struct cred *old,
2918 struct cred *new)
2919{
2920 u32 newsid;
2921 int rc;
2922 struct task_security_struct *tsec;
2923
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07002924 rc = selinux_determine_inode_label(selinux_cred(old),
Vivek Goyala518b0a2016-07-13 10:44:53 -04002925 d_inode(dentry->d_parent), name,
2926 inode_mode_to_security_class(mode),
2927 &newsid);
2928 if (rc)
2929 return rc;
2930
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07002931 tsec = selinux_cred(new);
Vivek Goyala518b0a2016-07-13 10:44:53 -04002932 tsec->create_sid = newsid;
2933 return 0;
2934}
2935
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002936static int selinux_inode_init_security(struct inode *inode, struct inode *dir,
Tetsuo Handa95489062013-07-25 05:44:02 +09002937 const struct qstr *qstr,
2938 const char **name,
Eric Paris2a7dba32011-02-01 11:05:39 -05002939 void **value, size_t *len)
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002940{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07002941 const struct task_security_struct *tsec = selinux_cred(current_cred());
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002942 struct superblock_security_struct *sbsec;
Corentin LABBEc0d4f462017-10-04 20:32:17 +02002943 u32 newsid, clen;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002944 int rc;
Tetsuo Handa95489062013-07-25 05:44:02 +09002945 char *context;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002946
Casey Schaufler1aea7802021-04-22 17:41:15 +02002947 sbsec = selinux_superblock(dir->i_sb);
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002948
David Howells275bb412008-11-14 10:39:19 +11002949 newsid = tsec->create_sid;
2950
Yang Guo210a2922019-12-12 10:02:24 +08002951 rc = selinux_determine_inode_label(tsec, dir, qstr,
David Howellsc3c188b2015-07-10 17:19:58 -04002952 inode_mode_to_security_class(inode->i_mode),
2953 &newsid);
2954 if (rc)
2955 return rc;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002956
Eric Paris296fddf2006-09-25 23:32:00 -07002957 /* Possibly defer initialization to selinux_complete_init. */
David P. Quigley0d90a7e2009-01-16 09:22:02 -05002958 if (sbsec->flags & SE_SBINITIALIZED) {
Casey Schaufler80788c22018-09-21 17:19:11 -07002959 struct inode_security_struct *isec = selinux_inode(inode);
Eric Paris296fddf2006-09-25 23:32:00 -07002960 isec->sclass = inode_mode_to_security_class(inode->i_mode);
2961 isec->sid = newsid;
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05002962 isec->initialized = LABEL_INITIALIZED;
Eric Paris296fddf2006-09-25 23:32:00 -07002963 }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002964
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +01002965 if (!selinux_initialized(&selinux_state) ||
2966 !(sbsec->flags & SBLABEL_MNT))
Stephen Smalley25a74f32005-11-08 21:34:33 -08002967 return -EOPNOTSUPP;
2968
Tetsuo Handa95489062013-07-25 05:44:02 +09002969 if (name)
2970 *name = XATTR_SELINUX_SUFFIX;
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002971
2972 if (value && len) {
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05002973 rc = security_sid_to_context_force(&selinux_state, newsid,
2974 &context, &clen);
Tetsuo Handa95489062013-07-25 05:44:02 +09002975 if (rc)
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002976 return rc;
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002977 *value = context;
2978 *len = clen;
2979 }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002980
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002981 return 0;
2982}
2983
Daniel Colascione29cd6592021-01-08 14:22:22 -08002984static int selinux_inode_init_security_anon(struct inode *inode,
2985 const struct qstr *name,
2986 const struct inode *context_inode)
2987{
2988 const struct task_security_struct *tsec = selinux_cred(current_cred());
2989 struct common_audit_data ad;
2990 struct inode_security_struct *isec;
2991 int rc;
2992
2993 if (unlikely(!selinux_initialized(&selinux_state)))
2994 return 0;
2995
2996 isec = selinux_inode(inode);
2997
2998 /*
2999 * We only get here once per ephemeral inode. The inode has
3000 * been initialized via inode_alloc_security but is otherwise
3001 * untouched.
3002 */
3003
3004 if (context_inode) {
3005 struct inode_security_struct *context_isec =
3006 selinux_inode(context_inode);
3007 if (context_isec->initialized != LABEL_INITIALIZED) {
3008 pr_err("SELinux: context_inode is not initialized");
3009 return -EACCES;
3010 }
3011
3012 isec->sclass = context_isec->sclass;
3013 isec->sid = context_isec->sid;
3014 } else {
3015 isec->sclass = SECCLASS_ANON_INODE;
3016 rc = security_transition_sid(
3017 &selinux_state, tsec->sid, tsec->sid,
3018 isec->sclass, name, &isec->sid);
3019 if (rc)
3020 return rc;
3021 }
3022
3023 isec->initialized = LABEL_INITIALIZED;
3024 /*
3025 * Now that we've initialized security, check whether we're
3026 * allowed to actually create this type of anonymous inode.
3027 */
3028
3029 ad.type = LSM_AUDIT_DATA_INODE;
3030 ad.u.inode = inode;
3031
3032 return avc_has_perm(&selinux_state,
3033 tsec->sid,
3034 isec->sid,
3035 isec->sclass,
3036 FILE__CREATE,
3037 &ad);
3038}
3039
Al Viro4acdaf22011-07-26 01:42:34 -04003040static int selinux_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041{
3042 return may_create(dir, dentry, SECCLASS_FILE);
3043}
3044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045static int selinux_inode_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3046{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 return may_link(dir, old_dentry, MAY_LINK);
3048}
3049
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050static int selinux_inode_unlink(struct inode *dir, struct dentry *dentry)
3051{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 return may_link(dir, dentry, MAY_UNLINK);
3053}
3054
3055static int selinux_inode_symlink(struct inode *dir, struct dentry *dentry, const char *name)
3056{
3057 return may_create(dir, dentry, SECCLASS_LNK_FILE);
3058}
3059
Al Viro18bb1db2011-07-26 01:41:39 -04003060static int selinux_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
3062 return may_create(dir, dentry, SECCLASS_DIR);
3063}
3064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065static int selinux_inode_rmdir(struct inode *dir, struct dentry *dentry)
3066{
3067 return may_link(dir, dentry, MAY_RMDIR);
3068}
3069
Al Viro1a67aaf2011-07-26 01:52:52 -04003070static int selinux_inode_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 return may_create(dir, dentry, inode_mode_to_security_class(mode));
3073}
3074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075static int selinux_inode_rename(struct inode *old_inode, struct dentry *old_dentry,
Eric Paris828dfe12008-04-17 13:17:49 -04003076 struct inode *new_inode, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077{
3078 return may_rename(old_inode, old_dentry, new_inode, new_dentry);
3079}
3080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081static int selinux_inode_readlink(struct dentry *dentry)
3082{
David Howells88e67f32008-11-14 10:39:21 +11003083 const struct cred *cred = current_cred();
3084
Eric Paris2875fa02011-04-28 16:04:24 -04003085 return dentry_has_perm(cred, dentry, FILE__READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086}
3087
NeilBrownbda0be72015-03-23 13:37:39 +11003088static int selinux_inode_follow_link(struct dentry *dentry, struct inode *inode,
3089 bool rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090{
David Howells88e67f32008-11-14 10:39:21 +11003091 const struct cred *cred = current_cred();
NeilBrownbda0be72015-03-23 13:37:39 +11003092 struct common_audit_data ad;
3093 struct inode_security_struct *isec;
3094 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
NeilBrownbda0be72015-03-23 13:37:39 +11003096 validate_creds(cred);
3097
3098 ad.type = LSM_AUDIT_DATA_DENTRY;
3099 ad.u.dentry = dentry;
3100 sid = cred_sid(cred);
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -05003101 isec = inode_security_rcu(inode, rcu);
3102 if (IS_ERR(isec))
3103 return PTR_ERR(isec);
NeilBrownbda0be72015-03-23 13:37:39 +11003104
Al Virod99cf132021-01-16 15:57:49 -05003105 return avc_has_perm(&selinux_state,
3106 sid, isec->sid, isec->sclass, FILE__READ, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107}
3108
Eric Parisd4cf970d2012-04-04 15:01:42 -04003109static noinline int audit_inode_permission(struct inode *inode,
3110 u32 perms, u32 audited, u32 denied,
Stephen Smalley0188d5c2019-11-22 12:22:45 -05003111 int result)
Eric Parisd4cf970d2012-04-04 15:01:42 -04003112{
3113 struct common_audit_data ad;
Casey Schaufler80788c22018-09-21 17:19:11 -07003114 struct inode_security_struct *isec = selinux_inode(inode);
Eric Parisd4cf970d2012-04-04 15:01:42 -04003115
Eric Paris50c205f2012-04-04 15:01:43 -04003116 ad.type = LSM_AUDIT_DATA_INODE;
Eric Parisd4cf970d2012-04-04 15:01:42 -04003117 ad.u.inode = inode;
3118
Al Virob17ec222021-01-16 15:40:54 -05003119 return slow_avc_audit(&selinux_state,
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003120 current_sid(), isec->sid, isec->sclass, perms,
Stephen Smalley0188d5c2019-11-22 12:22:45 -05003121 audited, denied, result, &ad);
Eric Parisd4cf970d2012-04-04 15:01:42 -04003122}
3123
Al Viroe74f71e2011-06-20 19:38:15 -04003124static int selinux_inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125{
David Howells88e67f32008-11-14 10:39:21 +11003126 const struct cred *cred = current_cred();
Eric Parisb782e0a2010-07-23 11:44:03 -04003127 u32 perms;
3128 bool from_access;
Stephen Smalley5298d0b2019-11-22 16:16:56 -05003129 bool no_block = mask & MAY_NOT_BLOCK;
Eric Paris2e334052012-04-04 15:01:42 -04003130 struct inode_security_struct *isec;
3131 u32 sid;
3132 struct av_decision avd;
3133 int rc, rc2;
3134 u32 audited, denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Eric Parisb782e0a2010-07-23 11:44:03 -04003136 from_access = mask & MAY_ACCESS;
Eric Parisd09ca732010-07-23 11:43:57 -04003137 mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
3138
Eric Parisb782e0a2010-07-23 11:44:03 -04003139 /* No permission to check. Existence test. */
3140 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Eric Paris2e334052012-04-04 15:01:42 -04003143 validate_creds(cred);
Eric Parisb782e0a2010-07-23 11:44:03 -04003144
Eric Paris2e334052012-04-04 15:01:42 -04003145 if (unlikely(IS_PRIVATE(inode)))
3146 return 0;
Eric Parisb782e0a2010-07-23 11:44:03 -04003147
3148 perms = file_mask_to_av(inode->i_mode, mask);
3149
Eric Paris2e334052012-04-04 15:01:42 -04003150 sid = cred_sid(cred);
Stephen Smalley5298d0b2019-11-22 16:16:56 -05003151 isec = inode_security_rcu(inode, no_block);
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -05003152 if (IS_ERR(isec))
3153 return PTR_ERR(isec);
Eric Paris2e334052012-04-04 15:01:42 -04003154
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003155 rc = avc_has_perm_noaudit(&selinux_state,
Al Virob17ec222021-01-16 15:40:54 -05003156 sid, isec->sid, isec->sclass, perms, 0,
Stephen Smalley3a28cff2018-12-12 10:10:55 -05003157 &avd);
Eric Paris2e334052012-04-04 15:01:42 -04003158 audited = avc_audit_required(perms, &avd, rc,
3159 from_access ? FILE__AUDIT_ACCESS : 0,
3160 &denied);
3161 if (likely(!audited))
3162 return rc;
3163
Stephen Smalley0188d5c2019-11-22 12:22:45 -05003164 rc2 = audit_inode_permission(inode, perms, audited, denied, rc);
Eric Paris2e334052012-04-04 15:01:42 -04003165 if (rc2)
3166 return rc2;
3167 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168}
3169
3170static int selinux_inode_setattr(struct dentry *dentry, struct iattr *iattr)
3171{
David Howells88e67f32008-11-14 10:39:21 +11003172 const struct cred *cred = current_cred();
Stephen Smalleyccb54472017-05-12 12:41:24 -04003173 struct inode *inode = d_backing_inode(dentry);
Amerigo Wangbc6a6002009-08-20 19:29:02 -07003174 unsigned int ia_valid = iattr->ia_valid;
Eric Paris95dbf732012-04-04 13:45:34 -04003175 __u32 av = FILE__WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Amerigo Wangbc6a6002009-08-20 19:29:02 -07003177 /* ATTR_FORCE is just used for ATTR_KILL_S[UG]ID. */
3178 if (ia_valid & ATTR_FORCE) {
3179 ia_valid &= ~(ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_MODE |
3180 ATTR_FORCE);
3181 if (!ia_valid)
3182 return 0;
3183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Amerigo Wangbc6a6002009-08-20 19:29:02 -07003185 if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID |
3186 ATTR_ATIME_SET | ATTR_MTIME_SET | ATTR_TIMES_SET))
Eric Paris2875fa02011-04-28 16:04:24 -04003187 return dentry_has_perm(cred, dentry, FILE__SETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05003189 if (selinux_policycap_openperm() &&
Stephen Smalleyccb54472017-05-12 12:41:24 -04003190 inode->i_sb->s_magic != SOCKFS_MAGIC &&
3191 (ia_valid & ATTR_SIZE) &&
3192 !(ia_valid & ATTR_FILE))
Eric Paris95dbf732012-04-04 13:45:34 -04003193 av |= FILE__OPEN;
3194
3195 return dentry_has_perm(cred, dentry, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196}
3197
Al Viro3f7036a2015-03-08 19:28:30 -04003198static int selinux_inode_getattr(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199{
Al Viro3f7036a2015-03-08 19:28:30 -04003200 return path_has_perm(current_cred(), path, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201}
3202
Stephen Smalleydb590002017-04-20 11:31:30 -04003203static bool has_cap_mac_admin(bool audit)
3204{
3205 const struct cred *cred = current_cred();
Micah Mortonc1a85a02019-01-07 16:10:53 -08003206 unsigned int opts = audit ? CAP_OPT_NONE : CAP_OPT_NOAUDIT;
Stephen Smalleydb590002017-04-20 11:31:30 -04003207
Micah Mortonc1a85a02019-01-07 16:10:53 -08003208 if (cap_capable(cred, &init_user_ns, CAP_MAC_ADMIN, opts))
Stephen Smalleydb590002017-04-20 11:31:30 -04003209 return false;
Micah Mortonc1a85a02019-01-07 16:10:53 -08003210 if (cred_has_capability(cred, CAP_MAC_ADMIN, opts, true))
Stephen Smalleydb590002017-04-20 11:31:30 -04003211 return false;
3212 return true;
3213}
3214
Christian Brauner71bc3562021-01-21 14:19:29 +01003215static int selinux_inode_setxattr(struct user_namespace *mnt_userns,
3216 struct dentry *dentry, const char *name,
David Howells8f0cfa52008-04-29 00:59:41 -07003217 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
David Howellsc6f493d2015-03-17 22:26:22 +00003219 struct inode *inode = d_backing_inode(dentry);
Paul Moore20cdef82016-04-04 14:14:42 -04003220 struct inode_security_struct *isec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 struct superblock_security_struct *sbsec;
Thomas Liu2bf49692009-07-14 12:14:09 -04003222 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11003223 u32 newsid, sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 int rc = 0;
3225
Eric W. Biederman6b240302017-10-02 09:38:20 -05003226 if (strcmp(name, XATTR_NAME_SELINUX)) {
3227 rc = cap_inode_setxattr(dentry, name, value, size, flags);
3228 if (rc)
3229 return rc;
3230
3231 /* Not an attribute we recognize, so just check the
3232 ordinary setattr permission. */
3233 return dentry_has_perm(current_cred(), dentry, FILE__SETATTR);
3234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +01003236 if (!selinux_initialized(&selinux_state))
Christian Brauner71bc3562021-01-21 14:19:29 +01003237 return (inode_owner_or_capable(mnt_userns, inode) ? 0 : -EPERM);
Jonathan Lebon3e3e24b2019-09-12 09:30:07 -04003238
Casey Schaufler1aea7802021-04-22 17:41:15 +02003239 sbsec = selinux_superblock(inode->i_sb);
Eric Paris12f348b2012-10-09 10:56:25 -04003240 if (!(sbsec->flags & SBLABEL_MNT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 return -EOPNOTSUPP;
3242
Christian Brauner71bc3562021-01-21 14:19:29 +01003243 if (!inode_owner_or_capable(mnt_userns, inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 return -EPERM;
3245
Eric Paris50c205f2012-04-04 15:01:43 -04003246 ad.type = LSM_AUDIT_DATA_DENTRY;
Eric Parisa2694342011-04-25 13:10:27 -04003247 ad.u.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Paul Moore20cdef82016-04-04 14:14:42 -04003249 isec = backing_inode_security(dentry);
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003250 rc = avc_has_perm(&selinux_state,
3251 sid, isec->sid, isec->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 FILE__RELABELFROM, &ad);
3253 if (rc)
3254 return rc;
3255
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05003256 rc = security_context_to_sid(&selinux_state, value, size, &newsid,
3257 GFP_KERNEL);
Stephen Smalley12b29f32008-05-07 13:03:20 -04003258 if (rc == -EINVAL) {
Stephen Smalleydb590002017-04-20 11:31:30 -04003259 if (!has_cap_mac_admin(true)) {
Eric Parisd6ea83e2012-04-04 13:45:49 -04003260 struct audit_buffer *ab;
3261 size_t audit_size;
Eric Parisd6ea83e2012-04-04 13:45:49 -04003262
3263 /* We strip a nul only if it is at the end, otherwise the
3264 * context contains a nul and we should audit that */
Al Viroe3fea3f2012-06-09 08:15:16 +01003265 if (value) {
Colin Ian Kingadd24372017-10-14 13:46:55 +01003266 const char *str = value;
3267
Al Viroe3fea3f2012-06-09 08:15:16 +01003268 if (str[size - 1] == '\0')
3269 audit_size = size - 1;
3270 else
3271 audit_size = size;
3272 } else {
Al Viroe3fea3f2012-06-09 08:15:16 +01003273 audit_size = 0;
3274 }
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04003275 ab = audit_log_start(audit_context(),
3276 GFP_ATOMIC, AUDIT_SELINUX_ERR);
Austin Kim893c47d2021-07-14 01:11:27 +01003277 if (!ab)
3278 return rc;
Eric Parisd6ea83e2012-04-04 13:45:49 -04003279 audit_log_format(ab, "op=setxattr invalid_context=");
3280 audit_log_n_untrustedstring(ab, value, audit_size);
3281 audit_log_end(ab);
3282
Stephen Smalley12b29f32008-05-07 13:03:20 -04003283 return rc;
Eric Parisd6ea83e2012-04-04 13:45:49 -04003284 }
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05003285 rc = security_context_to_sid_force(&selinux_state, value,
3286 size, &newsid);
Stephen Smalley12b29f32008-05-07 13:03:20 -04003287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 if (rc)
3289 return rc;
3290
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003291 rc = avc_has_perm(&selinux_state,
3292 sid, newsid, isec->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 FILE__RELABELTO, &ad);
3294 if (rc)
3295 return rc;
3296
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05003297 rc = security_validate_transition(&selinux_state, isec->sid, newsid,
3298 sid, isec->sclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 if (rc)
3300 return rc;
3301
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003302 return avc_has_perm(&selinux_state,
3303 newsid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 sbsec->sid,
3305 SECCLASS_FILESYSTEM,
3306 FILESYSTEM__ASSOCIATE,
3307 &ad);
3308}
3309
David Howells8f0cfa52008-04-29 00:59:41 -07003310static void selinux_inode_post_setxattr(struct dentry *dentry, const char *name,
Eric Parisf5269712008-05-14 11:27:45 -04003311 const void *value, size_t size,
David Howells8f0cfa52008-04-29 00:59:41 -07003312 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313{
David Howellsc6f493d2015-03-17 22:26:22 +00003314 struct inode *inode = d_backing_inode(dentry);
Paul Moore20cdef82016-04-04 14:14:42 -04003315 struct inode_security_struct *isec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 u32 newsid;
3317 int rc;
3318
3319 if (strcmp(name, XATTR_NAME_SELINUX)) {
3320 /* Not an attribute we recognize, so nothing to do. */
3321 return;
3322 }
3323
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +01003324 if (!selinux_initialized(&selinux_state)) {
Jonathan Lebon3e3e24b2019-09-12 09:30:07 -04003325 /* If we haven't even been initialized, then we can't validate
3326 * against a policy, so leave the label as invalid. It may
3327 * resolve to a valid label on the next revalidation try if
3328 * we've since initialized.
3329 */
3330 return;
3331 }
3332
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05003333 rc = security_context_to_sid_force(&selinux_state, value, size,
3334 &newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 if (rc) {
peter enderborgc103a912018-06-12 10:09:03 +02003336 pr_err("SELinux: unable to map context to SID"
Stephen Smalley12b29f32008-05-07 13:03:20 -04003337 "for (%s, %lu), rc=%d\n",
3338 inode->i_sb->s_id, inode->i_ino, -rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 return;
3340 }
3341
Paul Moore20cdef82016-04-04 14:14:42 -04003342 isec = backing_inode_security(dentry);
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01003343 spin_lock(&isec->lock);
David Quigleyaa9c2662013-05-22 12:50:44 -04003344 isec->sclass = inode_mode_to_security_class(inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 isec->sid = newsid;
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05003346 isec->initialized = LABEL_INITIALIZED;
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01003347 spin_unlock(&isec->lock);
David Quigleyaa9c2662013-05-22 12:50:44 -04003348
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 return;
3350}
3351
David Howells8f0cfa52008-04-29 00:59:41 -07003352static int selinux_inode_getxattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353{
David Howells88e67f32008-11-14 10:39:21 +11003354 const struct cred *cred = current_cred();
3355
Eric Paris2875fa02011-04-28 16:04:24 -04003356 return dentry_has_perm(cred, dentry, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357}
3358
Eric Paris828dfe12008-04-17 13:17:49 -04003359static int selinux_inode_listxattr(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360{
David Howells88e67f32008-11-14 10:39:21 +11003361 const struct cred *cred = current_cred();
3362
Eric Paris2875fa02011-04-28 16:04:24 -04003363 return dentry_has_perm(cred, dentry, FILE__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364}
3365
Christian Brauner71bc3562021-01-21 14:19:29 +01003366static int selinux_inode_removexattr(struct user_namespace *mnt_userns,
3367 struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368{
Eric W. Biederman6b240302017-10-02 09:38:20 -05003369 if (strcmp(name, XATTR_NAME_SELINUX)) {
Christian Brauner71bc3562021-01-21 14:19:29 +01003370 int rc = cap_inode_removexattr(mnt_userns, dentry, name);
Eric W. Biederman6b240302017-10-02 09:38:20 -05003371 if (rc)
3372 return rc;
3373
3374 /* Not an attribute we recognize, so just check the
3375 ordinary setattr permission. */
3376 return dentry_has_perm(current_cred(), dentry, FILE__SETATTR);
3377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
Stephen Smalley9530a3e2020-08-20 13:00:40 -04003379 if (!selinux_initialized(&selinux_state))
3380 return 0;
3381
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 /* No one is allowed to remove a SELinux security label.
3383 You can change the label, but all data must be labeled. */
3384 return -EACCES;
3385}
3386
Aaron Goidelac5656d2019-08-12 11:20:00 -04003387static int selinux_path_notify(const struct path *path, u64 mask,
3388 unsigned int obj_type)
3389{
3390 int ret;
3391 u32 perm;
3392
3393 struct common_audit_data ad;
3394
3395 ad.type = LSM_AUDIT_DATA_PATH;
3396 ad.u.path = *path;
3397
3398 /*
3399 * Set permission needed based on the type of mark being set.
3400 * Performs an additional check for sb watches.
3401 */
3402 switch (obj_type) {
3403 case FSNOTIFY_OBJ_TYPE_VFSMOUNT:
3404 perm = FILE__WATCH_MOUNT;
3405 break;
3406 case FSNOTIFY_OBJ_TYPE_SB:
3407 perm = FILE__WATCH_SB;
3408 ret = superblock_has_perm(current_cred(), path->dentry->d_sb,
3409 FILESYSTEM__WATCH, &ad);
3410 if (ret)
3411 return ret;
3412 break;
3413 case FSNOTIFY_OBJ_TYPE_INODE:
3414 perm = FILE__WATCH;
3415 break;
3416 default:
3417 return -EINVAL;
3418 }
3419
3420 /* blocking watches require the file:watch_with_perm permission */
3421 if (mask & (ALL_FSNOTIFY_PERM_EVENTS))
3422 perm |= FILE__WATCH_WITH_PERM;
3423
3424 /* watches on read-like events need the file:watch_reads permission */
3425 if (mask & (FS_ACCESS | FS_ACCESS_PERM | FS_CLOSE_NOWRITE))
3426 perm |= FILE__WATCH_READS;
3427
3428 return path_has_perm(current_cred(), path, perm);
3429}
3430
James Morrisd381d8a2005-10-30 14:59:22 -08003431/*
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04003432 * Copy the inode security context value to the user.
James Morrisd381d8a2005-10-30 14:59:22 -08003433 *
3434 * Permission check is handled by selinux_inode_getxattr hook.
3435 */
Christian Brauner71bc3562021-01-21 14:19:29 +01003436static int selinux_inode_getsecurity(struct user_namespace *mnt_userns,
3437 struct inode *inode, const char *name,
3438 void **buffer, bool alloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439{
David P. Quigley42492592008-02-04 22:29:39 -08003440 u32 size;
3441 int error;
3442 char *context = NULL;
Paul Moore20cdef82016-04-04 14:14:42 -04003443 struct inode_security_struct *isec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Jonathan Lebonc8e22262020-05-28 10:39:40 -04003445 /*
3446 * If we're not initialized yet, then we can't validate contexts, so
3447 * just let vfs_getxattr fall back to using the on-disk xattr.
3448 */
3449 if (!selinux_initialized(&selinux_state) ||
3450 strcmp(name, XATTR_SELINUX_SUFFIX))
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00003451 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04003453 /*
3454 * If the caller has CAP_MAC_ADMIN, then get the raw context
3455 * value even if it is not defined by current policy; otherwise,
3456 * use the in-core value under current policy.
3457 * Use the non-auditing forms of the permission checks since
3458 * getxattr may be called by unprivileged processes commonly
3459 * and lack of permission just means that we fall back to the
3460 * in-core context value, not a denial.
3461 */
Paul Moore20cdef82016-04-04 14:14:42 -04003462 isec = inode_security(inode);
Stephen Smalleydb590002017-04-20 11:31:30 -04003463 if (has_cap_mac_admin(false))
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05003464 error = security_sid_to_context_force(&selinux_state,
3465 isec->sid, &context,
Stephen Smalleyabc69bb2008-05-21 14:16:12 -04003466 &size);
3467 else
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05003468 error = security_sid_to_context(&selinux_state, isec->sid,
3469 &context, &size);
David P. Quigley42492592008-02-04 22:29:39 -08003470 if (error)
3471 return error;
3472 error = size;
3473 if (alloc) {
3474 *buffer = context;
3475 goto out_nofree;
3476 }
3477 kfree(context);
3478out_nofree:
3479 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480}
3481
3482static int selinux_inode_setsecurity(struct inode *inode, const char *name,
Eric Paris828dfe12008-04-17 13:17:49 -04003483 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484{
Paul Moore2c971652016-04-19 16:36:28 -04003485 struct inode_security_struct *isec = inode_security_novalidate(inode);
Casey Schaufler1aea7802021-04-22 17:41:15 +02003486 struct superblock_security_struct *sbsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 u32 newsid;
3488 int rc;
3489
3490 if (strcmp(name, XATTR_SELINUX_SUFFIX))
3491 return -EOPNOTSUPP;
3492
Casey Schaufler1aea7802021-04-22 17:41:15 +02003493 sbsec = selinux_superblock(inode->i_sb);
Ondrej Mosnacek53e0c2a2018-12-21 21:18:53 +01003494 if (!(sbsec->flags & SBLABEL_MNT))
3495 return -EOPNOTSUPP;
3496
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 if (!value || !size)
3498 return -EACCES;
3499
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05003500 rc = security_context_to_sid(&selinux_state, value, size, &newsid,
3501 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 if (rc)
3503 return rc;
3504
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01003505 spin_lock(&isec->lock);
David Quigleyaa9c2662013-05-22 12:50:44 -04003506 isec->sclass = inode_mode_to_security_class(inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 isec->sid = newsid;
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05003508 isec->initialized = LABEL_INITIALIZED;
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01003509 spin_unlock(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 return 0;
3511}
3512
3513static int selinux_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
3514{
3515 const int len = sizeof(XATTR_NAME_SELINUX);
Amir Goldsteina9ffe682020-12-19 12:05:27 +02003516
3517 if (!selinux_initialized(&selinux_state))
3518 return 0;
3519
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 if (buffer && len <= buffer_size)
3521 memcpy(buffer, XATTR_NAME_SELINUX, len);
3522 return len;
3523}
3524
Andreas Gruenbacherd6335d72015-12-24 11:09:39 -05003525static void selinux_inode_getsecid(struct inode *inode, u32 *secid)
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02003526{
Andreas Gruenbachere817c2f2016-02-18 12:04:08 +01003527 struct inode_security_struct *isec = inode_security_novalidate(inode);
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02003528 *secid = isec->sid;
3529}
3530
Vivek Goyal56909eb2016-07-13 10:44:48 -04003531static int selinux_inode_copy_up(struct dentry *src, struct cred **new)
3532{
3533 u32 sid;
3534 struct task_security_struct *tsec;
3535 struct cred *new_creds = *new;
3536
3537 if (new_creds == NULL) {
3538 new_creds = prepare_creds();
3539 if (!new_creds)
3540 return -ENOMEM;
3541 }
3542
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07003543 tsec = selinux_cred(new_creds);
Vivek Goyal56909eb2016-07-13 10:44:48 -04003544 /* Get label from overlay inode and set it in create_sid */
3545 selinux_inode_getsecid(d_inode(src), &sid);
3546 tsec->create_sid = sid;
3547 *new = new_creds;
3548 return 0;
3549}
3550
Vivek Goyal19472b62016-07-13 10:44:50 -04003551static int selinux_inode_copy_up_xattr(const char *name)
3552{
3553 /* The copy_up hook above sets the initial context on an inode, but we
3554 * don't then want to overwrite it by blindly copying all the lower
3555 * xattrs up. Instead, we have to filter out SELinux-related xattrs.
3556 */
3557 if (strcmp(name, XATTR_NAME_SELINUX) == 0)
3558 return 1; /* Discard */
3559 /*
3560 * Any other attribute apart from SELINUX is not claimed, supported
3561 * by selinux.
3562 */
3563 return -EOPNOTSUPP;
3564}
3565
Ondrej Mosnacekec882da2019-02-22 15:57:17 +01003566/* kernfs node operations */
3567
YueHaibingc72c4cd2019-03-22 22:04:00 +08003568static int selinux_kernfs_init_security(struct kernfs_node *kn_dir,
3569 struct kernfs_node *kn)
Ondrej Mosnacekec882da2019-02-22 15:57:17 +01003570{
Stephen Smalley169ce0c2019-09-04 10:32:48 -04003571 const struct task_security_struct *tsec = selinux_cred(current_cred());
Ondrej Mosnacekec882da2019-02-22 15:57:17 +01003572 u32 parent_sid, newsid, clen;
3573 int rc;
3574 char *context;
3575
Ondrej Mosnacek1537ad12019-04-03 09:29:41 +02003576 rc = kernfs_xattr_get(kn_dir, XATTR_NAME_SELINUX, NULL, 0);
Ondrej Mosnacekec882da2019-02-22 15:57:17 +01003577 if (rc == -ENODATA)
3578 return 0;
3579 else if (rc < 0)
3580 return rc;
3581
3582 clen = (u32)rc;
3583 context = kmalloc(clen, GFP_KERNEL);
3584 if (!context)
3585 return -ENOMEM;
3586
Ondrej Mosnacek1537ad12019-04-03 09:29:41 +02003587 rc = kernfs_xattr_get(kn_dir, XATTR_NAME_SELINUX, context, clen);
Ondrej Mosnacekec882da2019-02-22 15:57:17 +01003588 if (rc < 0) {
3589 kfree(context);
3590 return rc;
3591 }
3592
3593 rc = security_context_to_sid(&selinux_state, context, clen, &parent_sid,
3594 GFP_KERNEL);
3595 kfree(context);
3596 if (rc)
3597 return rc;
3598
3599 if (tsec->create_sid) {
3600 newsid = tsec->create_sid;
3601 } else {
3602 u16 secclass = inode_mode_to_security_class(kn->mode);
3603 struct qstr q;
3604
3605 q.name = kn->name;
3606 q.hash_len = hashlen_string(kn_dir, kn->name);
3607
3608 rc = security_transition_sid(&selinux_state, tsec->sid,
3609 parent_sid, secclass, &q,
3610 &newsid);
3611 if (rc)
3612 return rc;
3613 }
3614
3615 rc = security_sid_to_context_force(&selinux_state, newsid,
3616 &context, &clen);
3617 if (rc)
3618 return rc;
3619
Ondrej Mosnacek1537ad12019-04-03 09:29:41 +02003620 rc = kernfs_xattr_set(kn, XATTR_NAME_SELINUX, context, clen,
3621 XATTR_CREATE);
Ondrej Mosnacekec882da2019-02-22 15:57:17 +01003622 kfree(context);
3623 return rc;
3624}
3625
3626
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627/* file security operations */
3628
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003629static int selinux_revalidate_file_permission(struct file *file, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630{
David Howells88e67f32008-11-14 10:39:21 +11003631 const struct cred *cred = current_cred();
Al Viro496ad9a2013-01-23 17:07:38 -05003632 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 /* file_mask_to_av won't add FILE__WRITE if MAY_APPEND is set */
3635 if ((file->f_flags & O_APPEND) && (mask & MAY_WRITE))
3636 mask |= MAY_APPEND;
3637
Paul Moore389fb8002009-03-27 17:10:34 -04003638 return file_has_perm(cred, file,
3639 file_mask_to_av(inode->i_mode, mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640}
3641
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003642static int selinux_file_permission(struct file *file, int mask)
3643{
Al Viro496ad9a2013-01-23 17:07:38 -05003644 struct inode *inode = file_inode(file);
Casey Schauflerbb6c6b02018-09-21 17:22:32 -07003645 struct file_security_struct *fsec = selinux_file(file);
Andreas Gruenbacherb1973672016-01-05 23:12:33 +01003646 struct inode_security_struct *isec;
Stephen Smalley20dda182009-06-22 14:54:53 -04003647 u32 sid = current_sid();
3648
Paul Moore389fb8002009-03-27 17:10:34 -04003649 if (!mask)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003650 /* No permission to check. Existence test. */
3651 return 0;
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003652
Andreas Gruenbacherb1973672016-01-05 23:12:33 +01003653 isec = inode_security(inode);
Stephen Smalley20dda182009-06-22 14:54:53 -04003654 if (sid == fsec->sid && fsec->isid == isec->sid &&
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003655 fsec->pseqno == avc_policy_seqno(&selinux_state))
Eric Paris83d49852012-04-04 13:45:40 -04003656 /* No change since file_open check. */
Stephen Smalley20dda182009-06-22 14:54:53 -04003657 return 0;
3658
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003659 return selinux_revalidate_file_permission(file, mask);
3660}
3661
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662static int selinux_file_alloc_security(struct file *file)
3663{
Paul Moorecb89e242020-01-10 16:32:10 -05003664 struct file_security_struct *fsec = selinux_file(file);
3665 u32 sid = current_sid();
3666
3667 fsec->sid = sid;
3668 fsec->fown_sid = sid;
3669
3670 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671}
3672
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04003673/*
3674 * Check whether a task has the ioctl permission and cmd
3675 * operation to an inode.
3676 */
Geliang Tang1d2a1682015-10-21 17:44:27 -04003677static int ioctl_has_perm(const struct cred *cred, struct file *file,
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04003678 u32 requested, u16 cmd)
3679{
3680 struct common_audit_data ad;
Casey Schauflerbb6c6b02018-09-21 17:22:32 -07003681 struct file_security_struct *fsec = selinux_file(file);
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04003682 struct inode *inode = file_inode(file);
Paul Moore20cdef82016-04-04 14:14:42 -04003683 struct inode_security_struct *isec;
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04003684 struct lsm_ioctlop_audit ioctl;
3685 u32 ssid = cred_sid(cred);
3686 int rc;
3687 u8 driver = cmd >> 8;
3688 u8 xperm = cmd & 0xff;
3689
3690 ad.type = LSM_AUDIT_DATA_IOCTL_OP;
3691 ad.u.op = &ioctl;
3692 ad.u.op->cmd = cmd;
3693 ad.u.op->path = file->f_path;
3694
3695 if (ssid != fsec->sid) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003696 rc = avc_has_perm(&selinux_state,
3697 ssid, fsec->sid,
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04003698 SECCLASS_FD,
3699 FD__USE,
3700 &ad);
3701 if (rc)
3702 goto out;
3703 }
3704
3705 if (unlikely(IS_PRIVATE(inode)))
3706 return 0;
3707
Paul Moore20cdef82016-04-04 14:14:42 -04003708 isec = inode_security(inode);
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003709 rc = avc_has_extended_perms(&selinux_state,
3710 ssid, isec->sid, isec->sclass,
3711 requested, driver, xperm, &ad);
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04003712out:
3713 return rc;
3714}
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716static int selinux_file_ioctl(struct file *file, unsigned int cmd,
3717 unsigned long arg)
3718{
David Howells88e67f32008-11-14 10:39:21 +11003719 const struct cred *cred = current_cred();
Eric Paris0b24dcb2011-02-25 15:39:20 -05003720 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Eric Paris0b24dcb2011-02-25 15:39:20 -05003722 switch (cmd) {
3723 case FIONREAD:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003724 case FIBMAP:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003725 case FIGETBSZ:
Al Viro2f99c362012-03-23 16:04:05 -04003726 case FS_IOC_GETFLAGS:
Al Viro2f99c362012-03-23 16:04:05 -04003727 case FS_IOC_GETVERSION:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003728 error = file_has_perm(cred, file, FILE__GETATTR);
3729 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
Al Viro2f99c362012-03-23 16:04:05 -04003731 case FS_IOC_SETFLAGS:
Al Viro2f99c362012-03-23 16:04:05 -04003732 case FS_IOC_SETVERSION:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003733 error = file_has_perm(cred, file, FILE__SETATTR);
3734 break;
3735
3736 /* sys_ioctl() checks */
3737 case FIONBIO:
Eric Paris0b24dcb2011-02-25 15:39:20 -05003738 case FIOASYNC:
3739 error = file_has_perm(cred, file, 0);
3740 break;
3741
3742 case KDSKBENT:
3743 case KDSKBSENT:
Eric Paris6a9de492012-01-03 12:25:14 -05003744 error = cred_has_capability(cred, CAP_SYS_TTY_CONFIG,
Micah Mortonc1a85a02019-01-07 16:10:53 -08003745 CAP_OPT_NONE, true);
Eric Paris0b24dcb2011-02-25 15:39:20 -05003746 break;
3747
3748 /* default case assumes that the command will go
3749 * to the file's ioctl() function.
3750 */
3751 default:
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04003752 error = ioctl_has_perm(cred, file, FILE__IOCTL, (u16) cmd);
Eric Paris0b24dcb2011-02-25 15:39:20 -05003753 }
3754 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755}
3756
Stephen Smalleyb78b7d52020-01-08 12:23:56 -05003757static int default_noexec __ro_after_init;
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759static int file_map_prot_check(struct file *file, unsigned long prot, int shared)
3760{
David Howells88e67f32008-11-14 10:39:21 +11003761 const struct cred *cred = current_cred();
Stephen Smalleybe0554c2017-01-09 10:07:31 -05003762 u32 sid = cred_sid(cred);
David Howellsd84f4f92008-11-14 10:39:23 +11003763 int rc = 0;
David Howells88e67f32008-11-14 10:39:21 +11003764
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003765 if (default_noexec &&
Stephen Smalley892e8ca2015-07-10 09:40:59 -04003766 (prot & PROT_EXEC) && (!file || IS_PRIVATE(file_inode(file)) ||
3767 (!shared && (prot & PROT_WRITE)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 /*
3769 * We are making executable an anonymous mapping or a
3770 * private file mapping that will also be writable.
3771 * This has an additional check.
3772 */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003773 rc = avc_has_perm(&selinux_state,
3774 sid, sid, SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05003775 PROCESS__EXECMEM, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 if (rc)
David Howellsd84f4f92008-11-14 10:39:23 +11003777 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
3780 if (file) {
3781 /* read access is always possible with a mapping */
3782 u32 av = FILE__READ;
3783
3784 /* write access only matters if the mapping is shared */
3785 if (shared && (prot & PROT_WRITE))
3786 av |= FILE__WRITE;
3787
3788 if (prot & PROT_EXEC)
3789 av |= FILE__EXECUTE;
3790
David Howells88e67f32008-11-14 10:39:21 +11003791 return file_has_perm(cred, file, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 }
David Howellsd84f4f92008-11-14 10:39:23 +11003793
3794error:
3795 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796}
3797
Al Viroe5467852012-05-30 13:30:51 -04003798static int selinux_mmap_addr(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799{
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07003800 int rc = 0;
Paul Moore98883bf2014-03-19 16:46:11 -04003801
3802 if (addr < CONFIG_LSM_MMAP_MIN_ADDR) {
3803 u32 sid = current_sid();
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003804 rc = avc_has_perm(&selinux_state,
3805 sid, sid, SECCLASS_MEMPROTECT,
Paul Moore98883bf2014-03-19 16:46:11 -04003806 MEMPROTECT__MMAP_ZERO, NULL);
3807 }
3808
3809 return rc;
Al Viroe5467852012-05-30 13:30:51 -04003810}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
Al Viroe5467852012-05-30 13:30:51 -04003812static int selinux_mmap_file(struct file *file, unsigned long reqprot,
3813 unsigned long prot, unsigned long flags)
3814{
Stephen Smalley3ba4bf52017-05-05 09:14:48 -04003815 struct common_audit_data ad;
3816 int rc;
3817
3818 if (file) {
3819 ad.type = LSM_AUDIT_DATA_FILE;
3820 ad.u.file = file;
3821 rc = inode_has_perm(current_cred(), file_inode(file),
3822 FILE__MAP, &ad);
3823 if (rc)
3824 return rc;
3825 }
3826
Lakshmi Ramasubramanian8861d0a2020-09-14 10:31:57 -07003827 if (checkreqprot_get(&selinux_state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 prot = reqprot;
3829
3830 return file_map_prot_check(file, prot,
3831 (flags & MAP_TYPE) == MAP_SHARED);
3832}
3833
3834static int selinux_file_mprotect(struct vm_area_struct *vma,
3835 unsigned long reqprot,
3836 unsigned long prot)
3837{
David Howells88e67f32008-11-14 10:39:21 +11003838 const struct cred *cred = current_cred();
Stephen Smalleybe0554c2017-01-09 10:07:31 -05003839 u32 sid = cred_sid(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Lakshmi Ramasubramanian8861d0a2020-09-14 10:31:57 -07003841 if (checkreqprot_get(&selinux_state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 prot = reqprot;
3843
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04003844 if (default_noexec &&
3845 (prot & PROT_EXEC) && !(vma->vm_flags & VM_EXEC)) {
James Morrisd541bbe2009-01-29 12:19:51 +11003846 int rc = 0;
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003847 if (vma->vm_start >= vma->vm_mm->start_brk &&
3848 vma->vm_end <= vma->vm_mm->brk) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003849 rc = avc_has_perm(&selinux_state,
3850 sid, sid, SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05003851 PROCESS__EXECHEAP, NULL);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003852 } else if (!vma->vm_file &&
Stephen Smalleyc2316db2016-04-08 13:55:03 -04003853 ((vma->vm_start <= vma->vm_mm->start_stack &&
3854 vma->vm_end >= vma->vm_mm->start_stack) ||
Andy Lutomirskid17af502016-09-30 10:58:58 -07003855 vma_is_stack_for_current(vma))) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003856 rc = avc_has_perm(&selinux_state,
3857 sid, sid, SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05003858 PROCESS__EXECSTACK, NULL);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003859 } else if (vma->vm_file && vma->anon_vma) {
3860 /*
3861 * We are making executable a file mapping that has
3862 * had some COW done. Since pages might have been
3863 * written, check ability to execute the possibly
3864 * modified content. This typically should only
3865 * occur for text relocations.
3866 */
David Howellsd84f4f92008-11-14 10:39:23 +11003867 rc = file_has_perm(cred, vma->vm_file, FILE__EXECMOD);
Stephen Smalleydb4c9642006-02-01 03:05:54 -08003868 }
Lorenzo Hernandez García-Hierro6b992192005-06-25 14:54:34 -07003869 if (rc)
3870 return rc;
3871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
3873 return file_map_prot_check(vma->vm_file, prot, vma->vm_flags&VM_SHARED);
3874}
3875
3876static int selinux_file_lock(struct file *file, unsigned int cmd)
3877{
David Howells88e67f32008-11-14 10:39:21 +11003878 const struct cred *cred = current_cred();
3879
3880 return file_has_perm(cred, file, FILE__LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881}
3882
3883static int selinux_file_fcntl(struct file *file, unsigned int cmd,
3884 unsigned long arg)
3885{
David Howells88e67f32008-11-14 10:39:21 +11003886 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 int err = 0;
3888
3889 switch (cmd) {
Eric Paris828dfe12008-04-17 13:17:49 -04003890 case F_SETFL:
Eric Paris828dfe12008-04-17 13:17:49 -04003891 if ((file->f_flags & O_APPEND) && !(arg & O_APPEND)) {
David Howells88e67f32008-11-14 10:39:21 +11003892 err = file_has_perm(cred, file, FILE__WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 break;
Eric Paris828dfe12008-04-17 13:17:49 -04003894 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003895 fallthrough;
Eric Paris828dfe12008-04-17 13:17:49 -04003896 case F_SETOWN:
3897 case F_SETSIG:
3898 case F_GETFL:
3899 case F_GETOWN:
3900 case F_GETSIG:
Cyrill Gorcunov1d151c32012-07-30 14:43:00 -07003901 case F_GETOWNER_UIDS:
Eric Paris828dfe12008-04-17 13:17:49 -04003902 /* Just check FD__USE permission */
David Howells88e67f32008-11-14 10:39:21 +11003903 err = file_has_perm(cred, file, 0);
Eric Paris828dfe12008-04-17 13:17:49 -04003904 break;
3905 case F_GETLK:
3906 case F_SETLK:
3907 case F_SETLKW:
Jeff Layton0d3f7a22014-04-22 08:23:58 -04003908 case F_OFD_GETLK:
3909 case F_OFD_SETLK:
3910 case F_OFD_SETLKW:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911#if BITS_PER_LONG == 32
Eric Paris828dfe12008-04-17 13:17:49 -04003912 case F_GETLK64:
3913 case F_SETLK64:
3914 case F_SETLKW64:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915#endif
David Howells88e67f32008-11-14 10:39:21 +11003916 err = file_has_perm(cred, file, FILE__LOCK);
Eric Paris828dfe12008-04-17 13:17:49 -04003917 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 }
3919
3920 return err;
3921}
3922
Jeff Laytone0b93ed2014-08-22 11:27:32 -04003923static void selinux_file_set_fowner(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 struct file_security_struct *fsec;
3926
Casey Schauflerbb6c6b02018-09-21 17:22:32 -07003927 fsec = selinux_file(file);
David Howells275bb412008-11-14 10:39:19 +11003928 fsec->fown_sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929}
3930
3931static int selinux_file_send_sigiotask(struct task_struct *tsk,
3932 struct fown_struct *fown, int signum)
3933{
Eric Paris828dfe12008-04-17 13:17:49 -04003934 struct file *file;
Paul Mooreeb1231f2021-02-18 15:13:40 -05003935 u32 sid = task_sid_obj(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 u32 perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 struct file_security_struct *fsec;
3938
3939 /* struct fown_struct is never outside the context of a struct file */
Eric Paris828dfe12008-04-17 13:17:49 -04003940 file = container_of(fown, struct file, f_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Casey Schauflerbb6c6b02018-09-21 17:22:32 -07003942 fsec = selinux_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944 if (!signum)
3945 perm = signal_to_av(SIGIO); /* as per send_sigio_to_task */
3946 else
3947 perm = signal_to_av(signum);
3948
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003949 return avc_has_perm(&selinux_state,
3950 fsec->fown_sid, sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 SECCLASS_PROCESS, perm, NULL);
3952}
3953
3954static int selinux_file_receive(struct file *file)
3955{
David Howells88e67f32008-11-14 10:39:21 +11003956 const struct cred *cred = current_cred();
3957
3958 return file_has_perm(cred, file, file_to_av(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959}
3960
Al Viro94817692018-07-10 14:13:18 -04003961static int selinux_file_open(struct file *file)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003962{
3963 struct file_security_struct *fsec;
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003964 struct inode_security_struct *isec;
David Howellsd84f4f92008-11-14 10:39:23 +11003965
Casey Schauflerbb6c6b02018-09-21 17:22:32 -07003966 fsec = selinux_file(file);
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05003967 isec = inode_security(file_inode(file));
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003968 /*
3969 * Save inode label and policy sequence number
3970 * at open-time so that selinux_file_permission
3971 * can determine whether revalidation is necessary.
3972 * Task label is already saved in the file security
3973 * struct as its SID.
3974 */
3975 fsec->isid = isec->sid;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003976 fsec->pseqno = avc_policy_seqno(&selinux_state);
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003977 /*
3978 * Since the inode label or policy seqno may have changed
3979 * between the selinux_inode_permission check and the saving
3980 * of state above, recheck that access is still permitted.
3981 * Otherwise, access might never be revalidated against the
3982 * new inode label or new policy.
3983 * This check is not redundant - do not remove.
3984 */
Al Viro94817692018-07-10 14:13:18 -04003985 return file_path_has_perm(file->f_cred, file, open_file_to_av(file));
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09003986}
3987
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988/* task security operations */
3989
Tetsuo Handaa79be232017-03-28 23:08:45 +09003990static int selinux_task_alloc(struct task_struct *task,
3991 unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05003993 u32 sid = current_sid();
3994
Stephen Smalley6b6bc622018-03-05 11:47:56 -05003995 return avc_has_perm(&selinux_state,
3996 sid, sid, SECCLASS_PROCESS, PROCESS__FORK, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997}
3998
David Howellsf1752ee2008-11-14 10:39:17 +11003999/*
David Howellsd84f4f92008-11-14 10:39:23 +11004000 * prepare a new set of credentials for modification
4001 */
4002static int selinux_cred_prepare(struct cred *new, const struct cred *old,
4003 gfp_t gfp)
4004{
Casey Schauflerbbd36622018-11-12 09:30:56 -08004005 const struct task_security_struct *old_tsec = selinux_cred(old);
4006 struct task_security_struct *tsec = selinux_cred(new);
David Howellsd84f4f92008-11-14 10:39:23 +11004007
Casey Schauflerbbd36622018-11-12 09:30:56 -08004008 *tsec = *old_tsec;
David Howellsd84f4f92008-11-14 10:39:23 +11004009 return 0;
4010}
4011
4012/*
David Howellsee18d642009-09-02 09:14:21 +01004013 * transfer the SELinux data to a blank set of creds
4014 */
4015static void selinux_cred_transfer(struct cred *new, const struct cred *old)
4016{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07004017 const struct task_security_struct *old_tsec = selinux_cred(old);
4018 struct task_security_struct *tsec = selinux_cred(new);
David Howellsee18d642009-09-02 09:14:21 +01004019
4020 *tsec = *old_tsec;
4021}
4022
Matthew Garrett3ec30112018-01-08 13:36:19 -08004023static void selinux_cred_getsecid(const struct cred *c, u32 *secid)
4024{
4025 *secid = cred_sid(c);
4026}
4027
David Howellsee18d642009-09-02 09:14:21 +01004028/*
David Howells3a3b7ce2008-11-14 10:39:28 +11004029 * set the security data for a kernel service
4030 * - all the creation contexts are set to unlabelled
4031 */
4032static int selinux_kernel_act_as(struct cred *new, u32 secid)
4033{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07004034 struct task_security_struct *tsec = selinux_cred(new);
David Howells3a3b7ce2008-11-14 10:39:28 +11004035 u32 sid = current_sid();
4036 int ret;
4037
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004038 ret = avc_has_perm(&selinux_state,
4039 sid, secid,
David Howells3a3b7ce2008-11-14 10:39:28 +11004040 SECCLASS_KERNEL_SERVICE,
4041 KERNEL_SERVICE__USE_AS_OVERRIDE,
4042 NULL);
4043 if (ret == 0) {
4044 tsec->sid = secid;
4045 tsec->create_sid = 0;
4046 tsec->keycreate_sid = 0;
4047 tsec->sockcreate_sid = 0;
4048 }
4049 return ret;
4050}
4051
4052/*
4053 * set the file creation context in a security record to the same as the
4054 * objective context of the specified inode
4055 */
4056static int selinux_kernel_create_files_as(struct cred *new, struct inode *inode)
4057{
Andreas Gruenbacher83da53c52015-12-24 11:09:39 -05004058 struct inode_security_struct *isec = inode_security(inode);
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07004059 struct task_security_struct *tsec = selinux_cred(new);
David Howells3a3b7ce2008-11-14 10:39:28 +11004060 u32 sid = current_sid();
4061 int ret;
4062
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004063 ret = avc_has_perm(&selinux_state,
4064 sid, isec->sid,
David Howells3a3b7ce2008-11-14 10:39:28 +11004065 SECCLASS_KERNEL_SERVICE,
4066 KERNEL_SERVICE__CREATE_FILES_AS,
4067 NULL);
4068
4069 if (ret == 0)
4070 tsec->create_sid = isec->sid;
David Howellsef574712010-02-26 01:56:16 +00004071 return ret;
David Howells3a3b7ce2008-11-14 10:39:28 +11004072}
4073
Eric Parisdd8dbf22009-11-03 16:35:32 +11004074static int selinux_kernel_module_request(char *kmod_name)
Eric Paris25354c42009-08-13 09:45:03 -04004075{
Eric Parisdd8dbf22009-11-03 16:35:32 +11004076 struct common_audit_data ad;
4077
Eric Paris50c205f2012-04-04 15:01:43 -04004078 ad.type = LSM_AUDIT_DATA_KMOD;
Eric Parisdd8dbf22009-11-03 16:35:32 +11004079 ad.u.kmod_name = kmod_name;
4080
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004081 return avc_has_perm(&selinux_state,
4082 current_sid(), SECINITSID_KERNEL, SECCLASS_SYSTEM,
Eric Parisdd8dbf22009-11-03 16:35:32 +11004083 SYSTEM__MODULE_REQUEST, &ad);
Eric Paris25354c42009-08-13 09:45:03 -04004084}
4085
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07004086static int selinux_kernel_module_from_file(struct file *file)
4087{
4088 struct common_audit_data ad;
4089 struct inode_security_struct *isec;
4090 struct file_security_struct *fsec;
4091 u32 sid = current_sid();
4092 int rc;
4093
4094 /* init_module */
4095 if (file == NULL)
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004096 return avc_has_perm(&selinux_state,
4097 sid, sid, SECCLASS_SYSTEM,
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07004098 SYSTEM__MODULE_LOAD, NULL);
4099
4100 /* finit_module */
Paul Moore20cdef82016-04-04 14:14:42 -04004101
Vivek Goyal43af5de2016-09-09 11:37:49 -04004102 ad.type = LSM_AUDIT_DATA_FILE;
4103 ad.u.file = file;
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07004104
Casey Schauflerbb6c6b02018-09-21 17:22:32 -07004105 fsec = selinux_file(file);
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07004106 if (sid != fsec->sid) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004107 rc = avc_has_perm(&selinux_state,
4108 sid, fsec->sid, SECCLASS_FD, FD__USE, &ad);
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07004109 if (rc)
4110 return rc;
4111 }
4112
Paul Moore20cdef82016-04-04 14:14:42 -04004113 isec = inode_security(file_inode(file));
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004114 return avc_has_perm(&selinux_state,
4115 sid, isec->sid, SECCLASS_SYSTEM,
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07004116 SYSTEM__MODULE_LOAD, &ad);
4117}
4118
4119static int selinux_kernel_read_file(struct file *file,
Kees Cook2039bda2020-10-02 10:38:23 -07004120 enum kernel_read_file_id id,
4121 bool contents)
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07004122{
4123 int rc = 0;
4124
4125 switch (id) {
4126 case READING_MODULE:
Kees Cook2039bda2020-10-02 10:38:23 -07004127 rc = selinux_kernel_module_from_file(contents ? file : NULL);
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07004128 break;
4129 default:
4130 break;
4131 }
4132
4133 return rc;
4134}
4135
Kees Cookb64fcae2020-10-02 10:38:20 -07004136static int selinux_kernel_load_data(enum kernel_load_data_id id, bool contents)
Mimi Zoharc77b8cd2018-07-13 14:06:02 -04004137{
4138 int rc = 0;
4139
4140 switch (id) {
4141 case LOADING_MODULE:
4142 rc = selinux_kernel_module_from_file(NULL);
Gustavo A. R. Silvab2d99bc2020-11-20 12:32:26 -06004143 break;
Mimi Zoharc77b8cd2018-07-13 14:06:02 -04004144 default:
4145 break;
4146 }
4147
4148 return rc;
4149}
4150
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151static int selinux_task_setpgid(struct task_struct *p, pid_t pgid)
4152{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004153 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004154 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004155 PROCESS__SETPGID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156}
4157
4158static int selinux_task_getpgid(struct task_struct *p)
4159{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004160 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004161 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004162 PROCESS__GETPGID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163}
4164
4165static int selinux_task_getsid(struct task_struct *p)
4166{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004167 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004168 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004169 PROCESS__GETSESSION, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170}
4171
Paul Moore63269482021-09-29 11:01:21 -04004172static void selinux_current_getsecid_subj(u32 *secid)
David Quigleyf9008e4c2006-06-30 01:55:46 -07004173{
Paul Moore63269482021-09-29 11:01:21 -04004174 *secid = current_sid();
Paul Mooreeb1231f2021-02-18 15:13:40 -05004175}
4176
4177static void selinux_task_getsecid_obj(struct task_struct *p, u32 *secid)
4178{
4179 *secid = task_sid_obj(p);
David Quigleyf9008e4c2006-06-30 01:55:46 -07004180}
4181
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182static int selinux_task_setnice(struct task_struct *p, int nice)
4183{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004184 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004185 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004186 PROCESS__SETSCHED, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187}
4188
James Morris03e68062006-06-23 02:03:58 -07004189static int selinux_task_setioprio(struct task_struct *p, int ioprio)
4190{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004191 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004192 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004193 PROCESS__SETSCHED, NULL);
James Morris03e68062006-06-23 02:03:58 -07004194}
4195
David Quigleya1836a42006-06-30 01:55:49 -07004196static int selinux_task_getioprio(struct task_struct *p)
4197{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004198 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004199 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004200 PROCESS__GETSCHED, NULL);
David Quigleya1836a42006-06-30 01:55:49 -07004201}
4202
Corentin LABBE42985552017-10-04 20:32:18 +02004203static int selinux_task_prlimit(const struct cred *cred, const struct cred *tcred,
4204 unsigned int flags)
Stephen Smalley791ec492017-02-17 07:57:00 -05004205{
4206 u32 av = 0;
4207
Stephen Smalley84e68852017-02-28 09:35:08 -05004208 if (!flags)
4209 return 0;
Stephen Smalley791ec492017-02-17 07:57:00 -05004210 if (flags & LSM_PRLIMIT_WRITE)
4211 av |= PROCESS__SETRLIMIT;
4212 if (flags & LSM_PRLIMIT_READ)
4213 av |= PROCESS__GETRLIMIT;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004214 return avc_has_perm(&selinux_state,
4215 cred_sid(cred), cred_sid(tcred),
Stephen Smalley791ec492017-02-17 07:57:00 -05004216 SECCLASS_PROCESS, av, NULL);
4217}
4218
Jiri Slaby8fd00b42009-08-26 18:41:16 +02004219static int selinux_task_setrlimit(struct task_struct *p, unsigned int resource,
4220 struct rlimit *new_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221{
Jiri Slaby8fd00b42009-08-26 18:41:16 +02004222 struct rlimit *old_rlim = p->signal->rlim + resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
4224 /* Control the ability to change the hard limit (whether
4225 lowering or raising it), so that the hard limit can
4226 later be used as a safe reset point for the soft limit
David Howellsd84f4f92008-11-14 10:39:23 +11004227 upon context transitions. See selinux_bprm_committing_creds. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 if (old_rlim->rlim_max != new_rlim->rlim_max)
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004229 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004230 current_sid(), task_sid_obj(p),
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004231 SECCLASS_PROCESS, PROCESS__SETRLIMIT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232
4233 return 0;
4234}
4235
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09004236static int selinux_task_setscheduler(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004238 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004239 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004240 PROCESS__SETSCHED, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241}
4242
4243static int selinux_task_getscheduler(struct task_struct *p)
4244{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004245 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004246 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004247 PROCESS__GETSCHED, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248}
4249
David Quigley35601542006-06-23 02:04:01 -07004250static int selinux_task_movememory(struct task_struct *p)
4251{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004252 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004253 current_sid(), task_sid_obj(p), SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004254 PROCESS__SETSCHED, NULL);
David Quigley35601542006-06-23 02:04:01 -07004255}
4256
Eric W. Biedermanae7795b2018-09-25 11:27:20 +02004257static int selinux_task_kill(struct task_struct *p, struct kernel_siginfo *info,
Stephen Smalley6b4f3d02017-09-08 12:40:01 -04004258 int sig, const struct cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259{
Stephen Smalley6b4f3d02017-09-08 12:40:01 -04004260 u32 secid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 u32 perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 if (!sig)
4264 perm = PROCESS__SIGNULL; /* null signal; existence test */
4265 else
4266 perm = signal_to_av(sig);
Stephen Smalley6b4f3d02017-09-08 12:40:01 -04004267 if (!cred)
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004268 secid = current_sid();
Stephen Smalley6b4f3d02017-09-08 12:40:01 -04004269 else
4270 secid = cred_sid(cred);
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004271 return avc_has_perm(&selinux_state,
Paul Mooreeb1231f2021-02-18 15:13:40 -05004272 secid, task_sid_obj(p), SECCLASS_PROCESS, perm, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273}
4274
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275static void selinux_task_to_inode(struct task_struct *p,
4276 struct inode *inode)
4277{
Casey Schaufler80788c22018-09-21 17:19:11 -07004278 struct inode_security_struct *isec = selinux_inode(inode);
Paul Mooreeb1231f2021-02-18 15:13:40 -05004279 u32 sid = task_sid_obj(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01004281 spin_lock(&isec->lock);
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01004282 isec->sclass = inode_mode_to_security_class(inode->i_mode);
David Howells275bb412008-11-14 10:39:19 +11004283 isec->sid = sid;
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05004284 isec->initialized = LABEL_INITIALIZED;
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01004285 spin_unlock(&isec->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286}
4287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288/* Returns error only if unable to parse addresses */
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06004289static int selinux_parse_skb_ipv4(struct sk_buff *skb,
Thomas Liu2bf49692009-07-14 12:14:09 -04004290 struct common_audit_data *ad, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291{
4292 int offset, ihlen, ret = -EINVAL;
4293 struct iphdr _iph, *ih;
4294
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03004295 offset = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 ih = skb_header_pointer(skb, offset, sizeof(_iph), &_iph);
4297 if (ih == NULL)
4298 goto out;
4299
4300 ihlen = ih->ihl * 4;
4301 if (ihlen < sizeof(_iph))
4302 goto out;
4303
Eric Paris48c62af2012-04-02 13:15:44 -04004304 ad->u.net->v4info.saddr = ih->saddr;
4305 ad->u.net->v4info.daddr = ih->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 ret = 0;
4307
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06004308 if (proto)
4309 *proto = ih->protocol;
4310
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 switch (ih->protocol) {
Eric Paris828dfe12008-04-17 13:17:49 -04004312 case IPPROTO_TCP: {
4313 struct tcphdr _tcph, *th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
Eric Paris828dfe12008-04-17 13:17:49 -04004315 if (ntohs(ih->frag_off) & IP_OFFSET)
4316 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
4318 offset += ihlen;
4319 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
4320 if (th == NULL)
4321 break;
4322
Eric Paris48c62af2012-04-02 13:15:44 -04004323 ad->u.net->sport = th->source;
4324 ad->u.net->dport = th->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 break;
Eric Paris828dfe12008-04-17 13:17:49 -04004326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
Eric Paris828dfe12008-04-17 13:17:49 -04004328 case IPPROTO_UDP: {
4329 struct udphdr _udph, *uh;
4330
4331 if (ntohs(ih->frag_off) & IP_OFFSET)
4332 break;
4333
4334 offset += ihlen;
4335 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
4336 if (uh == NULL)
4337 break;
4338
Eric Paris48c62af2012-04-02 13:15:44 -04004339 ad->u.net->sport = uh->source;
4340 ad->u.net->dport = uh->dest;
Eric Paris828dfe12008-04-17 13:17:49 -04004341 break;
4342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
James Morris2ee92d42006-11-13 16:09:01 -08004344 case IPPROTO_DCCP: {
4345 struct dccp_hdr _dccph, *dh;
4346
4347 if (ntohs(ih->frag_off) & IP_OFFSET)
4348 break;
4349
4350 offset += ihlen;
4351 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
4352 if (dh == NULL)
4353 break;
4354
Eric Paris48c62af2012-04-02 13:15:44 -04004355 ad->u.net->sport = dh->dccph_sport;
4356 ad->u.net->dport = dh->dccph_dport;
James Morris2ee92d42006-11-13 16:09:01 -08004357 break;
Eric Paris828dfe12008-04-17 13:17:49 -04004358 }
James Morris2ee92d42006-11-13 16:09:01 -08004359
Richard Hainesd4529302018-02-13 20:57:18 +00004360#if IS_ENABLED(CONFIG_IP_SCTP)
4361 case IPPROTO_SCTP: {
4362 struct sctphdr _sctph, *sh;
4363
4364 if (ntohs(ih->frag_off) & IP_OFFSET)
4365 break;
4366
4367 offset += ihlen;
4368 sh = skb_header_pointer(skb, offset, sizeof(_sctph), &_sctph);
4369 if (sh == NULL)
4370 break;
4371
4372 ad->u.net->sport = sh->source;
4373 ad->u.net->dport = sh->dest;
4374 break;
4375 }
4376#endif
Eric Paris828dfe12008-04-17 13:17:49 -04004377 default:
4378 break;
4379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380out:
4381 return ret;
4382}
4383
Javier Martinez Canillas1a93a6e2016-08-08 13:08:25 -04004384#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
4386/* Returns error only if unable to parse addresses */
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06004387static int selinux_parse_skb_ipv6(struct sk_buff *skb,
Thomas Liu2bf49692009-07-14 12:14:09 -04004388 struct common_audit_data *ad, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389{
4390 u8 nexthdr;
4391 int ret = -EINVAL, offset;
4392 struct ipv6hdr _ipv6h, *ip6;
Jesse Gross75f28112011-11-30 17:05:51 -08004393 __be16 frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03004395 offset = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
4397 if (ip6 == NULL)
4398 goto out;
4399
Eric Paris48c62af2012-04-02 13:15:44 -04004400 ad->u.net->v6info.saddr = ip6->saddr;
4401 ad->u.net->v6info.daddr = ip6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 ret = 0;
4403
4404 nexthdr = ip6->nexthdr;
4405 offset += sizeof(_ipv6h);
Jesse Gross75f28112011-11-30 17:05:51 -08004406 offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 if (offset < 0)
4408 goto out;
4409
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06004410 if (proto)
4411 *proto = nexthdr;
4412
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 switch (nexthdr) {
4414 case IPPROTO_TCP: {
Eric Paris828dfe12008-04-17 13:17:49 -04004415 struct tcphdr _tcph, *th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
4417 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
4418 if (th == NULL)
4419 break;
4420
Eric Paris48c62af2012-04-02 13:15:44 -04004421 ad->u.net->sport = th->source;
4422 ad->u.net->dport = th->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 break;
4424 }
4425
4426 case IPPROTO_UDP: {
4427 struct udphdr _udph, *uh;
4428
4429 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
4430 if (uh == NULL)
4431 break;
4432
Eric Paris48c62af2012-04-02 13:15:44 -04004433 ad->u.net->sport = uh->source;
4434 ad->u.net->dport = uh->dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 break;
4436 }
4437
James Morris2ee92d42006-11-13 16:09:01 -08004438 case IPPROTO_DCCP: {
4439 struct dccp_hdr _dccph, *dh;
4440
4441 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
4442 if (dh == NULL)
4443 break;
4444
Eric Paris48c62af2012-04-02 13:15:44 -04004445 ad->u.net->sport = dh->dccph_sport;
4446 ad->u.net->dport = dh->dccph_dport;
James Morris2ee92d42006-11-13 16:09:01 -08004447 break;
Eric Paris828dfe12008-04-17 13:17:49 -04004448 }
James Morris2ee92d42006-11-13 16:09:01 -08004449
Richard Hainesd4529302018-02-13 20:57:18 +00004450#if IS_ENABLED(CONFIG_IP_SCTP)
4451 case IPPROTO_SCTP: {
4452 struct sctphdr _sctph, *sh;
4453
4454 sh = skb_header_pointer(skb, offset, sizeof(_sctph), &_sctph);
4455 if (sh == NULL)
4456 break;
4457
4458 ad->u.net->sport = sh->source;
4459 ad->u.net->dport = sh->dest;
4460 break;
4461 }
4462#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 /* includes fragments */
4464 default:
4465 break;
4466 }
4467out:
4468 return ret;
4469}
4470
4471#endif /* IPV6 */
4472
Thomas Liu2bf49692009-07-14 12:14:09 -04004473static int selinux_parse_skb(struct sk_buff *skb, struct common_audit_data *ad,
David Howellscf9481e2008-07-27 21:31:07 +10004474 char **_addrp, int src, u8 *proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475{
David Howellscf9481e2008-07-27 21:31:07 +10004476 char *addrp;
4477 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Eric Paris48c62af2012-04-02 13:15:44 -04004479 switch (ad->u.net->family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 case PF_INET:
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06004481 ret = selinux_parse_skb_ipv4(skb, ad, proto);
David Howellscf9481e2008-07-27 21:31:07 +10004482 if (ret)
4483 goto parse_error;
Eric Paris48c62af2012-04-02 13:15:44 -04004484 addrp = (char *)(src ? &ad->u.net->v4info.saddr :
4485 &ad->u.net->v4info.daddr);
David Howellscf9481e2008-07-27 21:31:07 +10004486 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
Javier Martinez Canillas1a93a6e2016-08-08 13:08:25 -04004488#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 case PF_INET6:
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06004490 ret = selinux_parse_skb_ipv6(skb, ad, proto);
David Howellscf9481e2008-07-27 21:31:07 +10004491 if (ret)
4492 goto parse_error;
Eric Paris48c62af2012-04-02 13:15:44 -04004493 addrp = (char *)(src ? &ad->u.net->v6info.saddr :
4494 &ad->u.net->v6info.daddr);
David Howellscf9481e2008-07-27 21:31:07 +10004495 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496#endif /* IPV6 */
4497 default:
David Howellscf9481e2008-07-27 21:31:07 +10004498 addrp = NULL;
4499 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 }
4501
David Howellscf9481e2008-07-27 21:31:07 +10004502parse_error:
peter enderborgc103a912018-06-12 10:09:03 +02004503 pr_warn(
David Howellscf9481e2008-07-27 21:31:07 +10004504 "SELinux: failure in selinux_parse_skb(),"
4505 " unable to parse packet\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 return ret;
David Howellscf9481e2008-07-27 21:31:07 +10004507
4508okay:
4509 if (_addrp)
4510 *_addrp = addrp;
4511 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512}
4513
Paul Moore4f6a9932007-03-01 14:35:22 -05004514/**
Paul Moore220deb92008-01-29 08:38:23 -05004515 * selinux_skb_peerlbl_sid - Determine the peer label of a packet
Paul Moore4f6a9932007-03-01 14:35:22 -05004516 * @skb: the packet
Paul Moore75e22912008-01-29 08:38:04 -05004517 * @family: protocol family
Paul Moore220deb92008-01-29 08:38:23 -05004518 * @sid: the packet's peer label SID
Paul Moore4f6a9932007-03-01 14:35:22 -05004519 *
4520 * Description:
Paul Moore220deb92008-01-29 08:38:23 -05004521 * Check the various different forms of network peer labeling and determine
4522 * the peer label/SID for the packet; most of the magic actually occurs in
4523 * the security server function security_net_peersid_cmp(). The function
4524 * returns zero if the value in @sid is valid (although it may be SECSID_NULL)
4525 * or -EACCES if @sid is invalid due to inconsistencies with the different
4526 * peer labels.
Paul Moore4f6a9932007-03-01 14:35:22 -05004527 *
4528 */
Paul Moore220deb92008-01-29 08:38:23 -05004529static int selinux_skb_peerlbl_sid(struct sk_buff *skb, u16 family, u32 *sid)
Paul Moore4f6a9932007-03-01 14:35:22 -05004530{
Paul Moore71f1cb02008-01-29 08:51:16 -05004531 int err;
Paul Moore4f6a9932007-03-01 14:35:22 -05004532 u32 xfrm_sid;
4533 u32 nlbl_sid;
Paul Moore220deb92008-01-29 08:38:23 -05004534 u32 nlbl_type;
Paul Moore4f6a9932007-03-01 14:35:22 -05004535
Paul Moore817eff72013-12-10 14:57:54 -05004536 err = selinux_xfrm_skb_sid(skb, &xfrm_sid);
Paul Moorebed4d7e2013-07-23 17:38:40 -04004537 if (unlikely(err))
4538 return -EACCES;
4539 err = selinux_netlbl_skbuff_getsid(skb, family, &nlbl_type, &nlbl_sid);
4540 if (unlikely(err))
4541 return -EACCES;
Paul Moore220deb92008-01-29 08:38:23 -05004542
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05004543 err = security_net_peersid_resolve(&selinux_state, nlbl_sid,
4544 nlbl_type, xfrm_sid, sid);
Paul Moore71f1cb02008-01-29 08:51:16 -05004545 if (unlikely(err)) {
peter enderborgc103a912018-06-12 10:09:03 +02004546 pr_warn(
Paul Moore71f1cb02008-01-29 08:51:16 -05004547 "SELinux: failure in selinux_skb_peerlbl_sid(),"
4548 " unable to determine packet's peer label\n");
Paul Moore220deb92008-01-29 08:38:23 -05004549 return -EACCES;
Paul Moore71f1cb02008-01-29 08:51:16 -05004550 }
Paul Moore220deb92008-01-29 08:38:23 -05004551
4552 return 0;
Paul Moore4f6a9932007-03-01 14:35:22 -05004553}
4554
Paul Moore446b8022013-12-04 16:10:51 -05004555/**
4556 * selinux_conn_sid - Determine the child socket label for a connection
4557 * @sk_sid: the parent socket's SID
4558 * @skb_sid: the packet's SID
4559 * @conn_sid: the resulting connection SID
4560 *
4561 * If @skb_sid is valid then the user:role:type information from @sk_sid is
4562 * combined with the MLS information from @skb_sid in order to create
Randy Dunlapc76a2f92020-08-07 09:51:34 -07004563 * @conn_sid. If @skb_sid is not valid then @conn_sid is simply a copy
Paul Moore446b8022013-12-04 16:10:51 -05004564 * of @sk_sid. Returns zero on success, negative values on failure.
4565 *
4566 */
4567static int selinux_conn_sid(u32 sk_sid, u32 skb_sid, u32 *conn_sid)
4568{
4569 int err = 0;
4570
4571 if (skb_sid != SECSID_NULL)
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05004572 err = security_sid_mls_copy(&selinux_state, sk_sid, skb_sid,
4573 conn_sid);
Paul Moore446b8022013-12-04 16:10:51 -05004574 else
4575 *conn_sid = sk_sid;
4576
4577 return err;
4578}
4579
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580/* socket security operations */
Paul Moored4f2d972010-04-22 14:46:18 -04004581
Harry Ciao2ad18bd2011-03-02 13:32:34 +08004582static int socket_sockcreate_sid(const struct task_security_struct *tsec,
4583 u16 secclass, u32 *socksid)
Paul Moored4f2d972010-04-22 14:46:18 -04004584{
Harry Ciao2ad18bd2011-03-02 13:32:34 +08004585 if (tsec->sockcreate_sid > SECSID_NULL) {
4586 *socksid = tsec->sockcreate_sid;
4587 return 0;
4588 }
4589
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05004590 return security_transition_sid(&selinux_state, tsec->sid, tsec->sid,
4591 secclass, NULL, socksid);
Paul Moored4f2d972010-04-22 14:46:18 -04004592}
4593
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004594static int sock_has_perm(struct sock *sk, u32 perms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595{
Paul Moore253bfae2010-04-22 14:46:19 -04004596 struct sk_security_struct *sksec = sk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04004597 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004598 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599
Paul Moore253bfae2010-04-22 14:46:19 -04004600 if (sksec->sid == SECINITSID_KERNEL)
4601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
Eric Paris50c205f2012-04-04 15:01:43 -04004603 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004604 ad.u.net = &net;
4605 ad.u.net->sk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004607 return avc_has_perm(&selinux_state,
4608 current_sid(), sksec->sid, sksec->sclass, perms,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004609 &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610}
4611
4612static int selinux_socket_create(int family, int type,
4613 int protocol, int kern)
4614{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07004615 const struct task_security_struct *tsec = selinux_cred(current_cred());
Paul Moored4f2d972010-04-22 14:46:18 -04004616 u32 newsid;
David Howells275bb412008-11-14 10:39:19 +11004617 u16 secclass;
Harry Ciao2ad18bd2011-03-02 13:32:34 +08004618 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
4620 if (kern)
Paul Moored4f2d972010-04-22 14:46:18 -04004621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
David Howells275bb412008-11-14 10:39:19 +11004623 secclass = socket_type_to_security_class(family, type, protocol);
Harry Ciao2ad18bd2011-03-02 13:32:34 +08004624 rc = socket_sockcreate_sid(tsec, secclass, &newsid);
4625 if (rc)
4626 return rc;
4627
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004628 return avc_has_perm(&selinux_state,
4629 tsec->sid, newsid, secclass, SOCKET__CREATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630}
4631
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07004632static int selinux_socket_post_create(struct socket *sock, int family,
4633 int type, int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634{
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07004635 const struct task_security_struct *tsec = selinux_cred(current_cred());
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -05004636 struct inode_security_struct *isec = inode_security_novalidate(SOCK_INODE(sock));
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004637 struct sk_security_struct *sksec;
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01004638 u16 sclass = socket_type_to_security_class(family, type, protocol);
4639 u32 sid = SECINITSID_KERNEL;
David Howells275bb412008-11-14 10:39:19 +11004640 int err = 0;
4641
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01004642 if (!kern) {
4643 err = socket_sockcreate_sid(tsec, sclass, &sid);
Harry Ciao2ad18bd2011-03-02 13:32:34 +08004644 if (err)
4645 return err;
4646 }
David Howells275bb412008-11-14 10:39:19 +11004647
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01004648 isec->sclass = sclass;
4649 isec->sid = sid;
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05004650 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004652 if (sock->sk) {
4653 sksec = sock->sk->sk_security;
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01004654 sksec->sclass = sclass;
4655 sksec->sid = sid;
Richard Hainesd4529302018-02-13 20:57:18 +00004656 /* Allows detection of the first association on this socket */
4657 if (sksec->sclass == SECCLASS_SCTP_SOCKET)
4658 sksec->sctp_assoc_state = SCTP_ASSOC_UNSET;
4659
Paul Moore389fb8002009-03-27 17:10:34 -04004660 err = selinux_netlbl_socket_post_create(sock->sk, family);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07004661 }
4662
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07004663 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664}
4665
David Herrmann0b811db2018-05-04 16:28:21 +02004666static int selinux_socket_socketpair(struct socket *socka,
4667 struct socket *sockb)
4668{
4669 struct sk_security_struct *sksec_a = socka->sk->sk_security;
4670 struct sk_security_struct *sksec_b = sockb->sk->sk_security;
4671
4672 sksec_a->peer_sid = sksec_b->sid;
4673 sksec_b->peer_sid = sksec_a->sid;
4674
4675 return 0;
4676}
4677
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678/* Range of port numbers used to automatically bind.
4679 Need to determine whether we should perform a name_bind
4680 permission check between the socket and the port number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681
4682static int selinux_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen)
4683{
Paul Moore253bfae2010-04-22 14:46:19 -04004684 struct sock *sk = sock->sk;
Alexey Kodanev0f8db8c2018-05-11 20:15:11 +03004685 struct sk_security_struct *sksec = sk->sk_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 u16 family;
4687 int err;
4688
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004689 err = sock_has_perm(sk, SOCKET__BIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 if (err)
4691 goto out;
4692
Richard Hainesd4529302018-02-13 20:57:18 +00004693 /* If PF_INET or PF_INET6, check name_bind permission for the port. */
Paul Moore253bfae2010-04-22 14:46:19 -04004694 family = sk->sk_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 if (family == PF_INET || family == PF_INET6) {
4696 char *addrp;
Thomas Liu2bf49692009-07-14 12:14:09 -04004697 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004698 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 struct sockaddr_in *addr4 = NULL;
4700 struct sockaddr_in6 *addr6 = NULL;
Tetsuo Handac750e692019-04-12 19:59:34 +09004701 u16 family_sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702 unsigned short snum;
James Morrise399f982008-06-12 01:39:58 +10004703 u32 sid, node_perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704
Richard Hainesd4529302018-02-13 20:57:18 +00004705 /*
4706 * sctp_bindx(3) calls via selinux_sctp_bind_connect()
4707 * that validates multiple binding addresses. Because of this
4708 * need to check address->sa_family as it is possible to have
4709 * sk->sk_family = PF_INET6 with addr->sa_family = AF_INET.
4710 */
Tetsuo Handac750e692019-04-12 19:59:34 +09004711 if (addrlen < offsetofend(struct sockaddr, sa_family))
4712 return -EINVAL;
4713 family_sa = address->sa_family;
Alexey Kodanev0f8db8c2018-05-11 20:15:11 +03004714 switch (family_sa) {
4715 case AF_UNSPEC:
Richard Haines68741a8a2018-03-02 19:54:34 +00004716 case AF_INET:
4717 if (addrlen < sizeof(struct sockaddr_in))
4718 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 addr4 = (struct sockaddr_in *)address;
Alexey Kodanev0f8db8c2018-05-11 20:15:11 +03004720 if (family_sa == AF_UNSPEC) {
4721 /* see __inet_bind(), we only want to allow
4722 * AF_UNSPEC if the address is INADDR_ANY
4723 */
4724 if (addr4->sin_addr.s_addr != htonl(INADDR_ANY))
4725 goto err_af;
4726 family_sa = AF_INET;
4727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 snum = ntohs(addr4->sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 addrp = (char *)&addr4->sin_addr.s_addr;
Richard Haines68741a8a2018-03-02 19:54:34 +00004730 break;
4731 case AF_INET6:
4732 if (addrlen < SIN6_LEN_RFC2133)
4733 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 addr6 = (struct sockaddr_in6 *)address;
4735 snum = ntohs(addr6->sin6_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 addrp = (char *)&addr6->sin6_addr.s6_addr;
Richard Haines68741a8a2018-03-02 19:54:34 +00004737 break;
4738 default:
Alexey Kodanev0f8db8c2018-05-11 20:15:11 +03004739 goto err_af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 }
4741
Alexey Kodanev88b7d372018-05-11 20:15:12 +03004742 ad.type = LSM_AUDIT_DATA_NET;
4743 ad.u.net = &net;
4744 ad.u.net->sport = htons(snum);
4745 ad.u.net->family = family_sa;
4746
Stephen Hemminger227b60f2007-10-10 17:30:46 -07004747 if (snum) {
4748 int low, high;
4749
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -07004750 inet_get_local_port_range(sock_net(sk), &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07004751
Maciej Żenczykowski82f31eb2019-11-25 15:37:04 -08004752 if (inet_port_requires_bind_service(sock_net(sk), snum) ||
4753 snum < low || snum > high) {
Paul Moore3e112172008-04-10 10:48:14 -04004754 err = sel_netport_sid(sk->sk_protocol,
4755 snum, &sid);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07004756 if (err)
4757 goto out;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004758 err = avc_has_perm(&selinux_state,
4759 sksec->sid, sid,
Paul Moore253bfae2010-04-22 14:46:19 -04004760 sksec->sclass,
Stephen Hemminger227b60f2007-10-10 17:30:46 -07004761 SOCKET__NAME_BIND, &ad);
4762 if (err)
4763 goto out;
4764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 }
Eric Paris828dfe12008-04-17 13:17:49 -04004766
Paul Moore253bfae2010-04-22 14:46:19 -04004767 switch (sksec->sclass) {
James Morris13402582005-09-30 14:24:34 -04004768 case SECCLASS_TCP_SOCKET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 node_perm = TCP_SOCKET__NODE_BIND;
4770 break;
Eric Paris828dfe12008-04-17 13:17:49 -04004771
James Morris13402582005-09-30 14:24:34 -04004772 case SECCLASS_UDP_SOCKET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 node_perm = UDP_SOCKET__NODE_BIND;
4774 break;
James Morris2ee92d42006-11-13 16:09:01 -08004775
4776 case SECCLASS_DCCP_SOCKET:
4777 node_perm = DCCP_SOCKET__NODE_BIND;
4778 break;
4779
Richard Hainesd4529302018-02-13 20:57:18 +00004780 case SECCLASS_SCTP_SOCKET:
4781 node_perm = SCTP_SOCKET__NODE_BIND;
4782 break;
4783
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 default:
4785 node_perm = RAWIP_SOCKET__NODE_BIND;
4786 break;
4787 }
Eric Paris828dfe12008-04-17 13:17:49 -04004788
Alexey Kodanev88b7d372018-05-11 20:15:12 +03004789 err = sel_netnode_sid(addrp, family_sa, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 if (err)
4791 goto out;
Eric Paris828dfe12008-04-17 13:17:49 -04004792
Alexey Kodanev0f8db8c2018-05-11 20:15:11 +03004793 if (family_sa == AF_INET)
Eric Paris48c62af2012-04-02 13:15:44 -04004794 ad.u.net->v4info.saddr = addr4->sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 else
Eric Paris48c62af2012-04-02 13:15:44 -04004796 ad.u.net->v6info.saddr = addr6->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004798 err = avc_has_perm(&selinux_state,
4799 sksec->sid, sid,
Paul Moore253bfae2010-04-22 14:46:19 -04004800 sksec->sclass, node_perm, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 if (err)
4802 goto out;
4803 }
4804out:
4805 return err;
Alexey Kodanev0f8db8c2018-05-11 20:15:11 +03004806err_af:
4807 /* Note that SCTP services expect -EINVAL, others -EAFNOSUPPORT. */
4808 if (sksec->sclass == SECCLASS_SCTP_SOCKET)
4809 return -EINVAL;
4810 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811}
4812
Richard Hainesd4529302018-02-13 20:57:18 +00004813/* This supports connect(2) and SCTP connect services such as sctp_connectx(3)
Kees Cookd61330c2019-02-17 14:08:36 -08004814 * and sctp_sendmsg(3) as described in Documentation/security/SCTP.rst
Richard Hainesd4529302018-02-13 20:57:18 +00004815 */
4816static int selinux_socket_connect_helper(struct socket *sock,
4817 struct sockaddr *address, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818{
Paul Moore014ab192008-10-10 10:16:33 -04004819 struct sock *sk = sock->sk;
Paul Moore253bfae2010-04-22 14:46:19 -04004820 struct sk_security_struct *sksec = sk->sk_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 int err;
4822
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004823 err = sock_has_perm(sk, SOCKET__CONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 if (err)
4825 return err;
Paolo Abeni05174c92019-05-10 19:12:33 +02004826 if (addrlen < offsetofend(struct sockaddr, sa_family))
4827 return -EINVAL;
4828
4829 /* connect(AF_UNSPEC) has special handling, as it is a documented
4830 * way to disconnect the socket
4831 */
4832 if (address->sa_family == AF_UNSPEC)
4833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834
4835 /*
Richard Hainesd4529302018-02-13 20:57:18 +00004836 * If a TCP, DCCP or SCTP socket, check name_connect permission
4837 * for the port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 */
Paul Moore253bfae2010-04-22 14:46:19 -04004839 if (sksec->sclass == SECCLASS_TCP_SOCKET ||
Richard Hainesd4529302018-02-13 20:57:18 +00004840 sksec->sclass == SECCLASS_DCCP_SOCKET ||
4841 sksec->sclass == SECCLASS_SCTP_SOCKET) {
Thomas Liu2bf49692009-07-14 12:14:09 -04004842 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04004843 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 struct sockaddr_in *addr4 = NULL;
4845 struct sockaddr_in6 *addr6 = NULL;
4846 unsigned short snum;
James Morris2ee92d42006-11-13 16:09:01 -08004847 u32 sid, perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Richard Hainesd4529302018-02-13 20:57:18 +00004849 /* sctp_connectx(3) calls via selinux_sctp_bind_connect()
4850 * that validates multiple connect addresses. Because of this
4851 * need to check address->sa_family as it is possible to have
4852 * sk->sk_family = PF_INET6 with addr->sa_family = AF_INET.
4853 */
Richard Haines68741a8a2018-03-02 19:54:34 +00004854 switch (address->sa_family) {
4855 case AF_INET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 addr4 = (struct sockaddr_in *)address;
Stephen Smalley911656f2005-07-28 21:16:21 -07004857 if (addrlen < sizeof(struct sockaddr_in))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 return -EINVAL;
4859 snum = ntohs(addr4->sin_port);
Richard Haines68741a8a2018-03-02 19:54:34 +00004860 break;
4861 case AF_INET6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 addr6 = (struct sockaddr_in6 *)address;
Stephen Smalley911656f2005-07-28 21:16:21 -07004863 if (addrlen < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 return -EINVAL;
4865 snum = ntohs(addr6->sin6_port);
Richard Haines68741a8a2018-03-02 19:54:34 +00004866 break;
4867 default:
4868 /* Note that SCTP services expect -EINVAL, whereas
4869 * others expect -EAFNOSUPPORT.
4870 */
4871 if (sksec->sclass == SECCLASS_SCTP_SOCKET)
4872 return -EINVAL;
4873 else
4874 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 }
4876
Paul Moore3e112172008-04-10 10:48:14 -04004877 err = sel_netport_sid(sk->sk_protocol, snum, &sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 if (err)
Richard Hainesd4529302018-02-13 20:57:18 +00004879 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
Richard Hainesd4529302018-02-13 20:57:18 +00004881 switch (sksec->sclass) {
4882 case SECCLASS_TCP_SOCKET:
4883 perm = TCP_SOCKET__NAME_CONNECT;
4884 break;
4885 case SECCLASS_DCCP_SOCKET:
4886 perm = DCCP_SOCKET__NAME_CONNECT;
4887 break;
4888 case SECCLASS_SCTP_SOCKET:
4889 perm = SCTP_SOCKET__NAME_CONNECT;
4890 break;
4891 }
James Morris2ee92d42006-11-13 16:09:01 -08004892
Eric Paris50c205f2012-04-04 15:01:43 -04004893 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04004894 ad.u.net = &net;
4895 ad.u.net->dport = htons(snum);
Alexey Kodanev88b7d372018-05-11 20:15:12 +03004896 ad.u.net->family = address->sa_family;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05004897 err = avc_has_perm(&selinux_state,
4898 sksec->sid, sid, sksec->sclass, perm, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 if (err)
Richard Hainesd4529302018-02-13 20:57:18 +00004900 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 }
4902
Richard Hainesd4529302018-02-13 20:57:18 +00004903 return 0;
4904}
Paul Moore014ab192008-10-10 10:16:33 -04004905
Richard Hainesd4529302018-02-13 20:57:18 +00004906/* Supports connect(2), see comments in selinux_socket_connect_helper() */
4907static int selinux_socket_connect(struct socket *sock,
4908 struct sockaddr *address, int addrlen)
4909{
4910 int err;
4911 struct sock *sk = sock->sk;
4912
4913 err = selinux_socket_connect_helper(sock, address, addrlen);
4914 if (err)
4915 return err;
4916
4917 return selinux_netlbl_socket_connect(sk, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918}
4919
4920static int selinux_socket_listen(struct socket *sock, int backlog)
4921{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004922 return sock_has_perm(sock->sk, SOCKET__LISTEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923}
4924
4925static int selinux_socket_accept(struct socket *sock, struct socket *newsock)
4926{
4927 int err;
4928 struct inode_security_struct *isec;
4929 struct inode_security_struct *newisec;
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01004930 u16 sclass;
4931 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004933 err = sock_has_perm(sock->sk, SOCKET__ACCEPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 if (err)
4935 return err;
4936
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -05004937 isec = inode_security_novalidate(SOCK_INODE(sock));
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01004938 spin_lock(&isec->lock);
4939 sclass = isec->sclass;
4940 sid = isec->sid;
4941 spin_unlock(&isec->lock);
4942
4943 newisec = inode_security_novalidate(SOCK_INODE(newsock));
4944 newisec->sclass = sclass;
4945 newisec->sid = sid;
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05004946 newisec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947
4948 return 0;
4949}
4950
4951static int selinux_socket_sendmsg(struct socket *sock, struct msghdr *msg,
Eric Paris828dfe12008-04-17 13:17:49 -04004952 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004954 return sock_has_perm(sock->sk, SOCKET__WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955}
4956
4957static int selinux_socket_recvmsg(struct socket *sock, struct msghdr *msg,
4958 int size, int flags)
4959{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004960 return sock_has_perm(sock->sk, SOCKET__READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961}
4962
4963static int selinux_socket_getsockname(struct socket *sock)
4964{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004965 return sock_has_perm(sock->sk, SOCKET__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966}
4967
4968static int selinux_socket_getpeername(struct socket *sock)
4969{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004970 return sock_has_perm(sock->sk, SOCKET__GETATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971}
4972
Eric Paris828dfe12008-04-17 13:17:49 -04004973static int selinux_socket_setsockopt(struct socket *sock, int level, int optname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974{
Paul Mooref8687af2006-10-30 15:22:15 -08004975 int err;
4976
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004977 err = sock_has_perm(sock->sk, SOCKET__SETOPT);
Paul Mooref8687af2006-10-30 15:22:15 -08004978 if (err)
4979 return err;
4980
4981 return selinux_netlbl_socket_setsockopt(sock, level, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982}
4983
4984static int selinux_socket_getsockopt(struct socket *sock, int level,
4985 int optname)
4986{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004987 return sock_has_perm(sock->sk, SOCKET__GETOPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988}
4989
4990static int selinux_socket_shutdown(struct socket *sock, int how)
4991{
Stephen Smalleybe0554c2017-01-09 10:07:31 -05004992 return sock_has_perm(sock->sk, SOCKET__SHUTDOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993}
4994
David S. Miller3610cda2011-01-05 15:38:53 -08004995static int selinux_socket_unix_stream_connect(struct sock *sock,
4996 struct sock *other,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 struct sock *newsk)
4998{
David S. Miller3610cda2011-01-05 15:38:53 -08004999 struct sk_security_struct *sksec_sock = sock->sk_security;
5000 struct sk_security_struct *sksec_other = other->sk_security;
Paul Moore4d1e2452010-04-22 14:46:18 -04005001 struct sk_security_struct *sksec_new = newsk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04005002 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04005003 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004 int err;
5005
Eric Paris50c205f2012-04-04 15:01:43 -04005006 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04005007 ad.u.net = &net;
5008 ad.u.net->sk = other;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005010 err = avc_has_perm(&selinux_state,
5011 sksec_sock->sid, sksec_other->sid,
Paul Moore4d1e2452010-04-22 14:46:18 -04005012 sksec_other->sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 UNIX_STREAM_SOCKET__CONNECTTO, &ad);
5014 if (err)
5015 return err;
5016
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 /* server child socket */
Paul Moore4d1e2452010-04-22 14:46:18 -04005018 sksec_new->peer_sid = sksec_sock->sid;
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05005019 err = security_sid_mls_copy(&selinux_state, sksec_other->sid,
5020 sksec_sock->sid, &sksec_new->sid);
Paul Moore4d1e2452010-04-22 14:46:18 -04005021 if (err)
5022 return err;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005023
Paul Moore4d1e2452010-04-22 14:46:18 -04005024 /* connecting socket */
5025 sksec_sock->peer_sid = sksec_new->sid;
5026
5027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028}
5029
5030static int selinux_socket_unix_may_send(struct socket *sock,
5031 struct socket *other)
5032{
Paul Moore253bfae2010-04-22 14:46:19 -04005033 struct sk_security_struct *ssec = sock->sk->sk_security;
5034 struct sk_security_struct *osec = other->sk->sk_security;
Thomas Liu2bf49692009-07-14 12:14:09 -04005035 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04005036 struct lsm_network_audit net = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
Eric Paris50c205f2012-04-04 15:01:43 -04005038 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04005039 ad.u.net = &net;
5040 ad.u.net->sk = other->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005042 return avc_has_perm(&selinux_state,
5043 ssec->sid, osec->sid, osec->sclass, SOCKET__SENDTO,
Paul Moore253bfae2010-04-22 14:46:19 -04005044 &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045}
5046
Paul Moorecbe0d6e2014-09-10 17:09:57 -04005047static int selinux_inet_sys_rcv_skb(struct net *ns, int ifindex,
5048 char *addrp, u16 family, u32 peer_sid,
Thomas Liu2bf49692009-07-14 12:14:09 -04005049 struct common_audit_data *ad)
Paul Mooreeffad8d2008-01-29 08:49:27 -05005050{
5051 int err;
5052 u32 if_sid;
5053 u32 node_sid;
5054
Paul Moorecbe0d6e2014-09-10 17:09:57 -04005055 err = sel_netif_sid(ns, ifindex, &if_sid);
Paul Mooreeffad8d2008-01-29 08:49:27 -05005056 if (err)
5057 return err;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005058 err = avc_has_perm(&selinux_state,
5059 peer_sid, if_sid,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005060 SECCLASS_NETIF, NETIF__INGRESS, ad);
5061 if (err)
5062 return err;
5063
5064 err = sel_netnode_sid(addrp, family, &node_sid);
5065 if (err)
5066 return err;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005067 return avc_has_perm(&selinux_state,
5068 peer_sid, node_sid,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005069 SECCLASS_NODE, NODE__RECVFROM, ad);
5070}
5071
Paul Moore220deb92008-01-29 08:38:23 -05005072static int selinux_sock_rcv_skb_compat(struct sock *sk, struct sk_buff *skb,
Paul Moored8395c82008-10-10 10:16:30 -04005073 u16 family)
Paul Moore220deb92008-01-29 08:38:23 -05005074{
Paul Moore277d3422008-12-31 12:54:11 -05005075 int err = 0;
Paul Moore220deb92008-01-29 08:38:23 -05005076 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore220deb92008-01-29 08:38:23 -05005077 u32 sk_sid = sksec->sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04005078 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04005079 struct lsm_network_audit net = {0,};
Paul Moored8395c82008-10-10 10:16:30 -04005080 char *addrp;
5081
Eric Paris50c205f2012-04-04 15:01:43 -04005082 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04005083 ad.u.net = &net;
5084 ad.u.net->netif = skb->skb_iif;
5085 ad.u.net->family = family;
Paul Moored8395c82008-10-10 10:16:30 -04005086 err = selinux_parse_skb(skb, &ad, &addrp, 1, NULL);
5087 if (err)
5088 return err;
Paul Moore220deb92008-01-29 08:38:23 -05005089
Paul Moore58bfbb52009-03-27 17:10:41 -04005090 if (selinux_secmark_enabled()) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005091 err = avc_has_perm(&selinux_state,
5092 sk_sid, skb->secmark, SECCLASS_PACKET,
Paul Moored8395c82008-10-10 10:16:30 -04005093 PACKET__RECV, &ad);
Paul Moore58bfbb52009-03-27 17:10:41 -04005094 if (err)
5095 return err;
5096 }
Paul Moore220deb92008-01-29 08:38:23 -05005097
Steffen Klassertb9679a72011-02-23 12:55:21 +01005098 err = selinux_netlbl_sock_rcv_skb(sksec, skb, family, &ad);
5099 if (err)
5100 return err;
5101 err = selinux_xfrm_sock_rcv_skb(sksec->sid, skb, &ad);
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005102
James Morris4e5ab4c2006-06-09 00:33:33 -07005103 return err;
5104}
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005105
James Morris4e5ab4c2006-06-09 00:33:33 -07005106static int selinux_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
5107{
Paul Moore220deb92008-01-29 08:38:23 -05005108 int err;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005109 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore220deb92008-01-29 08:38:23 -05005110 u16 family = sk->sk_family;
5111 u32 sk_sid = sksec->sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04005112 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04005113 struct lsm_network_audit net = {0,};
Paul Moore220deb92008-01-29 08:38:23 -05005114 char *addrp;
Paul Moored8395c82008-10-10 10:16:30 -04005115 u8 secmark_active;
5116 u8 peerlbl_active;
James Morris4e5ab4c2006-06-09 00:33:33 -07005117
James Morris4e5ab4c2006-06-09 00:33:33 -07005118 if (family != PF_INET && family != PF_INET6)
Paul Moore220deb92008-01-29 08:38:23 -05005119 return 0;
James Morris4e5ab4c2006-06-09 00:33:33 -07005120
5121 /* Handle mapped IPv4 packets arriving via IPv6 sockets */
Al Viro87fcd702006-12-04 22:00:55 +00005122 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
James Morris4e5ab4c2006-06-09 00:33:33 -07005123 family = PF_INET;
5124
Paul Moored8395c82008-10-10 10:16:30 -04005125 /* If any sort of compatibility mode is enabled then handoff processing
5126 * to the selinux_sock_rcv_skb_compat() function to deal with the
5127 * special handling. We do this in an attempt to keep this function
5128 * as fast and as clean as possible. */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05005129 if (!selinux_policycap_netpeer())
Paul Moored8395c82008-10-10 10:16:30 -04005130 return selinux_sock_rcv_skb_compat(sk, skb, family);
5131
5132 secmark_active = selinux_secmark_enabled();
Chris PeBenito2be4d742013-05-03 09:05:39 -04005133 peerlbl_active = selinux_peerlbl_enabled();
Paul Moored8395c82008-10-10 10:16:30 -04005134 if (!secmark_active && !peerlbl_active)
5135 return 0;
5136
Eric Paris50c205f2012-04-04 15:01:43 -04005137 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04005138 ad.u.net = &net;
5139 ad.u.net->netif = skb->skb_iif;
5140 ad.u.net->family = family;
Paul Moore224dfbd2008-01-29 08:38:13 -05005141 err = selinux_parse_skb(skb, &ad, &addrp, 1, NULL);
James Morris4e5ab4c2006-06-09 00:33:33 -07005142 if (err)
Paul Moore220deb92008-01-29 08:38:23 -05005143 return err;
James Morris4e5ab4c2006-06-09 00:33:33 -07005144
Paul Moored8395c82008-10-10 10:16:30 -04005145 if (peerlbl_active) {
Paul Moored621d352008-01-29 08:43:36 -05005146 u32 peer_sid;
5147
5148 err = selinux_skb_peerlbl_sid(skb, family, &peer_sid);
5149 if (err)
5150 return err;
Paul Moorecbe0d6e2014-09-10 17:09:57 -04005151 err = selinux_inet_sys_rcv_skb(sock_net(sk), skb->skb_iif,
5152 addrp, family, peer_sid, &ad);
Paul Mooredfaebe92008-10-10 10:16:31 -04005153 if (err) {
Huw Daviesa04e71f2016-06-27 15:06:16 -04005154 selinux_netlbl_err(skb, family, err, 0);
Paul Mooreeffad8d2008-01-29 08:49:27 -05005155 return err;
Paul Mooredfaebe92008-10-10 10:16:31 -04005156 }
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005157 err = avc_has_perm(&selinux_state,
5158 sk_sid, peer_sid, SECCLASS_PEER,
Paul Moored621d352008-01-29 08:43:36 -05005159 PEER__RECV, &ad);
Chad Hanson46d01d62013-12-23 17:45:01 -05005160 if (err) {
Huw Daviesa04e71f2016-06-27 15:06:16 -04005161 selinux_netlbl_err(skb, family, err, 0);
Chad Hanson46d01d62013-12-23 17:45:01 -05005162 return err;
5163 }
Paul Moored621d352008-01-29 08:43:36 -05005164 }
5165
Paul Moored8395c82008-10-10 10:16:30 -04005166 if (secmark_active) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005167 err = avc_has_perm(&selinux_state,
5168 sk_sid, skb->secmark, SECCLASS_PACKET,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005169 PACKET__RECV, &ad);
5170 if (err)
5171 return err;
5172 }
5173
Paul Moored621d352008-01-29 08:43:36 -05005174 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175}
5176
Catherine Zhang2c7946a2006-03-20 22:41:23 -08005177static int selinux_socket_getpeersec_stream(struct socket *sock, char __user *optval,
5178 int __user *optlen, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179{
5180 int err = 0;
5181 char *scontext;
5182 u32 scontext_len;
Paul Moore253bfae2010-04-22 14:46:19 -04005183 struct sk_security_struct *sksec = sock->sk->sk_security;
Paul Moore3de4bab2006-11-17 17:38:54 -05005184 u32 peer_sid = SECSID_NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
Paul Moore253bfae2010-04-22 14:46:19 -04005186 if (sksec->sclass == SECCLASS_UNIX_STREAM_SOCKET ||
Richard Hainesd4529302018-02-13 20:57:18 +00005187 sksec->sclass == SECCLASS_TCP_SOCKET ||
5188 sksec->sclass == SECCLASS_SCTP_SOCKET)
Eric Parisdd3e7832010-04-07 15:08:46 -04005189 peer_sid = sksec->peer_sid;
Paul Moore253bfae2010-04-22 14:46:19 -04005190 if (peer_sid == SECSID_NULL)
5191 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05005193 err = security_sid_to_context(&selinux_state, peer_sid, &scontext,
5194 &scontext_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 if (err)
Paul Moore253bfae2010-04-22 14:46:19 -04005196 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197
5198 if (scontext_len > len) {
5199 err = -ERANGE;
5200 goto out_len;
5201 }
5202
5203 if (copy_to_user(optval, scontext, scontext_len))
5204 err = -EFAULT;
5205
5206out_len:
5207 if (put_user(scontext_len, optlen))
5208 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 kfree(scontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 return err;
5211}
5212
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005213static int selinux_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
Catherine Zhang2c7946a2006-03-20 22:41:23 -08005214{
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005215 u32 peer_secid = SECSID_NULL;
Paul Moore75e22912008-01-29 08:38:04 -05005216 u16 family;
Paul Moore899134f2016-03-28 15:19:10 -04005217 struct inode_security_struct *isec;
Catherine Zhang877ce7c2006-06-29 12:27:47 -07005218
Paul Mooreaa862902008-10-10 10:16:29 -04005219 if (skb && skb->protocol == htons(ETH_P_IP))
5220 family = PF_INET;
5221 else if (skb && skb->protocol == htons(ETH_P_IPV6))
5222 family = PF_INET6;
5223 else if (sock)
Paul Moore75e22912008-01-29 08:38:04 -05005224 family = sock->sk->sk_family;
Paul Moore75e22912008-01-29 08:38:04 -05005225 else
5226 goto out;
5227
Paul Moore899134f2016-03-28 15:19:10 -04005228 if (sock && family == PF_UNIX) {
5229 isec = inode_security_novalidate(SOCK_INODE(sock));
5230 peer_secid = isec->sid;
5231 } else if (skb)
Paul Moore220deb92008-01-29 08:38:23 -05005232 selinux_skb_peerlbl_sid(skb, family, &peer_secid);
Catherine Zhang2c7946a2006-03-20 22:41:23 -08005233
Paul Moore75e22912008-01-29 08:38:04 -05005234out:
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07005235 *secid = peer_secid;
Paul Moore75e22912008-01-29 08:38:04 -05005236 if (peer_secid == SECSID_NULL)
5237 return -EINVAL;
5238 return 0;
Catherine Zhang2c7946a2006-03-20 22:41:23 -08005239}
5240
Al Viro7d877f32005-10-21 03:20:43 -04005241static int selinux_sk_alloc_security(struct sock *sk, int family, gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242{
Paul Moore84914b72010-04-22 14:46:18 -04005243 struct sk_security_struct *sksec;
5244
5245 sksec = kzalloc(sizeof(*sksec), priority);
5246 if (!sksec)
5247 return -ENOMEM;
5248
5249 sksec->peer_sid = SECINITSID_UNLABELED;
5250 sksec->sid = SECINITSID_UNLABELED;
Stephen Smalley5dee25d2015-07-10 17:19:57 -04005251 sksec->sclass = SECCLASS_SOCKET;
Paul Moore84914b72010-04-22 14:46:18 -04005252 selinux_netlbl_sk_security_reset(sksec);
5253 sk->sk_security = sksec;
5254
5255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256}
5257
5258static void selinux_sk_free_security(struct sock *sk)
5259{
Paul Moore84914b72010-04-22 14:46:18 -04005260 struct sk_security_struct *sksec = sk->sk_security;
5261
5262 sk->sk_security = NULL;
5263 selinux_netlbl_sk_security_free(sksec);
5264 kfree(sksec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265}
5266
Venkat Yekkirala892c1412006-08-04 23:08:56 -07005267static void selinux_sk_clone_security(const struct sock *sk, struct sock *newsk)
5268{
Eric Parisdd3e7832010-04-07 15:08:46 -04005269 struct sk_security_struct *sksec = sk->sk_security;
5270 struct sk_security_struct *newsksec = newsk->sk_security;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07005271
Eric Parisdd3e7832010-04-07 15:08:46 -04005272 newsksec->sid = sksec->sid;
5273 newsksec->peer_sid = sksec->peer_sid;
5274 newsksec->sclass = sksec->sclass;
Paul Moore99f59ed2006-08-29 17:53:48 -07005275
Eric Parisdd3e7832010-04-07 15:08:46 -04005276 selinux_netlbl_sk_security_reset(newsksec);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07005277}
5278
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07005279static void selinux_sk_getsecid(struct sock *sk, u32 *secid)
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005280{
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005281 if (!sk)
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07005282 *secid = SECINITSID_ANY_SOCKET;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07005283 else {
5284 struct sk_security_struct *sksec = sk->sk_security;
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005285
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07005286 *secid = sksec->sid;
Venkat Yekkirala892c1412006-08-04 23:08:56 -07005287 }
Trent Jaegerd28d1e02005-12-13 23:12:40 -08005288}
5289
Eric Paris828dfe12008-04-17 13:17:49 -04005290static void selinux_sock_graft(struct sock *sk, struct socket *parent)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005291{
Andreas Gruenbacher5d226df2015-12-24 11:09:40 -05005292 struct inode_security_struct *isec =
5293 inode_security_novalidate(SOCK_INODE(parent));
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005294 struct sk_security_struct *sksec = sk->sk_security;
5295
Paul Moore2873ead2014-07-28 10:42:48 -04005296 if (sk->sk_family == PF_INET || sk->sk_family == PF_INET6 ||
5297 sk->sk_family == PF_UNIX)
David Woodhouse2148ccc2006-09-29 15:50:25 -07005298 isec->sid = sksec->sid;
Paul Moore220deb92008-01-29 08:38:23 -05005299 sksec->sclass = isec->sclass;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005300}
5301
Richard Hainesd4529302018-02-13 20:57:18 +00005302/* Called whenever SCTP receives an INIT chunk. This happens when an incoming
5303 * connect(2), sctp_connectx(3) or sctp_sendmsg(3) (with no association
5304 * already present).
5305 */
Xin Longc081d532021-11-02 08:02:47 -04005306static int selinux_sctp_assoc_request(struct sctp_association *asoc,
Richard Hainesd4529302018-02-13 20:57:18 +00005307 struct sk_buff *skb)
5308{
Xin Longc081d532021-11-02 08:02:47 -04005309 struct sk_security_struct *sksec = asoc->base.sk->sk_security;
Richard Hainesd4529302018-02-13 20:57:18 +00005310 struct common_audit_data ad;
5311 struct lsm_network_audit net = {0,};
5312 u8 peerlbl_active;
5313 u32 peer_sid = SECINITSID_UNLABELED;
5314 u32 conn_sid;
5315 int err = 0;
5316
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05005317 if (!selinux_policycap_extsockclass())
Richard Hainesd4529302018-02-13 20:57:18 +00005318 return 0;
5319
5320 peerlbl_active = selinux_peerlbl_enabled();
5321
5322 if (peerlbl_active) {
5323 /* This will return peer_sid = SECSID_NULL if there are
5324 * no peer labels, see security_net_peersid_resolve().
5325 */
Xin Longc081d532021-11-02 08:02:47 -04005326 err = selinux_skb_peerlbl_sid(skb, asoc->base.sk->sk_family,
Richard Hainesd4529302018-02-13 20:57:18 +00005327 &peer_sid);
5328 if (err)
5329 return err;
5330
5331 if (peer_sid == SECSID_NULL)
5332 peer_sid = SECINITSID_UNLABELED;
5333 }
5334
5335 if (sksec->sctp_assoc_state == SCTP_ASSOC_UNSET) {
5336 sksec->sctp_assoc_state = SCTP_ASSOC_SET;
5337
5338 /* Here as first association on socket. As the peer SID
5339 * was allowed by peer recv (and the netif/node checks),
5340 * then it is approved by policy and used as the primary
5341 * peer SID for getpeercon(3).
5342 */
5343 sksec->peer_sid = peer_sid;
5344 } else if (sksec->peer_sid != peer_sid) {
5345 /* Other association peer SIDs are checked to enforce
5346 * consistency among the peer SIDs.
5347 */
5348 ad.type = LSM_AUDIT_DATA_NET;
5349 ad.u.net = &net;
Xin Longc081d532021-11-02 08:02:47 -04005350 ad.u.net->sk = asoc->base.sk;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005351 err = avc_has_perm(&selinux_state,
5352 sksec->peer_sid, peer_sid, sksec->sclass,
Richard Hainesd4529302018-02-13 20:57:18 +00005353 SCTP_SOCKET__ASSOCIATION, &ad);
5354 if (err)
5355 return err;
5356 }
5357
5358 /* Compute the MLS component for the connection and store
Xin Longc081d532021-11-02 08:02:47 -04005359 * the information in asoc. This will be used by SCTP TCP type
Richard Hainesd4529302018-02-13 20:57:18 +00005360 * sockets and peeled off connections as they cause a new
5361 * socket to be generated. selinux_sctp_sk_clone() will then
5362 * plug this into the new socket.
5363 */
5364 err = selinux_conn_sid(sksec->sid, peer_sid, &conn_sid);
5365 if (err)
5366 return err;
5367
Xin Longc081d532021-11-02 08:02:47 -04005368 asoc->secid = conn_sid;
5369 asoc->peer_secid = peer_sid;
Richard Hainesd4529302018-02-13 20:57:18 +00005370
5371 /* Set any NetLabel labels including CIPSO/CALIPSO options. */
Xin Longc081d532021-11-02 08:02:47 -04005372 return selinux_netlbl_sctp_assoc_request(asoc, skb);
Richard Hainesd4529302018-02-13 20:57:18 +00005373}
5374
5375/* Check if sctp IPv4/IPv6 addresses are valid for binding or connecting
5376 * based on their @optname.
5377 */
5378static int selinux_sctp_bind_connect(struct sock *sk, int optname,
5379 struct sockaddr *address,
5380 int addrlen)
5381{
5382 int len, err = 0, walk_size = 0;
5383 void *addr_buf;
5384 struct sockaddr *addr;
5385 struct socket *sock;
5386
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05005387 if (!selinux_policycap_extsockclass())
Richard Hainesd4529302018-02-13 20:57:18 +00005388 return 0;
5389
5390 /* Process one or more addresses that may be IPv4 or IPv6 */
5391 sock = sk->sk_socket;
5392 addr_buf = address;
5393
5394 while (walk_size < addrlen) {
Ondrej Mosnacekc1383252018-11-13 16:16:08 +01005395 if (walk_size + sizeof(sa_family_t) > addrlen)
5396 return -EINVAL;
5397
Richard Hainesd4529302018-02-13 20:57:18 +00005398 addr = addr_buf;
5399 switch (addr->sa_family) {
Alexey Kodanev4152dc92018-05-11 20:15:13 +03005400 case AF_UNSPEC:
Richard Hainesd4529302018-02-13 20:57:18 +00005401 case AF_INET:
5402 len = sizeof(struct sockaddr_in);
5403 break;
5404 case AF_INET6:
5405 len = sizeof(struct sockaddr_in6);
5406 break;
5407 default:
Alexey Kodanev4152dc92018-05-11 20:15:13 +03005408 return -EINVAL;
Richard Hainesd4529302018-02-13 20:57:18 +00005409 }
5410
Xin Long292c9972019-03-09 00:07:34 +08005411 if (walk_size + len > addrlen)
5412 return -EINVAL;
5413
Richard Hainesd4529302018-02-13 20:57:18 +00005414 err = -EINVAL;
5415 switch (optname) {
5416 /* Bind checks */
5417 case SCTP_PRIMARY_ADDR:
5418 case SCTP_SET_PEER_PRIMARY_ADDR:
5419 case SCTP_SOCKOPT_BINDX_ADD:
5420 err = selinux_socket_bind(sock, addr, len);
5421 break;
5422 /* Connect checks */
5423 case SCTP_SOCKOPT_CONNECTX:
5424 case SCTP_PARAM_SET_PRIMARY:
5425 case SCTP_PARAM_ADD_IP:
5426 case SCTP_SENDMSG_CONNECT:
5427 err = selinux_socket_connect_helper(sock, addr, len);
5428 if (err)
5429 return err;
5430
5431 /* As selinux_sctp_bind_connect() is called by the
5432 * SCTP protocol layer, the socket is already locked,
Randy Dunlapc76a2f92020-08-07 09:51:34 -07005433 * therefore selinux_netlbl_socket_connect_locked()
Richard Hainesd4529302018-02-13 20:57:18 +00005434 * is called here. The situations handled are:
5435 * sctp_connectx(3), sctp_sendmsg(3), sendmsg(2),
5436 * whenever a new IP address is added or when a new
5437 * primary address is selected.
5438 * Note that an SCTP connect(2) call happens before
5439 * the SCTP protocol layer and is handled via
5440 * selinux_socket_connect().
5441 */
5442 err = selinux_netlbl_socket_connect_locked(sk, addr);
5443 break;
5444 }
5445
5446 if (err)
5447 return err;
5448
5449 addr_buf += len;
5450 walk_size += len;
5451 }
5452
5453 return 0;
5454}
5455
5456/* Called whenever a new socket is created by accept(2) or sctp_peeloff(3). */
Xin Longc081d532021-11-02 08:02:47 -04005457static void selinux_sctp_sk_clone(struct sctp_association *asoc, struct sock *sk,
Richard Hainesd4529302018-02-13 20:57:18 +00005458 struct sock *newsk)
5459{
5460 struct sk_security_struct *sksec = sk->sk_security;
5461 struct sk_security_struct *newsksec = newsk->sk_security;
5462
5463 /* If policy does not support SECCLASS_SCTP_SOCKET then call
5464 * the non-sctp clone version.
5465 */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05005466 if (!selinux_policycap_extsockclass())
Richard Hainesd4529302018-02-13 20:57:18 +00005467 return selinux_sk_clone_security(sk, newsk);
5468
Paul Moore32a370a2021-11-12 12:07:02 -05005469 newsksec->sid = asoc->secid;
Xin Longc081d532021-11-02 08:02:47 -04005470 newsksec->peer_sid = asoc->peer_secid;
Richard Hainesd4529302018-02-13 20:57:18 +00005471 newsksec->sclass = sksec->sclass;
5472 selinux_netlbl_sctp_sk_clone(sk, newsk);
5473}
5474
Florian Westphal41dd9592020-11-30 16:36:29 +01005475static int selinux_inet_conn_request(const struct sock *sk, struct sk_buff *skb,
Adrian Bunk9a673e52006-08-15 00:03:53 -07005476 struct request_sock *req)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005477{
5478 struct sk_security_struct *sksec = sk->sk_security;
5479 int err;
Paul Moore0b1f24e2013-12-03 11:39:13 -05005480 u16 family = req->rsk_ops->family;
Paul Moore446b8022013-12-04 16:10:51 -05005481 u32 connsid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005482 u32 peersid;
5483
Paul Mooreaa862902008-10-10 10:16:29 -04005484 err = selinux_skb_peerlbl_sid(skb, family, &peersid);
Paul Moore220deb92008-01-29 08:38:23 -05005485 if (err)
5486 return err;
Paul Moore446b8022013-12-04 16:10:51 -05005487 err = selinux_conn_sid(sksec->sid, peersid, &connsid);
5488 if (err)
5489 return err;
5490 req->secid = connsid;
5491 req->peer_secid = peersid;
Venkat Yekkiralaa51c64f2006-07-27 22:01:34 -07005492
Paul Moore389fb8002009-03-27 17:10:34 -04005493 return selinux_netlbl_inet_conn_request(req, family);
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005494}
5495
Adrian Bunk9a673e52006-08-15 00:03:53 -07005496static void selinux_inet_csk_clone(struct sock *newsk,
5497 const struct request_sock *req)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005498{
5499 struct sk_security_struct *newsksec = newsk->sk_security;
5500
5501 newsksec->sid = req->secid;
Venkat Yekkirala6b877692006-11-08 17:04:09 -06005502 newsksec->peer_sid = req->peer_secid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005503 /* NOTE: Ideally, we should also get the isec->sid for the
5504 new socket in sync, but we don't have the isec available yet.
5505 So we will wait until sock_graft to do it, by which
5506 time it will have been created and available. */
Paul Moore99f59ed2006-08-29 17:53:48 -07005507
Paul Moore9f2ad662006-11-17 17:38:53 -05005508 /* We don't need to take any sort of lock here as we are the only
5509 * thread with access to newsksec */
Paul Moore389fb8002009-03-27 17:10:34 -04005510 selinux_netlbl_inet_csk_clone(newsk, req->rsk_ops->family);
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005511}
5512
Paul Moore014ab192008-10-10 10:16:33 -04005513static void selinux_inet_conn_established(struct sock *sk, struct sk_buff *skb)
Venkat Yekkirala6b877692006-11-08 17:04:09 -06005514{
Paul Mooreaa862902008-10-10 10:16:29 -04005515 u16 family = sk->sk_family;
Venkat Yekkirala6b877692006-11-08 17:04:09 -06005516 struct sk_security_struct *sksec = sk->sk_security;
5517
Paul Mooreaa862902008-10-10 10:16:29 -04005518 /* handle mapped IPv4 packets arriving via IPv6 sockets */
5519 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
5520 family = PF_INET;
5521
5522 selinux_skb_peerlbl_sid(skb, family, &sksec->peer_sid);
Venkat Yekkirala6b877692006-11-08 17:04:09 -06005523}
5524
Eric Paris2606fd12010-10-13 16:24:41 -04005525static int selinux_secmark_relabel_packet(u32 sid)
5526{
5527 const struct task_security_struct *__tsec;
5528 u32 tsid;
5529
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07005530 __tsec = selinux_cred(current_cred());
Eric Paris2606fd12010-10-13 16:24:41 -04005531 tsid = __tsec->sid;
5532
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005533 return avc_has_perm(&selinux_state,
5534 tsid, sid, SECCLASS_PACKET, PACKET__RELABELTO,
5535 NULL);
Eric Paris2606fd12010-10-13 16:24:41 -04005536}
5537
5538static void selinux_secmark_refcount_inc(void)
5539{
5540 atomic_inc(&selinux_secmark_refcount);
5541}
5542
5543static void selinux_secmark_refcount_dec(void)
5544{
5545 atomic_dec(&selinux_secmark_refcount);
5546}
5547
Adrian Bunk9a673e52006-08-15 00:03:53 -07005548static void selinux_req_classify_flow(const struct request_sock *req,
Paul Moore3df98d72020-09-27 22:38:26 -04005549 struct flowi_common *flic)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005550{
Paul Moore3df98d72020-09-27 22:38:26 -04005551 flic->flowic_secid = req->secid;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005552}
5553
Paul Moore5dbbaf22013-01-14 07:12:19 +00005554static int selinux_tun_dev_alloc_security(void **security)
5555{
5556 struct tun_security_struct *tunsec;
5557
5558 tunsec = kzalloc(sizeof(*tunsec), GFP_KERNEL);
5559 if (!tunsec)
5560 return -ENOMEM;
5561 tunsec->sid = current_sid();
5562
5563 *security = tunsec;
5564 return 0;
5565}
5566
5567static void selinux_tun_dev_free_security(void *security)
5568{
5569 kfree(security);
5570}
5571
Paul Mooreed6d76e2009-08-28 18:12:49 -04005572static int selinux_tun_dev_create(void)
5573{
5574 u32 sid = current_sid();
5575
5576 /* we aren't taking into account the "sockcreate" SID since the socket
5577 * that is being created here is not a socket in the traditional sense,
5578 * instead it is a private sock, accessible only to the kernel, and
5579 * representing a wide range of network traffic spanning multiple
5580 * connections unlike traditional sockets - check the TUN driver to
5581 * get a better understanding of why this socket is special */
5582
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005583 return avc_has_perm(&selinux_state,
5584 sid, sid, SECCLASS_TUN_SOCKET, TUN_SOCKET__CREATE,
Paul Mooreed6d76e2009-08-28 18:12:49 -04005585 NULL);
5586}
5587
Paul Moore5dbbaf22013-01-14 07:12:19 +00005588static int selinux_tun_dev_attach_queue(void *security)
Paul Mooreed6d76e2009-08-28 18:12:49 -04005589{
Paul Moore5dbbaf22013-01-14 07:12:19 +00005590 struct tun_security_struct *tunsec = security;
5591
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005592 return avc_has_perm(&selinux_state,
5593 current_sid(), tunsec->sid, SECCLASS_TUN_SOCKET,
Paul Moore5dbbaf22013-01-14 07:12:19 +00005594 TUN_SOCKET__ATTACH_QUEUE, NULL);
5595}
5596
5597static int selinux_tun_dev_attach(struct sock *sk, void *security)
5598{
5599 struct tun_security_struct *tunsec = security;
Paul Mooreed6d76e2009-08-28 18:12:49 -04005600 struct sk_security_struct *sksec = sk->sk_security;
5601
5602 /* we don't currently perform any NetLabel based labeling here and it
5603 * isn't clear that we would want to do so anyway; while we could apply
5604 * labeling without the support of the TUN user the resulting labeled
5605 * traffic from the other end of the connection would almost certainly
5606 * cause confusion to the TUN user that had no idea network labeling
5607 * protocols were being used */
5608
Paul Moore5dbbaf22013-01-14 07:12:19 +00005609 sksec->sid = tunsec->sid;
Paul Mooreed6d76e2009-08-28 18:12:49 -04005610 sksec->sclass = SECCLASS_TUN_SOCKET;
Paul Moore5dbbaf22013-01-14 07:12:19 +00005611
5612 return 0;
Paul Mooreed6d76e2009-08-28 18:12:49 -04005613}
5614
Paul Moore5dbbaf22013-01-14 07:12:19 +00005615static int selinux_tun_dev_open(void *security)
Paul Mooreed6d76e2009-08-28 18:12:49 -04005616{
Paul Moore5dbbaf22013-01-14 07:12:19 +00005617 struct tun_security_struct *tunsec = security;
Paul Mooreed6d76e2009-08-28 18:12:49 -04005618 u32 sid = current_sid();
5619 int err;
5620
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005621 err = avc_has_perm(&selinux_state,
5622 sid, tunsec->sid, SECCLASS_TUN_SOCKET,
Paul Mooreed6d76e2009-08-28 18:12:49 -04005623 TUN_SOCKET__RELABELFROM, NULL);
5624 if (err)
5625 return err;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005626 err = avc_has_perm(&selinux_state,
5627 sid, sid, SECCLASS_TUN_SOCKET,
Paul Mooreed6d76e2009-08-28 18:12:49 -04005628 TUN_SOCKET__RELABELTO, NULL);
5629 if (err)
5630 return err;
Paul Moore5dbbaf22013-01-14 07:12:19 +00005631 tunsec->sid = sid;
Paul Mooreed6d76e2009-08-28 18:12:49 -04005632
5633 return 0;
5634}
5635
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636#ifdef CONFIG_NETFILTER
5637
Florian Westphal4342f702021-10-11 22:22:29 +02005638static unsigned int selinux_ip_forward(void *priv, struct sk_buff *skb,
5639 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640{
Paul Moore1d1e1de2021-10-11 17:50:48 -04005641 int ifindex;
5642 u16 family;
Paul Mooreeffad8d2008-01-29 08:49:27 -05005643 char *addrp;
5644 u32 peer_sid;
Thomas Liu2bf49692009-07-14 12:14:09 -04005645 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04005646 struct lsm_network_audit net = {0,};
Paul Moore1d1e1de2021-10-11 17:50:48 -04005647 int secmark_active, peerlbl_active;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005648
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05005649 if (!selinux_policycap_netpeer())
Paul Mooreeffad8d2008-01-29 08:49:27 -05005650 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005651
Paul Mooreeffad8d2008-01-29 08:49:27 -05005652 secmark_active = selinux_secmark_enabled();
Chris PeBenito2be4d742013-05-03 09:05:39 -04005653 peerlbl_active = selinux_peerlbl_enabled();
Paul Mooreeffad8d2008-01-29 08:49:27 -05005654 if (!secmark_active && !peerlbl_active)
5655 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005656
Paul Moore1d1e1de2021-10-11 17:50:48 -04005657 family = state->pf;
Paul Moored8395c82008-10-10 10:16:30 -04005658 if (selinux_skb_peerlbl_sid(skb, family, &peer_sid) != 0)
5659 return NF_DROP;
5660
Paul Moore1d1e1de2021-10-11 17:50:48 -04005661 ifindex = state->in->ifindex;
Eric Paris50c205f2012-04-04 15:01:43 -04005662 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04005663 ad.u.net = &net;
Paul Moore1d1e1de2021-10-11 17:50:48 -04005664 ad.u.net->netif = ifindex;
Eric Paris48c62af2012-04-02 13:15:44 -04005665 ad.u.net->family = family;
Paul Mooreeffad8d2008-01-29 08:49:27 -05005666 if (selinux_parse_skb(skb, &ad, &addrp, 1, NULL) != 0)
5667 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668
Paul Mooredfaebe92008-10-10 10:16:31 -04005669 if (peerlbl_active) {
Paul Moore1d1e1de2021-10-11 17:50:48 -04005670 int err;
5671
5672 err = selinux_inet_sys_rcv_skb(state->net, ifindex,
Paul Moorecbe0d6e2014-09-10 17:09:57 -04005673 addrp, family, peer_sid, &ad);
Paul Mooredfaebe92008-10-10 10:16:31 -04005674 if (err) {
Huw Daviesa04e71f2016-06-27 15:06:16 -04005675 selinux_netlbl_err(skb, family, err, 1);
Paul Mooreeffad8d2008-01-29 08:49:27 -05005676 return NF_DROP;
Paul Mooredfaebe92008-10-10 10:16:31 -04005677 }
5678 }
Paul Mooreeffad8d2008-01-29 08:49:27 -05005679
5680 if (secmark_active)
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005681 if (avc_has_perm(&selinux_state,
5682 peer_sid, skb->secmark,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005683 SECCLASS_PACKET, PACKET__FORWARD_IN, &ad))
5684 return NF_DROP;
5685
Paul Moore1d1e1de2021-10-11 17:50:48 -04005686 if (netlbl_enabled())
Paul Moore948bf852008-10-10 10:16:32 -04005687 /* we do this in the FORWARD path and not the POST_ROUTING
5688 * path because we want to make sure we apply the necessary
5689 * labeling before IPsec is applied so we can leverage AH
5690 * protection */
5691 if (selinux_netlbl_skbuff_setsid(skb, family, peer_sid) != 0)
5692 return NF_DROP;
5693
Paul Mooreeffad8d2008-01-29 08:49:27 -05005694 return NF_ACCEPT;
5695}
5696
Florian Westphal4342f702021-10-11 22:22:29 +02005697static unsigned int selinux_ip_output(void *priv, struct sk_buff *skb,
5698 const struct nf_hook_state *state)
Paul Moore948bf852008-10-10 10:16:32 -04005699{
Paul Moore47180062013-12-04 16:10:45 -05005700 struct sock *sk;
Paul Moore948bf852008-10-10 10:16:32 -04005701 u32 sid;
5702
5703 if (!netlbl_enabled())
5704 return NF_ACCEPT;
5705
5706 /* we do this in the LOCAL_OUT path and not the POST_ROUTING path
5707 * because we want to make sure we apply the necessary labeling
5708 * before IPsec is applied so we can leverage AH protection */
Paul Moore47180062013-12-04 16:10:45 -05005709 sk = skb->sk;
5710 if (sk) {
5711 struct sk_security_struct *sksec;
5712
Eric Dumazete446f9d2015-10-08 05:01:55 -07005713 if (sk_listener(sk))
Paul Moore47180062013-12-04 16:10:45 -05005714 /* if the socket is the listening state then this
5715 * packet is a SYN-ACK packet which means it needs to
5716 * be labeled based on the connection/request_sock and
5717 * not the parent socket. unfortunately, we can't
5718 * lookup the request_sock yet as it isn't queued on
5719 * the parent socket until after the SYN-ACK is sent.
5720 * the "solution" is to simply pass the packet as-is
5721 * as any IP option based labeling should be copied
5722 * from the initial connection request (in the IP
5723 * layer). it is far from ideal, but until we get a
5724 * security label in the packet itself this is the
5725 * best we can do. */
5726 return NF_ACCEPT;
5727
5728 /* standard practice, label using the parent socket */
5729 sksec = sk->sk_security;
Paul Moore948bf852008-10-10 10:16:32 -04005730 sid = sksec->sid;
5731 } else
5732 sid = SECINITSID_KERNEL;
Paul Moore1d1e1de2021-10-11 17:50:48 -04005733 if (selinux_netlbl_skbuff_setsid(skb, state->pf, sid) != 0)
Paul Moore948bf852008-10-10 10:16:32 -04005734 return NF_DROP;
5735
5736 return NF_ACCEPT;
5737}
5738
Huw Davies2917f572016-06-27 15:06:15 -04005739
Paul Mooreeffad8d2008-01-29 08:49:27 -05005740static unsigned int selinux_ip_postroute_compat(struct sk_buff *skb,
Paul Moore1d1e1de2021-10-11 17:50:48 -04005741 const struct nf_hook_state *state)
James Morris4e5ab4c2006-06-09 00:33:33 -07005742{
Paul Moore1d1e1de2021-10-11 17:50:48 -04005743 struct sock *sk;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005744 struct sk_security_struct *sksec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005745 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04005746 struct lsm_network_audit net = {0,};
Tom Rix732bc2f2021-12-24 07:07:39 -08005747 u8 proto = 0;
James Morris4e5ab4c2006-06-09 00:33:33 -07005748
Paul Moore1d1e1de2021-10-11 17:50:48 -04005749 sk = skb_to_full_sk(skb);
Paul Mooreeffad8d2008-01-29 08:49:27 -05005750 if (sk == NULL)
5751 return NF_ACCEPT;
Venkat Yekkirala4237c752006-07-24 23:32:50 -07005752 sksec = sk->sk_security;
James Morris4e5ab4c2006-06-09 00:33:33 -07005753
Eric Paris50c205f2012-04-04 15:01:43 -04005754 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04005755 ad.u.net = &net;
Paul Moore1d1e1de2021-10-11 17:50:48 -04005756 ad.u.net->netif = state->out->ifindex;
5757 ad.u.net->family = state->pf;
5758 if (selinux_parse_skb(skb, &ad, NULL, 0, &proto))
Paul Moored8395c82008-10-10 10:16:30 -04005759 return NF_DROP;
5760
Paul Moore58bfbb52009-03-27 17:10:41 -04005761 if (selinux_secmark_enabled())
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005762 if (avc_has_perm(&selinux_state,
5763 sksec->sid, skb->secmark,
Paul Moored8395c82008-10-10 10:16:30 -04005764 SECCLASS_PACKET, PACKET__SEND, &ad))
Eric Paris2fe66ec2010-11-23 06:28:08 +00005765 return NF_DROP_ERR(-ECONNREFUSED);
James Morris4e5ab4c2006-06-09 00:33:33 -07005766
Steffen Klassertb9679a72011-02-23 12:55:21 +01005767 if (selinux_xfrm_postroute_last(sksec->sid, skb, &ad, proto))
5768 return NF_DROP_ERR(-ECONNREFUSED);
James Morris4e5ab4c2006-06-09 00:33:33 -07005769
Paul Mooreeffad8d2008-01-29 08:49:27 -05005770 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771}
5772
Florian Westphal4342f702021-10-11 22:22:29 +02005773static unsigned int selinux_ip_postroute(void *priv,
5774 struct sk_buff *skb,
5775 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776{
Paul Moore1d1e1de2021-10-11 17:50:48 -04005777 u16 family;
Paul Mooreeffad8d2008-01-29 08:49:27 -05005778 u32 secmark_perm;
5779 u32 peer_sid;
Paul Moore1d1e1de2021-10-11 17:50:48 -04005780 int ifindex;
Paul Mooreeffad8d2008-01-29 08:49:27 -05005781 struct sock *sk;
Thomas Liu2bf49692009-07-14 12:14:09 -04005782 struct common_audit_data ad;
Eric Paris48c62af2012-04-02 13:15:44 -04005783 struct lsm_network_audit net = {0,};
Paul Mooreeffad8d2008-01-29 08:49:27 -05005784 char *addrp;
Paul Moore1d1e1de2021-10-11 17:50:48 -04005785 int secmark_active, peerlbl_active;
Paul Mooreeffad8d2008-01-29 08:49:27 -05005786
Paul Mooreeffad8d2008-01-29 08:49:27 -05005787 /* If any sort of compatibility mode is enabled then handoff processing
5788 * to the selinux_ip_postroute_compat() function to deal with the
5789 * special handling. We do this in an attempt to keep this function
5790 * as fast and as clean as possible. */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05005791 if (!selinux_policycap_netpeer())
Paul Moore1d1e1de2021-10-11 17:50:48 -04005792 return selinux_ip_postroute_compat(skb, state);
Paul Moorec0828e52013-12-10 14:58:01 -05005793
Paul Mooreeffad8d2008-01-29 08:49:27 -05005794 secmark_active = selinux_secmark_enabled();
Chris PeBenito2be4d742013-05-03 09:05:39 -04005795 peerlbl_active = selinux_peerlbl_enabled();
Paul Mooreeffad8d2008-01-29 08:49:27 -05005796 if (!secmark_active && !peerlbl_active)
5797 return NF_ACCEPT;
5798
Eric Dumazet54abc682015-11-08 10:54:07 -08005799 sk = skb_to_full_sk(skb);
Paul Moorec0828e52013-12-10 14:58:01 -05005800
Paul Mooreeffad8d2008-01-29 08:49:27 -05005801#ifdef CONFIG_XFRM
5802 /* If skb->dst->xfrm is non-NULL then the packet is undergoing an IPsec
5803 * packet transformation so allow the packet to pass without any checks
5804 * since we'll have another chance to perform access control checks
5805 * when the packet is on it's final way out.
5806 * NOTE: there appear to be some IPv6 multicast cases where skb->dst
Paul Moorec0828e52013-12-10 14:58:01 -05005807 * is NULL, in this case go ahead and apply access control.
5808 * NOTE: if this is a local socket (skb->sk != NULL) that is in the
5809 * TCP listening state we cannot wait until the XFRM processing
5810 * is done as we will miss out on the SA label if we do;
5811 * unfortunately, this means more work, but it is only once per
5812 * connection. */
5813 if (skb_dst(skb) != NULL && skb_dst(skb)->xfrm != NULL &&
Eric Dumazete446f9d2015-10-08 05:01:55 -07005814 !(sk && sk_listener(sk)))
Paul Mooreeffad8d2008-01-29 08:49:27 -05005815 return NF_ACCEPT;
5816#endif
Paul Mooreeffad8d2008-01-29 08:49:27 -05005817
Paul Moore1d1e1de2021-10-11 17:50:48 -04005818 family = state->pf;
Paul Moored8395c82008-10-10 10:16:30 -04005819 if (sk == NULL) {
Paul Moore446b8022013-12-04 16:10:51 -05005820 /* Without an associated socket the packet is either coming
5821 * from the kernel or it is being forwarded; check the packet
5822 * to determine which and if the packet is being forwarded
5823 * query the packet directly to determine the security label. */
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01005824 if (skb->skb_iif) {
5825 secmark_perm = PACKET__FORWARD_OUT;
Paul Moored8395c82008-10-10 10:16:30 -04005826 if (selinux_skb_peerlbl_sid(skb, family, &peer_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00005827 return NF_DROP;
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01005828 } else {
5829 secmark_perm = PACKET__SEND;
Paul Moored8395c82008-10-10 10:16:30 -04005830 peer_sid = SECINITSID_KERNEL;
Steffen Klassert4a7ab3d2011-02-23 12:56:23 +01005831 }
Eric Dumazete446f9d2015-10-08 05:01:55 -07005832 } else if (sk_listener(sk)) {
Paul Moore446b8022013-12-04 16:10:51 -05005833 /* Locally generated packet but the associated socket is in the
5834 * listening state which means this is a SYN-ACK packet. In
5835 * this particular case the correct security label is assigned
5836 * to the connection/request_sock but unfortunately we can't
5837 * query the request_sock as it isn't queued on the parent
5838 * socket until after the SYN-ACK packet is sent; the only
5839 * viable choice is to regenerate the label like we do in
5840 * selinux_inet_conn_request(). See also selinux_ip_output()
5841 * for similar problems. */
5842 u32 skb_sid;
Eric Dumazete446f9d2015-10-08 05:01:55 -07005843 struct sk_security_struct *sksec;
5844
Eric Dumazete446f9d2015-10-08 05:01:55 -07005845 sksec = sk->sk_security;
Paul Moore446b8022013-12-04 16:10:51 -05005846 if (selinux_skb_peerlbl_sid(skb, family, &skb_sid))
5847 return NF_DROP;
Paul Moorec0828e52013-12-10 14:58:01 -05005848 /* At this point, if the returned skb peerlbl is SECSID_NULL
5849 * and the packet has been through at least one XFRM
5850 * transformation then we must be dealing with the "final"
5851 * form of labeled IPsec packet; since we've already applied
5852 * all of our access controls on this packet we can safely
5853 * pass the packet. */
5854 if (skb_sid == SECSID_NULL) {
5855 switch (family) {
5856 case PF_INET:
5857 if (IPCB(skb)->flags & IPSKB_XFRM_TRANSFORMED)
5858 return NF_ACCEPT;
5859 break;
5860 case PF_INET6:
5861 if (IP6CB(skb)->flags & IP6SKB_XFRM_TRANSFORMED)
5862 return NF_ACCEPT;
Paul Moorea7a91a12014-09-03 10:51:59 -04005863 break;
Paul Moorec0828e52013-12-10 14:58:01 -05005864 default:
5865 return NF_DROP_ERR(-ECONNREFUSED);
5866 }
5867 }
Paul Moore446b8022013-12-04 16:10:51 -05005868 if (selinux_conn_sid(sksec->sid, skb_sid, &peer_sid))
5869 return NF_DROP;
5870 secmark_perm = PACKET__SEND;
Paul Moored8395c82008-10-10 10:16:30 -04005871 } else {
Paul Moore446b8022013-12-04 16:10:51 -05005872 /* Locally generated packet, fetch the security label from the
5873 * associated socket. */
Paul Mooreeffad8d2008-01-29 08:49:27 -05005874 struct sk_security_struct *sksec = sk->sk_security;
5875 peer_sid = sksec->sid;
5876 secmark_perm = PACKET__SEND;
Paul Mooreeffad8d2008-01-29 08:49:27 -05005877 }
5878
Paul Moore1d1e1de2021-10-11 17:50:48 -04005879 ifindex = state->out->ifindex;
Eric Paris50c205f2012-04-04 15:01:43 -04005880 ad.type = LSM_AUDIT_DATA_NET;
Eric Paris48c62af2012-04-02 13:15:44 -04005881 ad.u.net = &net;
5882 ad.u.net->netif = ifindex;
5883 ad.u.net->family = family;
Paul Moored8395c82008-10-10 10:16:30 -04005884 if (selinux_parse_skb(skb, &ad, &addrp, 0, NULL))
Eric Paris04f6d702010-11-23 06:28:02 +00005885 return NF_DROP;
Paul Moored8395c82008-10-10 10:16:30 -04005886
Paul Mooreeffad8d2008-01-29 08:49:27 -05005887 if (secmark_active)
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005888 if (avc_has_perm(&selinux_state,
5889 peer_sid, skb->secmark,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005890 SECCLASS_PACKET, secmark_perm, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00005891 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05005892
5893 if (peerlbl_active) {
5894 u32 if_sid;
5895 u32 node_sid;
5896
Paul Moore1d1e1de2021-10-11 17:50:48 -04005897 if (sel_netif_sid(state->net, ifindex, &if_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00005898 return NF_DROP;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005899 if (avc_has_perm(&selinux_state,
5900 peer_sid, if_sid,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005901 SECCLASS_NETIF, NETIF__EGRESS, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00005902 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05005903
5904 if (sel_netnode_sid(addrp, family, &node_sid))
Eric Paris04f6d702010-11-23 06:28:02 +00005905 return NF_DROP;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005906 if (avc_has_perm(&selinux_state,
5907 peer_sid, node_sid,
Paul Mooreeffad8d2008-01-29 08:49:27 -05005908 SECCLASS_NODE, NODE__SENDTO, &ad))
Eric Paris1f1aaf82010-11-16 11:52:57 +00005909 return NF_DROP_ERR(-ECONNREFUSED);
Paul Mooreeffad8d2008-01-29 08:49:27 -05005910 }
5911
5912 return NF_ACCEPT;
5913}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914#endif /* CONFIG_NETFILTER */
5915
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916static int selinux_netlink_send(struct sock *sk, struct sk_buff *skb)
5917{
Paul Moorefb739742020-04-28 09:59:02 -04005918 int rc = 0;
5919 unsigned int msg_len;
5920 unsigned int data_len = skb->len;
5921 unsigned char *data = skb->data;
Huaisheng Yedf4779b2020-01-13 23:03:31 +08005922 struct nlmsghdr *nlh;
5923 struct sk_security_struct *sksec = sk->sk_security;
Paul Moorefb739742020-04-28 09:59:02 -04005924 u16 sclass = sksec->sclass;
5925 u32 perm;
Huaisheng Yedf4779b2020-01-13 23:03:31 +08005926
Paul Moorefb739742020-04-28 09:59:02 -04005927 while (data_len >= nlmsg_total_size(0)) {
5928 nlh = (struct nlmsghdr *)data;
Huaisheng Yedf4779b2020-01-13 23:03:31 +08005929
Paul Moorefb739742020-04-28 09:59:02 -04005930 /* NOTE: the nlmsg_len field isn't reliably set by some netlink
5931 * users which means we can't reject skb's with bogus
5932 * length fields; our solution is to follow what
5933 * netlink_rcv_skb() does and simply skip processing at
5934 * messages with length fields that are clearly junk
5935 */
5936 if (nlh->nlmsg_len < NLMSG_HDRLEN || nlh->nlmsg_len > data_len)
5937 return 0;
5938
5939 rc = selinux_nlmsg_lookup(sclass, nlh->nlmsg_type, &perm);
5940 if (rc == 0) {
5941 rc = sock_has_perm(sk, perm);
5942 if (rc)
5943 return rc;
5944 } else if (rc == -EINVAL) {
5945 /* -EINVAL is a missing msg/perm mapping */
Huaisheng Yedf4779b2020-01-13 23:03:31 +08005946 pr_warn_ratelimited("SELinux: unrecognized netlink"
Paul Moorefb739742020-04-28 09:59:02 -04005947 " message: protocol=%hu nlmsg_type=%hu sclass=%s"
5948 " pid=%d comm=%s\n",
5949 sk->sk_protocol, nlh->nlmsg_type,
5950 secclass_map[sclass - 1].name,
5951 task_pid_nr(current), current->comm);
5952 if (enforcing_enabled(&selinux_state) &&
5953 !security_get_allow_unknown(&selinux_state))
5954 return rc;
5955 rc = 0;
5956 } else if (rc == -ENOENT) {
5957 /* -ENOENT is a missing socket/class mapping, ignore */
5958 rc = 0;
5959 } else {
5960 return rc;
Huaisheng Yedf4779b2020-01-13 23:03:31 +08005961 }
5962
Paul Moorefb739742020-04-28 09:59:02 -04005963 /* move to the next message after applying netlink padding */
5964 msg_len = NLMSG_ALIGN(nlh->nlmsg_len);
5965 if (msg_len >= data_len)
5966 return 0;
5967 data_len -= msg_len;
5968 data += msg_len;
Huaisheng Yedf4779b2020-01-13 23:03:31 +08005969 }
5970
Paul Moorefb739742020-04-28 09:59:02 -04005971 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972}
5973
Casey Schauflerecd5f822018-11-20 11:55:02 -08005974static void ipc_init_security(struct ipc_security_struct *isec, u16 sclass)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 isec->sclass = sclass;
Stephen Smalleybe0554c2017-01-09 10:07:31 -05005977 isec->sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978}
5979
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980static int ipc_has_perm(struct kern_ipc_perm *ipc_perms,
Stephen Smalley6af963f2005-05-01 08:58:39 -07005981 u32 perms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04005984 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11005985 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986
Casey Schaufler7c653822018-09-21 17:19:45 -07005987 isec = selinux_ipc(ipc_perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988
Eric Paris50c205f2012-04-04 15:01:43 -04005989 ad.type = LSM_AUDIT_DATA_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990 ad.u.ipc_id = ipc_perms->key;
5991
Stephen Smalley6b6bc622018-03-05 11:47:56 -05005992 return avc_has_perm(&selinux_state,
5993 sid, isec->sid, isec->sclass, perms, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994}
5995
5996static int selinux_msg_msg_alloc_security(struct msg_msg *msg)
5997{
Huaisheng Yeb82f3f62020-01-10 17:58:56 +08005998 struct msg_security_struct *msec;
5999
6000 msec = selinux_msg_msg(msg);
6001 msec->sid = SECINITSID_UNLABELED;
6002
6003 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004}
6005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006/* message queue security operations */
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006007static int selinux_msg_queue_alloc_security(struct kern_ipc_perm *msq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04006010 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11006011 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 int rc;
6013
Casey Schauflerecd5f822018-11-20 11:55:02 -08006014 isec = selinux_ipc(msq);
6015 ipc_init_security(isec, SECCLASS_MSGQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016
Eric Paris50c205f2012-04-04 15:01:43 -04006017 ad.type = LSM_AUDIT_DATA_IPC;
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006018 ad.u.ipc_id = msq->key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006020 rc = avc_has_perm(&selinux_state,
6021 sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 MSGQ__CREATE, &ad);
Casey Schauflerecd5f822018-11-20 11:55:02 -08006023 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024}
6025
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006026static int selinux_msg_queue_associate(struct kern_ipc_perm *msq, int msqflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04006029 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11006030 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031
Casey Schaufler7c653822018-09-21 17:19:45 -07006032 isec = selinux_ipc(msq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033
Eric Paris50c205f2012-04-04 15:01:43 -04006034 ad.type = LSM_AUDIT_DATA_IPC;
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006035 ad.u.ipc_id = msq->key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006037 return avc_has_perm(&selinux_state,
6038 sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039 MSGQ__ASSOCIATE, &ad);
6040}
6041
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006042static int selinux_msg_queue_msgctl(struct kern_ipc_perm *msq, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043{
6044 int err;
6045 int perms;
6046
Eric Paris828dfe12008-04-17 13:17:49 -04006047 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 case IPC_INFO:
6049 case MSG_INFO:
6050 /* No specific object, just general system-wide information. */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006051 return avc_has_perm(&selinux_state,
6052 current_sid(), SECINITSID_KERNEL,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006053 SECCLASS_SYSTEM, SYSTEM__IPC_INFO, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054 case IPC_STAT:
6055 case MSG_STAT:
Davidlohr Bueso23c8cec2018-04-10 16:35:30 -07006056 case MSG_STAT_ANY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057 perms = MSGQ__GETATTR | MSGQ__ASSOCIATE;
6058 break;
6059 case IPC_SET:
6060 perms = MSGQ__SETATTR;
6061 break;
6062 case IPC_RMID:
6063 perms = MSGQ__DESTROY;
6064 break;
6065 default:
6066 return 0;
6067 }
6068
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006069 err = ipc_has_perm(msq, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 return err;
6071}
6072
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006073static int selinux_msg_queue_msgsnd(struct kern_ipc_perm *msq, struct msg_msg *msg, int msqflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075 struct ipc_security_struct *isec;
6076 struct msg_security_struct *msec;
Thomas Liu2bf49692009-07-14 12:14:09 -04006077 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11006078 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 int rc;
6080
Casey Schaufler7c653822018-09-21 17:19:45 -07006081 isec = selinux_ipc(msq);
6082 msec = selinux_msg_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083
6084 /*
6085 * First time through, need to assign label to the message
6086 */
6087 if (msec->sid == SECINITSID_UNLABELED) {
6088 /*
6089 * Compute new sid based on current process and
6090 * message queue this message will be stored in
6091 */
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006092 rc = security_transition_sid(&selinux_state, sid, isec->sid,
6093 SECCLASS_MSG, NULL, &msec->sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094 if (rc)
6095 return rc;
6096 }
6097
Eric Paris50c205f2012-04-04 15:01:43 -04006098 ad.type = LSM_AUDIT_DATA_IPC;
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006099 ad.u.ipc_id = msq->key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100
6101 /* Can this process write to the queue? */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006102 rc = avc_has_perm(&selinux_state,
6103 sid, isec->sid, SECCLASS_MSGQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104 MSGQ__WRITE, &ad);
6105 if (!rc)
6106 /* Can this process send the message */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006107 rc = avc_has_perm(&selinux_state,
6108 sid, msec->sid, SECCLASS_MSG,
David Howells275bb412008-11-14 10:39:19 +11006109 MSG__SEND, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110 if (!rc)
6111 /* Can the message be put in the queue? */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006112 rc = avc_has_perm(&selinux_state,
6113 msec->sid, isec->sid, SECCLASS_MSGQ,
David Howells275bb412008-11-14 10:39:19 +11006114 MSGQ__ENQUEUE, &ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115
6116 return rc;
6117}
6118
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006119static int selinux_msg_queue_msgrcv(struct kern_ipc_perm *msq, struct msg_msg *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120 struct task_struct *target,
6121 long type, int mode)
6122{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123 struct ipc_security_struct *isec;
6124 struct msg_security_struct *msec;
Thomas Liu2bf49692009-07-14 12:14:09 -04006125 struct common_audit_data ad;
Paul Moorea3727a82021-09-23 09:50:11 -04006126 u32 sid = task_sid_obj(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127 int rc;
6128
Casey Schaufler7c653822018-09-21 17:19:45 -07006129 isec = selinux_ipc(msq);
6130 msec = selinux_msg_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
Eric Paris50c205f2012-04-04 15:01:43 -04006132 ad.type = LSM_AUDIT_DATA_IPC;
Eric W. Biedermand8c6e852018-03-22 21:22:26 -05006133 ad.u.ipc_id = msq->key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006135 rc = avc_has_perm(&selinux_state,
6136 sid, isec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137 SECCLASS_MSGQ, MSGQ__READ, &ad);
6138 if (!rc)
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006139 rc = avc_has_perm(&selinux_state,
6140 sid, msec->sid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141 SECCLASS_MSG, MSG__RECEIVE, &ad);
6142 return rc;
6143}
6144
6145/* Shared Memory security operations */
Eric W. Biederman7191adf2018-03-22 21:08:27 -05006146static int selinux_shm_alloc_security(struct kern_ipc_perm *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04006149 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11006150 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151 int rc;
6152
Casey Schauflerecd5f822018-11-20 11:55:02 -08006153 isec = selinux_ipc(shp);
6154 ipc_init_security(isec, SECCLASS_SHM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155
Eric Paris50c205f2012-04-04 15:01:43 -04006156 ad.type = LSM_AUDIT_DATA_IPC;
Eric W. Biederman7191adf2018-03-22 21:08:27 -05006157 ad.u.ipc_id = shp->key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006159 rc = avc_has_perm(&selinux_state,
6160 sid, isec->sid, SECCLASS_SHM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161 SHM__CREATE, &ad);
Casey Schauflerecd5f822018-11-20 11:55:02 -08006162 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163}
6164
Eric W. Biederman7191adf2018-03-22 21:08:27 -05006165static int selinux_shm_associate(struct kern_ipc_perm *shp, int shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04006168 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11006169 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170
Casey Schaufler7c653822018-09-21 17:19:45 -07006171 isec = selinux_ipc(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172
Eric Paris50c205f2012-04-04 15:01:43 -04006173 ad.type = LSM_AUDIT_DATA_IPC;
Eric W. Biederman7191adf2018-03-22 21:08:27 -05006174 ad.u.ipc_id = shp->key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006176 return avc_has_perm(&selinux_state,
6177 sid, isec->sid, SECCLASS_SHM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006178 SHM__ASSOCIATE, &ad);
6179}
6180
6181/* Note, at this point, shp is locked down */
Eric W. Biederman7191adf2018-03-22 21:08:27 -05006182static int selinux_shm_shmctl(struct kern_ipc_perm *shp, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183{
6184 int perms;
6185 int err;
6186
Eric Paris828dfe12008-04-17 13:17:49 -04006187 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188 case IPC_INFO:
6189 case SHM_INFO:
6190 /* No specific object, just general system-wide information. */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006191 return avc_has_perm(&selinux_state,
6192 current_sid(), SECINITSID_KERNEL,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006193 SECCLASS_SYSTEM, SYSTEM__IPC_INFO, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194 case IPC_STAT:
6195 case SHM_STAT:
Davidlohr Buesoc21a6972018-04-10 16:35:23 -07006196 case SHM_STAT_ANY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197 perms = SHM__GETATTR | SHM__ASSOCIATE;
6198 break;
6199 case IPC_SET:
6200 perms = SHM__SETATTR;
6201 break;
6202 case SHM_LOCK:
6203 case SHM_UNLOCK:
6204 perms = SHM__LOCK;
6205 break;
6206 case IPC_RMID:
6207 perms = SHM__DESTROY;
6208 break;
6209 default:
6210 return 0;
6211 }
6212
Eric W. Biederman7191adf2018-03-22 21:08:27 -05006213 err = ipc_has_perm(shp, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214 return err;
6215}
6216
Eric W. Biederman7191adf2018-03-22 21:08:27 -05006217static int selinux_shm_shmat(struct kern_ipc_perm *shp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218 char __user *shmaddr, int shmflg)
6219{
6220 u32 perms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221
6222 if (shmflg & SHM_RDONLY)
6223 perms = SHM__READ;
6224 else
6225 perms = SHM__READ | SHM__WRITE;
6226
Eric W. Biederman7191adf2018-03-22 21:08:27 -05006227 return ipc_has_perm(shp, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228}
6229
6230/* Semaphore security operations */
Eric W. Biedermanaefad952018-03-22 20:52:43 -05006231static int selinux_sem_alloc_security(struct kern_ipc_perm *sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04006234 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11006235 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236 int rc;
6237
Casey Schauflerecd5f822018-11-20 11:55:02 -08006238 isec = selinux_ipc(sma);
6239 ipc_init_security(isec, SECCLASS_SEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
Eric Paris50c205f2012-04-04 15:01:43 -04006241 ad.type = LSM_AUDIT_DATA_IPC;
Eric W. Biedermanaefad952018-03-22 20:52:43 -05006242 ad.u.ipc_id = sma->key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006244 rc = avc_has_perm(&selinux_state,
6245 sid, isec->sid, SECCLASS_SEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246 SEM__CREATE, &ad);
Casey Schauflerecd5f822018-11-20 11:55:02 -08006247 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248}
6249
Eric W. Biedermanaefad952018-03-22 20:52:43 -05006250static int selinux_sem_associate(struct kern_ipc_perm *sma, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252 struct ipc_security_struct *isec;
Thomas Liu2bf49692009-07-14 12:14:09 -04006253 struct common_audit_data ad;
David Howells275bb412008-11-14 10:39:19 +11006254 u32 sid = current_sid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
Casey Schaufler7c653822018-09-21 17:19:45 -07006256 isec = selinux_ipc(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
Eric Paris50c205f2012-04-04 15:01:43 -04006258 ad.type = LSM_AUDIT_DATA_IPC;
Eric W. Biedermanaefad952018-03-22 20:52:43 -05006259 ad.u.ipc_id = sma->key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006261 return avc_has_perm(&selinux_state,
6262 sid, isec->sid, SECCLASS_SEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263 SEM__ASSOCIATE, &ad);
6264}
6265
6266/* Note, at this point, sma is locked down */
Eric W. Biedermanaefad952018-03-22 20:52:43 -05006267static int selinux_sem_semctl(struct kern_ipc_perm *sma, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268{
6269 int err;
6270 u32 perms;
6271
Eric Paris828dfe12008-04-17 13:17:49 -04006272 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273 case IPC_INFO:
6274 case SEM_INFO:
6275 /* No specific object, just general system-wide information. */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006276 return avc_has_perm(&selinux_state,
6277 current_sid(), SECINITSID_KERNEL,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006278 SECCLASS_SYSTEM, SYSTEM__IPC_INFO, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279 case GETPID:
6280 case GETNCNT:
6281 case GETZCNT:
6282 perms = SEM__GETATTR;
6283 break;
6284 case GETVAL:
6285 case GETALL:
6286 perms = SEM__READ;
6287 break;
6288 case SETVAL:
6289 case SETALL:
6290 perms = SEM__WRITE;
6291 break;
6292 case IPC_RMID:
6293 perms = SEM__DESTROY;
6294 break;
6295 case IPC_SET:
6296 perms = SEM__SETATTR;
6297 break;
6298 case IPC_STAT:
6299 case SEM_STAT:
Davidlohr Buesoa280d6d2018-04-10 16:35:26 -07006300 case SEM_STAT_ANY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301 perms = SEM__GETATTR | SEM__ASSOCIATE;
6302 break;
6303 default:
6304 return 0;
6305 }
6306
Eric W. Biedermanaefad952018-03-22 20:52:43 -05006307 err = ipc_has_perm(sma, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308 return err;
6309}
6310
Eric W. Biedermanaefad952018-03-22 20:52:43 -05006311static int selinux_sem_semop(struct kern_ipc_perm *sma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312 struct sembuf *sops, unsigned nsops, int alter)
6313{
6314 u32 perms;
6315
6316 if (alter)
6317 perms = SEM__READ | SEM__WRITE;
6318 else
6319 perms = SEM__READ;
6320
Eric W. Biedermanaefad952018-03-22 20:52:43 -05006321 return ipc_has_perm(sma, perms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322}
6323
6324static int selinux_ipc_permission(struct kern_ipc_perm *ipcp, short flag)
6325{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326 u32 av = 0;
6327
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328 av = 0;
6329 if (flag & S_IRUGO)
6330 av |= IPC__UNIX_READ;
6331 if (flag & S_IWUGO)
6332 av |= IPC__UNIX_WRITE;
6333
6334 if (av == 0)
6335 return 0;
6336
Stephen Smalley6af963f2005-05-01 08:58:39 -07006337 return ipc_has_perm(ipcp, av);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338}
6339
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02006340static void selinux_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
6341{
Casey Schaufler7c653822018-09-21 17:19:45 -07006342 struct ipc_security_struct *isec = selinux_ipc(ipcp);
Ahmed S. Darwish713a04ae2008-03-01 21:52:30 +02006343 *secid = isec->sid;
6344}
6345
Eric Paris828dfe12008-04-17 13:17:49 -04006346static void selinux_d_instantiate(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347{
6348 if (inode)
6349 inode_doinit_with_dentry(inode, dentry);
6350}
6351
6352static int selinux_getprocattr(struct task_struct *p,
Al Viro04ff9702007-03-12 16:17:58 +00006353 char *name, char **value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354{
David Howells275bb412008-11-14 10:39:19 +11006355 const struct task_security_struct *__tsec;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00006356 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357 int error;
Al Viro04ff9702007-03-12 16:17:58 +00006358 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359
David Howells275bb412008-11-14 10:39:19 +11006360 rcu_read_lock();
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07006361 __tsec = selinux_cred(__task_cred(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006363 if (current != p) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006364 error = avc_has_perm(&selinux_state,
6365 current_sid(), __tsec->sid,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006366 SECCLASS_PROCESS, PROCESS__GETATTR, NULL);
6367 if (error)
6368 goto bad;
6369 }
6370
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371 if (!strcmp(name, "current"))
David Howells275bb412008-11-14 10:39:19 +11006372 sid = __tsec->sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373 else if (!strcmp(name, "prev"))
David Howells275bb412008-11-14 10:39:19 +11006374 sid = __tsec->osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375 else if (!strcmp(name, "exec"))
David Howells275bb412008-11-14 10:39:19 +11006376 sid = __tsec->exec_sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377 else if (!strcmp(name, "fscreate"))
David Howells275bb412008-11-14 10:39:19 +11006378 sid = __tsec->create_sid;
Michael LeMay4eb582c2006-06-26 00:24:57 -07006379 else if (!strcmp(name, "keycreate"))
David Howells275bb412008-11-14 10:39:19 +11006380 sid = __tsec->keycreate_sid;
Eric Paris42c3e032006-06-26 00:26:03 -07006381 else if (!strcmp(name, "sockcreate"))
David Howells275bb412008-11-14 10:39:19 +11006382 sid = __tsec->sockcreate_sid;
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006383 else {
6384 error = -EINVAL;
6385 goto bad;
6386 }
David Howells275bb412008-11-14 10:39:19 +11006387 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388
6389 if (!sid)
6390 return 0;
6391
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006392 error = security_sid_to_context(&selinux_state, sid, value, &len);
Al Viro04ff9702007-03-12 16:17:58 +00006393 if (error)
6394 return error;
6395 return len;
David Howells275bb412008-11-14 10:39:19 +11006396
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006397bad:
David Howells275bb412008-11-14 10:39:19 +11006398 rcu_read_unlock();
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006399 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400}
6401
Stephen Smalleyb21507e2017-01-09 10:07:31 -05006402static int selinux_setprocattr(const char *name, void *value, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403{
6404 struct task_security_struct *tsec;
David Howellsd84f4f92008-11-14 10:39:23 +11006405 struct cred *new;
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006406 u32 mysid = current_sid(), sid = 0, ptsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 int error;
6408 char *str = value;
6409
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410 /*
6411 * Basic control over ability to set these attributes at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412 */
6413 if (!strcmp(name, "exec"))
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006414 error = avc_has_perm(&selinux_state,
6415 mysid, mysid, SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006416 PROCESS__SETEXEC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417 else if (!strcmp(name, "fscreate"))
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006418 error = avc_has_perm(&selinux_state,
6419 mysid, mysid, SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006420 PROCESS__SETFSCREATE, NULL);
Michael LeMay4eb582c2006-06-26 00:24:57 -07006421 else if (!strcmp(name, "keycreate"))
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006422 error = avc_has_perm(&selinux_state,
6423 mysid, mysid, SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006424 PROCESS__SETKEYCREATE, NULL);
Eric Paris42c3e032006-06-26 00:26:03 -07006425 else if (!strcmp(name, "sockcreate"))
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006426 error = avc_has_perm(&selinux_state,
6427 mysid, mysid, SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006428 PROCESS__SETSOCKCREATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 else if (!strcmp(name, "current"))
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006430 error = avc_has_perm(&selinux_state,
6431 mysid, mysid, SECCLASS_PROCESS,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006432 PROCESS__SETCURRENT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 else
6434 error = -EINVAL;
6435 if (error)
6436 return error;
6437
6438 /* Obtain a SID for the context, if one was specified. */
Stephen Smalleya050a572017-01-31 11:54:04 -05006439 if (size && str[0] && str[0] != '\n') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440 if (str[size-1] == '\n') {
6441 str[size-1] = 0;
6442 size--;
6443 }
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006444 error = security_context_to_sid(&selinux_state, value, size,
6445 &sid, GFP_KERNEL);
Stephen Smalley12b29f32008-05-07 13:03:20 -04006446 if (error == -EINVAL && !strcmp(name, "fscreate")) {
Stephen Smalleydb590002017-04-20 11:31:30 -04006447 if (!has_cap_mac_admin(true)) {
Eric Parisd6ea83e2012-04-04 13:45:49 -04006448 struct audit_buffer *ab;
6449 size_t audit_size;
6450
6451 /* We strip a nul only if it is at the end, otherwise the
6452 * context contains a nul and we should audit that */
6453 if (str[size - 1] == '\0')
6454 audit_size = size - 1;
6455 else
6456 audit_size = size;
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04006457 ab = audit_log_start(audit_context(),
6458 GFP_ATOMIC,
6459 AUDIT_SELINUX_ERR);
Austin Kim893c47d2021-07-14 01:11:27 +01006460 if (!ab)
6461 return error;
Eric Parisd6ea83e2012-04-04 13:45:49 -04006462 audit_log_format(ab, "op=fscreate invalid_context=");
6463 audit_log_n_untrustedstring(ab, value, audit_size);
6464 audit_log_end(ab);
6465
Stephen Smalley12b29f32008-05-07 13:03:20 -04006466 return error;
Eric Parisd6ea83e2012-04-04 13:45:49 -04006467 }
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006468 error = security_context_to_sid_force(
6469 &selinux_state,
6470 value, size, &sid);
Stephen Smalley12b29f32008-05-07 13:03:20 -04006471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472 if (error)
6473 return error;
6474 }
6475
David Howellsd84f4f92008-11-14 10:39:23 +11006476 new = prepare_creds();
6477 if (!new)
6478 return -ENOMEM;
6479
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480 /* Permission checking based on the specified context is
6481 performed during the actual operation (execve,
6482 open/mkdir/...), when we know the full context of the
Eric W. Biedermanb8bff592020-03-22 15:46:24 -05006483 operation. See selinux_bprm_creds_for_exec for the execve
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484 checks and may_create for the file creation checks. The
6485 operation will then fail if the context is not permitted. */
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07006486 tsec = selinux_cred(new);
David Howellsd84f4f92008-11-14 10:39:23 +11006487 if (!strcmp(name, "exec")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488 tsec->exec_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11006489 } else if (!strcmp(name, "fscreate")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490 tsec->create_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11006491 } else if (!strcmp(name, "keycreate")) {
Ondrej Mosnacek464c2582019-06-12 10:12:26 +02006492 if (sid) {
6493 error = avc_has_perm(&selinux_state, mysid, sid,
6494 SECCLASS_KEY, KEY__CREATE, NULL);
6495 if (error)
6496 goto abort_change;
6497 }
Michael LeMay4eb582c2006-06-26 00:24:57 -07006498 tsec->keycreate_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11006499 } else if (!strcmp(name, "sockcreate")) {
Eric Paris42c3e032006-06-26 00:26:03 -07006500 tsec->sockcreate_sid = sid;
David Howellsd84f4f92008-11-14 10:39:23 +11006501 } else if (!strcmp(name, "current")) {
6502 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503 if (sid == 0)
David Howellsd84f4f92008-11-14 10:39:23 +11006504 goto abort_change;
KaiGai Koheid9250de2008-08-28 16:35:57 +09006505
David Howellsd84f4f92008-11-14 10:39:23 +11006506 /* Only allow single threaded processes to change context */
6507 error = -EPERM;
Oleg Nesterov5bb459b2009-07-10 03:48:23 +02006508 if (!current_is_single_threaded()) {
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006509 error = security_bounded_transition(&selinux_state,
6510 tsec->sid, sid);
David Howellsd84f4f92008-11-14 10:39:23 +11006511 if (error)
6512 goto abort_change;
Eric Paris828dfe12008-04-17 13:17:49 -04006513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514
6515 /* Check permissions for the transition. */
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006516 error = avc_has_perm(&selinux_state,
6517 tsec->sid, sid, SECCLASS_PROCESS,
Eric Paris828dfe12008-04-17 13:17:49 -04006518 PROCESS__DYNTRANSITION, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519 if (error)
David Howellsd84f4f92008-11-14 10:39:23 +11006520 goto abort_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
6522 /* Check for ptracing, and update the task SID if ok.
6523 Otherwise, leave SID unchanged and fail. */
Stephen Smalleybe0554c2017-01-09 10:07:31 -05006524 ptsid = ptrace_parent_sid();
Paul Moore0c6181c2016-03-30 21:41:21 -04006525 if (ptsid != 0) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006526 error = avc_has_perm(&selinux_state,
6527 ptsid, sid, SECCLASS_PROCESS,
David Howellsd84f4f92008-11-14 10:39:23 +11006528 PROCESS__PTRACE, NULL);
6529 if (error)
6530 goto abort_change;
6531 }
6532
6533 tsec->sid = sid;
6534 } else {
6535 error = -EINVAL;
6536 goto abort_change;
6537 }
6538
6539 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 return size;
David Howellsd84f4f92008-11-14 10:39:23 +11006541
6542abort_change:
6543 abort_creds(new);
6544 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545}
6546
David Quigley746df9b2013-05-22 12:50:35 -04006547static int selinux_ismaclabel(const char *name)
6548{
6549 return (strcmp(name, XATTR_SELINUX_SUFFIX) == 0);
6550}
6551
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07006552static int selinux_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
6553{
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006554 return security_sid_to_context(&selinux_state, secid,
6555 secdata, seclen);
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07006556}
6557
David Howells7bf570d2008-04-29 20:52:51 +01006558static int selinux_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
David Howells63cb3442008-01-15 23:47:35 +00006559{
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006560 return security_context_to_sid(&selinux_state, secdata, seclen,
6561 secid, GFP_KERNEL);
David Howells63cb3442008-01-15 23:47:35 +00006562}
6563
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07006564static void selinux_release_secctx(char *secdata, u32 seclen)
6565{
Paul Moore088999e2007-08-01 11:12:58 -04006566 kfree(secdata);
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07006567}
6568
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05006569static void selinux_inode_invalidate_secctx(struct inode *inode)
6570{
Casey Schaufler80788c22018-09-21 17:19:11 -07006571 struct inode_security_struct *isec = selinux_inode(inode);
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05006572
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01006573 spin_lock(&isec->lock);
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05006574 isec->initialized = LABEL_INVALID;
Andreas Gruenbacher9287aed2016-11-15 11:06:40 +01006575 spin_unlock(&isec->lock);
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05006576}
6577
David P. Quigley1ee65e32009-09-03 14:25:57 -04006578/*
6579 * called with inode->i_mutex locked
6580 */
6581static int selinux_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
6582{
Ondrej Mosnacek53e0c2a2018-12-21 21:18:53 +01006583 int rc = selinux_inode_setsecurity(inode, XATTR_SELINUX_SUFFIX,
6584 ctx, ctxlen, 0);
6585 /* Do not return error when suppressing label (SBLABEL_MNT not set). */
6586 return rc == -EOPNOTSUPP ? 0 : rc;
David P. Quigley1ee65e32009-09-03 14:25:57 -04006587}
6588
6589/*
6590 * called with inode->i_mutex locked
6591 */
6592static int selinux_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
6593{
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +01006594 return __vfs_setxattr_noperm(&init_user_ns, dentry, XATTR_NAME_SELINUX,
6595 ctx, ctxlen, 0);
David P. Quigley1ee65e32009-09-03 14:25:57 -04006596}
6597
6598static int selinux_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
6599{
6600 int len = 0;
Christian Brauner71bc3562021-01-21 14:19:29 +01006601 len = selinux_inode_getsecurity(&init_user_ns, inode,
6602 XATTR_SELINUX_SUFFIX, ctx, true);
David P. Quigley1ee65e32009-09-03 14:25:57 -04006603 if (len < 0)
6604 return len;
6605 *ctxlen = len;
6606 return 0;
6607}
Michael LeMayd7200242006-06-22 14:47:17 -07006608#ifdef CONFIG_KEYS
6609
David Howellsd84f4f92008-11-14 10:39:23 +11006610static int selinux_key_alloc(struct key *k, const struct cred *cred,
David Howells7e047ef2006-06-26 00:24:50 -07006611 unsigned long flags)
Michael LeMayd7200242006-06-22 14:47:17 -07006612{
David Howellsd84f4f92008-11-14 10:39:23 +11006613 const struct task_security_struct *tsec;
Michael LeMayd7200242006-06-22 14:47:17 -07006614 struct key_security_struct *ksec;
6615
6616 ksec = kzalloc(sizeof(struct key_security_struct), GFP_KERNEL);
6617 if (!ksec)
6618 return -ENOMEM;
6619
Casey Schaufler0c6cfa62018-09-21 17:17:16 -07006620 tsec = selinux_cred(cred);
David Howellsd84f4f92008-11-14 10:39:23 +11006621 if (tsec->keycreate_sid)
6622 ksec->sid = tsec->keycreate_sid;
Michael LeMay4eb582c2006-06-26 00:24:57 -07006623 else
David Howellsd84f4f92008-11-14 10:39:23 +11006624 ksec->sid = tsec->sid;
Michael LeMayd7200242006-06-22 14:47:17 -07006625
David Howells275bb412008-11-14 10:39:19 +11006626 k->security = ksec;
Michael LeMayd7200242006-06-22 14:47:17 -07006627 return 0;
6628}
6629
6630static void selinux_key_free(struct key *k)
6631{
6632 struct key_security_struct *ksec = k->security;
6633
6634 k->security = NULL;
6635 kfree(ksec);
6636}
6637
6638static int selinux_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11006639 const struct cred *cred,
David Howells8c0637e2020-05-12 15:16:29 +01006640 enum key_need_perm need_perm)
Michael LeMayd7200242006-06-22 14:47:17 -07006641{
6642 struct key *key;
Michael LeMayd7200242006-06-22 14:47:17 -07006643 struct key_security_struct *ksec;
David Howells8c0637e2020-05-12 15:16:29 +01006644 u32 perm, sid;
Michael LeMayd7200242006-06-22 14:47:17 -07006645
David Howells8c0637e2020-05-12 15:16:29 +01006646 switch (need_perm) {
6647 case KEY_NEED_VIEW:
6648 perm = KEY__VIEW;
6649 break;
6650 case KEY_NEED_READ:
6651 perm = KEY__READ;
6652 break;
6653 case KEY_NEED_WRITE:
6654 perm = KEY__WRITE;
6655 break;
6656 case KEY_NEED_SEARCH:
6657 perm = KEY__SEARCH;
6658 break;
6659 case KEY_NEED_LINK:
6660 perm = KEY__LINK;
6661 break;
6662 case KEY_NEED_SETATTR:
6663 perm = KEY__SETATTR;
6664 break;
6665 case KEY_NEED_UNLINK:
6666 case KEY_SYSADMIN_OVERRIDE:
6667 case KEY_AUTHTOKEN_OVERRIDE:
6668 case KEY_DEFER_PERM_CHECK:
Michael LeMayd7200242006-06-22 14:47:17 -07006669 return 0;
David Howells8c0637e2020-05-12 15:16:29 +01006670 default:
6671 WARN_ON(1);
6672 return -EPERM;
6673
6674 }
Michael LeMayd7200242006-06-22 14:47:17 -07006675
David Howellsd84f4f92008-11-14 10:39:23 +11006676 sid = cred_sid(cred);
David Howells275bb412008-11-14 10:39:19 +11006677 key = key_ref_to_ptr(key_ref);
6678 ksec = key->security;
6679
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006680 return avc_has_perm(&selinux_state,
Linus Torvalds028db3e2019-07-10 18:43:43 -07006681 sid, ksec->sid, SECCLASS_KEY, perm, NULL);
Michael LeMayd7200242006-06-22 14:47:17 -07006682}
6683
David Howells70a5bb72008-04-29 01:01:26 -07006684static int selinux_key_getsecurity(struct key *key, char **_buffer)
6685{
6686 struct key_security_struct *ksec = key->security;
6687 char *context = NULL;
6688 unsigned len;
6689 int rc;
6690
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006691 rc = security_sid_to_context(&selinux_state, ksec->sid,
6692 &context, &len);
David Howells70a5bb72008-04-29 01:01:26 -07006693 if (!rc)
6694 rc = len;
6695 *_buffer = context;
6696 return rc;
6697}
David Howells3e412cc2020-01-14 17:07:13 +00006698
6699#ifdef CONFIG_KEY_NOTIFICATIONS
6700static int selinux_watch_key(struct key *key)
6701{
6702 struct key_security_struct *ksec = key->security;
6703 u32 sid = current_sid();
6704
6705 return avc_has_perm(&selinux_state,
6706 sid, ksec->sid, SECCLASS_KEY, KEY__VIEW, NULL);
6707}
6708#endif
Daniel Jurgens3a976fa2017-05-19 15:48:56 +03006709#endif
David Howells70a5bb72008-04-29 01:01:26 -07006710
Daniel Jurgens3a976fa2017-05-19 15:48:56 +03006711#ifdef CONFIG_SECURITY_INFINIBAND
Daniel Jurgenscfc4d882017-05-19 15:48:57 +03006712static int selinux_ib_pkey_access(void *ib_sec, u64 subnet_prefix, u16 pkey_val)
6713{
6714 struct common_audit_data ad;
6715 int err;
6716 u32 sid = 0;
6717 struct ib_security_struct *sec = ib_sec;
6718 struct lsm_ibpkey_audit ibpkey;
6719
Daniel Jurgens409dcf32017-05-19 15:48:59 +03006720 err = sel_ib_pkey_sid(subnet_prefix, pkey_val, &sid);
Daniel Jurgenscfc4d882017-05-19 15:48:57 +03006721 if (err)
6722 return err;
6723
6724 ad.type = LSM_AUDIT_DATA_IBPKEY;
6725 ibpkey.subnet_prefix = subnet_prefix;
6726 ibpkey.pkey = pkey_val;
6727 ad.u.ibpkey = &ibpkey;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006728 return avc_has_perm(&selinux_state,
6729 sec->sid, sid,
Daniel Jurgenscfc4d882017-05-19 15:48:57 +03006730 SECCLASS_INFINIBAND_PKEY,
6731 INFINIBAND_PKEY__ACCESS, &ad);
6732}
6733
Daniel Jurgensab861df2017-05-19 15:48:58 +03006734static int selinux_ib_endport_manage_subnet(void *ib_sec, const char *dev_name,
6735 u8 port_num)
6736{
6737 struct common_audit_data ad;
6738 int err;
6739 u32 sid = 0;
6740 struct ib_security_struct *sec = ib_sec;
6741 struct lsm_ibendport_audit ibendport;
6742
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05006743 err = security_ib_endport_sid(&selinux_state, dev_name, port_num,
6744 &sid);
Daniel Jurgensab861df2017-05-19 15:48:58 +03006745
6746 if (err)
6747 return err;
6748
6749 ad.type = LSM_AUDIT_DATA_IBENDPORT;
Ondrej Mosnacek869cbee2021-05-12 16:32:10 +02006750 ibendport.dev_name = dev_name;
Daniel Jurgensab861df2017-05-19 15:48:58 +03006751 ibendport.port = port_num;
6752 ad.u.ibendport = &ibendport;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006753 return avc_has_perm(&selinux_state,
6754 sec->sid, sid,
Daniel Jurgensab861df2017-05-19 15:48:58 +03006755 SECCLASS_INFINIBAND_ENDPORT,
6756 INFINIBAND_ENDPORT__MANAGE_SUBNET, &ad);
6757}
6758
Daniel Jurgens3a976fa2017-05-19 15:48:56 +03006759static int selinux_ib_alloc_security(void **ib_sec)
6760{
6761 struct ib_security_struct *sec;
6762
6763 sec = kzalloc(sizeof(*sec), GFP_KERNEL);
6764 if (!sec)
6765 return -ENOMEM;
6766 sec->sid = current_sid();
6767
6768 *ib_sec = sec;
6769 return 0;
6770}
6771
6772static void selinux_ib_free_security(void *ib_sec)
6773{
6774 kfree(ib_sec);
6775}
Michael LeMayd7200242006-06-22 14:47:17 -07006776#endif
6777
Chenbo Fengec27c352017-10-18 13:00:25 -07006778#ifdef CONFIG_BPF_SYSCALL
6779static int selinux_bpf(int cmd, union bpf_attr *attr,
6780 unsigned int size)
6781{
6782 u32 sid = current_sid();
6783 int ret;
6784
6785 switch (cmd) {
6786 case BPF_MAP_CREATE:
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006787 ret = avc_has_perm(&selinux_state,
6788 sid, sid, SECCLASS_BPF, BPF__MAP_CREATE,
Chenbo Fengec27c352017-10-18 13:00:25 -07006789 NULL);
6790 break;
6791 case BPF_PROG_LOAD:
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006792 ret = avc_has_perm(&selinux_state,
6793 sid, sid, SECCLASS_BPF, BPF__PROG_LOAD,
Chenbo Fengec27c352017-10-18 13:00:25 -07006794 NULL);
6795 break;
6796 default:
6797 ret = 0;
6798 break;
6799 }
6800
6801 return ret;
6802}
6803
6804static u32 bpf_map_fmode_to_av(fmode_t fmode)
6805{
6806 u32 av = 0;
6807
6808 if (fmode & FMODE_READ)
6809 av |= BPF__MAP_READ;
6810 if (fmode & FMODE_WRITE)
6811 av |= BPF__MAP_WRITE;
6812 return av;
6813}
6814
Chenbo Fengf66e4482017-10-18 13:00:26 -07006815/* This function will check the file pass through unix socket or binder to see
6816 * if it is a bpf related object. And apply correspinding checks on the bpf
6817 * object based on the type. The bpf maps and programs, not like other files and
6818 * socket, are using a shared anonymous inode inside the kernel as their inode.
6819 * So checking that inode cannot identify if the process have privilege to
6820 * access the bpf object and that's why we have to add this additional check in
6821 * selinux_file_receive and selinux_binder_transfer_files.
6822 */
6823static int bpf_fd_pass(struct file *file, u32 sid)
6824{
6825 struct bpf_security_struct *bpfsec;
6826 struct bpf_prog *prog;
6827 struct bpf_map *map;
6828 int ret;
6829
6830 if (file->f_op == &bpf_map_fops) {
6831 map = file->private_data;
6832 bpfsec = map->security;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006833 ret = avc_has_perm(&selinux_state,
6834 sid, bpfsec->sid, SECCLASS_BPF,
Chenbo Fengf66e4482017-10-18 13:00:26 -07006835 bpf_map_fmode_to_av(file->f_mode), NULL);
6836 if (ret)
6837 return ret;
6838 } else if (file->f_op == &bpf_prog_fops) {
6839 prog = file->private_data;
6840 bpfsec = prog->aux->security;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006841 ret = avc_has_perm(&selinux_state,
6842 sid, bpfsec->sid, SECCLASS_BPF,
Chenbo Fengf66e4482017-10-18 13:00:26 -07006843 BPF__PROG_RUN, NULL);
6844 if (ret)
6845 return ret;
6846 }
6847 return 0;
6848}
6849
Chenbo Fengec27c352017-10-18 13:00:25 -07006850static int selinux_bpf_map(struct bpf_map *map, fmode_t fmode)
6851{
6852 u32 sid = current_sid();
6853 struct bpf_security_struct *bpfsec;
6854
6855 bpfsec = map->security;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006856 return avc_has_perm(&selinux_state,
6857 sid, bpfsec->sid, SECCLASS_BPF,
Chenbo Fengec27c352017-10-18 13:00:25 -07006858 bpf_map_fmode_to_av(fmode), NULL);
6859}
6860
6861static int selinux_bpf_prog(struct bpf_prog *prog)
6862{
6863 u32 sid = current_sid();
6864 struct bpf_security_struct *bpfsec;
6865
6866 bpfsec = prog->aux->security;
Stephen Smalley6b6bc622018-03-05 11:47:56 -05006867 return avc_has_perm(&selinux_state,
6868 sid, bpfsec->sid, SECCLASS_BPF,
Chenbo Fengec27c352017-10-18 13:00:25 -07006869 BPF__PROG_RUN, NULL);
6870}
6871
6872static int selinux_bpf_map_alloc(struct bpf_map *map)
6873{
6874 struct bpf_security_struct *bpfsec;
6875
6876 bpfsec = kzalloc(sizeof(*bpfsec), GFP_KERNEL);
6877 if (!bpfsec)
6878 return -ENOMEM;
6879
6880 bpfsec->sid = current_sid();
6881 map->security = bpfsec;
6882
6883 return 0;
6884}
6885
6886static void selinux_bpf_map_free(struct bpf_map *map)
6887{
6888 struct bpf_security_struct *bpfsec = map->security;
6889
6890 map->security = NULL;
6891 kfree(bpfsec);
6892}
6893
6894static int selinux_bpf_prog_alloc(struct bpf_prog_aux *aux)
6895{
6896 struct bpf_security_struct *bpfsec;
6897
6898 bpfsec = kzalloc(sizeof(*bpfsec), GFP_KERNEL);
6899 if (!bpfsec)
6900 return -ENOMEM;
6901
6902 bpfsec->sid = current_sid();
6903 aux->security = bpfsec;
6904
6905 return 0;
6906}
6907
6908static void selinux_bpf_prog_free(struct bpf_prog_aux *aux)
6909{
6910 struct bpf_security_struct *bpfsec = aux->security;
6911
6912 aux->security = NULL;
6913 kfree(bpfsec);
6914}
6915#endif
6916
Casey Schauflerbbd36622018-11-12 09:30:56 -08006917struct lsm_blob_sizes selinux_blob_sizes __lsm_ro_after_init = {
6918 .lbs_cred = sizeof(struct task_security_struct),
Casey Schaufler33bf60c2018-11-12 12:02:49 -08006919 .lbs_file = sizeof(struct file_security_struct),
Casey Schauflerafb1cbe32018-09-21 17:19:29 -07006920 .lbs_inode = sizeof(struct inode_security_struct),
Casey Schauflerecd5f822018-11-20 11:55:02 -08006921 .lbs_ipc = sizeof(struct ipc_security_struct),
6922 .lbs_msg_msg = sizeof(struct msg_security_struct),
Casey Schaufler1aea7802021-04-22 17:41:15 +02006923 .lbs_superblock = sizeof(struct superblock_security_struct),
Casey Schauflerbbd36622018-11-12 09:30:56 -08006924};
6925
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04006926#ifdef CONFIG_PERF_EVENTS
6927static int selinux_perf_event_open(struct perf_event_attr *attr, int type)
6928{
6929 u32 requested, sid = current_sid();
6930
6931 if (type == PERF_SECURITY_OPEN)
6932 requested = PERF_EVENT__OPEN;
6933 else if (type == PERF_SECURITY_CPU)
6934 requested = PERF_EVENT__CPU;
6935 else if (type == PERF_SECURITY_KERNEL)
6936 requested = PERF_EVENT__KERNEL;
6937 else if (type == PERF_SECURITY_TRACEPOINT)
6938 requested = PERF_EVENT__TRACEPOINT;
6939 else
6940 return -EINVAL;
6941
6942 return avc_has_perm(&selinux_state, sid, sid, SECCLASS_PERF_EVENT,
6943 requested, NULL);
6944}
6945
6946static int selinux_perf_event_alloc(struct perf_event *event)
6947{
6948 struct perf_event_security_struct *perfsec;
6949
6950 perfsec = kzalloc(sizeof(*perfsec), GFP_KERNEL);
6951 if (!perfsec)
6952 return -ENOMEM;
6953
6954 perfsec->sid = current_sid();
6955 event->security = perfsec;
6956
6957 return 0;
6958}
6959
6960static void selinux_perf_event_free(struct perf_event *event)
6961{
6962 struct perf_event_security_struct *perfsec = event->security;
6963
6964 event->security = NULL;
6965 kfree(perfsec);
6966}
6967
6968static int selinux_perf_event_read(struct perf_event *event)
6969{
6970 struct perf_event_security_struct *perfsec = event->security;
6971 u32 sid = current_sid();
6972
6973 return avc_has_perm(&selinux_state, sid, perfsec->sid,
6974 SECCLASS_PERF_EVENT, PERF_EVENT__READ, NULL);
6975}
6976
6977static int selinux_perf_event_write(struct perf_event *event)
6978{
6979 struct perf_event_security_struct *perfsec = event->security;
6980 u32 sid = current_sid();
6981
6982 return avc_has_perm(&selinux_state, sid, perfsec->sid,
6983 SECCLASS_PERF_EVENT, PERF_EVENT__WRITE, NULL);
6984}
6985#endif
6986
Paul Moore740b0342021-02-23 18:16:45 -05006987#ifdef CONFIG_IO_URING
6988/**
6989 * selinux_uring_override_creds - check the requested cred override
6990 * @new: the target creds
6991 *
6992 * Check to see if the current task is allowed to override it's credentials
6993 * to service an io_uring operation.
6994 */
6995static int selinux_uring_override_creds(const struct cred *new)
6996{
6997 return avc_has_perm(&selinux_state, current_sid(), cred_sid(new),
6998 SECCLASS_IO_URING, IO_URING__OVERRIDE_CREDS, NULL);
6999}
7000
7001/**
7002 * selinux_uring_sqpoll - check if a io_uring polling thread can be created
7003 *
7004 * Check to see if the current task is allowed to create a new io_uring
7005 * kernel polling thread.
7006 */
7007static int selinux_uring_sqpoll(void)
7008{
7009 int sid = current_sid();
7010
7011 return avc_has_perm(&selinux_state, sid, sid,
7012 SECCLASS_IO_URING, IO_URING__SQPOLL, NULL);
7013}
7014#endif /* CONFIG_IO_URING */
7015
Ondrej Mosnacekcfff75d2020-01-08 15:09:58 +01007016/*
7017 * IMPORTANT NOTE: When adding new hooks, please be careful to keep this order:
7018 * 1. any hooks that don't belong to (2.) or (3.) below,
7019 * 2. hooks that both access structures allocated by other hooks, and allocate
7020 * structures that can be later accessed by other hooks (mostly "cloning"
7021 * hooks),
7022 * 3. hooks that only allocate structures that can be later accessed by other
7023 * hooks ("allocating" hooks).
7024 *
7025 * Please follow block comment delimiters in the list to keep this order.
7026 *
7027 * This ordering is needed for SELinux runtime disable to work at least somewhat
7028 * safely. Breaking the ordering rules above might lead to NULL pointer derefs
7029 * when disabling SELinux at runtime.
7030 */
James Morrisca97d932017-02-15 00:18:51 +11007031static struct security_hook_list selinux_hooks[] __lsm_ro_after_init = {
Casey Schauflere20b0432015-05-02 15:11:36 -07007032 LSM_HOOK_INIT(binder_set_context_mgr, selinux_binder_set_context_mgr),
7033 LSM_HOOK_INIT(binder_transaction, selinux_binder_transaction),
7034 LSM_HOOK_INIT(binder_transfer_binder, selinux_binder_transfer_binder),
7035 LSM_HOOK_INIT(binder_transfer_file, selinux_binder_transfer_file),
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02007036
Casey Schauflere20b0432015-05-02 15:11:36 -07007037 LSM_HOOK_INIT(ptrace_access_check, selinux_ptrace_access_check),
7038 LSM_HOOK_INIT(ptrace_traceme, selinux_ptrace_traceme),
7039 LSM_HOOK_INIT(capget, selinux_capget),
7040 LSM_HOOK_INIT(capset, selinux_capset),
7041 LSM_HOOK_INIT(capable, selinux_capable),
7042 LSM_HOOK_INIT(quotactl, selinux_quotactl),
7043 LSM_HOOK_INIT(quota_on, selinux_quota_on),
7044 LSM_HOOK_INIT(syslog, selinux_syslog),
7045 LSM_HOOK_INIT(vm_enough_memory, selinux_vm_enough_memory),
Stephen Smalley79af7302015-01-21 10:54:10 -05007046
Casey Schauflere20b0432015-05-02 15:11:36 -07007047 LSM_HOOK_INIT(netlink_send, selinux_netlink_send),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048
Eric W. Biedermanb8bff592020-03-22 15:46:24 -05007049 LSM_HOOK_INIT(bprm_creds_for_exec, selinux_bprm_creds_for_exec),
Casey Schauflere20b0432015-05-02 15:11:36 -07007050 LSM_HOOK_INIT(bprm_committing_creds, selinux_bprm_committing_creds),
7051 LSM_HOOK_INIT(bprm_committed_creds, selinux_bprm_committed_creds),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052
Al Viro204cc0c2018-12-13 13:41:47 -05007053 LSM_HOOK_INIT(sb_free_mnt_opts, selinux_free_mnt_opts),
Olga Kornievskaia69c4a422021-02-26 22:37:55 -05007054 LSM_HOOK_INIT(sb_mnt_opts_compat, selinux_sb_mnt_opts_compat),
Casey Schauflere20b0432015-05-02 15:11:36 -07007055 LSM_HOOK_INIT(sb_remount, selinux_sb_remount),
7056 LSM_HOOK_INIT(sb_kern_mount, selinux_sb_kern_mount),
7057 LSM_HOOK_INIT(sb_show_options, selinux_sb_show_options),
7058 LSM_HOOK_INIT(sb_statfs, selinux_sb_statfs),
7059 LSM_HOOK_INIT(sb_mount, selinux_mount),
7060 LSM_HOOK_INIT(sb_umount, selinux_umount),
7061 LSM_HOOK_INIT(sb_set_mnt_opts, selinux_set_mnt_opts),
7062 LSM_HOOK_INIT(sb_clone_mnt_opts, selinux_sb_clone_mnt_opts),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007063
Stephen Smalley98aa0032020-01-17 15:24:07 -05007064 LSM_HOOK_INIT(move_mount, selinux_move_mount),
7065
Casey Schauflere20b0432015-05-02 15:11:36 -07007066 LSM_HOOK_INIT(dentry_init_security, selinux_dentry_init_security),
Vivek Goyala518b0a2016-07-13 10:44:53 -04007067 LSM_HOOK_INIT(dentry_create_files_as, selinux_dentry_create_files_as),
Eric Parise0007522008-03-05 10:31:54 -05007068
Casey Schauflere20b0432015-05-02 15:11:36 -07007069 LSM_HOOK_INIT(inode_free_security, selinux_inode_free_security),
7070 LSM_HOOK_INIT(inode_init_security, selinux_inode_init_security),
Daniel Colascione29cd6592021-01-08 14:22:22 -08007071 LSM_HOOK_INIT(inode_init_security_anon, selinux_inode_init_security_anon),
Casey Schauflere20b0432015-05-02 15:11:36 -07007072 LSM_HOOK_INIT(inode_create, selinux_inode_create),
7073 LSM_HOOK_INIT(inode_link, selinux_inode_link),
7074 LSM_HOOK_INIT(inode_unlink, selinux_inode_unlink),
7075 LSM_HOOK_INIT(inode_symlink, selinux_inode_symlink),
7076 LSM_HOOK_INIT(inode_mkdir, selinux_inode_mkdir),
7077 LSM_HOOK_INIT(inode_rmdir, selinux_inode_rmdir),
7078 LSM_HOOK_INIT(inode_mknod, selinux_inode_mknod),
7079 LSM_HOOK_INIT(inode_rename, selinux_inode_rename),
7080 LSM_HOOK_INIT(inode_readlink, selinux_inode_readlink),
7081 LSM_HOOK_INIT(inode_follow_link, selinux_inode_follow_link),
7082 LSM_HOOK_INIT(inode_permission, selinux_inode_permission),
7083 LSM_HOOK_INIT(inode_setattr, selinux_inode_setattr),
7084 LSM_HOOK_INIT(inode_getattr, selinux_inode_getattr),
7085 LSM_HOOK_INIT(inode_setxattr, selinux_inode_setxattr),
7086 LSM_HOOK_INIT(inode_post_setxattr, selinux_inode_post_setxattr),
7087 LSM_HOOK_INIT(inode_getxattr, selinux_inode_getxattr),
7088 LSM_HOOK_INIT(inode_listxattr, selinux_inode_listxattr),
7089 LSM_HOOK_INIT(inode_removexattr, selinux_inode_removexattr),
7090 LSM_HOOK_INIT(inode_getsecurity, selinux_inode_getsecurity),
7091 LSM_HOOK_INIT(inode_setsecurity, selinux_inode_setsecurity),
7092 LSM_HOOK_INIT(inode_listsecurity, selinux_inode_listsecurity),
7093 LSM_HOOK_INIT(inode_getsecid, selinux_inode_getsecid),
Vivek Goyal56909eb2016-07-13 10:44:48 -04007094 LSM_HOOK_INIT(inode_copy_up, selinux_inode_copy_up),
Vivek Goyal19472b62016-07-13 10:44:50 -04007095 LSM_HOOK_INIT(inode_copy_up_xattr, selinux_inode_copy_up_xattr),
Aaron Goidelac5656d2019-08-12 11:20:00 -04007096 LSM_HOOK_INIT(path_notify, selinux_path_notify),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007097
Ondrej Mosnacekec882da2019-02-22 15:57:17 +01007098 LSM_HOOK_INIT(kernfs_init_security, selinux_kernfs_init_security),
7099
Casey Schauflere20b0432015-05-02 15:11:36 -07007100 LSM_HOOK_INIT(file_permission, selinux_file_permission),
7101 LSM_HOOK_INIT(file_alloc_security, selinux_file_alloc_security),
Casey Schauflere20b0432015-05-02 15:11:36 -07007102 LSM_HOOK_INIT(file_ioctl, selinux_file_ioctl),
7103 LSM_HOOK_INIT(mmap_file, selinux_mmap_file),
7104 LSM_HOOK_INIT(mmap_addr, selinux_mmap_addr),
7105 LSM_HOOK_INIT(file_mprotect, selinux_file_mprotect),
7106 LSM_HOOK_INIT(file_lock, selinux_file_lock),
7107 LSM_HOOK_INIT(file_fcntl, selinux_file_fcntl),
7108 LSM_HOOK_INIT(file_set_fowner, selinux_file_set_fowner),
7109 LSM_HOOK_INIT(file_send_sigiotask, selinux_file_send_sigiotask),
7110 LSM_HOOK_INIT(file_receive, selinux_file_receive),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111
Casey Schauflere20b0432015-05-02 15:11:36 -07007112 LSM_HOOK_INIT(file_open, selinux_file_open),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113
Tetsuo Handaa79be232017-03-28 23:08:45 +09007114 LSM_HOOK_INIT(task_alloc, selinux_task_alloc),
Casey Schauflere20b0432015-05-02 15:11:36 -07007115 LSM_HOOK_INIT(cred_prepare, selinux_cred_prepare),
7116 LSM_HOOK_INIT(cred_transfer, selinux_cred_transfer),
Matthew Garrett3ec30112018-01-08 13:36:19 -08007117 LSM_HOOK_INIT(cred_getsecid, selinux_cred_getsecid),
Casey Schauflere20b0432015-05-02 15:11:36 -07007118 LSM_HOOK_INIT(kernel_act_as, selinux_kernel_act_as),
7119 LSM_HOOK_INIT(kernel_create_files_as, selinux_kernel_create_files_as),
7120 LSM_HOOK_INIT(kernel_module_request, selinux_kernel_module_request),
Mimi Zoharc77b8cd2018-07-13 14:06:02 -04007121 LSM_HOOK_INIT(kernel_load_data, selinux_kernel_load_data),
Jeff Vander Stoep61d612ea2016-04-05 13:06:27 -07007122 LSM_HOOK_INIT(kernel_read_file, selinux_kernel_read_file),
Casey Schauflere20b0432015-05-02 15:11:36 -07007123 LSM_HOOK_INIT(task_setpgid, selinux_task_setpgid),
7124 LSM_HOOK_INIT(task_getpgid, selinux_task_getpgid),
7125 LSM_HOOK_INIT(task_getsid, selinux_task_getsid),
Paul Moore63269482021-09-29 11:01:21 -04007126 LSM_HOOK_INIT(current_getsecid_subj, selinux_current_getsecid_subj),
Paul Mooreeb1231f2021-02-18 15:13:40 -05007127 LSM_HOOK_INIT(task_getsecid_obj, selinux_task_getsecid_obj),
Casey Schauflere20b0432015-05-02 15:11:36 -07007128 LSM_HOOK_INIT(task_setnice, selinux_task_setnice),
7129 LSM_HOOK_INIT(task_setioprio, selinux_task_setioprio),
7130 LSM_HOOK_INIT(task_getioprio, selinux_task_getioprio),
Stephen Smalley791ec492017-02-17 07:57:00 -05007131 LSM_HOOK_INIT(task_prlimit, selinux_task_prlimit),
Casey Schauflere20b0432015-05-02 15:11:36 -07007132 LSM_HOOK_INIT(task_setrlimit, selinux_task_setrlimit),
7133 LSM_HOOK_INIT(task_setscheduler, selinux_task_setscheduler),
7134 LSM_HOOK_INIT(task_getscheduler, selinux_task_getscheduler),
7135 LSM_HOOK_INIT(task_movememory, selinux_task_movememory),
7136 LSM_HOOK_INIT(task_kill, selinux_task_kill),
Casey Schauflere20b0432015-05-02 15:11:36 -07007137 LSM_HOOK_INIT(task_to_inode, selinux_task_to_inode),
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09007138
Casey Schauflere20b0432015-05-02 15:11:36 -07007139 LSM_HOOK_INIT(ipc_permission, selinux_ipc_permission),
7140 LSM_HOOK_INIT(ipc_getsecid, selinux_ipc_getsecid),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141
Casey Schauflere20b0432015-05-02 15:11:36 -07007142 LSM_HOOK_INIT(msg_queue_associate, selinux_msg_queue_associate),
7143 LSM_HOOK_INIT(msg_queue_msgctl, selinux_msg_queue_msgctl),
7144 LSM_HOOK_INIT(msg_queue_msgsnd, selinux_msg_queue_msgsnd),
7145 LSM_HOOK_INIT(msg_queue_msgrcv, selinux_msg_queue_msgrcv),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146
Casey Schauflere20b0432015-05-02 15:11:36 -07007147 LSM_HOOK_INIT(shm_associate, selinux_shm_associate),
7148 LSM_HOOK_INIT(shm_shmctl, selinux_shm_shmctl),
7149 LSM_HOOK_INIT(shm_shmat, selinux_shm_shmat),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150
Casey Schauflere20b0432015-05-02 15:11:36 -07007151 LSM_HOOK_INIT(sem_associate, selinux_sem_associate),
7152 LSM_HOOK_INIT(sem_semctl, selinux_sem_semctl),
7153 LSM_HOOK_INIT(sem_semop, selinux_sem_semop),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007154
Casey Schauflere20b0432015-05-02 15:11:36 -07007155 LSM_HOOK_INIT(d_instantiate, selinux_d_instantiate),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156
Casey Schauflere20b0432015-05-02 15:11:36 -07007157 LSM_HOOK_INIT(getprocattr, selinux_getprocattr),
7158 LSM_HOOK_INIT(setprocattr, selinux_setprocattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007159
Casey Schauflere20b0432015-05-02 15:11:36 -07007160 LSM_HOOK_INIT(ismaclabel, selinux_ismaclabel),
Casey Schauflere20b0432015-05-02 15:11:36 -07007161 LSM_HOOK_INIT(secctx_to_secid, selinux_secctx_to_secid),
7162 LSM_HOOK_INIT(release_secctx, selinux_release_secctx),
Andreas Gruenbacher6f3be9f2015-12-24 11:09:40 -05007163 LSM_HOOK_INIT(inode_invalidate_secctx, selinux_inode_invalidate_secctx),
Casey Schauflere20b0432015-05-02 15:11:36 -07007164 LSM_HOOK_INIT(inode_notifysecctx, selinux_inode_notifysecctx),
7165 LSM_HOOK_INIT(inode_setsecctx, selinux_inode_setsecctx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166
Casey Schauflere20b0432015-05-02 15:11:36 -07007167 LSM_HOOK_INIT(unix_stream_connect, selinux_socket_unix_stream_connect),
7168 LSM_HOOK_INIT(unix_may_send, selinux_socket_unix_may_send),
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07007169
Casey Schauflere20b0432015-05-02 15:11:36 -07007170 LSM_HOOK_INIT(socket_create, selinux_socket_create),
7171 LSM_HOOK_INIT(socket_post_create, selinux_socket_post_create),
David Herrmann0b811db2018-05-04 16:28:21 +02007172 LSM_HOOK_INIT(socket_socketpair, selinux_socket_socketpair),
Casey Schauflere20b0432015-05-02 15:11:36 -07007173 LSM_HOOK_INIT(socket_bind, selinux_socket_bind),
7174 LSM_HOOK_INIT(socket_connect, selinux_socket_connect),
7175 LSM_HOOK_INIT(socket_listen, selinux_socket_listen),
7176 LSM_HOOK_INIT(socket_accept, selinux_socket_accept),
7177 LSM_HOOK_INIT(socket_sendmsg, selinux_socket_sendmsg),
7178 LSM_HOOK_INIT(socket_recvmsg, selinux_socket_recvmsg),
7179 LSM_HOOK_INIT(socket_getsockname, selinux_socket_getsockname),
7180 LSM_HOOK_INIT(socket_getpeername, selinux_socket_getpeername),
7181 LSM_HOOK_INIT(socket_getsockopt, selinux_socket_getsockopt),
7182 LSM_HOOK_INIT(socket_setsockopt, selinux_socket_setsockopt),
7183 LSM_HOOK_INIT(socket_shutdown, selinux_socket_shutdown),
7184 LSM_HOOK_INIT(socket_sock_rcv_skb, selinux_socket_sock_rcv_skb),
7185 LSM_HOOK_INIT(socket_getpeersec_stream,
7186 selinux_socket_getpeersec_stream),
7187 LSM_HOOK_INIT(socket_getpeersec_dgram, selinux_socket_getpeersec_dgram),
Casey Schauflere20b0432015-05-02 15:11:36 -07007188 LSM_HOOK_INIT(sk_free_security, selinux_sk_free_security),
7189 LSM_HOOK_INIT(sk_clone_security, selinux_sk_clone_security),
7190 LSM_HOOK_INIT(sk_getsecid, selinux_sk_getsecid),
7191 LSM_HOOK_INIT(sock_graft, selinux_sock_graft),
Richard Hainesd4529302018-02-13 20:57:18 +00007192 LSM_HOOK_INIT(sctp_assoc_request, selinux_sctp_assoc_request),
7193 LSM_HOOK_INIT(sctp_sk_clone, selinux_sctp_sk_clone),
7194 LSM_HOOK_INIT(sctp_bind_connect, selinux_sctp_bind_connect),
Casey Schauflere20b0432015-05-02 15:11:36 -07007195 LSM_HOOK_INIT(inet_conn_request, selinux_inet_conn_request),
7196 LSM_HOOK_INIT(inet_csk_clone, selinux_inet_csk_clone),
7197 LSM_HOOK_INIT(inet_conn_established, selinux_inet_conn_established),
7198 LSM_HOOK_INIT(secmark_relabel_packet, selinux_secmark_relabel_packet),
7199 LSM_HOOK_INIT(secmark_refcount_inc, selinux_secmark_refcount_inc),
7200 LSM_HOOK_INIT(secmark_refcount_dec, selinux_secmark_refcount_dec),
7201 LSM_HOOK_INIT(req_classify_flow, selinux_req_classify_flow),
Casey Schauflere20b0432015-05-02 15:11:36 -07007202 LSM_HOOK_INIT(tun_dev_free_security, selinux_tun_dev_free_security),
7203 LSM_HOOK_INIT(tun_dev_create, selinux_tun_dev_create),
7204 LSM_HOOK_INIT(tun_dev_attach_queue, selinux_tun_dev_attach_queue),
7205 LSM_HOOK_INIT(tun_dev_attach, selinux_tun_dev_attach),
7206 LSM_HOOK_INIT(tun_dev_open, selinux_tun_dev_open),
Daniel Jurgens3a976fa2017-05-19 15:48:56 +03007207#ifdef CONFIG_SECURITY_INFINIBAND
Daniel Jurgenscfc4d882017-05-19 15:48:57 +03007208 LSM_HOOK_INIT(ib_pkey_access, selinux_ib_pkey_access),
Daniel Jurgensab861df2017-05-19 15:48:58 +03007209 LSM_HOOK_INIT(ib_endport_manage_subnet,
7210 selinux_ib_endport_manage_subnet),
Daniel Jurgens3a976fa2017-05-19 15:48:56 +03007211 LSM_HOOK_INIT(ib_free_security, selinux_ib_free_security),
7212#endif
Trent Jaegerd28d1e02005-12-13 23:12:40 -08007213#ifdef CONFIG_SECURITY_NETWORK_XFRM
Casey Schauflere20b0432015-05-02 15:11:36 -07007214 LSM_HOOK_INIT(xfrm_policy_free_security, selinux_xfrm_policy_free),
7215 LSM_HOOK_INIT(xfrm_policy_delete_security, selinux_xfrm_policy_delete),
Casey Schauflere20b0432015-05-02 15:11:36 -07007216 LSM_HOOK_INIT(xfrm_state_free_security, selinux_xfrm_state_free),
7217 LSM_HOOK_INIT(xfrm_state_delete_security, selinux_xfrm_state_delete),
7218 LSM_HOOK_INIT(xfrm_policy_lookup, selinux_xfrm_policy_lookup),
7219 LSM_HOOK_INIT(xfrm_state_pol_flow_match,
7220 selinux_xfrm_state_pol_flow_match),
7221 LSM_HOOK_INIT(xfrm_decode_session, selinux_xfrm_decode_session),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007222#endif
Michael LeMayd7200242006-06-22 14:47:17 -07007223
7224#ifdef CONFIG_KEYS
Casey Schauflere20b0432015-05-02 15:11:36 -07007225 LSM_HOOK_INIT(key_free, selinux_key_free),
7226 LSM_HOOK_INIT(key_permission, selinux_key_permission),
7227 LSM_HOOK_INIT(key_getsecurity, selinux_key_getsecurity),
David Howells3e412cc2020-01-14 17:07:13 +00007228#ifdef CONFIG_KEY_NOTIFICATIONS
7229 LSM_HOOK_INIT(watch_key, selinux_watch_key),
7230#endif
Michael LeMayd7200242006-06-22 14:47:17 -07007231#endif
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02007232
7233#ifdef CONFIG_AUDIT
Casey Schauflere20b0432015-05-02 15:11:36 -07007234 LSM_HOOK_INIT(audit_rule_known, selinux_audit_rule_known),
7235 LSM_HOOK_INIT(audit_rule_match, selinux_audit_rule_match),
7236 LSM_HOOK_INIT(audit_rule_free, selinux_audit_rule_free),
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02007237#endif
Chenbo Fengec27c352017-10-18 13:00:25 -07007238
7239#ifdef CONFIG_BPF_SYSCALL
7240 LSM_HOOK_INIT(bpf, selinux_bpf),
7241 LSM_HOOK_INIT(bpf_map, selinux_bpf_map),
7242 LSM_HOOK_INIT(bpf_prog, selinux_bpf_prog),
Chenbo Fengec27c352017-10-18 13:00:25 -07007243 LSM_HOOK_INIT(bpf_map_free_security, selinux_bpf_map_free),
7244 LSM_HOOK_INIT(bpf_prog_free_security, selinux_bpf_prog_free),
7245#endif
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04007246
7247#ifdef CONFIG_PERF_EVENTS
7248 LSM_HOOK_INIT(perf_event_open, selinux_perf_event_open),
Joel Fernandes (Google)da97e182019-10-14 13:03:08 -04007249 LSM_HOOK_INIT(perf_event_free, selinux_perf_event_free),
7250 LSM_HOOK_INIT(perf_event_read, selinux_perf_event_read),
7251 LSM_HOOK_INIT(perf_event_write, selinux_perf_event_write),
7252#endif
Stephen Smalley59438b462019-11-27 12:04:36 -05007253
Paul Moore740b0342021-02-23 18:16:45 -05007254#ifdef CONFIG_IO_URING
7255 LSM_HOOK_INIT(uring_override_creds, selinux_uring_override_creds),
7256 LSM_HOOK_INIT(uring_sqpoll, selinux_uring_sqpoll),
7257#endif
Ondrej Mosnacekcfff75d2020-01-08 15:09:58 +01007258
7259 /*
7260 * PUT "CLONING" (ACCESSING + ALLOCATING) HOOKS HERE
7261 */
7262 LSM_HOOK_INIT(fs_context_dup, selinux_fs_context_dup),
7263 LSM_HOOK_INIT(fs_context_parse_param, selinux_fs_context_parse_param),
7264 LSM_HOOK_INIT(sb_eat_lsm_opts, selinux_sb_eat_lsm_opts),
Ondrej Mosnacekcfff75d2020-01-08 15:09:58 +01007265#ifdef CONFIG_SECURITY_NETWORK_XFRM
7266 LSM_HOOK_INIT(xfrm_policy_clone_security, selinux_xfrm_policy_clone),
7267#endif
7268
7269 /*
7270 * PUT "ALLOCATING" HOOKS HERE
7271 */
7272 LSM_HOOK_INIT(msg_msg_alloc_security, selinux_msg_msg_alloc_security),
7273 LSM_HOOK_INIT(msg_queue_alloc_security,
7274 selinux_msg_queue_alloc_security),
7275 LSM_HOOK_INIT(shm_alloc_security, selinux_shm_alloc_security),
7276 LSM_HOOK_INIT(sb_alloc_security, selinux_sb_alloc_security),
7277 LSM_HOOK_INIT(inode_alloc_security, selinux_inode_alloc_security),
7278 LSM_HOOK_INIT(sem_alloc_security, selinux_sem_alloc_security),
7279 LSM_HOOK_INIT(secid_to_secctx, selinux_secid_to_secctx),
7280 LSM_HOOK_INIT(inode_getsecctx, selinux_inode_getsecctx),
7281 LSM_HOOK_INIT(sk_alloc_security, selinux_sk_alloc_security),
7282 LSM_HOOK_INIT(tun_dev_alloc_security, selinux_tun_dev_alloc_security),
7283#ifdef CONFIG_SECURITY_INFINIBAND
7284 LSM_HOOK_INIT(ib_alloc_security, selinux_ib_alloc_security),
7285#endif
7286#ifdef CONFIG_SECURITY_NETWORK_XFRM
7287 LSM_HOOK_INIT(xfrm_policy_alloc_security, selinux_xfrm_policy_alloc),
7288 LSM_HOOK_INIT(xfrm_state_alloc, selinux_xfrm_state_alloc),
7289 LSM_HOOK_INIT(xfrm_state_alloc_acquire,
7290 selinux_xfrm_state_alloc_acquire),
7291#endif
7292#ifdef CONFIG_KEYS
7293 LSM_HOOK_INIT(key_alloc, selinux_key_alloc),
7294#endif
7295#ifdef CONFIG_AUDIT
7296 LSM_HOOK_INIT(audit_rule_init, selinux_audit_rule_init),
7297#endif
7298#ifdef CONFIG_BPF_SYSCALL
7299 LSM_HOOK_INIT(bpf_map_alloc_security, selinux_bpf_map_alloc),
7300 LSM_HOOK_INIT(bpf_prog_alloc_security, selinux_bpf_prog_alloc),
7301#endif
7302#ifdef CONFIG_PERF_EVENTS
7303 LSM_HOOK_INIT(perf_event_alloc, selinux_perf_event_alloc),
7304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305};
7306
7307static __init int selinux_init(void)
7308{
peter enderborgc103a912018-06-12 10:09:03 +02007309 pr_info("SELinux: Initializing.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05007311 memset(&selinux_state, 0, sizeof(selinux_state));
Paul Mooree5a5ca92018-03-01 17:38:30 -05007312 enforcing_set(&selinux_state, selinux_enforcing_boot);
Lakshmi Ramasubramanian8861d0a2020-09-14 10:31:57 -07007313 checkreqprot_set(&selinux_state, selinux_checkreqprot_boot);
Stephen Smalley6b6bc622018-03-05 11:47:56 -05007314 selinux_avc_init(&selinux_state.avc);
Ondrej Mosnacek4b36cb72020-01-17 14:15:14 +01007315 mutex_init(&selinux_state.status_lock);
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04007316 mutex_init(&selinux_state.policy_mutex);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05007317
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318 /* Set the security state for the initial task. */
David Howellsd84f4f92008-11-14 10:39:23 +11007319 cred_init_security();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320
Stephen Smalleyfcaaade2010-04-28 15:57:57 -04007321 default_noexec = !(VM_DATA_DEFAULT_FLAGS & VM_EXEC);
7322
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323 avc_init();
7324
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05007325 avtab_cache_init();
7326
7327 ebitmap_cache_init();
7328
7329 hashtab_cache_init();
7330
Casey Schauflerd69dece52017-01-18 17:09:05 -08007331 security_add_hooks(selinux_hooks, ARRAY_SIZE(selinux_hooks), "selinux");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332
Paul Moore615e51f2014-06-26 14:33:56 -04007333 if (avc_add_callback(selinux_netcache_avc_callback, AVC_CALLBACK_RESET))
7334 panic("SELinux: Unable to register AVC netcache callback\n");
7335
Daniel Jurgens8f408ab2017-05-19 15:48:53 +03007336 if (avc_add_callback(selinux_lsm_notifier_avc_callback, AVC_CALLBACK_RESET))
7337 panic("SELinux: Unable to register AVC LSM notifier callback\n");
7338
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05007339 if (selinux_enforcing_boot)
peter enderborgc103a912018-06-12 10:09:03 +02007340 pr_debug("SELinux: Starting in enforcing mode\n");
Eric Paris828dfe12008-04-17 13:17:49 -04007341 else
peter enderborgc103a912018-06-12 10:09:03 +02007342 pr_debug("SELinux: Starting in permissive mode\n");
Michael LeMayd7200242006-06-22 14:47:17 -07007343
Al Virod7167b12019-09-07 07:23:15 -04007344 fs_validate_description("selinux", selinux_fs_parameters);
David Howells442155c2018-11-01 23:07:24 +00007345
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346 return 0;
7347}
7348
Al Viroe8c26252010-03-23 06:36:54 -04007349static void delayed_superblock_init(struct super_block *sb, void *unused)
7350{
Al Viro204cc0c2018-12-13 13:41:47 -05007351 selinux_set_mnt_opts(sb, NULL, 0, NULL);
Al Viroe8c26252010-03-23 06:36:54 -04007352}
7353
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354void selinux_complete_init(void)
7355{
peter enderborgc103a912018-06-12 10:09:03 +02007356 pr_debug("SELinux: Completing initialization.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357
7358 /* Set up any superblocks initialized prior to the policy load. */
peter enderborgc103a912018-06-12 10:09:03 +02007359 pr_debug("SELinux: Setting up existing superblocks.\n");
Al Viroe8c26252010-03-23 06:36:54 -04007360 iterate_supers(delayed_superblock_init, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361}
7362
7363/* SELinux requires early initialization in order to label
7364 all processes and objects when they are created. */
Kees Cook3d6e5f62018-10-10 17:18:23 -07007365DEFINE_LSM(selinux) = {
Kees Cook07aed2f2018-10-10 17:18:24 -07007366 .name = "selinux",
Kees Cook14bd99c2018-09-19 19:57:06 -07007367 .flags = LSM_FLAG_LEGACY_MAJOR | LSM_FLAG_EXCLUSIVE,
Stephen Smalley6c5a6822019-12-17 09:15:10 -05007368 .enabled = &selinux_enabled_boot,
Casey Schauflerbbd36622018-11-12 09:30:56 -08007369 .blobs = &selinux_blob_sizes,
Kees Cook3d6e5f62018-10-10 17:18:23 -07007370 .init = selinux_init,
7371};
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08007373#if defined(CONFIG_NETFILTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374
Florian Westphal591bb272017-07-26 11:40:52 +02007375static const struct nf_hook_ops selinux_nf_ops[] = {
Paul Mooreeffad8d2008-01-29 08:49:27 -05007376 {
Florian Westphal4342f702021-10-11 22:22:29 +02007377 .hook = selinux_ip_postroute,
Alban Crequy2597a832012-05-14 03:56:39 +00007378 .pf = NFPROTO_IPV4,
Paul Mooreeffad8d2008-01-29 08:49:27 -05007379 .hooknum = NF_INET_POST_ROUTING,
7380 .priority = NF_IP_PRI_SELINUX_LAST,
7381 },
7382 {
Florian Westphal4342f702021-10-11 22:22:29 +02007383 .hook = selinux_ip_forward,
Alban Crequy2597a832012-05-14 03:56:39 +00007384 .pf = NFPROTO_IPV4,
Paul Mooreeffad8d2008-01-29 08:49:27 -05007385 .hooknum = NF_INET_FORWARD,
7386 .priority = NF_IP_PRI_SELINUX_FIRST,
Paul Moore948bf852008-10-10 10:16:32 -04007387 },
7388 {
Florian Westphal4342f702021-10-11 22:22:29 +02007389 .hook = selinux_ip_output,
Alban Crequy2597a832012-05-14 03:56:39 +00007390 .pf = NFPROTO_IPV4,
Paul Moore948bf852008-10-10 10:16:32 -04007391 .hooknum = NF_INET_LOCAL_OUT,
7392 .priority = NF_IP_PRI_SELINUX_FIRST,
Jiri Pirko25db6be2014-09-03 17:42:13 +02007393 },
Javier Martinez Canillas1a93a6e2016-08-08 13:08:25 -04007394#if IS_ENABLED(CONFIG_IPV6)
Paul Mooreeffad8d2008-01-29 08:49:27 -05007395 {
Florian Westphal4342f702021-10-11 22:22:29 +02007396 .hook = selinux_ip_postroute,
Alban Crequy2597a832012-05-14 03:56:39 +00007397 .pf = NFPROTO_IPV6,
Paul Mooreeffad8d2008-01-29 08:49:27 -05007398 .hooknum = NF_INET_POST_ROUTING,
7399 .priority = NF_IP6_PRI_SELINUX_LAST,
7400 },
7401 {
Florian Westphal4342f702021-10-11 22:22:29 +02007402 .hook = selinux_ip_forward,
Alban Crequy2597a832012-05-14 03:56:39 +00007403 .pf = NFPROTO_IPV6,
Paul Mooreeffad8d2008-01-29 08:49:27 -05007404 .hooknum = NF_INET_FORWARD,
7405 .priority = NF_IP6_PRI_SELINUX_FIRST,
Jiri Pirko25db6be2014-09-03 17:42:13 +02007406 },
Huw Davies2917f572016-06-27 15:06:15 -04007407 {
Florian Westphal4342f702021-10-11 22:22:29 +02007408 .hook = selinux_ip_output,
Huw Davies2917f572016-06-27 15:06:15 -04007409 .pf = NFPROTO_IPV6,
7410 .hooknum = NF_INET_LOCAL_OUT,
7411 .priority = NF_IP6_PRI_SELINUX_FIRST,
7412 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413#endif /* IPV6 */
Jiri Pirko25db6be2014-09-03 17:42:13 +02007414};
Linus Torvalds1da177e2005-04-16 15:20:36 -07007415
Florian Westphal8e71bf72017-04-21 11:49:09 +02007416static int __net_init selinux_nf_register(struct net *net)
7417{
7418 return nf_register_net_hooks(net, selinux_nf_ops,
7419 ARRAY_SIZE(selinux_nf_ops));
7420}
7421
7422static void __net_exit selinux_nf_unregister(struct net *net)
7423{
7424 nf_unregister_net_hooks(net, selinux_nf_ops,
7425 ARRAY_SIZE(selinux_nf_ops));
7426}
7427
7428static struct pernet_operations selinux_net_ops = {
7429 .init = selinux_nf_register,
7430 .exit = selinux_nf_unregister,
7431};
7432
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433static int __init selinux_nf_ip_init(void)
7434{
Jiri Pirko25db6be2014-09-03 17:42:13 +02007435 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436
Stephen Smalley6c5a6822019-12-17 09:15:10 -05007437 if (!selinux_enabled_boot)
Jiri Pirko25db6be2014-09-03 17:42:13 +02007438 return 0;
Eric Parisfadcdb42007-02-22 18:11:31 -05007439
peter enderborgc103a912018-06-12 10:09:03 +02007440 pr_debug("SELinux: Registering netfilter hooks\n");
Eric Parisfadcdb42007-02-22 18:11:31 -05007441
Florian Westphal8e71bf72017-04-21 11:49:09 +02007442 err = register_pernet_subsys(&selinux_net_ops);
Alexey Dobriyan6c5a9d22008-07-26 17:48:15 -07007443 if (err)
Florian Westphal8e71bf72017-04-21 11:49:09 +02007444 panic("SELinux: register_pernet_subsys: error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445
Jiri Pirko25db6be2014-09-03 17:42:13 +02007446 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448__initcall(selinux_nf_ip_init);
7449
7450#ifdef CONFIG_SECURITY_SELINUX_DISABLE
7451static void selinux_nf_ip_exit(void)
7452{
peter enderborgc103a912018-06-12 10:09:03 +02007453 pr_debug("SELinux: Unregistering netfilter hooks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454
Florian Westphal8e71bf72017-04-21 11:49:09 +02007455 unregister_pernet_subsys(&selinux_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456}
7457#endif
7458
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08007459#else /* CONFIG_NETFILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460
7461#ifdef CONFIG_SECURITY_SELINUX_DISABLE
7462#define selinux_nf_ip_exit()
7463#endif
7464
Stephen Smalleyc2b507f2006-02-04 23:27:50 -08007465#endif /* CONFIG_NETFILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466
7467#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05007468int selinux_disable(struct selinux_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007469{
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +01007470 if (selinux_initialized(state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471 /* Not permitted after initial policy load. */
7472 return -EINVAL;
7473 }
7474
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +01007475 if (selinux_disabled(state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476 /* Only do this once. */
7477 return -EINVAL;
7478 }
7479
Ondrej Mosnacek65cddd52020-01-07 14:31:53 +01007480 selinux_mark_disabled(state);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05007481
peter enderborgc103a912018-06-12 10:09:03 +02007482 pr_info("SELinux: Disabled at runtime.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483
Ondrej Mosnacekcfff75d2020-01-08 15:09:58 +01007484 /*
7485 * Unregister netfilter hooks.
7486 * Must be done before security_delete_hooks() to avoid breaking
7487 * runtime disable.
7488 */
7489 selinux_nf_ip_exit();
7490
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07007491 security_delete_hooks(selinux_hooks, ARRAY_SIZE(selinux_hooks));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492
Eric Parisaf8ff042009-09-20 21:23:01 -04007493 /* Try to destroy the avc node cache */
7494 avc_disable();
7495
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496 /* Unregister selinuxfs. */
7497 exit_sel_fs();
7498
7499 return 0;
7500}
7501#endif