blob: 4bde570d56a2ccd82b6c841df82ce8934d891f64 [file] [log] [blame]
Thomas Gleixnera10e7632019-05-31 01:09:32 -07001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* Updated: Karl MacMillan <kmacmillan@tresys.com>
3 *
Eric Paris18729812008-04-17 14:15:45 -04004 * Added conditional policy language extensions
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Paul Moore82c21bf2011-08-01 11:10:33 +00006 * Updated: Hewlett-Packard <paul@paul-moore.com>
Paul Moore3bb56b22008-01-29 08:38:19 -05007 *
Eric Paris18729812008-04-17 14:15:45 -04008 * Added support for the policy capability bitmap
Paul Moore3bb56b22008-01-29 08:38:19 -05009 *
10 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
12 * Copyright (C) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/pagemap.h>
17#include <linux/slab.h>
18#include <linux/vmalloc.h>
19#include <linux/fs.h>
David Howells920f50b2019-03-25 16:38:30 +000020#include <linux/fs_context.h>
Stephen Smalley0619f0f2018-03-20 11:59:11 -040021#include <linux/mount.h>
Ingo Molnarbb0030792006-03-22 00:09:14 -080022#include <linux/mutex.h>
Daniel Burgener0eea6092020-08-19 15:59:35 -040023#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/string.h>
26#include <linux/security.h>
27#include <linux/major.h>
28#include <linux/seq_file.h>
29#include <linux/percpu.h>
Steve Grubbaf601e42006-01-04 14:08:39 +000030#include <linux/audit.h>
Eric Parisf5269712008-05-14 11:27:45 -040031#include <linux/uaccess.h>
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -070032#include <linux/kobject.h>
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -040033#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/* selinuxfs pseudo filesystem for exporting the security policy API.
36 Based on the proc code and the fs/nfsd/nfsctl.c code. */
37
38#include "flask.h"
39#include "avc.h"
40#include "avc_ss.h"
41#include "security.h"
42#include "objsec.h"
43#include "conditional.h"
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045enum sel_inos {
46 SEL_ROOT_INO = 2,
47 SEL_LOAD, /* load policy */
48 SEL_ENFORCE, /* get or set enforcing status */
49 SEL_CONTEXT, /* validate context */
50 SEL_ACCESS, /* compute access decision */
51 SEL_CREATE, /* compute create labeling decision */
52 SEL_RELABEL, /* compute relabeling decision */
53 SEL_USER, /* compute reachable user contexts */
54 SEL_POLICYVERS, /* return policy version for this kernel */
55 SEL_COMMIT_BOOLS, /* commit new boolean values */
56 SEL_MLS, /* return if MLS policy is enabled */
57 SEL_DISABLE, /* disable SELinux until next reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 SEL_MEMBER, /* compute polyinstantiation membership decision */
59 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
James Morris4e5ab4c2006-06-09 00:33:33 -070060 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
Eric Paris3f120702007-09-21 14:37:10 -040061 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
62 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
KaiGai Kohei11904162010-09-14 18:28:39 +090063 SEL_STATUS, /* export current status using mmap() */
Eric Pariscee74f42010-10-13 17:50:25 -040064 SEL_POLICY, /* allow userspace to read the in kernel policy */
Andrew Perepechkof9df6452015-12-24 11:09:41 -050065 SEL_VALIDATE_TRANS, /* compute validatetrans decision */
James Carter6174eaf2007-04-04 16:18:39 -040066 SEL_INO_NEXT, /* The next inode number to use */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Stephen Smalley0619f0f2018-03-20 11:59:11 -040069struct selinux_fs_info {
70 struct dentry *bool_dir;
71 unsigned int bool_num;
72 char **bool_pending_names;
73 unsigned int *bool_pending_values;
74 struct dentry *class_dir;
75 unsigned long last_class_ino;
76 bool policy_opened;
77 struct dentry *policycap_dir;
Stephen Smalley0619f0f2018-03-20 11:59:11 -040078 unsigned long last_ino;
79 struct selinux_state *state;
80 struct super_block *sb;
81};
82
83static int selinux_fs_info_create(struct super_block *sb)
84{
85 struct selinux_fs_info *fsi;
86
87 fsi = kzalloc(sizeof(*fsi), GFP_KERNEL);
88 if (!fsi)
89 return -ENOMEM;
90
Stephen Smalley0619f0f2018-03-20 11:59:11 -040091 fsi->last_ino = SEL_INO_NEXT - 1;
92 fsi->state = &selinux_state;
93 fsi->sb = sb;
94 sb->s_fs_info = fsi;
95 return 0;
96}
97
98static void selinux_fs_info_free(struct super_block *sb)
99{
100 struct selinux_fs_info *fsi = sb->s_fs_info;
101 int i;
102
103 if (fsi) {
104 for (i = 0; i < fsi->bool_num; i++)
105 kfree(fsi->bool_pending_names[i]);
106 kfree(fsi->bool_pending_names);
107 kfree(fsi->bool_pending_values);
108 }
109 kfree(sb->s_fs_info);
110 sb->s_fs_info = NULL;
111}
James Carter6174eaf2007-04-04 16:18:39 -0400112
Paul Moore3bb56b22008-01-29 08:38:19 -0500113#define SEL_INITCON_INO_OFFSET 0x01000000
114#define SEL_BOOL_INO_OFFSET 0x02000000
115#define SEL_CLASS_INO_OFFSET 0x04000000
116#define SEL_POLICYCAP_INO_OFFSET 0x08000000
117#define SEL_INO_MASK 0x00ffffff
James Carterf0ee2e42007-04-04 10:11:29 -0400118
Daniel Burgener613ba182020-08-19 15:59:34 -0400119#define BOOL_DIR_NAME "booleans"
120#define CLASS_DIR_NAME "class"
121#define POLICYCAP_DIR_NAME "policy_capabilities"
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define TMPBUFLEN 12
124static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
125 size_t count, loff_t *ppos)
126{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400127 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 char tmpbuf[TMPBUFLEN];
129 ssize_t length;
130
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500131 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400132 enforcing_enabled(fsi->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
134}
135
136#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Eric Paris18729812008-04-17 14:15:45 -0400137static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 size_t count, loff_t *ppos)
139
140{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400141 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
142 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500143 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 ssize_t length;
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500145 int old_value, new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Davi Arnautbfd51622005-10-30 14:59:24 -0800147 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500148 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500149
150 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500151 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500152 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500153
Al Viro8365a712015-12-24 00:08:06 -0500154 page = memdup_user_nul(buf, count);
155 if (IS_ERR(page))
156 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 length = -EINVAL;
159 if (sscanf(page, "%d", &new_value) != 1)
160 goto out;
161
Stephen Smalleyea49d10ee2016-11-18 09:30:38 -0500162 new_value = !!new_value;
163
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400164 old_value = enforcing_enabled(state);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500165 if (new_value != old_value) {
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500166 length = avc_has_perm(&selinux_state,
167 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500168 SECCLASS_SECURITY, SECURITY__SETENFORCE,
169 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (length)
171 goto out;
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -0400172 audit_log(audit_context(), GFP_KERNEL, AUDIT_MAC_STATUS,
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400173 "enforcing=%d old_enforcing=%d auid=%u ses=%u"
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500174 " enabled=1 old-enabled=1 lsm=selinux res=1",
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500175 new_value, old_value,
Eric W. Biederman581abc02012-08-20 00:09:36 -0700176 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500177 audit_get_sessionid(current));
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400178 enforcing_set(state, new_value);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500179 if (new_value)
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500180 avc_ss_reset(state->avc, 0);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500181 selnl_notify_setenforce(new_value);
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400182 selinux_status_update_setenforce(state, new_value);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -0500183 if (!new_value)
Janne Karhunen42df7442019-06-14 15:20:14 +0300184 call_blocking_lsm_notifier(LSM_POLICY_CHANGE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 length = count;
187out:
Al Viro8365a712015-12-24 00:08:06 -0500188 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return length;
190}
191#else
192#define sel_write_enforce NULL
193#endif
194
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800195static const struct file_operations sel_enforce_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 .read = sel_read_enforce,
197 .write = sel_write_enforce,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200198 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199};
200
Eric Paris3f120702007-09-21 14:37:10 -0400201static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
202 size_t count, loff_t *ppos)
203{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400204 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
205 struct selinux_state *state = fsi->state;
Eric Paris3f120702007-09-21 14:37:10 -0400206 char tmpbuf[TMPBUFLEN];
207 ssize_t length;
Al Viro496ad9a2013-01-23 17:07:38 -0500208 ino_t ino = file_inode(filp)->i_ino;
Eric Paris3f120702007-09-21 14:37:10 -0400209 int handle_unknown = (ino == SEL_REJECT_UNKNOWN) ?
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400210 security_get_reject_unknown(state) :
211 !security_get_allow_unknown(state);
Eric Paris3f120702007-09-21 14:37:10 -0400212
213 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
214 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
215}
216
217static const struct file_operations sel_handle_unknown_ops = {
218 .read = sel_read_handle_unknown,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200219 .llseek = generic_file_llseek,
Eric Paris3f120702007-09-21 14:37:10 -0400220};
221
KaiGai Kohei11904162010-09-14 18:28:39 +0900222static int sel_open_handle_status(struct inode *inode, struct file *filp)
223{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400224 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
225 struct page *status = selinux_kernel_status_page(fsi->state);
KaiGai Kohei11904162010-09-14 18:28:39 +0900226
227 if (!status)
228 return -ENOMEM;
229
230 filp->private_data = status;
231
232 return 0;
233}
234
235static ssize_t sel_read_handle_status(struct file *filp, char __user *buf,
236 size_t count, loff_t *ppos)
237{
238 struct page *status = filp->private_data;
239
240 BUG_ON(!status);
241
242 return simple_read_from_buffer(buf, count, ppos,
243 page_address(status),
244 sizeof(struct selinux_kernel_status));
245}
246
247static int sel_mmap_handle_status(struct file *filp,
248 struct vm_area_struct *vma)
249{
250 struct page *status = filp->private_data;
251 unsigned long size = vma->vm_end - vma->vm_start;
252
253 BUG_ON(!status);
254
255 /* only allows one page from the head */
256 if (vma->vm_pgoff > 0 || size != PAGE_SIZE)
257 return -EIO;
258 /* disallow writable mapping */
259 if (vma->vm_flags & VM_WRITE)
260 return -EPERM;
261 /* disallow mprotect() turns it into writable */
262 vma->vm_flags &= ~VM_MAYWRITE;
263
264 return remap_pfn_range(vma, vma->vm_start,
265 page_to_pfn(status),
266 size, vma->vm_page_prot);
267}
268
269static const struct file_operations sel_handle_status_ops = {
270 .open = sel_open_handle_status,
271 .read = sel_read_handle_status,
272 .mmap = sel_mmap_handle_status,
273 .llseek = generic_file_llseek,
274};
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Eric Paris18729812008-04-17 14:15:45 -0400277static ssize_t sel_write_disable(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 size_t count, loff_t *ppos)
279
280{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400281 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Al Viro8365a712015-12-24 00:08:06 -0500282 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 ssize_t length;
284 int new_value;
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400285 int enforcing;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Paul Moore89b223b2019-12-18 21:45:08 -0500287 /* NOTE: we are now officially considering runtime disable as
288 * deprecated, and using it will become increasingly painful
289 * (e.g. sleeping/blocking) as we progress through future
290 * kernel releases until eventually it is removed
291 */
292 pr_err("SELinux: Runtime disable is deprecated, use selinux=0 on the kernel cmdline.\n");
293
Davi Arnautbfd51622005-10-30 14:59:24 -0800294 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500295 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500296
297 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500298 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500299 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500300
Al Viro8365a712015-12-24 00:08:06 -0500301 page = memdup_user_nul(buf, count);
302 if (IS_ERR(page))
303 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 length = -EINVAL;
306 if (sscanf(page, "%d", &new_value) != 1)
307 goto out;
308
309 if (new_value) {
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400310 enforcing = enforcing_enabled(fsi->state);
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400311 length = selinux_disable(fsi->state);
Eric Parisb77a4932010-11-23 11:40:08 -0500312 if (length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 goto out;
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -0400314 audit_log(audit_context(), GFP_KERNEL, AUDIT_MAC_STATUS,
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400315 "enforcing=%d old_enforcing=%d auid=%u ses=%u"
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500316 " enabled=0 old-enabled=1 lsm=selinux res=1",
Richard Guy Briggs4195ed42018-04-09 19:34:22 -0400317 enforcing, enforcing,
Eric W. Biederman581abc02012-08-20 00:09:36 -0700318 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Stephen Smalley6c5a6822019-12-17 09:15:10 -0500319 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321
322 length = count;
323out:
Al Viro8365a712015-12-24 00:08:06 -0500324 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return length;
326}
327#else
328#define sel_write_disable NULL
329#endif
330
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800331static const struct file_operations sel_disable_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 .write = sel_write_disable,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200333 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334};
335
336static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
Eric Paris18729812008-04-17 14:15:45 -0400337 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 char tmpbuf[TMPBUFLEN];
340 ssize_t length;
341
342 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
343 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
344}
345
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800346static const struct file_operations sel_policyvers_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 .read = sel_read_policyvers,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200348 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
351/* declaration for sel_write_load */
Daniel Burgener66ec3842020-08-19 15:59:33 -0400352static int sel_make_bools(struct selinux_policy *newpolicy, struct dentry *bool_dir,
353 unsigned int *bool_num, char ***bool_pending_names,
354 unsigned int **bool_pending_values);
355static int sel_make_classes(struct selinux_policy *newpolicy,
356 struct dentry *class_dir,
357 unsigned long *last_class_ino);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -0400358
359/* declaration for sel_make_class_dirs */
Al Viroa1c2aa12012-03-18 20:36:59 -0400360static struct dentry *sel_make_dir(struct dentry *dir, const char *name,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -0400361 unsigned long *ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Daniel Burgener0eea6092020-08-19 15:59:35 -0400363/* declaration for sel_make_policy_nodes */
364static struct dentry *sel_make_disconnected_dir(struct super_block *sb,
365 unsigned long *ino);
366
367/* declaration for sel_make_policy_nodes */
Daniel Burgeneraeecf4a2020-08-19 15:59:32 -0400368static void sel_remove_entries(struct dentry *de);
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370static ssize_t sel_read_mls(struct file *filp, char __user *buf,
371 size_t count, loff_t *ppos)
372{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400373 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 char tmpbuf[TMPBUFLEN];
375 ssize_t length;
376
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100377 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400378 security_mls_enabled(fsi->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
380}
381
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800382static const struct file_operations sel_mls_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 .read = sel_read_mls,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200384 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
Eric Pariscee74f42010-10-13 17:50:25 -0400387struct policy_load_memory {
388 size_t len;
389 void *data;
390};
391
392static int sel_open_policy(struct inode *inode, struct file *filp)
393{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400394 struct selinux_fs_info *fsi = inode->i_sb->s_fs_info;
395 struct selinux_state *state = fsi->state;
Eric Pariscee74f42010-10-13 17:50:25 -0400396 struct policy_load_memory *plm = NULL;
397 int rc;
398
399 BUG_ON(filp->private_data);
400
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400401 mutex_lock(&fsi->state->policy_mutex);
Eric Pariscee74f42010-10-13 17:50:25 -0400402
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500403 rc = avc_has_perm(&selinux_state,
404 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500405 SECCLASS_SECURITY, SECURITY__READ_POLICY, NULL);
Eric Pariscee74f42010-10-13 17:50:25 -0400406 if (rc)
407 goto err;
408
409 rc = -EBUSY;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400410 if (fsi->policy_opened)
Eric Pariscee74f42010-10-13 17:50:25 -0400411 goto err;
412
413 rc = -ENOMEM;
414 plm = kzalloc(sizeof(*plm), GFP_KERNEL);
415 if (!plm)
416 goto err;
417
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400418 rc = security_read_policy(state, &plm->data, &plm->len);
Eric Pariscee74f42010-10-13 17:50:25 -0400419 if (rc)
420 goto err;
421
Ondrej Mosnacek66ccd252020-08-27 18:27:53 +0200422 if ((size_t)i_size_read(inode) != plm->len) {
423 inode_lock(inode);
424 i_size_write(inode, plm->len);
425 inode_unlock(inode);
426 }
427
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400428 fsi->policy_opened = 1;
Eric Pariscee74f42010-10-13 17:50:25 -0400429
430 filp->private_data = plm;
431
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400432 mutex_unlock(&fsi->state->policy_mutex);
Eric Pariscee74f42010-10-13 17:50:25 -0400433
434 return 0;
435err:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400436 mutex_unlock(&fsi->state->policy_mutex);
Eric Pariscee74f42010-10-13 17:50:25 -0400437
438 if (plm)
439 vfree(plm->data);
440 kfree(plm);
441 return rc;
442}
443
444static int sel_release_policy(struct inode *inode, struct file *filp)
445{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400446 struct selinux_fs_info *fsi = inode->i_sb->s_fs_info;
Eric Pariscee74f42010-10-13 17:50:25 -0400447 struct policy_load_memory *plm = filp->private_data;
448
449 BUG_ON(!plm);
450
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400451 fsi->policy_opened = 0;
Eric Pariscee74f42010-10-13 17:50:25 -0400452
453 vfree(plm->data);
454 kfree(plm);
455
456 return 0;
457}
458
459static ssize_t sel_read_policy(struct file *filp, char __user *buf,
460 size_t count, loff_t *ppos)
461{
462 struct policy_load_memory *plm = filp->private_data;
463 int ret;
464
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500465 ret = avc_has_perm(&selinux_state,
466 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500467 SECCLASS_SECURITY, SECURITY__READ_POLICY, NULL);
Eric Pariscee74f42010-10-13 17:50:25 -0400468 if (ret)
Jann Horn0da74122018-06-28 20:39:54 -0400469 return ret;
Eric Pariscee74f42010-10-13 17:50:25 -0400470
Jann Horn0da74122018-06-28 20:39:54 -0400471 return simple_read_from_buffer(buf, count, ppos, plm->data, plm->len);
Eric Pariscee74f42010-10-13 17:50:25 -0400472}
473
Souptick Joarderac9a1f62018-04-14 21:02:41 +0530474static vm_fault_t sel_mmap_policy_fault(struct vm_fault *vmf)
Eric Paris845ca302010-10-13 17:50:31 -0400475{
Dave Jiang11bac802017-02-24 14:56:41 -0800476 struct policy_load_memory *plm = vmf->vma->vm_file->private_data;
Eric Paris845ca302010-10-13 17:50:31 -0400477 unsigned long offset;
478 struct page *page;
479
480 if (vmf->flags & (FAULT_FLAG_MKWRITE | FAULT_FLAG_WRITE))
481 return VM_FAULT_SIGBUS;
482
483 offset = vmf->pgoff << PAGE_SHIFT;
484 if (offset >= roundup(plm->len, PAGE_SIZE))
485 return VM_FAULT_SIGBUS;
486
487 page = vmalloc_to_page(plm->data + offset);
488 get_page(page);
489
490 vmf->page = page;
491
492 return 0;
493}
494
Kirill A. Shutemov7cbea8d2015-09-09 15:39:26 -0700495static const struct vm_operations_struct sel_mmap_policy_ops = {
Eric Paris845ca302010-10-13 17:50:31 -0400496 .fault = sel_mmap_policy_fault,
497 .page_mkwrite = sel_mmap_policy_fault,
498};
499
James Morrisad3fa082011-08-30 10:50:12 +1000500static int sel_mmap_policy(struct file *filp, struct vm_area_struct *vma)
Eric Paris845ca302010-10-13 17:50:31 -0400501{
502 if (vma->vm_flags & VM_SHARED) {
503 /* do not allow mprotect to make mapping writable */
504 vma->vm_flags &= ~VM_MAYWRITE;
505
506 if (vma->vm_flags & VM_WRITE)
507 return -EACCES;
508 }
509
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700510 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Eric Paris845ca302010-10-13 17:50:31 -0400511 vma->vm_ops = &sel_mmap_policy_ops;
512
513 return 0;
514}
515
Eric Pariscee74f42010-10-13 17:50:25 -0400516static const struct file_operations sel_policy_ops = {
517 .open = sel_open_policy,
518 .read = sel_read_policy,
Eric Paris845ca302010-10-13 17:50:31 -0400519 .mmap = sel_mmap_policy,
Eric Pariscee74f42010-10-13 17:50:25 -0400520 .release = sel_release_policy,
Eric Paris47a93a52012-02-16 15:08:39 -0500521 .llseek = generic_file_llseek,
Eric Pariscee74f42010-10-13 17:50:25 -0400522};
523
Daniel Burgener0eea6092020-08-19 15:59:35 -0400524static void sel_remove_old_bool_data(unsigned int bool_num, char **bool_names,
525 unsigned int *bool_values)
Daniel Burgeneraeecf4a2020-08-19 15:59:32 -0400526{
527 u32 i;
528
529 /* bool_dir cleanup */
Daniel Burgener0eea6092020-08-19 15:59:35 -0400530 for (i = 0; i < bool_num; i++)
531 kfree(bool_names[i]);
532 kfree(bool_names);
533 kfree(bool_values);
Daniel Burgeneraeecf4a2020-08-19 15:59:32 -0400534}
535
Stephen Smalley02a52c52020-08-07 09:29:34 -0400536static int sel_make_policy_nodes(struct selinux_fs_info *fsi,
537 struct selinux_policy *newpolicy)
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400538{
Daniel Burgener0eea6092020-08-19 15:59:35 -0400539 int ret = 0;
540 struct dentry *tmp_parent, *tmp_bool_dir, *tmp_class_dir, *old_dentry;
541 unsigned int tmp_bool_num, old_bool_num;
542 char **tmp_bool_names, **old_bool_names;
543 unsigned int *tmp_bool_values, *old_bool_values;
544 unsigned long tmp_ino = fsi->last_ino; /* Don't increment last_ino in this function */
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400545
Daniel Burgener0eea6092020-08-19 15:59:35 -0400546 tmp_parent = sel_make_disconnected_dir(fsi->sb, &tmp_ino);
547 if (IS_ERR(tmp_parent))
548 return PTR_ERR(tmp_parent);
Daniel Burgeneraeecf4a2020-08-19 15:59:32 -0400549
Daniel Burgener0eea6092020-08-19 15:59:35 -0400550 tmp_ino = fsi->bool_dir->d_inode->i_ino - 1; /* sel_make_dir will increment and set */
551 tmp_bool_dir = sel_make_dir(tmp_parent, BOOL_DIR_NAME, &tmp_ino);
552 if (IS_ERR(tmp_bool_dir)) {
553 ret = PTR_ERR(tmp_bool_dir);
554 goto out;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400555 }
556
Daniel Burgener0eea6092020-08-19 15:59:35 -0400557 tmp_ino = fsi->class_dir->d_inode->i_ino - 1; /* sel_make_dir will increment and set */
558 tmp_class_dir = sel_make_dir(tmp_parent, CLASS_DIR_NAME, &tmp_ino);
559 if (IS_ERR(tmp_class_dir)) {
560 ret = PTR_ERR(tmp_class_dir);
561 goto out;
562 }
563
564 ret = sel_make_bools(newpolicy, tmp_bool_dir, &tmp_bool_num,
565 &tmp_bool_names, &tmp_bool_values);
566 if (ret) {
567 pr_err("SELinux: failed to load policy booleans\n");
568 goto out;
569 }
570
571 ret = sel_make_classes(newpolicy, tmp_class_dir,
Daniel Burgener66ec3842020-08-19 15:59:33 -0400572 &fsi->last_class_ino);
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400573 if (ret) {
574 pr_err("SELinux: failed to load policy classes\n");
Daniel Burgener0eea6092020-08-19 15:59:35 -0400575 goto out;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400576 }
577
Daniel Burgener0eea6092020-08-19 15:59:35 -0400578 /* booleans */
579 old_dentry = fsi->bool_dir;
580 lock_rename(tmp_bool_dir, old_dentry);
581 d_exchange(tmp_bool_dir, fsi->bool_dir);
582
583 old_bool_num = fsi->bool_num;
584 old_bool_names = fsi->bool_pending_names;
585 old_bool_values = fsi->bool_pending_values;
586
587 fsi->bool_num = tmp_bool_num;
588 fsi->bool_pending_names = tmp_bool_names;
589 fsi->bool_pending_values = tmp_bool_values;
590
591 sel_remove_old_bool_data(old_bool_num, old_bool_names, old_bool_values);
592
593 fsi->bool_dir = tmp_bool_dir;
594 unlock_rename(tmp_bool_dir, old_dentry);
595
596 /* classes */
597 old_dentry = fsi->class_dir;
598 lock_rename(tmp_class_dir, old_dentry);
599 d_exchange(tmp_class_dir, fsi->class_dir);
600 fsi->class_dir = tmp_class_dir;
601 unlock_rename(tmp_class_dir, old_dentry);
602
603out:
604 /* Since the other temporary dirs are children of tmp_parent
605 * this will handle all the cleanup in the case of a failure before
606 * the swapover
607 */
608 sel_remove_entries(tmp_parent);
609 dput(tmp_parent); /* d_genocide() only handles the children */
610
611 return ret;
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400612}
613
Eric Paris18729812008-04-17 14:15:45 -0400614static ssize_t sel_write_load(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 size_t count, loff_t *ppos)
616
617{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400618 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Stephen Smalley02a52c52020-08-07 09:29:34 -0400619 struct selinux_policy *newpolicy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 ssize_t length;
621 void *data = NULL;
622
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400623 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500625 length = avc_has_perm(&selinux_state,
626 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500627 SECCLASS_SECURITY, SECURITY__LOAD_POLICY, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (length)
629 goto out;
630
Eric Parisb77a4932010-11-23 11:40:08 -0500631 /* No partial writes. */
632 length = -EINVAL;
633 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Eric Parisb77a4932010-11-23 11:40:08 -0500636 length = -ENOMEM;
637 data = vmalloc(count);
638 if (!data)
639 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 length = -EFAULT;
642 if (copy_from_user(data, buf, count) != 0)
643 goto out;
644
Stephen Smalley02a52c52020-08-07 09:29:34 -0400645 length = security_load_policy(fsi->state, data, count, &newpolicy);
Gary Tierney4262fb52017-01-09 10:07:31 -0500646 if (length) {
647 pr_warn_ratelimited("SELinux: failed to load policy\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 goto out;
Gary Tierney4262fb52017-01-09 10:07:31 -0500649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Stephen Smalley02a52c52020-08-07 09:29:34 -0400651 length = sel_make_policy_nodes(fsi, newpolicy);
652 if (length) {
653 selinux_policy_cancel(fsi->state, newpolicy);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -0400654 goto out1;
Stephen Smalley02a52c52020-08-07 09:29:34 -0400655 }
656
657 selinux_policy_commit(fsi->state, newpolicy);
Eric Parisb77a4932010-11-23 11:40:08 -0500658
659 length = count;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -0400660
661out1:
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -0400662 audit_log(audit_context(), GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
Richard Guy Briggsd1411362018-04-09 19:36:31 -0400663 "auid=%u ses=%u lsm=selinux res=1",
Eric W. Biederman581abc02012-08-20 00:09:36 -0700664 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric Paris4746ec52008-01-08 10:06:53 -0500665 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -0400667 mutex_unlock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 vfree(data);
669 return length;
670}
671
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800672static const struct file_operations sel_load_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 .write = sel_write_load,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200674 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675};
676
Eric Paris18729812008-04-17 14:15:45 -0400677static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400679 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
680 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500681 char *canon = NULL;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800682 u32 sid, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 ssize_t length;
684
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500685 length = avc_has_perm(&selinux_state,
686 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500687 SECCLASS_SECURITY, SECURITY__CHECK_CONTEXT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500689 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400691 length = security_context_to_sid(state, buf, size, &sid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500692 if (length)
693 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400695 length = security_sid_to_context(state, sid, &canon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500696 if (length)
697 goto out;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800698
Eric Parisb77a4932010-11-23 11:40:08 -0500699 length = -ERANGE;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800700 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +0200701 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -0400702 "payload max\n", __func__, len);
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800703 goto out;
704 }
705
706 memcpy(buf, canon, len);
707 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708out:
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800709 kfree(canon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return length;
711}
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
714 size_t count, loff_t *ppos)
715{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400716 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 char tmpbuf[TMPBUFLEN];
718 ssize_t length;
719
Lakshmi Ramasubramanian8861d0a2020-09-14 10:31:57 -0700720 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
721 checkreqprot_get(fsi->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
723}
724
Eric Paris18729812008-04-17 14:15:45 -0400725static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 size_t count, loff_t *ppos)
727{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400728 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Al Viro8365a712015-12-24 00:08:06 -0500729 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 ssize_t length;
731 unsigned int new_value;
732
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500733 length = avc_has_perm(&selinux_state,
734 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500735 SECCLASS_SECURITY, SECURITY__SETCHECKREQPROT,
736 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (length)
Al Viro8365a712015-12-24 00:08:06 -0500738 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Davi Arnautbfd51622005-10-30 14:59:24 -0800740 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500741 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500742
743 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500744 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500745 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500746
Al Viro8365a712015-12-24 00:08:06 -0500747 page = memdup_user_nul(buf, count);
748 if (IS_ERR(page))
749 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 length = -EINVAL;
752 if (sscanf(page, "%u", &new_value) != 1)
753 goto out;
754
Stephen Smalleye9c38f92020-01-08 11:24:47 -0500755 if (new_value) {
756 char comm[sizeof(current->comm)];
757
758 memcpy(comm, current->comm, sizeof(comm));
759 pr_warn_once("SELinux: %s (%d) set checkreqprot to 1. This is deprecated and will be rejected in a future kernel release.\n",
760 comm, current->pid);
761 }
762
Lakshmi Ramasubramanian8861d0a2020-09-14 10:31:57 -0700763 checkreqprot_set(fsi->state, (new_value ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 length = count;
765out:
Al Viro8365a712015-12-24 00:08:06 -0500766 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return length;
768}
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800769static const struct file_operations sel_checkreqprot_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 .read = sel_read_checkreqprot,
771 .write = sel_write_checkreqprot,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200772 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773};
774
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500775static ssize_t sel_write_validatetrans(struct file *file,
776 const char __user *buf,
777 size_t count, loff_t *ppos)
778{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400779 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
780 struct selinux_state *state = fsi->state;
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500781 char *oldcon = NULL, *newcon = NULL, *taskcon = NULL;
782 char *req = NULL;
783 u32 osid, nsid, tsid;
784 u16 tclass;
785 int rc;
786
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500787 rc = avc_has_perm(&selinux_state,
788 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500789 SECCLASS_SECURITY, SECURITY__VALIDATE_TRANS, NULL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500790 if (rc)
791 goto out;
792
793 rc = -ENOMEM;
794 if (count >= PAGE_SIZE)
795 goto out;
796
797 /* No partial writes. */
798 rc = -EINVAL;
799 if (*ppos != 0)
800 goto out;
801
Al Viro0b884d22017-05-13 18:12:07 -0400802 req = memdup_user_nul(buf, count);
803 if (IS_ERR(req)) {
804 rc = PTR_ERR(req);
805 req = NULL;
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500806 goto out;
Al Viro0b884d22017-05-13 18:12:07 -0400807 }
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500808
809 rc = -ENOMEM;
810 oldcon = kzalloc(count + 1, GFP_KERNEL);
811 if (!oldcon)
812 goto out;
813
814 newcon = kzalloc(count + 1, GFP_KERNEL);
815 if (!newcon)
816 goto out;
817
818 taskcon = kzalloc(count + 1, GFP_KERNEL);
819 if (!taskcon)
820 goto out;
821
822 rc = -EINVAL;
823 if (sscanf(req, "%s %s %hu %s", oldcon, newcon, &tclass, taskcon) != 4)
824 goto out;
825
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400826 rc = security_context_str_to_sid(state, oldcon, &osid, 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, newcon, &nsid, 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_context_str_to_sid(state, taskcon, &tsid, GFP_KERNEL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500835 if (rc)
836 goto out;
837
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400838 rc = security_validate_transition_user(state, osid, nsid, tsid, tclass);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500839 if (!rc)
840 rc = count;
841out:
842 kfree(req);
843 kfree(oldcon);
844 kfree(newcon);
845 kfree(taskcon);
846 return rc;
847}
848
849static const struct file_operations sel_transition_ops = {
850 .write = sel_write_validatetrans,
851 .llseek = generic_file_llseek,
852};
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854/*
855 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
856 */
Eric Paris18729812008-04-17 14:15:45 -0400857static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
858static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
859static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
860static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
861static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Eric Biggers631d2b42018-07-17 10:43:56 -0700863static ssize_t (*const write_op[])(struct file *, char *, size_t) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 [SEL_ACCESS] = sel_write_access,
865 [SEL_CREATE] = sel_write_create,
866 [SEL_RELABEL] = sel_write_relabel,
867 [SEL_USER] = sel_write_user,
868 [SEL_MEMBER] = sel_write_member,
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800869 [SEL_CONTEXT] = sel_write_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870};
871
872static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
873{
Al Viro496ad9a2013-01-23 17:07:38 -0500874 ino_t ino = file_inode(file)->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 char *data;
876 ssize_t rv;
877
Nicolas Kaiser6e20a642006-01-06 00:11:22 -0800878 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return -EINVAL;
880
881 data = simple_transaction_get(file, buf, size);
882 if (IS_ERR(data))
883 return PTR_ERR(data);
884
Eric Paris18729812008-04-17 14:15:45 -0400885 rv = write_op[ino](file, data, size);
886 if (rv > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 simple_transaction_set(file, rv);
888 rv = size;
889 }
890 return rv;
891}
892
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800893static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 .write = selinux_transaction_write,
895 .read = simple_transaction_read,
896 .release = simple_transaction_release,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200897 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898};
899
900/*
901 * payload - write methods
902 * If the method has a response, the response should be put in buf,
903 * and the length returned. Otherwise return 0 or and -error.
904 */
905
Eric Paris18729812008-04-17 14:15:45 -0400906static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400908 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
909 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500910 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 u32 ssid, tsid;
912 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 struct av_decision avd;
914 ssize_t length;
915
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500916 length = avc_has_perm(&selinux_state,
917 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500918 SECCLASS_SECURITY, SECURITY__COMPUTE_AV, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500920 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800923 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500925 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Eric Parisb77a4932010-11-23 11:40:08 -0500927 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800928 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (!tcon)
930 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 length = -EINVAL;
Stephen Smalley19439d02010-01-14 17:28:10 -0500933 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500934 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400936 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500937 if (length)
938 goto out;
939
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400940 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500941 if (length)
942 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400944 security_compute_av_user(state, ssid, tsid, tclass, &avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900947 "%x %x %x %x %u %x",
Eric Parisf1c63812009-02-12 14:50:54 -0500948 avd.allowed, 0xffffffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 avd.auditallow, avd.auditdeny,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900950 avd.seqno, avd.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951out:
Eric Parisb77a4932010-11-23 11:40:08 -0500952 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 kfree(scon);
954 return length;
955}
956
Eric Paris18729812008-04-17 14:15:45 -0400957static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Stephen Smalley0619f0f2018-03-20 11:59:11 -0400959 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
960 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -0500961 char *scon = NULL, *tcon = NULL;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100962 char *namebuf = NULL, *objname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 u32 ssid, tsid, newsid;
964 u16 tclass;
965 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500966 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 u32 len;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100968 int nargs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Stephen Smalley6b6bc622018-03-05 11:47:56 -0500970 length = avc_has_perm(&selinux_state,
971 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500972 SECCLASS_SECURITY, SECURITY__COMPUTE_CREATE,
973 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500975 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800978 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500980 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Eric Parisb77a4932010-11-23 11:40:08 -0500982 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800983 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!tcon)
985 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100987 length = -ENOMEM;
988 namebuf = kzalloc(size + 1, GFP_KERNEL);
989 if (!namebuf)
Eric Parisb77a4932010-11-23 11:40:08 -0500990 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100992 length = -EINVAL;
993 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
994 if (nargs < 3 || nargs > 4)
995 goto out;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400996 if (nargs == 4) {
997 /*
998 * If and when the name of new object to be queried contains
999 * either whitespace or multibyte characters, they shall be
1000 * encoded based on the percentage-encoding rule.
1001 * If not encoded, the sscanf logic picks up only left-half
1002 * of the supplied name; splitted by a whitespace unexpectedly.
1003 */
1004 char *r, *w;
1005 int c1, c2;
1006
1007 r = w = namebuf;
1008 do {
1009 c1 = *r++;
1010 if (c1 == '+')
1011 c1 = ' ';
1012 else if (c1 == '%') {
Andy Shevchenkoaf7ff2c2011-11-15 15:11:41 -08001013 c1 = hex_to_bin(*r++);
1014 if (c1 < 0)
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001015 goto out;
Andy Shevchenkoaf7ff2c2011-11-15 15:11:41 -08001016 c2 = hex_to_bin(*r++);
1017 if (c2 < 0)
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001018 goto out;
1019 c1 = (c1 << 4) | c2;
1020 }
1021 *w++ = c1;
1022 } while (c1 != '\0');
1023
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001024 objname = namebuf;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -04001025 }
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001026
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001027 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001028 if (length)
1029 goto out;
1030
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001031 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001032 if (length)
1033 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001035 length = security_transition_sid_user(state, ssid, tsid, tclass,
1036 objname, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001037 if (length)
1038 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001040 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001041 if (length)
1042 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Eric Parisb77a4932010-11-23 11:40:08 -05001044 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +02001046 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -04001047 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001048 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050
1051 memcpy(buf, newcon, len);
1052 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053out:
Eric Parisb77a4932010-11-23 11:40:08 -05001054 kfree(newcon);
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001055 kfree(namebuf);
Eric Parisb77a4932010-11-23 11:40:08 -05001056 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 kfree(scon);
1058 return length;
1059}
1060
Eric Paris18729812008-04-17 14:15:45 -04001061static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001063 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1064 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001065 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 u32 ssid, tsid, newsid;
1067 u16 tclass;
1068 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -05001069 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 u32 len;
1071
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001072 length = avc_has_perm(&selinux_state,
1073 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001074 SECCLASS_SECURITY, SECURITY__COMPUTE_RELABEL,
1075 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -05001077 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001080 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -05001082 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Eric Parisb77a4932010-11-23 11:40:08 -05001084 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001085 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (!tcon)
1087 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 length = -EINVAL;
1090 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001091 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001093 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001094 if (length)
1095 goto out;
1096
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001097 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
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_change_sid(state, ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001102 if (length)
1103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001105 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001106 if (length)
1107 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Eric Parisb77a4932010-11-23 11:40:08 -05001109 length = -ERANGE;
1110 if (len > SIMPLE_TRANSACTION_LIMIT)
1111 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 memcpy(buf, newcon, len);
1114 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115out:
Eric Parisb77a4932010-11-23 11:40:08 -05001116 kfree(newcon);
1117 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 kfree(scon);
1119 return length;
1120}
1121
Eric Paris18729812008-04-17 14:15:45 -04001122static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001124 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1125 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001126 char *con = NULL, *user = NULL, *ptr;
1127 u32 sid, *sids = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 ssize_t length;
1129 char *newcon;
1130 int i, rc;
1131 u32 len, nsids;
1132
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001133 length = avc_has_perm(&selinux_state,
1134 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001135 SECCLASS_SECURITY, SECURITY__COMPUTE_USER,
1136 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (length)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001138 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001141 con = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (!con)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001143 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Eric Parisb77a4932010-11-23 11:40:08 -05001145 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001146 user = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (!user)
1148 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 length = -EINVAL;
1151 if (sscanf(buf, "%s %s", con, user) != 2)
Eric Parisb77a4932010-11-23 11:40:08 -05001152 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001154 length = security_context_str_to_sid(state, con, &sid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001155 if (length)
1156 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001158 length = security_get_user_sids(state, sid, user, &sids, &nsids);
Eric Parisb77a4932010-11-23 11:40:08 -05001159 if (length)
1160 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 length = sprintf(buf, "%u", nsids) + 1;
1163 ptr = buf + length;
1164 for (i = 0; i < nsids; i++) {
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001165 rc = security_sid_to_context(state, sids[i], &newcon, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (rc) {
1167 length = rc;
Eric Parisb77a4932010-11-23 11:40:08 -05001168 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
1171 kfree(newcon);
1172 length = -ERANGE;
Eric Parisb77a4932010-11-23 11:40:08 -05001173 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175 memcpy(ptr, newcon, len);
1176 kfree(newcon);
1177 ptr += len;
1178 length += len;
1179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180out:
Eric Parisb77a4932010-11-23 11:40:08 -05001181 kfree(sids);
1182 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 kfree(con);
1184 return length;
1185}
1186
Eric Paris18729812008-04-17 14:15:45 -04001187static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001189 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1190 struct selinux_state *state = fsi->state;
Eric Parisb77a4932010-11-23 11:40:08 -05001191 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 u32 ssid, tsid, newsid;
1193 u16 tclass;
1194 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -05001195 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 u32 len;
1197
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001198 length = avc_has_perm(&selinux_state,
1199 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001200 SECCLASS_SECURITY, SECURITY__COMPUTE_MEMBER,
1201 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -05001203 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001206 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!scon)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001208 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Eric Parisb77a4932010-11-23 11:40:08 -05001210 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001211 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (!tcon)
1213 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 length = -EINVAL;
1216 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001217 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001219 length = security_context_str_to_sid(state, scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001220 if (length)
1221 goto out;
1222
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001223 length = security_context_str_to_sid(state, tcon, &tsid, GFP_KERNEL);
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_member_sid(state, ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001228 if (length)
1229 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001231 length = security_sid_to_context(state, newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001232 if (length)
1233 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Eric Parisb77a4932010-11-23 11:40:08 -05001235 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (len > SIMPLE_TRANSACTION_LIMIT) {
peter enderborgf8b69a52018-06-12 10:09:06 +02001237 pr_err("SELinux: %s: context size (%u) exceeds "
Eric Paris744ba352008-04-17 11:52:44 -04001238 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001239 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241
1242 memcpy(buf, newcon, len);
1243 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244out:
Eric Parisb77a4932010-11-23 11:40:08 -05001245 kfree(newcon);
1246 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 kfree(scon);
1248 return length;
1249}
1250
1251static struct inode *sel_make_inode(struct super_block *sb, int mode)
1252{
1253 struct inode *ret = new_inode(sb);
1254
1255 if (ret) {
1256 ret->i_mode = mode;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001257 ret->i_atime = ret->i_mtime = ret->i_ctime = current_time(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259 return ret;
1260}
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1263 size_t count, loff_t *ppos)
1264{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001265 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 char *page = NULL;
1267 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 ssize_t ret;
1269 int cur_enforcing;
Al Viro496ad9a2013-01-23 17:07:38 -05001270 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001271 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001273 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Eric Parisb77a4932010-11-23 11:40:08 -05001275 ret = -EINVAL;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001276 if (index >= fsi->bool_num || strcmp(name,
1277 fsi->bool_pending_names[index]))
Jann Horn0da74122018-06-28 20:39:54 -04001278 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Eric Parisb77a4932010-11-23 11:40:08 -05001280 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001281 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001282 if (!page)
Jann Horn0da74122018-06-28 20:39:54 -04001283 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001285 cur_enforcing = security_get_bool_value(fsi->state, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (cur_enforcing < 0) {
1287 ret = cur_enforcing;
Jann Horn0da74122018-06-28 20:39:54 -04001288 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001291 fsi->bool_pending_values[index]);
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001292 mutex_unlock(&fsi->state->policy_mutex);
Jann Horn0da74122018-06-28 20:39:54 -04001293 ret = simple_read_from_buffer(buf, count, ppos, page, length);
1294out_free:
Eric Parisb77a4932010-11-23 11:40:08 -05001295 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return ret;
Jann Horn0da74122018-06-28 20:39:54 -04001297
1298out_unlock:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001299 mutex_unlock(&fsi->state->policy_mutex);
Jann Horn0da74122018-06-28 20:39:54 -04001300 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1304 size_t count, loff_t *ppos)
1305{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001306 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001308 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 int new_value;
Al Viro496ad9a2013-01-23 17:07:38 -05001310 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001311 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Jann Horn0da74122018-06-28 20:39:54 -04001313 if (count >= PAGE_SIZE)
1314 return -ENOMEM;
1315
1316 /* No partial writes. */
1317 if (*ppos != 0)
1318 return -EINVAL;
1319
1320 page = memdup_user_nul(buf, count);
1321 if (IS_ERR(page))
1322 return PTR_ERR(page);
1323
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001324 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001326 length = avc_has_perm(&selinux_state,
1327 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001328 SECCLASS_SECURITY, SECURITY__SETBOOL,
1329 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (length)
1331 goto out;
1332
Eric Parisb77a4932010-11-23 11:40:08 -05001333 length = -EINVAL;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001334 if (index >= fsi->bool_num || strcmp(name,
1335 fsi->bool_pending_names[index]))
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001336 goto out;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 length = -EINVAL;
1339 if (sscanf(page, "%d", &new_value) != 1)
1340 goto out;
1341
1342 if (new_value)
1343 new_value = 1;
1344
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001345 fsi->bool_pending_values[index] = new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 length = count;
1347
1348out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001349 mutex_unlock(&fsi->state->policy_mutex);
Al Viro8365a712015-12-24 00:08:06 -05001350 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return length;
1352}
1353
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001354static const struct file_operations sel_bool_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001355 .read = sel_read_bool,
1356 .write = sel_write_bool,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001357 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358};
1359
1360static ssize_t sel_commit_bools_write(struct file *filep,
1361 const char __user *buf,
1362 size_t count, loff_t *ppos)
1363{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001364 struct selinux_fs_info *fsi = file_inode(filep)->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001366 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 int new_value;
1368
Jann Horn0da74122018-06-28 20:39:54 -04001369 if (count >= PAGE_SIZE)
1370 return -ENOMEM;
1371
1372 /* No partial writes. */
1373 if (*ppos != 0)
1374 return -EINVAL;
1375
1376 page = memdup_user_nul(buf, count);
1377 if (IS_ERR(page))
1378 return PTR_ERR(page);
1379
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001380 mutex_lock(&fsi->state->policy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001382 length = avc_has_perm(&selinux_state,
1383 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001384 SECCLASS_SECURITY, SECURITY__SETBOOL,
1385 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 if (length)
1387 goto out;
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 length = -EINVAL;
1390 if (sscanf(page, "%d", &new_value) != 1)
1391 goto out;
1392
Eric Parisb77a4932010-11-23 11:40:08 -05001393 length = 0;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001394 if (new_value && fsi->bool_pending_values)
1395 length = security_set_bools(fsi->state, fsi->bool_num,
1396 fsi->bool_pending_values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Eric Parisb77a4932010-11-23 11:40:08 -05001398 if (!length)
1399 length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401out:
Stephen Smalley9ff9abc2020-08-26 13:28:53 -04001402 mutex_unlock(&fsi->state->policy_mutex);
Al Viro8365a712015-12-24 00:08:06 -05001403 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return length;
1405}
1406
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001407static const struct file_operations sel_commit_bools_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001408 .write = sel_commit_bools_write,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001409 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410};
1411
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001412static void sel_remove_entries(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Al Viroad521842014-12-24 14:56:48 -05001414 d_genocide(de);
1415 shrink_dcache_parent(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
Daniel Burgener66ec3842020-08-19 15:59:33 -04001418static int sel_make_bools(struct selinux_policy *newpolicy, struct dentry *bool_dir,
1419 unsigned int *bool_num, char ***bool_pending_names,
1420 unsigned int **bool_pending_values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
Ondrej Mosnacek60abd312020-02-03 12:27:20 +01001422 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 ssize_t len;
1424 struct dentry *dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 struct inode *inode = NULL;
1426 struct inode_security_struct *isec;
1427 char **names = NULL, *page;
Ondrej Mosnacek60abd312020-02-03 12:27:20 +01001428 u32 i, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 int *values = NULL;
1430 u32 sid;
1431
Eric Parisb77a4932010-11-23 11:40:08 -05001432 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001433 page = (char *)get_zeroed_page(GFP_KERNEL);
1434 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -05001435 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Stephen Smalley02a52c52020-08-07 09:29:34 -04001437 ret = security_get_bools(newpolicy, &num, &names, &values);
Eric Parisb77a4932010-11-23 11:40:08 -05001438 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto out;
1440
1441 for (i = 0; i < num; i++) {
Eric Parisb77a4932010-11-23 11:40:08 -05001442 ret = -ENOMEM;
Daniel Burgener66ec3842020-08-19 15:59:33 -04001443 dentry = d_alloc_name(bool_dir, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001444 if (!dentry)
1445 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Eric Parisb77a4932010-11-23 11:40:08 -05001447 ret = -ENOMEM;
Daniel Burgener66ec3842020-08-19 15:59:33 -04001448 inode = sel_make_inode(bool_dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
nixiaoming7e4237f2018-08-05 17:10:36 +08001449 if (!inode) {
1450 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001451 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001452 }
Eric Parisb77a4932010-11-23 11:40:08 -05001453
Eric Parisb77a4932010-11-23 11:40:08 -05001454 ret = -ENAMETOOLONG;
Al Virocc1dad72012-04-02 19:40:47 -04001455 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
nixiaoming7e4237f2018-08-05 17:10:36 +08001456 if (len >= PAGE_SIZE) {
1457 dput(dentry);
1458 iput(inode);
Eric Parisb77a4932010-11-23 11:40:08 -05001459 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001460 }
Eric Parisb77a4932010-11-23 11:40:08 -05001461
Casey Schaufler80788c22018-09-21 17:19:11 -07001462 isec = selinux_inode(inode);
Stephen Smalley02a52c52020-08-07 09:29:34 -04001463 ret = selinux_policy_genfs_sid(newpolicy, "selinuxfs", page,
Stephen Smalleyaa8e7122018-03-01 18:48:02 -05001464 SECCLASS_FILE, &sid);
Gary Tierney4262fb52017-01-09 10:07:31 -05001465 if (ret) {
Gary Tierney900fde02017-01-09 10:07:32 -05001466 pr_warn_ratelimited("SELinux: no sid found, defaulting to security isid for %s\n",
1467 page);
1468 sid = SECINITSID_SECURITY;
Gary Tierney4262fb52017-01-09 10:07:31 -05001469 }
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 isec->sid = sid;
Andreas Gruenbacher42059112016-11-10 22:18:27 +01001472 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 inode->i_fop = &sel_bool_ops;
James Carterbce34bc2007-04-04 16:18:50 -04001474 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 d_add(dentry, inode);
1476 }
Daniel Burgener66ec3842020-08-19 15:59:33 -04001477 *bool_num = num;
1478 *bool_pending_names = names;
1479 *bool_pending_values = values;
Eric Parisb77a4932010-11-23 11:40:08 -05001480
1481 free_page((unsigned long)page);
1482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483out:
1484 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (names) {
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001487 for (i = 0; i < num; i++)
1488 kfree(names[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 kfree(names);
1490 }
Davi Arnaut20c19e42005-10-23 12:57:16 -07001491 kfree(values);
Daniel Burgener66ec3842020-08-19 15:59:33 -04001492 sel_remove_entries(bool_dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001493
1494 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1498 size_t count, loff_t *ppos)
1499{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001500 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1501 struct selinux_state *state = fsi->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 char tmpbuf[TMPBUFLEN];
1503 ssize_t length;
1504
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001505 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1506 avc_get_cache_threshold(state->avc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1508}
1509
Eric Paris18729812008-04-17 14:15:45 -04001510static ssize_t sel_write_avc_cache_threshold(struct file *file,
1511 const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 size_t count, loff_t *ppos)
1513
1514{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001515 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
1516 struct selinux_state *state = fsi->state;
Al Viro8365a712015-12-24 00:08:06 -05001517 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 ssize_t ret;
Heinrich Schuchardt309c5fa2016-06-10 23:14:26 +02001519 unsigned int new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001521 ret = avc_has_perm(&selinux_state,
1522 current_sid(), SECINITSID_SECURITY,
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001523 SECCLASS_SECURITY, SECURITY__SETSECPARAM,
1524 NULL);
Eric Parisb77a4932010-11-23 11:40:08 -05001525 if (ret)
Al Viro8365a712015-12-24 00:08:06 -05001526 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Eric Parisb77a4932010-11-23 11:40:08 -05001528 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -05001529 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Eric Parisb77a4932010-11-23 11:40:08 -05001531 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -05001532 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -05001533 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -05001534
Al Viro8365a712015-12-24 00:08:06 -05001535 page = memdup_user_nul(buf, count);
1536 if (IS_ERR(page))
1537 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Eric Parisb77a4932010-11-23 11:40:08 -05001539 ret = -EINVAL;
1540 if (sscanf(page, "%u", &new_value) != 1)
1541 goto out;
1542
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001543 avc_set_cache_threshold(state->avc, new_value);
Eric Parisb77a4932010-11-23 11:40:08 -05001544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546out:
Al Viro8365a712015-12-24 00:08:06 -05001547 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return ret;
1549}
1550
1551static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1552 size_t count, loff_t *ppos)
1553{
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001554 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1555 struct selinux_state *state = fsi->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 char *page;
Eric Parisb77a4932010-11-23 11:40:08 -05001557 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001560 if (!page)
1561 return -ENOMEM;
1562
Stephen Smalley6b6bc622018-03-05 11:47:56 -05001563 length = avc_get_hash_stats(state->avc, page);
Eric Parisb77a4932010-11-23 11:40:08 -05001564 if (length >= 0)
1565 length = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001567
1568 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01001571static ssize_t sel_read_sidtab_hash_stats(struct file *filp, char __user *buf,
1572 size_t count, loff_t *ppos)
1573{
1574 struct selinux_fs_info *fsi = file_inode(filp)->i_sb->s_fs_info;
1575 struct selinux_state *state = fsi->state;
1576 char *page;
1577 ssize_t length;
1578
1579 page = (char *)__get_free_page(GFP_KERNEL);
1580 if (!page)
1581 return -ENOMEM;
1582
1583 length = security_sidtab_hash_stats(state, page);
1584 if (length >= 0)
1585 length = simple_read_from_buffer(buf, count, ppos, page,
1586 length);
1587 free_page((unsigned long)page);
1588
1589 return length;
1590}
1591
1592static const struct file_operations sel_sidtab_hash_stats_ops = {
1593 .read = sel_read_sidtab_hash_stats,
1594 .llseek = generic_file_llseek,
1595};
1596
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001597static const struct file_operations sel_avc_cache_threshold_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 .read = sel_read_avc_cache_threshold,
1599 .write = sel_write_avc_cache_threshold,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001600 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601};
1602
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001603static const struct file_operations sel_avc_hash_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 .read = sel_read_avc_hash_stats,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001605 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606};
1607
1608#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1609static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1610{
1611 int cpu;
1612
Rusty Russell4f4b6c12009-01-01 10:12:15 +10301613 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (!cpu_possible(cpu))
1615 continue;
1616 *idx = cpu + 1;
1617 return &per_cpu(avc_cache_stats, cpu);
1618 }
Vasily Averin8d269a82020-02-01 10:47:47 +03001619 (*idx)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return NULL;
1621}
1622
1623static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1624{
1625 loff_t n = *pos - 1;
1626
1627 if (*pos == 0)
1628 return SEQ_START_TOKEN;
1629
1630 return sel_avc_get_stat_idx(&n);
1631}
1632
1633static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1634{
1635 return sel_avc_get_stat_idx(pos);
1636}
1637
1638static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1639{
1640 struct avc_cache_stats *st = v;
1641
Markus Elfring710a0642017-01-15 14:04:53 +01001642 if (v == SEQ_START_TOKEN) {
1643 seq_puts(seq,
1644 "lookups hits misses allocations reclaims frees\n");
1645 } else {
Linus Torvalds257313b2011-05-19 21:22:53 -07001646 unsigned int lookups = st->lookups;
1647 unsigned int misses = st->misses;
1648 unsigned int hits = lookups - misses;
1649 seq_printf(seq, "%u %u %u %u %u %u\n", lookups,
1650 hits, misses, st->allocations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 st->reclaims, st->frees);
Linus Torvalds257313b2011-05-19 21:22:53 -07001652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return 0;
1654}
1655
1656static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1657{ }
1658
Jan Engelhardt1996a102008-01-23 00:02:58 +01001659static const struct seq_operations sel_avc_cache_stats_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 .start = sel_avc_stats_seq_start,
1661 .next = sel_avc_stats_seq_next,
1662 .show = sel_avc_stats_seq_show,
1663 .stop = sel_avc_stats_seq_stop,
1664};
1665
1666static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1667{
1668 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1669}
1670
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001671static const struct file_operations sel_avc_cache_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 .open = sel_open_avc_cache_stats,
1673 .read = seq_read,
1674 .llseek = seq_lseek,
1675 .release = seq_release,
1676};
1677#endif
1678
1679static int sel_make_avc_files(struct dentry *dir)
1680{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001681 struct super_block *sb = dir->d_sb;
1682 struct selinux_fs_info *fsi = sb->s_fs_info;
Eric Parisb77a4932010-11-23 11:40:08 -05001683 int i;
Eric Biggerscda37122017-03-25 21:15:37 -07001684 static const struct tree_descr files[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 { "cache_threshold",
1686 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1687 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1688#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1689 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1690#endif
1691 };
1692
Nicolas Kaiser6e20a642006-01-06 00:11:22 -08001693 for (i = 0; i < ARRAY_SIZE(files); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 struct inode *inode;
1695 struct dentry *dentry;
1696
1697 dentry = d_alloc_name(dir, files[i].name);
Eric Parisb77a4932010-11-23 11:40:08 -05001698 if (!dentry)
1699 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
nixiaoming7e4237f2018-08-05 17:10:36 +08001702 if (!inode) {
1703 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001704 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001705 }
Eric Parisb77a4932010-11-23 11:40:08 -05001706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 inode->i_fop = files[i].ops;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001708 inode->i_ino = ++fsi->last_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 d_add(dentry, inode);
1710 }
Eric Parisb77a4932010-11-23 11:40:08 -05001711
1712 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713}
1714
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01001715static int sel_make_ss_files(struct dentry *dir)
1716{
1717 struct super_block *sb = dir->d_sb;
1718 struct selinux_fs_info *fsi = sb->s_fs_info;
1719 int i;
1720 static struct tree_descr files[] = {
1721 { "sidtab_hash_stats", &sel_sidtab_hash_stats_ops, S_IRUGO },
1722 };
1723
1724 for (i = 0; i < ARRAY_SIZE(files); i++) {
1725 struct inode *inode;
1726 struct dentry *dentry;
1727
1728 dentry = d_alloc_name(dir, files[i].name);
1729 if (!dentry)
1730 return -ENOMEM;
1731
1732 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
1733 if (!inode) {
1734 dput(dentry);
1735 return -ENOMEM;
1736 }
1737
1738 inode->i_fop = files[i].ops;
1739 inode->i_ino = ++fsi->last_ino;
1740 d_add(dentry, inode);
1741 }
1742
1743 return 0;
1744}
1745
Eric Paris18729812008-04-17 14:15:45 -04001746static ssize_t sel_read_initcon(struct file *file, char __user *buf,
James Carterf0ee2e42007-04-04 10:11:29 -04001747 size_t count, loff_t *ppos)
1748{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001749 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
James Carterf0ee2e42007-04-04 10:11:29 -04001750 char *con;
1751 u32 sid, len;
1752 ssize_t ret;
1753
Al Viro496ad9a2013-01-23 17:07:38 -05001754 sid = file_inode(file)->i_ino&SEL_INO_MASK;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001755 ret = security_sid_to_context(fsi->state, sid, &con, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001756 if (ret)
James Carterf0ee2e42007-04-04 10:11:29 -04001757 return ret;
1758
1759 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1760 kfree(con);
1761 return ret;
1762}
1763
1764static const struct file_operations sel_initcon_ops = {
1765 .read = sel_read_initcon,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001766 .llseek = generic_file_llseek,
James Carterf0ee2e42007-04-04 10:11:29 -04001767};
1768
1769static int sel_make_initcon_files(struct dentry *dir)
1770{
Eric Parisb77a4932010-11-23 11:40:08 -05001771 int i;
James Carterf0ee2e42007-04-04 10:11:29 -04001772
1773 for (i = 1; i <= SECINITSID_NUM; i++) {
1774 struct inode *inode;
1775 struct dentry *dentry;
Stephen Smalleye3e0b582020-02-24 11:10:23 -05001776 const char *s = security_get_initial_sid_context(i);
1777
1778 if (!s)
1779 continue;
1780 dentry = d_alloc_name(dir, s);
Eric Parisb77a4932010-11-23 11:40:08 -05001781 if (!dentry)
1782 return -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001783
1784 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001785 if (!inode) {
1786 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001787 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001788 }
Eric Parisb77a4932010-11-23 11:40:08 -05001789
James Carterf0ee2e42007-04-04 10:11:29 -04001790 inode->i_fop = &sel_initcon_ops;
1791 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1792 d_add(dentry, inode);
1793 }
Eric Parisb77a4932010-11-23 11:40:08 -05001794
1795 return 0;
James Carterf0ee2e42007-04-04 10:11:29 -04001796}
1797
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001798static inline unsigned long sel_class_to_ino(u16 class)
1799{
1800 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1801}
1802
1803static inline u16 sel_ino_to_class(unsigned long ino)
1804{
Eric Paris92ae9e82012-04-04 13:46:46 -04001805 return (ino & SEL_INO_MASK) / (SEL_VEC_MAX + 1);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001806}
1807
1808static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1809{
1810 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1811}
1812
1813static inline u32 sel_ino_to_perm(unsigned long ino)
1814{
1815 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1816}
1817
Eric Paris18729812008-04-17 14:15:45 -04001818static ssize_t sel_read_class(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001819 size_t count, loff_t *ppos)
1820{
Al Viro496ad9a2013-01-23 17:07:38 -05001821 unsigned long ino = file_inode(file)->i_ino;
Al Virocc1dad72012-04-02 19:40:47 -04001822 char res[TMPBUFLEN];
liuyang347e78c872020-01-07 09:39:18 +08001823 ssize_t len = scnprintf(res, sizeof(res), "%d", sel_ino_to_class(ino));
Al Virocc1dad72012-04-02 19:40:47 -04001824 return simple_read_from_buffer(buf, count, ppos, res, len);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001825}
1826
1827static const struct file_operations sel_class_ops = {
1828 .read = sel_read_class,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001829 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001830};
1831
Eric Paris18729812008-04-17 14:15:45 -04001832static ssize_t sel_read_perm(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001833 size_t count, loff_t *ppos)
1834{
Al Viro496ad9a2013-01-23 17:07:38 -05001835 unsigned long ino = file_inode(file)->i_ino;
Al Virocc1dad72012-04-02 19:40:47 -04001836 char res[TMPBUFLEN];
liuyang347e78c872020-01-07 09:39:18 +08001837 ssize_t len = scnprintf(res, sizeof(res), "%d", sel_ino_to_perm(ino));
Al Virocc1dad72012-04-02 19:40:47 -04001838 return simple_read_from_buffer(buf, count, ppos, res, len);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001839}
1840
1841static const struct file_operations sel_perm_ops = {
1842 .read = sel_read_perm,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001843 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001844};
1845
Paul Moore3bb56b22008-01-29 08:38:19 -05001846static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1847 size_t count, loff_t *ppos)
1848{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001849 struct selinux_fs_info *fsi = file_inode(file)->i_sb->s_fs_info;
Paul Moore3bb56b22008-01-29 08:38:19 -05001850 int value;
1851 char tmpbuf[TMPBUFLEN];
1852 ssize_t length;
Al Viro496ad9a2013-01-23 17:07:38 -05001853 unsigned long i_ino = file_inode(file)->i_ino;
Paul Moore3bb56b22008-01-29 08:38:19 -05001854
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001855 value = security_policycap_supported(fsi->state, i_ino & SEL_INO_MASK);
Paul Moore3bb56b22008-01-29 08:38:19 -05001856 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1857
1858 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1859}
1860
1861static const struct file_operations sel_policycap_ops = {
1862 .read = sel_read_policycap,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001863 .llseek = generic_file_llseek,
Paul Moore3bb56b22008-01-29 08:38:19 -05001864};
1865
Stephen Smalley02a52c52020-08-07 09:29:34 -04001866static int sel_make_perm_files(struct selinux_policy *newpolicy,
1867 char *objclass, int classvalue,
1868 struct dentry *dir)
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001869{
Eric Parisb77a4932010-11-23 11:40:08 -05001870 int i, rc, nperms;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001871 char **perms;
1872
Stephen Smalley02a52c52020-08-07 09:29:34 -04001873 rc = security_get_permissions(newpolicy, objclass, &perms, &nperms);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001874 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001875 return rc;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001876
1877 for (i = 0; i < nperms; i++) {
1878 struct inode *inode;
1879 struct dentry *dentry;
1880
Eric Parisb77a4932010-11-23 11:40:08 -05001881 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001882 dentry = d_alloc_name(dir, perms[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001883 if (!dentry)
1884 goto out;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001885
Eric Parisb77a4932010-11-23 11:40:08 -05001886 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001887 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001888 if (!inode) {
1889 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001890 goto out;
nixiaoming7e4237f2018-08-05 17:10:36 +08001891 }
Eric Parisb77a4932010-11-23 11:40:08 -05001892
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001893 inode->i_fop = &sel_perm_ops;
1894 /* i+1 since perm values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001895 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001896 d_add(dentry, inode);
1897 }
Eric Parisb77a4932010-11-23 11:40:08 -05001898 rc = 0;
1899out:
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001900 for (i = 0; i < nperms; i++)
1901 kfree(perms[i]);
1902 kfree(perms);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001903 return rc;
1904}
1905
Stephen Smalley02a52c52020-08-07 09:29:34 -04001906static int sel_make_class_dir_entries(struct selinux_policy *newpolicy,
1907 char *classname, int index,
1908 struct dentry *dir)
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001909{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001910 struct super_block *sb = dir->d_sb;
1911 struct selinux_fs_info *fsi = sb->s_fs_info;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001912 struct dentry *dentry = NULL;
1913 struct inode *inode = NULL;
1914 int rc;
1915
1916 dentry = d_alloc_name(dir, "index");
Eric Parisb77a4932010-11-23 11:40:08 -05001917 if (!dentry)
1918 return -ENOMEM;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001919
1920 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08001921 if (!inode) {
1922 dput(dentry);
Eric Parisb77a4932010-11-23 11:40:08 -05001923 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001924 }
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001925
1926 inode->i_fop = &sel_class_ops;
1927 inode->i_ino = sel_class_to_ino(index);
1928 d_add(dentry, inode);
1929
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001930 dentry = sel_make_dir(dir, "perms", &fsi->last_class_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04001931 if (IS_ERR(dentry))
1932 return PTR_ERR(dentry);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001933
Stephen Smalley02a52c52020-08-07 09:29:34 -04001934 rc = sel_make_perm_files(newpolicy, classname, index, dentry);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001935
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001936 return rc;
1937}
1938
Daniel Burgener66ec3842020-08-19 15:59:33 -04001939static int sel_make_classes(struct selinux_policy *newpolicy,
1940 struct dentry *class_dir,
1941 unsigned long *last_class_ino)
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001942{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001943
Eric Parisb77a4932010-11-23 11:40:08 -05001944 int rc, nclasses, i;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001945 char **classes;
1946
Stephen Smalley02a52c52020-08-07 09:29:34 -04001947 rc = security_get_classes(newpolicy, &classes, &nclasses);
Eric Parisb77a4932010-11-23 11:40:08 -05001948 if (rc)
1949 return rc;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001950
1951 /* +2 since classes are 1-indexed */
Daniel Burgener66ec3842020-08-19 15:59:33 -04001952 *last_class_ino = sel_class_to_ino(nclasses + 2);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001953
1954 for (i = 0; i < nclasses; i++) {
1955 struct dentry *class_name_dir;
1956
Daniel Burgener66ec3842020-08-19 15:59:33 -04001957 class_name_dir = sel_make_dir(class_dir, classes[i],
1958 last_class_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04001959 if (IS_ERR(class_name_dir)) {
1960 rc = PTR_ERR(class_name_dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001961 goto out;
Al Viroa1c2aa12012-03-18 20:36:59 -04001962 }
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001963
1964 /* i+1 since class values are 1-indexed */
Stephen Smalley02a52c52020-08-07 09:29:34 -04001965 rc = sel_make_class_dir_entries(newpolicy, classes[i], i + 1,
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001966 class_name_dir);
1967 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001968 goto out;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001969 }
Eric Parisb77a4932010-11-23 11:40:08 -05001970 rc = 0;
1971out:
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001972 for (i = 0; i < nclasses; i++)
1973 kfree(classes[i]);
1974 kfree(classes);
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04001975 return rc;
1976}
1977
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001978static int sel_make_policycap(struct selinux_fs_info *fsi)
Paul Moore3bb56b22008-01-29 08:38:19 -05001979{
1980 unsigned int iter;
1981 struct dentry *dentry = NULL;
1982 struct inode *inode = NULL;
1983
Paul Moore3bb56b22008-01-29 08:38:19 -05001984 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
Stephen Smalley4dc2fce2017-05-18 16:58:31 -04001985 if (iter < ARRAY_SIZE(selinux_policycap_names))
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001986 dentry = d_alloc_name(fsi->policycap_dir,
Stephen Smalley4dc2fce2017-05-18 16:58:31 -04001987 selinux_policycap_names[iter]);
Paul Moore3bb56b22008-01-29 08:38:19 -05001988 else
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001989 dentry = d_alloc_name(fsi->policycap_dir, "unknown");
Paul Moore3bb56b22008-01-29 08:38:19 -05001990
1991 if (dentry == NULL)
1992 return -ENOMEM;
1993
Stephen Smalley0619f0f2018-03-20 11:59:11 -04001994 inode = sel_make_inode(fsi->sb, S_IFREG | 0444);
nixiaoming7e4237f2018-08-05 17:10:36 +08001995 if (inode == NULL) {
1996 dput(dentry);
Paul Moore3bb56b22008-01-29 08:38:19 -05001997 return -ENOMEM;
nixiaoming7e4237f2018-08-05 17:10:36 +08001998 }
Paul Moore3bb56b22008-01-29 08:38:19 -05001999
2000 inode->i_fop = &sel_policycap_ops;
2001 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
2002 d_add(dentry, inode);
2003 }
2004
2005 return 0;
2006}
2007
Al Viroa1c2aa12012-03-18 20:36:59 -04002008static struct dentry *sel_make_dir(struct dentry *dir, const char *name,
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04002009 unsigned long *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
Al Viroa1c2aa12012-03-18 20:36:59 -04002011 struct dentry *dentry = d_alloc_name(dir, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 struct inode *inode;
2013
Al Viroa1c2aa12012-03-18 20:36:59 -04002014 if (!dentry)
2015 return ERR_PTR(-ENOMEM);
2016
2017 inode = sel_make_inode(dir->d_sb, S_IFDIR | S_IRUGO | S_IXUGO);
2018 if (!inode) {
2019 dput(dentry);
2020 return ERR_PTR(-ENOMEM);
2021 }
Eric Parisb77a4932010-11-23 11:40:08 -05002022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 inode->i_op = &simple_dir_inode_operations;
2024 inode->i_fop = &simple_dir_operations;
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04002025 inode->i_ino = ++(*ino);
James Morris40e906f2006-03-22 00:09:16 -08002026 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -07002027 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 d_add(dentry, inode);
James Morrisedb20fb2006-03-22 00:09:20 -08002029 /* bump link count on parent directory, too */
David Howellsce0b16d2015-02-19 10:47:02 +00002030 inc_nlink(d_inode(dir));
Eric Parisb77a4932010-11-23 11:40:08 -05002031
Al Viroa1c2aa12012-03-18 20:36:59 -04002032 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033}
2034
Daniel Burgener0eea6092020-08-19 15:59:35 -04002035static struct dentry *sel_make_disconnected_dir(struct super_block *sb,
2036 unsigned long *ino)
2037{
2038 struct inode *inode = sel_make_inode(sb, S_IFDIR | S_IRUGO | S_IXUGO);
2039
2040 if (!inode)
2041 return ERR_PTR(-ENOMEM);
2042
2043 inode->i_op = &simple_dir_inode_operations;
2044 inode->i_fop = &simple_dir_operations;
2045 inode->i_ino = ++(*ino);
2046 /* directory inodes start off with i_nlink == 2 (for "." entry) */
2047 inc_nlink(inode);
2048 return d_obtain_alias(inode);
2049}
2050
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002051#define NULL_FILE_NAME "null"
2052
David Howells920f50b2019-03-25 16:38:30 +00002053static int sel_fill_super(struct super_block *sb, struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002055 struct selinux_fs_info *fsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 int ret;
2057 struct dentry *dentry;
Al Viroa1c2aa12012-03-18 20:36:59 -04002058 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 struct inode_security_struct *isec;
2060
Eric Biggerscda37122017-03-25 21:15:37 -07002061 static const struct tree_descr selinux_files[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
2063 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
Stephen Smalleyce9982d2005-11-08 21:34:33 -08002064 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
2066 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
2067 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
2068 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
2069 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
2070 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
2071 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
2072 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
2073 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
2074 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
Eric Paris3f120702007-09-21 14:37:10 -04002075 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
2076 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
KaiGai Kohei11904162010-09-14 18:28:39 +09002077 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
Eric Paris72e8c8592012-02-16 15:08:39 -05002078 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUGO},
Andrew Perepechkof9df6452015-12-24 11:09:41 -05002079 [SEL_VALIDATE_TRANS] = {"validatetrans", &sel_transition_ops,
2080 S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 /* last one */ {""}
2082 };
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002083
2084 ret = selinux_fs_info_create(sb);
2085 if (ret)
2086 goto err;
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
2089 if (ret)
James Morris161ce452006-03-22 00:09:17 -08002090 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002092 fsi = sb->s_fs_info;
2093 fsi->bool_dir = sel_make_dir(sb->s_root, BOOL_DIR_NAME, &fsi->last_ino);
2094 if (IS_ERR(fsi->bool_dir)) {
2095 ret = PTR_ERR(fsi->bool_dir);
2096 fsi->bool_dir = NULL;
James Morris161ce452006-03-22 00:09:17 -08002097 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Eric Parisb77a4932010-11-23 11:40:08 -05002100 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05002102 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08002103 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Eric Parisb77a4932010-11-23 11:40:08 -05002105 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
nixiaoming7e4237f2018-08-05 17:10:36 +08002107 if (!inode) {
2108 dput(dentry);
James Morris161ce452006-03-22 00:09:17 -08002109 goto err;
nixiaoming7e4237f2018-08-05 17:10:36 +08002110 }
Eric Parisb77a4932010-11-23 11:40:08 -05002111
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002112 inode->i_ino = ++fsi->last_ino;
Casey Schaufler80788c22018-09-21 17:19:11 -07002113 isec = selinux_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 isec->sid = SECINITSID_DEVNULL;
2115 isec->sclass = SECCLASS_CHR_FILE;
Andreas Gruenbacher42059112016-11-10 22:18:27 +01002116 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
2119 d_add(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002121 dentry = sel_make_dir(sb->s_root, "avc", &fsi->last_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04002122 if (IS_ERR(dentry)) {
2123 ret = PTR_ERR(dentry);
James Morris161ce452006-03-22 00:09:17 -08002124 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 ret = sel_make_avc_files(dentry);
Jeff Vander Stoep66f8e2f2019-11-22 10:33:06 +01002128
2129 dentry = sel_make_dir(sb->s_root, "ss", &fsi->last_ino);
2130 if (IS_ERR(dentry)) {
2131 ret = PTR_ERR(dentry);
2132 goto err;
2133 }
2134
2135 ret = sel_make_ss_files(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 if (ret)
James Morris161ce452006-03-22 00:09:17 -08002137 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04002138
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002139 dentry = sel_make_dir(sb->s_root, "initial_contexts", &fsi->last_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04002140 if (IS_ERR(dentry)) {
2141 ret = PTR_ERR(dentry);
James Carterf0ee2e42007-04-04 10:11:29 -04002142 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002143 }
James Carterf0ee2e42007-04-04 10:11:29 -04002144
2145 ret = sel_make_initcon_files(dentry);
2146 if (ret)
2147 goto err;
2148
Daniel Burgener613ba182020-08-19 15:59:34 -04002149 fsi->class_dir = sel_make_dir(sb->s_root, CLASS_DIR_NAME, &fsi->last_ino);
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002150 if (IS_ERR(fsi->class_dir)) {
2151 ret = PTR_ERR(fsi->class_dir);
2152 fsi->class_dir = NULL;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04002153 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002154 }
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04002155
Daniel Burgener613ba182020-08-19 15:59:34 -04002156 fsi->policycap_dir = sel_make_dir(sb->s_root, POLICYCAP_DIR_NAME,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002157 &fsi->last_ino);
2158 if (IS_ERR(fsi->policycap_dir)) {
2159 ret = PTR_ERR(fsi->policycap_dir);
2160 fsi->policycap_dir = NULL;
Christopher J. PeBenitoe47c8fc52007-05-23 09:12:09 -04002161 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04002162 }
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002163
Stephen Smalley02a52c52020-08-07 09:29:34 -04002164 ret = sel_make_policycap(fsi);
2165 if (ret) {
2166 pr_err("SELinux: failed to load policy capabilities\n");
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002167 goto err;
Stephen Smalley02a52c52020-08-07 09:29:34 -04002168 }
2169
Eric Parisb77a4932010-11-23 11:40:08 -05002170 return 0;
James Morris161ce452006-03-22 00:09:17 -08002171err:
peter enderborgf8b69a52018-06-12 10:09:06 +02002172 pr_err("SELinux: %s: failed while creating inodes\n",
Eric Paris744ba352008-04-17 11:52:44 -04002173 __func__);
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002174
2175 selinux_fs_info_free(sb);
2176
Eric Parisb77a4932010-11-23 11:40:08 -05002177 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
2179
David Howells920f50b2019-03-25 16:38:30 +00002180static int sel_get_tree(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
David Howells920f50b2019-03-25 16:38:30 +00002182 return get_tree_single(fc, sel_fill_super);
2183}
2184
2185static const struct fs_context_operations sel_context_ops = {
2186 .get_tree = sel_get_tree,
2187};
2188
2189static int sel_init_fs_context(struct fs_context *fc)
2190{
2191 fc->ops = &sel_context_ops;
2192 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193}
2194
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002195static void sel_kill_sb(struct super_block *sb)
2196{
2197 selinux_fs_info_free(sb);
2198 kill_litter_super(sb);
2199}
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201static struct file_system_type sel_fs_type = {
2202 .name = "selinuxfs",
David Howells920f50b2019-03-25 16:38:30 +00002203 .init_fs_context = sel_init_fs_context,
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002204 .kill_sb = sel_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205};
2206
2207struct vfsmount *selinuxfs_mount;
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002208struct path selinux_null;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210static int __init init_sel_fs(void)
2211{
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002212 struct qstr null_name = QSTR_INIT(NULL_FILE_NAME,
2213 sizeof(NULL_FILE_NAME)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 int err;
2215
Stephen Smalley6c5a6822019-12-17 09:15:10 -05002216 if (!selinux_enabled_boot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return 0;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002218
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002219 err = sysfs_create_mount_point(fs_kobj, "selinux");
2220 if (err)
2221 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 err = register_filesystem(&sel_fs_type);
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002224 if (err) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002225 sysfs_remove_mount_point(fs_kobj, "selinux");
Eric Parisb77a4932010-11-23 11:40:08 -05002226 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07002227 }
Eric Parisb77a4932010-11-23 11:40:08 -05002228
Al Viro765927b2012-06-26 21:58:53 +04002229 selinux_null.mnt = selinuxfs_mount = kern_mount(&sel_fs_type);
Eric Parisb77a4932010-11-23 11:40:08 -05002230 if (IS_ERR(selinuxfs_mount)) {
peter enderborgf8b69a52018-06-12 10:09:06 +02002231 pr_err("selinuxfs: could not mount!\n");
Eric Parisb77a4932010-11-23 11:40:08 -05002232 err = PTR_ERR(selinuxfs_mount);
2233 selinuxfs_mount = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 }
Stephen Smalley0619f0f2018-03-20 11:59:11 -04002235 selinux_null.dentry = d_hash_and_lookup(selinux_null.mnt->mnt_root,
2236 &null_name);
2237 if (IS_ERR(selinux_null.dentry)) {
2238 pr_err("selinuxfs: could not lookup null!\n");
2239 err = PTR_ERR(selinux_null.dentry);
2240 selinux_null.dentry = NULL;
2241 }
Eric Parisb77a4932010-11-23 11:40:08 -05002242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return err;
2244}
2245
2246__initcall(init_sel_fs);
2247
2248#ifdef CONFIG_SECURITY_SELINUX_DISABLE
2249void exit_sel_fs(void)
2250{
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05002251 sysfs_remove_mount_point(fs_kobj, "selinux");
Stephen Smalleyfd40ffc2018-04-09 14:36:05 -04002252 dput(selinux_null.dentry);
Tim Chen423e0ab2011-07-19 09:32:38 -07002253 kern_unmount(selinuxfs_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 unregister_filesystem(&sel_fs_type);
2255}
2256#endif