blob: 19489042fdf7ee6a68b35f67b7698366379153c8 [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 Moore3bb56b22008-01-29 08:38:19 -05005 * Updated: Hewlett-Packard <paul.moore@hp.com>
6 *
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 Molnarbb003072006-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",
47 "open_perms"
Paul Moore3bb56b22008-01-29 08:38:19 -050048};
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050unsigned int selinux_checkreqprot = CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
51
52static int __init checkreqprot_setup(char *str)
53{
Eric Parisf5269712008-05-14 11:27:45 -040054 unsigned long checkreqprot;
55 if (!strict_strtoul(str, 0, &checkreqprot))
56 selinux_checkreqprot = checkreqprot ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return 1;
58}
59__setup("checkreqprot=", checkreqprot_setup);
60
Ingo Molnarbb003072006-03-22 00:09:14 -080061static DEFINE_MUTEX(sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* global data for booleans */
Eric Paris18729812008-04-17 14:15:45 -040064static struct dentry *bool_dir;
65static int bool_num;
Stephen Smalleyd313f94832007-11-26 11:12:53 -050066static char **bool_pending_names;
Eric Paris18729812008-04-17 14:15:45 -040067static int *bool_pending_values;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -040069/* global data for classes */
Eric Paris18729812008-04-17 14:15:45 -040070static struct dentry *class_dir;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -040071static unsigned long last_class_ino;
72
Eric Pariscee74f42010-10-13 17:50:25 -040073static char policy_opened;
74
Paul Moore3bb56b22008-01-29 08:38:19 -050075/* global data for policy capabilities */
Eric Paris18729812008-04-17 14:15:45 -040076static struct dentry *policycap_dir;
Paul Moore3bb56b22008-01-29 08:38:19 -050077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078extern void selnl_notify_setenforce(int val);
79
80/* Check whether a task is allowed to use a security operation. */
81static int task_has_security(struct task_struct *tsk,
82 u32 perms)
83{
David Howellsc69e8d92008-11-14 10:39:19 +110084 const struct task_security_struct *tsec;
85 u32 sid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
David Howellsc69e8d92008-11-14 10:39:19 +110087 rcu_read_lock();
88 tsec = __task_cred(tsk)->security;
89 if (tsec)
90 sid = tsec->sid;
91 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (!tsec)
93 return -EACCES;
94
David Howellsc69e8d92008-11-14 10:39:19 +110095 return avc_has_perm(sid, SECINITSID_SECURITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 SECCLASS_SECURITY, perms, NULL);
97}
98
99enum sel_inos {
100 SEL_ROOT_INO = 2,
101 SEL_LOAD, /* load policy */
102 SEL_ENFORCE, /* get or set enforcing status */
103 SEL_CONTEXT, /* validate context */
104 SEL_ACCESS, /* compute access decision */
105 SEL_CREATE, /* compute create labeling decision */
106 SEL_RELABEL, /* compute relabeling decision */
107 SEL_USER, /* compute reachable user contexts */
108 SEL_POLICYVERS, /* return policy version for this kernel */
109 SEL_COMMIT_BOOLS, /* commit new boolean values */
110 SEL_MLS, /* return if MLS policy is enabled */
111 SEL_DISABLE, /* disable SELinux until next reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 SEL_MEMBER, /* compute polyinstantiation membership decision */
113 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
James Morris4e5ab4c2006-06-09 00:33:33 -0700114 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
Eric Paris3f120702007-09-21 14:37:10 -0400115 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
116 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
KaiGai Kohei11904162010-09-14 18:28:39 +0900117 SEL_STATUS, /* export current status using mmap() */
Eric Pariscee74f42010-10-13 17:50:25 -0400118 SEL_POLICY, /* allow userspace to read the in kernel policy */
James Carter6174eaf2007-04-04 16:18:39 -0400119 SEL_INO_NEXT, /* The next inode number to use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
James Carter6174eaf2007-04-04 16:18:39 -0400122static unsigned long sel_last_ino = SEL_INO_NEXT - 1;
123
Paul Moore3bb56b22008-01-29 08:38:19 -0500124#define SEL_INITCON_INO_OFFSET 0x01000000
125#define SEL_BOOL_INO_OFFSET 0x02000000
126#define SEL_CLASS_INO_OFFSET 0x04000000
127#define SEL_POLICYCAP_INO_OFFSET 0x08000000
128#define SEL_INO_MASK 0x00ffffff
James Carterf0ee2e42007-04-04 10:11:29 -0400129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define TMPBUFLEN 12
131static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
132 size_t count, loff_t *ppos)
133{
134 char tmpbuf[TMPBUFLEN];
135 ssize_t length;
136
137 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_enforcing);
138 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
139}
140
141#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Eric Paris18729812008-04-17 14:15:45 -0400142static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 size_t count, loff_t *ppos)
144
145{
Eric Parisb77a4932010-11-23 11:40:08 -0500146 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ssize_t length;
148 int new_value;
149
Eric Parisb77a4932010-11-23 11:40:08 -0500150 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800151 if (count >= PAGE_SIZE)
Eric Parisb77a4932010-11-23 11:40:08 -0500152 goto out;
153
154 /* No partial writes. */
155 length = EINVAL;
156 if (*ppos != 0)
157 goto out;
158
159 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400160 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500162 goto out;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 length = -EFAULT;
165 if (copy_from_user(page, buf, count))
166 goto out;
167
168 length = -EINVAL;
169 if (sscanf(page, "%d", &new_value) != 1)
170 goto out;
171
172 if (new_value != selinux_enforcing) {
173 length = task_has_security(current, SECURITY__SETENFORCE);
174 if (length)
175 goto out;
Steve Grubbaf601e42006-01-04 14:08:39 +0000176 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
Eric Paris4746ec52008-01-08 10:06:53 -0500177 "enforcing=%d old_enforcing=%d auid=%u ses=%u",
178 new_value, selinux_enforcing,
179 audit_get_loginuid(current),
180 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 selinux_enforcing = new_value;
182 if (selinux_enforcing)
183 avc_ss_reset(0);
184 selnl_notify_setenforce(selinux_enforcing);
KaiGai Kohei11904162010-09-14 18:28:39 +0900185 selinux_status_update_setenforce(selinux_enforcing);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187 length = count;
188out:
189 free_page((unsigned long) page);
190 return length;
191}
192#else
193#define sel_write_enforce NULL
194#endif
195
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800196static const struct file_operations sel_enforce_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .read = sel_read_enforce,
198 .write = sel_write_enforce,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200199 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Eric Paris3f120702007-09-21 14:37:10 -0400202static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
203 size_t count, loff_t *ppos)
204{
205 char tmpbuf[TMPBUFLEN];
206 ssize_t length;
207 ino_t ino = filp->f_path.dentry->d_inode->i_ino;
208 int handle_unknown = (ino == SEL_REJECT_UNKNOWN) ?
209 security_get_reject_unknown() : !security_get_allow_unknown();
210
211 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
212 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
213}
214
215static const struct file_operations sel_handle_unknown_ops = {
216 .read = sel_read_handle_unknown,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200217 .llseek = generic_file_llseek,
Eric Paris3f120702007-09-21 14:37:10 -0400218};
219
KaiGai Kohei11904162010-09-14 18:28:39 +0900220static int sel_open_handle_status(struct inode *inode, struct file *filp)
221{
222 struct page *status = selinux_kernel_status_page();
223
224 if (!status)
225 return -ENOMEM;
226
227 filp->private_data = status;
228
229 return 0;
230}
231
232static ssize_t sel_read_handle_status(struct file *filp, char __user *buf,
233 size_t count, loff_t *ppos)
234{
235 struct page *status = filp->private_data;
236
237 BUG_ON(!status);
238
239 return simple_read_from_buffer(buf, count, ppos,
240 page_address(status),
241 sizeof(struct selinux_kernel_status));
242}
243
244static int sel_mmap_handle_status(struct file *filp,
245 struct vm_area_struct *vma)
246{
247 struct page *status = filp->private_data;
248 unsigned long size = vma->vm_end - vma->vm_start;
249
250 BUG_ON(!status);
251
252 /* only allows one page from the head */
253 if (vma->vm_pgoff > 0 || size != PAGE_SIZE)
254 return -EIO;
255 /* disallow writable mapping */
256 if (vma->vm_flags & VM_WRITE)
257 return -EPERM;
258 /* disallow mprotect() turns it into writable */
259 vma->vm_flags &= ~VM_MAYWRITE;
260
261 return remap_pfn_range(vma, vma->vm_start,
262 page_to_pfn(status),
263 size, vma->vm_page_prot);
264}
265
266static const struct file_operations sel_handle_status_ops = {
267 .open = sel_open_handle_status,
268 .read = sel_read_handle_status,
269 .mmap = sel_mmap_handle_status,
270 .llseek = generic_file_llseek,
271};
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Eric Paris18729812008-04-17 14:15:45 -0400274static ssize_t sel_write_disable(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 size_t count, loff_t *ppos)
276
277{
Eric Parisb77a4932010-11-23 11:40:08 -0500278 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 ssize_t length;
280 int new_value;
281 extern int selinux_disable(void);
282
Eric Parisb77a4932010-11-23 11:40:08 -0500283 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800284 if (count >= PAGE_SIZE)
Eric Parisb77a4932010-11-23 11:40:08 -0500285 goto out;;
286
287 /* No partial writes. */
288 length = -EINVAL;
289 if (*ppos != 0)
290 goto out;
291
292 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400293 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500295 goto out;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 length = -EFAULT;
298 if (copy_from_user(page, buf, count))
299 goto out;
300
301 length = -EINVAL;
302 if (sscanf(page, "%d", &new_value) != 1)
303 goto out;
304
305 if (new_value) {
306 length = selinux_disable();
Eric Parisb77a4932010-11-23 11:40:08 -0500307 if (length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 goto out;
Steve Grubbaf601e42006-01-04 14:08:39 +0000309 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
Eric Paris4746ec52008-01-08 10:06:53 -0500310 "selinux=0 auid=%u ses=%u",
311 audit_get_loginuid(current),
312 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314
315 length = count;
316out:
317 free_page((unsigned long) page);
318 return length;
319}
320#else
321#define sel_write_disable NULL
322#endif
323
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800324static const struct file_operations sel_disable_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 .write = sel_write_disable,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200326 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327};
328
329static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
Eric Paris18729812008-04-17 14:15:45 -0400330 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 char tmpbuf[TMPBUFLEN];
333 ssize_t length;
334
335 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
336 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
337}
338
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800339static const struct file_operations sel_policyvers_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 .read = sel_read_policyvers,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200341 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342};
343
344/* declaration for sel_write_load */
345static int sel_make_bools(void);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400346static int sel_make_classes(void);
Paul Moore3bb56b22008-01-29 08:38:19 -0500347static int sel_make_policycap(void);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400348
349/* declaration for sel_make_class_dirs */
350static int sel_make_dir(struct inode *dir, struct dentry *dentry,
351 unsigned long *ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353static ssize_t sel_read_mls(struct file *filp, char __user *buf,
354 size_t count, loff_t *ppos)
355{
356 char tmpbuf[TMPBUFLEN];
357 ssize_t length;
358
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100359 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
360 security_mls_enabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
362}
363
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800364static const struct file_operations sel_mls_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 .read = sel_read_mls,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200366 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367};
368
Eric Pariscee74f42010-10-13 17:50:25 -0400369struct policy_load_memory {
370 size_t len;
371 void *data;
372};
373
374static int sel_open_policy(struct inode *inode, struct file *filp)
375{
376 struct policy_load_memory *plm = NULL;
377 int rc;
378
379 BUG_ON(filp->private_data);
380
381 mutex_lock(&sel_mutex);
382
383 rc = task_has_security(current, SECURITY__READ_POLICY);
384 if (rc)
385 goto err;
386
387 rc = -EBUSY;
388 if (policy_opened)
389 goto err;
390
391 rc = -ENOMEM;
392 plm = kzalloc(sizeof(*plm), GFP_KERNEL);
393 if (!plm)
394 goto err;
395
396 if (i_size_read(inode) != security_policydb_len()) {
397 mutex_lock(&inode->i_mutex);
398 i_size_write(inode, security_policydb_len());
399 mutex_unlock(&inode->i_mutex);
400 }
401
402 rc = security_read_policy(&plm->data, &plm->len);
403 if (rc)
404 goto err;
405
406 policy_opened = 1;
407
408 filp->private_data = plm;
409
410 mutex_unlock(&sel_mutex);
411
412 return 0;
413err:
414 mutex_unlock(&sel_mutex);
415
416 if (plm)
417 vfree(plm->data);
418 kfree(plm);
419 return rc;
420}
421
422static int sel_release_policy(struct inode *inode, struct file *filp)
423{
424 struct policy_load_memory *plm = filp->private_data;
425
426 BUG_ON(!plm);
427
428 policy_opened = 0;
429
430 vfree(plm->data);
431 kfree(plm);
432
433 return 0;
434}
435
436static ssize_t sel_read_policy(struct file *filp, char __user *buf,
437 size_t count, loff_t *ppos)
438{
439 struct policy_load_memory *plm = filp->private_data;
440 int ret;
441
442 mutex_lock(&sel_mutex);
443
444 ret = task_has_security(current, SECURITY__READ_POLICY);
445 if (ret)
446 goto out;
447
448 ret = simple_read_from_buffer(buf, count, ppos, plm->data, plm->len);
449out:
450 mutex_unlock(&sel_mutex);
451 return ret;
452}
453
Eric Paris845ca302010-10-13 17:50:31 -0400454static int sel_mmap_policy_fault(struct vm_area_struct *vma,
455 struct vm_fault *vmf)
456{
457 struct policy_load_memory *plm = vma->vm_file->private_data;
458 unsigned long offset;
459 struct page *page;
460
461 if (vmf->flags & (FAULT_FLAG_MKWRITE | FAULT_FLAG_WRITE))
462 return VM_FAULT_SIGBUS;
463
464 offset = vmf->pgoff << PAGE_SHIFT;
465 if (offset >= roundup(plm->len, PAGE_SIZE))
466 return VM_FAULT_SIGBUS;
467
468 page = vmalloc_to_page(plm->data + offset);
469 get_page(page);
470
471 vmf->page = page;
472
473 return 0;
474}
475
476static struct vm_operations_struct sel_mmap_policy_ops = {
477 .fault = sel_mmap_policy_fault,
478 .page_mkwrite = sel_mmap_policy_fault,
479};
480
481int sel_mmap_policy(struct file *filp, struct vm_area_struct *vma)
482{
483 if (vma->vm_flags & VM_SHARED) {
484 /* do not allow mprotect to make mapping writable */
485 vma->vm_flags &= ~VM_MAYWRITE;
486
487 if (vma->vm_flags & VM_WRITE)
488 return -EACCES;
489 }
490
491 vma->vm_flags |= VM_RESERVED;
492 vma->vm_ops = &sel_mmap_policy_ops;
493
494 return 0;
495}
496
Eric Pariscee74f42010-10-13 17:50:25 -0400497static const struct file_operations sel_policy_ops = {
498 .open = sel_open_policy,
499 .read = sel_read_policy,
Eric Paris845ca302010-10-13 17:50:31 -0400500 .mmap = sel_mmap_policy,
Eric Pariscee74f42010-10-13 17:50:25 -0400501 .release = sel_release_policy,
502};
503
Eric Paris18729812008-04-17 14:15:45 -0400504static ssize_t sel_write_load(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 size_t count, loff_t *ppos)
506
507{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 ssize_t length;
509 void *data = NULL;
510
Ingo Molnarbb003072006-03-22 00:09:14 -0800511 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 length = task_has_security(current, SECURITY__LOAD_POLICY);
514 if (length)
515 goto out;
516
Eric Parisb77a4932010-11-23 11:40:08 -0500517 /* No partial writes. */
518 length = -EINVAL;
519 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Eric Parisb77a4932010-11-23 11:40:08 -0500522 length = -EFBIG;
523 if (count > 64 * 1024 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -0500525
526 length = -ENOMEM;
527 data = vmalloc(count);
528 if (!data)
529 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 length = -EFAULT;
532 if (copy_from_user(data, buf, count) != 0)
533 goto out;
534
535 length = security_load_policy(data, count);
536 if (length)
537 goto out;
538
Eric Parisb77a4932010-11-23 11:40:08 -0500539 length = sel_make_bools();
540 if (length)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400541 goto out1;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400542
Eric Parisb77a4932010-11-23 11:40:08 -0500543 length = sel_make_classes();
544 if (length)
Paul Moore3bb56b22008-01-29 08:38:19 -0500545 goto out1;
Paul Moore3bb56b22008-01-29 08:38:19 -0500546
Eric Parisb77a4932010-11-23 11:40:08 -0500547 length = sel_make_policycap();
548 if (length)
549 goto out1;
550
551 length = count;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400552
553out1:
Steve Grubbaf601e42006-01-04 14:08:39 +0000554 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
Eric Paris4746ec52008-01-08 10:06:53 -0500555 "policy loaded auid=%u ses=%u",
556 audit_get_loginuid(current),
557 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558out:
Ingo Molnarbb003072006-03-22 00:09:14 -0800559 mutex_unlock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 vfree(data);
561 return length;
562}
563
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800564static const struct file_operations sel_load_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 .write = sel_write_load,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200566 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567};
568
Eric Paris18729812008-04-17 14:15:45 -0400569static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Eric Parisb77a4932010-11-23 11:40:08 -0500571 char *canon = NULL;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800572 u32 sid, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 ssize_t length;
574
575 length = task_has_security(current, SECURITY__CHECK_CONTEXT);
576 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500577 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800579 length = security_context_to_sid(buf, size, &sid);
Eric Parisb77a4932010-11-23 11:40:08 -0500580 if (length)
581 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800583 length = security_sid_to_context(sid, &canon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500584 if (length)
585 goto out;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800586
Eric Parisb77a4932010-11-23 11:40:08 -0500587 length = -ERANGE;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800588 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400589 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
590 "payload max\n", __func__, len);
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800591 goto out;
592 }
593
594 memcpy(buf, canon, len);
595 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596out:
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800597 kfree(canon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return length;
599}
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
602 size_t count, loff_t *ppos)
603{
604 char tmpbuf[TMPBUFLEN];
605 ssize_t length;
606
607 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", selinux_checkreqprot);
608 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
609}
610
Eric Paris18729812008-04-17 14:15:45 -0400611static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 size_t count, loff_t *ppos)
613{
Eric Parisb77a4932010-11-23 11:40:08 -0500614 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 ssize_t length;
616 unsigned int new_value;
617
618 length = task_has_security(current, SECURITY__SETCHECKREQPROT);
619 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500620 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Eric Parisb77a4932010-11-23 11:40:08 -0500622 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800623 if (count >= PAGE_SIZE)
Eric Parisb77a4932010-11-23 11:40:08 -0500624 goto out;
625
626 /* No partial writes. */
627 length = -EINVAL;
628 if (*ppos != 0)
629 goto out;
630
631 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400632 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500634 goto out;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 length = -EFAULT;
637 if (copy_from_user(page, buf, count))
638 goto out;
639
640 length = -EINVAL;
641 if (sscanf(page, "%u", &new_value) != 1)
642 goto out;
643
644 selinux_checkreqprot = new_value ? 1 : 0;
645 length = count;
646out:
647 free_page((unsigned long) page);
648 return length;
649}
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800650static const struct file_operations sel_checkreqprot_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 .read = sel_read_checkreqprot,
652 .write = sel_write_checkreqprot,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200653 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654};
655
656/*
657 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
658 */
Eric Paris18729812008-04-17 14:15:45 -0400659static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
660static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
661static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
662static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
663static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665static ssize_t (*write_op[])(struct file *, char *, size_t) = {
666 [SEL_ACCESS] = sel_write_access,
667 [SEL_CREATE] = sel_write_create,
668 [SEL_RELABEL] = sel_write_relabel,
669 [SEL_USER] = sel_write_user,
670 [SEL_MEMBER] = sel_write_member,
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800671 [SEL_CONTEXT] = sel_write_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672};
673
674static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
675{
Eric Paris18729812008-04-17 14:15:45 -0400676 ino_t ino = file->f_path.dentry->d_inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 char *data;
678 ssize_t rv;
679
Nicolas Kaiser6e20a642006-01-06 00:11:22 -0800680 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return -EINVAL;
682
683 data = simple_transaction_get(file, buf, size);
684 if (IS_ERR(data))
685 return PTR_ERR(data);
686
Eric Paris18729812008-04-17 14:15:45 -0400687 rv = write_op[ino](file, data, size);
688 if (rv > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 simple_transaction_set(file, rv);
690 rv = size;
691 }
692 return rv;
693}
694
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800695static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 .write = selinux_transaction_write,
697 .read = simple_transaction_read,
698 .release = simple_transaction_release,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200699 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700};
701
702/*
703 * payload - write methods
704 * If the method has a response, the response should be put in buf,
705 * and the length returned. Otherwise return 0 or and -error.
706 */
707
Eric Paris18729812008-04-17 14:15:45 -0400708static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Eric Parisb77a4932010-11-23 11:40:08 -0500710 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 u32 ssid, tsid;
712 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct av_decision avd;
714 ssize_t length;
715
716 length = task_has_security(current, SECURITY__COMPUTE_AV);
717 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500718 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800721 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500723 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Eric Parisb77a4932010-11-23 11:40:08 -0500725 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800726 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (!tcon)
728 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 length = -EINVAL;
Stephen Smalley19439d02010-01-14 17:28:10 -0500731 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500732 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800734 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500735 if (length)
736 goto out;
737
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800738 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500739 if (length)
740 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Stephen Smalley19439d02010-01-14 17:28:10 -0500742 security_compute_av_user(ssid, tsid, tclass, &avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900745 "%x %x %x %x %u %x",
Eric Parisf1c63812009-02-12 14:50:54 -0500746 avd.allowed, 0xffffffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 avd.auditallow, avd.auditdeny,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900748 avd.seqno, avd.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749out:
Eric Parisb77a4932010-11-23 11:40:08 -0500750 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 kfree(scon);
752 return length;
753}
754
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400755static inline int hexcode_to_int(int code) {
756 if (code == '\0' || !isxdigit(code))
757 return -1;
758 if (isdigit(code))
759 return code - '0';
760 return tolower(code) - 'a' + 10;
761}
762
Eric Paris18729812008-04-17 14:15:45 -0400763static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Eric Parisb77a4932010-11-23 11:40:08 -0500765 char *scon = NULL, *tcon = NULL;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100766 char *namebuf = NULL, *objname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 u32 ssid, tsid, newsid;
768 u16 tclass;
769 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500770 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 u32 len;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100772 int nargs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 length = task_has_security(current, SECURITY__COMPUTE_CREATE);
775 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500776 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800779 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500781 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Eric Parisb77a4932010-11-23 11:40:08 -0500783 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800784 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (!tcon)
786 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100788 length = -ENOMEM;
789 namebuf = kzalloc(size + 1, GFP_KERNEL);
790 if (!namebuf)
Eric Parisb77a4932010-11-23 11:40:08 -0500791 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100793 length = -EINVAL;
794 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
795 if (nargs < 3 || nargs > 4)
796 goto out;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400797 if (nargs == 4) {
798 /*
799 * If and when the name of new object to be queried contains
800 * either whitespace or multibyte characters, they shall be
801 * encoded based on the percentage-encoding rule.
802 * If not encoded, the sscanf logic picks up only left-half
803 * of the supplied name; splitted by a whitespace unexpectedly.
804 */
805 char *r, *w;
806 int c1, c2;
807
808 r = w = namebuf;
809 do {
810 c1 = *r++;
811 if (c1 == '+')
812 c1 = ' ';
813 else if (c1 == '%') {
814 if ((c1 = hexcode_to_int(*r++)) < 0)
815 goto out;
816 if ((c2 = hexcode_to_int(*r++)) < 0)
817 goto out;
818 c1 = (c1 << 4) | c2;
819 }
820 *w++ = c1;
821 } while (c1 != '\0');
822
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100823 objname = namebuf;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400824 }
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100825
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800826 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500827 if (length)
828 goto out;
829
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800830 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500831 if (length)
832 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100834 length = security_transition_sid_user(ssid, tsid, tclass,
835 objname, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500836 if (length)
837 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500840 if (length)
841 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Eric Parisb77a4932010-11-23 11:40:08 -0500843 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400845 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
846 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -0500847 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
850 memcpy(buf, newcon, len);
851 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852out:
Eric Parisb77a4932010-11-23 11:40:08 -0500853 kfree(newcon);
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100854 kfree(namebuf);
Eric Parisb77a4932010-11-23 11:40:08 -0500855 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 kfree(scon);
857 return length;
858}
859
Eric Paris18729812008-04-17 14:15:45 -0400860static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Eric Parisb77a4932010-11-23 11:40:08 -0500862 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 u32 ssid, tsid, newsid;
864 u16 tclass;
865 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500866 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 u32 len;
868
869 length = task_has_security(current, SECURITY__COMPUTE_RELABEL);
870 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500871 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800874 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500876 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Eric Parisb77a4932010-11-23 11:40:08 -0500878 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800879 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (!tcon)
881 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 length = -EINVAL;
884 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500885 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800887 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500888 if (length)
889 goto out;
890
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800891 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500892 if (length)
893 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 length = security_change_sid(ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500896 if (length)
897 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500900 if (length)
901 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Eric Parisb77a4932010-11-23 11:40:08 -0500903 length = -ERANGE;
904 if (len > SIMPLE_TRANSACTION_LIMIT)
905 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 memcpy(buf, newcon, len);
908 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909out:
Eric Parisb77a4932010-11-23 11:40:08 -0500910 kfree(newcon);
911 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 kfree(scon);
913 return length;
914}
915
Eric Paris18729812008-04-17 14:15:45 -0400916static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Eric Parisb77a4932010-11-23 11:40:08 -0500918 char *con = NULL, *user = NULL, *ptr;
919 u32 sid, *sids = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 ssize_t length;
921 char *newcon;
922 int i, rc;
923 u32 len, nsids;
924
925 length = task_has_security(current, SECURITY__COMPUTE_USER);
926 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500927 goto out;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800930 con = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (!con)
Eric Parisb77a4932010-11-23 11:40:08 -0500932 goto out;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Eric Parisb77a4932010-11-23 11:40:08 -0500934 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800935 user = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (!user)
937 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 length = -EINVAL;
940 if (sscanf(buf, "%s %s", con, user) != 2)
Eric Parisb77a4932010-11-23 11:40:08 -0500941 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800943 length = security_context_to_sid(con, strlen(con) + 1, &sid);
Eric Parisb77a4932010-11-23 11:40:08 -0500944 if (length)
945 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 length = security_get_user_sids(sid, user, &sids, &nsids);
Eric Parisb77a4932010-11-23 11:40:08 -0500948 if (length)
949 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 length = sprintf(buf, "%u", nsids) + 1;
952 ptr = buf + length;
953 for (i = 0; i < nsids; i++) {
954 rc = security_sid_to_context(sids[i], &newcon, &len);
955 if (rc) {
956 length = rc;
Eric Parisb77a4932010-11-23 11:40:08 -0500957 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
960 kfree(newcon);
961 length = -ERANGE;
Eric Parisb77a4932010-11-23 11:40:08 -0500962 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964 memcpy(ptr, newcon, len);
965 kfree(newcon);
966 ptr += len;
967 length += len;
968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969out:
Eric Parisb77a4932010-11-23 11:40:08 -0500970 kfree(sids);
971 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 kfree(con);
973 return length;
974}
975
Eric Paris18729812008-04-17 14:15:45 -0400976static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Eric Parisb77a4932010-11-23 11:40:08 -0500978 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 u32 ssid, tsid, newsid;
980 u16 tclass;
981 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500982 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 u32 len;
984
985 length = task_has_security(current, SECURITY__COMPUTE_MEMBER);
986 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500987 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800990 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500992 goto out;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Eric Parisb77a4932010-11-23 11:40:08 -0500994 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800995 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (!tcon)
997 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 length = -EINVAL;
1000 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001001 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001003 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -05001004 if (length)
1005 goto out;
1006
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001007 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001008 if (length)
1009 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 length = security_member_sid(ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001012 if (length)
1013 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001016 if (length)
1017 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Eric Parisb77a4932010-11-23 11:40:08 -05001019 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -04001021 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
1022 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001023 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
1026 memcpy(buf, newcon, len);
1027 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028out:
Eric Parisb77a4932010-11-23 11:40:08 -05001029 kfree(newcon);
1030 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 kfree(scon);
1032 return length;
1033}
1034
1035static struct inode *sel_make_inode(struct super_block *sb, int mode)
1036{
1037 struct inode *ret = new_inode(sb);
1038
1039 if (ret) {
1040 ret->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
1042 }
1043 return ret;
1044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1047 size_t count, loff_t *ppos)
1048{
1049 char *page = NULL;
1050 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 ssize_t ret;
1052 int cur_enforcing;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001053 struct inode *inode = filep->f_path.dentry->d_inode;
1054 unsigned index = inode->i_ino & SEL_INO_MASK;
1055 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Ingo Molnarbb003072006-03-22 00:09:14 -08001057 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Eric Parisb77a4932010-11-23 11:40:08 -05001059 ret = -EINVAL;
1060 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001061 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Eric Parisb77a4932010-11-23 11:40:08 -05001063 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001064 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001065 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001068 cur_enforcing = security_get_bool_value(index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (cur_enforcing < 0) {
1070 ret = cur_enforcing;
1071 goto out;
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001074 bool_pending_values[index]);
Stephen Smalley68bdcf22006-03-22 00:09:15 -08001075 ret = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001077 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001078 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return ret;
1080}
1081
1082static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1083 size_t count, loff_t *ppos)
1084{
1085 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001086 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 int new_value;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001088 struct inode *inode = filep->f_path.dentry->d_inode;
1089 unsigned index = inode->i_ino & SEL_INO_MASK;
1090 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Ingo Molnarbb003072006-03-22 00:09:14 -08001092 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 length = task_has_security(current, SECURITY__SETBOOL);
1095 if (length)
1096 goto out;
1097
Eric Parisb77a4932010-11-23 11:40:08 -05001098 length = -EINVAL;
1099 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001100 goto out;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001101
Eric Parisb77a4932010-11-23 11:40:08 -05001102 length = -ENOMEM;
1103 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 goto out;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001105
Eric Parisb77a4932010-11-23 11:40:08 -05001106 /* No partial writes. */
1107 length = -EINVAL;
1108 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001110
1111 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001112 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001113 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001116 length = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (copy_from_user(page, buf, count))
1118 goto out;
1119
1120 length = -EINVAL;
1121 if (sscanf(page, "%d", &new_value) != 1)
1122 goto out;
1123
1124 if (new_value)
1125 new_value = 1;
1126
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001127 bool_pending_values[index] = new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 length = count;
1129
1130out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001131 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001132 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return length;
1134}
1135
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001136static const struct file_operations sel_bool_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001137 .read = sel_read_bool,
1138 .write = sel_write_bool,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001139 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140};
1141
1142static ssize_t sel_commit_bools_write(struct file *filep,
1143 const char __user *buf,
1144 size_t count, loff_t *ppos)
1145{
1146 char *page = NULL;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001147 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 int new_value;
1149
Ingo Molnarbb003072006-03-22 00:09:14 -08001150 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 length = task_has_security(current, SECURITY__SETBOOL);
1153 if (length)
1154 goto out;
1155
Eric Parisb77a4932010-11-23 11:40:08 -05001156 length = -ENOMEM;
1157 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001159
1160 /* No partial writes. */
1161 length = -EINVAL;
1162 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001164
1165 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001166 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001167 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001170 length = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (copy_from_user(page, buf, count))
1172 goto out;
1173
1174 length = -EINVAL;
1175 if (sscanf(page, "%d", &new_value) != 1)
1176 goto out;
1177
Eric Parisb77a4932010-11-23 11:40:08 -05001178 length = 0;
Eric Paris18729812008-04-17 14:15:45 -04001179 if (new_value && bool_pending_values)
Eric Parisb77a4932010-11-23 11:40:08 -05001180 length = security_set_bools(bool_num, bool_pending_values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Eric Parisb77a4932010-11-23 11:40:08 -05001182 if (!length)
1183 length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001186 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001187 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return length;
1189}
1190
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001191static const struct file_operations sel_commit_bools_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001192 .write = sel_commit_bools_write,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001193 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194};
1195
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001196static void sel_remove_entries(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
Stephen Smalley0955dc02007-11-21 09:01:36 -05001198 struct list_head *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001200 spin_lock(&de->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 node = de->d_subdirs.next;
1202 while (node != &de->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -08001203 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001204
1205 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 list_del_init(node);
1207
1208 if (d->d_inode) {
Nick Piggindc0474b2011-01-07 17:49:43 +11001209 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001210 spin_unlock(&de->d_lock);
1211 spin_unlock(&d->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 d_delete(d);
1213 simple_unlink(de->d_inode, d);
1214 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001215 spin_lock(&de->d_lock);
1216 } else
1217 spin_unlock(&d->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 node = de->d_subdirs.next;
1219 }
1220
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001221 spin_unlock(&de->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
1224#define BOOL_DIR_NAME "booleans"
1225
1226static int sel_make_bools(void)
1227{
Eric Parisb77a4932010-11-23 11:40:08 -05001228 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 ssize_t len;
1230 struct dentry *dentry = NULL;
1231 struct dentry *dir = bool_dir;
1232 struct inode *inode = NULL;
1233 struct inode_security_struct *isec;
1234 char **names = NULL, *page;
1235 int num;
1236 int *values = NULL;
1237 u32 sid;
1238
1239 /* remove any existing files */
Xiaotian Feng8007f102010-02-09 08:22:24 +11001240 for (i = 0; i < bool_num; i++)
1241 kfree(bool_pending_names[i]);
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001242 kfree(bool_pending_names);
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001243 kfree(bool_pending_values);
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001244 bool_pending_names = NULL;
Davi Arnaut20c19e42005-10-23 12:57:16 -07001245 bool_pending_values = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001247 sel_remove_entries(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Eric Parisb77a4932010-11-23 11:40:08 -05001249 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001250 page = (char *)get_zeroed_page(GFP_KERNEL);
1251 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -05001252 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 ret = security_get_bools(&num, &names, &values);
Eric Parisb77a4932010-11-23 11:40:08 -05001255 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 goto out;
1257
1258 for (i = 0; i < num; i++) {
Eric Parisb77a4932010-11-23 11:40:08 -05001259 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 dentry = d_alloc_name(dir, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001261 if (!dentry)
1262 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Eric Parisb77a4932010-11-23 11:40:08 -05001264 ret = -ENOMEM;
1265 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
1266 if (!inode)
1267 goto out;
1268
1269 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001271 if (len < 0)
1272 goto out;
1273
1274 ret = -ENAMETOOLONG;
1275 if (len >= PAGE_SIZE)
1276 goto out;
1277
Eric Paris18729812008-04-17 14:15:45 -04001278 isec = (struct inode_security_struct *)inode->i_security;
1279 ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid);
1280 if (ret)
Eric Parisb77a4932010-11-23 11:40:08 -05001281 goto out;
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 isec->sid = sid;
1284 isec->initialized = 1;
1285 inode->i_fop = &sel_bool_ops;
James Carterbce34bc2007-04-04 16:18:50 -04001286 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 d_add(dentry, inode);
1288 }
1289 bool_num = num;
Stephen Smalleyd313f94832007-11-26 11:12:53 -05001290 bool_pending_names = names;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 bool_pending_values = values;
Eric Parisb77a4932010-11-23 11:40:08 -05001292
1293 free_page((unsigned long)page);
1294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295out:
1296 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (names) {
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001299 for (i = 0; i < num; i++)
1300 kfree(names[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 kfree(names);
1302 }
Davi Arnaut20c19e42005-10-23 12:57:16 -07001303 kfree(values);
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001304 sel_remove_entries(dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001305
1306 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
1309#define NULL_FILE_NAME "null"
1310
Eric Paris18729812008-04-17 14:15:45 -04001311struct dentry *selinux_null;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1314 size_t count, loff_t *ppos)
1315{
1316 char tmpbuf[TMPBUFLEN];
1317 ssize_t length;
1318
1319 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1320 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1321}
1322
Eric Paris18729812008-04-17 14:15:45 -04001323static ssize_t sel_write_avc_cache_threshold(struct file *file,
1324 const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 size_t count, loff_t *ppos)
1326
1327{
Eric Parisb77a4932010-11-23 11:40:08 -05001328 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 ssize_t ret;
1330 int new_value;
1331
Eric Parisb77a4932010-11-23 11:40:08 -05001332 ret = task_has_security(current, SECURITY__SETSECPARAM);
1333 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Eric Parisb77a4932010-11-23 11:40:08 -05001336 ret = -ENOMEM;
1337 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Eric Parisb77a4932010-11-23 11:40:08 -05001340 /* No partial writes. */
1341 ret = -EINVAL;
1342 if (*ppos != 0)
1343 goto out;
1344
1345 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001346 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001347 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Eric Parisb77a4932010-11-23 11:40:08 -05001350 ret = -EFAULT;
1351 if (copy_from_user(page, buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Eric Parisb77a4932010-11-23 11:40:08 -05001354 ret = -EINVAL;
1355 if (sscanf(page, "%u", &new_value) != 1)
1356 goto out;
1357
1358 avc_cache_threshold = new_value;
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361out:
Eric Parisb77a4932010-11-23 11:40:08 -05001362 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return ret;
1364}
1365
1366static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1367 size_t count, loff_t *ppos)
1368{
1369 char *page;
Eric Parisb77a4932010-11-23 11:40:08 -05001370 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001373 if (!page)
1374 return -ENOMEM;
1375
1376 length = avc_get_hash_stats(page);
1377 if (length >= 0)
1378 length = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001380
1381 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
1383
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001384static const struct file_operations sel_avc_cache_threshold_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 .read = sel_read_avc_cache_threshold,
1386 .write = sel_write_avc_cache_threshold,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001387 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388};
1389
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001390static const struct file_operations sel_avc_hash_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 .read = sel_read_avc_hash_stats,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001392 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393};
1394
1395#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1396static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1397{
1398 int cpu;
1399
Rusty Russell4f4b6c12009-01-01 10:12:15 +10301400 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (!cpu_possible(cpu))
1402 continue;
1403 *idx = cpu + 1;
1404 return &per_cpu(avc_cache_stats, cpu);
1405 }
1406 return NULL;
1407}
1408
1409static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1410{
1411 loff_t n = *pos - 1;
1412
1413 if (*pos == 0)
1414 return SEQ_START_TOKEN;
1415
1416 return sel_avc_get_stat_idx(&n);
1417}
1418
1419static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1420{
1421 return sel_avc_get_stat_idx(pos);
1422}
1423
1424static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1425{
1426 struct avc_cache_stats *st = v;
1427
1428 if (v == SEQ_START_TOKEN)
1429 seq_printf(seq, "lookups hits misses allocations reclaims "
1430 "frees\n");
1431 else
1432 seq_printf(seq, "%u %u %u %u %u %u\n", st->lookups,
1433 st->hits, st->misses, st->allocations,
1434 st->reclaims, st->frees);
1435 return 0;
1436}
1437
1438static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1439{ }
1440
Jan Engelhardt1996a102008-01-23 00:02:58 +01001441static const struct seq_operations sel_avc_cache_stats_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 .start = sel_avc_stats_seq_start,
1443 .next = sel_avc_stats_seq_next,
1444 .show = sel_avc_stats_seq_show,
1445 .stop = sel_avc_stats_seq_stop,
1446};
1447
1448static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1449{
1450 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1451}
1452
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001453static const struct file_operations sel_avc_cache_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 .open = sel_open_avc_cache_stats,
1455 .read = seq_read,
1456 .llseek = seq_lseek,
1457 .release = seq_release,
1458};
1459#endif
1460
1461static int sel_make_avc_files(struct dentry *dir)
1462{
Eric Parisb77a4932010-11-23 11:40:08 -05001463 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 static struct tree_descr files[] = {
1465 { "cache_threshold",
1466 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1467 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1468#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1469 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1470#endif
1471 };
1472
Nicolas Kaiser6e20a642006-01-06 00:11:22 -08001473 for (i = 0; i < ARRAY_SIZE(files); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 struct inode *inode;
1475 struct dentry *dentry;
1476
1477 dentry = d_alloc_name(dir, files[i].name);
Eric Parisb77a4932010-11-23 11:40:08 -05001478 if (!dentry)
1479 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
Eric Parisb77a4932010-11-23 11:40:08 -05001482 if (!inode)
1483 return -ENOMEM;
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 inode->i_fop = files[i].ops;
James Carter6174eaf2007-04-04 16:18:39 -04001486 inode->i_ino = ++sel_last_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 d_add(dentry, inode);
1488 }
Eric Parisb77a4932010-11-23 11:40:08 -05001489
1490 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Eric Paris18729812008-04-17 14:15:45 -04001493static ssize_t sel_read_initcon(struct file *file, char __user *buf,
James Carterf0ee2e42007-04-04 10:11:29 -04001494 size_t count, loff_t *ppos)
1495{
1496 struct inode *inode;
1497 char *con;
1498 u32 sid, len;
1499 ssize_t ret;
1500
1501 inode = file->f_path.dentry->d_inode;
1502 sid = inode->i_ino&SEL_INO_MASK;
1503 ret = security_sid_to_context(sid, &con, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001504 if (ret)
James Carterf0ee2e42007-04-04 10:11:29 -04001505 return ret;
1506
1507 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1508 kfree(con);
1509 return ret;
1510}
1511
1512static const struct file_operations sel_initcon_ops = {
1513 .read = sel_read_initcon,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001514 .llseek = generic_file_llseek,
James Carterf0ee2e42007-04-04 10:11:29 -04001515};
1516
1517static int sel_make_initcon_files(struct dentry *dir)
1518{
Eric Parisb77a4932010-11-23 11:40:08 -05001519 int i;
James Carterf0ee2e42007-04-04 10:11:29 -04001520
1521 for (i = 1; i <= SECINITSID_NUM; i++) {
1522 struct inode *inode;
1523 struct dentry *dentry;
1524 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
Eric Parisb77a4932010-11-23 11:40:08 -05001525 if (!dentry)
1526 return -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001527
1528 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001529 if (!inode)
1530 return -ENOMEM;
1531
James Carterf0ee2e42007-04-04 10:11:29 -04001532 inode->i_fop = &sel_initcon_ops;
1533 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1534 d_add(dentry, inode);
1535 }
Eric Parisb77a4932010-11-23 11:40:08 -05001536
1537 return 0;
James Carterf0ee2e42007-04-04 10:11:29 -04001538}
1539
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001540static inline unsigned int sel_div(unsigned long a, unsigned long b)
1541{
1542 return a / b - (a % b < 0);
1543}
1544
1545static inline unsigned long sel_class_to_ino(u16 class)
1546{
1547 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1548}
1549
1550static inline u16 sel_ino_to_class(unsigned long ino)
1551{
1552 return sel_div(ino & SEL_INO_MASK, SEL_VEC_MAX + 1);
1553}
1554
1555static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1556{
1557 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1558}
1559
1560static inline u32 sel_ino_to_perm(unsigned long ino)
1561{
1562 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1563}
1564
Eric Paris18729812008-04-17 14:15:45 -04001565static ssize_t sel_read_class(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001566 size_t count, loff_t *ppos)
1567{
1568 ssize_t rc, len;
1569 char *page;
1570 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1571
1572 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001573 if (!page)
1574 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001575
1576 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_class(ino));
1577 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1578 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001579
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001580 return rc;
1581}
1582
1583static const struct file_operations sel_class_ops = {
1584 .read = sel_read_class,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001585 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001586};
1587
Eric Paris18729812008-04-17 14:15:45 -04001588static ssize_t sel_read_perm(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001589 size_t count, loff_t *ppos)
1590{
1591 ssize_t rc, len;
1592 char *page;
1593 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1594
1595 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001596 if (!page)
1597 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001598
Eric Paris18729812008-04-17 14:15:45 -04001599 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_perm(ino));
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001600 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1601 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001602
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001603 return rc;
1604}
1605
1606static const struct file_operations sel_perm_ops = {
1607 .read = sel_read_perm,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001608 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001609};
1610
Paul Moore3bb56b22008-01-29 08:38:19 -05001611static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1612 size_t count, loff_t *ppos)
1613{
1614 int value;
1615 char tmpbuf[TMPBUFLEN];
1616 ssize_t length;
1617 unsigned long i_ino = file->f_path.dentry->d_inode->i_ino;
1618
1619 value = security_policycap_supported(i_ino & SEL_INO_MASK);
1620 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1621
1622 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1623}
1624
1625static const struct file_operations sel_policycap_ops = {
1626 .read = sel_read_policycap,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001627 .llseek = generic_file_llseek,
Paul Moore3bb56b22008-01-29 08:38:19 -05001628};
1629
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001630static int sel_make_perm_files(char *objclass, int classvalue,
1631 struct dentry *dir)
1632{
Eric Parisb77a4932010-11-23 11:40:08 -05001633 int i, rc, nperms;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001634 char **perms;
1635
1636 rc = security_get_permissions(objclass, &perms, &nperms);
1637 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001638 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001639
1640 for (i = 0; i < nperms; i++) {
1641 struct inode *inode;
1642 struct dentry *dentry;
1643
Eric Parisb77a4932010-11-23 11:40:08 -05001644 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001645 dentry = d_alloc_name(dir, perms[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001646 if (!dentry)
1647 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001648
Eric Parisb77a4932010-11-23 11:40:08 -05001649 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001650 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001651 if (!inode)
1652 goto out;
1653
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001654 inode->i_fop = &sel_perm_ops;
1655 /* i+1 since perm values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001656 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001657 d_add(dentry, inode);
1658 }
Eric Parisb77a4932010-11-23 11:40:08 -05001659 rc = 0;
1660out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001661 for (i = 0; i < nperms; i++)
1662 kfree(perms[i]);
1663 kfree(perms);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001664 return rc;
1665}
1666
1667static int sel_make_class_dir_entries(char *classname, int index,
1668 struct dentry *dir)
1669{
1670 struct dentry *dentry = NULL;
1671 struct inode *inode = NULL;
1672 int rc;
1673
1674 dentry = d_alloc_name(dir, "index");
Eric Parisb77a4932010-11-23 11:40:08 -05001675 if (!dentry)
1676 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001677
1678 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001679 if (!inode)
1680 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001681
1682 inode->i_fop = &sel_class_ops;
1683 inode->i_ino = sel_class_to_ino(index);
1684 d_add(dentry, inode);
1685
1686 dentry = d_alloc_name(dir, "perms");
Eric Parisb77a4932010-11-23 11:40:08 -05001687 if (!dentry)
1688 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001689
1690 rc = sel_make_dir(dir->d_inode, dentry, &last_class_ino);
1691 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001692 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001693
1694 rc = sel_make_perm_files(classname, index, dentry);
1695
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001696 return rc;
1697}
1698
1699static void sel_remove_classes(void)
1700{
1701 struct list_head *class_node;
1702
1703 list_for_each(class_node, &class_dir->d_subdirs) {
1704 struct dentry *class_subdir = list_entry(class_node,
1705 struct dentry, d_u.d_child);
1706 struct list_head *class_subdir_node;
1707
1708 list_for_each(class_subdir_node, &class_subdir->d_subdirs) {
1709 struct dentry *d = list_entry(class_subdir_node,
1710 struct dentry, d_u.d_child);
1711
1712 if (d->d_inode)
1713 if (d->d_inode->i_mode & S_IFDIR)
1714 sel_remove_entries(d);
1715 }
1716
1717 sel_remove_entries(class_subdir);
1718 }
1719
1720 sel_remove_entries(class_dir);
1721}
1722
1723static int sel_make_classes(void)
1724{
Eric Parisb77a4932010-11-23 11:40:08 -05001725 int rc, nclasses, i;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001726 char **classes;
1727
1728 /* delete any existing entries */
1729 sel_remove_classes();
1730
1731 rc = security_get_classes(&classes, &nclasses);
Eric Parisb77a4932010-11-23 11:40:08 -05001732 if (rc)
1733 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001734
1735 /* +2 since classes are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001736 last_class_ino = sel_class_to_ino(nclasses + 2);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001737
1738 for (i = 0; i < nclasses; i++) {
1739 struct dentry *class_name_dir;
1740
Eric Parisb77a4932010-11-23 11:40:08 -05001741 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001742 class_name_dir = d_alloc_name(class_dir, classes[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001743 if (!class_name_dir)
1744 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001745
1746 rc = sel_make_dir(class_dir->d_inode, class_name_dir,
1747 &last_class_ino);
1748 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001749 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001750
1751 /* i+1 since class values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001752 rc = sel_make_class_dir_entries(classes[i], i + 1,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001753 class_name_dir);
1754 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001755 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001756 }
Eric Parisb77a4932010-11-23 11:40:08 -05001757 rc = 0;
1758out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001759 for (i = 0; i < nclasses; i++)
1760 kfree(classes[i]);
1761 kfree(classes);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001762 return rc;
1763}
1764
Paul Moore3bb56b22008-01-29 08:38:19 -05001765static int sel_make_policycap(void)
1766{
1767 unsigned int iter;
1768 struct dentry *dentry = NULL;
1769 struct inode *inode = NULL;
1770
1771 sel_remove_entries(policycap_dir);
1772
1773 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
1774 if (iter < ARRAY_SIZE(policycap_names))
1775 dentry = d_alloc_name(policycap_dir,
1776 policycap_names[iter]);
1777 else
1778 dentry = d_alloc_name(policycap_dir, "unknown");
1779
1780 if (dentry == NULL)
1781 return -ENOMEM;
1782
1783 inode = sel_make_inode(policycap_dir->d_sb, S_IFREG | S_IRUGO);
1784 if (inode == NULL)
1785 return -ENOMEM;
1786
1787 inode->i_fop = &sel_policycap_ops;
1788 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1789 d_add(dentry, inode);
1790 }
1791
1792 return 0;
1793}
1794
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001795static int sel_make_dir(struct inode *dir, struct dentry *dentry,
1796 unsigned long *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 struct inode *inode;
1799
James Morrisedb20fb2006-03-22 00:09:20 -08001800 inode = sel_make_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001801 if (!inode)
1802 return -ENOMEM;
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 inode->i_op = &simple_dir_inode_operations;
1805 inode->i_fop = &simple_dir_operations;
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001806 inode->i_ino = ++(*ino);
James Morris40e906f2006-03-22 00:09:16 -08001807 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -07001808 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 d_add(dentry, inode);
James Morrisedb20fb2006-03-22 00:09:20 -08001810 /* bump link count on parent directory, too */
Dave Hansend8c76e62006-09-30 23:29:04 -07001811 inc_nlink(dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001812
1813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
Eric Paris18729812008-04-17 14:15:45 -04001816static int sel_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
1818 int ret;
1819 struct dentry *dentry;
James Morrisedb20fb2006-03-22 00:09:20 -08001820 struct inode *inode, *root_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 struct inode_security_struct *isec;
1822
1823 static struct tree_descr selinux_files[] = {
1824 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1825 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
Stephen Smalleyce9982d2005-11-08 21:34:33 -08001826 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1828 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1829 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1830 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1831 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1832 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1833 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1834 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1835 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1836 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
Eric Paris3f120702007-09-21 14:37:10 -04001837 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1838 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
KaiGai Kohei11904162010-09-14 18:28:39 +09001839 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
Eric Pariscee74f42010-10-13 17:50:25 -04001840 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 /* last one */ {""}
1842 };
1843 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1844 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001845 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
James Morrisedb20fb2006-03-22 00:09:20 -08001847 root_inode = sb->s_root->d_inode;
1848
Eric Parisb77a4932010-11-23 11:40:08 -05001849 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 dentry = d_alloc_name(sb->s_root, BOOL_DIR_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05001851 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001852 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001854 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
James Morriscde174a2006-03-22 00:09:17 -08001855 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001856 goto err;
James Morriscde174a2006-03-22 00:09:17 -08001857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 bool_dir = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Eric Parisb77a4932010-11-23 11:40:08 -05001860 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05001862 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001863 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Eric Parisb77a4932010-11-23 11:40:08 -05001865 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001867 if (!inode)
James Morris161ce452006-03-22 00:09:17 -08001868 goto err;
Eric Parisb77a4932010-11-23 11:40:08 -05001869
James Carter6174eaf2007-04-04 16:18:39 -04001870 inode->i_ino = ++sel_last_ino;
Eric Paris18729812008-04-17 14:15:45 -04001871 isec = (struct inode_security_struct *)inode->i_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 isec->sid = SECINITSID_DEVNULL;
1873 isec->sclass = SECCLASS_CHR_FILE;
1874 isec->initialized = 1;
1875
1876 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1877 d_add(dentry, inode);
1878 selinux_null = dentry;
1879
Eric Parisb77a4932010-11-23 11:40:08 -05001880 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 dentry = d_alloc_name(sb->s_root, "avc");
Eric Parisb77a4932010-11-23 11:40:08 -05001882 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001883 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001885 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001887 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 ret = sel_make_avc_files(dentry);
1890 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001891 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04001892
Eric Parisb77a4932010-11-23 11:40:08 -05001893 ret = -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001894 dentry = d_alloc_name(sb->s_root, "initial_contexts");
Eric Parisb77a4932010-11-23 11:40:08 -05001895 if (!dentry)
James Carterf0ee2e42007-04-04 10:11:29 -04001896 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04001897
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001898 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
James Carterf0ee2e42007-04-04 10:11:29 -04001899 if (ret)
1900 goto err;
1901
1902 ret = sel_make_initcon_files(dentry);
1903 if (ret)
1904 goto err;
1905
Eric Parisb77a4932010-11-23 11:40:08 -05001906 ret = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001907 dentry = d_alloc_name(sb->s_root, "class");
Eric Parisb77a4932010-11-23 11:40:08 -05001908 if (!dentry)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001909 goto err;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001910
1911 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1912 if (ret)
1913 goto err;
1914
1915 class_dir = dentry;
1916
Eric Parisb77a4932010-11-23 11:40:08 -05001917 ret = -ENOMEM;
Paul Moore3bb56b22008-01-29 08:38:19 -05001918 dentry = d_alloc_name(sb->s_root, "policy_capabilities");
Eric Parisb77a4932010-11-23 11:40:08 -05001919 if (!dentry)
Paul Moore3bb56b22008-01-29 08:38:19 -05001920 goto err;
Paul Moore3bb56b22008-01-29 08:38:19 -05001921
1922 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1923 if (ret)
1924 goto err;
1925
1926 policycap_dir = dentry;
1927
Eric Parisb77a4932010-11-23 11:40:08 -05001928 return 0;
James Morris161ce452006-03-22 00:09:17 -08001929err:
Eric Paris744ba352008-04-17 11:52:44 -04001930 printk(KERN_ERR "SELinux: %s: failed while creating inodes\n",
1931 __func__);
Eric Parisb77a4932010-11-23 11:40:08 -05001932 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
Al Virofc14f2f2010-07-25 01:48:30 +04001935static struct dentry *sel_mount(struct file_system_type *fs_type,
1936 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
Al Virofc14f2f2010-07-25 01:48:30 +04001938 return mount_single(fs_type, flags, data, sel_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939}
1940
1941static struct file_system_type sel_fs_type = {
1942 .name = "selinuxfs",
Al Virofc14f2f2010-07-25 01:48:30 +04001943 .mount = sel_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 .kill_sb = kill_litter_super,
1945};
1946
1947struct vfsmount *selinuxfs_mount;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001948static struct kobject *selinuxfs_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950static int __init init_sel_fs(void)
1951{
1952 int err;
1953
1954 if (!selinux_enabled)
1955 return 0;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001956
1957 selinuxfs_kobj = kobject_create_and_add("selinux", fs_kobj);
1958 if (!selinuxfs_kobj)
1959 return -ENOMEM;
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 err = register_filesystem(&sel_fs_type);
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001962 if (err) {
1963 kobject_put(selinuxfs_kobj);
Eric Parisb77a4932010-11-23 11:40:08 -05001964 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001965 }
Eric Parisb77a4932010-11-23 11:40:08 -05001966
1967 selinuxfs_mount = kern_mount(&sel_fs_type);
1968 if (IS_ERR(selinuxfs_mount)) {
1969 printk(KERN_ERR "selinuxfs: could not mount!\n");
1970 err = PTR_ERR(selinuxfs_mount);
1971 selinuxfs_mount = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
Eric Parisb77a4932010-11-23 11:40:08 -05001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return err;
1975}
1976
1977__initcall(init_sel_fs);
1978
1979#ifdef CONFIG_SECURITY_SELINUX_DISABLE
1980void exit_sel_fs(void)
1981{
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001982 kobject_put(selinuxfs_kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 unregister_filesystem(&sel_fs_type);
1984}
1985#endif