3 * Added conditional policy language extensions
7 * Added support for the policy capability bitmap
9 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
10 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, version 2.
17 #include <linux/kernel.h>
18 #include <linux/pagemap.h>
19 #include <linux/slab.h>
20 #include <linux/vmalloc.h>
22 #include <linux/mutex.h>
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>
29 #include <linux/audit.h>
30 #include <linux/uaccess.h>
31 #include <linux/kobject.h>
32 #include <linux/ctype.h>
34 /* selinuxfs pseudo filesystem for exporting the security policy API.
35 Based on the proc code and the fs/nfsd/nfsctl.c code. */
42 #include "conditional.h"
44 /* Policy capability filenames */
45 static char *policycap_names[] = {
46 "network_peer_controls",
50 unsigned int selinux_checkreqprot = CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
52 static int __init checkreqprot_setup(char *str)
54 unsigned long checkreqprot;
55 if (!strict_strtoul(str, 0, &checkreqprot))
56 selinux_checkreqprot = checkreqprot ? 1 : 0;
59 __setup("checkreqprot=", checkreqprot_setup);
61 static DEFINE_MUTEX(sel_mutex);
63 /* global data for booleans */
64 static struct dentry *bool_dir;
66 static char **bool_pending_names;
67 static int *bool_pending_values;
69 /* global data for classes */
70 static struct dentry *class_dir;
71 static unsigned long last_class_ino;
73 static char policy_opened;
75 /* global data for policy capabilities */
76 static struct dentry *policycap_dir;
78 extern void selnl_notify_setenforce(int val);
80 /* Check whether a task is allowed to use a security operation. */
81 static int task_has_security(struct task_struct *tsk,
84 const struct task_security_struct *tsec;
88 tsec = __task_cred(tsk)->security;
95 return avc_has_perm(sid, SECINITSID_SECURITY,
96 SECCLASS_SECURITY, perms, NULL);
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 */
112 SEL_MEMBER, /* compute polyinstantiation membership decision */
113 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
114 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
115 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
116 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
117 SEL_STATUS, /* export current status using mmap() */
118 SEL_POLICY, /* allow userspace to read the in kernel policy */
119 SEL_INO_NEXT, /* The next inode number to use */
122 static unsigned long sel_last_ino = SEL_INO_NEXT - 1;
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
131 static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
132 size_t count, loff_t *ppos)
134 char tmpbuf[TMPBUFLEN];
137 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_enforcing);
138 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
141 #ifdef CONFIG_SECURITY_SELINUX_DEVELOP
142 static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
143 size_t count, loff_t *ppos)
151 if (count >= PAGE_SIZE)
154 /* No partial writes. */
160 page = (char *)get_zeroed_page(GFP_KERNEL);
165 if (copy_from_user(page, buf, count))
169 if (sscanf(page, "%d", &new_value) != 1)
172 if (new_value != selinux_enforcing) {
173 length = task_has_security(current, SECURITY__SETENFORCE);
176 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
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));
181 selinux_enforcing = new_value;
182 if (selinux_enforcing)
184 selnl_notify_setenforce(selinux_enforcing);
185 selinux_status_update_setenforce(selinux_enforcing);
189 free_page((unsigned long) page);
193 #define sel_write_enforce NULL
196 static const struct file_operations sel_enforce_ops = {
197 .read = sel_read_enforce,
198 .write = sel_write_enforce,
199 .llseek = generic_file_llseek,
202 static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
203 size_t count, loff_t *ppos)
205 char tmpbuf[TMPBUFLEN];
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();
211 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
212 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
215 static const struct file_operations sel_handle_unknown_ops = {
216 .read = sel_read_handle_unknown,
217 .llseek = generic_file_llseek,
220 static int sel_open_handle_status(struct inode *inode, struct file *filp)
222 struct page *status = selinux_kernel_status_page();
227 filp->private_data = status;
232 static ssize_t sel_read_handle_status(struct file *filp, char __user *buf,
233 size_t count, loff_t *ppos)
235 struct page *status = filp->private_data;
239 return simple_read_from_buffer(buf, count, ppos,
240 page_address(status),
241 sizeof(struct selinux_kernel_status));
244 static int sel_mmap_handle_status(struct file *filp,
245 struct vm_area_struct *vma)
247 struct page *status = filp->private_data;
248 unsigned long size = vma->vm_end - vma->vm_start;
252 /* only allows one page from the head */
253 if (vma->vm_pgoff > 0 || size != PAGE_SIZE)
255 /* disallow writable mapping */
256 if (vma->vm_flags & VM_WRITE)
258 /* disallow mprotect() turns it into writable */
259 vma->vm_flags &= ~VM_MAYWRITE;
261 return remap_pfn_range(vma, vma->vm_start,
263 size, vma->vm_page_prot);
266 static 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,
273 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
274 static ssize_t sel_write_disable(struct file *file, const char __user *buf,
275 size_t count, loff_t *ppos)
281 extern int selinux_disable(void);
284 if (count >= PAGE_SIZE)
287 /* No partial writes. */
293 page = (char *)get_zeroed_page(GFP_KERNEL);
298 if (copy_from_user(page, buf, count))
302 if (sscanf(page, "%d", &new_value) != 1)
306 length = selinux_disable();
309 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
310 "selinux=0 auid=%u ses=%u",
311 audit_get_loginuid(current),
312 audit_get_sessionid(current));
317 free_page((unsigned long) page);
321 #define sel_write_disable NULL
324 static const struct file_operations sel_disable_ops = {
325 .write = sel_write_disable,
326 .llseek = generic_file_llseek,
329 static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
330 size_t count, loff_t *ppos)
332 char tmpbuf[TMPBUFLEN];
335 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
336 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
339 static const struct file_operations sel_policyvers_ops = {
340 .read = sel_read_policyvers,
341 .llseek = generic_file_llseek,
344 /* declaration for sel_write_load */
345 static int sel_make_bools(void);
346 static int sel_make_classes(void);
347 static int sel_make_policycap(void);
349 /* declaration for sel_make_class_dirs */
350 static int sel_make_dir(struct inode *dir, struct dentry *dentry,
353 static ssize_t sel_read_mls(struct file *filp, char __user *buf,
354 size_t count, loff_t *ppos)
356 char tmpbuf[TMPBUFLEN];
359 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
360 security_mls_enabled());
361 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
364 static const struct file_operations sel_mls_ops = {
365 .read = sel_read_mls,
366 .llseek = generic_file_llseek,
369 struct policy_load_memory {
374 static int sel_open_policy(struct inode *inode, struct file *filp)
376 struct policy_load_memory *plm = NULL;
379 BUG_ON(filp->private_data);
381 mutex_lock(&sel_mutex);
383 rc = task_has_security(current, SECURITY__READ_POLICY);
392 plm = kzalloc(sizeof(*plm), GFP_KERNEL);
396 if (i_size_read(inode) != security_policydb_len()) {
397 mutex_lock(&inode->i_mutex);
398 i_size_write(inode, security_policydb_len());
399 mutex_unlock(&inode->i_mutex);
402 rc = security_read_policy(&plm->data, &plm->len);
408 filp->private_data = plm;
410 mutex_unlock(&sel_mutex);
414 mutex_unlock(&sel_mutex);
422 static int sel_release_policy(struct inode *inode, struct file *filp)
424 struct policy_load_memory *plm = filp->private_data;
436 static ssize_t sel_read_policy(struct file *filp, char __user *buf,
437 size_t count, loff_t *ppos)
439 struct policy_load_memory *plm = filp->private_data;
442 mutex_lock(&sel_mutex);
444 ret = task_has_security(current, SECURITY__READ_POLICY);
448 ret = simple_read_from_buffer(buf, count, ppos, plm->data, plm->len);
450 mutex_unlock(&sel_mutex);
454 static int sel_mmap_policy_fault(struct vm_area_struct *vma,
455 struct vm_fault *vmf)
457 struct policy_load_memory *plm = vma->vm_file->private_data;
458 unsigned long offset;
461 if (vmf->flags & (FAULT_FLAG_MKWRITE | FAULT_FLAG_WRITE))
462 return VM_FAULT_SIGBUS;
464 offset = vmf->pgoff << PAGE_SHIFT;
465 if (offset >= roundup(plm->len, PAGE_SIZE))
466 return VM_FAULT_SIGBUS;
468 page = vmalloc_to_page(plm->data + offset);
476 static struct vm_operations_struct sel_mmap_policy_ops = {
477 .fault = sel_mmap_policy_fault,
478 .page_mkwrite = sel_mmap_policy_fault,
481 int sel_mmap_policy(struct file *filp, struct vm_area_struct *vma)
483 if (vma->vm_flags & VM_SHARED) {
484 /* do not allow mprotect to make mapping writable */
485 vma->vm_flags &= ~VM_MAYWRITE;
487 if (vma->vm_flags & VM_WRITE)
491 vma->vm_flags |= VM_RESERVED;
492 vma->vm_ops = &sel_mmap_policy_ops;
497 static const struct file_operations sel_policy_ops = {
498 .open = sel_open_policy,
499 .read = sel_read_policy,
500 .mmap = sel_mmap_policy,
501 .release = sel_release_policy,
504 static ssize_t sel_write_load(struct file *file, const char __user *buf,
505 size_t count, loff_t *ppos)
511 mutex_lock(&sel_mutex);
513 length = task_has_security(current, SECURITY__LOAD_POLICY);
517 /* No partial writes. */
523 if (count > 64 * 1024 * 1024)
527 data = vmalloc(count);
532 if (copy_from_user(data, buf, count) != 0)
535 length = security_load_policy(data, count);
539 length = sel_make_bools();
543 length = sel_make_classes();
547 length = sel_make_policycap();
554 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
555 "policy loaded auid=%u ses=%u",
556 audit_get_loginuid(current),
557 audit_get_sessionid(current));
559 mutex_unlock(&sel_mutex);
564 static const struct file_operations sel_load_ops = {
565 .write = sel_write_load,
566 .llseek = generic_file_llseek,
569 static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
575 length = task_has_security(current, SECURITY__CHECK_CONTEXT);
579 length = security_context_to_sid(buf, size, &sid);
583 length = security_sid_to_context(sid, &canon, &len);
588 if (len > SIMPLE_TRANSACTION_LIMIT) {
589 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
590 "payload max\n", __func__, len);
594 memcpy(buf, canon, len);
601 static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
602 size_t count, loff_t *ppos)
604 char tmpbuf[TMPBUFLEN];
607 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", selinux_checkreqprot);
608 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
611 static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
612 size_t count, loff_t *ppos)
616 unsigned int new_value;
618 length = task_has_security(current, SECURITY__SETCHECKREQPROT);
623 if (count >= PAGE_SIZE)
626 /* No partial writes. */
632 page = (char *)get_zeroed_page(GFP_KERNEL);
637 if (copy_from_user(page, buf, count))
641 if (sscanf(page, "%u", &new_value) != 1)
644 selinux_checkreqprot = new_value ? 1 : 0;
647 free_page((unsigned long) page);
650 static const struct file_operations sel_checkreqprot_ops = {
651 .read = sel_read_checkreqprot,
652 .write = sel_write_checkreqprot,
653 .llseek = generic_file_llseek,
657 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
659 static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
660 static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
661 static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
662 static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
663 static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
665 static ssize_t (*write_op[])(struct file *, char *, size_t) = {
666 [SEL_ACCESS] = sel_write_access,
667 [SEL_CREATE] = sel_write_create,
668 [SEL_RELABEL] = sel_write_relabel,
669 [SEL_USER] = sel_write_user,
670 [SEL_MEMBER] = sel_write_member,
671 [SEL_CONTEXT] = sel_write_context,
674 static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
676 ino_t ino = file->f_path.dentry->d_inode->i_ino;
680 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
683 data = simple_transaction_get(file, buf, size);
685 return PTR_ERR(data);
687 rv = write_op[ino](file, data, size);
689 simple_transaction_set(file, rv);
695 static const struct file_operations transaction_ops = {
696 .write = selinux_transaction_write,
697 .read = simple_transaction_read,
698 .release = simple_transaction_release,
699 .llseek = generic_file_llseek,
703 * payload - write methods
704 * If the method has a response, the response should be put in buf,
705 * and the length returned. Otherwise return 0 or and -error.
708 static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
710 char *scon = NULL, *tcon = NULL;
713 struct av_decision avd;
716 length = task_has_security(current, SECURITY__COMPUTE_AV);
721 scon = kzalloc(size + 1, GFP_KERNEL);
726 tcon = kzalloc(size + 1, GFP_KERNEL);
731 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
734 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
738 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
742 security_compute_av_user(ssid, tsid, tclass, &avd);
744 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
746 avd.allowed, 0xffffffff,
747 avd.auditallow, avd.auditdeny,
748 avd.seqno, avd.flags);
755 static inline int hexcode_to_int(int code) {
756 if (code == '\0' || !isxdigit(code))
760 return tolower(code) - 'a' + 10;
763 static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
765 char *scon = NULL, *tcon = NULL;
766 char *namebuf = NULL, *objname = NULL;
767 u32 ssid, tsid, newsid;
774 length = task_has_security(current, SECURITY__COMPUTE_CREATE);
779 scon = kzalloc(size + 1, GFP_KERNEL);
784 tcon = kzalloc(size + 1, GFP_KERNEL);
789 namebuf = kzalloc(size + 1, GFP_KERNEL);
794 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
795 if (nargs < 3 || nargs > 4)
799 * If and when the name of new object to be queried contains
800 * either whitespace or multibyte characters, they shall be
801 * encoded based on the percentage-encoding rule.
802 * If not encoded, the sscanf logic picks up only left-half
803 * of the supplied name; splitted by a whitespace unexpectedly.
813 else if (c1 == '%') {
814 if ((c1 = hexcode_to_int(*r++)) < 0)
816 if ((c2 = hexcode_to_int(*r++)) < 0)
821 } while (c1 != '\0');
826 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
830 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
834 length = security_transition_sid_user(ssid, tsid, tclass,
839 length = security_sid_to_context(newsid, &newcon, &len);
844 if (len > SIMPLE_TRANSACTION_LIMIT) {
845 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
846 "payload max\n", __func__, len);
850 memcpy(buf, newcon, len);
860 static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
862 char *scon = NULL, *tcon = NULL;
863 u32 ssid, tsid, newsid;
869 length = task_has_security(current, SECURITY__COMPUTE_RELABEL);
874 scon = kzalloc(size + 1, GFP_KERNEL);
879 tcon = kzalloc(size + 1, GFP_KERNEL);
884 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
887 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
891 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
895 length = security_change_sid(ssid, tsid, tclass, &newsid);
899 length = security_sid_to_context(newsid, &newcon, &len);
904 if (len > SIMPLE_TRANSACTION_LIMIT)
907 memcpy(buf, newcon, len);
916 static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
918 char *con = NULL, *user = NULL, *ptr;
919 u32 sid, *sids = NULL;
925 length = task_has_security(current, SECURITY__COMPUTE_USER);
930 con = kzalloc(size + 1, GFP_KERNEL);
935 user = kzalloc(size + 1, GFP_KERNEL);
940 if (sscanf(buf, "%s %s", con, user) != 2)
943 length = security_context_to_sid(con, strlen(con) + 1, &sid);
947 length = security_get_user_sids(sid, user, &sids, &nsids);
951 length = sprintf(buf, "%u", nsids) + 1;
953 for (i = 0; i < nsids; i++) {
954 rc = security_sid_to_context(sids[i], &newcon, &len);
959 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
964 memcpy(ptr, newcon, len);
976 static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
978 char *scon = NULL, *tcon = NULL;
979 u32 ssid, tsid, newsid;
985 length = task_has_security(current, SECURITY__COMPUTE_MEMBER);
990 scon = kzalloc(size + 1, GFP_KERNEL);
995 tcon = kzalloc(size + 1, GFP_KERNEL);
1000 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
1003 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
1007 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
1011 length = security_member_sid(ssid, tsid, tclass, &newsid);
1015 length = security_sid_to_context(newsid, &newcon, &len);
1020 if (len > SIMPLE_TRANSACTION_LIMIT) {
1021 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
1022 "payload max\n", __func__, len);
1026 memcpy(buf, newcon, len);
1035 static struct inode *sel_make_inode(struct super_block *sb, int mode)
1037 struct inode *ret = new_inode(sb);
1041 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
1046 static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1047 size_t count, loff_t *ppos)
1053 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;
1057 mutex_lock(&sel_mutex);
1060 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
1064 page = (char *)get_zeroed_page(GFP_KERNEL);
1068 cur_enforcing = security_get_bool_value(index);
1069 if (cur_enforcing < 0) {
1070 ret = cur_enforcing;
1073 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
1074 bool_pending_values[index]);
1075 ret = simple_read_from_buffer(buf, count, ppos, page, length);
1077 mutex_unlock(&sel_mutex);
1078 free_page((unsigned long)page);
1082 static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1083 size_t count, loff_t *ppos)
1088 struct inode *inode = filep->f_path.dentry->d_inode;
1089 unsigned index = inode->i_ino & SEL_INO_MASK;
1090 const char *name = filep->f_path.dentry->d_name.name;
1092 mutex_lock(&sel_mutex);
1094 length = task_has_security(current, SECURITY__SETBOOL);
1099 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
1103 if (count >= PAGE_SIZE)
1106 /* No partial writes. */
1112 page = (char *)get_zeroed_page(GFP_KERNEL);
1117 if (copy_from_user(page, buf, count))
1121 if (sscanf(page, "%d", &new_value) != 1)
1127 bool_pending_values[index] = new_value;
1131 mutex_unlock(&sel_mutex);
1132 free_page((unsigned long) page);
1136 static const struct file_operations sel_bool_ops = {
1137 .read = sel_read_bool,
1138 .write = sel_write_bool,
1139 .llseek = generic_file_llseek,
1142 static ssize_t sel_commit_bools_write(struct file *filep,
1143 const char __user *buf,
1144 size_t count, loff_t *ppos)
1150 mutex_lock(&sel_mutex);
1152 length = task_has_security(current, SECURITY__SETBOOL);
1157 if (count >= PAGE_SIZE)
1160 /* No partial writes. */
1166 page = (char *)get_zeroed_page(GFP_KERNEL);
1171 if (copy_from_user(page, buf, count))
1175 if (sscanf(page, "%d", &new_value) != 1)
1179 if (new_value && bool_pending_values)
1180 length = security_set_bools(bool_num, bool_pending_values);
1186 mutex_unlock(&sel_mutex);
1187 free_page((unsigned long) page);
1191 static const struct file_operations sel_commit_bools_ops = {
1192 .write = sel_commit_bools_write,
1193 .llseek = generic_file_llseek,
1196 static void sel_remove_entries(struct dentry *de)
1198 struct list_head *node;
1200 spin_lock(&de->d_lock);
1201 node = de->d_subdirs.next;
1202 while (node != &de->d_subdirs) {
1203 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
1205 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
1206 list_del_init(node);
1210 spin_unlock(&de->d_lock);
1211 spin_unlock(&d->d_lock);
1213 simple_unlink(de->d_inode, d);
1215 spin_lock(&de->d_lock);
1217 spin_unlock(&d->d_lock);
1218 node = de->d_subdirs.next;
1221 spin_unlock(&de->d_lock);
1224 #define BOOL_DIR_NAME "booleans"
1226 static int sel_make_bools(void)
1230 struct dentry *dentry = NULL;
1231 struct dentry *dir = bool_dir;
1232 struct inode *inode = NULL;
1233 struct inode_security_struct *isec;
1234 char **names = NULL, *page;
1239 /* remove any existing files */
1240 for (i = 0; i < bool_num; i++)
1241 kfree(bool_pending_names[i]);
1242 kfree(bool_pending_names);
1243 kfree(bool_pending_values);
1244 bool_pending_names = NULL;
1245 bool_pending_values = NULL;
1247 sel_remove_entries(dir);
1250 page = (char *)get_zeroed_page(GFP_KERNEL);
1254 ret = security_get_bools(&num, &names, &values);
1258 for (i = 0; i < num; i++) {
1260 dentry = d_alloc_name(dir, names[i]);
1265 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
1270 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
1274 ret = -ENAMETOOLONG;
1275 if (len >= PAGE_SIZE)
1278 isec = (struct inode_security_struct *)inode->i_security;
1279 ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid);
1284 isec->initialized = 1;
1285 inode->i_fop = &sel_bool_ops;
1286 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
1287 d_add(dentry, inode);
1290 bool_pending_names = names;
1291 bool_pending_values = values;
1293 free_page((unsigned long)page);
1296 free_page((unsigned long)page);
1299 for (i = 0; i < num; i++)
1304 sel_remove_entries(dir);
1309 #define NULL_FILE_NAME "null"
1311 struct dentry *selinux_null;
1313 static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1314 size_t count, loff_t *ppos)
1316 char tmpbuf[TMPBUFLEN];
1319 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1320 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1323 static ssize_t sel_write_avc_cache_threshold(struct file *file,
1324 const char __user *buf,
1325 size_t count, loff_t *ppos)
1332 ret = task_has_security(current, SECURITY__SETSECPARAM);
1337 if (count >= PAGE_SIZE)
1340 /* No partial writes. */
1346 page = (char *)get_zeroed_page(GFP_KERNEL);
1351 if (copy_from_user(page, buf, count))
1355 if (sscanf(page, "%u", &new_value) != 1)
1358 avc_cache_threshold = new_value;
1362 free_page((unsigned long)page);
1366 static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1367 size_t count, loff_t *ppos)
1372 page = (char *)__get_free_page(GFP_KERNEL);
1376 length = avc_get_hash_stats(page);
1378 length = simple_read_from_buffer(buf, count, ppos, page, length);
1379 free_page((unsigned long)page);
1384 static const struct file_operations sel_avc_cache_threshold_ops = {
1385 .read = sel_read_avc_cache_threshold,
1386 .write = sel_write_avc_cache_threshold,
1387 .llseek = generic_file_llseek,
1390 static const struct file_operations sel_avc_hash_stats_ops = {
1391 .read = sel_read_avc_hash_stats,
1392 .llseek = generic_file_llseek,
1395 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1396 static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1400 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
1401 if (!cpu_possible(cpu))
1404 return &per_cpu(avc_cache_stats, cpu);
1409 static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1411 loff_t n = *pos - 1;
1414 return SEQ_START_TOKEN;
1416 return sel_avc_get_stat_idx(&n);
1419 static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1421 return sel_avc_get_stat_idx(pos);
1424 static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1426 struct avc_cache_stats *st = v;
1428 if (v == SEQ_START_TOKEN)
1429 seq_printf(seq, "lookups hits misses allocations reclaims "
1432 unsigned int lookups = st->lookups;
1433 unsigned int misses = st->misses;
1434 unsigned int hits = lookups - misses;
1435 seq_printf(seq, "%u %u %u %u %u %u\n", lookups,
1436 hits, misses, st->allocations,
1437 st->reclaims, st->frees);
1442 static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1445 static const struct seq_operations sel_avc_cache_stats_seq_ops = {
1446 .start = sel_avc_stats_seq_start,
1447 .next = sel_avc_stats_seq_next,
1448 .show = sel_avc_stats_seq_show,
1449 .stop = sel_avc_stats_seq_stop,
1452 static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1454 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1457 static const struct file_operations sel_avc_cache_stats_ops = {
1458 .open = sel_open_avc_cache_stats,
1460 .llseek = seq_lseek,
1461 .release = seq_release,
1465 static int sel_make_avc_files(struct dentry *dir)
1468 static struct tree_descr files[] = {
1469 { "cache_threshold",
1470 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1471 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1472 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1473 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1477 for (i = 0; i < ARRAY_SIZE(files); i++) {
1478 struct inode *inode;
1479 struct dentry *dentry;
1481 dentry = d_alloc_name(dir, files[i].name);
1485 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
1489 inode->i_fop = files[i].ops;
1490 inode->i_ino = ++sel_last_ino;
1491 d_add(dentry, inode);
1497 static ssize_t sel_read_initcon(struct file *file, char __user *buf,
1498 size_t count, loff_t *ppos)
1500 struct inode *inode;
1505 inode = file->f_path.dentry->d_inode;
1506 sid = inode->i_ino&SEL_INO_MASK;
1507 ret = security_sid_to_context(sid, &con, &len);
1511 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1516 static const struct file_operations sel_initcon_ops = {
1517 .read = sel_read_initcon,
1518 .llseek = generic_file_llseek,
1521 static int sel_make_initcon_files(struct dentry *dir)
1525 for (i = 1; i <= SECINITSID_NUM; i++) {
1526 struct inode *inode;
1527 struct dentry *dentry;
1528 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
1532 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1536 inode->i_fop = &sel_initcon_ops;
1537 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1538 d_add(dentry, inode);
1544 static inline unsigned int sel_div(unsigned long a, unsigned long b)
1546 return a / b - (a % b < 0);
1549 static inline unsigned long sel_class_to_ino(u16 class)
1551 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1554 static inline u16 sel_ino_to_class(unsigned long ino)
1556 return sel_div(ino & SEL_INO_MASK, SEL_VEC_MAX + 1);
1559 static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1561 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1564 static inline u32 sel_ino_to_perm(unsigned long ino)
1566 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1569 static ssize_t sel_read_class(struct file *file, char __user *buf,
1570 size_t count, loff_t *ppos)
1574 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1576 page = (char *)__get_free_page(GFP_KERNEL);
1580 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_class(ino));
1581 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1582 free_page((unsigned long)page);
1587 static const struct file_operations sel_class_ops = {
1588 .read = sel_read_class,
1589 .llseek = generic_file_llseek,
1592 static ssize_t sel_read_perm(struct file *file, char __user *buf,
1593 size_t count, loff_t *ppos)
1597 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1599 page = (char *)__get_free_page(GFP_KERNEL);
1603 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_perm(ino));
1604 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1605 free_page((unsigned long)page);
1610 static const struct file_operations sel_perm_ops = {
1611 .read = sel_read_perm,
1612 .llseek = generic_file_llseek,
1615 static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1616 size_t count, loff_t *ppos)
1619 char tmpbuf[TMPBUFLEN];
1621 unsigned long i_ino = file->f_path.dentry->d_inode->i_ino;
1623 value = security_policycap_supported(i_ino & SEL_INO_MASK);
1624 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1626 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1629 static const struct file_operations sel_policycap_ops = {
1630 .read = sel_read_policycap,
1631 .llseek = generic_file_llseek,
1634 static int sel_make_perm_files(char *objclass, int classvalue,
1640 rc = security_get_permissions(objclass, &perms, &nperms);
1644 for (i = 0; i < nperms; i++) {
1645 struct inode *inode;
1646 struct dentry *dentry;
1649 dentry = d_alloc_name(dir, perms[i]);
1654 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1658 inode->i_fop = &sel_perm_ops;
1659 /* i+1 since perm values are 1-indexed */
1660 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
1661 d_add(dentry, inode);
1665 for (i = 0; i < nperms; i++)
1671 static int sel_make_class_dir_entries(char *classname, int index,
1674 struct dentry *dentry = NULL;
1675 struct inode *inode = NULL;
1678 dentry = d_alloc_name(dir, "index");
1682 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1686 inode->i_fop = &sel_class_ops;
1687 inode->i_ino = sel_class_to_ino(index);
1688 d_add(dentry, inode);
1690 dentry = d_alloc_name(dir, "perms");
1694 rc = sel_make_dir(dir->d_inode, dentry, &last_class_ino);
1698 rc = sel_make_perm_files(classname, index, dentry);
1703 static void sel_remove_classes(void)
1705 struct list_head *class_node;
1707 list_for_each(class_node, &class_dir->d_subdirs) {
1708 struct dentry *class_subdir = list_entry(class_node,
1709 struct dentry, d_u.d_child);
1710 struct list_head *class_subdir_node;
1712 list_for_each(class_subdir_node, &class_subdir->d_subdirs) {
1713 struct dentry *d = list_entry(class_subdir_node,
1714 struct dentry, d_u.d_child);
1717 if (d->d_inode->i_mode & S_IFDIR)
1718 sel_remove_entries(d);
1721 sel_remove_entries(class_subdir);
1724 sel_remove_entries(class_dir);
1727 static int sel_make_classes(void)
1729 int rc, nclasses, i;
1732 /* delete any existing entries */
1733 sel_remove_classes();
1735 rc = security_get_classes(&classes, &nclasses);
1739 /* +2 since classes are 1-indexed */
1740 last_class_ino = sel_class_to_ino(nclasses + 2);
1742 for (i = 0; i < nclasses; i++) {
1743 struct dentry *class_name_dir;
1746 class_name_dir = d_alloc_name(class_dir, classes[i]);
1747 if (!class_name_dir)
1750 rc = sel_make_dir(class_dir->d_inode, class_name_dir,
1755 /* i+1 since class values are 1-indexed */
1756 rc = sel_make_class_dir_entries(classes[i], i + 1,
1763 for (i = 0; i < nclasses; i++)
1769 static int sel_make_policycap(void)
1772 struct dentry *dentry = NULL;
1773 struct inode *inode = NULL;
1775 sel_remove_entries(policycap_dir);
1777 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
1778 if (iter < ARRAY_SIZE(policycap_names))
1779 dentry = d_alloc_name(policycap_dir,
1780 policycap_names[iter]);
1782 dentry = d_alloc_name(policycap_dir, "unknown");
1787 inode = sel_make_inode(policycap_dir->d_sb, S_IFREG | S_IRUGO);
1791 inode->i_fop = &sel_policycap_ops;
1792 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1793 d_add(dentry, inode);
1799 static int sel_make_dir(struct inode *dir, struct dentry *dentry,
1802 struct inode *inode;
1804 inode = sel_make_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
1808 inode->i_op = &simple_dir_inode_operations;
1809 inode->i_fop = &simple_dir_operations;
1810 inode->i_ino = ++(*ino);
1811 /* directory inodes start off with i_nlink == 2 (for "." entry) */
1813 d_add(dentry, inode);
1814 /* bump link count on parent directory, too */
1820 static int sel_fill_super(struct super_block *sb, void *data, int silent)
1823 struct dentry *dentry;
1824 struct inode *inode, *root_inode;
1825 struct inode_security_struct *isec;
1827 static struct tree_descr selinux_files[] = {
1828 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1829 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
1830 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
1831 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1832 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1833 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1834 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1835 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1836 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1837 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1838 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1839 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1840 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
1841 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1842 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
1843 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
1844 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUSR},
1847 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1851 root_inode = sb->s_root->d_inode;
1854 dentry = d_alloc_name(sb->s_root, BOOL_DIR_NAME);
1858 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1865 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
1870 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
1874 inode->i_ino = ++sel_last_ino;
1875 isec = (struct inode_security_struct *)inode->i_security;
1876 isec->sid = SECINITSID_DEVNULL;
1877 isec->sclass = SECCLASS_CHR_FILE;
1878 isec->initialized = 1;
1880 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1881 d_add(dentry, inode);
1882 selinux_null = dentry;
1885 dentry = d_alloc_name(sb->s_root, "avc");
1889 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1893 ret = sel_make_avc_files(dentry);
1898 dentry = d_alloc_name(sb->s_root, "initial_contexts");
1902 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1906 ret = sel_make_initcon_files(dentry);
1911 dentry = d_alloc_name(sb->s_root, "class");
1915 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1922 dentry = d_alloc_name(sb->s_root, "policy_capabilities");
1926 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1930 policycap_dir = dentry;
1934 printk(KERN_ERR "SELinux: %s: failed while creating inodes\n",
1939 static struct dentry *sel_mount(struct file_system_type *fs_type,
1940 int flags, const char *dev_name, void *data)
1942 return mount_single(fs_type, flags, data, sel_fill_super);
1945 static struct file_system_type sel_fs_type = {
1946 .name = "selinuxfs",
1948 .kill_sb = kill_litter_super,
1951 struct vfsmount *selinuxfs_mount;
1952 static struct kobject *selinuxfs_kobj;
1954 static int __init init_sel_fs(void)
1958 if (!selinux_enabled)
1961 selinuxfs_kobj = kobject_create_and_add("selinux", fs_kobj);
1962 if (!selinuxfs_kobj)
1965 err = register_filesystem(&sel_fs_type);
1967 kobject_put(selinuxfs_kobj);
1971 selinuxfs_mount = kern_mount(&sel_fs_type);
1972 if (IS_ERR(selinuxfs_mount)) {
1973 printk(KERN_ERR "selinuxfs: could not mount!\n");
1974 err = PTR_ERR(selinuxfs_mount);
1975 selinuxfs_mount = NULL;
1981 __initcall(init_sel_fs);
1983 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
1984 void exit_sel_fs(void)
1986 kobject_put(selinuxfs_kobj);
1987 kern_unmount(selinuxfs_mount);
1988 unregister_filesystem(&sel_fs_type);