blob: 45e9efa9bf5bf5e74411388fd45ebc00ff228555 [file] [log] [blame]
Thomas Gleixnera10e7632019-05-31 01:09:32 -07001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* Updated: Karl MacMillan <kmacmillan@tresys.com>
3 *
Eric Paris18729812008-04-17 14:15:45 -04004 * Added conditional policy language extensions
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Paul Moore82c21bf2011-08-01 11:10:33 +00006 * Updated: Hewlett-Packard <paul@paul-moore.com>
Paul Moore3bb56b22008-01-29 08:38:19 -05007 *
Eric Paris18729812008-04-17 14:15:45 -04008 * Added support for the policy capability bitmap
Paul Moore3bb56b22008-01-29 08:38:19 -05009 *
10 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
12 * Copyright (C) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/pagemap.h>
17#include <linux/slab.h>
18#include <linux/vmalloc.h>
19#include <linux/fs.h>
David Howells920f50b2019-03-25 16:38:30 +000020#include <linux/fs_context.h>
Stephen Smalley0619f0f2018-03-20 11:59:11 -040021#include <linux/mount.h>
Ingo Molnarbb0030792006-03-22 00:09:14 -080022#include <linux/mutex.h>
Daniel Burgener0eea6092020-08-19 15:59:35 -040023#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/string.h>
26#include <linux/security.h>
27#include <linux/major.h>
28#include <linux/seq_file.h>
29#include <linux/percpu.h>
Steve Grubbaf601e42006-01-04 14:08:39 +000030#include <linux/audit.h>
Eric Parisf5269712008-05-14 11:27:45 -040031#include <linux/uaccess.h>
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -070032#include <linux/kobject.h>
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -040033#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/* selinuxfs pseudo filesystem for exporting the security policy API.
36 Based on the proc code and the fs/nfsd/nfsctl.c code. */
37
38#include "flask.h"
39#include "avc.h"
40#include "avc_ss.h"
41#include "security.h"
42#include "objsec.h"
43#include "conditional.h"
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045enum sel_inos {
46 SEL_ROOT_INO = 2,
47 SEL_LOAD, /* load policy */
48 SEL_ENFORCE, /* get or set enforcing status */
49 SEL_CONTEXT, /* validate context */
50 SEL_ACCESS, /* compute access decision */
51 SEL_CREATE, /* compute create labeling decision */
52 SEL_RELABEL, /* compute relabeling decision */
53 SEL_USER, /* compute reachable user contexts */
54 SEL_POLICYVERS, /* return policy version for this kernel */
55 SEL_COMMIT_BOOLS, /* commit new boolean values */
56 SEL_MLS, /* return if MLS policy is enabled */
57 SEL_DISABLE, /* disable SELinux until next reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 SEL_MEMBER, /* compute polyinstantiation membership decision */
59 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
James Morris4e5ab4c2006-06-09 00:33:33 -070060 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
Eric Paris3f120702007-09-21 14:37:10 -040061 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
62 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
KaiGai Kohei11904162010-09-14 18:28:39 +090063 SEL_STATUS, /* export current status using mmap() */
Eric Pariscee74f42010-10-13 17:50:25 -040064 SEL_POLICY, /* allow userspace to read the in kernel policy */
Andrew Perepechkof9df6452015-12-24 11:09:41 -050065 SEL_VALIDATE_TRANS, /* compute validatetrans decision */
James Carter6174eaf2007-04-04 16:18:39 -040066 SEL_INO_NEXT, /* The next inode number to use */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Stephen Smalley0619f0f2018-03-20 11:59:11 -040069struct selinux_fs_info {
70 struct dentry *bool_dir;
71 unsigned int bool_num;
72 char **bool_pending_names;
73 unsigned int *bool_pending_values;
74 struct dentry *class_dir;
75 unsigned long last_class_ino;
76 bool policy_opened;
77 struct dentry *policycap_dir;
Stephen Smalley0619f0f2018-03-20 11:59:11 -040078 unsigned long last_ino;
79 struct selinux_state *state;
80 struct super_block *sb;
81};
82
83static int selinux_fs_info_create(struct super_block *sb)
84{
85 struct selinux_fs_info *fsi;
86
87 fsi = kzalloc(sizeof(*fsi), GFP_KERNEL);
88 if (!fsi)
89 return -ENOMEM;
90
Stephen Smalley0619f0f2018-03-20 11:59:11 -040091 fsi->last_ino = SEL_INO_NEXT - 1;
92 fsi->state = &selinux_state;
93 fsi->sb = sb;
94 sb->s_fs_info = fsi;
95 return 0;
96}
97
98static void selinux_fs_info_free(struct super_block *sb)
99{
100 struct selinux_fs_info *fsi = sb->s_fs_info;
101 int i;
102
103 if (fsi) {
104 for (i = 0; i < fsi->bool_num; i++)
105 kfree(fsi->bool_pending_names[i]);
106 kfree(fsi->bool_pending_names);
107 kfree(fsi->bool_pending_values);
108 }
109 kfree(sb->s_fs_info);
110 sb->s_fs_info = NULL;
111}
James Carter6174eaf2007-04-04 16:18:39 -0400112
Paul Moore3bb56b22008-01-29 08:38:19 -0500113#define SEL_INITCON_INO_OFFSET 0x01000000
114#define SEL_BOOL_INO_OFFSET 0x02000000
115#define SEL_CLASS_INO_OFFSET 0x04000000
116#define SEL_POLICYCAP_INO_OFFSET 0x08000000
117#define SEL_INO_MASK 0x00ffffff
James Carterf0ee2e42007-04-04 10:11:29 -0400118
Daniel Burgener613ba182020-08-19 15:59:34 -0400119#define BOOL_DIR_NAME "booleans"
120#define CLASS_DIR_NAME "class"
121#define POLICYCAP_DIR_NAME "policy_capabilities"
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define TMPBUFLEN 12
124static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
125 size_t count, loff_t *ppos)
126{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400127 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 char tmpbuf[TMPBUFLEN];
129 ssize_t length;
130
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500131 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400132 enforcing_enabled(fsi->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
134}
135
136#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Eric Paris18729812008-04-17 14:15:45 -0400137static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 size_t count, loff_t *ppos)
139
140{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400141 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
142 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500143 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 ssize_t length;
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500145 int old_value, new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Davi Arnautbfd51622005-10-30 14:59:24 -0800147 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500148 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500149
150 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500151 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500152 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500153
Al Viro8365a712015-12-24 00:08:06 -0500154 page = memdup_user_nul(buf, count);
155 if (IS_ERR(page))
156 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 length = -EINVAL;
159 if (sscanf(page, "%d", &new_value) != 1)
160 goto out;
161
Stephen Smalleyea49d10ee2016-11-18 09:30:38 -0500162 new_value = !!new_value;
163
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400164 old_value = enforcing_enabled(state);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500165 if (new_value != old_value) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500166 length = avc_has_perm(&selinux_state,
167 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500168 SECCLASS_SECURITY, SECURITY__SETENFORCE,
169 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (length)
171 goto out;
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -0400172 audit_log(audit_context(), GFP_KERNEL, AUDIT_MAC_STATUS,
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400173 "enforcing=%d old_enforcing=%d auid=%u ses=%u"
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500174 " enabled=1 old-enabled=1 lsm=selinux res=1",
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500175 new_value, old_value,
Eric W. Biederman581abc02012-08-20 00:09:36 -0700176 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500177 audit_get_sessionid(current));
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400178 enforcing_set(state, new_value);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500179 if (new_value)
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500180 avc_ss_reset(state->avc, 0);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500181 selnl_notify_setenforce(new_value);
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400182 selinux_status_update_setenforce(state, new_value);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500183 if (!new_value)
Janne Karhunen42df7442019-06-14 15:20:14 +0300184 call_blocking_lsm_notifier(LSM_POLICY_CHANGE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 length = count;
187out:
Al Viro8365a712015-12-24 00:08:06 -0500188 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return length;
190}
191#else
192#define sel_write_enforce NULL
193#endif
194
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800195static const struct file_operations sel_enforce_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 .read = sel_read_enforce,
197 .write = sel_write_enforce,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200198 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199};
200
Eric Paris3f120702007-09-21 14:37:10 -0400201static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
202 size_t count, loff_t *ppos)
203{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400204 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
205 struct selinux_state *state = fsi->state;
Eric Paris3f120702007-09-21 14:37:10 -0400206 char tmpbuf[TMPBUFLEN];
207 ssize_t length;
Al Viro496ad9a2013-01-23 17:07:38 -0500208 ino_t ino = file_inode(filp)->i_ino;
Eric Paris3f120702007-09-21 14:37:10 -0400209 int handle_unknown = (ino == SEL_REJECT_UNKNOWN) ?
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400210 security_get_reject_unknown(state) :
211 !security_get_allow_unknown(state);
Eric Paris3f120702007-09-21 14:37:10 -0400212
213 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
214 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
215}
216
217static const struct file_operations sel_handle_unknown_ops = {
218 .read = sel_read_handle_unknown,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200219 .llseek = generic_file_llseek,
Eric Paris3f120702007-09-21 14:37:10 -0400220};
221
KaiGai Kohei11904162010-09-14 18:28:39 +0900222static int sel_open_handle_status(struct inode *inode, struct file *filp)
223{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400224 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
225 struct page *status = selinux_kernel_status_page(fsi->state);
KaiGai Kohei11904162010-09-14 18:28:39 +0900226
227 if (!status)
228 return -ENOMEM;
229
230 filp->private_data = status;
231
232 return 0;
233}
234
235static ssize_t sel_read_handle_status(struct file *filp, char __user *buf,
236 size_t count, loff_t *ppos)
237{
238 struct page *status = filp->private_data;
239
240 BUG_ON(!status);
241
242 return simple_read_from_buffer(buf, count, ppos,
243 page_address(status),
244 sizeof(struct selinux_kernel_status));
245}
246
247static int sel_mmap_handle_status(struct file *filp,
248 struct vm_area_struct *vma)
249{
250 struct page *status = filp->private_data;
251 unsigned long size = vma->vm_end - vma->vm_start;
252
253 BUG_ON(!status);
254
255 /* only allows one page from the head */
256 if (vma->vm_pgoff > 0 || size != PAGE_SIZE)
257 return -EIO;
258 /* disallow writable mapping */
259 if (vma->vm_flags & VM_WRITE)
260 return -EPERM;
261 /* disallow mprotect() turns it into writable */
262 vma->vm_flags &= ~VM_MAYWRITE;
263
264 return remap_pfn_range(vma, vma->vm_start,
265 page_to_pfn(status),
266 size, vma->vm_page_prot);
267}
268
269static const struct file_operations sel_handle_status_ops = {
270 .open = sel_open_handle_status,
271 .read = sel_read_handle_status,
272 .mmap = sel_mmap_handle_status,
273 .llseek = generic_file_llseek,
274};
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Eric Paris18729812008-04-17 14:15:45 -0400277static ssize_t sel_write_disable(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 size_t count, loff_t *ppos)
279
280{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400281 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Al Viro8365a712015-12-24 00:08:06 -0500282 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 ssize_t length;
284 int new_value;
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400285 int enforcing;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Paul Moore89b223b2019-12-18 21:45:08 -0500287 /* NOTE: we are now officially considering runtime disable as
288 * deprecated, and using it will become increasingly painful
289 * (e.g. sleeping/blocking) as we progress through future
290 * kernel releases until eventually it is removed
291 */
292 pr_err("SELinux: Runtime disable is deprecated, use selinux=0 on the kernel cmdline.\n");
293
Davi Arnautbfd51622005-10-30 14:59:24 -0800294 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500295 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500296
297 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500298 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500299 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500300
Al Viro8365a712015-12-24 00:08:06 -0500301 page = memdup_user_nul(buf, count);
302 if (IS_ERR(page))
303 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 length = -EINVAL;
306 if (sscanf(page, "%d", &new_value) != 1)
307 goto out;
308
309 if (new_value) {
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400310 enforcing = enforcing_enabled(fsi->state);
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400311 length = selinux_disable(fsi->state);
Eric Parisb77a4932010-11-23 11:40:08 -0500312 if (length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 goto out;
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -0400314 audit_log(audit_context(), GFP_KERNEL, AUDIT_MAC_STATUS,
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400315 "enforcing=%d old_enforcing=%d auid=%u ses=%u"
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500316 " enabled=0 old-enabled=1 lsm=selinux res=1",
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400317 enforcing, enforcing,
Eric W. Biederman581abc02012-08-20 00:09:36 -0700318 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500319 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321
322 length = count;
323out:
Al Viro8365a712015-12-24 00:08:06 -0500324 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return length;
326}
327#else
328#define sel_write_disable NULL
329#endif
330
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800331static const struct file_operations sel_disable_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 .write = sel_write_disable,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200333 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334};
335
336static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
Eric Paris18729812008-04-17 14:15:45 -0400337 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 char tmpbuf[TMPBUFLEN];
340 ssize_t length;
341
342 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
343 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
344}
345
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800346static const struct file_operations sel_policyvers_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 .read = sel_read_policyvers,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200348 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
351/* declaration for sel_write_load */
Daniel Burgener66ec3842020-08-19 15:59:33 -0400352static int sel_make_bools(struct selinux_policy *newpolicy, struct dentry *bool_dir,
353 unsigned int *bool_num, char ***bool_pending_names,
354 unsigned int **bool_pending_values);
355static int sel_make_classes(struct selinux_policy *newpolicy,
356 struct dentry *class_dir,
357 unsigned long *last_class_ino);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -0400358
359/* declaration for sel_make_class_dirs */
Al Viroa1c2aa12012-03-18 20:36:59 -0400360static struct dentry *sel_make_dir(struct dentry *dir, const char *name,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -0400361 unsigned long *ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Daniel Burgener0eea6092020-08-19 15:59:35 -0400363/* declaration for sel_make_policy_nodes */
364static struct dentry *sel_make_disconnected_dir(struct super_block *sb,
365 unsigned long *ino);
366
367/* declaration for sel_make_policy_nodes */
Daniel Burgeneraeecf4a2020-08-19 15:59:32 -0400368static void sel_remove_entries(struct dentry *de);
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370static ssize_t sel_read_mls(struct file *filp, char __user *buf,
371 size_t count, loff_t *ppos)
372{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400373 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 char tmpbuf[TMPBUFLEN];
375 ssize_t length;
376
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100377 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400378 security_mls_enabled(fsi->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
380}
381
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800382static const struct file_operations sel_mls_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 .read = sel_read_mls,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200384 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
Eric Pariscee74f42010-10-13 17:50:25 -0400387struct policy_load_memory {
388 size_t len;
389 void *data;
390};
391
392static int sel_open_policy(struct inode *inode, struct file *filp)
393{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400394 struct selinux_fs_info *fsi = inode->i_sb->s_fs_info;
395 struct selinux_state *state = fsi->state;
Eric Pariscee74f42010-10-13 17:50:25 -0400396 struct policy_load_memory *plm = NULL;
397 int rc;
398
399 BUG_ON(filp->private_data);
400
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400401 mutex_lock(&fsi->state->policy_mutex);
Eric Pariscee74f42010-10-13 17:50:25 -0400402
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500403 rc = avc_has_perm(&selinux_state,
404 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500405 SECCLASS_SECURITY, SECURITY__READ_POLICY, NULL);
Eric Pariscee74f42010-10-13 17:50:25 -0400406 if (rc)
407 goto err;
408
409 rc = -EBUSY;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400410 if (fsi->policy_opened)
Eric Pariscee74f42010-10-13 17:50:25 -0400411 goto err;
412
413 rc = -ENOMEM;
414 plm = kzalloc(sizeof(*plm), GFP_KERNEL);
415 if (!plm)
416 goto err;
417
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400418 rc = security_read_policy(state, &plm->data, &plm->len);
Eric Pariscee74f42010-10-13 17:50:25 -0400419 if (rc)
420 goto err;
421
Ondrej Mosnacek66ccd252020-08-27 18:27:53 +0200422 if ((size_t)i_size_read(inode) != plm->len) {
423 inode_lock(inode);
424 i_size_write(inode, plm->len);
425 inode_unlock(inode);
426 }
427
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400428 fsi->policy_opened = 1;
Eric Pariscee74f42010-10-13 17:50:25 -0400429
430 filp->private_data = plm;
431
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400432 mutex_unlock(&fsi->state->policy_mutex);
Eric Pariscee74f42010-10-13 17:50:25 -0400433
434 return 0;
435err:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400436 mutex_unlock(&fsi->state->policy_mutex);
Eric Pariscee74f42010-10-13 17:50:25 -0400437
438 if (plm)
439 vfree(plm->data);
440 kfree(plm);
441 return rc;
442}
443
444static int sel_release_policy(struct inode *inode, struct file *filp)
445{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400446 struct selinux_fs_info *fsi = inode->i_sb->s_fs_info;
Eric Pariscee74f42010-10-13 17:50:25 -0400447 struct policy_load_memory *plm = filp->private_data;
448
449 BUG_ON(!plm);
450
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400451 fsi->policy_opened = 0;
Eric Pariscee74f42010-10-13 17:50:25 -0400452
453 vfree(plm->data);
454 kfree(plm);
455
456 return 0;
457}
458
459static ssize_t sel_read_policy(struct file *filp, char __user *buf,
460 size_t count, loff_t *ppos)
461{
462 struct policy_load_memory *plm = filp->private_data;
463 int ret;
464
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500465 ret = avc_has_perm(&selinux_state,
466 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500467 SECCLASS_SECURITY, SECURITY__READ_POLICY, NULL);
Eric Pariscee74f42010-10-13 17:50:25 -0400468 if (ret)
Jann Horn0da74122018-06-28 20:39:54 -0400469 return ret;
Eric Pariscee74f42010-10-13 17:50:25 -0400470
Jann Horn0da74122018-06-28 20:39:54 -0400471 return simple_read_from_buffer(buf, count, ppos, plm->data, plm->len);
Eric Pariscee74f42010-10-13 17:50:25 -0400472}
473
Souptick Joarderac9a1f62018-04-14 21:02:41 +0530474static vm_fault_t sel_mmap_policy_fault(struct vm_fault *vmf)
Eric Paris845ca302010-10-13 17:50:31 -0400475{
Dave Jiang11bac802017-02-24 14:56:41 -0800476 struct policy_load_memory *plm = vmf->vma->vm_file->private_data;
Eric Paris845ca302010-10-13 17:50:31 -0400477 unsigned long offset;
478 struct page *page;
479
480 if (vmf->flags & (FAULT_FLAG_MKWRITE | FAULT_FLAG_WRITE))
481 return VM_FAULT_SIGBUS;
482
483 offset = vmf->pgoff << PAGE_SHIFT;
484 if (offset >= roundup(plm->len, PAGE_SIZE))
485 return VM_FAULT_SIGBUS;
486
487 page = vmalloc_to_page(plm->data + offset);
488 get_page(page);
489
490 vmf->page = page;
491
492 return 0;
493}
494
Kirill A. Shutemov7cbea8d2015-09-09 15:39:26 -0700495static const struct vm_operations_struct sel_mmap_policy_ops = {
Eric Paris845ca302010-10-13 17:50:31 -0400496 .fault = sel_mmap_policy_fault,
497 .page_mkwrite = sel_mmap_policy_fault,
498};
499
James Morrisad3fa082011-08-30 10:50:12 +1000500static int sel_mmap_policy(struct file *filp, struct vm_area_struct *vma)
Eric Paris845ca302010-10-13 17:50:31 -0400501{
502 if (vma->vm_flags & VM_SHARED) {
503 /* do not allow mprotect to make mapping writable */
504 vma->vm_flags &= ~VM_MAYWRITE;
505
506 if (vma->vm_flags & VM_WRITE)
507 return -EACCES;
508 }
509
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700510 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Eric Paris845ca302010-10-13 17:50:31 -0400511 vma->vm_ops = &sel_mmap_policy_ops;
512
513 return 0;
514}
515
Eric Pariscee74f42010-10-13 17:50:25 -0400516static const struct file_operations sel_policy_ops = {
517 .open = sel_open_policy,
518 .read = sel_read_policy,
Eric Paris845ca302010-10-13 17:50:31 -0400519 .mmap = sel_mmap_policy,
Eric Pariscee74f42010-10-13 17:50:25 -0400520 .release = sel_release_policy,
Eric Paris47a93a52012-02-16 15:08:39 -0500521 .llseek = generic_file_llseek,
Eric Pariscee74f42010-10-13 17:50:25 -0400522};
523
Daniel Burgener0eea6092020-08-19 15:59:35 -0400524static void sel_remove_old_bool_data(unsigned int bool_num, char **bool_names,
525 unsigned int *bool_values)
Daniel Burgeneraeecf4a2020-08-19 15:59:32 -0400526{
527 u32 i;
528
529 /* bool_dir cleanup */
Daniel Burgener0eea6092020-08-19 15:59:35 -0400530 for (i = 0; i < bool_num; i++)
531 kfree(bool_names[i]);
532 kfree(bool_names);
533 kfree(bool_values);
Daniel Burgeneraeecf4a2020-08-19 15:59:32 -0400534}
535
Stephen Smalley02a52c52020-08-07 09:29:34 -0400536static int sel_make_policy_nodes(struct selinux_fs_info *fsi,
537 struct selinux_policy *newpolicy)
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400538{
Daniel Burgener0eea6092020-08-19 15:59:35 -0400539 int ret = 0;
540 struct dentry *tmp_parent, *tmp_bool_dir, *tmp_class_dir, *old_dentry;
541 unsigned int tmp_bool_num, old_bool_num;
542 char **tmp_bool_names, **old_bool_names;
543 unsigned int *tmp_bool_values, *old_bool_values;
544 unsigned long tmp_ino = fsi->last_ino; /* Don't increment last_ino in this function */
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400545
Daniel Burgener0eea6092020-08-19 15:59:35 -0400546 tmp_parent = sel_make_disconnected_dir(fsi->sb, &tmp_ino);
547 if (IS_ERR(tmp_parent))
548 return PTR_ERR(tmp_parent);
Daniel Burgeneraeecf4a2020-08-19 15:59:32 -0400549
Daniel Burgener0eea6092020-08-19 15:59:35 -0400550 tmp_ino = fsi->bool_dir->d_inode->i_ino - 1; /* sel_make_dir will increment and set */
551 tmp_bool_dir = sel_make_dir(tmp_parent, BOOL_DIR_NAME, &tmp_ino);
552 if (IS_ERR(tmp_bool_dir)) {
553 ret = PTR_ERR(tmp_bool_dir);
554 goto out;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400555 }
556
Daniel Burgener0eea6092020-08-19 15:59:35 -0400557 tmp_ino = fsi->class_dir->d_inode->i_ino - 1; /* sel_make_dir will increment and set */
558 tmp_class_dir = sel_make_dir(tmp_parent, CLASS_DIR_NAME, &tmp_ino);
559 if (IS_ERR(tmp_class_dir)) {
560 ret = PTR_ERR(tmp_class_dir);
561 goto out;
562 }
563
564 ret = sel_make_bools(newpolicy, tmp_bool_dir, &tmp_bool_num,
565 &tmp_bool_names, &tmp_bool_values);
566 if (ret) {
567 pr_err("SELinux: failed to load policy booleans\n");
568 goto out;
569 }
570
571 ret = sel_make_classes(newpolicy, tmp_class_dir,
Daniel Burgener66ec3842020-08-19 15:59:33 -0400572 &fsi->last_class_ino);
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400573 if (ret) {
574 pr_err("SELinux: failed to load policy classes\n");
Daniel Burgener0eea6092020-08-19 15:59:35 -0400575 goto out;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400576 }
577
Daniel Burgener0eea6092020-08-19 15:59:35 -0400578 /* booleans */
579 old_dentry = fsi->bool_dir;
580 lock_rename(tmp_bool_dir, old_dentry);
581 d_exchange(tmp_bool_dir, fsi->bool_dir);
582
583 old_bool_num = fsi->bool_num;
584 old_bool_names = fsi->bool_pending_names;
585 old_bool_values = fsi->bool_pending_values;
586
587 fsi->bool_num = tmp_bool_num;
588 fsi->bool_pending_names = tmp_bool_names;
589 fsi->bool_pending_values = tmp_bool_values;
590
591 sel_remove_old_bool_data(old_bool_num, old_bool_names, old_bool_values);
592
593 fsi->bool_dir = tmp_bool_dir;
594 unlock_rename(tmp_bool_dir, old_dentry);
595
596 /* classes */
597 old_dentry = fsi->class_dir;
598 lock_rename(tmp_class_dir, old_dentry);
599 d_exchange(tmp_class_dir, fsi->class_dir);
600 fsi->class_dir = tmp_class_dir;
601 unlock_rename(tmp_class_dir, old_dentry);
602
603out:
604 /* Since the other temporary dirs are children of tmp_parent
605 * this will handle all the cleanup in the case of a failure before
606 * the swapover
607 */
608 sel_remove_entries(tmp_parent);
609 dput(tmp_parent); /* d_genocide() only handles the children */
610
611 return ret;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400612}
613
Eric Paris18729812008-04-17 14:15:45 -0400614static ssize_t sel_write_load(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 size_t count, loff_t *ppos)
616
617{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400618 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Stephen Smalley02a52c52020-08-07 09:29:34 -0400619 struct selinux_policy *newpolicy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 ssize_t length;
621 void *data = NULL;
622
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400623 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500625 length = avc_has_perm(&selinux_state,
626 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500627 SECCLASS_SECURITY, SECURITY__LOAD_POLICY, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (length)
629 goto out;
630
Eric Parisb77a4932010-11-23 11:40:08 -0500631 /* No partial writes. */
632 length = -EINVAL;
633 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Eric Parisb77a4932010-11-23 11:40:08 -0500636 length = -ENOMEM;
637 data = vmalloc(count);
638 if (!data)
639 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 length = -EFAULT;
642 if (copy_from_user(data, buf, count) != 0)
643 goto out;
644
Stephen Smalley02a52c52020-08-07 09:29:34 -0400645 length = security_load_policy(fsi->state, data, count, &newpolicy);
Gary Tierney4262fb52017-01-09 10:07:31 -0500646 if (length) {
647 pr_warn_ratelimited("SELinux: failed to load policy\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 goto out;
Gary Tierney4262fb52017-01-09 10:07:31 -0500649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Stephen Smalley02a52c52020-08-07 09:29:34 -0400651 length = sel_make_policy_nodes(fsi, newpolicy);
652 if (length) {
653 selinux_policy_cancel(fsi->state, newpolicy);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -0400654 goto out1;
Stephen Smalley02a52c52020-08-07 09:29:34 -0400655 }
656
657 selinux_policy_commit(fsi->state, newpolicy);
Eric Parisb77a4932010-11-23 11:40:08 -0500658
659 length = count;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -0400660
661out1:
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -0400662 audit_log(audit_context(), GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
Richard Guy Briggsd1411362018-04-09 19:36:31 -0400663 "auid=%u ses=%u lsm=selinux res=1",
Eric W. Biederman581abc02012-08-20 00:09:36 -0700664 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric Paris4746ec52008-01-08 10:06:53 -0500665 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400667 mutex_unlock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 vfree(data);
669 return length;
670}
671
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800672static const struct file_operations sel_load_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 .write = sel_write_load,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200674 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675};
676
Eric Paris18729812008-04-17 14:15:45 -0400677static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400679 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
680 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500681 char *canon = NULL;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800682 u32 sid, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 ssize_t length;
684
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500685 length = avc_has_perm(&selinux_state,
686 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500687 SECCLASS_SECURITY, SECURITY__CHECK_CONTEXT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500689 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400691 length = security_context_to_sid(state, buf, size, &sid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500692 if (length)
693 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400695 length = security_sid_to_context(state, sid, &canon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500696 if (length)
697 goto out;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800698
Eric Parisb77a4932010-11-23 11:40:08 -0500699 length = -ERANGE;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800700 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +0200701 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -0400702 "payload max\n", __func__, len);
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800703 goto out;
704 }
705
706 memcpy(buf, canon, len);
707 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708out:
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800709 kfree(canon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return length;
711}
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
714 size_t count, loff_t *ppos)
715{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400716 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 char tmpbuf[TMPBUFLEN];
718 ssize_t length;
719
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400720 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", fsi->state->checkreqprot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
722}
723
Eric Paris18729812008-04-17 14:15:45 -0400724static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 size_t count, loff_t *ppos)
726{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400727 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Al Viro8365a712015-12-24 00:08:06 -0500728 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ssize_t length;
730 unsigned int new_value;
731
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500732 length = avc_has_perm(&selinux_state,
733 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500734 SECCLASS_SECURITY, SECURITY__SETCHECKREQPROT,
735 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (length)
Al Viro8365a712015-12-24 00:08:06 -0500737 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Davi Arnautbfd51622005-10-30 14:59:24 -0800739 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500740 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500741
742 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500743 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500744 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500745
Al Viro8365a712015-12-24 00:08:06 -0500746 page = memdup_user_nul(buf, count);
747 if (IS_ERR(page))
748 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 length = -EINVAL;
751 if (sscanf(page, "%u", &new_value) != 1)
752 goto out;
753
Stephen Smalleye9c38f92020-01-08 11:24:47 -0500754 if (new_value) {
755 char comm[sizeof(current->comm)];
756
757 memcpy(comm, current->comm, sizeof(comm));
758 pr_warn_once("SELinux: %s (%d) set checkreqprot to 1. This is deprecated and will be rejected in a future kernel release.\n",
759 comm, current->pid);
760 }
761
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400762 fsi->state->checkreqprot = new_value ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 length = count;
764out:
Al Viro8365a712015-12-24 00:08:06 -0500765 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return length;
767}
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800768static const struct file_operations sel_checkreqprot_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 .read = sel_read_checkreqprot,
770 .write = sel_write_checkreqprot,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200771 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772};
773
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500774static ssize_t sel_write_validatetrans(struct file *file,
775 const char __user *buf,
776 size_t count, loff_t *ppos)
777{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400778 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
779 struct selinux_state *state = fsi->state;
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500780 char *oldcon = NULL, *newcon = NULL, *taskcon = NULL;
781 char *req = NULL;
782 u32 osid, nsid, tsid;
783 u16 tclass;
784 int rc;
785
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500786 rc = avc_has_perm(&selinux_state,
787 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500788 SECCLASS_SECURITY, SECURITY__VALIDATE_TRANS, NULL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500789 if (rc)
790 goto out;
791
792 rc = -ENOMEM;
793 if (count >= PAGE_SIZE)
794 goto out;
795
796 /* No partial writes. */
797 rc = -EINVAL;
798 if (*ppos != 0)
799 goto out;
800
Al Viro0b884d22017-05-13 18:12:07 -0400801 req = memdup_user_nul(buf, count);
802 if (IS_ERR(req)) {
803 rc = PTR_ERR(req);
804 req = NULL;
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500805 goto out;
Al Viro0b884d22017-05-13 18:12:07 -0400806 }
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500807
808 rc = -ENOMEM;
809 oldcon = kzalloc(count + 1, GFP_KERNEL);
810 if (!oldcon)
811 goto out;
812
813 newcon = kzalloc(count + 1, GFP_KERNEL);
814 if (!newcon)
815 goto out;
816
817 taskcon = kzalloc(count + 1, GFP_KERNEL);
818 if (!taskcon)
819 goto out;
820
821 rc = -EINVAL;
822 if (sscanf(req, "%s %s %hu %s", oldcon, newcon, &tclass, taskcon) != 4)
823 goto out;
824
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400825 rc = security_context_str_to_sid(state, oldcon, &osid, GFP_KERNEL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500826 if (rc)
827 goto out;
828
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400829 rc = security_context_str_to_sid(state, newcon, &nsid, GFP_KERNEL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500830 if (rc)
831 goto out;
832
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400833 rc = security_context_str_to_sid(state, taskcon, &tsid, GFP_KERNEL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500834 if (rc)
835 goto out;
836
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400837 rc = security_validate_transition_user(state, osid, nsid, tsid, tclass);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500838 if (!rc)
839 rc = count;
840out:
841 kfree(req);
842 kfree(oldcon);
843 kfree(newcon);
844 kfree(taskcon);
845 return rc;
846}
847
848static const struct file_operations sel_transition_ops = {
849 .write = sel_write_validatetrans,
850 .llseek = generic_file_llseek,
851};
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853/*
854 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
855 */
Eric Paris18729812008-04-17 14:15:45 -0400856static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
857static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
858static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
859static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
860static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Eric Biggers631d2b42018-07-17 10:43:56 -0700862static ssize_t (*const write_op[])(struct file *, char *, size_t) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 [SEL_ACCESS] = sel_write_access,
864 [SEL_CREATE] = sel_write_create,
865 [SEL_RELABEL] = sel_write_relabel,
866 [SEL_USER] = sel_write_user,
867 [SEL_MEMBER] = sel_write_member,
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800868 [SEL_CONTEXT] = sel_write_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869};
870
871static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
872{
Al Viro496ad9a2013-01-23 17:07:38 -0500873 ino_t ino = file_inode(file)->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 char *data;
875 ssize_t rv;
876
Nicolas Kaiser6e20a642006-01-06 00:11:22 -0800877 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return -EINVAL;
879
880 data = simple_transaction_get(file, buf, size);
881 if (IS_ERR(data))
882 return PTR_ERR(data);
883
Eric Paris18729812008-04-17 14:15:45 -0400884 rv = write_op[ino](file, data, size);
885 if (rv > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 simple_transaction_set(file, rv);
887 rv = size;
888 }
889 return rv;
890}
891
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800892static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 .write = selinux_transaction_write,
894 .read = simple_transaction_read,
895 .release = simple_transaction_release,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200896 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897};
898
899/*
900 * payload - write methods
901 * If the method has a response, the response should be put in buf,
902 * and the length returned. Otherwise return 0 or and -error.
903 */
904
Eric Paris18729812008-04-17 14:15:45 -0400905static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400907 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
908 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500909 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 u32 ssid, tsid;
911 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 struct av_decision avd;
913 ssize_t length;
914
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500915 length = avc_has_perm(&selinux_state,
916 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500917 SECCLASS_SECURITY, SECURITY__COMPUTE_AV, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500919 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800922 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500924 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Eric Parisb77a4932010-11-23 11:40:08 -0500926 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800927 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (!tcon)
929 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 length = -EINVAL;
Stephen Smalley19439d02010-01-14 17:28:10 -0500932 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500933 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400935 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500936 if (length)
937 goto out;
938
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400939 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500940 if (length)
941 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400943 security_compute_av_user(state, ssid, tsid, tclass, &avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900946 "%x %x %x %x %u %x",
Eric Parisf1c63812009-02-12 14:50:54 -0500947 avd.allowed, 0xffffffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 avd.auditallow, avd.auditdeny,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900949 avd.seqno, avd.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950out:
Eric Parisb77a4932010-11-23 11:40:08 -0500951 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 kfree(scon);
953 return length;
954}
955
Eric Paris18729812008-04-17 14:15:45 -0400956static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400958 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
959 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500960 char *scon = NULL, *tcon = NULL;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100961 char *namebuf = NULL, *objname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 u32 ssid, tsid, newsid;
963 u16 tclass;
964 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500965 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 u32 len;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100967 int nargs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500969 length = avc_has_perm(&selinux_state,
970 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500971 SECCLASS_SECURITY, SECURITY__COMPUTE_CREATE,
972 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500974 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800977 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500979 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Eric Parisb77a4932010-11-23 11:40:08 -0500981 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800982 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (!tcon)
984 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100986 length = -ENOMEM;
987 namebuf = kzalloc(size + 1, GFP_KERNEL);
988 if (!namebuf)
Eric Parisb77a4932010-11-23 11:40:08 -0500989 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100991 length = -EINVAL;
992 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
993 if (nargs < 3 || nargs > 4)
994 goto out;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400995 if (nargs == 4) {
996 /*
997 * If and when the name of new object to be queried contains
998 * either whitespace or multibyte characters, they shall be
999 * encoded based on the percentage-encoding rule.
1000 * If not encoded, the sscanf logic picks up only left-half
1001 * of the supplied name; splitted by a whitespace unexpectedly.
1002 */
1003 char *r, *w;
1004 int c1, c2;
1005
1006 r = w = namebuf;
1007 do {
1008 c1 = *r++;
1009 if (c1 == '+')
1010 c1 = ' ';
1011 else if (c1 == '%') {
Andy Shevchenkoaf7ff2c2011-11-15 15:11:41 -08001012 c1 = hex_to_bin(*r++);
1013 if (c1 < 0)
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001014 goto out;
Andy Shevchenkoaf7ff2c2011-11-15 15:11:41 -08001015 c2 = hex_to_bin(*r++);
1016 if (c2 < 0)
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001017 goto out;
1018 c1 = (c1 << 4) | c2;
1019 }
1020 *w++ = c1;
1021 } while (c1 != '\0');
1022
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001023 objname = namebuf;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001024 }
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001025
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001026 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001027 if (length)
1028 goto out;
1029
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001030 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001031 if (length)
1032 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001034 length = security_transition_sid_user(state, ssid, tsid, tclass,
1035 objname, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001036 if (length)
1037 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001039 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001040 if (length)
1041 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Eric Parisb77a4932010-11-23 11:40:08 -05001043 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +02001045 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -04001046 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001047 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049
1050 memcpy(buf, newcon, len);
1051 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052out:
Eric Parisb77a4932010-11-23 11:40:08 -05001053 kfree(newcon);
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001054 kfree(namebuf);
Eric Parisb77a4932010-11-23 11:40:08 -05001055 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 kfree(scon);
1057 return length;
1058}
1059
Eric Paris18729812008-04-17 14:15:45 -04001060static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001062 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1063 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001064 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 u32 ssid, tsid, newsid;
1066 u16 tclass;
1067 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -05001068 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 u32 len;
1070
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001071 length = avc_has_perm(&selinux_state,
1072 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001073 SECCLASS_SECURITY, SECURITY__COMPUTE_RELABEL,
1074 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -05001076 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001079 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -05001081 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Eric Parisb77a4932010-11-23 11:40:08 -05001083 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001084 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (!tcon)
1086 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 length = -EINVAL;
1089 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001090 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001092 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001093 if (length)
1094 goto out;
1095
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001096 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001097 if (length)
1098 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001100 length = security_change_sid(state, ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001101 if (length)
1102 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001104 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001105 if (length)
1106 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Eric Parisb77a4932010-11-23 11:40:08 -05001108 length = -ERANGE;
1109 if (len > SIMPLE_TRANSACTION_LIMIT)
1110 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 memcpy(buf, newcon, len);
1113 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114out:
Eric Parisb77a4932010-11-23 11:40:08 -05001115 kfree(newcon);
1116 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 kfree(scon);
1118 return length;
1119}
1120
Eric Paris18729812008-04-17 14:15:45 -04001121static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001123 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1124 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001125 char *con = NULL, *user = NULL, *ptr;
1126 u32 sid, *sids = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 ssize_t length;
1128 char *newcon;
1129 int i, rc;
1130 u32 len, nsids;
1131
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001132 length = avc_has_perm(&selinux_state,
1133 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001134 SECCLASS_SECURITY, SECURITY__COMPUTE_USER,
1135 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (length)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001137 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001140 con = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (!con)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001142 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Eric Parisb77a4932010-11-23 11:40:08 -05001144 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001145 user = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (!user)
1147 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 length = -EINVAL;
1150 if (sscanf(buf, "%s %s", con, user) != 2)
Eric Parisb77a4932010-11-23 11:40:08 -05001151 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001153 length = security_context_str_to_sid(state, con, &sid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001154 if (length)
1155 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001157 length = security_get_user_sids(state, sid, user, &sids, &nsids);
Eric Parisb77a4932010-11-23 11:40:08 -05001158 if (length)
1159 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 length = sprintf(buf, "%u", nsids) + 1;
1162 ptr = buf + length;
1163 for (i = 0; i < nsids; i++) {
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001164 rc = security_sid_to_context(state, sids[i], &newcon, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (rc) {
1166 length = rc;
Eric Parisb77a4932010-11-23 11:40:08 -05001167 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
1169 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
1170 kfree(newcon);
1171 length = -ERANGE;
Eric Parisb77a4932010-11-23 11:40:08 -05001172 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 }
1174 memcpy(ptr, newcon, len);
1175 kfree(newcon);
1176 ptr += len;
1177 length += len;
1178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179out:
Eric Parisb77a4932010-11-23 11:40:08 -05001180 kfree(sids);
1181 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 kfree(con);
1183 return length;
1184}
1185
Eric Paris18729812008-04-17 14:15:45 -04001186static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001188 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1189 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001190 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 u32 ssid, tsid, newsid;
1192 u16 tclass;
1193 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -05001194 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 u32 len;
1196
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001197 length = avc_has_perm(&selinux_state,
1198 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001199 SECCLASS_SECURITY, SECURITY__COMPUTE_MEMBER,
1200 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -05001202 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001205 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (!scon)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001207 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Eric Parisb77a4932010-11-23 11:40:08 -05001209 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001210 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (!tcon)
1212 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 length = -EINVAL;
1215 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001216 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001218 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001219 if (length)
1220 goto out;
1221
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001222 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001223 if (length)
1224 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001226 length = security_member_sid(state, ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001227 if (length)
1228 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001230 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001231 if (length)
1232 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Eric Parisb77a4932010-11-23 11:40:08 -05001234 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +02001236 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -04001237 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001238 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240
1241 memcpy(buf, newcon, len);
1242 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243out:
Eric Parisb77a4932010-11-23 11:40:08 -05001244 kfree(newcon);
1245 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 kfree(scon);
1247 return length;
1248}
1249
1250static struct inode *sel_make_inode(struct super_block *sb, int mode)
1251{
1252 struct inode *ret = new_inode(sb);
1253
1254 if (ret) {
1255 ret->i_mode = mode;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001256 ret->i_atime = ret->i_mtime = ret->i_ctime = current_time(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258 return ret;
1259}
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1262 size_t count, loff_t *ppos)
1263{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001264 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 char *page = NULL;
1266 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 ssize_t ret;
1268 int cur_enforcing;
Al Viro496ad9a2013-01-23 17:07:38 -05001269 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001270 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001272 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Eric Parisb77a4932010-11-23 11:40:08 -05001274 ret = -EINVAL;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001275 if (index >= fsi->bool_num || strcmp(name,
1276 fsi->bool_pending_names[index]))
Jann Horn0da74122018-06-28 20:39:54 -04001277 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Eric Parisb77a4932010-11-23 11:40:08 -05001279 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001280 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001281 if (!page)
Jann Horn0da74122018-06-28 20:39:54 -04001282 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001284 cur_enforcing = security_get_bool_value(fsi->state, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (cur_enforcing < 0) {
1286 ret = cur_enforcing;
Jann Horn0da74122018-06-28 20:39:54 -04001287 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001290 fsi->bool_pending_values[index]);
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001291 mutex_unlock(&fsi->state->policy_mutex);
Jann Horn0da74122018-06-28 20:39:54 -04001292 ret = simple_read_from_buffer(buf, count, ppos, page, length);
1293out_free:
Eric Parisb77a4932010-11-23 11:40:08 -05001294 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return ret;
Jann Horn0da74122018-06-28 20:39:54 -04001296
1297out_unlock:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001298 mutex_unlock(&fsi->state->policy_mutex);
Jann Horn0da74122018-06-28 20:39:54 -04001299 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
1302static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1303 size_t count, loff_t *ppos)
1304{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001305 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001307 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 int new_value;
Al Viro496ad9a2013-01-23 17:07:38 -05001309 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001310 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Jann Horn0da74122018-06-28 20:39:54 -04001312 if (count >= PAGE_SIZE)
1313 return -ENOMEM;
1314
1315 /* No partial writes. */
1316 if (*ppos != 0)
1317 return -EINVAL;
1318
1319 page = memdup_user_nul(buf, count);
1320 if (IS_ERR(page))
1321 return PTR_ERR(page);
1322
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001323 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001325 length = avc_has_perm(&selinux_state,
1326 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001327 SECCLASS_SECURITY, SECURITY__SETBOOL,
1328 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (length)
1330 goto out;
1331
Eric Parisb77a4932010-11-23 11:40:08 -05001332 length = -EINVAL;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001333 if (index >= fsi->bool_num || strcmp(name,
1334 fsi->bool_pending_names[index]))
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001335 goto out;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 length = -EINVAL;
1338 if (sscanf(page, "%d", &new_value) != 1)
1339 goto out;
1340
1341 if (new_value)
1342 new_value = 1;
1343
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001344 fsi->bool_pending_values[index] = new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 length = count;
1346
1347out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001348 mutex_unlock(&fsi->state->policy_mutex);
Al Viro8365a712015-12-24 00:08:06 -05001349 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return length;
1351}
1352
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001353static const struct file_operations sel_bool_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001354 .read = sel_read_bool,
1355 .write = sel_write_bool,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001356 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357};
1358
1359static ssize_t sel_commit_bools_write(struct file *filep,
1360 const char __user *buf,
1361 size_t count, loff_t *ppos)
1362{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001363 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001365 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 int new_value;
1367
Jann Horn0da74122018-06-28 20:39:54 -04001368 if (count >= PAGE_SIZE)
1369 return -ENOMEM;
1370
1371 /* No partial writes. */
1372 if (*ppos != 0)
1373 return -EINVAL;
1374
1375 page = memdup_user_nul(buf, count);
1376 if (IS_ERR(page))
1377 return PTR_ERR(page);
1378
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001379 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001381 length = avc_has_perm(&selinux_state,
1382 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001383 SECCLASS_SECURITY, SECURITY__SETBOOL,
1384 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (length)
1386 goto out;
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 length = -EINVAL;
1389 if (sscanf(page, "%d", &new_value) != 1)
1390 goto out;
1391
Eric Parisb77a4932010-11-23 11:40:08 -05001392 length = 0;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001393 if (new_value && fsi->bool_pending_values)
1394 length = security_set_bools(fsi->state, fsi->bool_num,
1395 fsi->bool_pending_values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Eric Parisb77a4932010-11-23 11:40:08 -05001397 if (!length)
1398 length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001401 mutex_unlock(&fsi->state->policy_mutex);
Al Viro8365a712015-12-24 00:08:06 -05001402 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return length;
1404}
1405
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001406static const struct file_operations sel_commit_bools_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001407 .write = sel_commit_bools_write,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001408 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409};
1410
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001411static void sel_remove_entries(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Al Viroad521842014-12-24 14:56:48 -05001413 d_genocide(de);
1414 shrink_dcache_parent(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
Daniel Burgener66ec3842020-08-19 15:59:33 -04001417static int sel_make_bools(struct selinux_policy *newpolicy, struct dentry *bool_dir,
1418 unsigned int *bool_num, char ***bool_pending_names,
1419 unsigned int **bool_pending_values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
Ondrej Mosnacek60abd312020-02-03 12:27:20 +01001421 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 ssize_t len;
1423 struct dentry *dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 struct inode *inode = NULL;
1425 struct inode_security_struct *isec;
1426 char **names = NULL, *page;
Ondrej Mosnacek60abd312020-02-03 12:27:20 +01001427 u32 i, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 int *values = NULL;
1429 u32 sid;
1430
Eric Parisb77a4932010-11-23 11:40:08 -05001431 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001432 page = (char *)get_zeroed_page(GFP_KERNEL);
1433 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -05001434 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Stephen Smalley02a52c52020-08-07 09:29:34 -04001436 ret = security_get_bools(newpolicy, &num, &names, &values);
Eric Parisb77a4932010-11-23 11:40:08 -05001437 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 goto out;
1439
1440 for (i = 0; i < num; i++) {
Eric Parisb77a4932010-11-23 11:40:08 -05001441 ret = -ENOMEM;
Daniel Burgener66ec3842020-08-19 15:59:33 -04001442 dentry = d_alloc_name(bool_dir, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001443 if (!dentry)
1444 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Eric Parisb77a4932010-11-23 11:40:08 -05001446 ret = -ENOMEM;
Daniel Burgener66ec3842020-08-19 15:59:33 -04001447 inode = sel_make_inode(bool_dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
nixiaoming7e4237f2018-08-05 17:10:36 +08001448 if (!inode) {
1449 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001450 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001451 }
Eric Parisb77a4932010-11-23 11:40:08 -05001452
Eric Parisb77a4932010-11-23 11:40:08 -05001453 ret = -ENAMETOOLONG;
Al Virocc1dad72012-04-02 19:40:47 -04001454 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
nixiaoming7e4237f2018-08-05 17:10:36 +08001455 if (len >= PAGE_SIZE) {
1456 dput(dentry);
1457 iput(inode);
Eric Parisb77a4932010-11-23 11:40:08 -05001458 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001459 }
Eric Parisb77a4932010-11-23 11:40:08 -05001460
Casey Schaufler80788c22018-09-21 17:19:11 -07001461 isec = selinux_inode(inode);
Stephen Smalley02a52c52020-08-07 09:29:34 -04001462 ret = selinux_policy_genfs_sid(newpolicy, "selinuxfs", page,
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05001463 SECCLASS_FILE, &sid);
Gary Tierney4262fb52017-01-09 10:07:31 -05001464 if (ret) {
Gary Tierney900fde02017-01-09 10:07:32 -05001465 pr_warn_ratelimited("SELinux: no sid found, defaulting to security isid for %s\n",
1466 page);
1467 sid = SECINITSID_SECURITY;
Gary Tierney4262fb52017-01-09 10:07:31 -05001468 }
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 isec->sid = sid;
Andreas Gruenbacher42059112016-11-10 22:18:27 +01001471 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 inode->i_fop = &sel_bool_ops;
James Carterbce34bc2007-04-04 16:18:50 -04001473 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 d_add(dentry, inode);
1475 }
Daniel Burgener66ec3842020-08-19 15:59:33 -04001476 *bool_num = num;
1477 *bool_pending_names = names;
1478 *bool_pending_values = values;
Eric Parisb77a4932010-11-23 11:40:08 -05001479
1480 free_page((unsigned long)page);
1481 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482out:
1483 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (names) {
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001486 for (i = 0; i < num; i++)
1487 kfree(names[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 kfree(names);
1489 }
Davi Arnaut20c19e42005-10-23 12:57:16 -07001490 kfree(values);
Daniel Burgener66ec3842020-08-19 15:59:33 -04001491 sel_remove_entries(bool_dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001492
1493 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1497 size_t count, loff_t *ppos)
1498{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001499 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1500 struct selinux_state *state = fsi->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 char tmpbuf[TMPBUFLEN];
1502 ssize_t length;
1503
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001504 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1505 avc_get_cache_threshold(state->avc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1507}
1508
Eric Paris18729812008-04-17 14:15:45 -04001509static ssize_t sel_write_avc_cache_threshold(struct file *file,
1510 const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 size_t count, loff_t *ppos)
1512
1513{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001514 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1515 struct selinux_state *state = fsi->state;
Al Viro8365a712015-12-24 00:08:06 -05001516 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 ssize_t ret;
Heinrich Schuchardt309c5fa2016-06-10 23:14:26 +02001518 unsigned int new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001520 ret = avc_has_perm(&selinux_state,
1521 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001522 SECCLASS_SECURITY, SECURITY__SETSECPARAM,
1523 NULL);
Eric Parisb77a4932010-11-23 11:40:08 -05001524 if (ret)
Al Viro8365a712015-12-24 00:08:06 -05001525 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Eric Parisb77a4932010-11-23 11:40:08 -05001527 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -05001528 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Eric Parisb77a4932010-11-23 11:40:08 -05001530 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -05001531 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -05001532 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -05001533
Al Viro8365a712015-12-24 00:08:06 -05001534 page = memdup_user_nul(buf, count);
1535 if (IS_ERR(page))
1536 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Eric Parisb77a4932010-11-23 11:40:08 -05001538 ret = -EINVAL;
1539 if (sscanf(page, "%u", &new_value) != 1)
1540 goto out;
1541
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001542 avc_set_cache_threshold(state->avc, new_value);
Eric Parisb77a4932010-11-23 11:40:08 -05001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545out:
Al Viro8365a712015-12-24 00:08:06 -05001546 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return ret;
1548}
1549
1550static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1551 size_t count, loff_t *ppos)
1552{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001553 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1554 struct selinux_state *state = fsi->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 char *page;
Eric Parisb77a4932010-11-23 11:40:08 -05001556 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001559 if (!page)
1560 return -ENOMEM;
1561
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001562 length = avc_get_hash_stats(state->avc, page);
Eric Parisb77a4932010-11-23 11:40:08 -05001563 if (length >= 0)
1564 length = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001566
1567 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01001570static ssize_t sel_read_sidtab_hash_stats(struct file *filp, char __user *buf,
1571 size_t count, loff_t *ppos)
1572{
1573 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1574 struct selinux_state *state = fsi->state;
1575 char *page;
1576 ssize_t length;
1577
1578 page = (char *)__get_free_page(GFP_KERNEL);
1579 if (!page)
1580 return -ENOMEM;
1581
1582 length = security_sidtab_hash_stats(state, page);
1583 if (length >= 0)
1584 length = simple_read_from_buffer(buf, count, ppos, page,
1585 length);
1586 free_page((unsigned long)page);
1587
1588 return length;
1589}
1590
1591static const struct file_operations sel_sidtab_hash_stats_ops = {
1592 .read = sel_read_sidtab_hash_stats,
1593 .llseek = generic_file_llseek,
1594};
1595
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001596static const struct file_operations sel_avc_cache_threshold_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 .read = sel_read_avc_cache_threshold,
1598 .write = sel_write_avc_cache_threshold,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001599 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600};
1601
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001602static const struct file_operations sel_avc_hash_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 .read = sel_read_avc_hash_stats,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001604 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605};
1606
1607#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1608static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1609{
1610 int cpu;
1611
Rusty Russell4f4b6c12009-01-01 10:12:15 +10301612 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (!cpu_possible(cpu))
1614 continue;
1615 *idx = cpu + 1;
1616 return &per_cpu(avc_cache_stats, cpu);
1617 }
Vasily Averin8d269a82020-02-01 10:47:47 +03001618 (*idx)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return NULL;
1620}
1621
1622static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1623{
1624 loff_t n = *pos - 1;
1625
1626 if (*pos == 0)
1627 return SEQ_START_TOKEN;
1628
1629 return sel_avc_get_stat_idx(&n);
1630}
1631
1632static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1633{
1634 return sel_avc_get_stat_idx(pos);
1635}
1636
1637static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1638{
1639 struct avc_cache_stats *st = v;
1640
Markus Elfring710a0642017-01-15 14:04:53 +01001641 if (v == SEQ_START_TOKEN) {
1642 seq_puts(seq,
1643 "lookups hits misses allocations reclaims frees\n");
1644 } else {
Linus Torvalds257313b2011-05-19 21:22:53 -07001645 unsigned int lookups = st->lookups;
1646 unsigned int misses = st->misses;
1647 unsigned int hits = lookups - misses;
1648 seq_printf(seq, "%u %u %u %u %u %u\n", lookups,
1649 hits, misses, st->allocations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 st->reclaims, st->frees);
Linus Torvalds257313b2011-05-19 21:22:53 -07001651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return 0;
1653}
1654
1655static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1656{ }
1657
Jan Engelhardt1996a102008-01-23 00:02:58 +01001658static const struct seq_operations sel_avc_cache_stats_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 .start = sel_avc_stats_seq_start,
1660 .next = sel_avc_stats_seq_next,
1661 .show = sel_avc_stats_seq_show,
1662 .stop = sel_avc_stats_seq_stop,
1663};
1664
1665static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1666{
1667 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1668}
1669
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001670static const struct file_operations sel_avc_cache_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 .open = sel_open_avc_cache_stats,
1672 .read = seq_read,
1673 .llseek = seq_lseek,
1674 .release = seq_release,
1675};
1676#endif
1677
1678static int sel_make_avc_files(struct dentry *dir)
1679{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001680 struct super_block *sb = dir->d_sb;
1681 struct selinux_fs_info *fsi = sb->s_fs_info;
Eric Parisb77a4932010-11-23 11:40:08 -05001682 int i;
Eric Biggerscda37122017-03-25 21:15:37 -07001683 static const struct tree_descr files[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 { "cache_threshold",
1685 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1686 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1687#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1688 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1689#endif
1690 };
1691
Nicolas Kaiser6e20a642006-01-06 00:11:22 -08001692 for (i = 0; i < ARRAY_SIZE(files); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 struct inode *inode;
1694 struct dentry *dentry;
1695
1696 dentry = d_alloc_name(dir, files[i].name);
Eric Parisb77a4932010-11-23 11:40:08 -05001697 if (!dentry)
1698 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
nixiaoming7e4237f2018-08-05 17:10:36 +08001701 if (!inode) {
1702 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001703 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001704 }
Eric Parisb77a4932010-11-23 11:40:08 -05001705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 inode->i_fop = files[i].ops;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001707 inode->i_ino = ++fsi->last_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 d_add(dentry, inode);
1709 }
Eric Parisb77a4932010-11-23 11:40:08 -05001710
1711 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
1713
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01001714static int sel_make_ss_files(struct dentry *dir)
1715{
1716 struct super_block *sb = dir->d_sb;
1717 struct selinux_fs_info *fsi = sb->s_fs_info;
1718 int i;
1719 static struct tree_descr files[] = {
1720 { "sidtab_hash_stats", &sel_sidtab_hash_stats_ops, S_IRUGO },
1721 };
1722
1723 for (i = 0; i < ARRAY_SIZE(files); i++) {
1724 struct inode *inode;
1725 struct dentry *dentry;
1726
1727 dentry = d_alloc_name(dir, files[i].name);
1728 if (!dentry)
1729 return -ENOMEM;
1730
1731 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
1732 if (!inode) {
1733 dput(dentry);
1734 return -ENOMEM;
1735 }
1736
1737 inode->i_fop = files[i].ops;
1738 inode->i_ino = ++fsi->last_ino;
1739 d_add(dentry, inode);
1740 }
1741
1742 return 0;
1743}
1744
Eric Paris18729812008-04-17 14:15:45 -04001745static ssize_t sel_read_initcon(struct file *file, char __user *buf,
James Carterf0ee2e42007-04-04 10:11:29 -04001746 size_t count, loff_t *ppos)
1747{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001748 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
James Carterf0ee2e42007-04-04 10:11:29 -04001749 char *con;
1750 u32 sid, len;
1751 ssize_t ret;
1752
Al Viro496ad9a2013-01-23 17:07:38 -05001753 sid = file_inode(file)->i_ino&SEL_INO_MASK;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001754 ret = security_sid_to_context(fsi->state, sid, &con, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001755 if (ret)
James Carterf0ee2e42007-04-04 10:11:29 -04001756 return ret;
1757
1758 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1759 kfree(con);
1760 return ret;
1761}
1762
1763static const struct file_operations sel_initcon_ops = {
1764 .read = sel_read_initcon,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001765 .llseek = generic_file_llseek,
James Carterf0ee2e42007-04-04 10:11:29 -04001766};
1767
1768static int sel_make_initcon_files(struct dentry *dir)
1769{
Eric Parisb77a4932010-11-23 11:40:08 -05001770 int i;
James Carterf0ee2e42007-04-04 10:11:29 -04001771
1772 for (i = 1; i <= SECINITSID_NUM; i++) {
1773 struct inode *inode;
1774 struct dentry *dentry;
Stephen Smalleye3e0b582020-02-24 11:10:23 -05001775 const char *s = security_get_initial_sid_context(i);
1776
1777 if (!s)
1778 continue;
1779 dentry = d_alloc_name(dir, s);
Eric Parisb77a4932010-11-23 11:40:08 -05001780 if (!dentry)
1781 return -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001782
1783 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001784 if (!inode) {
1785 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001786 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001787 }
Eric Parisb77a4932010-11-23 11:40:08 -05001788
James Carterf0ee2e42007-04-04 10:11:29 -04001789 inode->i_fop = &sel_initcon_ops;
1790 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1791 d_add(dentry, inode);
1792 }
Eric Parisb77a4932010-11-23 11:40:08 -05001793
1794 return 0;
James Carterf0ee2e42007-04-04 10:11:29 -04001795}
1796
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001797static inline unsigned long sel_class_to_ino(u16 class)
1798{
1799 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1800}
1801
1802static inline u16 sel_ino_to_class(unsigned long ino)
1803{
Eric Paris92ae9e82012-04-04 13:46:46 -04001804 return (ino & SEL_INO_MASK) / (SEL_VEC_MAX + 1);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001805}
1806
1807static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1808{
1809 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1810}
1811
1812static inline u32 sel_ino_to_perm(unsigned long ino)
1813{
1814 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1815}
1816
Eric Paris18729812008-04-17 14:15:45 -04001817static ssize_t sel_read_class(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001818 size_t count, loff_t *ppos)
1819{
Al Viro496ad9a2013-01-23 17:07:38 -05001820 unsigned long ino = file_inode(file)->i_ino;
Al Virocc1dad72012-04-02 19:40:47 -04001821 char res[TMPBUFLEN];
liuyang347e78c872020-01-07 09:39:18 +08001822 ssize_t len = scnprintf(res, sizeof(res), "%d", sel_ino_to_class(ino));
Al Virocc1dad72012-04-02 19:40:47 -04001823 return simple_read_from_buffer(buf, count, ppos, res, len);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001824}
1825
1826static const struct file_operations sel_class_ops = {
1827 .read = sel_read_class,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001828 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001829};
1830
Eric Paris18729812008-04-17 14:15:45 -04001831static ssize_t sel_read_perm(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001832 size_t count, loff_t *ppos)
1833{
Al Viro496ad9a2013-01-23 17:07:38 -05001834 unsigned long ino = file_inode(file)->i_ino;
Al Virocc1dad72012-04-02 19:40:47 -04001835 char res[TMPBUFLEN];
liuyang347e78c872020-01-07 09:39:18 +08001836 ssize_t len = scnprintf(res, sizeof(res), "%d", sel_ino_to_perm(ino));
Al Virocc1dad72012-04-02 19:40:47 -04001837 return simple_read_from_buffer(buf, count, ppos, res, len);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001838}
1839
1840static const struct file_operations sel_perm_ops = {
1841 .read = sel_read_perm,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001842 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001843};
1844
Paul Moore3bb56b22008-01-29 08:38:19 -05001845static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1846 size_t count, loff_t *ppos)
1847{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001848 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Paul Moore3bb56b22008-01-29 08:38:19 -05001849 int value;
1850 char tmpbuf[TMPBUFLEN];
1851 ssize_t length;
Al Viro496ad9a2013-01-23 17:07:38 -05001852 unsigned long i_ino = file_inode(file)->i_ino;
Paul Moore3bb56b22008-01-29 08:38:19 -05001853
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001854 value = security_policycap_supported(fsi->state, i_ino & SEL_INO_MASK);
Paul Moore3bb56b22008-01-29 08:38:19 -05001855 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1856
1857 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1858}
1859
1860static const struct file_operations sel_policycap_ops = {
1861 .read = sel_read_policycap,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001862 .llseek = generic_file_llseek,
Paul Moore3bb56b22008-01-29 08:38:19 -05001863};
1864
Stephen Smalley02a52c52020-08-07 09:29:34 -04001865static int sel_make_perm_files(struct selinux_policy *newpolicy,
1866 char *objclass, int classvalue,
1867 struct dentry *dir)
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001868{
Eric Parisb77a4932010-11-23 11:40:08 -05001869 int i, rc, nperms;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001870 char **perms;
1871
Stephen Smalley02a52c52020-08-07 09:29:34 -04001872 rc = security_get_permissions(newpolicy, objclass, &perms, &nperms);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001873 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001874 return rc;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001875
1876 for (i = 0; i < nperms; i++) {
1877 struct inode *inode;
1878 struct dentry *dentry;
1879
Eric Parisb77a4932010-11-23 11:40:08 -05001880 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001881 dentry = d_alloc_name(dir, perms[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001882 if (!dentry)
1883 goto out;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001884
Eric Parisb77a4932010-11-23 11:40:08 -05001885 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001886 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001887 if (!inode) {
1888 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001889 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001890 }
Eric Parisb77a4932010-11-23 11:40:08 -05001891
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001892 inode->i_fop = &sel_perm_ops;
1893 /* i+1 since perm values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001894 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001895 d_add(dentry, inode);
1896 }
Eric Parisb77a4932010-11-23 11:40:08 -05001897 rc = 0;
1898out:
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001899 for (i = 0; i < nperms; i++)
1900 kfree(perms[i]);
1901 kfree(perms);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001902 return rc;
1903}
1904
Stephen Smalley02a52c52020-08-07 09:29:34 -04001905static int sel_make_class_dir_entries(struct selinux_policy *newpolicy,
1906 char *classname, int index,
1907 struct dentry *dir)
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001908{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001909 struct super_block *sb = dir->d_sb;
1910 struct selinux_fs_info *fsi = sb->s_fs_info;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001911 struct dentry *dentry = NULL;
1912 struct inode *inode = NULL;
1913 int rc;
1914
1915 dentry = d_alloc_name(dir, "index");
Eric Parisb77a4932010-11-23 11:40:08 -05001916 if (!dentry)
1917 return -ENOMEM;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001918
1919 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001920 if (!inode) {
1921 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001922 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001923 }
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001924
1925 inode->i_fop = &sel_class_ops;
1926 inode->i_ino = sel_class_to_ino(index);
1927 d_add(dentry, inode);
1928
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001929 dentry = sel_make_dir(dir, "perms", &fsi->last_class_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04001930 if (IS_ERR(dentry))
1931 return PTR_ERR(dentry);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001932
Stephen Smalley02a52c52020-08-07 09:29:34 -04001933 rc = sel_make_perm_files(newpolicy, classname, index, dentry);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001934
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001935 return rc;
1936}
1937
Daniel Burgener66ec3842020-08-19 15:59:33 -04001938static int sel_make_classes(struct selinux_policy *newpolicy,
1939 struct dentry *class_dir,
1940 unsigned long *last_class_ino)
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001941{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001942
Eric Parisb77a4932010-11-23 11:40:08 -05001943 int rc, nclasses, i;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001944 char **classes;
1945
Stephen Smalley02a52c52020-08-07 09:29:34 -04001946 rc = security_get_classes(newpolicy, &classes, &nclasses);
Eric Parisb77a4932010-11-23 11:40:08 -05001947 if (rc)
1948 return rc;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001949
1950 /* +2 since classes are 1-indexed */
Daniel Burgener66ec3842020-08-19 15:59:33 -04001951 *last_class_ino = sel_class_to_ino(nclasses + 2);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001952
1953 for (i = 0; i < nclasses; i++) {
1954 struct dentry *class_name_dir;
1955
Daniel Burgener66ec3842020-08-19 15:59:33 -04001956 class_name_dir = sel_make_dir(class_dir, classes[i],
1957 last_class_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04001958 if (IS_ERR(class_name_dir)) {
1959 rc = PTR_ERR(class_name_dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001960 goto out;
Al Viroa1c2aa12012-03-18 20:36:59 -04001961 }
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001962
1963 /* i+1 since class values are 1-indexed */
Stephen Smalley02a52c52020-08-07 09:29:34 -04001964 rc = sel_make_class_dir_entries(newpolicy, classes[i], i + 1,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001965 class_name_dir);
1966 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001967 goto out;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001968 }
Eric Parisb77a4932010-11-23 11:40:08 -05001969 rc = 0;
1970out:
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001971 for (i = 0; i < nclasses; i++)
1972 kfree(classes[i]);
1973 kfree(classes);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001974 return rc;
1975}
1976
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001977static int sel_make_policycap(struct selinux_fs_info *fsi)
Paul Moore3bb56b22008-01-29 08:38:19 -05001978{
1979 unsigned int iter;
1980 struct dentry *dentry = NULL;
1981 struct inode *inode = NULL;
1982
Paul Moore3bb56b22008-01-29 08:38:19 -05001983 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
Stephen Smalley4dc2fce2017-05-18 16:58:31 -04001984 if (iter < ARRAY_SIZE(selinux_policycap_names))
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001985 dentry = d_alloc_name(fsi->policycap_dir,
Stephen Smalley4dc2fce2017-05-18 16:58:31 -04001986 selinux_policycap_names[iter]);
Paul Moore3bb56b22008-01-29 08:38:19 -05001987 else
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001988 dentry = d_alloc_name(fsi->policycap_dir, "unknown");
Paul Moore3bb56b22008-01-29 08:38:19 -05001989
1990 if (dentry == NULL)
1991 return -ENOMEM;
1992
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001993 inode = sel_make_inode(fsi->sb, S_IFREG | 0444);
nixiaoming7e4237f2018-08-05 17:10:36 +08001994 if (inode == NULL) {
1995 dput(dentry);
Paul Moore3bb56b22008-01-29 08:38:19 -05001996 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001997 }
Paul Moore3bb56b22008-01-29 08:38:19 -05001998
1999 inode->i_fop = &sel_policycap_ops;
2000 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
2001 d_add(dentry, inode);
2002 }
2003
2004 return 0;
2005}
2006
Al Viroa1c2aa12012-03-18 20:36:59 -04002007static struct dentry *sel_make_dir(struct dentry *dir, const char *name,
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04002008 unsigned long *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
Al Viroa1c2aa12012-03-18 20:36:59 -04002010 struct dentry *dentry = d_alloc_name(dir, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 struct inode *inode;
2012
Al Viroa1c2aa12012-03-18 20:36:59 -04002013 if (!dentry)
2014 return ERR_PTR(-ENOMEM);
2015
2016 inode = sel_make_inode(dir->d_sb, S_IFDIR | S_IRUGO | S_IXUGO);
2017 if (!inode) {
2018 dput(dentry);
2019 return ERR_PTR(-ENOMEM);
2020 }
Eric Parisb77a4932010-11-23 11:40:08 -05002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 inode->i_op = &simple_dir_inode_operations;
2023 inode->i_fop = &simple_dir_operations;
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04002024 inode->i_ino = ++(*ino);
James Morris40e906f2006-03-22 00:09:16 -08002025 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -07002026 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 d_add(dentry, inode);
James Morrisedb20fb2006-03-22 00:09:20 -08002028 /* bump link count on parent directory, too */
David Howellsce0b16d2015-02-19 10:47:02 +00002029 inc_nlink(d_inode(dir));
Eric Parisb77a4932010-11-23 11:40:08 -05002030
Al Viroa1c2aa12012-03-18 20:36:59 -04002031 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032}
2033
Daniel Burgener0eea6092020-08-19 15:59:35 -04002034static struct dentry *sel_make_disconnected_dir(struct super_block *sb,
2035 unsigned long *ino)
2036{
2037 struct inode *inode = sel_make_inode(sb, S_IFDIR | S_IRUGO | S_IXUGO);
2038
2039 if (!inode)
2040 return ERR_PTR(-ENOMEM);
2041
2042 inode->i_op = &simple_dir_inode_operations;
2043 inode->i_fop = &simple_dir_operations;
2044 inode->i_ino = ++(*ino);
2045 /* directory inodes start off with i_nlink == 2 (for "." entry) */
2046 inc_nlink(inode);
2047 return d_obtain_alias(inode);
2048}
2049
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002050#define NULL_FILE_NAME "null"
2051
David Howells920f50b2019-03-25 16:38:30 +00002052static int sel_fill_super(struct super_block *sb, struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002054 struct selinux_fs_info *fsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 int ret;
2056 struct dentry *dentry;
Al Viroa1c2aa12012-03-18 20:36:59 -04002057 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 struct inode_security_struct *isec;
2059
Eric Biggerscda37122017-03-25 21:15:37 -07002060 static const struct tree_descr selinux_files[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
2062 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
Stephen Smalleyce9982d2005-11-08 21:34:33 -08002063 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
2065 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
2066 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
2067 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
2068 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
2069 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
2070 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
2071 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
2072 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
2073 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
Eric Paris3f120702007-09-21 14:37:10 -04002074 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
2075 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
KaiGai Kohei11904162010-09-14 18:28:39 +09002076 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
Eric Paris72e8c8592012-02-16 15:08:39 -05002077 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUGO},
Andrew Perepechkof9df6452015-12-24 11:09:41 -05002078 [SEL_VALIDATE_TRANS] = {"validatetrans", &sel_transition_ops,
2079 S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 /* last one */ {""}
2081 };
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002082
2083 ret = selinux_fs_info_create(sb);
2084 if (ret)
2085 goto err;
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
2088 if (ret)
James Morris161ce452006-03-22 00:09:17 -08002089 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002091 fsi = sb->s_fs_info;
2092 fsi->bool_dir = sel_make_dir(sb->s_root, BOOL_DIR_NAME, &fsi->last_ino);
2093 if (IS_ERR(fsi->bool_dir)) {
2094 ret = PTR_ERR(fsi->bool_dir);
2095 fsi->bool_dir = NULL;
James Morris161ce452006-03-22 00:09:17 -08002096 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Eric Parisb77a4932010-11-23 11:40:08 -05002099 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05002101 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08002102 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Eric Parisb77a4932010-11-23 11:40:08 -05002104 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08002106 if (!inode) {
2107 dput(dentry);
James Morris161ce452006-03-22 00:09:17 -08002108 goto err;
nixiaoming7e4237f2018-08-05 17:10:36 +08002109 }
Eric Parisb77a4932010-11-23 11:40:08 -05002110
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002111 inode->i_ino = ++fsi->last_ino;
Casey Schaufler80788c22018-09-21 17:19:11 -07002112 isec = selinux_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 isec->sid = SECINITSID_DEVNULL;
2114 isec->sclass = SECCLASS_CHR_FILE;
Andreas Gruenbacher42059112016-11-10 22:18:27 +01002115 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
2118 d_add(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002120 dentry = sel_make_dir(sb->s_root, "avc", &fsi->last_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04002121 if (IS_ERR(dentry)) {
2122 ret = PTR_ERR(dentry);
James Morris161ce452006-03-22 00:09:17 -08002123 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 ret = sel_make_avc_files(dentry);
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01002127
2128 dentry = sel_make_dir(sb->s_root, "ss", &fsi->last_ino);
2129 if (IS_ERR(dentry)) {
2130 ret = PTR_ERR(dentry);
2131 goto err;
2132 }
2133
2134 ret = sel_make_ss_files(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 if (ret)
James Morris161ce452006-03-22 00:09:17 -08002136 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04002137
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002138 dentry = sel_make_dir(sb->s_root, "initial_contexts", &fsi->last_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04002139 if (IS_ERR(dentry)) {
2140 ret = PTR_ERR(dentry);
James Carterf0ee2e42007-04-04 10:11:29 -04002141 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002142 }
James Carterf0ee2e42007-04-04 10:11:29 -04002143
2144 ret = sel_make_initcon_files(dentry);
2145 if (ret)
2146 goto err;
2147
Daniel Burgener613ba182020-08-19 15:59:34 -04002148 fsi->class_dir = sel_make_dir(sb->s_root, CLASS_DIR_NAME, &fsi->last_ino);
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002149 if (IS_ERR(fsi->class_dir)) {
2150 ret = PTR_ERR(fsi->class_dir);
2151 fsi->class_dir = NULL;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04002152 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002153 }
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04002154
Daniel Burgener613ba182020-08-19 15:59:34 -04002155 fsi->policycap_dir = sel_make_dir(sb->s_root, POLICYCAP_DIR_NAME,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002156 &fsi->last_ino);
2157 if (IS_ERR(fsi->policycap_dir)) {
2158 ret = PTR_ERR(fsi->policycap_dir);
2159 fsi->policycap_dir = NULL;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04002160 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002161 }
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002162
Stephen Smalley02a52c52020-08-07 09:29:34 -04002163 ret = sel_make_policycap(fsi);
2164 if (ret) {
2165 pr_err("SELinux: failed to load policy capabilities\n");
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002166 goto err;
Stephen Smalley02a52c52020-08-07 09:29:34 -04002167 }
2168
Eric Parisb77a4932010-11-23 11:40:08 -05002169 return 0;
James Morris161ce452006-03-22 00:09:17 -08002170err:
peter enderborgf8b69a52018-06-12 10:09:06 +02002171 pr_err("SELinux: %s: failed while creating inodes\n",
Eric Paris744ba352008-04-17 11:52:44 -04002172 __func__);
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002173
2174 selinux_fs_info_free(sb);
2175
Eric Parisb77a4932010-11-23 11:40:08 -05002176 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
David Howells920f50b2019-03-25 16:38:30 +00002179static int sel_get_tree(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
David Howells920f50b2019-03-25 16:38:30 +00002181 return get_tree_single(fc, sel_fill_super);
2182}
2183
2184static const struct fs_context_operations sel_context_ops = {
2185 .get_tree = sel_get_tree,
2186};
2187
2188static int sel_init_fs_context(struct fs_context *fc)
2189{
2190 fc->ops = &sel_context_ops;
2191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002194static void sel_kill_sb(struct super_block *sb)
2195{
2196 selinux_fs_info_free(sb);
2197 kill_litter_super(sb);
2198}
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200static struct file_system_type sel_fs_type = {
2201 .name = "selinuxfs",
David Howells920f50b2019-03-25 16:38:30 +00002202 .init_fs_context = sel_init_fs_context,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002203 .kill_sb = sel_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204};
2205
2206struct vfsmount *selinuxfs_mount;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002207struct path selinux_null;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209static int __init init_sel_fs(void)
2210{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002211 struct qstr null_name = QSTR_INIT(NULL_FILE_NAME,
2212 sizeof(NULL_FILE_NAME)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 int err;
2214
Stephen Smalley6c5a6822019-12-17 09:15:10 -05002215 if (!selinux_enabled_boot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return 0;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002217
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002218 err = sysfs_create_mount_point(fs_kobj, "selinux");
2219 if (err)
2220 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 err = register_filesystem(&sel_fs_type);
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002223 if (err) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002224 sysfs_remove_mount_point(fs_kobj, "selinux");
Eric Parisb77a4932010-11-23 11:40:08 -05002225 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002226 }
Eric Parisb77a4932010-11-23 11:40:08 -05002227
Al Viro765927b2012-06-26 21:58:53 +04002228 selinux_null.mnt = selinuxfs_mount = kern_mount(&sel_fs_type);
Eric Parisb77a4932010-11-23 11:40:08 -05002229 if (IS_ERR(selinuxfs_mount)) {
peter enderborgf8b69a52018-06-12 10:09:06 +02002230 pr_err("selinuxfs: could not mount!\n");
Eric Parisb77a4932010-11-23 11:40:08 -05002231 err = PTR_ERR(selinuxfs_mount);
2232 selinuxfs_mount = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002234 selinux_null.dentry = d_hash_and_lookup(selinux_null.mnt->mnt_root,
2235 &null_name);
2236 if (IS_ERR(selinux_null.dentry)) {
2237 pr_err("selinuxfs: could not lookup null!\n");
2238 err = PTR_ERR(selinux_null.dentry);
2239 selinux_null.dentry = NULL;
2240 }
Eric Parisb77a4932010-11-23 11:40:08 -05002241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return err;
2243}
2244
2245__initcall(init_sel_fs);
2246
2247#ifdef CONFIG_SECURITY_SELINUX_DISABLE
2248void exit_sel_fs(void)
2249{
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002250 sysfs_remove_mount_point(fs_kobj, "selinux");
Stephen Smalleyfd40ffc2018-04-09 14:36:05 -04002251 dput(selinux_null.dentry);
Tim Chen423e0ab2011-07-19 09:32:38 -07002252 kern_unmount(selinuxfs_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 unregister_filesystem(&sel_fs_type);
2254}
2255#endif