blob: c9e8a9898ce48111af344584534c19f9cdc483a9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Updated: Karl MacMillan <kmacmillan@tresys.com>
2 *
Eric Paris18729812008-04-17 14:15:45 -04003 * Added conditional policy language extensions
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Paul Moore82c21bf2011-08-01 11:10:33 +00005 * Updated: Hewlett-Packard <paul@paul-moore.com>
Paul Moore3bb56b22008-01-29 08:38:19 -05006 *
Eric Paris18729812008-04-17 14:15:45 -04007 * Added support for the policy capability bitmap
Paul Moore3bb56b22008-01-29 08:38:19 -05008 *
9 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
11 * Copyright (C) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
12 * This program is free software; you can redistribute it and/or modify
Eric Paris18729812008-04-17 14:15:45 -040013 * it under the terms of the GNU General Public License as published by
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * the Free Software Foundation, version 2.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
18#include <linux/pagemap.h>
19#include <linux/slab.h>
20#include <linux/vmalloc.h>
21#include <linux/fs.h>
Ingo Molnarbb0030792006-03-22 00:09:14 -080022#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/init.h>
24#include <linux/string.h>
25#include <linux/security.h>
26#include <linux/major.h>
27#include <linux/seq_file.h>
28#include <linux/percpu.h>
Steve Grubbaf601e42006-01-04 14:08:39 +000029#include <linux/audit.h>
Eric Parisf5269712008-05-14 11:27:45 -040030#include <linux/uaccess.h>
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -070031#include <linux/kobject.h>
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -040032#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/* selinuxfs pseudo filesystem for exporting the security policy API.
35 Based on the proc code and the fs/nfsd/nfsctl.c code. */
36
37#include "flask.h"
38#include "avc.h"
39#include "avc_ss.h"
40#include "security.h"
41#include "objsec.h"
42#include "conditional.h"
43
Paul Moore3bb56b22008-01-29 08:38:19 -050044/* Policy capability filenames */
45static char *policycap_names[] = {
Eric Parisb0c636b2008-02-28 12:58:40 -050046 "network_peer_controls",
Chris PeBenito2be4d742013-05-03 09:05:39 -040047 "open_perms",
Stephen Smalleyda69a532017-01-09 10:07:30 -050048 "extended_socket_class",
Chris PeBenito2be4d742013-05-03 09:05:39 -040049 "always_check_network"
Paul Moore3bb56b22008-01-29 08:38:19 -050050};
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052unsigned int selinux_checkreqprot = CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
53
54static int __init checkreqprot_setup(char *str)
55{
Eric Parisf5269712008-05-14 11:27:45 -040056 unsigned long checkreqprot;
Jingoo Han29707b22014-02-05 15:13:14 +090057 if (!kstrtoul(str, 0, &checkreqprot))
Eric Parisf5269712008-05-14 11:27:45 -040058 selinux_checkreqprot = checkreqprot ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return 1;
60}
61__setup("checkreqprot=", checkreqprot_setup);
62
Ingo Molnarbb0030792006-03-22 00:09:14 -080063static DEFINE_MUTEX(sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* global data for booleans */
Eric Paris18729812008-04-17 14:15:45 -040066static struct dentry *bool_dir;
67static int bool_num;
Stephen Smalleyd313f94832007-11-26 11:12:53 -050068static char **bool_pending_names;
Eric Paris18729812008-04-17 14:15:45 -040069static int *bool_pending_values;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -040071/* global data for classes */
Eric Paris18729812008-04-17 14:15:45 -040072static struct dentry *class_dir;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -040073static unsigned long last_class_ino;
74
Eric Pariscee74f42010-10-13 17:50:25 -040075static char policy_opened;
76
Paul Moore3bb56b22008-01-29 08:38:19 -050077/* global data for policy capabilities */
Eric Paris18729812008-04-17 14:15:45 -040078static struct dentry *policycap_dir;
Paul Moore3bb56b22008-01-29 08:38:19 -050079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080enum sel_inos {
81 SEL_ROOT_INO = 2,
82 SEL_LOAD, /* load policy */
83 SEL_ENFORCE, /* get or set enforcing status */
84 SEL_CONTEXT, /* validate context */
85 SEL_ACCESS, /* compute access decision */
86 SEL_CREATE, /* compute create labeling decision */
87 SEL_RELABEL, /* compute relabeling decision */
88 SEL_USER, /* compute reachable user contexts */
89 SEL_POLICYVERS, /* return policy version for this kernel */
90 SEL_COMMIT_BOOLS, /* commit new boolean values */
91 SEL_MLS, /* return if MLS policy is enabled */
92 SEL_DISABLE, /* disable SELinux until next reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 SEL_MEMBER, /* compute polyinstantiation membership decision */
94 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
James Morris4e5ab4c2006-06-09 00:33:33 -070095 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
Eric Paris3f120702007-09-21 14:37:10 -040096 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
97 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
KaiGai Kohei11904162010-09-14 18:28:39 +090098 SEL_STATUS, /* export current status using mmap() */
Eric Pariscee74f42010-10-13 17:50:25 -040099 SEL_POLICY, /* allow userspace to read the in kernel policy */
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500100 SEL_VALIDATE_TRANS, /* compute validatetrans decision */
James Carter6174eaf2007-04-04 16:18:39 -0400101 SEL_INO_NEXT, /* The next inode number to use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
James Carter6174eaf2007-04-04 16:18:39 -0400104static unsigned long sel_last_ino = SEL_INO_NEXT - 1;
105
Paul Moore3bb56b22008-01-29 08:38:19 -0500106#define SEL_INITCON_INO_OFFSET 0x01000000
107#define SEL_BOOL_INO_OFFSET 0x02000000
108#define SEL_CLASS_INO_OFFSET 0x04000000
109#define SEL_POLICYCAP_INO_OFFSET 0x08000000
110#define SEL_INO_MASK 0x00ffffff
James Carterf0ee2e42007-04-04 10:11:29 -0400111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define TMPBUFLEN 12
113static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
114 size_t count, loff_t *ppos)
115{
116 char tmpbuf[TMPBUFLEN];
117 ssize_t length;
118
119 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_enforcing);
120 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
121}
122
123#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Eric Paris18729812008-04-17 14:15:45 -0400124static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 size_t count, loff_t *ppos)
126
127{
Eric Parisb77a4932010-11-23 11:40:08 -0500128 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 ssize_t length;
130 int new_value;
131
Davi Arnautbfd51622005-10-30 14:59:24 -0800132 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500133 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500134
135 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500136 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500137 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500138
Al Viro8365a712015-12-24 00:08:06 -0500139 page = memdup_user_nul(buf, count);
140 if (IS_ERR(page))
141 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 length = -EINVAL;
144 if (sscanf(page, "%d", &new_value) != 1)
145 goto out;
146
Stephen Smalleyea49d10ee2016-11-18 09:30:38 -0500147 new_value = !!new_value;
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (new_value != selinux_enforcing) {
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500150 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
151 SECCLASS_SECURITY, SECURITY__SETENFORCE,
152 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (length)
154 goto out;
Steve Grubbaf601e42006-01-04 14:08:39 +0000155 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
Eric Paris4746ec52008-01-08 10:06:53 -0500156 "enforcing=%d old_enforcing=%d auid=%u ses=%u",
157 new_value, selinux_enforcing,
Eric W. Biederman581abc02012-08-20 00:09:36 -0700158 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric Paris4746ec52008-01-08 10:06:53 -0500159 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 selinux_enforcing = new_value;
161 if (selinux_enforcing)
162 avc_ss_reset(0);
163 selnl_notify_setenforce(selinux_enforcing);
KaiGai Kohei11904162010-09-14 18:28:39 +0900164 selinux_status_update_setenforce(selinux_enforcing);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166 length = count;
167out:
Al Viro8365a712015-12-24 00:08:06 -0500168 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return length;
170}
171#else
172#define sel_write_enforce NULL
173#endif
174
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800175static const struct file_operations sel_enforce_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .read = sel_read_enforce,
177 .write = sel_write_enforce,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200178 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179};
180
Eric Paris3f120702007-09-21 14:37:10 -0400181static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
182 size_t count, loff_t *ppos)
183{
184 char tmpbuf[TMPBUFLEN];
185 ssize_t length;
Al Viro496ad9a2013-01-23 17:07:38 -0500186 ino_t ino = file_inode(filp)->i_ino;
Eric Paris3f120702007-09-21 14:37:10 -0400187 int handle_unknown = (ino == SEL_REJECT_UNKNOWN) ?
188 security_get_reject_unknown() : !security_get_allow_unknown();
189
190 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
191 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
192}
193
194static const struct file_operations sel_handle_unknown_ops = {
195 .read = sel_read_handle_unknown,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200196 .llseek = generic_file_llseek,
Eric Paris3f120702007-09-21 14:37:10 -0400197};
198
KaiGai Kohei11904162010-09-14 18:28:39 +0900199static int sel_open_handle_status(struct inode *inode, struct file *filp)
200{
201 struct page *status = selinux_kernel_status_page();
202
203 if (!status)
204 return -ENOMEM;
205
206 filp->private_data = status;
207
208 return 0;
209}
210
211static ssize_t sel_read_handle_status(struct file *filp, char __user *buf,
212 size_t count, loff_t *ppos)
213{
214 struct page *status = filp->private_data;
215
216 BUG_ON(!status);
217
218 return simple_read_from_buffer(buf, count, ppos,
219 page_address(status),
220 sizeof(struct selinux_kernel_status));
221}
222
223static int sel_mmap_handle_status(struct file *filp,
224 struct vm_area_struct *vma)
225{
226 struct page *status = filp->private_data;
227 unsigned long size = vma->vm_end - vma->vm_start;
228
229 BUG_ON(!status);
230
231 /* only allows one page from the head */
232 if (vma->vm_pgoff > 0 || size != PAGE_SIZE)
233 return -EIO;
234 /* disallow writable mapping */
235 if (vma->vm_flags & VM_WRITE)
236 return -EPERM;
237 /* disallow mprotect() turns it into writable */
238 vma->vm_flags &= ~VM_MAYWRITE;
239
240 return remap_pfn_range(vma, vma->vm_start,
241 page_to_pfn(status),
242 size, vma->vm_page_prot);
243}
244
245static const struct file_operations sel_handle_status_ops = {
246 .open = sel_open_handle_status,
247 .read = sel_read_handle_status,
248 .mmap = sel_mmap_handle_status,
249 .llseek = generic_file_llseek,
250};
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Eric Paris18729812008-04-17 14:15:45 -0400253static ssize_t sel_write_disable(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 size_t count, loff_t *ppos)
255
256{
Al Viro8365a712015-12-24 00:08:06 -0500257 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 ssize_t length;
259 int new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Davi Arnautbfd51622005-10-30 14:59:24 -0800261 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500262 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500263
264 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500265 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500266 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500267
Al Viro8365a712015-12-24 00:08:06 -0500268 page = memdup_user_nul(buf, count);
269 if (IS_ERR(page))
270 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 length = -EINVAL;
273 if (sscanf(page, "%d", &new_value) != 1)
274 goto out;
275
276 if (new_value) {
277 length = selinux_disable();
Eric Parisb77a4932010-11-23 11:40:08 -0500278 if (length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 goto out;
Steve Grubbaf601e42006-01-04 14:08:39 +0000280 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
Eric Paris4746ec52008-01-08 10:06:53 -0500281 "selinux=0 auid=%u ses=%u",
Eric W. Biederman581abc02012-08-20 00:09:36 -0700282 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric Paris4746ec52008-01-08 10:06:53 -0500283 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285
286 length = count;
287out:
Al Viro8365a712015-12-24 00:08:06 -0500288 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return length;
290}
291#else
292#define sel_write_disable NULL
293#endif
294
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800295static const struct file_operations sel_disable_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 .write = sel_write_disable,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200297 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298};
299
300static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
Eric Paris18729812008-04-17 14:15:45 -0400301 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 char tmpbuf[TMPBUFLEN];
304 ssize_t length;
305
306 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
307 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
308}
309
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800310static const struct file_operations sel_policyvers_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 .read = sel_read_policyvers,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200312 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313};
314
315/* declaration for sel_write_load */
316static int sel_make_bools(void);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400317static int sel_make_classes(void);
Paul Moore3bb56b22008-01-29 08:38:19 -0500318static int sel_make_policycap(void);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400319
320/* declaration for sel_make_class_dirs */
Al Viroa1c2aa12012-03-18 20:36:59 -0400321static struct dentry *sel_make_dir(struct dentry *dir, const char *name,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400322 unsigned long *ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324static ssize_t sel_read_mls(struct file *filp, char __user *buf,
325 size_t count, loff_t *ppos)
326{
327 char tmpbuf[TMPBUFLEN];
328 ssize_t length;
329
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100330 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
331 security_mls_enabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
333}
334
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800335static const struct file_operations sel_mls_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 .read = sel_read_mls,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200337 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338};
339
Eric Pariscee74f42010-10-13 17:50:25 -0400340struct policy_load_memory {
341 size_t len;
342 void *data;
343};
344
345static int sel_open_policy(struct inode *inode, struct file *filp)
346{
347 struct policy_load_memory *plm = NULL;
348 int rc;
349
350 BUG_ON(filp->private_data);
351
352 mutex_lock(&sel_mutex);
353
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500354 rc = avc_has_perm(current_sid(), SECINITSID_SECURITY,
355 SECCLASS_SECURITY, SECURITY__READ_POLICY, NULL);
Eric Pariscee74f42010-10-13 17:50:25 -0400356 if (rc)
357 goto err;
358
359 rc = -EBUSY;
360 if (policy_opened)
361 goto err;
362
363 rc = -ENOMEM;
364 plm = kzalloc(sizeof(*plm), GFP_KERNEL);
365 if (!plm)
366 goto err;
367
368 if (i_size_read(inode) != security_policydb_len()) {
Al Viro59551022016-01-22 15:40:57 -0500369 inode_lock(inode);
Eric Pariscee74f42010-10-13 17:50:25 -0400370 i_size_write(inode, security_policydb_len());
Al Viro59551022016-01-22 15:40:57 -0500371 inode_unlock(inode);
Eric Pariscee74f42010-10-13 17:50:25 -0400372 }
373
374 rc = security_read_policy(&plm->data, &plm->len);
375 if (rc)
376 goto err;
377
378 policy_opened = 1;
379
380 filp->private_data = plm;
381
382 mutex_unlock(&sel_mutex);
383
384 return 0;
385err:
386 mutex_unlock(&sel_mutex);
387
388 if (plm)
389 vfree(plm->data);
390 kfree(plm);
391 return rc;
392}
393
394static int sel_release_policy(struct inode *inode, struct file *filp)
395{
396 struct policy_load_memory *plm = filp->private_data;
397
398 BUG_ON(!plm);
399
400 policy_opened = 0;
401
402 vfree(plm->data);
403 kfree(plm);
404
405 return 0;
406}
407
408static ssize_t sel_read_policy(struct file *filp, char __user *buf,
409 size_t count, loff_t *ppos)
410{
411 struct policy_load_memory *plm = filp->private_data;
412 int ret;
413
414 mutex_lock(&sel_mutex);
415
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500416 ret = avc_has_perm(current_sid(), SECINITSID_SECURITY,
417 SECCLASS_SECURITY, SECURITY__READ_POLICY, NULL);
Eric Pariscee74f42010-10-13 17:50:25 -0400418 if (ret)
419 goto out;
420
421 ret = simple_read_from_buffer(buf, count, ppos, plm->data, plm->len);
422out:
423 mutex_unlock(&sel_mutex);
424 return ret;
425}
426
Dave Jiang11bac802017-02-24 14:56:41 -0800427static int sel_mmap_policy_fault(struct vm_fault *vmf)
Eric Paris845ca302010-10-13 17:50:31 -0400428{
Dave Jiang11bac802017-02-24 14:56:41 -0800429 struct policy_load_memory *plm = vmf->vma->vm_file->private_data;
Eric Paris845ca302010-10-13 17:50:31 -0400430 unsigned long offset;
431 struct page *page;
432
433 if (vmf->flags & (FAULT_FLAG_MKWRITE | FAULT_FLAG_WRITE))
434 return VM_FAULT_SIGBUS;
435
436 offset = vmf->pgoff << PAGE_SHIFT;
437 if (offset >= roundup(plm->len, PAGE_SIZE))
438 return VM_FAULT_SIGBUS;
439
440 page = vmalloc_to_page(plm->data + offset);
441 get_page(page);
442
443 vmf->page = page;
444
445 return 0;
446}
447
Kirill A. Shutemov7cbea8d2015-09-09 15:39:26 -0700448static const struct vm_operations_struct sel_mmap_policy_ops = {
Eric Paris845ca302010-10-13 17:50:31 -0400449 .fault = sel_mmap_policy_fault,
450 .page_mkwrite = sel_mmap_policy_fault,
451};
452
James Morrisad3fa082011-08-30 10:50:12 +1000453static int sel_mmap_policy(struct file *filp, struct vm_area_struct *vma)
Eric Paris845ca302010-10-13 17:50:31 -0400454{
455 if (vma->vm_flags & VM_SHARED) {
456 /* do not allow mprotect to make mapping writable */
457 vma->vm_flags &= ~VM_MAYWRITE;
458
459 if (vma->vm_flags & VM_WRITE)
460 return -EACCES;
461 }
462
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700463 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Eric Paris845ca302010-10-13 17:50:31 -0400464 vma->vm_ops = &sel_mmap_policy_ops;
465
466 return 0;
467}
468
Eric Pariscee74f42010-10-13 17:50:25 -0400469static const struct file_operations sel_policy_ops = {
470 .open = sel_open_policy,
471 .read = sel_read_policy,
Eric Paris845ca302010-10-13 17:50:31 -0400472 .mmap = sel_mmap_policy,
Eric Pariscee74f42010-10-13 17:50:25 -0400473 .release = sel_release_policy,
Eric Paris47a93a52012-02-16 15:08:39 -0500474 .llseek = generic_file_llseek,
Eric Pariscee74f42010-10-13 17:50:25 -0400475};
476
Eric Paris18729812008-04-17 14:15:45 -0400477static ssize_t sel_write_load(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 size_t count, loff_t *ppos)
479
480{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 ssize_t length;
482 void *data = NULL;
483
Ingo Molnarbb0030792006-03-22 00:09:14 -0800484 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500486 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
487 SECCLASS_SECURITY, SECURITY__LOAD_POLICY, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (length)
489 goto out;
490
Eric Parisb77a4932010-11-23 11:40:08 -0500491 /* No partial writes. */
492 length = -EINVAL;
493 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Eric Parisb77a4932010-11-23 11:40:08 -0500496 length = -EFBIG;
497 if (count > 64 * 1024 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -0500499
500 length = -ENOMEM;
501 data = vmalloc(count);
502 if (!data)
503 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 length = -EFAULT;
506 if (copy_from_user(data, buf, count) != 0)
507 goto out;
508
509 length = security_load_policy(data, count);
Gary Tierney4262fb52017-01-09 10:07:31 -0500510 if (length) {
511 pr_warn_ratelimited("SELinux: failed to load policy\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 goto out;
Gary Tierney4262fb52017-01-09 10:07:31 -0500513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Eric Parisb77a4932010-11-23 11:40:08 -0500515 length = sel_make_bools();
Gary Tierney4262fb52017-01-09 10:07:31 -0500516 if (length) {
517 pr_err("SELinux: failed to load policy booleans\n");
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400518 goto out1;
Gary Tierney4262fb52017-01-09 10:07:31 -0500519 }
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400520
Eric Parisb77a4932010-11-23 11:40:08 -0500521 length = sel_make_classes();
Gary Tierney4262fb52017-01-09 10:07:31 -0500522 if (length) {
523 pr_err("SELinux: failed to load policy classes\n");
Paul Moore3bb56b22008-01-29 08:38:19 -0500524 goto out1;
Gary Tierney4262fb52017-01-09 10:07:31 -0500525 }
Paul Moore3bb56b22008-01-29 08:38:19 -0500526
Eric Parisb77a4932010-11-23 11:40:08 -0500527 length = sel_make_policycap();
Gary Tierney4262fb52017-01-09 10:07:31 -0500528 if (length) {
529 pr_err("SELinux: failed to load policy capabilities\n");
Eric Parisb77a4932010-11-23 11:40:08 -0500530 goto out1;
Gary Tierney4262fb52017-01-09 10:07:31 -0500531 }
Eric Parisb77a4932010-11-23 11:40:08 -0500532
533 length = count;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400534
535out1:
Steve Grubbaf601e42006-01-04 14:08:39 +0000536 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
Eric Paris4746ec52008-01-08 10:06:53 -0500537 "policy loaded auid=%u ses=%u",
Eric W. Biederman581abc02012-08-20 00:09:36 -0700538 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric Paris4746ec52008-01-08 10:06:53 -0500539 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540out:
Ingo Molnarbb0030792006-03-22 00:09:14 -0800541 mutex_unlock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 vfree(data);
543 return length;
544}
545
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800546static const struct file_operations sel_load_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 .write = sel_write_load,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200548 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549};
550
Eric Paris18729812008-04-17 14:15:45 -0400551static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Eric Parisb77a4932010-11-23 11:40:08 -0500553 char *canon = NULL;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800554 u32 sid, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 ssize_t length;
556
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500557 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
558 SECCLASS_SECURITY, SECURITY__CHECK_CONTEXT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500560 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +0100562 length = security_context_to_sid(buf, size, &sid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500563 if (length)
564 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800566 length = security_sid_to_context(sid, &canon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500567 if (length)
568 goto out;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800569
Eric Parisb77a4932010-11-23 11:40:08 -0500570 length = -ERANGE;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800571 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400572 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
573 "payload max\n", __func__, len);
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800574 goto out;
575 }
576
577 memcpy(buf, canon, len);
578 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579out:
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800580 kfree(canon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return length;
582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
585 size_t count, loff_t *ppos)
586{
587 char tmpbuf[TMPBUFLEN];
588 ssize_t length;
589
590 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", selinux_checkreqprot);
591 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
592}
593
Eric Paris18729812008-04-17 14:15:45 -0400594static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 size_t count, loff_t *ppos)
596{
Al Viro8365a712015-12-24 00:08:06 -0500597 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 ssize_t length;
599 unsigned int new_value;
600
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500601 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
602 SECCLASS_SECURITY, SECURITY__SETCHECKREQPROT,
603 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (length)
Al Viro8365a712015-12-24 00:08:06 -0500605 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Davi Arnautbfd51622005-10-30 14:59:24 -0800607 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -0500608 return -ENOMEM;
Eric Parisb77a4932010-11-23 11:40:08 -0500609
610 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -0500611 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -0500612 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -0500613
Al Viro8365a712015-12-24 00:08:06 -0500614 page = memdup_user_nul(buf, count);
615 if (IS_ERR(page))
616 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 length = -EINVAL;
619 if (sscanf(page, "%u", &new_value) != 1)
620 goto out;
621
622 selinux_checkreqprot = new_value ? 1 : 0;
623 length = count;
624out:
Al Viro8365a712015-12-24 00:08:06 -0500625 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return length;
627}
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800628static const struct file_operations sel_checkreqprot_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 .read = sel_read_checkreqprot,
630 .write = sel_write_checkreqprot,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200631 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632};
633
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500634static ssize_t sel_write_validatetrans(struct file *file,
635 const char __user *buf,
636 size_t count, loff_t *ppos)
637{
638 char *oldcon = NULL, *newcon = NULL, *taskcon = NULL;
639 char *req = NULL;
640 u32 osid, nsid, tsid;
641 u16 tclass;
642 int rc;
643
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500644 rc = avc_has_perm(current_sid(), SECINITSID_SECURITY,
645 SECCLASS_SECURITY, SECURITY__VALIDATE_TRANS, NULL);
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500646 if (rc)
647 goto out;
648
649 rc = -ENOMEM;
650 if (count >= PAGE_SIZE)
651 goto out;
652
653 /* No partial writes. */
654 rc = -EINVAL;
655 if (*ppos != 0)
656 goto out;
657
658 rc = -ENOMEM;
659 req = kzalloc(count + 1, GFP_KERNEL);
660 if (!req)
661 goto out;
662
663 rc = -EFAULT;
664 if (copy_from_user(req, buf, count))
665 goto out;
666
667 rc = -ENOMEM;
668 oldcon = kzalloc(count + 1, GFP_KERNEL);
669 if (!oldcon)
670 goto out;
671
672 newcon = kzalloc(count + 1, GFP_KERNEL);
673 if (!newcon)
674 goto out;
675
676 taskcon = kzalloc(count + 1, GFP_KERNEL);
677 if (!taskcon)
678 goto out;
679
680 rc = -EINVAL;
681 if (sscanf(req, "%s %s %hu %s", oldcon, newcon, &tclass, taskcon) != 4)
682 goto out;
683
684 rc = security_context_str_to_sid(oldcon, &osid, GFP_KERNEL);
685 if (rc)
686 goto out;
687
688 rc = security_context_str_to_sid(newcon, &nsid, GFP_KERNEL);
689 if (rc)
690 goto out;
691
692 rc = security_context_str_to_sid(taskcon, &tsid, GFP_KERNEL);
693 if (rc)
694 goto out;
695
696 rc = security_validate_transition_user(osid, nsid, tsid, tclass);
697 if (!rc)
698 rc = count;
699out:
700 kfree(req);
701 kfree(oldcon);
702 kfree(newcon);
703 kfree(taskcon);
704 return rc;
705}
706
707static const struct file_operations sel_transition_ops = {
708 .write = sel_write_validatetrans,
709 .llseek = generic_file_llseek,
710};
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712/*
713 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
714 */
Eric Paris18729812008-04-17 14:15:45 -0400715static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
716static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
717static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
718static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
719static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721static ssize_t (*write_op[])(struct file *, char *, size_t) = {
722 [SEL_ACCESS] = sel_write_access,
723 [SEL_CREATE] = sel_write_create,
724 [SEL_RELABEL] = sel_write_relabel,
725 [SEL_USER] = sel_write_user,
726 [SEL_MEMBER] = sel_write_member,
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800727 [SEL_CONTEXT] = sel_write_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728};
729
730static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
731{
Al Viro496ad9a2013-01-23 17:07:38 -0500732 ino_t ino = file_inode(file)->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 char *data;
734 ssize_t rv;
735
Nicolas Kaiser6e20a642006-01-06 00:11:22 -0800736 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return -EINVAL;
738
739 data = simple_transaction_get(file, buf, size);
740 if (IS_ERR(data))
741 return PTR_ERR(data);
742
Eric Paris18729812008-04-17 14:15:45 -0400743 rv = write_op[ino](file, data, size);
744 if (rv > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 simple_transaction_set(file, rv);
746 rv = size;
747 }
748 return rv;
749}
750
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800751static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 .write = selinux_transaction_write,
753 .read = simple_transaction_read,
754 .release = simple_transaction_release,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200755 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756};
757
758/*
759 * payload - write methods
760 * If the method has a response, the response should be put in buf,
761 * and the length returned. Otherwise return 0 or and -error.
762 */
763
Eric Paris18729812008-04-17 14:15:45 -0400764static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Eric Parisb77a4932010-11-23 11:40:08 -0500766 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 u32 ssid, tsid;
768 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 struct av_decision avd;
770 ssize_t length;
771
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500772 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
773 SECCLASS_SECURITY, SECURITY__COMPUTE_AV, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500775 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800778 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500780 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Eric Parisb77a4932010-11-23 11:40:08 -0500782 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800783 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (!tcon)
785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 length = -EINVAL;
Stephen Smalley19439d02010-01-14 17:28:10 -0500788 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500789 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Rasmus Villemoes44be2f62015-10-21 17:44:25 -0400791 length = security_context_str_to_sid(scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500792 if (length)
793 goto out;
794
Rasmus Villemoes44be2f62015-10-21 17:44:25 -0400795 length = security_context_str_to_sid(tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500796 if (length)
797 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Stephen Smalley19439d02010-01-14 17:28:10 -0500799 security_compute_av_user(ssid, tsid, tclass, &avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900802 "%x %x %x %x %u %x",
Eric Parisf1c63812009-02-12 14:50:54 -0500803 avd.allowed, 0xffffffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 avd.auditallow, avd.auditdeny,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900805 avd.seqno, avd.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806out:
Eric Parisb77a4932010-11-23 11:40:08 -0500807 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 kfree(scon);
809 return length;
810}
811
Eric Paris18729812008-04-17 14:15:45 -0400812static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Eric Parisb77a4932010-11-23 11:40:08 -0500814 char *scon = NULL, *tcon = NULL;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100815 char *namebuf = NULL, *objname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 u32 ssid, tsid, newsid;
817 u16 tclass;
818 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500819 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 u32 len;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100821 int nargs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500823 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
824 SECCLASS_SECURITY, SECURITY__COMPUTE_CREATE,
825 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500827 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800830 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500832 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Eric Parisb77a4932010-11-23 11:40:08 -0500834 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800835 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (!tcon)
837 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100839 length = -ENOMEM;
840 namebuf = kzalloc(size + 1, GFP_KERNEL);
841 if (!namebuf)
Eric Parisb77a4932010-11-23 11:40:08 -0500842 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100844 length = -EINVAL;
845 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
846 if (nargs < 3 || nargs > 4)
847 goto out;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400848 if (nargs == 4) {
849 /*
850 * If and when the name of new object to be queried contains
851 * either whitespace or multibyte characters, they shall be
852 * encoded based on the percentage-encoding rule.
853 * If not encoded, the sscanf logic picks up only left-half
854 * of the supplied name; splitted by a whitespace unexpectedly.
855 */
856 char *r, *w;
857 int c1, c2;
858
859 r = w = namebuf;
860 do {
861 c1 = *r++;
862 if (c1 == '+')
863 c1 = ' ';
864 else if (c1 == '%') {
Andy Shevchenkoaf7ff2c2011-11-15 15:11:41 -0800865 c1 = hex_to_bin(*r++);
866 if (c1 < 0)
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400867 goto out;
Andy Shevchenkoaf7ff2c2011-11-15 15:11:41 -0800868 c2 = hex_to_bin(*r++);
869 if (c2 < 0)
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400870 goto out;
871 c1 = (c1 << 4) | c2;
872 }
873 *w++ = c1;
874 } while (c1 != '\0');
875
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100876 objname = namebuf;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400877 }
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100878
Rasmus Villemoes44be2f62015-10-21 17:44:25 -0400879 length = security_context_str_to_sid(scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500880 if (length)
881 goto out;
882
Rasmus Villemoes44be2f62015-10-21 17:44:25 -0400883 length = security_context_str_to_sid(tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500884 if (length)
885 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100887 length = security_transition_sid_user(ssid, tsid, tclass,
888 objname, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500889 if (length)
890 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500893 if (length)
894 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Eric Parisb77a4932010-11-23 11:40:08 -0500896 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400898 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
899 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -0500900 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902
903 memcpy(buf, newcon, len);
904 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905out:
Eric Parisb77a4932010-11-23 11:40:08 -0500906 kfree(newcon);
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100907 kfree(namebuf);
Eric Parisb77a4932010-11-23 11:40:08 -0500908 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 kfree(scon);
910 return length;
911}
912
Eric Paris18729812008-04-17 14:15:45 -0400913static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Eric Parisb77a4932010-11-23 11:40:08 -0500915 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 u32 ssid, tsid, newsid;
917 u16 tclass;
918 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500919 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 u32 len;
921
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500922 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
923 SECCLASS_SECURITY, SECURITY__COMPUTE_RELABEL,
924 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500926 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800929 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500931 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Eric Parisb77a4932010-11-23 11:40:08 -0500933 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800934 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (!tcon)
936 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 length = -EINVAL;
939 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500940 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Rasmus Villemoes44be2f62015-10-21 17:44:25 -0400942 length = security_context_str_to_sid(scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500943 if (length)
944 goto out;
945
Rasmus Villemoes44be2f62015-10-21 17:44:25 -0400946 length = security_context_str_to_sid(tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -0500947 if (length)
948 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 length = security_change_sid(ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500951 if (length)
952 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500955 if (length)
956 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Eric Parisb77a4932010-11-23 11:40:08 -0500958 length = -ERANGE;
959 if (len > SIMPLE_TRANSACTION_LIMIT)
960 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 memcpy(buf, newcon, len);
963 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964out:
Eric Parisb77a4932010-11-23 11:40:08 -0500965 kfree(newcon);
966 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 kfree(scon);
968 return length;
969}
970
Eric Paris18729812008-04-17 14:15:45 -0400971static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Eric Parisb77a4932010-11-23 11:40:08 -0500973 char *con = NULL, *user = NULL, *ptr;
974 u32 sid, *sids = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 ssize_t length;
976 char *newcon;
977 int i, rc;
978 u32 len, nsids;
979
Stephen Smalleybe0554c2017-01-09 10:07:31 -0500980 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
981 SECCLASS_SECURITY, SECURITY__COMPUTE_USER,
982 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (length)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700984 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800987 con = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (!con)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700989 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Eric Parisb77a4932010-11-23 11:40:08 -0500991 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800992 user = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (!user)
994 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 length = -EINVAL;
997 if (sscanf(buf, "%s %s", con, user) != 2)
Eric Parisb77a4932010-11-23 11:40:08 -0500998 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Rasmus Villemoes44be2f62015-10-21 17:44:25 -04001000 length = security_context_str_to_sid(con, &sid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001001 if (length)
1002 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 length = security_get_user_sids(sid, user, &sids, &nsids);
Eric Parisb77a4932010-11-23 11:40:08 -05001005 if (length)
1006 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 length = sprintf(buf, "%u", nsids) + 1;
1009 ptr = buf + length;
1010 for (i = 0; i < nsids; i++) {
1011 rc = security_sid_to_context(sids[i], &newcon, &len);
1012 if (rc) {
1013 length = rc;
Eric Parisb77a4932010-11-23 11:40:08 -05001014 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
1017 kfree(newcon);
1018 length = -ERANGE;
Eric Parisb77a4932010-11-23 11:40:08 -05001019 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021 memcpy(ptr, newcon, len);
1022 kfree(newcon);
1023 ptr += len;
1024 length += len;
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026out:
Eric Parisb77a4932010-11-23 11:40:08 -05001027 kfree(sids);
1028 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 kfree(con);
1030 return length;
1031}
1032
Eric Paris18729812008-04-17 14:15:45 -04001033static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Eric Parisb77a4932010-11-23 11:40:08 -05001035 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 u32 ssid, tsid, newsid;
1037 u16 tclass;
1038 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -05001039 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 u32 len;
1041
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001042 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
1043 SECCLASS_SECURITY, SECURITY__COMPUTE_MEMBER,
1044 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -05001046 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001049 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (!scon)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001051 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Eric Parisb77a4932010-11-23 11:40:08 -05001053 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001054 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (!tcon)
1056 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 length = -EINVAL;
1059 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001060 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Rasmus Villemoes44be2f62015-10-21 17:44:25 -04001062 length = security_context_str_to_sid(scon, &ssid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001063 if (length)
1064 goto out;
1065
Rasmus Villemoes44be2f62015-10-21 17:44:25 -04001066 length = security_context_str_to_sid(tcon, &tsid, GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001067 if (length)
1068 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 length = security_member_sid(ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001071 if (length)
1072 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001075 if (length)
1076 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Eric Parisb77a4932010-11-23 11:40:08 -05001078 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -04001080 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
1081 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001082 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084
1085 memcpy(buf, newcon, len);
1086 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087out:
Eric Parisb77a4932010-11-23 11:40:08 -05001088 kfree(newcon);
1089 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 kfree(scon);
1091 return length;
1092}
1093
1094static struct inode *sel_make_inode(struct super_block *sb, int mode)
1095{
1096 struct inode *ret = new_inode(sb);
1097
1098 if (ret) {
1099 ret->i_mode = mode;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001100 ret->i_atime = ret->i_mtime = ret->i_ctime = current_time(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 return ret;
1103}
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1106 size_t count, loff_t *ppos)
1107{
1108 char *page = NULL;
1109 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 ssize_t ret;
1111 int cur_enforcing;
Al Viro496ad9a2013-01-23 17:07:38 -05001112 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001113 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Ingo Molnarbb0030792006-03-22 00:09:14 -08001115 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Eric Parisb77a4932010-11-23 11:40:08 -05001117 ret = -EINVAL;
1118 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001119 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Eric Parisb77a4932010-11-23 11:40:08 -05001121 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001122 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001123 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001126 cur_enforcing = security_get_bool_value(index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (cur_enforcing < 0) {
1128 ret = cur_enforcing;
1129 goto out;
1130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001132 bool_pending_values[index]);
Stephen Smalley68bdcf22006-03-22 00:09:15 -08001133 ret = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134out:
Ingo Molnarbb0030792006-03-22 00:09:14 -08001135 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001136 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return ret;
1138}
1139
1140static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1141 size_t count, loff_t *ppos)
1142{
1143 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001144 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 int new_value;
Al Viro496ad9a2013-01-23 17:07:38 -05001146 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001147 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Ingo Molnarbb0030792006-03-22 00:09:14 -08001149 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001151 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
1152 SECCLASS_SECURITY, SECURITY__SETBOOL,
1153 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (length)
1155 goto out;
1156
Eric Parisb77a4932010-11-23 11:40:08 -05001157 length = -EINVAL;
1158 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001159 goto out;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001160
Eric Parisb77a4932010-11-23 11:40:08 -05001161 length = -ENOMEM;
1162 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 goto out;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001164
Eric Parisb77a4932010-11-23 11:40:08 -05001165 /* No partial writes. */
1166 length = -EINVAL;
1167 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001169
Al Viro8365a712015-12-24 00:08:06 -05001170 page = memdup_user_nul(buf, count);
1171 if (IS_ERR(page)) {
1172 length = PTR_ERR(page);
1173 page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 goto out;
Al Viro8365a712015-12-24 00:08:06 -05001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 length = -EINVAL;
1178 if (sscanf(page, "%d", &new_value) != 1)
1179 goto out;
1180
1181 if (new_value)
1182 new_value = 1;
1183
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001184 bool_pending_values[index] = new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 length = count;
1186
1187out:
Ingo Molnarbb0030792006-03-22 00:09:14 -08001188 mutex_unlock(&sel_mutex);
Al Viro8365a712015-12-24 00:08:06 -05001189 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return length;
1191}
1192
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001193static const struct file_operations sel_bool_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001194 .read = sel_read_bool,
1195 .write = sel_write_bool,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001196 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197};
1198
1199static ssize_t sel_commit_bools_write(struct file *filep,
1200 const char __user *buf,
1201 size_t count, loff_t *ppos)
1202{
1203 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001204 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 int new_value;
1206
Ingo Molnarbb0030792006-03-22 00:09:14 -08001207 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001209 length = avc_has_perm(current_sid(), SECINITSID_SECURITY,
1210 SECCLASS_SECURITY, SECURITY__SETBOOL,
1211 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (length)
1213 goto out;
1214
Eric Parisb77a4932010-11-23 11:40:08 -05001215 length = -ENOMEM;
1216 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001218
1219 /* No partial writes. */
1220 length = -EINVAL;
1221 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001223
Al Viro8365a712015-12-24 00:08:06 -05001224 page = memdup_user_nul(buf, count);
1225 if (IS_ERR(page)) {
1226 length = PTR_ERR(page);
1227 page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 goto out;
Al Viro8365a712015-12-24 00:08:06 -05001229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 length = -EINVAL;
1232 if (sscanf(page, "%d", &new_value) != 1)
1233 goto out;
1234
Eric Parisb77a4932010-11-23 11:40:08 -05001235 length = 0;
Eric Paris18729812008-04-17 14:15:45 -04001236 if (new_value && bool_pending_values)
Eric Parisb77a4932010-11-23 11:40:08 -05001237 length = security_set_bools(bool_num, bool_pending_values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Eric Parisb77a4932010-11-23 11:40:08 -05001239 if (!length)
1240 length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242out:
Ingo Molnarbb0030792006-03-22 00:09:14 -08001243 mutex_unlock(&sel_mutex);
Al Viro8365a712015-12-24 00:08:06 -05001244 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return length;
1246}
1247
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001248static const struct file_operations sel_commit_bools_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001249 .write = sel_commit_bools_write,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001250 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251};
1252
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001253static void sel_remove_entries(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Al Viroad521842014-12-24 14:56:48 -05001255 d_genocide(de);
1256 shrink_dcache_parent(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259#define BOOL_DIR_NAME "booleans"
1260
1261static int sel_make_bools(void)
1262{
Eric Parisb77a4932010-11-23 11:40:08 -05001263 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 ssize_t len;
1265 struct dentry *dentry = NULL;
1266 struct dentry *dir = bool_dir;
1267 struct inode *inode = NULL;
1268 struct inode_security_struct *isec;
1269 char **names = NULL, *page;
1270 int num;
1271 int *values = NULL;
1272 u32 sid;
1273
1274 /* remove any existing files */
Xiaotian Feng8007f102010-02-09 08:22:24 +11001275 for (i = 0; i < bool_num; i++)
1276 kfree(bool_pending_names[i]);
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001277 kfree(bool_pending_names);
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001278 kfree(bool_pending_values);
Eric Paris154c50c2012-04-04 13:47:11 -04001279 bool_num = 0;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001280 bool_pending_names = NULL;
Davi Arnaut20c19e42005-10-23 12:57:16 -07001281 bool_pending_values = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001283 sel_remove_entries(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Eric Parisb77a4932010-11-23 11:40:08 -05001285 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001286 page = (char *)get_zeroed_page(GFP_KERNEL);
1287 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -05001288 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 ret = security_get_bools(&num, &names, &values);
Eric Parisb77a4932010-11-23 11:40:08 -05001291 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 goto out;
1293
1294 for (i = 0; i < num; i++) {
Eric Parisb77a4932010-11-23 11:40:08 -05001295 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 dentry = d_alloc_name(dir, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001297 if (!dentry)
1298 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Eric Parisb77a4932010-11-23 11:40:08 -05001300 ret = -ENOMEM;
1301 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
1302 if (!inode)
1303 goto out;
1304
Eric Parisb77a4932010-11-23 11:40:08 -05001305 ret = -ENAMETOOLONG;
Al Virocc1dad72012-04-02 19:40:47 -04001306 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001307 if (len >= PAGE_SIZE)
1308 goto out;
1309
Eric Paris18729812008-04-17 14:15:45 -04001310 isec = (struct inode_security_struct *)inode->i_security;
1311 ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid);
Gary Tierney4262fb52017-01-09 10:07:31 -05001312 if (ret) {
Gary Tierney900fde02017-01-09 10:07:32 -05001313 pr_warn_ratelimited("SELinux: no sid found, defaulting to security isid for %s\n",
1314 page);
1315 sid = SECINITSID_SECURITY;
Gary Tierney4262fb52017-01-09 10:07:31 -05001316 }
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 isec->sid = sid;
Andreas Gruenbacher42059112016-11-10 22:18:27 +01001319 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 inode->i_fop = &sel_bool_ops;
James Carterbce34bc2007-04-04 16:18:50 -04001321 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 d_add(dentry, inode);
1323 }
1324 bool_num = num;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001325 bool_pending_names = names;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 bool_pending_values = values;
Eric Parisb77a4932010-11-23 11:40:08 -05001327
1328 free_page((unsigned long)page);
1329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330out:
1331 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (names) {
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001334 for (i = 0; i < num; i++)
1335 kfree(names[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 kfree(names);
1337 }
Davi Arnaut20c19e42005-10-23 12:57:16 -07001338 kfree(values);
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001339 sel_remove_entries(dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001340
1341 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
1344#define NULL_FILE_NAME "null"
1345
Al Viro765927b2012-06-26 21:58:53 +04001346struct path selinux_null;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1349 size_t count, loff_t *ppos)
1350{
1351 char tmpbuf[TMPBUFLEN];
1352 ssize_t length;
1353
1354 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1355 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1356}
1357
Eric Paris18729812008-04-17 14:15:45 -04001358static ssize_t sel_write_avc_cache_threshold(struct file *file,
1359 const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 size_t count, loff_t *ppos)
1361
1362{
Al Viro8365a712015-12-24 00:08:06 -05001363 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 ssize_t ret;
Heinrich Schuchardt309c5fa2016-06-10 23:14:26 +02001365 unsigned int new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Stephen Smalleybe0554c2017-01-09 10:07:31 -05001367 ret = avc_has_perm(current_sid(), SECINITSID_SECURITY,
1368 SECCLASS_SECURITY, SECURITY__SETSECPARAM,
1369 NULL);
Eric Parisb77a4932010-11-23 11:40:08 -05001370 if (ret)
Al Viro8365a712015-12-24 00:08:06 -05001371 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Eric Parisb77a4932010-11-23 11:40:08 -05001373 if (count >= PAGE_SIZE)
Al Viro8365a712015-12-24 00:08:06 -05001374 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Eric Parisb77a4932010-11-23 11:40:08 -05001376 /* No partial writes. */
Eric Parisb77a4932010-11-23 11:40:08 -05001377 if (*ppos != 0)
Al Viro8365a712015-12-24 00:08:06 -05001378 return -EINVAL;
Eric Parisb77a4932010-11-23 11:40:08 -05001379
Al Viro8365a712015-12-24 00:08:06 -05001380 page = memdup_user_nul(buf, count);
1381 if (IS_ERR(page))
1382 return PTR_ERR(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Eric Parisb77a4932010-11-23 11:40:08 -05001384 ret = -EINVAL;
1385 if (sscanf(page, "%u", &new_value) != 1)
1386 goto out;
1387
1388 avc_cache_threshold = new_value;
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391out:
Al Viro8365a712015-12-24 00:08:06 -05001392 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return ret;
1394}
1395
1396static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1397 size_t count, loff_t *ppos)
1398{
1399 char *page;
Eric Parisb77a4932010-11-23 11:40:08 -05001400 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001403 if (!page)
1404 return -ENOMEM;
1405
1406 length = avc_get_hash_stats(page);
1407 if (length >= 0)
1408 length = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001410
1411 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001414static const struct file_operations sel_avc_cache_threshold_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 .read = sel_read_avc_cache_threshold,
1416 .write = sel_write_avc_cache_threshold,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001417 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418};
1419
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001420static const struct file_operations sel_avc_hash_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 .read = sel_read_avc_hash_stats,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001422 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423};
1424
1425#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1426static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1427{
1428 int cpu;
1429
Rusty Russell4f4b6c12009-01-01 10:12:15 +10301430 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (!cpu_possible(cpu))
1432 continue;
1433 *idx = cpu + 1;
1434 return &per_cpu(avc_cache_stats, cpu);
1435 }
1436 return NULL;
1437}
1438
1439static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1440{
1441 loff_t n = *pos - 1;
1442
1443 if (*pos == 0)
1444 return SEQ_START_TOKEN;
1445
1446 return sel_avc_get_stat_idx(&n);
1447}
1448
1449static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1450{
1451 return sel_avc_get_stat_idx(pos);
1452}
1453
1454static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1455{
1456 struct avc_cache_stats *st = v;
1457
1458 if (v == SEQ_START_TOKEN)
1459 seq_printf(seq, "lookups hits misses allocations reclaims "
1460 "frees\n");
Linus Torvalds257313b2011-05-19 21:22:53 -07001461 else {
1462 unsigned int lookups = st->lookups;
1463 unsigned int misses = st->misses;
1464 unsigned int hits = lookups - misses;
1465 seq_printf(seq, "%u %u %u %u %u %u\n", lookups,
1466 hits, misses, st->allocations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 st->reclaims, st->frees);
Linus Torvalds257313b2011-05-19 21:22:53 -07001468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return 0;
1470}
1471
1472static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1473{ }
1474
Jan Engelhardt1996a102008-01-23 00:02:58 +01001475static const struct seq_operations sel_avc_cache_stats_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 .start = sel_avc_stats_seq_start,
1477 .next = sel_avc_stats_seq_next,
1478 .show = sel_avc_stats_seq_show,
1479 .stop = sel_avc_stats_seq_stop,
1480};
1481
1482static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1483{
1484 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1485}
1486
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001487static const struct file_operations sel_avc_cache_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 .open = sel_open_avc_cache_stats,
1489 .read = seq_read,
1490 .llseek = seq_lseek,
1491 .release = seq_release,
1492};
1493#endif
1494
1495static int sel_make_avc_files(struct dentry *dir)
1496{
Eric Parisb77a4932010-11-23 11:40:08 -05001497 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 static struct tree_descr files[] = {
1499 { "cache_threshold",
1500 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1501 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1502#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1503 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1504#endif
1505 };
1506
Nicolas Kaiser6e20a642006-01-06 00:11:22 -08001507 for (i = 0; i < ARRAY_SIZE(files); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 struct inode *inode;
1509 struct dentry *dentry;
1510
1511 dentry = d_alloc_name(dir, files[i].name);
Eric Parisb77a4932010-11-23 11:40:08 -05001512 if (!dentry)
1513 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
Eric Parisb77a4932010-11-23 11:40:08 -05001516 if (!inode)
1517 return -ENOMEM;
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 inode->i_fop = files[i].ops;
James Carter6174eaf2007-04-04 16:18:39 -04001520 inode->i_ino = ++sel_last_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 d_add(dentry, inode);
1522 }
Eric Parisb77a4932010-11-23 11:40:08 -05001523
1524 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
Eric Paris18729812008-04-17 14:15:45 -04001527static ssize_t sel_read_initcon(struct file *file, char __user *buf,
James Carterf0ee2e42007-04-04 10:11:29 -04001528 size_t count, loff_t *ppos)
1529{
James Carterf0ee2e42007-04-04 10:11:29 -04001530 char *con;
1531 u32 sid, len;
1532 ssize_t ret;
1533
Al Viro496ad9a2013-01-23 17:07:38 -05001534 sid = file_inode(file)->i_ino&SEL_INO_MASK;
James Carterf0ee2e42007-04-04 10:11:29 -04001535 ret = security_sid_to_context(sid, &con, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001536 if (ret)
James Carterf0ee2e42007-04-04 10:11:29 -04001537 return ret;
1538
1539 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1540 kfree(con);
1541 return ret;
1542}
1543
1544static const struct file_operations sel_initcon_ops = {
1545 .read = sel_read_initcon,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001546 .llseek = generic_file_llseek,
James Carterf0ee2e42007-04-04 10:11:29 -04001547};
1548
1549static int sel_make_initcon_files(struct dentry *dir)
1550{
Eric Parisb77a4932010-11-23 11:40:08 -05001551 int i;
James Carterf0ee2e42007-04-04 10:11:29 -04001552
1553 for (i = 1; i <= SECINITSID_NUM; i++) {
1554 struct inode *inode;
1555 struct dentry *dentry;
1556 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
Eric Parisb77a4932010-11-23 11:40:08 -05001557 if (!dentry)
1558 return -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001559
1560 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001561 if (!inode)
1562 return -ENOMEM;
1563
James Carterf0ee2e42007-04-04 10:11:29 -04001564 inode->i_fop = &sel_initcon_ops;
1565 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1566 d_add(dentry, inode);
1567 }
Eric Parisb77a4932010-11-23 11:40:08 -05001568
1569 return 0;
James Carterf0ee2e42007-04-04 10:11:29 -04001570}
1571
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001572static inline unsigned long sel_class_to_ino(u16 class)
1573{
1574 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1575}
1576
1577static inline u16 sel_ino_to_class(unsigned long ino)
1578{
Eric Paris92ae9e82012-04-04 13:46:46 -04001579 return (ino & SEL_INO_MASK) / (SEL_VEC_MAX + 1);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001580}
1581
1582static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1583{
1584 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1585}
1586
1587static inline u32 sel_ino_to_perm(unsigned long ino)
1588{
1589 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1590}
1591
Eric Paris18729812008-04-17 14:15:45 -04001592static ssize_t sel_read_class(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001593 size_t count, loff_t *ppos)
1594{
Al Viro496ad9a2013-01-23 17:07:38 -05001595 unsigned long ino = file_inode(file)->i_ino;
Al Virocc1dad72012-04-02 19:40:47 -04001596 char res[TMPBUFLEN];
1597 ssize_t len = snprintf(res, sizeof(res), "%d", sel_ino_to_class(ino));
1598 return simple_read_from_buffer(buf, count, ppos, res, len);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001599}
1600
1601static const struct file_operations sel_class_ops = {
1602 .read = sel_read_class,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001603 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001604};
1605
Eric Paris18729812008-04-17 14:15:45 -04001606static ssize_t sel_read_perm(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001607 size_t count, loff_t *ppos)
1608{
Al Viro496ad9a2013-01-23 17:07:38 -05001609 unsigned long ino = file_inode(file)->i_ino;
Al Virocc1dad72012-04-02 19:40:47 -04001610 char res[TMPBUFLEN];
1611 ssize_t len = snprintf(res, sizeof(res), "%d", sel_ino_to_perm(ino));
1612 return simple_read_from_buffer(buf, count, ppos, res, len);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001613}
1614
1615static const struct file_operations sel_perm_ops = {
1616 .read = sel_read_perm,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001617 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001618};
1619
Paul Moore3bb56b22008-01-29 08:38:19 -05001620static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1621 size_t count, loff_t *ppos)
1622{
1623 int value;
1624 char tmpbuf[TMPBUFLEN];
1625 ssize_t length;
Al Viro496ad9a2013-01-23 17:07:38 -05001626 unsigned long i_ino = file_inode(file)->i_ino;
Paul Moore3bb56b22008-01-29 08:38:19 -05001627
1628 value = security_policycap_supported(i_ino & SEL_INO_MASK);
1629 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1630
1631 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1632}
1633
1634static const struct file_operations sel_policycap_ops = {
1635 .read = sel_read_policycap,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001636 .llseek = generic_file_llseek,
Paul Moore3bb56b22008-01-29 08:38:19 -05001637};
1638
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001639static int sel_make_perm_files(char *objclass, int classvalue,
1640 struct dentry *dir)
1641{
Eric Parisb77a4932010-11-23 11:40:08 -05001642 int i, rc, nperms;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001643 char **perms;
1644
1645 rc = security_get_permissions(objclass, &perms, &nperms);
1646 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001647 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001648
1649 for (i = 0; i < nperms; i++) {
1650 struct inode *inode;
1651 struct dentry *dentry;
1652
Eric Parisb77a4932010-11-23 11:40:08 -05001653 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001654 dentry = d_alloc_name(dir, perms[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001655 if (!dentry)
1656 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001657
Eric Parisb77a4932010-11-23 11:40:08 -05001658 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001659 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001660 if (!inode)
1661 goto out;
1662
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001663 inode->i_fop = &sel_perm_ops;
1664 /* i+1 since perm values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001665 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001666 d_add(dentry, inode);
1667 }
Eric Parisb77a4932010-11-23 11:40:08 -05001668 rc = 0;
1669out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001670 for (i = 0; i < nperms; i++)
1671 kfree(perms[i]);
1672 kfree(perms);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001673 return rc;
1674}
1675
1676static int sel_make_class_dir_entries(char *classname, int index,
1677 struct dentry *dir)
1678{
1679 struct dentry *dentry = NULL;
1680 struct inode *inode = NULL;
1681 int rc;
1682
1683 dentry = d_alloc_name(dir, "index");
Eric Parisb77a4932010-11-23 11:40:08 -05001684 if (!dentry)
1685 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001686
1687 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001688 if (!inode)
1689 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001690
1691 inode->i_fop = &sel_class_ops;
1692 inode->i_ino = sel_class_to_ino(index);
1693 d_add(dentry, inode);
1694
Al Viroa1c2aa12012-03-18 20:36:59 -04001695 dentry = sel_make_dir(dir, "perms", &last_class_ino);
1696 if (IS_ERR(dentry))
1697 return PTR_ERR(dentry);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001698
1699 rc = sel_make_perm_files(classname, index, dentry);
1700
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001701 return rc;
1702}
1703
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001704static int sel_make_classes(void)
1705{
Eric Parisb77a4932010-11-23 11:40:08 -05001706 int rc, nclasses, i;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001707 char **classes;
1708
1709 /* delete any existing entries */
Al Viroad521842014-12-24 14:56:48 -05001710 sel_remove_entries(class_dir);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001711
1712 rc = security_get_classes(&classes, &nclasses);
Eric Parisb77a4932010-11-23 11:40:08 -05001713 if (rc)
1714 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001715
1716 /* +2 since classes are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001717 last_class_ino = sel_class_to_ino(nclasses + 2);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001718
1719 for (i = 0; i < nclasses; i++) {
1720 struct dentry *class_name_dir;
1721
Al Viroa1c2aa12012-03-18 20:36:59 -04001722 class_name_dir = sel_make_dir(class_dir, classes[i],
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001723 &last_class_ino);
Al Viroa1c2aa12012-03-18 20:36:59 -04001724 if (IS_ERR(class_name_dir)) {
1725 rc = PTR_ERR(class_name_dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001726 goto out;
Al Viroa1c2aa12012-03-18 20:36:59 -04001727 }
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001728
1729 /* i+1 since class values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001730 rc = sel_make_class_dir_entries(classes[i], i + 1,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001731 class_name_dir);
1732 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001733 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001734 }
Eric Parisb77a4932010-11-23 11:40:08 -05001735 rc = 0;
1736out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001737 for (i = 0; i < nclasses; i++)
1738 kfree(classes[i]);
1739 kfree(classes);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001740 return rc;
1741}
1742
Paul Moore3bb56b22008-01-29 08:38:19 -05001743static int sel_make_policycap(void)
1744{
1745 unsigned int iter;
1746 struct dentry *dentry = NULL;
1747 struct inode *inode = NULL;
1748
1749 sel_remove_entries(policycap_dir);
1750
1751 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
1752 if (iter < ARRAY_SIZE(policycap_names))
1753 dentry = d_alloc_name(policycap_dir,
1754 policycap_names[iter]);
1755 else
1756 dentry = d_alloc_name(policycap_dir, "unknown");
1757
1758 if (dentry == NULL)
1759 return -ENOMEM;
1760
1761 inode = sel_make_inode(policycap_dir->d_sb, S_IFREG | S_IRUGO);
1762 if (inode == NULL)
1763 return -ENOMEM;
1764
1765 inode->i_fop = &sel_policycap_ops;
1766 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1767 d_add(dentry, inode);
1768 }
1769
1770 return 0;
1771}
1772
Al Viroa1c2aa12012-03-18 20:36:59 -04001773static struct dentry *sel_make_dir(struct dentry *dir, const char *name,
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001774 unsigned long *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Al Viroa1c2aa12012-03-18 20:36:59 -04001776 struct dentry *dentry = d_alloc_name(dir, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 struct inode *inode;
1778
Al Viroa1c2aa12012-03-18 20:36:59 -04001779 if (!dentry)
1780 return ERR_PTR(-ENOMEM);
1781
1782 inode = sel_make_inode(dir->d_sb, S_IFDIR | S_IRUGO | S_IXUGO);
1783 if (!inode) {
1784 dput(dentry);
1785 return ERR_PTR(-ENOMEM);
1786 }
Eric Parisb77a4932010-11-23 11:40:08 -05001787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 inode->i_op = &simple_dir_inode_operations;
1789 inode->i_fop = &simple_dir_operations;
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001790 inode->i_ino = ++(*ino);
James Morris40e906f2006-03-22 00:09:16 -08001791 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -07001792 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 d_add(dentry, inode);
James Morrisedb20fb2006-03-22 00:09:20 -08001794 /* bump link count on parent directory, too */
David Howellsce0b16d2015-02-19 10:47:02 +00001795 inc_nlink(d_inode(dir));
Eric Parisb77a4932010-11-23 11:40:08 -05001796
Al Viroa1c2aa12012-03-18 20:36:59 -04001797 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
Eric Paris18729812008-04-17 14:15:45 -04001800static int sel_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
1802 int ret;
1803 struct dentry *dentry;
Al Viroa1c2aa12012-03-18 20:36:59 -04001804 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 struct inode_security_struct *isec;
1806
1807 static struct tree_descr selinux_files[] = {
1808 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1809 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
Stephen Smalleyce9982d2005-11-08 21:34:33 -08001810 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1812 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1813 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1814 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1815 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1816 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1817 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1818 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1819 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1820 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
Eric Paris3f120702007-09-21 14:37:10 -04001821 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1822 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
KaiGai Kohei11904162010-09-14 18:28:39 +09001823 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
Eric Paris72e8c8592012-02-16 15:08:39 -05001824 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUGO},
Andrew Perepechkof9df6452015-12-24 11:09:41 -05001825 [SEL_VALIDATE_TRANS] = {"validatetrans", &sel_transition_ops,
1826 S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 /* last one */ {""}
1828 };
1829 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1830 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001831 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Al Viroa1c2aa12012-03-18 20:36:59 -04001833 bool_dir = sel_make_dir(sb->s_root, BOOL_DIR_NAME, &sel_last_ino);
1834 if (IS_ERR(bool_dir)) {
1835 ret = PTR_ERR(bool_dir);
1836 bool_dir = NULL;
James Morris161ce452006-03-22 00:09:17 -08001837 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04001838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Eric Parisb77a4932010-11-23 11:40:08 -05001840 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05001842 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001843 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Eric Parisb77a4932010-11-23 11:40:08 -05001845 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001847 if (!inode)
James Morris161ce452006-03-22 00:09:17 -08001848 goto err;
Eric Parisb77a4932010-11-23 11:40:08 -05001849
James Carter6174eaf2007-04-04 16:18:39 -04001850 inode->i_ino = ++sel_last_ino;
Eric Paris18729812008-04-17 14:15:45 -04001851 isec = (struct inode_security_struct *)inode->i_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 isec->sid = SECINITSID_DEVNULL;
1853 isec->sclass = SECCLASS_CHR_FILE;
Andreas Gruenbacher42059112016-11-10 22:18:27 +01001854 isec->initialized = LABEL_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1857 d_add(dentry, inode);
Al Viro765927b2012-06-26 21:58:53 +04001858 selinux_null.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Al Viroa1c2aa12012-03-18 20:36:59 -04001860 dentry = sel_make_dir(sb->s_root, "avc", &sel_last_ino);
1861 if (IS_ERR(dentry)) {
1862 ret = PTR_ERR(dentry);
James Morris161ce452006-03-22 00:09:17 -08001863 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04001864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 ret = sel_make_avc_files(dentry);
1867 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001868 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04001869
Al Viroa1c2aa12012-03-18 20:36:59 -04001870 dentry = sel_make_dir(sb->s_root, "initial_contexts", &sel_last_ino);
1871 if (IS_ERR(dentry)) {
1872 ret = PTR_ERR(dentry);
James Carterf0ee2e42007-04-04 10:11:29 -04001873 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04001874 }
James Carterf0ee2e42007-04-04 10:11:29 -04001875
1876 ret = sel_make_initcon_files(dentry);
1877 if (ret)
1878 goto err;
1879
Al Viroa1c2aa12012-03-18 20:36:59 -04001880 class_dir = sel_make_dir(sb->s_root, "class", &sel_last_ino);
1881 if (IS_ERR(class_dir)) {
1882 ret = PTR_ERR(class_dir);
1883 class_dir = NULL;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001884 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04001885 }
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001886
Al Viroa1c2aa12012-03-18 20:36:59 -04001887 policycap_dir = sel_make_dir(sb->s_root, "policy_capabilities", &sel_last_ino);
1888 if (IS_ERR(policycap_dir)) {
1889 ret = PTR_ERR(policycap_dir);
1890 policycap_dir = NULL;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001891 goto err;
Al Viroa1c2aa12012-03-18 20:36:59 -04001892 }
Eric Parisb77a4932010-11-23 11:40:08 -05001893 return 0;
James Morris161ce452006-03-22 00:09:17 -08001894err:
Eric Paris744ba352008-04-17 11:52:44 -04001895 printk(KERN_ERR "SELinux: %s: failed while creating inodes\n",
1896 __func__);
Eric Parisb77a4932010-11-23 11:40:08 -05001897 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
Al Virofc14f2f2010-07-25 01:48:30 +04001900static struct dentry *sel_mount(struct file_system_type *fs_type,
1901 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
Al Virofc14f2f2010-07-25 01:48:30 +04001903 return mount_single(fs_type, flags, data, sel_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
1906static struct file_system_type sel_fs_type = {
1907 .name = "selinuxfs",
Al Virofc14f2f2010-07-25 01:48:30 +04001908 .mount = sel_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 .kill_sb = kill_litter_super,
1910};
1911
1912struct vfsmount *selinuxfs_mount;
1913
1914static int __init init_sel_fs(void)
1915{
1916 int err;
1917
1918 if (!selinux_enabled)
1919 return 0;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001920
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05001921 err = sysfs_create_mount_point(fs_kobj, "selinux");
1922 if (err)
1923 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 err = register_filesystem(&sel_fs_type);
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001926 if (err) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05001927 sysfs_remove_mount_point(fs_kobj, "selinux");
Eric Parisb77a4932010-11-23 11:40:08 -05001928 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001929 }
Eric Parisb77a4932010-11-23 11:40:08 -05001930
Al Viro765927b2012-06-26 21:58:53 +04001931 selinux_null.mnt = selinuxfs_mount = kern_mount(&sel_fs_type);
Eric Parisb77a4932010-11-23 11:40:08 -05001932 if (IS_ERR(selinuxfs_mount)) {
1933 printk(KERN_ERR "selinuxfs: could not mount!\n");
1934 err = PTR_ERR(selinuxfs_mount);
1935 selinuxfs_mount = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
Eric Parisb77a4932010-11-23 11:40:08 -05001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 return err;
1939}
1940
1941__initcall(init_sel_fs);
1942
1943#ifdef CONFIG_SECURITY_SELINUX_DISABLE
1944void exit_sel_fs(void)
1945{
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05001946 sysfs_remove_mount_point(fs_kobj, "selinux");
Tim Chen423e0ab2011-07-19 09:32:38 -07001947 kern_unmount(selinuxfs_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 unregister_filesystem(&sel_fs_type);
1949}
1950#endif