blob: fff6babeeae669d6d40a8325d54c921d4c537706 [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. PeBenitoe47c8fc2007-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. PeBenitoe47c8fc2007-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);
Ondrej Mosnacekee5de602021-03-18 22:53:03 +0100566 if (ret)
Daniel Burgener0eea6092020-08-19 15:59:35 -0400567 goto out;
Daniel Burgener0eea6092020-08-19 15:59:35 -0400568
569 ret = sel_make_classes(newpolicy, tmp_class_dir,
Daniel Burgener66ec3842020-08-19 15:59:33 -0400570 &fsi->last_class_ino);
Ondrej Mosnacekee5de602021-03-18 22:53:03 +0100571 if (ret)
Daniel Burgener0eea6092020-08-19 15:59:35 -0400572 goto out;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400573
Daniel Burgener0eea6092020-08-19 15:59:35 -0400574 /* booleans */
575 old_dentry = fsi->bool_dir;
576 lock_rename(tmp_bool_dir, old_dentry);
577 d_exchange(tmp_bool_dir, fsi->bool_dir);
578
579 old_bool_num = fsi->bool_num;
580 old_bool_names = fsi->bool_pending_names;
581 old_bool_values = fsi->bool_pending_values;
582
583 fsi->bool_num = tmp_bool_num;
584 fsi->bool_pending_names = tmp_bool_names;
585 fsi->bool_pending_values = tmp_bool_values;
586
587 sel_remove_old_bool_data(old_bool_num, old_bool_names, old_bool_values);
588
589 fsi->bool_dir = tmp_bool_dir;
590 unlock_rename(tmp_bool_dir, old_dentry);
591
592 /* classes */
593 old_dentry = fsi->class_dir;
594 lock_rename(tmp_class_dir, old_dentry);
595 d_exchange(tmp_class_dir, fsi->class_dir);
596 fsi->class_dir = tmp_class_dir;
597 unlock_rename(tmp_class_dir, old_dentry);
598
599out:
600 /* Since the other temporary dirs are children of tmp_parent
601 * this will handle all the cleanup in the case of a failure before
602 * the swapover
603 */
604 sel_remove_entries(tmp_parent);
605 dput(tmp_parent); /* d_genocide() only handles the children */
606
607 return ret;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400608}
609
Eric Paris18729812008-04-17 14:15:45 -0400610static ssize_t sel_write_load(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 size_t count, loff_t *ppos)
612
613{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400614 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Ondrej Mosnacek64068872021-03-18 22:53:02 +0100615 struct selinux_load_state load_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 ssize_t length;
617 void *data = NULL;
618
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400619 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500621 length = avc_has_perm(&selinux_state,
622 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500623 SECCLASS_SECURITY, SECURITY__LOAD_POLICY, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (length)
625 goto out;
626
Eric Parisb77a4932010-11-23 11:40:08 -0500627 /* No partial writes. */
628 length = -EINVAL;
629 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Eric Parisb77a4932010-11-23 11:40:08 -0500632 length = -ENOMEM;
633 data = vmalloc(count);
634 if (!data)
635 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 length = -EFAULT;
638 if (copy_from_user(data, buf, count) != 0)
639 goto out;
640
Ondrej Mosnacek64068872021-03-18 22:53:02 +0100641 length = security_load_policy(fsi->state, data, count, &load_state);
Gary Tierney4262fb52017-01-09 10:07:31 -0500642 if (length) {
643 pr_warn_ratelimited("SELinux: failed to load policy\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 goto out;
Gary Tierney4262fb52017-01-09 10:07:31 -0500645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Ondrej Mosnacek64068872021-03-18 22:53:02 +0100647 length = sel_make_policy_nodes(fsi, load_state.policy);
Stephen Smalley02a52c52020-08-07 09:29:34 -0400648 if (length) {
Ondrej Mosnacekee5de602021-03-18 22:53:03 +0100649 pr_warn_ratelimited("SELinux: failed to initialize selinuxfs\n");
Ondrej Mosnacek64068872021-03-18 22:53:02 +0100650 selinux_policy_cancel(fsi->state, &load_state);
Ondrej Mosnacek519dad32021-03-18 22:53:01 +0100651 goto out;
Stephen Smalley02a52c52020-08-07 09:29:34 -0400652 }
653
Ondrej Mosnacek64068872021-03-18 22:53:02 +0100654 selinux_policy_commit(fsi->state, &load_state);
Eric Parisb77a4932010-11-23 11:40:08 -0500655
656 length = count;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400657
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -0400658 audit_log(audit_context(), GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
Richard Guy Briggsd1411362018-04-09 19:36:31 -0400659 "auid=%u ses=%u lsm=selinux res=1",
Eric W. Biederman581abc02012-08-20 00:09:36 -0700660 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric Paris4746ec52008-01-08 10:06:53 -0500661 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400663 mutex_unlock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 vfree(data);
665 return length;
666}
667
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800668static const struct file_operations sel_load_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 .write = sel_write_load,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200670 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671};
672
Eric Paris18729812008-04-17 14:15:45 -0400673static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400675 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
676 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500677 char *canon = NULL;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800678 u32 sid, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 ssize_t length;
680
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500681 length = avc_has_perm(&selinux_state,
682 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500683 SECCLASS_SECURITY, SECURITY__CHECK_CONTEXT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500685 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400687 length = security_context_to_sid(state, buf, size, &sid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500688 if (length)
689 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400691 length = security_sid_to_context(state, sid, &canon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500692 if (length)
693 goto out;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800694
Eric Parisb77a4932010-11-23 11:40:08 -0500695 length = -ERANGE;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800696 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +0200697 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -0400698 "payload max\n", __func__, len);
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800699 goto out;
700 }
701
702 memcpy(buf, canon, len);
703 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704out:
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800705 kfree(canon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return length;
707}
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
710 size_t count, loff_t *ppos)
711{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400712 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 char tmpbuf[TMPBUFLEN];
714 ssize_t length;
715
Lakshmi Ramasubramanian8861d0a2020-09-14 10:31:57 -0700716 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
717 checkreqprot_get(fsi->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
719}
720
Eric Paris18729812008-04-17 14:15:45 -0400721static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 size_t count, loff_t *ppos)
723{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400724 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Al Viro8365a712015-12-24 00:08:06 -0500725 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 ssize_t length;
727 unsigned int new_value;
728
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500729 length = avc_has_perm(&selinux_state,
730 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500731 SECCLASS_SECURITY, SECURITY__SETCHECKREQPROT,
732 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (length)
Al Viro8365a712015-12-24 00:08:06 -0500734 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Davi Arnautbfd51622005-10-30 14:59:24 -0800736 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500737 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500738
739 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500740 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500741 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500742
Al Viro8365a712015-12-24 00:08:06 -0500743 page = memdup_user_nul(buf, count);
744 if (IS_ERR(page))
745 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 length = -EINVAL;
748 if (sscanf(page, "%u", &new_value) != 1)
749 goto out;
750
Stephen Smalleye9c38f92020-01-08 11:24:47 -0500751 if (new_value) {
752 char comm[sizeof(current->comm)];
753
754 memcpy(comm, current->comm, sizeof(comm));
755 pr_warn_once("SELinux: %s (%d) set checkreqprot to 1. This is deprecated and will be rejected in a future kernel release.\n",
756 comm, current->pid);
757 }
758
Lakshmi Ramasubramanian8861d0a2020-09-14 10:31:57 -0700759 checkreqprot_set(fsi->state, (new_value ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 length = count;
761out:
Al Viro8365a712015-12-24 00:08:06 -0500762 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return length;
764}
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800765static const struct file_operations sel_checkreqprot_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 .read = sel_read_checkreqprot,
767 .write = sel_write_checkreqprot,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200768 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769};
770
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500771static ssize_t sel_write_validatetrans(struct file *file,
772 const char __user *buf,
773 size_t count, loff_t *ppos)
774{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400775 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
776 struct selinux_state *state = fsi->state;
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500777 char *oldcon = NULL, *newcon = NULL, *taskcon = NULL;
778 char *req = NULL;
779 u32 osid, nsid, tsid;
780 u16 tclass;
781 int rc;
782
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500783 rc = avc_has_perm(&selinux_state,
784 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500785 SECCLASS_SECURITY, SECURITY__VALIDATE_TRANS, NULL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500786 if (rc)
787 goto out;
788
789 rc = -ENOMEM;
790 if (count >= PAGE_SIZE)
791 goto out;
792
793 /* No partial writes. */
794 rc = -EINVAL;
795 if (*ppos != 0)
796 goto out;
797
Al Viro0b884d22017-05-13 18:12:07 -0400798 req = memdup_user_nul(buf, count);
799 if (IS_ERR(req)) {
800 rc = PTR_ERR(req);
801 req = NULL;
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500802 goto out;
Al Viro0b884d22017-05-13 18:12:07 -0400803 }
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500804
805 rc = -ENOMEM;
806 oldcon = kzalloc(count + 1, GFP_KERNEL);
807 if (!oldcon)
808 goto out;
809
810 newcon = kzalloc(count + 1, GFP_KERNEL);
811 if (!newcon)
812 goto out;
813
814 taskcon = kzalloc(count + 1, GFP_KERNEL);
815 if (!taskcon)
816 goto out;
817
818 rc = -EINVAL;
819 if (sscanf(req, "%s %s %hu %s", oldcon, newcon, &tclass, taskcon) != 4)
820 goto out;
821
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400822 rc = security_context_str_to_sid(state, oldcon, &osid, GFP_KERNEL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500823 if (rc)
824 goto out;
825
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400826 rc = security_context_str_to_sid(state, newcon, &nsid, GFP_KERNEL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500827 if (rc)
828 goto out;
829
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400830 rc = security_context_str_to_sid(state, taskcon, &tsid, GFP_KERNEL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500831 if (rc)
832 goto out;
833
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400834 rc = security_validate_transition_user(state, osid, nsid, tsid, tclass);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500835 if (!rc)
836 rc = count;
837out:
838 kfree(req);
839 kfree(oldcon);
840 kfree(newcon);
841 kfree(taskcon);
842 return rc;
843}
844
845static const struct file_operations sel_transition_ops = {
846 .write = sel_write_validatetrans,
847 .llseek = generic_file_llseek,
848};
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850/*
851 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
852 */
Eric Paris18729812008-04-17 14:15:45 -0400853static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
854static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
855static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
856static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
857static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Eric Biggers631d2b42018-07-17 10:43:56 -0700859static ssize_t (*const write_op[])(struct file *, char *, size_t) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 [SEL_ACCESS] = sel_write_access,
861 [SEL_CREATE] = sel_write_create,
862 [SEL_RELABEL] = sel_write_relabel,
863 [SEL_USER] = sel_write_user,
864 [SEL_MEMBER] = sel_write_member,
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800865 [SEL_CONTEXT] = sel_write_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866};
867
868static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
869{
Al Viro496ad9a2013-01-23 17:07:38 -0500870 ino_t ino = file_inode(file)->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 char *data;
872 ssize_t rv;
873
Nicolas Kaiser6e20a642006-01-06 00:11:22 -0800874 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return -EINVAL;
876
877 data = simple_transaction_get(file, buf, size);
878 if (IS_ERR(data))
879 return PTR_ERR(data);
880
Eric Paris18729812008-04-17 14:15:45 -0400881 rv = write_op[ino](file, data, size);
882 if (rv > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 simple_transaction_set(file, rv);
884 rv = size;
885 }
886 return rv;
887}
888
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800889static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 .write = selinux_transaction_write,
891 .read = simple_transaction_read,
892 .release = simple_transaction_release,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200893 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894};
895
896/*
897 * payload - write methods
898 * If the method has a response, the response should be put in buf,
899 * and the length returned. Otherwise return 0 or and -error.
900 */
901
Eric Paris18729812008-04-17 14:15:45 -0400902static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400904 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
905 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500906 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 u32 ssid, tsid;
908 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct av_decision avd;
910 ssize_t length;
911
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500912 length = avc_has_perm(&selinux_state,
913 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500914 SECCLASS_SECURITY, SECURITY__COMPUTE_AV, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500916 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800919 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500921 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Eric Parisb77a4932010-11-23 11:40:08 -0500923 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800924 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (!tcon)
926 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 length = -EINVAL;
Stephen Smalley19439d02010-01-14 17:28:10 -0500929 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500930 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400932 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500933 if (length)
934 goto out;
935
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400936 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500937 if (length)
938 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400940 security_compute_av_user(state, ssid, tsid, tclass, &avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900943 "%x %x %x %x %u %x",
Eric Parisf1c63812009-02-12 14:50:54 -0500944 avd.allowed, 0xffffffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 avd.auditallow, avd.auditdeny,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900946 avd.seqno, avd.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947out:
Eric Parisb77a4932010-11-23 11:40:08 -0500948 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 kfree(scon);
950 return length;
951}
952
Eric Paris18729812008-04-17 14:15:45 -0400953static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400955 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
956 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500957 char *scon = NULL, *tcon = NULL;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100958 char *namebuf = NULL, *objname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 u32 ssid, tsid, newsid;
960 u16 tclass;
961 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500962 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 u32 len;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100964 int nargs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500966 length = avc_has_perm(&selinux_state,
967 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500968 SECCLASS_SECURITY, SECURITY__COMPUTE_CREATE,
969 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500971 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800974 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500976 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Eric Parisb77a4932010-11-23 11:40:08 -0500978 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800979 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (!tcon)
981 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100983 length = -ENOMEM;
984 namebuf = kzalloc(size + 1, GFP_KERNEL);
985 if (!namebuf)
Eric Parisb77a4932010-11-23 11:40:08 -0500986 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100988 length = -EINVAL;
989 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
990 if (nargs < 3 || nargs > 4)
991 goto out;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400992 if (nargs == 4) {
993 /*
994 * If and when the name of new object to be queried contains
995 * either whitespace or multibyte characters, they shall be
996 * encoded based on the percentage-encoding rule.
997 * If not encoded, the sscanf logic picks up only left-half
998 * of the supplied name; splitted by a whitespace unexpectedly.
999 */
1000 char *r, *w;
1001 int c1, c2;
1002
1003 r = w = namebuf;
1004 do {
1005 c1 = *r++;
1006 if (c1 == '+')
1007 c1 = ' ';
1008 else if (c1 == '%') {
Andy Shevchenkoaf7ff2c2011-11-15 15:11:41 -08001009 c1 = hex_to_bin(*r++);
1010 if (c1 < 0)
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001011 goto out;
Andy Shevchenkoaf7ff2c2011-11-15 15:11:41 -08001012 c2 = hex_to_bin(*r++);
1013 if (c2 < 0)
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001014 goto out;
1015 c1 = (c1 << 4) | c2;
1016 }
1017 *w++ = c1;
1018 } while (c1 != '\0');
1019
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001020 objname = namebuf;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001021 }
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001022
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001023 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001024 if (length)
1025 goto out;
1026
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001027 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001028 if (length)
1029 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001031 length = security_transition_sid_user(state, ssid, tsid, tclass,
1032 objname, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001033 if (length)
1034 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001036 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001037 if (length)
1038 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Eric Parisb77a4932010-11-23 11:40:08 -05001040 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +02001042 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -04001043 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001044 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
1047 memcpy(buf, newcon, len);
1048 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049out:
Eric Parisb77a4932010-11-23 11:40:08 -05001050 kfree(newcon);
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001051 kfree(namebuf);
Eric Parisb77a4932010-11-23 11:40:08 -05001052 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 kfree(scon);
1054 return length;
1055}
1056
Eric Paris18729812008-04-17 14:15:45 -04001057static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001059 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1060 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001061 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 u32 ssid, tsid, newsid;
1063 u16 tclass;
1064 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -05001065 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 u32 len;
1067
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001068 length = avc_has_perm(&selinux_state,
1069 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001070 SECCLASS_SECURITY, SECURITY__COMPUTE_RELABEL,
1071 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -05001073 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001076 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -05001078 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Eric Parisb77a4932010-11-23 11:40:08 -05001080 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001081 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (!tcon)
1083 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 length = -EINVAL;
1086 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001087 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001089 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001090 if (length)
1091 goto out;
1092
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001093 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001094 if (length)
1095 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001097 length = security_change_sid(state, ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001098 if (length)
1099 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001101 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001102 if (length)
1103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Eric Parisb77a4932010-11-23 11:40:08 -05001105 length = -ERANGE;
1106 if (len > SIMPLE_TRANSACTION_LIMIT)
1107 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 memcpy(buf, newcon, len);
1110 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111out:
Eric Parisb77a4932010-11-23 11:40:08 -05001112 kfree(newcon);
1113 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 kfree(scon);
1115 return length;
1116}
1117
Eric Paris18729812008-04-17 14:15:45 -04001118static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001120 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1121 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001122 char *con = NULL, *user = NULL, *ptr;
1123 u32 sid, *sids = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 ssize_t length;
1125 char *newcon;
1126 int i, rc;
1127 u32 len, nsids;
1128
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001129 length = avc_has_perm(&selinux_state,
1130 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001131 SECCLASS_SECURITY, SECURITY__COMPUTE_USER,
1132 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (length)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001134 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001137 con = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (!con)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001139 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Eric Parisb77a4932010-11-23 11:40:08 -05001141 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001142 user = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (!user)
1144 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 length = -EINVAL;
1147 if (sscanf(buf, "%s %s", con, user) != 2)
Eric Parisb77a4932010-11-23 11:40:08 -05001148 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001150 length = security_context_str_to_sid(state, con, &sid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001151 if (length)
1152 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001154 length = security_get_user_sids(state, sid, user, &sids, &nsids);
Eric Parisb77a4932010-11-23 11:40:08 -05001155 if (length)
1156 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 length = sprintf(buf, "%u", nsids) + 1;
1159 ptr = buf + length;
1160 for (i = 0; i < nsids; i++) {
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001161 rc = security_sid_to_context(state, sids[i], &newcon, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (rc) {
1163 length = rc;
Eric Parisb77a4932010-11-23 11:40:08 -05001164 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
1167 kfree(newcon);
1168 length = -ERANGE;
Eric Parisb77a4932010-11-23 11:40:08 -05001169 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
1171 memcpy(ptr, newcon, len);
1172 kfree(newcon);
1173 ptr += len;
1174 length += len;
1175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176out:
Eric Parisb77a4932010-11-23 11:40:08 -05001177 kfree(sids);
1178 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 kfree(con);
1180 return length;
1181}
1182
Eric Paris18729812008-04-17 14:15:45 -04001183static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001185 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1186 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001187 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 u32 ssid, tsid, newsid;
1189 u16 tclass;
1190 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -05001191 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 u32 len;
1193
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001194 length = avc_has_perm(&selinux_state,
1195 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001196 SECCLASS_SECURITY, SECURITY__COMPUTE_MEMBER,
1197 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -05001199 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001202 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (!scon)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001204 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Eric Parisb77a4932010-11-23 11:40:08 -05001206 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001207 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (!tcon)
1209 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 length = -EINVAL;
1212 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001213 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001215 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001216 if (length)
1217 goto out;
1218
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001219 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001220 if (length)
1221 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001223 length = security_member_sid(state, ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001224 if (length)
1225 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001227 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001228 if (length)
1229 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Eric Parisb77a4932010-11-23 11:40:08 -05001231 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +02001233 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -04001234 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001235 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
1238 memcpy(buf, newcon, len);
1239 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240out:
Eric Parisb77a4932010-11-23 11:40:08 -05001241 kfree(newcon);
1242 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 kfree(scon);
1244 return length;
1245}
1246
1247static struct inode *sel_make_inode(struct super_block *sb, int mode)
1248{
1249 struct inode *ret = new_inode(sb);
1250
1251 if (ret) {
1252 ret->i_mode = mode;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001253 ret->i_atime = ret->i_mtime = ret->i_ctime = current_time(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255 return ret;
1256}
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1259 size_t count, loff_t *ppos)
1260{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001261 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 char *page = NULL;
1263 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 ssize_t ret;
1265 int cur_enforcing;
Al Viro496ad9a2013-01-23 17:07:38 -05001266 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001267 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001269 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Eric Parisb77a4932010-11-23 11:40:08 -05001271 ret = -EINVAL;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001272 if (index >= fsi->bool_num || strcmp(name,
1273 fsi->bool_pending_names[index]))
Jann Horn0da74122018-06-28 20:39:54 -04001274 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Eric Parisb77a4932010-11-23 11:40:08 -05001276 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001277 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001278 if (!page)
Jann Horn0da74122018-06-28 20:39:54 -04001279 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001281 cur_enforcing = security_get_bool_value(fsi->state, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (cur_enforcing < 0) {
1283 ret = cur_enforcing;
Jann Horn0da74122018-06-28 20:39:54 -04001284 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001287 fsi->bool_pending_values[index]);
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001288 mutex_unlock(&fsi->state->policy_mutex);
Jann Horn0da74122018-06-28 20:39:54 -04001289 ret = simple_read_from_buffer(buf, count, ppos, page, length);
1290out_free:
Eric Parisb77a4932010-11-23 11:40:08 -05001291 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return ret;
Jann Horn0da74122018-06-28 20:39:54 -04001293
1294out_unlock:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001295 mutex_unlock(&fsi->state->policy_mutex);
Jann Horn0da74122018-06-28 20:39:54 -04001296 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1300 size_t count, loff_t *ppos)
1301{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001302 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001304 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 int new_value;
Al Viro496ad9a2013-01-23 17:07:38 -05001306 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001307 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Jann Horn0da74122018-06-28 20:39:54 -04001309 if (count >= PAGE_SIZE)
1310 return -ENOMEM;
1311
1312 /* No partial writes. */
1313 if (*ppos != 0)
1314 return -EINVAL;
1315
1316 page = memdup_user_nul(buf, count);
1317 if (IS_ERR(page))
1318 return PTR_ERR(page);
1319
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001320 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001322 length = avc_has_perm(&selinux_state,
1323 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001324 SECCLASS_SECURITY, SECURITY__SETBOOL,
1325 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (length)
1327 goto out;
1328
Eric Parisb77a4932010-11-23 11:40:08 -05001329 length = -EINVAL;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001330 if (index >= fsi->bool_num || strcmp(name,
1331 fsi->bool_pending_names[index]))
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001332 goto out;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 length = -EINVAL;
1335 if (sscanf(page, "%d", &new_value) != 1)
1336 goto out;
1337
1338 if (new_value)
1339 new_value = 1;
1340
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001341 fsi->bool_pending_values[index] = new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 length = count;
1343
1344out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001345 mutex_unlock(&fsi->state->policy_mutex);
Al Viro8365a712015-12-24 00:08:06 -05001346 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return length;
1348}
1349
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001350static const struct file_operations sel_bool_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001351 .read = sel_read_bool,
1352 .write = sel_write_bool,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001353 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354};
1355
1356static ssize_t sel_commit_bools_write(struct file *filep,
1357 const char __user *buf,
1358 size_t count, loff_t *ppos)
1359{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001360 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001362 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 int new_value;
1364
Jann Horn0da74122018-06-28 20:39:54 -04001365 if (count >= PAGE_SIZE)
1366 return -ENOMEM;
1367
1368 /* No partial writes. */
1369 if (*ppos != 0)
1370 return -EINVAL;
1371
1372 page = memdup_user_nul(buf, count);
1373 if (IS_ERR(page))
1374 return PTR_ERR(page);
1375
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001376 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001378 length = avc_has_perm(&selinux_state,
1379 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001380 SECCLASS_SECURITY, SECURITY__SETBOOL,
1381 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (length)
1383 goto out;
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 length = -EINVAL;
1386 if (sscanf(page, "%d", &new_value) != 1)
1387 goto out;
1388
Eric Parisb77a4932010-11-23 11:40:08 -05001389 length = 0;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001390 if (new_value && fsi->bool_pending_values)
1391 length = security_set_bools(fsi->state, fsi->bool_num,
1392 fsi->bool_pending_values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Eric Parisb77a4932010-11-23 11:40:08 -05001394 if (!length)
1395 length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001398 mutex_unlock(&fsi->state->policy_mutex);
Al Viro8365a712015-12-24 00:08:06 -05001399 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return length;
1401}
1402
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001403static const struct file_operations sel_commit_bools_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001404 .write = sel_commit_bools_write,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001405 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406};
1407
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001408static void sel_remove_entries(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
Al Viroad521842014-12-24 14:56:48 -05001410 d_genocide(de);
1411 shrink_dcache_parent(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Daniel Burgener66ec3842020-08-19 15:59:33 -04001414static int sel_make_bools(struct selinux_policy *newpolicy, struct dentry *bool_dir,
1415 unsigned int *bool_num, char ***bool_pending_names,
1416 unsigned int **bool_pending_values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Ondrej Mosnacek60abd312020-02-03 12:27:20 +01001418 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 ssize_t len;
1420 struct dentry *dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 struct inode *inode = NULL;
1422 struct inode_security_struct *isec;
1423 char **names = NULL, *page;
Ondrej Mosnacek60abd312020-02-03 12:27:20 +01001424 u32 i, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 int *values = NULL;
1426 u32 sid;
1427
Eric Parisb77a4932010-11-23 11:40:08 -05001428 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001429 page = (char *)get_zeroed_page(GFP_KERNEL);
1430 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -05001431 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Stephen Smalley02a52c52020-08-07 09:29:34 -04001433 ret = security_get_bools(newpolicy, &num, &names, &values);
Eric Parisb77a4932010-11-23 11:40:08 -05001434 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 goto out;
1436
1437 for (i = 0; i < num; i++) {
Eric Parisb77a4932010-11-23 11:40:08 -05001438 ret = -ENOMEM;
Daniel Burgener66ec3842020-08-19 15:59:33 -04001439 dentry = d_alloc_name(bool_dir, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001440 if (!dentry)
1441 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Eric Parisb77a4932010-11-23 11:40:08 -05001443 ret = -ENOMEM;
Daniel Burgener66ec3842020-08-19 15:59:33 -04001444 inode = sel_make_inode(bool_dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
nixiaoming7e4237f2018-08-05 17:10:36 +08001445 if (!inode) {
1446 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001447 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001448 }
Eric Parisb77a4932010-11-23 11:40:08 -05001449
Eric Parisb77a4932010-11-23 11:40:08 -05001450 ret = -ENAMETOOLONG;
Al Virocc1dad72012-04-02 19:40:47 -04001451 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
nixiaoming7e4237f2018-08-05 17:10:36 +08001452 if (len >= PAGE_SIZE) {
1453 dput(dentry);
1454 iput(inode);
Eric Parisb77a4932010-11-23 11:40:08 -05001455 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001456 }
Eric Parisb77a4932010-11-23 11:40:08 -05001457
Casey Schaufler80788c22018-09-21 17:19:11 -07001458 isec = selinux_inode(inode);
Stephen Smalley02a52c52020-08-07 09:29:34 -04001459 ret = selinux_policy_genfs_sid(newpolicy, "selinuxfs", page,
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05001460 SECCLASS_FILE, &sid);
Gary Tierney4262fb52017-01-09 10:07:31 -05001461 if (ret) {
Gary Tierney900fde02017-01-09 10:07:32 -05001462 pr_warn_ratelimited("SELinux: no sid found, defaulting to security isid for %s\n",
1463 page);
1464 sid = SECINITSID_SECURITY;
Gary Tierney4262fb52017-01-09 10:07:31 -05001465 }
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 isec->sid = sid;
Andreas Gruenbacher42059112016-11-10 22:18:27 +01001468 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 inode->i_fop = &sel_bool_ops;
James Carterbce34bc2007-04-04 16:18:50 -04001470 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 d_add(dentry, inode);
1472 }
Daniel Burgener66ec3842020-08-19 15:59:33 -04001473 *bool_num = num;
1474 *bool_pending_names = names;
1475 *bool_pending_values = values;
Eric Parisb77a4932010-11-23 11:40:08 -05001476
1477 free_page((unsigned long)page);
1478 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479out:
1480 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (names) {
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001483 for (i = 0; i < num; i++)
1484 kfree(names[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 kfree(names);
1486 }
Davi Arnaut20c19e42005-10-23 12:57:16 -07001487 kfree(values);
Daniel Burgener66ec3842020-08-19 15:59:33 -04001488 sel_remove_entries(bool_dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001489
1490 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1494 size_t count, loff_t *ppos)
1495{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001496 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1497 struct selinux_state *state = fsi->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 char tmpbuf[TMPBUFLEN];
1499 ssize_t length;
1500
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001501 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1502 avc_get_cache_threshold(state->avc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1504}
1505
Eric Paris18729812008-04-17 14:15:45 -04001506static ssize_t sel_write_avc_cache_threshold(struct file *file,
1507 const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 size_t count, loff_t *ppos)
1509
1510{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001511 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1512 struct selinux_state *state = fsi->state;
Al Viro8365a712015-12-24 00:08:06 -05001513 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 ssize_t ret;
Heinrich Schuchardt309c5fa2016-06-10 23:14:26 +02001515 unsigned int new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001517 ret = avc_has_perm(&selinux_state,
1518 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001519 SECCLASS_SECURITY, SECURITY__SETSECPARAM,
1520 NULL);
Eric Parisb77a4932010-11-23 11:40:08 -05001521 if (ret)
Al Viro8365a712015-12-24 00:08:06 -05001522 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Eric Parisb77a4932010-11-23 11:40:08 -05001524 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -05001525 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Eric Parisb77a4932010-11-23 11:40:08 -05001527 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -05001528 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -05001529 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -05001530
Al Viro8365a712015-12-24 00:08:06 -05001531 page = memdup_user_nul(buf, count);
1532 if (IS_ERR(page))
1533 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Eric Parisb77a4932010-11-23 11:40:08 -05001535 ret = -EINVAL;
1536 if (sscanf(page, "%u", &new_value) != 1)
1537 goto out;
1538
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001539 avc_set_cache_threshold(state->avc, new_value);
Eric Parisb77a4932010-11-23 11:40:08 -05001540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542out:
Al Viro8365a712015-12-24 00:08:06 -05001543 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return ret;
1545}
1546
1547static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1548 size_t count, loff_t *ppos)
1549{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001550 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1551 struct selinux_state *state = fsi->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 char *page;
Eric Parisb77a4932010-11-23 11:40:08 -05001553 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001556 if (!page)
1557 return -ENOMEM;
1558
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001559 length = avc_get_hash_stats(state->avc, page);
Eric Parisb77a4932010-11-23 11:40:08 -05001560 if (length >= 0)
1561 length = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001563
1564 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01001567static ssize_t sel_read_sidtab_hash_stats(struct file *filp, char __user *buf,
1568 size_t count, loff_t *ppos)
1569{
1570 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1571 struct selinux_state *state = fsi->state;
1572 char *page;
1573 ssize_t length;
1574
1575 page = (char *)__get_free_page(GFP_KERNEL);
1576 if (!page)
1577 return -ENOMEM;
1578
1579 length = security_sidtab_hash_stats(state, page);
1580 if (length >= 0)
1581 length = simple_read_from_buffer(buf, count, ppos, page,
1582 length);
1583 free_page((unsigned long)page);
1584
1585 return length;
1586}
1587
1588static const struct file_operations sel_sidtab_hash_stats_ops = {
1589 .read = sel_read_sidtab_hash_stats,
1590 .llseek = generic_file_llseek,
1591};
1592
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001593static const struct file_operations sel_avc_cache_threshold_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 .read = sel_read_avc_cache_threshold,
1595 .write = sel_write_avc_cache_threshold,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001596 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597};
1598
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001599static const struct file_operations sel_avc_hash_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 .read = sel_read_avc_hash_stats,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001601 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602};
1603
1604#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1605static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1606{
1607 int cpu;
1608
Rusty Russell4f4b6c12009-01-01 10:12:15 +10301609 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 if (!cpu_possible(cpu))
1611 continue;
1612 *idx = cpu + 1;
1613 return &per_cpu(avc_cache_stats, cpu);
1614 }
Vasily Averin8d269a82020-02-01 10:47:47 +03001615 (*idx)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return NULL;
1617}
1618
1619static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1620{
1621 loff_t n = *pos - 1;
1622
1623 if (*pos == 0)
1624 return SEQ_START_TOKEN;
1625
1626 return sel_avc_get_stat_idx(&n);
1627}
1628
1629static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1630{
1631 return sel_avc_get_stat_idx(pos);
1632}
1633
1634static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1635{
1636 struct avc_cache_stats *st = v;
1637
Markus Elfring710a0642017-01-15 14:04:53 +01001638 if (v == SEQ_START_TOKEN) {
1639 seq_puts(seq,
1640 "lookups hits misses allocations reclaims frees\n");
1641 } else {
Linus Torvalds257313b2011-05-19 21:22:53 -07001642 unsigned int lookups = st->lookups;
1643 unsigned int misses = st->misses;
1644 unsigned int hits = lookups - misses;
1645 seq_printf(seq, "%u %u %u %u %u %u\n", lookups,
1646 hits, misses, st->allocations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 st->reclaims, st->frees);
Linus Torvalds257313b2011-05-19 21:22:53 -07001648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return 0;
1650}
1651
1652static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1653{ }
1654
Jan Engelhardt1996a102008-01-23 00:02:58 +01001655static const struct seq_operations sel_avc_cache_stats_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 .start = sel_avc_stats_seq_start,
1657 .next = sel_avc_stats_seq_next,
1658 .show = sel_avc_stats_seq_show,
1659 .stop = sel_avc_stats_seq_stop,
1660};
1661
1662static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1663{
1664 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1665}
1666
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001667static const struct file_operations sel_avc_cache_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 .open = sel_open_avc_cache_stats,
1669 .read = seq_read,
1670 .llseek = seq_lseek,
1671 .release = seq_release,
1672};
1673#endif
1674
1675static int sel_make_avc_files(struct dentry *dir)
1676{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001677 struct super_block *sb = dir->d_sb;
1678 struct selinux_fs_info *fsi = sb->s_fs_info;
Eric Parisb77a4932010-11-23 11:40:08 -05001679 int i;
Eric Biggerscda37122017-03-25 21:15:37 -07001680 static const struct tree_descr files[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 { "cache_threshold",
1682 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1683 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1684#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1685 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1686#endif
1687 };
1688
Nicolas Kaiser6e20a642006-01-06 00:11:22 -08001689 for (i = 0; i < ARRAY_SIZE(files); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 struct inode *inode;
1691 struct dentry *dentry;
1692
1693 dentry = d_alloc_name(dir, files[i].name);
Eric Parisb77a4932010-11-23 11:40:08 -05001694 if (!dentry)
1695 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
nixiaoming7e4237f2018-08-05 17:10:36 +08001698 if (!inode) {
1699 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001700 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001701 }
Eric Parisb77a4932010-11-23 11:40:08 -05001702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 inode->i_fop = files[i].ops;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001704 inode->i_ino = ++fsi->last_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 d_add(dentry, inode);
1706 }
Eric Parisb77a4932010-11-23 11:40:08 -05001707
1708 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709}
1710
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01001711static int sel_make_ss_files(struct dentry *dir)
1712{
1713 struct super_block *sb = dir->d_sb;
1714 struct selinux_fs_info *fsi = sb->s_fs_info;
1715 int i;
1716 static struct tree_descr files[] = {
1717 { "sidtab_hash_stats", &sel_sidtab_hash_stats_ops, S_IRUGO },
1718 };
1719
1720 for (i = 0; i < ARRAY_SIZE(files); i++) {
1721 struct inode *inode;
1722 struct dentry *dentry;
1723
1724 dentry = d_alloc_name(dir, files[i].name);
1725 if (!dentry)
1726 return -ENOMEM;
1727
1728 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
1729 if (!inode) {
1730 dput(dentry);
1731 return -ENOMEM;
1732 }
1733
1734 inode->i_fop = files[i].ops;
1735 inode->i_ino = ++fsi->last_ino;
1736 d_add(dentry, inode);
1737 }
1738
1739 return 0;
1740}
1741
Eric Paris18729812008-04-17 14:15:45 -04001742static ssize_t sel_read_initcon(struct file *file, char __user *buf,
James Carterf0ee2e42007-04-04 10:11:29 -04001743 size_t count, loff_t *ppos)
1744{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001745 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
James Carterf0ee2e42007-04-04 10:11:29 -04001746 char *con;
1747 u32 sid, len;
1748 ssize_t ret;
1749
Al Viro496ad9a2013-01-23 17:07:38 -05001750 sid = file_inode(file)->i_ino&SEL_INO_MASK;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001751 ret = security_sid_to_context(fsi->state, sid, &con, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001752 if (ret)
James Carterf0ee2e42007-04-04 10:11:29 -04001753 return ret;
1754
1755 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1756 kfree(con);
1757 return ret;
1758}
1759
1760static const struct file_operations sel_initcon_ops = {
1761 .read = sel_read_initcon,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001762 .llseek = generic_file_llseek,
James Carterf0ee2e42007-04-04 10:11:29 -04001763};
1764
1765static int sel_make_initcon_files(struct dentry *dir)
1766{
Eric Parisb77a4932010-11-23 11:40:08 -05001767 int i;
James Carterf0ee2e42007-04-04 10:11:29 -04001768
1769 for (i = 1; i <= SECINITSID_NUM; i++) {
1770 struct inode *inode;
1771 struct dentry *dentry;
Stephen Smalleye3e0b582020-02-24 11:10:23 -05001772 const char *s = security_get_initial_sid_context(i);
1773
1774 if (!s)
1775 continue;
1776 dentry = d_alloc_name(dir, s);
Eric Parisb77a4932010-11-23 11:40:08 -05001777 if (!dentry)
1778 return -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001779
1780 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001781 if (!inode) {
1782 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001783 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001784 }
Eric Parisb77a4932010-11-23 11:40:08 -05001785
James Carterf0ee2e42007-04-04 10:11:29 -04001786 inode->i_fop = &sel_initcon_ops;
1787 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1788 d_add(dentry, inode);
1789 }
Eric Parisb77a4932010-11-23 11:40:08 -05001790
1791 return 0;
James Carterf0ee2e42007-04-04 10:11:29 -04001792}
1793
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001794static inline unsigned long sel_class_to_ino(u16 class)
1795{
1796 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1797}
1798
1799static inline u16 sel_ino_to_class(unsigned long ino)
1800{
Eric Paris92ae9e82012-04-04 13:46:46 -04001801 return (ino & SEL_INO_MASK) / (SEL_VEC_MAX + 1);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001802}
1803
1804static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1805{
1806 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1807}
1808
1809static inline u32 sel_ino_to_perm(unsigned long ino)
1810{
1811 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1812}
1813
Eric Paris18729812008-04-17 14:15:45 -04001814static ssize_t sel_read_class(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001815 size_t count, loff_t *ppos)
1816{
Al Viro496ad9a2013-01-23 17:07:38 -05001817 unsigned long ino = file_inode(file)->i_ino;
Al Virocc1dad72012-04-02 19:40:47 -04001818 char res[TMPBUFLEN];
liuyang347e78c872020-01-07 09:39:18 +08001819 ssize_t len = scnprintf(res, sizeof(res), "%d", sel_ino_to_class(ino));
Al Virocc1dad72012-04-02 19:40:47 -04001820 return simple_read_from_buffer(buf, count, ppos, res, len);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001821}
1822
1823static const struct file_operations sel_class_ops = {
1824 .read = sel_read_class,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001825 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001826};
1827
Eric Paris18729812008-04-17 14:15:45 -04001828static ssize_t sel_read_perm(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001829 size_t count, loff_t *ppos)
1830{
Al Viro496ad9a2013-01-23 17:07:38 -05001831 unsigned long ino = file_inode(file)->i_ino;
Al Virocc1dad72012-04-02 19:40:47 -04001832 char res[TMPBUFLEN];
liuyang347e78c872020-01-07 09:39:18 +08001833 ssize_t len = scnprintf(res, sizeof(res), "%d", sel_ino_to_perm(ino));
Al Virocc1dad72012-04-02 19:40:47 -04001834 return simple_read_from_buffer(buf, count, ppos, res, len);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001835}
1836
1837static const struct file_operations sel_perm_ops = {
1838 .read = sel_read_perm,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001839 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001840};
1841
Paul Moore3bb56b22008-01-29 08:38:19 -05001842static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1843 size_t count, loff_t *ppos)
1844{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001845 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Paul Moore3bb56b22008-01-29 08:38:19 -05001846 int value;
1847 char tmpbuf[TMPBUFLEN];
1848 ssize_t length;
Al Viro496ad9a2013-01-23 17:07:38 -05001849 unsigned long i_ino = file_inode(file)->i_ino;
Paul Moore3bb56b22008-01-29 08:38:19 -05001850
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001851 value = security_policycap_supported(fsi->state, i_ino & SEL_INO_MASK);
Paul Moore3bb56b22008-01-29 08:38:19 -05001852 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1853
1854 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1855}
1856
1857static const struct file_operations sel_policycap_ops = {
1858 .read = sel_read_policycap,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001859 .llseek = generic_file_llseek,
Paul Moore3bb56b22008-01-29 08:38:19 -05001860};
1861
Stephen Smalley02a52c52020-08-07 09:29:34 -04001862static int sel_make_perm_files(struct selinux_policy *newpolicy,
1863 char *objclass, int classvalue,
1864 struct dentry *dir)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001865{
Eric Parisb77a4932010-11-23 11:40:08 -05001866 int i, rc, nperms;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001867 char **perms;
1868
Stephen Smalley02a52c52020-08-07 09:29:34 -04001869 rc = security_get_permissions(newpolicy, objclass, &perms, &nperms);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001870 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001871 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001872
1873 for (i = 0; i < nperms; i++) {
1874 struct inode *inode;
1875 struct dentry *dentry;
1876
Eric Parisb77a4932010-11-23 11:40:08 -05001877 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001878 dentry = d_alloc_name(dir, perms[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001879 if (!dentry)
1880 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001881
Eric Parisb77a4932010-11-23 11:40:08 -05001882 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001883 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001884 if (!inode) {
1885 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001886 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001887 }
Eric Parisb77a4932010-11-23 11:40:08 -05001888
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001889 inode->i_fop = &sel_perm_ops;
1890 /* i+1 since perm values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001891 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001892 d_add(dentry, inode);
1893 }
Eric Parisb77a4932010-11-23 11:40:08 -05001894 rc = 0;
1895out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001896 for (i = 0; i < nperms; i++)
1897 kfree(perms[i]);
1898 kfree(perms);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001899 return rc;
1900}
1901
Stephen Smalley02a52c52020-08-07 09:29:34 -04001902static int sel_make_class_dir_entries(struct selinux_policy *newpolicy,
1903 char *classname, int index,
1904 struct dentry *dir)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001905{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001906 struct super_block *sb = dir->d_sb;
1907 struct selinux_fs_info *fsi = sb->s_fs_info;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001908 struct dentry *dentry = NULL;
1909 struct inode *inode = NULL;
1910 int rc;
1911
1912 dentry = d_alloc_name(dir, "index");
Eric Parisb77a4932010-11-23 11:40:08 -05001913 if (!dentry)
1914 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001915
1916 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001917 if (!inode) {
1918 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001919 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001920 }
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001921
1922 inode->i_fop = &sel_class_ops;
1923 inode->i_ino = sel_class_to_ino(index);
1924 d_add(dentry, inode);
1925
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001926 dentry = sel_make_dir(dir, "perms", &fsi->last_class_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04001927 if (IS_ERR(dentry))
1928 return PTR_ERR(dentry);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001929
Stephen Smalley02a52c52020-08-07 09:29:34 -04001930 rc = sel_make_perm_files(newpolicy, classname, index, dentry);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001931
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001932 return rc;
1933}
1934
Daniel Burgener66ec3842020-08-19 15:59:33 -04001935static int sel_make_classes(struct selinux_policy *newpolicy,
1936 struct dentry *class_dir,
1937 unsigned long *last_class_ino)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001938{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001939
Eric Parisb77a4932010-11-23 11:40:08 -05001940 int rc, nclasses, i;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001941 char **classes;
1942
Stephen Smalley02a52c52020-08-07 09:29:34 -04001943 rc = security_get_classes(newpolicy, &classes, &nclasses);
Eric Parisb77a4932010-11-23 11:40:08 -05001944 if (rc)
1945 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001946
1947 /* +2 since classes are 1-indexed */
Daniel Burgener66ec3842020-08-19 15:59:33 -04001948 *last_class_ino = sel_class_to_ino(nclasses + 2);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001949
1950 for (i = 0; i < nclasses; i++) {
1951 struct dentry *class_name_dir;
1952
Daniel Burgener66ec3842020-08-19 15:59:33 -04001953 class_name_dir = sel_make_dir(class_dir, classes[i],
1954 last_class_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04001955 if (IS_ERR(class_name_dir)) {
1956 rc = PTR_ERR(class_name_dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001957 goto out;
Al Viroa1c2aa12012-03-18 20:36:59 -04001958 }
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001959
1960 /* i+1 since class values are 1-indexed */
Stephen Smalley02a52c52020-08-07 09:29:34 -04001961 rc = sel_make_class_dir_entries(newpolicy, classes[i], i + 1,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001962 class_name_dir);
1963 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001964 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001965 }
Eric Parisb77a4932010-11-23 11:40:08 -05001966 rc = 0;
1967out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001968 for (i = 0; i < nclasses; i++)
1969 kfree(classes[i]);
1970 kfree(classes);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001971 return rc;
1972}
1973
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001974static int sel_make_policycap(struct selinux_fs_info *fsi)
Paul Moore3bb56b22008-01-29 08:38:19 -05001975{
1976 unsigned int iter;
1977 struct dentry *dentry = NULL;
1978 struct inode *inode = NULL;
1979
Paul Moore3bb56b22008-01-29 08:38:19 -05001980 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
Stephen Smalley4dc2fce2017-05-18 16:58:31 -04001981 if (iter < ARRAY_SIZE(selinux_policycap_names))
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001982 dentry = d_alloc_name(fsi->policycap_dir,
Stephen Smalley4dc2fce2017-05-18 16:58:31 -04001983 selinux_policycap_names[iter]);
Paul Moore3bb56b22008-01-29 08:38:19 -05001984 else
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001985 dentry = d_alloc_name(fsi->policycap_dir, "unknown");
Paul Moore3bb56b22008-01-29 08:38:19 -05001986
1987 if (dentry == NULL)
1988 return -ENOMEM;
1989
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001990 inode = sel_make_inode(fsi->sb, S_IFREG | 0444);
nixiaoming7e4237f2018-08-05 17:10:36 +08001991 if (inode == NULL) {
1992 dput(dentry);
Paul Moore3bb56b22008-01-29 08:38:19 -05001993 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001994 }
Paul Moore3bb56b22008-01-29 08:38:19 -05001995
1996 inode->i_fop = &sel_policycap_ops;
1997 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1998 d_add(dentry, inode);
1999 }
2000
2001 return 0;
2002}
2003
Al Viroa1c2aa12012-03-18 20:36:59 -04002004static struct dentry *sel_make_dir(struct dentry *dir, const char *name,
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04002005 unsigned long *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Al Viroa1c2aa12012-03-18 20:36:59 -04002007 struct dentry *dentry = d_alloc_name(dir, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 struct inode *inode;
2009
Al Viroa1c2aa12012-03-18 20:36:59 -04002010 if (!dentry)
2011 return ERR_PTR(-ENOMEM);
2012
2013 inode = sel_make_inode(dir->d_sb, S_IFDIR | S_IRUGO | S_IXUGO);
2014 if (!inode) {
2015 dput(dentry);
2016 return ERR_PTR(-ENOMEM);
2017 }
Eric Parisb77a4932010-11-23 11:40:08 -05002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 inode->i_op = &simple_dir_inode_operations;
2020 inode->i_fop = &simple_dir_operations;
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04002021 inode->i_ino = ++(*ino);
James Morris40e906f2006-03-22 00:09:16 -08002022 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -07002023 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 d_add(dentry, inode);
James Morrisedb20fb2006-03-22 00:09:20 -08002025 /* bump link count on parent directory, too */
David Howellsce0b16d2015-02-19 10:47:02 +00002026 inc_nlink(d_inode(dir));
Eric Parisb77a4932010-11-23 11:40:08 -05002027
Al Viroa1c2aa12012-03-18 20:36:59 -04002028 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029}
2030
Daniel Burgener0eea6092020-08-19 15:59:35 -04002031static struct dentry *sel_make_disconnected_dir(struct super_block *sb,
2032 unsigned long *ino)
2033{
2034 struct inode *inode = sel_make_inode(sb, S_IFDIR | S_IRUGO | S_IXUGO);
2035
2036 if (!inode)
2037 return ERR_PTR(-ENOMEM);
2038
2039 inode->i_op = &simple_dir_inode_operations;
2040 inode->i_fop = &simple_dir_operations;
2041 inode->i_ino = ++(*ino);
2042 /* directory inodes start off with i_nlink == 2 (for "." entry) */
2043 inc_nlink(inode);
2044 return d_obtain_alias(inode);
2045}
2046
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002047#define NULL_FILE_NAME "null"
2048
David Howells920f50b2019-03-25 16:38:30 +00002049static int sel_fill_super(struct super_block *sb, struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002051 struct selinux_fs_info *fsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 int ret;
2053 struct dentry *dentry;
Al Viroa1c2aa12012-03-18 20:36:59 -04002054 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 struct inode_security_struct *isec;
2056
Eric Biggerscda37122017-03-25 21:15:37 -07002057 static const struct tree_descr selinux_files[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
2059 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
Stephen Smalleyce9982d2005-11-08 21:34:33 -08002060 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
2062 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
2063 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
2064 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
2065 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
2066 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
2067 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
2068 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
2069 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
2070 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
Eric Paris3f120702007-09-21 14:37:10 -04002071 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
2072 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
KaiGai Kohei11904162010-09-14 18:28:39 +09002073 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
Eric Paris72e8c8592012-02-16 15:08:39 -05002074 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUGO},
Andrew Perepechkof9df6452015-12-24 11:09:41 -05002075 [SEL_VALIDATE_TRANS] = {"validatetrans", &sel_transition_ops,
2076 S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /* last one */ {""}
2078 };
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002079
2080 ret = selinux_fs_info_create(sb);
2081 if (ret)
2082 goto err;
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
2085 if (ret)
James Morris161ce452006-03-22 00:09:17 -08002086 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002088 fsi = sb->s_fs_info;
2089 fsi->bool_dir = sel_make_dir(sb->s_root, BOOL_DIR_NAME, &fsi->last_ino);
2090 if (IS_ERR(fsi->bool_dir)) {
2091 ret = PTR_ERR(fsi->bool_dir);
2092 fsi->bool_dir = NULL;
James Morris161ce452006-03-22 00:09:17 -08002093 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Eric Parisb77a4932010-11-23 11:40:08 -05002096 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05002098 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08002099 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Eric Parisb77a4932010-11-23 11:40:08 -05002101 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08002103 if (!inode) {
2104 dput(dentry);
James Morris161ce452006-03-22 00:09:17 -08002105 goto err;
nixiaoming7e4237f2018-08-05 17:10:36 +08002106 }
Eric Parisb77a4932010-11-23 11:40:08 -05002107
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002108 inode->i_ino = ++fsi->last_ino;
Casey Schaufler80788c22018-09-21 17:19:11 -07002109 isec = selinux_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 isec->sid = SECINITSID_DEVNULL;
2111 isec->sclass = SECCLASS_CHR_FILE;
Andreas Gruenbacher42059112016-11-10 22:18:27 +01002112 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
2115 d_add(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002117 dentry = sel_make_dir(sb->s_root, "avc", &fsi->last_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04002118 if (IS_ERR(dentry)) {
2119 ret = PTR_ERR(dentry);
James Morris161ce452006-03-22 00:09:17 -08002120 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 ret = sel_make_avc_files(dentry);
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01002124
2125 dentry = sel_make_dir(sb->s_root, "ss", &fsi->last_ino);
2126 if (IS_ERR(dentry)) {
2127 ret = PTR_ERR(dentry);
2128 goto err;
2129 }
2130
2131 ret = sel_make_ss_files(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (ret)
James Morris161ce452006-03-22 00:09:17 -08002133 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04002134
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002135 dentry = sel_make_dir(sb->s_root, "initial_contexts", &fsi->last_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04002136 if (IS_ERR(dentry)) {
2137 ret = PTR_ERR(dentry);
James Carterf0ee2e42007-04-04 10:11:29 -04002138 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002139 }
James Carterf0ee2e42007-04-04 10:11:29 -04002140
2141 ret = sel_make_initcon_files(dentry);
2142 if (ret)
2143 goto err;
2144
Daniel Burgener613ba182020-08-19 15:59:34 -04002145 fsi->class_dir = sel_make_dir(sb->s_root, CLASS_DIR_NAME, &fsi->last_ino);
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002146 if (IS_ERR(fsi->class_dir)) {
2147 ret = PTR_ERR(fsi->class_dir);
2148 fsi->class_dir = NULL;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04002149 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002150 }
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04002151
Daniel Burgener613ba182020-08-19 15:59:34 -04002152 fsi->policycap_dir = sel_make_dir(sb->s_root, POLICYCAP_DIR_NAME,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002153 &fsi->last_ino);
2154 if (IS_ERR(fsi->policycap_dir)) {
2155 ret = PTR_ERR(fsi->policycap_dir);
2156 fsi->policycap_dir = NULL;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04002157 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002158 }
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002159
Stephen Smalley02a52c52020-08-07 09:29:34 -04002160 ret = sel_make_policycap(fsi);
2161 if (ret) {
2162 pr_err("SELinux: failed to load policy capabilities\n");
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002163 goto err;
Stephen Smalley02a52c52020-08-07 09:29:34 -04002164 }
2165
Eric Parisb77a4932010-11-23 11:40:08 -05002166 return 0;
James Morris161ce452006-03-22 00:09:17 -08002167err:
peter enderborgf8b69a52018-06-12 10:09:06 +02002168 pr_err("SELinux: %s: failed while creating inodes\n",
Eric Paris744ba352008-04-17 11:52:44 -04002169 __func__);
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002170
2171 selinux_fs_info_free(sb);
2172
Eric Parisb77a4932010-11-23 11:40:08 -05002173 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
David Howells920f50b2019-03-25 16:38:30 +00002176static int sel_get_tree(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
David Howells920f50b2019-03-25 16:38:30 +00002178 return get_tree_single(fc, sel_fill_super);
2179}
2180
2181static const struct fs_context_operations sel_context_ops = {
2182 .get_tree = sel_get_tree,
2183};
2184
2185static int sel_init_fs_context(struct fs_context *fc)
2186{
2187 fc->ops = &sel_context_ops;
2188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002191static void sel_kill_sb(struct super_block *sb)
2192{
2193 selinux_fs_info_free(sb);
2194 kill_litter_super(sb);
2195}
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197static struct file_system_type sel_fs_type = {
2198 .name = "selinuxfs",
David Howells920f50b2019-03-25 16:38:30 +00002199 .init_fs_context = sel_init_fs_context,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002200 .kill_sb = sel_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201};
2202
Ondrej Mosnacekcd2bb4c2021-01-06 14:26:21 +01002203static struct vfsmount *selinuxfs_mount __ro_after_init;
2204struct path selinux_null __ro_after_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206static int __init init_sel_fs(void)
2207{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002208 struct qstr null_name = QSTR_INIT(NULL_FILE_NAME,
2209 sizeof(NULL_FILE_NAME)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 int err;
2211
Stephen Smalley6c5a6822019-12-17 09:15:10 -05002212 if (!selinux_enabled_boot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 return 0;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002214
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002215 err = sysfs_create_mount_point(fs_kobj, "selinux");
2216 if (err)
2217 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 err = register_filesystem(&sel_fs_type);
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002220 if (err) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002221 sysfs_remove_mount_point(fs_kobj, "selinux");
Eric Parisb77a4932010-11-23 11:40:08 -05002222 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002223 }
Eric Parisb77a4932010-11-23 11:40:08 -05002224
Al Viro765927b2012-06-26 21:58:53 +04002225 selinux_null.mnt = selinuxfs_mount = kern_mount(&sel_fs_type);
Eric Parisb77a4932010-11-23 11:40:08 -05002226 if (IS_ERR(selinuxfs_mount)) {
peter enderborgf8b69a52018-06-12 10:09:06 +02002227 pr_err("selinuxfs: could not mount!\n");
Eric Parisb77a4932010-11-23 11:40:08 -05002228 err = PTR_ERR(selinuxfs_mount);
2229 selinuxfs_mount = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 }
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002231 selinux_null.dentry = d_hash_and_lookup(selinux_null.mnt->mnt_root,
2232 &null_name);
2233 if (IS_ERR(selinux_null.dentry)) {
2234 pr_err("selinuxfs: could not lookup null!\n");
2235 err = PTR_ERR(selinux_null.dentry);
2236 selinux_null.dentry = NULL;
2237 }
Eric Parisb77a4932010-11-23 11:40:08 -05002238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 return err;
2240}
2241
2242__initcall(init_sel_fs);
2243
2244#ifdef CONFIG_SECURITY_SELINUX_DISABLE
2245void exit_sel_fs(void)
2246{
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002247 sysfs_remove_mount_point(fs_kobj, "selinux");
Stephen Smalleyfd40ffc2018-04-09 14:36:05 -04002248 dput(selinux_null.dentry);
Tim Chen423e0ab2011-07-19 09:32:38 -07002249 kern_unmount(selinuxfs_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 unregister_filesystem(&sel_fs_type);
2251}
2252#endif