1 /* Updated: Karl MacMillan <kmacmillan@tresys.com>
3 * Added conditional policy language extensions
5 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
6 * Copyright (C) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, version 2.
12 #include <linux/kernel.h>
13 #include <linux/pagemap.h>
14 #include <linux/slab.h>
15 #include <linux/vmalloc.h>
17 #include <linux/mutex.h>
18 #include <linux/init.h>
19 #include <linux/string.h>
20 #include <linux/security.h>
21 #include <linux/major.h>
22 #include <linux/seq_file.h>
23 #include <linux/percpu.h>
24 #include <linux/audit.h>
25 #include <asm/uaccess.h>
26 #include <asm/semaphore.h>
28 /* selinuxfs pseudo filesystem for exporting the security policy API.
29 Based on the proc code and the fs/nfsd/nfsctl.c code. */
36 #include "conditional.h"
38 unsigned int selinux_checkreqprot = CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
40 #ifdef CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT
41 #define SELINUX_COMPAT_NET_VALUE 0
43 #define SELINUX_COMPAT_NET_VALUE 1
46 int selinux_compat_net = SELINUX_COMPAT_NET_VALUE;
48 static int __init checkreqprot_setup(char *str)
50 selinux_checkreqprot = simple_strtoul(str,NULL,0) ? 1 : 0;
53 __setup("checkreqprot=", checkreqprot_setup);
55 static int __init selinux_compat_net_setup(char *str)
57 selinux_compat_net = simple_strtoul(str,NULL,0) ? 1 : 0;
60 __setup("selinux_compat_net=", selinux_compat_net_setup);
63 static DEFINE_MUTEX(sel_mutex);
65 /* global data for booleans */
66 static struct dentry *bool_dir = NULL;
67 static int bool_num = 0;
68 static int *bool_pending_values = NULL;
70 /* global data for classes */
71 static struct dentry *class_dir = NULL;
72 static unsigned long last_class_ino;
74 extern void selnl_notify_setenforce(int val);
76 /* Check whether a task is allowed to use a security operation. */
77 static int task_has_security(struct task_struct *tsk,
80 struct task_security_struct *tsec;
86 return avc_has_perm(tsec->sid, SECINITSID_SECURITY,
87 SECCLASS_SECURITY, perms, NULL);
92 SEL_LOAD, /* load policy */
93 SEL_ENFORCE, /* get or set enforcing status */
94 SEL_CONTEXT, /* validate context */
95 SEL_ACCESS, /* compute access decision */
96 SEL_CREATE, /* compute create labeling decision */
97 SEL_RELABEL, /* compute relabeling decision */
98 SEL_USER, /* compute reachable user contexts */
99 SEL_POLICYVERS, /* return policy version for this kernel */
100 SEL_COMMIT_BOOLS, /* commit new boolean values */
101 SEL_MLS, /* return if MLS policy is enabled */
102 SEL_DISABLE, /* disable SELinux until next reboot */
103 SEL_MEMBER, /* compute polyinstantiation membership decision */
104 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
105 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
106 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
107 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
108 SEL_INO_NEXT, /* The next inode number to use */
111 static unsigned long sel_last_ino = SEL_INO_NEXT - 1;
113 #define SEL_INITCON_INO_OFFSET 0x01000000
114 #define SEL_BOOL_INO_OFFSET 0x02000000
115 #define SEL_CLASS_INO_OFFSET 0x04000000
116 #define SEL_INO_MASK 0x00ffffff
119 static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
120 size_t count, loff_t *ppos)
122 char tmpbuf[TMPBUFLEN];
125 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_enforcing);
126 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
129 #ifdef CONFIG_SECURITY_SELINUX_DEVELOP
130 static ssize_t sel_write_enforce(struct file * file, const char __user * buf,
131 size_t count, loff_t *ppos)
138 if (count >= PAGE_SIZE)
141 /* No partial writes. */
144 page = (char*)get_zeroed_page(GFP_KERNEL);
148 if (copy_from_user(page, buf, count))
152 if (sscanf(page, "%d", &new_value) != 1)
155 if (new_value != selinux_enforcing) {
156 length = task_has_security(current, SECURITY__SETENFORCE);
159 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
160 "enforcing=%d old_enforcing=%d auid=%u", new_value,
162 audit_get_loginuid(current->audit_context));
163 selinux_enforcing = new_value;
164 if (selinux_enforcing)
166 selnl_notify_setenforce(selinux_enforcing);
170 free_page((unsigned long) page);
174 #define sel_write_enforce NULL
177 static const struct file_operations sel_enforce_ops = {
178 .read = sel_read_enforce,
179 .write = sel_write_enforce,
182 static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
183 size_t count, loff_t *ppos)
185 char tmpbuf[TMPBUFLEN];
187 ino_t ino = filp->f_path.dentry->d_inode->i_ino;
188 int handle_unknown = (ino == SEL_REJECT_UNKNOWN) ?
189 security_get_reject_unknown() : !security_get_allow_unknown();
191 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
192 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
195 static const struct file_operations sel_handle_unknown_ops = {
196 .read = sel_read_handle_unknown,
199 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
200 static ssize_t sel_write_disable(struct file * file, const char __user * buf,
201 size_t count, loff_t *ppos)
207 extern int selinux_disable(void);
209 if (count >= PAGE_SIZE)
212 /* No partial writes. */
215 page = (char*)get_zeroed_page(GFP_KERNEL);
219 if (copy_from_user(page, buf, count))
223 if (sscanf(page, "%d", &new_value) != 1)
227 length = selinux_disable();
230 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
232 audit_get_loginuid(current->audit_context));
237 free_page((unsigned long) page);
241 #define sel_write_disable NULL
244 static const struct file_operations sel_disable_ops = {
245 .write = sel_write_disable,
248 static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
249 size_t count, loff_t *ppos)
251 char tmpbuf[TMPBUFLEN];
254 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
255 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
258 static const struct file_operations sel_policyvers_ops = {
259 .read = sel_read_policyvers,
262 /* declaration for sel_write_load */
263 static int sel_make_bools(void);
264 static int sel_make_classes(void);
266 /* declaration for sel_make_class_dirs */
267 static int sel_make_dir(struct inode *dir, struct dentry *dentry,
270 static ssize_t sel_read_mls(struct file *filp, char __user *buf,
271 size_t count, loff_t *ppos)
273 char tmpbuf[TMPBUFLEN];
276 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_mls_enabled);
277 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
280 static const struct file_operations sel_mls_ops = {
281 .read = sel_read_mls,
284 static ssize_t sel_write_load(struct file * file, const char __user * buf,
285 size_t count, loff_t *ppos)
292 mutex_lock(&sel_mutex);
294 length = task_has_security(current, SECURITY__LOAD_POLICY);
299 /* No partial writes. */
304 if ((count > 64 * 1024 * 1024)
305 || (data = vmalloc(count)) == NULL) {
311 if (copy_from_user(data, buf, count) != 0)
314 length = security_load_policy(data, count);
318 ret = sel_make_bools();
324 ret = sel_make_classes();
332 printk(KERN_INFO "SELinux: policy loaded with handle_unknown=%s\n",
333 (security_get_reject_unknown() ? "reject" :
334 (security_get_allow_unknown() ? "allow" : "deny")));
336 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
337 "policy loaded auid=%u",
338 audit_get_loginuid(current->audit_context));
340 mutex_unlock(&sel_mutex);
345 static const struct file_operations sel_load_ops = {
346 .write = sel_write_load,
349 static ssize_t sel_write_context(struct file * file, char *buf, size_t size)
355 length = task_has_security(current, SECURITY__CHECK_CONTEXT);
359 length = security_context_to_sid(buf, size, &sid);
363 length = security_sid_to_context(sid, &canon, &len);
367 if (len > SIMPLE_TRANSACTION_LIMIT) {
368 printk(KERN_ERR "%s: context size (%u) exceeds payload "
369 "max\n", __FUNCTION__, len);
374 memcpy(buf, canon, len);
381 static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
382 size_t count, loff_t *ppos)
384 char tmpbuf[TMPBUFLEN];
387 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", selinux_checkreqprot);
388 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
391 static ssize_t sel_write_checkreqprot(struct file * file, const char __user * buf,
392 size_t count, loff_t *ppos)
396 unsigned int new_value;
398 length = task_has_security(current, SECURITY__SETCHECKREQPROT);
402 if (count >= PAGE_SIZE)
405 /* No partial writes. */
408 page = (char*)get_zeroed_page(GFP_KERNEL);
412 if (copy_from_user(page, buf, count))
416 if (sscanf(page, "%u", &new_value) != 1)
419 selinux_checkreqprot = new_value ? 1 : 0;
422 free_page((unsigned long) page);
425 static const struct file_operations sel_checkreqprot_ops = {
426 .read = sel_read_checkreqprot,
427 .write = sel_write_checkreqprot,
430 static ssize_t sel_read_compat_net(struct file *filp, char __user *buf,
431 size_t count, loff_t *ppos)
433 char tmpbuf[TMPBUFLEN];
436 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_compat_net);
437 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
440 static ssize_t sel_write_compat_net(struct file * file, const char __user * buf,
441 size_t count, loff_t *ppos)
447 length = task_has_security(current, SECURITY__LOAD_POLICY);
451 if (count >= PAGE_SIZE)
454 /* No partial writes. */
457 page = (char*)get_zeroed_page(GFP_KERNEL);
461 if (copy_from_user(page, buf, count))
465 if (sscanf(page, "%d", &new_value) != 1)
468 selinux_compat_net = new_value ? 1 : 0;
471 free_page((unsigned long) page);
474 static const struct file_operations sel_compat_net_ops = {
475 .read = sel_read_compat_net,
476 .write = sel_write_compat_net,
480 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
482 static ssize_t sel_write_access(struct file * file, char *buf, size_t size);
483 static ssize_t sel_write_create(struct file * file, char *buf, size_t size);
484 static ssize_t sel_write_relabel(struct file * file, char *buf, size_t size);
485 static ssize_t sel_write_user(struct file * file, char *buf, size_t size);
486 static ssize_t sel_write_member(struct file * file, char *buf, size_t size);
488 static ssize_t (*write_op[])(struct file *, char *, size_t) = {
489 [SEL_ACCESS] = sel_write_access,
490 [SEL_CREATE] = sel_write_create,
491 [SEL_RELABEL] = sel_write_relabel,
492 [SEL_USER] = sel_write_user,
493 [SEL_MEMBER] = sel_write_member,
494 [SEL_CONTEXT] = sel_write_context,
497 static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
499 ino_t ino = file->f_path.dentry->d_inode->i_ino;
503 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
506 data = simple_transaction_get(file, buf, size);
508 return PTR_ERR(data);
510 rv = write_op[ino](file, data, size);
512 simple_transaction_set(file, rv);
518 static const struct file_operations transaction_ops = {
519 .write = selinux_transaction_write,
520 .read = simple_transaction_read,
521 .release = simple_transaction_release,
525 * payload - write methods
526 * If the method has a response, the response should be put in buf,
527 * and the length returned. Otherwise return 0 or and -error.
530 static ssize_t sel_write_access(struct file * file, char *buf, size_t size)
536 struct av_decision avd;
539 length = task_has_security(current, SECURITY__COMPUTE_AV);
544 scon = kzalloc(size+1, GFP_KERNEL);
548 tcon = kzalloc(size+1, GFP_KERNEL);
553 if (sscanf(buf, "%s %s %hu %x", scon, tcon, &tclass, &req) != 4)
556 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
559 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
563 length = security_compute_av(ssid, tsid, tclass, req, &avd);
567 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
569 avd.allowed, avd.decided,
570 avd.auditallow, avd.auditdeny,
579 static ssize_t sel_write_create(struct file * file, char *buf, size_t size)
582 u32 ssid, tsid, newsid;
588 length = task_has_security(current, SECURITY__COMPUTE_CREATE);
593 scon = kzalloc(size+1, GFP_KERNEL);
597 tcon = kzalloc(size+1, GFP_KERNEL);
602 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
605 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
608 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
612 length = security_transition_sid(ssid, tsid, tclass, &newsid);
616 length = security_sid_to_context(newsid, &newcon, &len);
620 if (len > SIMPLE_TRANSACTION_LIMIT) {
621 printk(KERN_ERR "%s: context size (%u) exceeds payload "
622 "max\n", __FUNCTION__, len);
627 memcpy(buf, newcon, len);
638 static ssize_t sel_write_relabel(struct file * file, char *buf, size_t size)
641 u32 ssid, tsid, newsid;
647 length = task_has_security(current, SECURITY__COMPUTE_RELABEL);
652 scon = kzalloc(size+1, GFP_KERNEL);
656 tcon = kzalloc(size+1, GFP_KERNEL);
661 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
664 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
667 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
671 length = security_change_sid(ssid, tsid, tclass, &newsid);
675 length = security_sid_to_context(newsid, &newcon, &len);
679 if (len > SIMPLE_TRANSACTION_LIMIT) {
684 memcpy(buf, newcon, len);
695 static ssize_t sel_write_user(struct file * file, char *buf, size_t size)
697 char *con, *user, *ptr;
704 length = task_has_security(current, SECURITY__COMPUTE_USER);
709 con = kzalloc(size+1, GFP_KERNEL);
713 user = kzalloc(size+1, GFP_KERNEL);
718 if (sscanf(buf, "%s %s", con, user) != 2)
721 length = security_context_to_sid(con, strlen(con)+1, &sid);
725 length = security_get_user_sids(sid, user, &sids, &nsids);
729 length = sprintf(buf, "%u", nsids) + 1;
731 for (i = 0; i < nsids; i++) {
732 rc = security_sid_to_context(sids[i], &newcon, &len);
737 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
742 memcpy(ptr, newcon, len);
756 static ssize_t sel_write_member(struct file * file, char *buf, size_t size)
759 u32 ssid, tsid, newsid;
765 length = task_has_security(current, SECURITY__COMPUTE_MEMBER);
770 scon = kzalloc(size+1, GFP_KERNEL);
774 tcon = kzalloc(size+1, GFP_KERNEL);
779 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
782 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
785 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
789 length = security_member_sid(ssid, tsid, tclass, &newsid);
793 length = security_sid_to_context(newsid, &newcon, &len);
797 if (len > SIMPLE_TRANSACTION_LIMIT) {
798 printk(KERN_ERR "%s: context size (%u) exceeds payload "
799 "max\n", __FUNCTION__, len);
804 memcpy(buf, newcon, len);
815 static struct inode *sel_make_inode(struct super_block *sb, int mode)
817 struct inode *ret = new_inode(sb);
821 ret->i_uid = ret->i_gid = 0;
823 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
828 static ssize_t sel_read_bool(struct file *filep, char __user *buf,
829 size_t count, loff_t *ppos)
837 mutex_lock(&sel_mutex);
841 /* check to see if this file has been deleted */
845 if (count > PAGE_SIZE) {
849 if (!(page = (char*)get_zeroed_page(GFP_KERNEL))) {
854 inode = filep->f_path.dentry->d_inode;
855 cur_enforcing = security_get_bool_value(inode->i_ino&SEL_INO_MASK);
856 if (cur_enforcing < 0) {
861 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
862 bool_pending_values[inode->i_ino&SEL_INO_MASK]);
863 ret = simple_read_from_buffer(buf, count, ppos, page, length);
865 mutex_unlock(&sel_mutex);
867 free_page((unsigned long)page);
871 static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
872 size_t count, loff_t *ppos)
875 ssize_t length = -EFAULT;
879 mutex_lock(&sel_mutex);
881 length = task_has_security(current, SECURITY__SETBOOL);
885 /* check to see if this file has been deleted */
889 if (count >= PAGE_SIZE) {
894 /* No partial writes. */
897 page = (char*)get_zeroed_page(GFP_KERNEL);
903 if (copy_from_user(page, buf, count))
907 if (sscanf(page, "%d", &new_value) != 1)
913 inode = filep->f_path.dentry->d_inode;
914 bool_pending_values[inode->i_ino&SEL_INO_MASK] = new_value;
918 mutex_unlock(&sel_mutex);
920 free_page((unsigned long) page);
924 static const struct file_operations sel_bool_ops = {
925 .read = sel_read_bool,
926 .write = sel_write_bool,
929 static ssize_t sel_commit_bools_write(struct file *filep,
930 const char __user *buf,
931 size_t count, loff_t *ppos)
934 ssize_t length = -EFAULT;
937 mutex_lock(&sel_mutex);
939 length = task_has_security(current, SECURITY__SETBOOL);
943 /* check to see if this file has been deleted */
947 if (count >= PAGE_SIZE) {
952 /* No partial writes. */
955 page = (char*)get_zeroed_page(GFP_KERNEL);
961 if (copy_from_user(page, buf, count))
965 if (sscanf(page, "%d", &new_value) != 1)
968 if (new_value && bool_pending_values) {
969 security_set_bools(bool_num, bool_pending_values);
975 mutex_unlock(&sel_mutex);
977 free_page((unsigned long) page);
981 static const struct file_operations sel_commit_bools_ops = {
982 .write = sel_commit_bools_write,
985 /* partial revoke() from fs/proc/generic.c proc_kill_inodes */
986 static void sel_remove_entries(struct dentry *de)
988 struct list_head *p, *node;
989 struct super_block *sb = de->d_sb;
991 spin_lock(&dcache_lock);
992 node = de->d_subdirs.next;
993 while (node != &de->d_subdirs) {
994 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
999 spin_unlock(&dcache_lock);
1001 simple_unlink(de->d_inode, d);
1003 spin_lock(&dcache_lock);
1005 node = de->d_subdirs.next;
1008 spin_unlock(&dcache_lock);
1011 list_for_each(p, &sb->s_files) {
1012 struct file * filp = list_entry(p, struct file, f_u.fu_list);
1013 struct dentry * dentry = filp->f_path.dentry;
1015 if (dentry->d_parent != de) {
1023 #define BOOL_DIR_NAME "booleans"
1025 static int sel_make_bools(void)
1029 struct dentry *dentry = NULL;
1030 struct dentry *dir = bool_dir;
1031 struct inode *inode = NULL;
1032 struct inode_security_struct *isec;
1033 char **names = NULL, *page;
1038 /* remove any existing files */
1039 kfree(bool_pending_values);
1040 bool_pending_values = NULL;
1042 sel_remove_entries(dir);
1044 if (!(page = (char*)get_zeroed_page(GFP_KERNEL)))
1047 ret = security_get_bools(&num, &names, &values);
1051 for (i = 0; i < num; i++) {
1052 dentry = d_alloc_name(dir, names[i]);
1057 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
1063 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
1067 } else if (len >= PAGE_SIZE) {
1068 ret = -ENAMETOOLONG;
1071 isec = (struct inode_security_struct*)inode->i_security;
1072 if ((ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid)))
1075 isec->initialized = 1;
1076 inode->i_fop = &sel_bool_ops;
1077 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
1078 d_add(dentry, inode);
1081 bool_pending_values = values;
1083 free_page((unsigned long)page);
1085 for (i = 0; i < num; i++)
1092 sel_remove_entries(dir);
1097 #define NULL_FILE_NAME "null"
1099 struct dentry *selinux_null = NULL;
1101 static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1102 size_t count, loff_t *ppos)
1104 char tmpbuf[TMPBUFLEN];
1107 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1108 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1111 static ssize_t sel_write_avc_cache_threshold(struct file * file,
1112 const char __user * buf,
1113 size_t count, loff_t *ppos)
1120 if (count >= PAGE_SIZE) {
1126 /* No partial writes. */
1131 page = (char*)get_zeroed_page(GFP_KERNEL);
1137 if (copy_from_user(page, buf, count)) {
1142 if (sscanf(page, "%u", &new_value) != 1) {
1147 if (new_value != avc_cache_threshold) {
1148 ret = task_has_security(current, SECURITY__SETSECPARAM);
1151 avc_cache_threshold = new_value;
1155 free_page((unsigned long)page);
1160 static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1161 size_t count, loff_t *ppos)
1166 page = (char *)__get_free_page(GFP_KERNEL);
1171 ret = avc_get_hash_stats(page);
1173 ret = simple_read_from_buffer(buf, count, ppos, page, ret);
1174 free_page((unsigned long)page);
1179 static const struct file_operations sel_avc_cache_threshold_ops = {
1180 .read = sel_read_avc_cache_threshold,
1181 .write = sel_write_avc_cache_threshold,
1184 static const struct file_operations sel_avc_hash_stats_ops = {
1185 .read = sel_read_avc_hash_stats,
1188 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1189 static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1193 for (cpu = *idx; cpu < NR_CPUS; ++cpu) {
1194 if (!cpu_possible(cpu))
1197 return &per_cpu(avc_cache_stats, cpu);
1202 static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1204 loff_t n = *pos - 1;
1207 return SEQ_START_TOKEN;
1209 return sel_avc_get_stat_idx(&n);
1212 static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1214 return sel_avc_get_stat_idx(pos);
1217 static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1219 struct avc_cache_stats *st = v;
1221 if (v == SEQ_START_TOKEN)
1222 seq_printf(seq, "lookups hits misses allocations reclaims "
1225 seq_printf(seq, "%u %u %u %u %u %u\n", st->lookups,
1226 st->hits, st->misses, st->allocations,
1227 st->reclaims, st->frees);
1231 static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1234 static struct seq_operations sel_avc_cache_stats_seq_ops = {
1235 .start = sel_avc_stats_seq_start,
1236 .next = sel_avc_stats_seq_next,
1237 .show = sel_avc_stats_seq_show,
1238 .stop = sel_avc_stats_seq_stop,
1241 static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1243 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1246 static const struct file_operations sel_avc_cache_stats_ops = {
1247 .open = sel_open_avc_cache_stats,
1249 .llseek = seq_lseek,
1250 .release = seq_release,
1254 static int sel_make_avc_files(struct dentry *dir)
1257 static struct tree_descr files[] = {
1258 { "cache_threshold",
1259 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1260 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1261 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1262 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1266 for (i = 0; i < ARRAY_SIZE(files); i++) {
1267 struct inode *inode;
1268 struct dentry *dentry;
1270 dentry = d_alloc_name(dir, files[i].name);
1276 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
1281 inode->i_fop = files[i].ops;
1282 inode->i_ino = ++sel_last_ino;
1283 d_add(dentry, inode);
1289 static ssize_t sel_read_initcon(struct file * file, char __user *buf,
1290 size_t count, loff_t *ppos)
1292 struct inode *inode;
1297 inode = file->f_path.dentry->d_inode;
1298 sid = inode->i_ino&SEL_INO_MASK;
1299 ret = security_sid_to_context(sid, &con, &len);
1303 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1308 static const struct file_operations sel_initcon_ops = {
1309 .read = sel_read_initcon,
1312 static int sel_make_initcon_files(struct dentry *dir)
1316 for (i = 1; i <= SECINITSID_NUM; i++) {
1317 struct inode *inode;
1318 struct dentry *dentry;
1319 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
1325 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1330 inode->i_fop = &sel_initcon_ops;
1331 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1332 d_add(dentry, inode);
1338 static inline unsigned int sel_div(unsigned long a, unsigned long b)
1340 return a / b - (a % b < 0);
1343 static inline unsigned long sel_class_to_ino(u16 class)
1345 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1348 static inline u16 sel_ino_to_class(unsigned long ino)
1350 return sel_div(ino & SEL_INO_MASK, SEL_VEC_MAX + 1);
1353 static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1355 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1358 static inline u32 sel_ino_to_perm(unsigned long ino)
1360 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1363 static ssize_t sel_read_class(struct file * file, char __user *buf,
1364 size_t count, loff_t *ppos)
1368 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1370 page = (char *)__get_free_page(GFP_KERNEL);
1376 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_class(ino));
1377 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1378 free_page((unsigned long)page);
1383 static const struct file_operations sel_class_ops = {
1384 .read = sel_read_class,
1387 static ssize_t sel_read_perm(struct file * file, char __user *buf,
1388 size_t count, loff_t *ppos)
1392 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1394 page = (char *)__get_free_page(GFP_KERNEL);
1400 len = snprintf(page, PAGE_SIZE,"%d", sel_ino_to_perm(ino));
1401 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1402 free_page((unsigned long)page);
1407 static const struct file_operations sel_perm_ops = {
1408 .read = sel_read_perm,
1411 static int sel_make_perm_files(char *objclass, int classvalue,
1414 int i, rc = 0, nperms;
1417 rc = security_get_permissions(objclass, &perms, &nperms);
1421 for (i = 0; i < nperms; i++) {
1422 struct inode *inode;
1423 struct dentry *dentry;
1425 dentry = d_alloc_name(dir, perms[i]);
1431 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1436 inode->i_fop = &sel_perm_ops;
1437 /* i+1 since perm values are 1-indexed */
1438 inode->i_ino = sel_perm_to_ino(classvalue, i+1);
1439 d_add(dentry, inode);
1443 for (i = 0; i < nperms; i++)
1450 static int sel_make_class_dir_entries(char *classname, int index,
1453 struct dentry *dentry = NULL;
1454 struct inode *inode = NULL;
1457 dentry = d_alloc_name(dir, "index");
1463 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1469 inode->i_fop = &sel_class_ops;
1470 inode->i_ino = sel_class_to_ino(index);
1471 d_add(dentry, inode);
1473 dentry = d_alloc_name(dir, "perms");
1479 rc = sel_make_dir(dir->d_inode, dentry, &last_class_ino);
1483 rc = sel_make_perm_files(classname, index, dentry);
1489 static void sel_remove_classes(void)
1491 struct list_head *class_node;
1493 list_for_each(class_node, &class_dir->d_subdirs) {
1494 struct dentry *class_subdir = list_entry(class_node,
1495 struct dentry, d_u.d_child);
1496 struct list_head *class_subdir_node;
1498 list_for_each(class_subdir_node, &class_subdir->d_subdirs) {
1499 struct dentry *d = list_entry(class_subdir_node,
1500 struct dentry, d_u.d_child);
1503 if (d->d_inode->i_mode & S_IFDIR)
1504 sel_remove_entries(d);
1507 sel_remove_entries(class_subdir);
1510 sel_remove_entries(class_dir);
1513 static int sel_make_classes(void)
1515 int rc = 0, nclasses, i;
1518 /* delete any existing entries */
1519 sel_remove_classes();
1521 rc = security_get_classes(&classes, &nclasses);
1525 /* +2 since classes are 1-indexed */
1526 last_class_ino = sel_class_to_ino(nclasses+2);
1528 for (i = 0; i < nclasses; i++) {
1529 struct dentry *class_name_dir;
1531 class_name_dir = d_alloc_name(class_dir, classes[i]);
1532 if (!class_name_dir) {
1537 rc = sel_make_dir(class_dir->d_inode, class_name_dir,
1542 /* i+1 since class values are 1-indexed */
1543 rc = sel_make_class_dir_entries(classes[i], i+1,
1550 for (i = 0; i < nclasses; i++)
1557 static int sel_make_dir(struct inode *dir, struct dentry *dentry,
1561 struct inode *inode;
1563 inode = sel_make_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
1568 inode->i_op = &simple_dir_inode_operations;
1569 inode->i_fop = &simple_dir_operations;
1570 inode->i_ino = ++(*ino);
1571 /* directory inodes start off with i_nlink == 2 (for "." entry) */
1573 d_add(dentry, inode);
1574 /* bump link count on parent directory, too */
1580 static int sel_fill_super(struct super_block * sb, void * data, int silent)
1583 struct dentry *dentry;
1584 struct inode *inode, *root_inode;
1585 struct inode_security_struct *isec;
1587 static struct tree_descr selinux_files[] = {
1588 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1589 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
1590 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
1591 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1592 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1593 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1594 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1595 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1596 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1597 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1598 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1599 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1600 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
1601 [SEL_COMPAT_NET] = {"compat_net", &sel_compat_net_ops, S_IRUGO|S_IWUSR},
1602 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1603 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
1606 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1610 root_inode = sb->s_root->d_inode;
1612 dentry = d_alloc_name(sb->s_root, BOOL_DIR_NAME);
1618 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1624 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
1630 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
1635 inode->i_ino = ++sel_last_ino;
1636 isec = (struct inode_security_struct*)inode->i_security;
1637 isec->sid = SECINITSID_DEVNULL;
1638 isec->sclass = SECCLASS_CHR_FILE;
1639 isec->initialized = 1;
1641 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1642 d_add(dentry, inode);
1643 selinux_null = dentry;
1645 dentry = d_alloc_name(sb->s_root, "avc");
1651 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1655 ret = sel_make_avc_files(dentry);
1659 dentry = d_alloc_name(sb->s_root, "initial_contexts");
1665 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1669 ret = sel_make_initcon_files(dentry);
1673 dentry = d_alloc_name(sb->s_root, "class");
1679 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1688 printk(KERN_ERR "%s: failed while creating inodes\n", __FUNCTION__);
1692 static int sel_get_sb(struct file_system_type *fs_type,
1693 int flags, const char *dev_name, void *data,
1694 struct vfsmount *mnt)
1696 return get_sb_single(fs_type, flags, data, sel_fill_super, mnt);
1699 static struct file_system_type sel_fs_type = {
1700 .name = "selinuxfs",
1701 .get_sb = sel_get_sb,
1702 .kill_sb = kill_litter_super,
1705 struct vfsmount *selinuxfs_mount;
1707 static int __init init_sel_fs(void)
1711 if (!selinux_enabled)
1713 err = register_filesystem(&sel_fs_type);
1715 selinuxfs_mount = kern_mount(&sel_fs_type);
1716 if (IS_ERR(selinuxfs_mount)) {
1717 printk(KERN_ERR "selinuxfs: could not mount!\n");
1718 err = PTR_ERR(selinuxfs_mount);
1719 selinuxfs_mount = NULL;
1725 __initcall(init_sel_fs);
1727 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
1728 void exit_sel_fs(void)
1730 unregister_filesystem(&sel_fs_type);