ima: sparse fix: include linux/ima.h in ima_main.c
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / security / selinux / selinuxfs.c
CommitLineData
1da177e4
LT
1/* Updated: Karl MacMillan <kmacmillan@tresys.com>
2 *
1872981b 3 * Added conditional policy language extensions
1da177e4 4 *
82c21bfa 5 * Updated: Hewlett-Packard <paul@paul-moore.com>
3bb56b25 6 *
1872981b 7 * Added support for the policy capability bitmap
3bb56b25
PM
8 *
9 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
1da177e4
LT
10 * 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
1872981b 13 * it under the terms of the GNU General Public License as published by
1da177e4
LT
14 * the Free Software Foundation, version 2.
15 */
16
1da177e4
LT
17#include <linux/kernel.h>
18#include <linux/pagemap.h>
19#include <linux/slab.h>
20#include <linux/vmalloc.h>
21#include <linux/fs.h>
bb003079 22#include <linux/mutex.h>
1da177e4
LT
23#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>
af601e46 29#include <linux/audit.h>
f5269710 30#include <linux/uaccess.h>
7a627e3b 31#include <linux/kobject.h>
0f7e4c33 32#include <linux/ctype.h>
1da177e4
LT
33
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
3bb56b25
PM
44/* Policy capability filenames */
45static char *policycap_names[] = {
b0c636b9
EP
46 "network_peer_controls",
47 "open_perms"
3bb56b25
PM
48};
49
1da177e4
LT
50unsigned int selinux_checkreqprot = CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
51
52static int __init checkreqprot_setup(char *str)
53{
f5269710
EP
54 unsigned long checkreqprot;
55 if (!strict_strtoul(str, 0, &checkreqprot))
56 selinux_checkreqprot = checkreqprot ? 1 : 0;
1da177e4
LT
57 return 1;
58}
59__setup("checkreqprot=", checkreqprot_setup);
60
bb003079 61static DEFINE_MUTEX(sel_mutex);
1da177e4
LT
62
63/* global data for booleans */
1872981b
EP
64static struct dentry *bool_dir;
65static int bool_num;
d313f948 66static char **bool_pending_names;
1872981b 67static int *bool_pending_values;
1da177e4 68
e47c8fc5 69/* global data for classes */
1872981b 70static struct dentry *class_dir;
e47c8fc5
CP
71static unsigned long last_class_ino;
72
cee74f47
EP
73static char policy_opened;
74
3bb56b25 75/* global data for policy capabilities */
1872981b 76static struct dentry *policycap_dir;
3bb56b25 77
1da177e4
LT
78extern 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{
c69e8d9c
DH
84 const struct task_security_struct *tsec;
85 u32 sid = 0;
86
87 rcu_read_lock();
88 tsec = __task_cred(tsk)->security;
89 if (tsec)
90 sid = tsec->sid;
91 rcu_read_unlock();
1da177e4
LT
92 if (!tsec)
93 return -EACCES;
94
c69e8d9c 95 return avc_has_perm(sid, SECINITSID_SECURITY,
1da177e4
LT
96 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 */
1da177e4
LT
112 SEL_MEMBER, /* compute polyinstantiation membership decision */
113 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
4e5ab4cb 114 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
3f12070e
EP
115 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
116 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
11904167 117 SEL_STATUS, /* export current status using mmap() */
cee74f47 118 SEL_POLICY, /* allow userspace to read the in kernel policy */
6174eafc 119 SEL_INO_NEXT, /* The next inode number to use */
1da177e4
LT
120};
121
6174eafc
JC
122static unsigned long sel_last_ino = SEL_INO_NEXT - 1;
123
3bb56b25
PM
124#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
f0ee2e46 129
1da177e4
LT
130#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
1872981b 142static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
1da177e4
LT
143 size_t count, loff_t *ppos)
144
145{
b77a493b 146 char *page = NULL;
1da177e4
LT
147 ssize_t length;
148 int new_value;
149
b77a493b 150 length = -ENOMEM;
bfd51626 151 if (count >= PAGE_SIZE)
b77a493b
EP
152 goto out;
153
154 /* No partial writes. */
155 length = EINVAL;
156 if (*ppos != 0)
157 goto out;
158
159 length = -ENOMEM;
1872981b 160 page = (char *)get_zeroed_page(GFP_KERNEL);
1da177e4 161 if (!page)
b77a493b
EP
162 goto out;
163
1da177e4
LT
164 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;
af601e46 176 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
4746ec5b
EP
177 "enforcing=%d old_enforcing=%d auid=%u ses=%u",
178 new_value, selinux_enforcing,
179 audit_get_loginuid(current),
180 audit_get_sessionid(current));
1da177e4
LT
181 selinux_enforcing = new_value;
182 if (selinux_enforcing)
183 avc_ss_reset(0);
184 selnl_notify_setenforce(selinux_enforcing);
11904167 185 selinux_status_update_setenforce(selinux_enforcing);
1da177e4
LT
186 }
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
9c2e08c5 196static const struct file_operations sel_enforce_ops = {
1da177e4
LT
197 .read = sel_read_enforce,
198 .write = sel_write_enforce,
57a62c23 199 .llseek = generic_file_llseek,
1da177e4
LT
200};
201
3f12070e
EP
202static 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,
57a62c23 217 .llseek = generic_file_llseek,
3f12070e
EP
218};
219
11904167
KK
220static 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
1da177e4 273#ifdef CONFIG_SECURITY_SELINUX_DISABLE
1872981b 274static ssize_t sel_write_disable(struct file *file, const char __user *buf,
1da177e4
LT
275 size_t count, loff_t *ppos)
276
277{
b77a493b 278 char *page = NULL;
1da177e4
LT
279 ssize_t length;
280 int new_value;
1da177e4 281
b77a493b 282 length = -ENOMEM;
bfd51626 283 if (count >= PAGE_SIZE)
6eab04a8 284 goto out;
b77a493b
EP
285
286 /* No partial writes. */
287 length = -EINVAL;
288 if (*ppos != 0)
289 goto out;
290
291 length = -ENOMEM;
1872981b 292 page = (char *)get_zeroed_page(GFP_KERNEL);
1da177e4 293 if (!page)
b77a493b
EP
294 goto out;
295
1da177e4
LT
296 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();
b77a493b 306 if (length)
1da177e4 307 goto out;
af601e46 308 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
4746ec5b
EP
309 "selinux=0 auid=%u ses=%u",
310 audit_get_loginuid(current),
311 audit_get_sessionid(current));
1da177e4
LT
312 }
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
9c2e08c5 323static const struct file_operations sel_disable_ops = {
1da177e4 324 .write = sel_write_disable,
57a62c23 325 .llseek = generic_file_llseek,
1da177e4
LT
326};
327
328static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
1872981b 329 size_t count, loff_t *ppos)
1da177e4
LT
330{
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
9c2e08c5 338static const struct file_operations sel_policyvers_ops = {
1da177e4 339 .read = sel_read_policyvers,
57a62c23 340 .llseek = generic_file_llseek,
1da177e4
LT
341};
342
343/* declaration for sel_write_load */
344static int sel_make_bools(void);
e47c8fc5 345static int sel_make_classes(void);
3bb56b25 346static int sel_make_policycap(void);
e47c8fc5
CP
347
348/* declaration for sel_make_class_dirs */
349static int sel_make_dir(struct inode *dir, struct dentry *dentry,
350 unsigned long *ino);
1da177e4
LT
351
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
0719aaf5
GT
358 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
359 security_mls_enabled());
1da177e4
LT
360 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
361}
362
9c2e08c5 363static const struct file_operations sel_mls_ops = {
1da177e4 364 .read = sel_read_mls,
57a62c23 365 .llseek = generic_file_llseek,
1da177e4
LT
366};
367
cee74f47
EP
368struct 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
845ca30f
EP
453static 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
cee74f47
EP
496static const struct file_operations sel_policy_ops = {
497 .open = sel_open_policy,
498 .read = sel_read_policy,
845ca30f 499 .mmap = sel_mmap_policy,
cee74f47
EP
500 .release = sel_release_policy,
501};
502
1872981b 503static ssize_t sel_write_load(struct file *file, const char __user *buf,
1da177e4
LT
504 size_t count, loff_t *ppos)
505
506{
1da177e4
LT
507 ssize_t length;
508 void *data = NULL;
509
bb003079 510 mutex_lock(&sel_mutex);
1da177e4
LT
511
512 length = task_has_security(current, SECURITY__LOAD_POLICY);
513 if (length)
514 goto out;
515
b77a493b
EP
516 /* No partial writes. */
517 length = -EINVAL;
518 if (*ppos != 0)
1da177e4 519 goto out;
1da177e4 520
b77a493b
EP
521 length = -EFBIG;
522 if (count > 64 * 1024 * 1024)
523 goto out;
524
525 length = -ENOMEM;
526 data = vmalloc(count);
527 if (!data)
1da177e4 528 goto out;
1da177e4
LT
529
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
b77a493b
EP
538 length = sel_make_bools();
539 if (length)
e47c8fc5 540 goto out1;
e47c8fc5 541
b77a493b
EP
542 length = sel_make_classes();
543 if (length)
3bb56b25 544 goto out1;
3bb56b25 545
b77a493b
EP
546 length = sel_make_policycap();
547 if (length)
548 goto out1;
549
550 length = count;
e47c8fc5
CP
551
552out1:
af601e46 553 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
4746ec5b
EP
554 "policy loaded auid=%u ses=%u",
555 audit_get_loginuid(current),
556 audit_get_sessionid(current));
1da177e4 557out:
bb003079 558 mutex_unlock(&sel_mutex);
1da177e4
LT
559 vfree(data);
560 return length;
561}
562
9c2e08c5 563static const struct file_operations sel_load_ops = {
1da177e4 564 .write = sel_write_load,
57a62c23 565 .llseek = generic_file_llseek,
1da177e4
LT
566};
567
1872981b 568static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
1da177e4 569{
b77a493b 570 char *canon = NULL;
ce9982d0 571 u32 sid, len;
1da177e4
LT
572 ssize_t length;
573
574 length = task_has_security(current, SECURITY__CHECK_CONTEXT);
575 if (length)
b77a493b 576 goto out;
1da177e4 577
ce9982d0 578 length = security_context_to_sid(buf, size, &sid);
b77a493b
EP
579 if (length)
580 goto out;
1da177e4 581
ce9982d0 582 length = security_sid_to_context(sid, &canon, &len);
b77a493b
EP
583 if (length)
584 goto out;
ce9982d0 585
b77a493b 586 length = -ERANGE;
ce9982d0 587 if (len > SIMPLE_TRANSACTION_LIMIT) {
744ba35e
EP
588 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
589 "payload max\n", __func__, len);
1da177e4 590 goto out;
ce9982d0 591 }
1da177e4 592
ce9982d0
SS
593 memcpy(buf, canon, len);
594 length = len;
1da177e4 595out:
ce9982d0 596 kfree(canon);
1da177e4
LT
597 return length;
598}
599
1da177e4
LT
600static 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
1872981b 610static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
1da177e4
LT
611 size_t count, loff_t *ppos)
612{
b77a493b 613 char *page = NULL;
1da177e4
LT
614 ssize_t length;
615 unsigned int new_value;
616
617 length = task_has_security(current, SECURITY__SETCHECKREQPROT);
618 if (length)
b77a493b 619 goto out;
1da177e4 620
b77a493b 621 length = -ENOMEM;
bfd51626 622 if (count >= PAGE_SIZE)
b77a493b
EP
623 goto out;
624
625 /* No partial writes. */
626 length = -EINVAL;
627 if (*ppos != 0)
628 goto out;
629
630 length = -ENOMEM;
1872981b 631 page = (char *)get_zeroed_page(GFP_KERNEL);
1da177e4 632 if (!page)
b77a493b
EP
633 goto out;
634
1da177e4
LT
635 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}
9c2e08c5 649static const struct file_operations sel_checkreqprot_ops = {
1da177e4
LT
650 .read = sel_read_checkreqprot,
651 .write = sel_write_checkreqprot,
57a62c23 652 .llseek = generic_file_llseek,
1da177e4
LT
653};
654
655/*
656 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
657 */
1872981b
EP
658static 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);
1da177e4
LT
663
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,
ce9982d0 670 [SEL_CONTEXT] = sel_write_context,
1da177e4
LT
671};
672
673static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
674{
1872981b 675 ino_t ino = file->f_path.dentry->d_inode->i_ino;
1da177e4
LT
676 char *data;
677 ssize_t rv;
678
6e20a64a 679 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
1da177e4
LT
680 return -EINVAL;
681
682 data = simple_transaction_get(file, buf, size);
683 if (IS_ERR(data))
684 return PTR_ERR(data);
685
1872981b
EP
686 rv = write_op[ino](file, data, size);
687 if (rv > 0) {
1da177e4
LT
688 simple_transaction_set(file, rv);
689 rv = size;
690 }
691 return rv;
692}
693
9c2e08c5 694static const struct file_operations transaction_ops = {
1da177e4
LT
695 .write = selinux_transaction_write,
696 .read = simple_transaction_read,
697 .release = simple_transaction_release,
57a62c23 698 .llseek = generic_file_llseek,
1da177e4
LT
699};
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
1872981b 707static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
1da177e4 708{
b77a493b 709 char *scon = NULL, *tcon = NULL;
1da177e4
LT
710 u32 ssid, tsid;
711 u16 tclass;
1da177e4
LT
712 struct av_decision avd;
713 ssize_t length;
714
715 length = task_has_security(current, SECURITY__COMPUTE_AV);
716 if (length)
b77a493b 717 goto out;
1da177e4
LT
718
719 length = -ENOMEM;
c1a7368a 720 scon = kzalloc(size + 1, GFP_KERNEL);
1da177e4 721 if (!scon)
b77a493b 722 goto out;
1da177e4 723
b77a493b 724 length = -ENOMEM;
c1a7368a 725 tcon = kzalloc(size + 1, GFP_KERNEL);
1da177e4
LT
726 if (!tcon)
727 goto out;
1da177e4
LT
728
729 length = -EINVAL;
19439d05 730 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
b77a493b 731 goto out;
1da177e4 732
c1a7368a 733 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
b77a493b
EP
734 if (length)
735 goto out;
736
c1a7368a 737 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
b77a493b
EP
738 if (length)
739 goto out;
1da177e4 740
19439d05 741 security_compute_av_user(ssid, tsid, tclass, &avd);
1da177e4
LT
742
743 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
8a6f83af 744 "%x %x %x %x %u %x",
f1c6381a 745 avd.allowed, 0xffffffff,
1da177e4 746 avd.auditallow, avd.auditdeny,
8a6f83af 747 avd.seqno, avd.flags);
1da177e4 748out:
b77a493b 749 kfree(tcon);
1da177e4
LT
750 kfree(scon);
751 return length;
752}
753
0f7e4c33
KK
754static inline int hexcode_to_int(int code) {
755 if (code == '\0' || !isxdigit(code))
756 return -1;
757 if (isdigit(code))
758 return code - '0';
759 return tolower(code) - 'a' + 10;
760}
761
1872981b 762static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
1da177e4 763{
b77a493b 764 char *scon = NULL, *tcon = NULL;
f50a3ec9 765 char *namebuf = NULL, *objname = NULL;
1da177e4
LT
766 u32 ssid, tsid, newsid;
767 u16 tclass;
768 ssize_t length;
b77a493b 769 char *newcon = NULL;
1da177e4 770 u32 len;
f50a3ec9 771 int nargs;
1da177e4
LT
772
773 length = task_has_security(current, SECURITY__COMPUTE_CREATE);
774 if (length)
b77a493b 775 goto out;
1da177e4
LT
776
777 length = -ENOMEM;
c1a7368a 778 scon = kzalloc(size + 1, GFP_KERNEL);
1da177e4 779 if (!scon)
b77a493b 780 goto out;
1da177e4 781
b77a493b 782 length = -ENOMEM;
c1a7368a 783 tcon = kzalloc(size + 1, GFP_KERNEL);
1da177e4
LT
784 if (!tcon)
785 goto out;
1da177e4 786
f50a3ec9
KK
787 length = -ENOMEM;
788 namebuf = kzalloc(size + 1, GFP_KERNEL);
789 if (!namebuf)
790 goto out;
791
1da177e4 792 length = -EINVAL;
f50a3ec9
KK
793 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
794 if (nargs < 3 || nargs > 4)
b77a493b 795 goto out;
0f7e4c33
KK
796 if (nargs == 4) {
797 /*
798 * If and when the name of new object to be queried contains
799 * either whitespace or multibyte characters, they shall be
800 * encoded based on the percentage-encoding rule.
801 * If not encoded, the sscanf logic picks up only left-half
802 * of the supplied name; splitted by a whitespace unexpectedly.
803 */
804 char *r, *w;
805 int c1, c2;
806
807 r = w = namebuf;
808 do {
809 c1 = *r++;
810 if (c1 == '+')
811 c1 = ' ';
812 else if (c1 == '%') {
813 if ((c1 = hexcode_to_int(*r++)) < 0)
814 goto out;
815 if ((c2 = hexcode_to_int(*r++)) < 0)
816 goto out;
817 c1 = (c1 << 4) | c2;
818 }
819 *w++ = c1;
820 } while (c1 != '\0');
821
f50a3ec9 822 objname = namebuf;
0f7e4c33 823 }
1da177e4 824
c1a7368a 825 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
b77a493b
EP
826 if (length)
827 goto out;
828
c1a7368a 829 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
b77a493b
EP
830 if (length)
831 goto out;
1da177e4 832
f50a3ec9
KK
833 length = security_transition_sid_user(ssid, tsid, tclass,
834 objname, &newsid);
b77a493b
EP
835 if (length)
836 goto out;
1da177e4
LT
837
838 length = security_sid_to_context(newsid, &newcon, &len);
b77a493b
EP
839 if (length)
840 goto out;
1da177e4 841
b77a493b 842 length = -ERANGE;
1da177e4 843 if (len > SIMPLE_TRANSACTION_LIMIT) {
744ba35e
EP
844 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
845 "payload max\n", __func__, len);
b77a493b 846 goto out;
1da177e4
LT
847 }
848
849 memcpy(buf, newcon, len);
850 length = len;
b77a493b 851out:
1da177e4 852 kfree(newcon);
f50a3ec9 853 kfree(namebuf);
1da177e4 854 kfree(tcon);
1da177e4
LT
855 kfree(scon);
856 return length;
857}
858
1872981b 859static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
1da177e4 860{
b77a493b 861 char *scon = NULL, *tcon = NULL;
1da177e4
LT
862 u32 ssid, tsid, newsid;
863 u16 tclass;
864 ssize_t length;
b77a493b 865 char *newcon = NULL;
1da177e4
LT
866 u32 len;
867
868 length = task_has_security(current, SECURITY__COMPUTE_RELABEL);
869 if (length)
b77a493b 870 goto out;
1da177e4
LT
871
872 length = -ENOMEM;
c1a7368a 873 scon = kzalloc(size + 1, GFP_KERNEL);
1da177e4 874 if (!scon)
b77a493b 875 goto out;
1da177e4 876
b77a493b 877 length = -ENOMEM;
c1a7368a 878 tcon = kzalloc(size + 1, GFP_KERNEL);
1da177e4
LT
879 if (!tcon)
880 goto out;
1da177e4
LT
881
882 length = -EINVAL;
883 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
b77a493b 884 goto out;
1da177e4 885
c1a7368a 886 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
b77a493b
EP
887 if (length)
888 goto out;
889
c1a7368a 890 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
b77a493b
EP
891 if (length)
892 goto out;
1da177e4
LT
893
894 length = security_change_sid(ssid, tsid, tclass, &newsid);
b77a493b
EP
895 if (length)
896 goto out;
1da177e4
LT
897
898 length = security_sid_to_context(newsid, &newcon, &len);
b77a493b
EP
899 if (length)
900 goto out;
1da177e4 901
b77a493b
EP
902 length = -ERANGE;
903 if (len > SIMPLE_TRANSACTION_LIMIT)
904 goto out;
1da177e4
LT
905
906 memcpy(buf, newcon, len);
907 length = len;
b77a493b 908out:
1da177e4 909 kfree(newcon);
1da177e4 910 kfree(tcon);
1da177e4
LT
911 kfree(scon);
912 return length;
913}
914
1872981b 915static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
1da177e4 916{
b77a493b
EP
917 char *con = NULL, *user = NULL, *ptr;
918 u32 sid, *sids = NULL;
1da177e4
LT
919 ssize_t length;
920 char *newcon;
921 int i, rc;
922 u32 len, nsids;
923
924 length = task_has_security(current, SECURITY__COMPUTE_USER);
925 if (length)
6eab04a8 926 goto out;
1da177e4
LT
927
928 length = -ENOMEM;
c1a7368a 929 con = kzalloc(size + 1, GFP_KERNEL);
1da177e4 930 if (!con)
6eab04a8 931 goto out;
1da177e4 932
b77a493b 933 length = -ENOMEM;
c1a7368a 934 user = kzalloc(size + 1, GFP_KERNEL);
1da177e4
LT
935 if (!user)
936 goto out;
1da177e4
LT
937
938 length = -EINVAL;
939 if (sscanf(buf, "%s %s", con, user) != 2)
b77a493b 940 goto out;
1da177e4 941
c1a7368a 942 length = security_context_to_sid(con, strlen(con) + 1, &sid);
b77a493b
EP
943 if (length)
944 goto out;
1da177e4
LT
945
946 length = security_get_user_sids(sid, user, &sids, &nsids);
b77a493b
EP
947 if (length)
948 goto out;
1da177e4
LT
949
950 length = sprintf(buf, "%u", nsids) + 1;
951 ptr = buf + length;
952 for (i = 0; i < nsids; i++) {
953 rc = security_sid_to_context(sids[i], &newcon, &len);
954 if (rc) {
955 length = rc;
b77a493b 956 goto out;
1da177e4
LT
957 }
958 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
959 kfree(newcon);
960 length = -ERANGE;
b77a493b 961 goto out;
1da177e4
LT
962 }
963 memcpy(ptr, newcon, len);
964 kfree(newcon);
965 ptr += len;
966 length += len;
967 }
b77a493b 968out:
1da177e4 969 kfree(sids);
1da177e4 970 kfree(user);
1da177e4
LT
971 kfree(con);
972 return length;
973}
974
1872981b 975static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
1da177e4 976{
b77a493b 977 char *scon = NULL, *tcon = NULL;
1da177e4
LT
978 u32 ssid, tsid, newsid;
979 u16 tclass;
980 ssize_t length;
b77a493b 981 char *newcon = NULL;
1da177e4
LT
982 u32 len;
983
984 length = task_has_security(current, SECURITY__COMPUTE_MEMBER);
985 if (length)
b77a493b 986 goto out;
1da177e4
LT
987
988 length = -ENOMEM;
c1a7368a 989 scon = kzalloc(size + 1, GFP_KERNEL);
1da177e4 990 if (!scon)
6eab04a8 991 goto out;
1da177e4 992
b77a493b 993 length = -ENOMEM;
c1a7368a 994 tcon = kzalloc(size + 1, GFP_KERNEL);
1da177e4
LT
995 if (!tcon)
996 goto out;
1da177e4
LT
997
998 length = -EINVAL;
999 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
b77a493b 1000 goto out;
1da177e4 1001
c1a7368a 1002 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
b77a493b
EP
1003 if (length)
1004 goto out;
1005
c1a7368a 1006 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
b77a493b
EP
1007 if (length)
1008 goto out;
1da177e4
LT
1009
1010 length = security_member_sid(ssid, tsid, tclass, &newsid);
b77a493b
EP
1011 if (length)
1012 goto out;
1da177e4
LT
1013
1014 length = security_sid_to_context(newsid, &newcon, &len);
b77a493b
EP
1015 if (length)
1016 goto out;
1da177e4 1017
b77a493b 1018 length = -ERANGE;
1da177e4 1019 if (len > SIMPLE_TRANSACTION_LIMIT) {
744ba35e
EP
1020 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
1021 "payload max\n", __func__, len);
b77a493b 1022 goto out;
1da177e4
LT
1023 }
1024
1025 memcpy(buf, newcon, len);
1026 length = len;
b77a493b 1027out:
1da177e4 1028 kfree(newcon);
1da177e4 1029 kfree(tcon);
1da177e4
LT
1030 kfree(scon);
1031 return length;
1032}
1033
1034static struct inode *sel_make_inode(struct super_block *sb, int mode)
1035{
1036 struct inode *ret = new_inode(sb);
1037
1038 if (ret) {
1039 ret->i_mode = mode;
1da177e4
LT
1040 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
1041 }
1042 return ret;
1043}
1044
1da177e4
LT
1045static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1046 size_t count, loff_t *ppos)
1047{
1048 char *page = NULL;
1049 ssize_t length;
1da177e4
LT
1050 ssize_t ret;
1051 int cur_enforcing;
d313f948
SS
1052 struct inode *inode = filep->f_path.dentry->d_inode;
1053 unsigned index = inode->i_ino & SEL_INO_MASK;
1054 const char *name = filep->f_path.dentry->d_name.name;
1da177e4 1055
bb003079 1056 mutex_lock(&sel_mutex);
1da177e4 1057
b77a493b
EP
1058 ret = -EINVAL;
1059 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
d313f948 1060 goto out;
1da177e4 1061
b77a493b 1062 ret = -ENOMEM;
1872981b 1063 page = (char *)get_zeroed_page(GFP_KERNEL);
b77a493b 1064 if (!page)
1da177e4 1065 goto out;
1da177e4 1066
d313f948 1067 cur_enforcing = security_get_bool_value(index);
1da177e4
LT
1068 if (cur_enforcing < 0) {
1069 ret = cur_enforcing;
1070 goto out;
1071 }
1da177e4 1072 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
d313f948 1073 bool_pending_values[index]);
68bdcf28 1074 ret = simple_read_from_buffer(buf, count, ppos, page, length);
1da177e4 1075out:
bb003079 1076 mutex_unlock(&sel_mutex);
b77a493b 1077 free_page((unsigned long)page);
1da177e4
LT
1078 return ret;
1079}
1080
1081static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1082 size_t count, loff_t *ppos)
1083{
1084 char *page = NULL;
d313f948 1085 ssize_t length;
1da177e4 1086 int new_value;
d313f948
SS
1087 struct inode *inode = filep->f_path.dentry->d_inode;
1088 unsigned index = inode->i_ino & SEL_INO_MASK;
1089 const char *name = filep->f_path.dentry->d_name.name;
1da177e4 1090
bb003079 1091 mutex_lock(&sel_mutex);
1da177e4
LT
1092
1093 length = task_has_security(current, SECURITY__SETBOOL);
1094 if (length)
1095 goto out;
1096
b77a493b
EP
1097 length = -EINVAL;
1098 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
d313f948 1099 goto out;
d313f948 1100
b77a493b
EP
1101 length = -ENOMEM;
1102 if (count >= PAGE_SIZE)
1da177e4 1103 goto out;
d313f948 1104
b77a493b
EP
1105 /* No partial writes. */
1106 length = -EINVAL;
1107 if (*ppos != 0)
1da177e4 1108 goto out;
b77a493b
EP
1109
1110 length = -ENOMEM;
1872981b 1111 page = (char *)get_zeroed_page(GFP_KERNEL);
b77a493b 1112 if (!page)
1da177e4 1113 goto out;
1da177e4 1114
d313f948 1115 length = -EFAULT;
1da177e4
LT
1116 if (copy_from_user(page, buf, count))
1117 goto out;
1118
1119 length = -EINVAL;
1120 if (sscanf(page, "%d", &new_value) != 1)
1121 goto out;
1122
1123 if (new_value)
1124 new_value = 1;
1125
d313f948 1126 bool_pending_values[index] = new_value;
1da177e4
LT
1127 length = count;
1128
1129out:
bb003079 1130 mutex_unlock(&sel_mutex);
b77a493b 1131 free_page((unsigned long) page);
1da177e4
LT
1132 return length;
1133}
1134
9c2e08c5 1135static const struct file_operations sel_bool_ops = {
1872981b
EP
1136 .read = sel_read_bool,
1137 .write = sel_write_bool,
57a62c23 1138 .llseek = generic_file_llseek,
1da177e4
LT
1139};
1140
1141static ssize_t sel_commit_bools_write(struct file *filep,
1142 const char __user *buf,
1143 size_t count, loff_t *ppos)
1144{
1145 char *page = NULL;
d313f948 1146 ssize_t length;
1da177e4
LT
1147 int new_value;
1148
bb003079 1149 mutex_lock(&sel_mutex);
1da177e4
LT
1150
1151 length = task_has_security(current, SECURITY__SETBOOL);
1152 if (length)
1153 goto out;
1154
b77a493b
EP
1155 length = -ENOMEM;
1156 if (count >= PAGE_SIZE)
1da177e4 1157 goto out;
b77a493b
EP
1158
1159 /* No partial writes. */
1160 length = -EINVAL;
1161 if (*ppos != 0)
1da177e4 1162 goto out;
b77a493b
EP
1163
1164 length = -ENOMEM;
1872981b 1165 page = (char *)get_zeroed_page(GFP_KERNEL);
b77a493b 1166 if (!page)
1da177e4 1167 goto out;
1da177e4 1168
d313f948 1169 length = -EFAULT;
1da177e4
LT
1170 if (copy_from_user(page, buf, count))
1171 goto out;
1172
1173 length = -EINVAL;
1174 if (sscanf(page, "%d", &new_value) != 1)
1175 goto out;
1176
b77a493b 1177 length = 0;
1872981b 1178 if (new_value && bool_pending_values)
b77a493b 1179 length = security_set_bools(bool_num, bool_pending_values);
1da177e4 1180
b77a493b
EP
1181 if (!length)
1182 length = count;
1da177e4
LT
1183
1184out:
bb003079 1185 mutex_unlock(&sel_mutex);
b77a493b 1186 free_page((unsigned long) page);
1da177e4
LT
1187 return length;
1188}
1189
9c2e08c5 1190static const struct file_operations sel_commit_bools_ops = {
1872981b 1191 .write = sel_commit_bools_write,
57a62c23 1192 .llseek = generic_file_llseek,
1da177e4
LT
1193};
1194
0c92d7c7 1195static void sel_remove_entries(struct dentry *de)
1da177e4 1196{
0955dc03 1197 struct list_head *node;
1da177e4 1198
2fd6b7f5 1199 spin_lock(&de->d_lock);
1da177e4
LT
1200 node = de->d_subdirs.next;
1201 while (node != &de->d_subdirs) {
5160ee6f 1202 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
2fd6b7f5
NP
1203
1204 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
1da177e4
LT
1205 list_del_init(node);
1206
1207 if (d->d_inode) {
dc0474be 1208 dget_dlock(d);
2fd6b7f5
NP
1209 spin_unlock(&de->d_lock);
1210 spin_unlock(&d->d_lock);
1da177e4
LT
1211 d_delete(d);
1212 simple_unlink(de->d_inode, d);
1213 dput(d);
2fd6b7f5
NP
1214 spin_lock(&de->d_lock);
1215 } else
1216 spin_unlock(&d->d_lock);
1da177e4
LT
1217 node = de->d_subdirs.next;
1218 }
1219
2fd6b7f5 1220 spin_unlock(&de->d_lock);
1da177e4
LT
1221}
1222
1223#define BOOL_DIR_NAME "booleans"
1224
1225static int sel_make_bools(void)
1226{
b77a493b 1227 int i, ret;
1da177e4
LT
1228 ssize_t len;
1229 struct dentry *dentry = NULL;
1230 struct dentry *dir = bool_dir;
1231 struct inode *inode = NULL;
1232 struct inode_security_struct *isec;
1233 char **names = NULL, *page;
1234 int num;
1235 int *values = NULL;
1236 u32 sid;
1237
1238 /* remove any existing files */
8007f102
XF
1239 for (i = 0; i < bool_num; i++)
1240 kfree(bool_pending_names[i]);
d313f948 1241 kfree(bool_pending_names);
9a5f04bf 1242 kfree(bool_pending_values);
d313f948 1243 bool_pending_names = NULL;
20c19e41 1244 bool_pending_values = NULL;
1da177e4 1245
0c92d7c7 1246 sel_remove_entries(dir);
1da177e4 1247
b77a493b 1248 ret = -ENOMEM;
1872981b
EP
1249 page = (char *)get_zeroed_page(GFP_KERNEL);
1250 if (!page)
b77a493b 1251 goto out;
1da177e4
LT
1252
1253 ret = security_get_bools(&num, &names, &values);
b77a493b 1254 if (ret)
1da177e4
LT
1255 goto out;
1256
1257 for (i = 0; i < num; i++) {
b77a493b 1258 ret = -ENOMEM;
1da177e4 1259 dentry = d_alloc_name(dir, names[i]);
b77a493b
EP
1260 if (!dentry)
1261 goto out;
1262
1263 ret = -ENOMEM;
1da177e4 1264 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
b77a493b
EP
1265 if (!inode)
1266 goto out;
1da177e4 1267
b77a493b 1268 ret = -EINVAL;
1da177e4 1269 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
b77a493b
EP
1270 if (len < 0)
1271 goto out;
1272
1273 ret = -ENAMETOOLONG;
1274 if (len >= PAGE_SIZE)
1275 goto out;
1276
1872981b
EP
1277 isec = (struct inode_security_struct *)inode->i_security;
1278 ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid);
1279 if (ret)
b77a493b
EP
1280 goto out;
1281
1da177e4
LT
1282 isec->sid = sid;
1283 isec->initialized = 1;
1284 inode->i_fop = &sel_bool_ops;
bce34bc0 1285 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
1da177e4
LT
1286 d_add(dentry, inode);
1287 }
1288 bool_num = num;
d313f948 1289 bool_pending_names = names;
1da177e4 1290 bool_pending_values = values;
b77a493b
EP
1291
1292 free_page((unsigned long)page);
1293 return 0;
1da177e4
LT
1294out:
1295 free_page((unsigned long)page);
b77a493b 1296
1da177e4 1297 if (names) {
9a5f04bf
JJ
1298 for (i = 0; i < num; i++)
1299 kfree(names[i]);
1da177e4
LT
1300 kfree(names);
1301 }
20c19e41 1302 kfree(values);
0c92d7c7 1303 sel_remove_entries(dir);
b77a493b
EP
1304
1305 return ret;
1da177e4
LT
1306}
1307
1308#define NULL_FILE_NAME "null"
1309
1872981b 1310struct dentry *selinux_null;
1da177e4
LT
1311
1312static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1313 size_t count, loff_t *ppos)
1314{
1315 char tmpbuf[TMPBUFLEN];
1316 ssize_t length;
1317
1318 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1319 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1320}
1321
1872981b
EP
1322static ssize_t sel_write_avc_cache_threshold(struct file *file,
1323 const char __user *buf,
1da177e4
LT
1324 size_t count, loff_t *ppos)
1325
1326{
b77a493b 1327 char *page = NULL;
1da177e4
LT
1328 ssize_t ret;
1329 int new_value;
1330
b77a493b
EP
1331 ret = task_has_security(current, SECURITY__SETSECPARAM);
1332 if (ret)
1da177e4 1333 goto out;
1da177e4 1334
b77a493b
EP
1335 ret = -ENOMEM;
1336 if (count >= PAGE_SIZE)
1da177e4 1337 goto out;
1da177e4 1338
b77a493b
EP
1339 /* No partial writes. */
1340 ret = -EINVAL;
1341 if (*ppos != 0)
1342 goto out;
1343
1344 ret = -ENOMEM;
1872981b 1345 page = (char *)get_zeroed_page(GFP_KERNEL);
b77a493b 1346 if (!page)
1da177e4 1347 goto out;
1da177e4 1348
b77a493b
EP
1349 ret = -EFAULT;
1350 if (copy_from_user(page, buf, count))
1351 goto out;
1da177e4 1352
b77a493b
EP
1353 ret = -EINVAL;
1354 if (sscanf(page, "%u", &new_value) != 1)
1da177e4 1355 goto out;
1da177e4 1356
b77a493b
EP
1357 avc_cache_threshold = new_value;
1358
1da177e4 1359 ret = count;
1da177e4 1360out:
b77a493b 1361 free_page((unsigned long)page);
1da177e4
LT
1362 return ret;
1363}
1364
1365static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1366 size_t count, loff_t *ppos)
1367{
1368 char *page;
b77a493b 1369 ssize_t length;
1da177e4
LT
1370
1371 page = (char *)__get_free_page(GFP_KERNEL);
b77a493b
EP
1372 if (!page)
1373 return -ENOMEM;
1374
1375 length = avc_get_hash_stats(page);
1376 if (length >= 0)
1377 length = simple_read_from_buffer(buf, count, ppos, page, length);
1da177e4 1378 free_page((unsigned long)page);
b77a493b
EP
1379
1380 return length;
1da177e4
LT
1381}
1382
9c2e08c5 1383static const struct file_operations sel_avc_cache_threshold_ops = {
1da177e4
LT
1384 .read = sel_read_avc_cache_threshold,
1385 .write = sel_write_avc_cache_threshold,
57a62c23 1386 .llseek = generic_file_llseek,
1da177e4
LT
1387};
1388
9c2e08c5 1389static const struct file_operations sel_avc_hash_stats_ops = {
1da177e4 1390 .read = sel_read_avc_hash_stats,
57a62c23 1391 .llseek = generic_file_llseek,
1da177e4
LT
1392};
1393
1394#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1395static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1396{
1397 int cpu;
1398
4f4b6c1a 1399 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
1da177e4
LT
1400 if (!cpu_possible(cpu))
1401 continue;
1402 *idx = cpu + 1;
1403 return &per_cpu(avc_cache_stats, cpu);
1404 }
1405 return NULL;
1406}
1407
1408static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1409{
1410 loff_t n = *pos - 1;
1411
1412 if (*pos == 0)
1413 return SEQ_START_TOKEN;
1414
1415 return sel_avc_get_stat_idx(&n);
1416}
1417
1418static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1419{
1420 return sel_avc_get_stat_idx(pos);
1421}
1422
1423static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1424{
1425 struct avc_cache_stats *st = v;
1426
1427 if (v == SEQ_START_TOKEN)
1428 seq_printf(seq, "lookups hits misses allocations reclaims "
1429 "frees\n");
257313b2
LT
1430 else {
1431 unsigned int lookups = st->lookups;
1432 unsigned int misses = st->misses;
1433 unsigned int hits = lookups - misses;
1434 seq_printf(seq, "%u %u %u %u %u %u\n", lookups,
1435 hits, misses, st->allocations,
1da177e4 1436 st->reclaims, st->frees);
257313b2 1437 }
1da177e4
LT
1438 return 0;
1439}
1440
1441static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1442{ }
1443
1996a109 1444static const struct seq_operations sel_avc_cache_stats_seq_ops = {
1da177e4
LT
1445 .start = sel_avc_stats_seq_start,
1446 .next = sel_avc_stats_seq_next,
1447 .show = sel_avc_stats_seq_show,
1448 .stop = sel_avc_stats_seq_stop,
1449};
1450
1451static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1452{
1453 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1454}
1455
9c2e08c5 1456static const struct file_operations sel_avc_cache_stats_ops = {
1da177e4
LT
1457 .open = sel_open_avc_cache_stats,
1458 .read = seq_read,
1459 .llseek = seq_lseek,
1460 .release = seq_release,
1461};
1462#endif
1463
1464static int sel_make_avc_files(struct dentry *dir)
1465{
b77a493b 1466 int i;
1da177e4
LT
1467 static struct tree_descr files[] = {
1468 { "cache_threshold",
1469 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1470 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1471#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1472 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1473#endif
1474 };
1475
6e20a64a 1476 for (i = 0; i < ARRAY_SIZE(files); i++) {
1da177e4
LT
1477 struct inode *inode;
1478 struct dentry *dentry;
1479
1480 dentry = d_alloc_name(dir, files[i].name);
b77a493b
EP
1481 if (!dentry)
1482 return -ENOMEM;
1da177e4
LT
1483
1484 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
b77a493b
EP
1485 if (!inode)
1486 return -ENOMEM;
1487
1da177e4 1488 inode->i_fop = files[i].ops;
6174eafc 1489 inode->i_ino = ++sel_last_ino;
1da177e4
LT
1490 d_add(dentry, inode);
1491 }
b77a493b
EP
1492
1493 return 0;
1da177e4
LT
1494}
1495
1872981b 1496static ssize_t sel_read_initcon(struct file *file, char __user *buf,
f0ee2e46
JC
1497 size_t count, loff_t *ppos)
1498{
1499 struct inode *inode;
1500 char *con;
1501 u32 sid, len;
1502 ssize_t ret;
1503
1504 inode = file->f_path.dentry->d_inode;
1505 sid = inode->i_ino&SEL_INO_MASK;
1506 ret = security_sid_to_context(sid, &con, &len);
b77a493b 1507 if (ret)
f0ee2e46
JC
1508 return ret;
1509
1510 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1511 kfree(con);
1512 return ret;
1513}
1514
1515static const struct file_operations sel_initcon_ops = {
1516 .read = sel_read_initcon,
57a62c23 1517 .llseek = generic_file_llseek,
f0ee2e46
JC
1518};
1519
1520static int sel_make_initcon_files(struct dentry *dir)
1521{
b77a493b 1522 int i;
f0ee2e46
JC
1523
1524 for (i = 1; i <= SECINITSID_NUM; i++) {
1525 struct inode *inode;
1526 struct dentry *dentry;
1527 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
b77a493b
EP
1528 if (!dentry)
1529 return -ENOMEM;
f0ee2e46
JC
1530
1531 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
b77a493b
EP
1532 if (!inode)
1533 return -ENOMEM;
1534
f0ee2e46
JC
1535 inode->i_fop = &sel_initcon_ops;
1536 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1537 d_add(dentry, inode);
1538 }
b77a493b
EP
1539
1540 return 0;
f0ee2e46
JC
1541}
1542
e47c8fc5
CP
1543static inline unsigned int sel_div(unsigned long a, unsigned long b)
1544{
1545 return a / b - (a % b < 0);
1546}
1547
1548static inline unsigned long sel_class_to_ino(u16 class)
1549{
1550 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1551}
1552
1553static inline u16 sel_ino_to_class(unsigned long ino)
1554{
1555 return sel_div(ino & SEL_INO_MASK, SEL_VEC_MAX + 1);
1556}
1557
1558static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1559{
1560 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1561}
1562
1563static inline u32 sel_ino_to_perm(unsigned long ino)
1564{
1565 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1566}
1567
1872981b 1568static ssize_t sel_read_class(struct file *file, char __user *buf,
e47c8fc5
CP
1569 size_t count, loff_t *ppos)
1570{
1571 ssize_t rc, len;
1572 char *page;
1573 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1574
1575 page = (char *)__get_free_page(GFP_KERNEL);
b77a493b
EP
1576 if (!page)
1577 return -ENOMEM;
e47c8fc5
CP
1578
1579 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_class(ino));
1580 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1581 free_page((unsigned long)page);
b77a493b 1582
e47c8fc5
CP
1583 return rc;
1584}
1585
1586static const struct file_operations sel_class_ops = {
1587 .read = sel_read_class,
57a62c23 1588 .llseek = generic_file_llseek,
e47c8fc5
CP
1589};
1590
1872981b 1591static ssize_t sel_read_perm(struct file *file, char __user *buf,
e47c8fc5
CP
1592 size_t count, loff_t *ppos)
1593{
1594 ssize_t rc, len;
1595 char *page;
1596 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1597
1598 page = (char *)__get_free_page(GFP_KERNEL);
b77a493b
EP
1599 if (!page)
1600 return -ENOMEM;
e47c8fc5 1601
1872981b 1602 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_perm(ino));
e47c8fc5
CP
1603 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1604 free_page((unsigned long)page);
b77a493b 1605
e47c8fc5
CP
1606 return rc;
1607}
1608
1609static const struct file_operations sel_perm_ops = {
1610 .read = sel_read_perm,
57a62c23 1611 .llseek = generic_file_llseek,
e47c8fc5
CP
1612};
1613
3bb56b25
PM
1614static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1615 size_t count, loff_t *ppos)
1616{
1617 int value;
1618 char tmpbuf[TMPBUFLEN];
1619 ssize_t length;
1620 unsigned long i_ino = file->f_path.dentry->d_inode->i_ino;
1621
1622 value = security_policycap_supported(i_ino & SEL_INO_MASK);
1623 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1624
1625 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1626}
1627
1628static const struct file_operations sel_policycap_ops = {
1629 .read = sel_read_policycap,
57a62c23 1630 .llseek = generic_file_llseek,
3bb56b25
PM
1631};
1632
e47c8fc5
CP
1633static int sel_make_perm_files(char *objclass, int classvalue,
1634 struct dentry *dir)
1635{
b77a493b 1636 int i, rc, nperms;
e47c8fc5
CP
1637 char **perms;
1638
1639 rc = security_get_permissions(objclass, &perms, &nperms);
1640 if (rc)
b77a493b 1641 return rc;
e47c8fc5
CP
1642
1643 for (i = 0; i < nperms; i++) {
1644 struct inode *inode;
1645 struct dentry *dentry;
1646
b77a493b 1647 rc = -ENOMEM;
e47c8fc5 1648 dentry = d_alloc_name(dir, perms[i]);
b77a493b
EP
1649 if (!dentry)
1650 goto out;
e47c8fc5 1651
b77a493b 1652 rc = -ENOMEM;
e47c8fc5 1653 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
b77a493b
EP
1654 if (!inode)
1655 goto out;
1656
e47c8fc5
CP
1657 inode->i_fop = &sel_perm_ops;
1658 /* i+1 since perm values are 1-indexed */
c1a7368a 1659 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
e47c8fc5
CP
1660 d_add(dentry, inode);
1661 }
b77a493b
EP
1662 rc = 0;
1663out:
e47c8fc5
CP
1664 for (i = 0; i < nperms; i++)
1665 kfree(perms[i]);
1666 kfree(perms);
e47c8fc5
CP
1667 return rc;
1668}
1669
1670static int sel_make_class_dir_entries(char *classname, int index,
1671 struct dentry *dir)
1672{
1673 struct dentry *dentry = NULL;
1674 struct inode *inode = NULL;
1675 int rc;
1676
1677 dentry = d_alloc_name(dir, "index");
b77a493b
EP
1678 if (!dentry)
1679 return -ENOMEM;
e47c8fc5
CP
1680
1681 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
b77a493b
EP
1682 if (!inode)
1683 return -ENOMEM;
e47c8fc5
CP
1684
1685 inode->i_fop = &sel_class_ops;
1686 inode->i_ino = sel_class_to_ino(index);
1687 d_add(dentry, inode);
1688
1689 dentry = d_alloc_name(dir, "perms");
b77a493b
EP
1690 if (!dentry)
1691 return -ENOMEM;
e47c8fc5
CP
1692
1693 rc = sel_make_dir(dir->d_inode, dentry, &last_class_ino);
1694 if (rc)
b77a493b 1695 return rc;
e47c8fc5
CP
1696
1697 rc = sel_make_perm_files(classname, index, dentry);
1698
e47c8fc5
CP
1699 return rc;
1700}
1701
1702static void sel_remove_classes(void)
1703{
1704 struct list_head *class_node;
1705
1706 list_for_each(class_node, &class_dir->d_subdirs) {
1707 struct dentry *class_subdir = list_entry(class_node,
1708 struct dentry, d_u.d_child);
1709 struct list_head *class_subdir_node;
1710
1711 list_for_each(class_subdir_node, &class_subdir->d_subdirs) {
1712 struct dentry *d = list_entry(class_subdir_node,
1713 struct dentry, d_u.d_child);
1714
1715 if (d->d_inode)
1716 if (d->d_inode->i_mode & S_IFDIR)
1717 sel_remove_entries(d);
1718 }
1719
1720 sel_remove_entries(class_subdir);
1721 }
1722
1723 sel_remove_entries(class_dir);
1724}
1725
1726static int sel_make_classes(void)
1727{
b77a493b 1728 int rc, nclasses, i;
e47c8fc5
CP
1729 char **classes;
1730
1731 /* delete any existing entries */
1732 sel_remove_classes();
1733
1734 rc = security_get_classes(&classes, &nclasses);
b77a493b
EP
1735 if (rc)
1736 return rc;
e47c8fc5
CP
1737
1738 /* +2 since classes are 1-indexed */
c1a7368a 1739 last_class_ino = sel_class_to_ino(nclasses + 2);
e47c8fc5
CP
1740
1741 for (i = 0; i < nclasses; i++) {
1742 struct dentry *class_name_dir;
1743
b77a493b 1744 rc = -ENOMEM;
e47c8fc5 1745 class_name_dir = d_alloc_name(class_dir, classes[i]);
b77a493b
EP
1746 if (!class_name_dir)
1747 goto out;
e47c8fc5
CP
1748
1749 rc = sel_make_dir(class_dir->d_inode, class_name_dir,
1750 &last_class_ino);
1751 if (rc)
b77a493b 1752 goto out;
e47c8fc5
CP
1753
1754 /* i+1 since class values are 1-indexed */
c1a7368a 1755 rc = sel_make_class_dir_entries(classes[i], i + 1,
e47c8fc5
CP
1756 class_name_dir);
1757 if (rc)
b77a493b 1758 goto out;
e47c8fc5 1759 }
b77a493b
EP
1760 rc = 0;
1761out:
e47c8fc5
CP
1762 for (i = 0; i < nclasses; i++)
1763 kfree(classes[i]);
1764 kfree(classes);
e47c8fc5
CP
1765 return rc;
1766}
1767
3bb56b25
PM
1768static int sel_make_policycap(void)
1769{
1770 unsigned int iter;
1771 struct dentry *dentry = NULL;
1772 struct inode *inode = NULL;
1773
1774 sel_remove_entries(policycap_dir);
1775
1776 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
1777 if (iter < ARRAY_SIZE(policycap_names))
1778 dentry = d_alloc_name(policycap_dir,
1779 policycap_names[iter]);
1780 else
1781 dentry = d_alloc_name(policycap_dir, "unknown");
1782
1783 if (dentry == NULL)
1784 return -ENOMEM;
1785
1786 inode = sel_make_inode(policycap_dir->d_sb, S_IFREG | S_IRUGO);
1787 if (inode == NULL)
1788 return -ENOMEM;
1789
1790 inode->i_fop = &sel_policycap_ops;
1791 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1792 d_add(dentry, inode);
1793 }
1794
1795 return 0;
1796}
1797
0dd4ae51
CP
1798static int sel_make_dir(struct inode *dir, struct dentry *dentry,
1799 unsigned long *ino)
1da177e4 1800{
1da177e4
LT
1801 struct inode *inode;
1802
edb20fb5 1803 inode = sel_make_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
b77a493b
EP
1804 if (!inode)
1805 return -ENOMEM;
1806
1da177e4
LT
1807 inode->i_op = &simple_dir_inode_operations;
1808 inode->i_fop = &simple_dir_operations;
0dd4ae51 1809 inode->i_ino = ++(*ino);
40e906f8 1810 /* directory inodes start off with i_nlink == 2 (for "." entry) */
d8c76e6f 1811 inc_nlink(inode);
1da177e4 1812 d_add(dentry, inode);
edb20fb5 1813 /* bump link count on parent directory, too */
d8c76e6f 1814 inc_nlink(dir);
b77a493b
EP
1815
1816 return 0;
1da177e4
LT
1817}
1818
1872981b 1819static int sel_fill_super(struct super_block *sb, void *data, int silent)
1da177e4
LT
1820{
1821 int ret;
1822 struct dentry *dentry;
edb20fb5 1823 struct inode *inode, *root_inode;
1da177e4
LT
1824 struct inode_security_struct *isec;
1825
1826 static struct tree_descr selinux_files[] = {
1827 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1828 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
ce9982d0 1829 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
1da177e4
LT
1830 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1831 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1832 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1833 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1834 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1835 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1836 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1837 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1838 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1839 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
3f12070e
EP
1840 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1841 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
11904167 1842 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
cee74f47 1843 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUSR},
1da177e4
LT
1844 /* last one */ {""}
1845 };
1846 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1847 if (ret)
161ce45a 1848 goto err;
1da177e4 1849
edb20fb5
JM
1850 root_inode = sb->s_root->d_inode;
1851
b77a493b 1852 ret = -ENOMEM;
1da177e4 1853 dentry = d_alloc_name(sb->s_root, BOOL_DIR_NAME);
b77a493b 1854 if (!dentry)
161ce45a 1855 goto err;
1da177e4 1856
0dd4ae51 1857 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
cde174a8 1858 if (ret)
161ce45a 1859 goto err;
cde174a8 1860
1da177e4 1861 bool_dir = dentry;
1da177e4 1862
b77a493b 1863 ret = -ENOMEM;
1da177e4 1864 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
b77a493b 1865 if (!dentry)
161ce45a 1866 goto err;
1da177e4 1867
b77a493b 1868 ret = -ENOMEM;
1da177e4 1869 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
b77a493b 1870 if (!inode)
161ce45a 1871 goto err;
b77a493b 1872
6174eafc 1873 inode->i_ino = ++sel_last_ino;
1872981b 1874 isec = (struct inode_security_struct *)inode->i_security;
1da177e4
LT
1875 isec->sid = SECINITSID_DEVNULL;
1876 isec->sclass = SECCLASS_CHR_FILE;
1877 isec->initialized = 1;
1878
1879 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1880 d_add(dentry, inode);
1881 selinux_null = dentry;
1882
b77a493b 1883 ret = -ENOMEM;
1da177e4 1884 dentry = d_alloc_name(sb->s_root, "avc");
b77a493b 1885 if (!dentry)
161ce45a 1886 goto err;
1da177e4 1887
0dd4ae51 1888 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1da177e4 1889 if (ret)
161ce45a 1890 goto err;
1da177e4
LT
1891
1892 ret = sel_make_avc_files(dentry);
1893 if (ret)
161ce45a 1894 goto err;
f0ee2e46 1895
b77a493b 1896 ret = -ENOMEM;
f0ee2e46 1897 dentry = d_alloc_name(sb->s_root, "initial_contexts");
b77a493b 1898 if (!dentry)
f0ee2e46 1899 goto err;
f0ee2e46 1900
0dd4ae51 1901 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
f0ee2e46
JC
1902 if (ret)
1903 goto err;
1904
1905 ret = sel_make_initcon_files(dentry);
1906 if (ret)
1907 goto err;
1908
b77a493b 1909 ret = -ENOMEM;
e47c8fc5 1910 dentry = d_alloc_name(sb->s_root, "class");
b77a493b 1911 if (!dentry)
e47c8fc5 1912 goto err;
e47c8fc5
CP
1913
1914 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1915 if (ret)
1916 goto err;
1917
1918 class_dir = dentry;
1919
b77a493b 1920 ret = -ENOMEM;
3bb56b25 1921 dentry = d_alloc_name(sb->s_root, "policy_capabilities");
b77a493b 1922 if (!dentry)
3bb56b25 1923 goto err;
3bb56b25
PM
1924
1925 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1926 if (ret)
1927 goto err;
1928
1929 policycap_dir = dentry;
1930
b77a493b 1931 return 0;
161ce45a 1932err:
744ba35e
EP
1933 printk(KERN_ERR "SELinux: %s: failed while creating inodes\n",
1934 __func__);
b77a493b 1935 return ret;
1da177e4
LT
1936}
1937
fc14f2fe
AV
1938static struct dentry *sel_mount(struct file_system_type *fs_type,
1939 int flags, const char *dev_name, void *data)
1da177e4 1940{
fc14f2fe 1941 return mount_single(fs_type, flags, data, sel_fill_super);
1da177e4
LT
1942}
1943
1944static struct file_system_type sel_fs_type = {
1945 .name = "selinuxfs",
fc14f2fe 1946 .mount = sel_mount,
1da177e4
LT
1947 .kill_sb = kill_litter_super,
1948};
1949
1950struct vfsmount *selinuxfs_mount;
7a627e3b 1951static struct kobject *selinuxfs_kobj;
1da177e4
LT
1952
1953static int __init init_sel_fs(void)
1954{
1955 int err;
1956
1957 if (!selinux_enabled)
1958 return 0;
7a627e3b
GKH
1959
1960 selinuxfs_kobj = kobject_create_and_add("selinux", fs_kobj);
1961 if (!selinuxfs_kobj)
1962 return -ENOMEM;
1963
1da177e4 1964 err = register_filesystem(&sel_fs_type);
7a627e3b
GKH
1965 if (err) {
1966 kobject_put(selinuxfs_kobj);
b77a493b 1967 return err;
7a627e3b 1968 }
b77a493b
EP
1969
1970 selinuxfs_mount = kern_mount(&sel_fs_type);
1971 if (IS_ERR(selinuxfs_mount)) {
1972 printk(KERN_ERR "selinuxfs: could not mount!\n");
1973 err = PTR_ERR(selinuxfs_mount);
1974 selinuxfs_mount = NULL;
1da177e4 1975 }
b77a493b 1976
1da177e4
LT
1977 return err;
1978}
1979
1980__initcall(init_sel_fs);
1981
1982#ifdef CONFIG_SECURITY_SELINUX_DISABLE
1983void exit_sel_fs(void)
1984{
7a627e3b 1985 kobject_put(selinuxfs_kobj);
423e0ab0 1986 kern_unmount(selinuxfs_mount);
1da177e4
LT
1987 unregister_filesystem(&sel_fs_type);
1988}
1989#endif