blob: fde4e9d64bfd34950aa9a40e0143c85507f657b0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* selinuxfs pseudo filesystem for exporting the security policy API.
34 Based on the proc code and the fs/nfsd/nfsctl.c code. */
35
36#include "flask.h"
37#include "avc.h"
38#include "avc_ss.h"
39#include "security.h"
40#include "objsec.h"
41#include "conditional.h"
42
Paul Moore3bb56b22008-01-29 08:38:19 -050043/* Policy capability filenames */
44static char *policycap_names[] = {
Eric Parisb0c636b2008-02-28 12:58:40 -050045 "network_peer_controls",
46 "open_perms"
Paul Moore3bb56b22008-01-29 08:38:19 -050047};
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049unsigned int selinux_checkreqprot = CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
50
51static int __init checkreqprot_setup(char *str)
52{
Eric Parisf5269712008-05-14 11:27:45 -040053 unsigned long checkreqprot;
54 if (!strict_strtoul(str, 0, &checkreqprot))
55 selinux_checkreqprot = checkreqprot ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return 1;
57}
58__setup("checkreqprot=", checkreqprot_setup);
59
Ingo Molnarbb003072006-03-22 00:09:14 -080060static DEFINE_MUTEX(sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* global data for booleans */
Eric Paris18729812008-04-17 14:15:45 -040063static struct dentry *bool_dir;
64static int bool_num;
Stephen Smalleyd313f942007-11-26 11:12:53 -050065static char **bool_pending_names;
Eric Paris18729812008-04-17 14:15:45 -040066static int *bool_pending_values;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -040068/* global data for classes */
Eric Paris18729812008-04-17 14:15:45 -040069static struct dentry *class_dir;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -040070static unsigned long last_class_ino;
71
Eric Pariscee74f42010-10-13 17:50:25 -040072static char policy_opened;
73
Paul Moore3bb56b22008-01-29 08:38:19 -050074/* global data for policy capabilities */
Eric Paris18729812008-04-17 14:15:45 -040075static struct dentry *policycap_dir;
Paul Moore3bb56b22008-01-29 08:38:19 -050076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077extern void selnl_notify_setenforce(int val);
78
79/* Check whether a task is allowed to use a security operation. */
80static int task_has_security(struct task_struct *tsk,
81 u32 perms)
82{
David Howellsc69e8d92008-11-14 10:39:19 +110083 const struct task_security_struct *tsec;
84 u32 sid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
David Howellsc69e8d92008-11-14 10:39:19 +110086 rcu_read_lock();
87 tsec = __task_cred(tsk)->security;
88 if (tsec)
89 sid = tsec->sid;
90 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (!tsec)
92 return -EACCES;
93
David Howellsc69e8d92008-11-14 10:39:19 +110094 return avc_has_perm(sid, SECINITSID_SECURITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 SECCLASS_SECURITY, perms, NULL);
96}
97
98enum sel_inos {
99 SEL_ROOT_INO = 2,
100 SEL_LOAD, /* load policy */
101 SEL_ENFORCE, /* get or set enforcing status */
102 SEL_CONTEXT, /* validate context */
103 SEL_ACCESS, /* compute access decision */
104 SEL_CREATE, /* compute create labeling decision */
105 SEL_RELABEL, /* compute relabeling decision */
106 SEL_USER, /* compute reachable user contexts */
107 SEL_POLICYVERS, /* return policy version for this kernel */
108 SEL_COMMIT_BOOLS, /* commit new boolean values */
109 SEL_MLS, /* return if MLS policy is enabled */
110 SEL_DISABLE, /* disable SELinux until next reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 SEL_MEMBER, /* compute polyinstantiation membership decision */
112 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
James Morris4e5ab4c2006-06-09 00:33:33 -0700113 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
Eric Paris3f120702007-09-21 14:37:10 -0400114 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
115 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
KaiGai Kohei11904162010-09-14 18:28:39 +0900116 SEL_STATUS, /* export current status using mmap() */
Eric Pariscee74f42010-10-13 17:50:25 -0400117 SEL_POLICY, /* allow userspace to read the in kernel policy */
James Carter6174eaf2007-04-04 16:18:39 -0400118 SEL_INO_NEXT, /* The next inode number to use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
James Carter6174eaf2007-04-04 16:18:39 -0400121static unsigned long sel_last_ino = SEL_INO_NEXT - 1;
122
Paul Moore3bb56b22008-01-29 08:38:19 -0500123#define SEL_INITCON_INO_OFFSET 0x01000000
124#define SEL_BOOL_INO_OFFSET 0x02000000
125#define SEL_CLASS_INO_OFFSET 0x04000000
126#define SEL_POLICYCAP_INO_OFFSET 0x08000000
127#define SEL_INO_MASK 0x00ffffff
James Carterf0ee2e42007-04-04 10:11:29 -0400128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#define TMPBUFLEN 12
130static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
131 size_t count, loff_t *ppos)
132{
133 char tmpbuf[TMPBUFLEN];
134 ssize_t length;
135
136 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_enforcing);
137 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
138}
139
140#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Eric Paris18729812008-04-17 14:15:45 -0400141static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 size_t count, loff_t *ppos)
143
144{
Eric Parisb77a4932010-11-23 11:40:08 -0500145 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 ssize_t length;
147 int new_value;
148
Eric Parisb77a4932010-11-23 11:40:08 -0500149 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800150 if (count >= PAGE_SIZE)
Eric Parisb77a4932010-11-23 11:40:08 -0500151 goto out;
152
153 /* No partial writes. */
154 length = EINVAL;
155 if (*ppos != 0)
156 goto out;
157
158 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400159 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500161 goto out;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 length = -EFAULT;
164 if (copy_from_user(page, buf, count))
165 goto out;
166
167 length = -EINVAL;
168 if (sscanf(page, "%d", &new_value) != 1)
169 goto out;
170
171 if (new_value != selinux_enforcing) {
172 length = task_has_security(current, SECURITY__SETENFORCE);
173 if (length)
174 goto out;
Steve Grubbaf601e42006-01-04 14:08:39 +0000175 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
Eric Paris4746ec52008-01-08 10:06:53 -0500176 "enforcing=%d old_enforcing=%d auid=%u ses=%u",
177 new_value, selinux_enforcing,
178 audit_get_loginuid(current),
179 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 selinux_enforcing = new_value;
181 if (selinux_enforcing)
182 avc_ss_reset(0);
183 selnl_notify_setenforce(selinux_enforcing);
KaiGai Kohei11904162010-09-14 18:28:39 +0900184 selinux_status_update_setenforce(selinux_enforcing);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 length = count;
187out:
188 free_page((unsigned long) page);
189 return length;
190}
191#else
192#define sel_write_enforce NULL
193#endif
194
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800195static const struct file_operations sel_enforce_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 .read = sel_read_enforce,
197 .write = sel_write_enforce,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200198 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199};
200
Eric Paris3f120702007-09-21 14:37:10 -0400201static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
202 size_t count, loff_t *ppos)
203{
204 char tmpbuf[TMPBUFLEN];
205 ssize_t length;
206 ino_t ino = filp->f_path.dentry->d_inode->i_ino;
207 int handle_unknown = (ino == SEL_REJECT_UNKNOWN) ?
208 security_get_reject_unknown() : !security_get_allow_unknown();
209
210 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
211 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
212}
213
214static const struct file_operations sel_handle_unknown_ops = {
215 .read = sel_read_handle_unknown,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200216 .llseek = generic_file_llseek,
Eric Paris3f120702007-09-21 14:37:10 -0400217};
218
KaiGai Kohei11904162010-09-14 18:28:39 +0900219static int sel_open_handle_status(struct inode *inode, struct file *filp)
220{
221 struct page *status = selinux_kernel_status_page();
222
223 if (!status)
224 return -ENOMEM;
225
226 filp->private_data = status;
227
228 return 0;
229}
230
231static ssize_t sel_read_handle_status(struct file *filp, char __user *buf,
232 size_t count, loff_t *ppos)
233{
234 struct page *status = filp->private_data;
235
236 BUG_ON(!status);
237
238 return simple_read_from_buffer(buf, count, ppos,
239 page_address(status),
240 sizeof(struct selinux_kernel_status));
241}
242
243static int sel_mmap_handle_status(struct file *filp,
244 struct vm_area_struct *vma)
245{
246 struct page *status = filp->private_data;
247 unsigned long size = vma->vm_end - vma->vm_start;
248
249 BUG_ON(!status);
250
251 /* only allows one page from the head */
252 if (vma->vm_pgoff > 0 || size != PAGE_SIZE)
253 return -EIO;
254 /* disallow writable mapping */
255 if (vma->vm_flags & VM_WRITE)
256 return -EPERM;
257 /* disallow mprotect() turns it into writable */
258 vma->vm_flags &= ~VM_MAYWRITE;
259
260 return remap_pfn_range(vma, vma->vm_start,
261 page_to_pfn(status),
262 size, vma->vm_page_prot);
263}
264
265static const struct file_operations sel_handle_status_ops = {
266 .open = sel_open_handle_status,
267 .read = sel_read_handle_status,
268 .mmap = sel_mmap_handle_status,
269 .llseek = generic_file_llseek,
270};
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Eric Paris18729812008-04-17 14:15:45 -0400273static ssize_t sel_write_disable(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 size_t count, loff_t *ppos)
275
276{
Eric Parisb77a4932010-11-23 11:40:08 -0500277 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 ssize_t length;
279 int new_value;
280 extern int selinux_disable(void);
281
Eric Parisb77a4932010-11-23 11:40:08 -0500282 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800283 if (count >= PAGE_SIZE)
Eric Parisb77a4932010-11-23 11:40:08 -0500284 goto out;;
285
286 /* No partial writes. */
287 length = -EINVAL;
288 if (*ppos != 0)
289 goto out;
290
291 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400292 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500294 goto out;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 length = -EFAULT;
297 if (copy_from_user(page, buf, count))
298 goto out;
299
300 length = -EINVAL;
301 if (sscanf(page, "%d", &new_value) != 1)
302 goto out;
303
304 if (new_value) {
305 length = selinux_disable();
Eric Parisb77a4932010-11-23 11:40:08 -0500306 if (length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 goto out;
Steve Grubbaf601e42006-01-04 14:08:39 +0000308 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
Eric Paris4746ec52008-01-08 10:06:53 -0500309 "selinux=0 auid=%u ses=%u",
310 audit_get_loginuid(current),
311 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 length = count;
315out:
316 free_page((unsigned long) page);
317 return length;
318}
319#else
320#define sel_write_disable NULL
321#endif
322
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800323static const struct file_operations sel_disable_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 .write = sel_write_disable,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200325 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326};
327
328static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
Eric Paris18729812008-04-17 14:15:45 -0400329 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 char tmpbuf[TMPBUFLEN];
332 ssize_t length;
333
334 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
335 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
336}
337
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800338static const struct file_operations sel_policyvers_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 .read = sel_read_policyvers,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200340 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341};
342
343/* declaration for sel_write_load */
344static int sel_make_bools(void);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400345static int sel_make_classes(void);
Paul Moore3bb56b22008-01-29 08:38:19 -0500346static int sel_make_policycap(void);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400347
348/* declaration for sel_make_class_dirs */
349static int sel_make_dir(struct inode *dir, struct dentry *dentry,
350 unsigned long *ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352static ssize_t sel_read_mls(struct file *filp, char __user *buf,
353 size_t count, loff_t *ppos)
354{
355 char tmpbuf[TMPBUFLEN];
356 ssize_t length;
357
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100358 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
359 security_mls_enabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
361}
362
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800363static const struct file_operations sel_mls_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 .read = sel_read_mls,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200365 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366};
367
Eric Pariscee74f42010-10-13 17:50:25 -0400368struct policy_load_memory {
369 size_t len;
370 void *data;
371};
372
373static int sel_open_policy(struct inode *inode, struct file *filp)
374{
375 struct policy_load_memory *plm = NULL;
376 int rc;
377
378 BUG_ON(filp->private_data);
379
380 mutex_lock(&sel_mutex);
381
382 rc = task_has_security(current, SECURITY__READ_POLICY);
383 if (rc)
384 goto err;
385
386 rc = -EBUSY;
387 if (policy_opened)
388 goto err;
389
390 rc = -ENOMEM;
391 plm = kzalloc(sizeof(*plm), GFP_KERNEL);
392 if (!plm)
393 goto err;
394
395 if (i_size_read(inode) != security_policydb_len()) {
396 mutex_lock(&inode->i_mutex);
397 i_size_write(inode, security_policydb_len());
398 mutex_unlock(&inode->i_mutex);
399 }
400
401 rc = security_read_policy(&plm->data, &plm->len);
402 if (rc)
403 goto err;
404
405 policy_opened = 1;
406
407 filp->private_data = plm;
408
409 mutex_unlock(&sel_mutex);
410
411 return 0;
412err:
413 mutex_unlock(&sel_mutex);
414
415 if (plm)
416 vfree(plm->data);
417 kfree(plm);
418 return rc;
419}
420
421static int sel_release_policy(struct inode *inode, struct file *filp)
422{
423 struct policy_load_memory *plm = filp->private_data;
424
425 BUG_ON(!plm);
426
427 policy_opened = 0;
428
429 vfree(plm->data);
430 kfree(plm);
431
432 return 0;
433}
434
435static ssize_t sel_read_policy(struct file *filp, char __user *buf,
436 size_t count, loff_t *ppos)
437{
438 struct policy_load_memory *plm = filp->private_data;
439 int ret;
440
441 mutex_lock(&sel_mutex);
442
443 ret = task_has_security(current, SECURITY__READ_POLICY);
444 if (ret)
445 goto out;
446
447 ret = simple_read_from_buffer(buf, count, ppos, plm->data, plm->len);
448out:
449 mutex_unlock(&sel_mutex);
450 return ret;
451}
452
Eric Paris845ca302010-10-13 17:50:31 -0400453static int sel_mmap_policy_fault(struct vm_area_struct *vma,
454 struct vm_fault *vmf)
455{
456 struct policy_load_memory *plm = vma->vm_file->private_data;
457 unsigned long offset;
458 struct page *page;
459
460 if (vmf->flags & (FAULT_FLAG_MKWRITE | FAULT_FLAG_WRITE))
461 return VM_FAULT_SIGBUS;
462
463 offset = vmf->pgoff << PAGE_SHIFT;
464 if (offset >= roundup(plm->len, PAGE_SIZE))
465 return VM_FAULT_SIGBUS;
466
467 page = vmalloc_to_page(plm->data + offset);
468 get_page(page);
469
470 vmf->page = page;
471
472 return 0;
473}
474
475static struct vm_operations_struct sel_mmap_policy_ops = {
476 .fault = sel_mmap_policy_fault,
477 .page_mkwrite = sel_mmap_policy_fault,
478};
479
480int sel_mmap_policy(struct file *filp, struct vm_area_struct *vma)
481{
482 if (vma->vm_flags & VM_SHARED) {
483 /* do not allow mprotect to make mapping writable */
484 vma->vm_flags &= ~VM_MAYWRITE;
485
486 if (vma->vm_flags & VM_WRITE)
487 return -EACCES;
488 }
489
490 vma->vm_flags |= VM_RESERVED;
491 vma->vm_ops = &sel_mmap_policy_ops;
492
493 return 0;
494}
495
Eric Pariscee74f42010-10-13 17:50:25 -0400496static const struct file_operations sel_policy_ops = {
497 .open = sel_open_policy,
498 .read = sel_read_policy,
Eric Paris845ca302010-10-13 17:50:31 -0400499 .mmap = sel_mmap_policy,
Eric Pariscee74f42010-10-13 17:50:25 -0400500 .release = sel_release_policy,
501};
502
Eric Paris18729812008-04-17 14:15:45 -0400503static ssize_t sel_write_load(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 size_t count, loff_t *ppos)
505
506{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 ssize_t length;
508 void *data = NULL;
509
Ingo Molnarbb003072006-03-22 00:09:14 -0800510 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 length = task_has_security(current, SECURITY__LOAD_POLICY);
513 if (length)
514 goto out;
515
Eric Parisb77a4932010-11-23 11:40:08 -0500516 /* No partial writes. */
517 length = -EINVAL;
518 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Eric Parisb77a4932010-11-23 11:40:08 -0500521 length = -EFBIG;
522 if (count > 64 * 1024 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -0500524
525 length = -ENOMEM;
526 data = vmalloc(count);
527 if (!data)
528 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 length = -EFAULT;
531 if (copy_from_user(data, buf, count) != 0)
532 goto out;
533
534 length = security_load_policy(data, count);
535 if (length)
536 goto out;
537
Eric Parisb77a4932010-11-23 11:40:08 -0500538 length = sel_make_bools();
539 if (length)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400540 goto out1;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400541
Eric Parisb77a4932010-11-23 11:40:08 -0500542 length = sel_make_classes();
543 if (length)
Paul Moore3bb56b22008-01-29 08:38:19 -0500544 goto out1;
Paul Moore3bb56b22008-01-29 08:38:19 -0500545
Eric Parisb77a4932010-11-23 11:40:08 -0500546 length = sel_make_policycap();
547 if (length)
548 goto out1;
549
550 length = count;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400551
552out1:
Steve Grubbaf601e42006-01-04 14:08:39 +0000553 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
Eric Paris4746ec52008-01-08 10:06:53 -0500554 "policy loaded auid=%u ses=%u",
555 audit_get_loginuid(current),
556 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557out:
Ingo Molnarbb003072006-03-22 00:09:14 -0800558 mutex_unlock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 vfree(data);
560 return length;
561}
562
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800563static const struct file_operations sel_load_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 .write = sel_write_load,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200565 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566};
567
Eric Paris18729812008-04-17 14:15:45 -0400568static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Eric Parisb77a4932010-11-23 11:40:08 -0500570 char *canon = NULL;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800571 u32 sid, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 ssize_t length;
573
574 length = task_has_security(current, SECURITY__CHECK_CONTEXT);
575 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500576 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800578 length = security_context_to_sid(buf, size, &sid);
Eric Parisb77a4932010-11-23 11:40:08 -0500579 if (length)
580 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800582 length = security_sid_to_context(sid, &canon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500583 if (length)
584 goto out;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800585
Eric Parisb77a4932010-11-23 11:40:08 -0500586 length = -ERANGE;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800587 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400588 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
589 "payload max\n", __func__, len);
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800590 goto out;
591 }
592
593 memcpy(buf, canon, len);
594 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595out:
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800596 kfree(canon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return length;
598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
601 size_t count, loff_t *ppos)
602{
603 char tmpbuf[TMPBUFLEN];
604 ssize_t length;
605
606 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", selinux_checkreqprot);
607 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
608}
609
Eric Paris18729812008-04-17 14:15:45 -0400610static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 size_t count, loff_t *ppos)
612{
Eric Parisb77a4932010-11-23 11:40:08 -0500613 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 ssize_t length;
615 unsigned int new_value;
616
617 length = task_has_security(current, SECURITY__SETCHECKREQPROT);
618 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500619 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Eric Parisb77a4932010-11-23 11:40:08 -0500621 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800622 if (count >= PAGE_SIZE)
Eric Parisb77a4932010-11-23 11:40:08 -0500623 goto out;
624
625 /* No partial writes. */
626 length = -EINVAL;
627 if (*ppos != 0)
628 goto out;
629
630 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400631 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500633 goto out;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 length = -EFAULT;
636 if (copy_from_user(page, buf, count))
637 goto out;
638
639 length = -EINVAL;
640 if (sscanf(page, "%u", &new_value) != 1)
641 goto out;
642
643 selinux_checkreqprot = new_value ? 1 : 0;
644 length = count;
645out:
646 free_page((unsigned long) page);
647 return length;
648}
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800649static const struct file_operations sel_checkreqprot_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 .read = sel_read_checkreqprot,
651 .write = sel_write_checkreqprot,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200652 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653};
654
655/*
656 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
657 */
Eric Paris18729812008-04-17 14:15:45 -0400658static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
659static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
660static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
661static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
662static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664static ssize_t (*write_op[])(struct file *, char *, size_t) = {
665 [SEL_ACCESS] = sel_write_access,
666 [SEL_CREATE] = sel_write_create,
667 [SEL_RELABEL] = sel_write_relabel,
668 [SEL_USER] = sel_write_user,
669 [SEL_MEMBER] = sel_write_member,
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800670 [SEL_CONTEXT] = sel_write_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671};
672
673static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
674{
Eric Paris18729812008-04-17 14:15:45 -0400675 ino_t ino = file->f_path.dentry->d_inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 char *data;
677 ssize_t rv;
678
Nicolas Kaiser6e20a642006-01-06 00:11:22 -0800679 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return -EINVAL;
681
682 data = simple_transaction_get(file, buf, size);
683 if (IS_ERR(data))
684 return PTR_ERR(data);
685
Eric Paris18729812008-04-17 14:15:45 -0400686 rv = write_op[ino](file, data, size);
687 if (rv > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 simple_transaction_set(file, rv);
689 rv = size;
690 }
691 return rv;
692}
693
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800694static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 .write = selinux_transaction_write,
696 .read = simple_transaction_read,
697 .release = simple_transaction_release,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200698 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699};
700
701/*
702 * payload - write methods
703 * If the method has a response, the response should be put in buf,
704 * and the length returned. Otherwise return 0 or and -error.
705 */
706
Eric Paris18729812008-04-17 14:15:45 -0400707static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Eric Parisb77a4932010-11-23 11:40:08 -0500709 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 u32 ssid, tsid;
711 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct av_decision avd;
713 ssize_t length;
714
715 length = task_has_security(current, SECURITY__COMPUTE_AV);
716 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500717 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800720 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500722 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Eric Parisb77a4932010-11-23 11:40:08 -0500724 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800725 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (!tcon)
727 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 length = -EINVAL;
Stephen Smalley19439d02010-01-14 17:28:10 -0500730 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500731 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800733 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500734 if (length)
735 goto out;
736
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800737 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500738 if (length)
739 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Stephen Smalley19439d02010-01-14 17:28:10 -0500741 security_compute_av_user(ssid, tsid, tclass, &avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900744 "%x %x %x %x %u %x",
Eric Parisf1c63812009-02-12 14:50:54 -0500745 avd.allowed, 0xffffffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 avd.auditallow, avd.auditdeny,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900747 avd.seqno, avd.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748out:
Eric Parisb77a4932010-11-23 11:40:08 -0500749 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 kfree(scon);
751 return length;
752}
753
Eric Paris18729812008-04-17 14:15:45 -0400754static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Eric Parisb77a4932010-11-23 11:40:08 -0500756 char *scon = NULL, *tcon = NULL;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100757 char *namebuf = NULL, *objname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 u32 ssid, tsid, newsid;
759 u16 tclass;
760 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500761 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 u32 len;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100763 int nargs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 length = task_has_security(current, SECURITY__COMPUTE_CREATE);
766 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500767 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800770 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500772 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Eric Parisb77a4932010-11-23 11:40:08 -0500774 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800775 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (!tcon)
777 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100779 length = -ENOMEM;
780 namebuf = kzalloc(size + 1, GFP_KERNEL);
781 if (!namebuf)
Eric Parisb77a4932010-11-23 11:40:08 -0500782 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100784 length = -EINVAL;
785 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
786 if (nargs < 3 || nargs > 4)
787 goto out;
788 if (nargs == 4)
789 objname = namebuf;
790
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800791 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500792 if (length)
793 goto out;
794
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800795 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500796 if (length)
797 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100799 length = security_transition_sid_user(ssid, tsid, tclass,
800 objname, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500801 if (length)
802 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500805 if (length)
806 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Eric Parisb77a4932010-11-23 11:40:08 -0500808 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400810 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
811 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -0500812 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
815 memcpy(buf, newcon, len);
816 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817out:
Eric Parisb77a4932010-11-23 11:40:08 -0500818 kfree(newcon);
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100819 kfree(namebuf);
Eric Parisb77a4932010-11-23 11:40:08 -0500820 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 kfree(scon);
822 return length;
823}
824
Eric Paris18729812008-04-17 14:15:45 -0400825static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Eric Parisb77a4932010-11-23 11:40:08 -0500827 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 u32 ssid, tsid, newsid;
829 u16 tclass;
830 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500831 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 u32 len;
833
834 length = task_has_security(current, SECURITY__COMPUTE_RELABEL);
835 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500836 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800839 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500841 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Eric Parisb77a4932010-11-23 11:40:08 -0500843 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800844 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (!tcon)
846 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 length = -EINVAL;
849 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500850 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800852 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500853 if (length)
854 goto out;
855
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800856 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500857 if (length)
858 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 length = security_change_sid(ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500861 if (length)
862 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500865 if (length)
866 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Eric Parisb77a4932010-11-23 11:40:08 -0500868 length = -ERANGE;
869 if (len > SIMPLE_TRANSACTION_LIMIT)
870 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 memcpy(buf, newcon, len);
873 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874out:
Eric Parisb77a4932010-11-23 11:40:08 -0500875 kfree(newcon);
876 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 kfree(scon);
878 return length;
879}
880
Eric Paris18729812008-04-17 14:15:45 -0400881static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Eric Parisb77a4932010-11-23 11:40:08 -0500883 char *con = NULL, *user = NULL, *ptr;
884 u32 sid, *sids = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 ssize_t length;
886 char *newcon;
887 int i, rc;
888 u32 len, nsids;
889
890 length = task_has_security(current, SECURITY__COMPUTE_USER);
891 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500892 goto out;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800895 con = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (!con)
Eric Parisb77a4932010-11-23 11:40:08 -0500897 goto out;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Eric Parisb77a4932010-11-23 11:40:08 -0500899 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800900 user = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (!user)
902 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 length = -EINVAL;
905 if (sscanf(buf, "%s %s", con, user) != 2)
Eric Parisb77a4932010-11-23 11:40:08 -0500906 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800908 length = security_context_to_sid(con, strlen(con) + 1, &sid);
Eric Parisb77a4932010-11-23 11:40:08 -0500909 if (length)
910 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 length = security_get_user_sids(sid, user, &sids, &nsids);
Eric Parisb77a4932010-11-23 11:40:08 -0500913 if (length)
914 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 length = sprintf(buf, "%u", nsids) + 1;
917 ptr = buf + length;
918 for (i = 0; i < nsids; i++) {
919 rc = security_sid_to_context(sids[i], &newcon, &len);
920 if (rc) {
921 length = rc;
Eric Parisb77a4932010-11-23 11:40:08 -0500922 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
924 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
925 kfree(newcon);
926 length = -ERANGE;
Eric Parisb77a4932010-11-23 11:40:08 -0500927 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929 memcpy(ptr, newcon, len);
930 kfree(newcon);
931 ptr += len;
932 length += len;
933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934out:
Eric Parisb77a4932010-11-23 11:40:08 -0500935 kfree(sids);
936 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 kfree(con);
938 return length;
939}
940
Eric Paris18729812008-04-17 14:15:45 -0400941static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Eric Parisb77a4932010-11-23 11:40:08 -0500943 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 u32 ssid, tsid, newsid;
945 u16 tclass;
946 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500947 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 u32 len;
949
950 length = task_has_security(current, SECURITY__COMPUTE_MEMBER);
951 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500952 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800955 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500957 goto out;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Eric Parisb77a4932010-11-23 11:40:08 -0500959 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800960 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (!tcon)
962 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 length = -EINVAL;
965 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500966 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800968 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500969 if (length)
970 goto out;
971
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800972 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500973 if (length)
974 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 length = security_member_sid(ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500977 if (length)
978 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500981 if (length)
982 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Eric Parisb77a4932010-11-23 11:40:08 -0500984 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400986 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
987 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -0500988 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990
991 memcpy(buf, newcon, len);
992 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993out:
Eric Parisb77a4932010-11-23 11:40:08 -0500994 kfree(newcon);
995 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 kfree(scon);
997 return length;
998}
999
1000static struct inode *sel_make_inode(struct super_block *sb, int mode)
1001{
1002 struct inode *ret = new_inode(sb);
1003
1004 if (ret) {
1005 ret->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
1007 }
1008 return ret;
1009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1012 size_t count, loff_t *ppos)
1013{
1014 char *page = NULL;
1015 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 ssize_t ret;
1017 int cur_enforcing;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001018 struct inode *inode = filep->f_path.dentry->d_inode;
1019 unsigned index = inode->i_ino & SEL_INO_MASK;
1020 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Ingo Molnarbb003072006-03-22 00:09:14 -08001022 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Eric Parisb77a4932010-11-23 11:40:08 -05001024 ret = -EINVAL;
1025 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
Stephen Smalleyd313f942007-11-26 11:12:53 -05001026 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Eric Parisb77a4932010-11-23 11:40:08 -05001028 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001029 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001030 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Stephen Smalleyd313f942007-11-26 11:12:53 -05001033 cur_enforcing = security_get_bool_value(index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (cur_enforcing < 0) {
1035 ret = cur_enforcing;
1036 goto out;
1037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
Stephen Smalleyd313f942007-11-26 11:12:53 -05001039 bool_pending_values[index]);
Stephen Smalley68bdcf22006-03-22 00:09:15 -08001040 ret = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001042 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001043 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return ret;
1045}
1046
1047static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1048 size_t count, loff_t *ppos)
1049{
1050 char *page = NULL;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001051 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 int new_value;
Stephen Smalleyd313f942007-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
1059 length = task_has_security(current, SECURITY__SETBOOL);
1060 if (length)
1061 goto out;
1062
Eric Parisb77a4932010-11-23 11:40:08 -05001063 length = -EINVAL;
1064 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
Stephen Smalleyd313f942007-11-26 11:12:53 -05001065 goto out;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001066
Eric Parisb77a4932010-11-23 11:40:08 -05001067 length = -ENOMEM;
1068 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 goto out;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001070
Eric Parisb77a4932010-11-23 11:40:08 -05001071 /* No partial writes. */
1072 length = -EINVAL;
1073 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001075
1076 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001077 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001078 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Stephen Smalleyd313f942007-11-26 11:12:53 -05001081 length = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (copy_from_user(page, buf, count))
1083 goto out;
1084
1085 length = -EINVAL;
1086 if (sscanf(page, "%d", &new_value) != 1)
1087 goto out;
1088
1089 if (new_value)
1090 new_value = 1;
1091
Stephen Smalleyd313f942007-11-26 11:12:53 -05001092 bool_pending_values[index] = new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 length = count;
1094
1095out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001096 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001097 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return length;
1099}
1100
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001101static const struct file_operations sel_bool_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001102 .read = sel_read_bool,
1103 .write = sel_write_bool,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001104 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105};
1106
1107static ssize_t sel_commit_bools_write(struct file *filep,
1108 const char __user *buf,
1109 size_t count, loff_t *ppos)
1110{
1111 char *page = NULL;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001112 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 int new_value;
1114
Ingo Molnarbb003072006-03-22 00:09:14 -08001115 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 length = task_has_security(current, SECURITY__SETBOOL);
1118 if (length)
1119 goto out;
1120
Eric Parisb77a4932010-11-23 11:40:08 -05001121 length = -ENOMEM;
1122 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001124
1125 /* No partial writes. */
1126 length = -EINVAL;
1127 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001129
1130 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001131 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001132 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Stephen Smalleyd313f942007-11-26 11:12:53 -05001135 length = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (copy_from_user(page, buf, count))
1137 goto out;
1138
1139 length = -EINVAL;
1140 if (sscanf(page, "%d", &new_value) != 1)
1141 goto out;
1142
Eric Parisb77a4932010-11-23 11:40:08 -05001143 length = 0;
Eric Paris18729812008-04-17 14:15:45 -04001144 if (new_value && bool_pending_values)
Eric Parisb77a4932010-11-23 11:40:08 -05001145 length = security_set_bools(bool_num, bool_pending_values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Eric Parisb77a4932010-11-23 11:40:08 -05001147 if (!length)
1148 length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001151 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001152 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return length;
1154}
1155
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001156static const struct file_operations sel_commit_bools_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001157 .write = sel_commit_bools_write,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001158 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159};
1160
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001161static void sel_remove_entries(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Stephen Smalley0955dc02007-11-21 09:01:36 -05001163 struct list_head *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001165 spin_lock(&de->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 node = de->d_subdirs.next;
1167 while (node != &de->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -08001168 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001169
1170 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 list_del_init(node);
1172
1173 if (d->d_inode) {
Nick Piggindc0474b2011-01-07 17:49:43 +11001174 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001175 spin_unlock(&de->d_lock);
1176 spin_unlock(&d->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 d_delete(d);
1178 simple_unlink(de->d_inode, d);
1179 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001180 spin_lock(&de->d_lock);
1181 } else
1182 spin_unlock(&d->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 node = de->d_subdirs.next;
1184 }
1185
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001186 spin_unlock(&de->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
1189#define BOOL_DIR_NAME "booleans"
1190
1191static int sel_make_bools(void)
1192{
Eric Parisb77a4932010-11-23 11:40:08 -05001193 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 ssize_t len;
1195 struct dentry *dentry = NULL;
1196 struct dentry *dir = bool_dir;
1197 struct inode *inode = NULL;
1198 struct inode_security_struct *isec;
1199 char **names = NULL, *page;
1200 int num;
1201 int *values = NULL;
1202 u32 sid;
1203
1204 /* remove any existing files */
Xiaotian Feng8007f102010-02-09 08:22:24 +11001205 for (i = 0; i < bool_num; i++)
1206 kfree(bool_pending_names[i]);
Stephen Smalleyd313f942007-11-26 11:12:53 -05001207 kfree(bool_pending_names);
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001208 kfree(bool_pending_values);
Stephen Smalleyd313f942007-11-26 11:12:53 -05001209 bool_pending_names = NULL;
Davi Arnaut20c19e42005-10-23 12:57:16 -07001210 bool_pending_values = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001212 sel_remove_entries(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Eric Parisb77a4932010-11-23 11:40:08 -05001214 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001215 page = (char *)get_zeroed_page(GFP_KERNEL);
1216 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -05001217 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 ret = security_get_bools(&num, &names, &values);
Eric Parisb77a4932010-11-23 11:40:08 -05001220 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 goto out;
1222
1223 for (i = 0; i < num; i++) {
Eric Parisb77a4932010-11-23 11:40:08 -05001224 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 dentry = d_alloc_name(dir, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001226 if (!dentry)
1227 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Eric Parisb77a4932010-11-23 11:40:08 -05001229 ret = -ENOMEM;
1230 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
1231 if (!inode)
1232 goto out;
1233
1234 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001236 if (len < 0)
1237 goto out;
1238
1239 ret = -ENAMETOOLONG;
1240 if (len >= PAGE_SIZE)
1241 goto out;
1242
Eric Paris18729812008-04-17 14:15:45 -04001243 isec = (struct inode_security_struct *)inode->i_security;
1244 ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid);
1245 if (ret)
Eric Parisb77a4932010-11-23 11:40:08 -05001246 goto out;
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 isec->sid = sid;
1249 isec->initialized = 1;
1250 inode->i_fop = &sel_bool_ops;
James Carterbce34bc2007-04-04 16:18:50 -04001251 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 d_add(dentry, inode);
1253 }
1254 bool_num = num;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001255 bool_pending_names = names;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 bool_pending_values = values;
Eric Parisb77a4932010-11-23 11:40:08 -05001257
1258 free_page((unsigned long)page);
1259 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260out:
1261 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (names) {
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001264 for (i = 0; i < num; i++)
1265 kfree(names[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 kfree(names);
1267 }
Davi Arnaut20c19e42005-10-23 12:57:16 -07001268 kfree(values);
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001269 sel_remove_entries(dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001270
1271 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
1274#define NULL_FILE_NAME "null"
1275
Eric Paris18729812008-04-17 14:15:45 -04001276struct dentry *selinux_null;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1279 size_t count, loff_t *ppos)
1280{
1281 char tmpbuf[TMPBUFLEN];
1282 ssize_t length;
1283
1284 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1285 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1286}
1287
Eric Paris18729812008-04-17 14:15:45 -04001288static ssize_t sel_write_avc_cache_threshold(struct file *file,
1289 const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 size_t count, loff_t *ppos)
1291
1292{
Eric Parisb77a4932010-11-23 11:40:08 -05001293 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 ssize_t ret;
1295 int new_value;
1296
Eric Parisb77a4932010-11-23 11:40:08 -05001297 ret = task_has_security(current, SECURITY__SETSECPARAM);
1298 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Eric Parisb77a4932010-11-23 11:40:08 -05001301 ret = -ENOMEM;
1302 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Eric Parisb77a4932010-11-23 11:40:08 -05001305 /* No partial writes. */
1306 ret = -EINVAL;
1307 if (*ppos != 0)
1308 goto out;
1309
1310 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001311 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001312 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Eric Parisb77a4932010-11-23 11:40:08 -05001315 ret = -EFAULT;
1316 if (copy_from_user(page, buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Eric Parisb77a4932010-11-23 11:40:08 -05001319 ret = -EINVAL;
1320 if (sscanf(page, "%u", &new_value) != 1)
1321 goto out;
1322
1323 avc_cache_threshold = new_value;
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326out:
Eric Parisb77a4932010-11-23 11:40:08 -05001327 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return ret;
1329}
1330
1331static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1332 size_t count, loff_t *ppos)
1333{
1334 char *page;
Eric Parisb77a4932010-11-23 11:40:08 -05001335 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001338 if (!page)
1339 return -ENOMEM;
1340
1341 length = avc_get_hash_stats(page);
1342 if (length >= 0)
1343 length = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001345
1346 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001349static const struct file_operations sel_avc_cache_threshold_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 .read = sel_read_avc_cache_threshold,
1351 .write = sel_write_avc_cache_threshold,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001352 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353};
1354
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001355static const struct file_operations sel_avc_hash_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 .read = sel_read_avc_hash_stats,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001357 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358};
1359
1360#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1361static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1362{
1363 int cpu;
1364
Rusty Russell4f4b6c12009-01-01 10:12:15 +10301365 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (!cpu_possible(cpu))
1367 continue;
1368 *idx = cpu + 1;
1369 return &per_cpu(avc_cache_stats, cpu);
1370 }
1371 return NULL;
1372}
1373
1374static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1375{
1376 loff_t n = *pos - 1;
1377
1378 if (*pos == 0)
1379 return SEQ_START_TOKEN;
1380
1381 return sel_avc_get_stat_idx(&n);
1382}
1383
1384static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1385{
1386 return sel_avc_get_stat_idx(pos);
1387}
1388
1389static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1390{
1391 struct avc_cache_stats *st = v;
1392
1393 if (v == SEQ_START_TOKEN)
1394 seq_printf(seq, "lookups hits misses allocations reclaims "
1395 "frees\n");
1396 else
1397 seq_printf(seq, "%u %u %u %u %u %u\n", st->lookups,
1398 st->hits, st->misses, st->allocations,
1399 st->reclaims, st->frees);
1400 return 0;
1401}
1402
1403static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1404{ }
1405
Jan Engelhardt1996a102008-01-23 00:02:58 +01001406static const struct seq_operations sel_avc_cache_stats_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 .start = sel_avc_stats_seq_start,
1408 .next = sel_avc_stats_seq_next,
1409 .show = sel_avc_stats_seq_show,
1410 .stop = sel_avc_stats_seq_stop,
1411};
1412
1413static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1414{
1415 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1416}
1417
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001418static const struct file_operations sel_avc_cache_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 .open = sel_open_avc_cache_stats,
1420 .read = seq_read,
1421 .llseek = seq_lseek,
1422 .release = seq_release,
1423};
1424#endif
1425
1426static int sel_make_avc_files(struct dentry *dir)
1427{
Eric Parisb77a4932010-11-23 11:40:08 -05001428 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 static struct tree_descr files[] = {
1430 { "cache_threshold",
1431 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1432 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1433#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1434 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1435#endif
1436 };
1437
Nicolas Kaiser6e20a642006-01-06 00:11:22 -08001438 for (i = 0; i < ARRAY_SIZE(files); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 struct inode *inode;
1440 struct dentry *dentry;
1441
1442 dentry = d_alloc_name(dir, files[i].name);
Eric Parisb77a4932010-11-23 11:40:08 -05001443 if (!dentry)
1444 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
Eric Parisb77a4932010-11-23 11:40:08 -05001447 if (!inode)
1448 return -ENOMEM;
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 inode->i_fop = files[i].ops;
James Carter6174eaf2007-04-04 16:18:39 -04001451 inode->i_ino = ++sel_last_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 d_add(dentry, inode);
1453 }
Eric Parisb77a4932010-11-23 11:40:08 -05001454
1455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
Eric Paris18729812008-04-17 14:15:45 -04001458static ssize_t sel_read_initcon(struct file *file, char __user *buf,
James Carterf0ee2e42007-04-04 10:11:29 -04001459 size_t count, loff_t *ppos)
1460{
1461 struct inode *inode;
1462 char *con;
1463 u32 sid, len;
1464 ssize_t ret;
1465
1466 inode = file->f_path.dentry->d_inode;
1467 sid = inode->i_ino&SEL_INO_MASK;
1468 ret = security_sid_to_context(sid, &con, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001469 if (ret)
James Carterf0ee2e42007-04-04 10:11:29 -04001470 return ret;
1471
1472 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1473 kfree(con);
1474 return ret;
1475}
1476
1477static const struct file_operations sel_initcon_ops = {
1478 .read = sel_read_initcon,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001479 .llseek = generic_file_llseek,
James Carterf0ee2e42007-04-04 10:11:29 -04001480};
1481
1482static int sel_make_initcon_files(struct dentry *dir)
1483{
Eric Parisb77a4932010-11-23 11:40:08 -05001484 int i;
James Carterf0ee2e42007-04-04 10:11:29 -04001485
1486 for (i = 1; i <= SECINITSID_NUM; i++) {
1487 struct inode *inode;
1488 struct dentry *dentry;
1489 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
Eric Parisb77a4932010-11-23 11:40:08 -05001490 if (!dentry)
1491 return -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001492
1493 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001494 if (!inode)
1495 return -ENOMEM;
1496
James Carterf0ee2e42007-04-04 10:11:29 -04001497 inode->i_fop = &sel_initcon_ops;
1498 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1499 d_add(dentry, inode);
1500 }
Eric Parisb77a4932010-11-23 11:40:08 -05001501
1502 return 0;
James Carterf0ee2e42007-04-04 10:11:29 -04001503}
1504
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001505static inline unsigned int sel_div(unsigned long a, unsigned long b)
1506{
1507 return a / b - (a % b < 0);
1508}
1509
1510static inline unsigned long sel_class_to_ino(u16 class)
1511{
1512 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1513}
1514
1515static inline u16 sel_ino_to_class(unsigned long ino)
1516{
1517 return sel_div(ino & SEL_INO_MASK, SEL_VEC_MAX + 1);
1518}
1519
1520static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1521{
1522 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1523}
1524
1525static inline u32 sel_ino_to_perm(unsigned long ino)
1526{
1527 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1528}
1529
Eric Paris18729812008-04-17 14:15:45 -04001530static ssize_t sel_read_class(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001531 size_t count, loff_t *ppos)
1532{
1533 ssize_t rc, len;
1534 char *page;
1535 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1536
1537 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001538 if (!page)
1539 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001540
1541 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_class(ino));
1542 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1543 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001544
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001545 return rc;
1546}
1547
1548static const struct file_operations sel_class_ops = {
1549 .read = sel_read_class,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001550 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001551};
1552
Eric Paris18729812008-04-17 14:15:45 -04001553static ssize_t sel_read_perm(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001554 size_t count, loff_t *ppos)
1555{
1556 ssize_t rc, len;
1557 char *page;
1558 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1559
1560 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001561 if (!page)
1562 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001563
Eric Paris18729812008-04-17 14:15:45 -04001564 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_perm(ino));
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001565 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1566 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001567
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001568 return rc;
1569}
1570
1571static const struct file_operations sel_perm_ops = {
1572 .read = sel_read_perm,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001573 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001574};
1575
Paul Moore3bb56b22008-01-29 08:38:19 -05001576static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1577 size_t count, loff_t *ppos)
1578{
1579 int value;
1580 char tmpbuf[TMPBUFLEN];
1581 ssize_t length;
1582 unsigned long i_ino = file->f_path.dentry->d_inode->i_ino;
1583
1584 value = security_policycap_supported(i_ino & SEL_INO_MASK);
1585 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1586
1587 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1588}
1589
1590static const struct file_operations sel_policycap_ops = {
1591 .read = sel_read_policycap,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001592 .llseek = generic_file_llseek,
Paul Moore3bb56b22008-01-29 08:38:19 -05001593};
1594
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001595static int sel_make_perm_files(char *objclass, int classvalue,
1596 struct dentry *dir)
1597{
Eric Parisb77a4932010-11-23 11:40:08 -05001598 int i, rc, nperms;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001599 char **perms;
1600
1601 rc = security_get_permissions(objclass, &perms, &nperms);
1602 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001603 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001604
1605 for (i = 0; i < nperms; i++) {
1606 struct inode *inode;
1607 struct dentry *dentry;
1608
Eric Parisb77a4932010-11-23 11:40:08 -05001609 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001610 dentry = d_alloc_name(dir, perms[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001611 if (!dentry)
1612 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001613
Eric Parisb77a4932010-11-23 11:40:08 -05001614 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001615 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001616 if (!inode)
1617 goto out;
1618
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001619 inode->i_fop = &sel_perm_ops;
1620 /* i+1 since perm values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001621 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001622 d_add(dentry, inode);
1623 }
Eric Parisb77a4932010-11-23 11:40:08 -05001624 rc = 0;
1625out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001626 for (i = 0; i < nperms; i++)
1627 kfree(perms[i]);
1628 kfree(perms);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001629 return rc;
1630}
1631
1632static int sel_make_class_dir_entries(char *classname, int index,
1633 struct dentry *dir)
1634{
1635 struct dentry *dentry = NULL;
1636 struct inode *inode = NULL;
1637 int rc;
1638
1639 dentry = d_alloc_name(dir, "index");
Eric Parisb77a4932010-11-23 11:40:08 -05001640 if (!dentry)
1641 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001642
1643 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001644 if (!inode)
1645 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001646
1647 inode->i_fop = &sel_class_ops;
1648 inode->i_ino = sel_class_to_ino(index);
1649 d_add(dentry, inode);
1650
1651 dentry = d_alloc_name(dir, "perms");
Eric Parisb77a4932010-11-23 11:40:08 -05001652 if (!dentry)
1653 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001654
1655 rc = sel_make_dir(dir->d_inode, dentry, &last_class_ino);
1656 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001657 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001658
1659 rc = sel_make_perm_files(classname, index, dentry);
1660
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001661 return rc;
1662}
1663
1664static void sel_remove_classes(void)
1665{
1666 struct list_head *class_node;
1667
1668 list_for_each(class_node, &class_dir->d_subdirs) {
1669 struct dentry *class_subdir = list_entry(class_node,
1670 struct dentry, d_u.d_child);
1671 struct list_head *class_subdir_node;
1672
1673 list_for_each(class_subdir_node, &class_subdir->d_subdirs) {
1674 struct dentry *d = list_entry(class_subdir_node,
1675 struct dentry, d_u.d_child);
1676
1677 if (d->d_inode)
1678 if (d->d_inode->i_mode & S_IFDIR)
1679 sel_remove_entries(d);
1680 }
1681
1682 sel_remove_entries(class_subdir);
1683 }
1684
1685 sel_remove_entries(class_dir);
1686}
1687
1688static int sel_make_classes(void)
1689{
Eric Parisb77a4932010-11-23 11:40:08 -05001690 int rc, nclasses, i;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001691 char **classes;
1692
1693 /* delete any existing entries */
1694 sel_remove_classes();
1695
1696 rc = security_get_classes(&classes, &nclasses);
Eric Parisb77a4932010-11-23 11:40:08 -05001697 if (rc)
1698 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001699
1700 /* +2 since classes are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001701 last_class_ino = sel_class_to_ino(nclasses + 2);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001702
1703 for (i = 0; i < nclasses; i++) {
1704 struct dentry *class_name_dir;
1705
Eric Parisb77a4932010-11-23 11:40:08 -05001706 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001707 class_name_dir = d_alloc_name(class_dir, classes[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001708 if (!class_name_dir)
1709 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001710
1711 rc = sel_make_dir(class_dir->d_inode, class_name_dir,
1712 &last_class_ino);
1713 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001714 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001715
1716 /* i+1 since class values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001717 rc = sel_make_class_dir_entries(classes[i], i + 1,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001718 class_name_dir);
1719 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001720 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001721 }
Eric Parisb77a4932010-11-23 11:40:08 -05001722 rc = 0;
1723out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001724 for (i = 0; i < nclasses; i++)
1725 kfree(classes[i]);
1726 kfree(classes);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001727 return rc;
1728}
1729
Paul Moore3bb56b22008-01-29 08:38:19 -05001730static int sel_make_policycap(void)
1731{
1732 unsigned int iter;
1733 struct dentry *dentry = NULL;
1734 struct inode *inode = NULL;
1735
1736 sel_remove_entries(policycap_dir);
1737
1738 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
1739 if (iter < ARRAY_SIZE(policycap_names))
1740 dentry = d_alloc_name(policycap_dir,
1741 policycap_names[iter]);
1742 else
1743 dentry = d_alloc_name(policycap_dir, "unknown");
1744
1745 if (dentry == NULL)
1746 return -ENOMEM;
1747
1748 inode = sel_make_inode(policycap_dir->d_sb, S_IFREG | S_IRUGO);
1749 if (inode == NULL)
1750 return -ENOMEM;
1751
1752 inode->i_fop = &sel_policycap_ops;
1753 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1754 d_add(dentry, inode);
1755 }
1756
1757 return 0;
1758}
1759
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001760static int sel_make_dir(struct inode *dir, struct dentry *dentry,
1761 unsigned long *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 struct inode *inode;
1764
James Morrisedb20fb2006-03-22 00:09:20 -08001765 inode = sel_make_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001766 if (!inode)
1767 return -ENOMEM;
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 inode->i_op = &simple_dir_inode_operations;
1770 inode->i_fop = &simple_dir_operations;
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001771 inode->i_ino = ++(*ino);
James Morris40e906f2006-03-22 00:09:16 -08001772 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -07001773 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 d_add(dentry, inode);
James Morrisedb20fb2006-03-22 00:09:20 -08001775 /* bump link count on parent directory, too */
Dave Hansend8c76e62006-09-30 23:29:04 -07001776 inc_nlink(dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001777
1778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
Eric Paris18729812008-04-17 14:15:45 -04001781static int sel_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
1783 int ret;
1784 struct dentry *dentry;
James Morrisedb20fb2006-03-22 00:09:20 -08001785 struct inode *inode, *root_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 struct inode_security_struct *isec;
1787
1788 static struct tree_descr selinux_files[] = {
1789 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1790 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
Stephen Smalleyce9982d2005-11-08 21:34:33 -08001791 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1793 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1794 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1795 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1796 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1797 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1798 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1799 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1800 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1801 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
Eric Paris3f120702007-09-21 14:37:10 -04001802 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1803 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
KaiGai Kohei11904162010-09-14 18:28:39 +09001804 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
Eric Pariscee74f42010-10-13 17:50:25 -04001805 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 /* last one */ {""}
1807 };
1808 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1809 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001810 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
James Morrisedb20fb2006-03-22 00:09:20 -08001812 root_inode = sb->s_root->d_inode;
1813
Eric Parisb77a4932010-11-23 11:40:08 -05001814 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 dentry = d_alloc_name(sb->s_root, BOOL_DIR_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05001816 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001817 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001819 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
James Morriscde174a2006-03-22 00:09:17 -08001820 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001821 goto err;
James Morriscde174a2006-03-22 00:09:17 -08001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 bool_dir = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Eric Parisb77a4932010-11-23 11:40:08 -05001825 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05001827 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001828 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Eric Parisb77a4932010-11-23 11:40:08 -05001830 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001832 if (!inode)
James Morris161ce452006-03-22 00:09:17 -08001833 goto err;
Eric Parisb77a4932010-11-23 11:40:08 -05001834
James Carter6174eaf2007-04-04 16:18:39 -04001835 inode->i_ino = ++sel_last_ino;
Eric Paris18729812008-04-17 14:15:45 -04001836 isec = (struct inode_security_struct *)inode->i_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 isec->sid = SECINITSID_DEVNULL;
1838 isec->sclass = SECCLASS_CHR_FILE;
1839 isec->initialized = 1;
1840
1841 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1842 d_add(dentry, inode);
1843 selinux_null = dentry;
1844
Eric Parisb77a4932010-11-23 11:40:08 -05001845 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 dentry = d_alloc_name(sb->s_root, "avc");
Eric Parisb77a4932010-11-23 11:40:08 -05001847 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001848 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001850 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001852 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 ret = sel_make_avc_files(dentry);
1855 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001856 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04001857
Eric Parisb77a4932010-11-23 11:40:08 -05001858 ret = -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001859 dentry = d_alloc_name(sb->s_root, "initial_contexts");
Eric Parisb77a4932010-11-23 11:40:08 -05001860 if (!dentry)
James Carterf0ee2e42007-04-04 10:11:29 -04001861 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04001862
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001863 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
James Carterf0ee2e42007-04-04 10:11:29 -04001864 if (ret)
1865 goto err;
1866
1867 ret = sel_make_initcon_files(dentry);
1868 if (ret)
1869 goto err;
1870
Eric Parisb77a4932010-11-23 11:40:08 -05001871 ret = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001872 dentry = d_alloc_name(sb->s_root, "class");
Eric Parisb77a4932010-11-23 11:40:08 -05001873 if (!dentry)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001874 goto err;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001875
1876 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1877 if (ret)
1878 goto err;
1879
1880 class_dir = dentry;
1881
Eric Parisb77a4932010-11-23 11:40:08 -05001882 ret = -ENOMEM;
Paul Moore3bb56b22008-01-29 08:38:19 -05001883 dentry = d_alloc_name(sb->s_root, "policy_capabilities");
Eric Parisb77a4932010-11-23 11:40:08 -05001884 if (!dentry)
Paul Moore3bb56b22008-01-29 08:38:19 -05001885 goto err;
Paul Moore3bb56b22008-01-29 08:38:19 -05001886
1887 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1888 if (ret)
1889 goto err;
1890
1891 policycap_dir = dentry;
1892
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;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001913static struct kobject *selinuxfs_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915static int __init init_sel_fs(void)
1916{
1917 int err;
1918
1919 if (!selinux_enabled)
1920 return 0;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001921
1922 selinuxfs_kobj = kobject_create_and_add("selinux", fs_kobj);
1923 if (!selinuxfs_kobj)
1924 return -ENOMEM;
1925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 err = register_filesystem(&sel_fs_type);
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001927 if (err) {
1928 kobject_put(selinuxfs_kobj);
Eric Parisb77a4932010-11-23 11:40:08 -05001929 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001930 }
Eric Parisb77a4932010-11-23 11:40:08 -05001931
1932 selinuxfs_mount = kern_mount(&sel_fs_type);
1933 if (IS_ERR(selinuxfs_mount)) {
1934 printk(KERN_ERR "selinuxfs: could not mount!\n");
1935 err = PTR_ERR(selinuxfs_mount);
1936 selinuxfs_mount = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
Eric Parisb77a4932010-11-23 11:40:08 -05001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return err;
1940}
1941
1942__initcall(init_sel_fs);
1943
1944#ifdef CONFIG_SECURITY_SELINUX_DISABLE
1945void exit_sel_fs(void)
1946{
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001947 kobject_put(selinuxfs_kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 unregister_filesystem(&sel_fs_type);
1949}
1950#endif