1 /* Updated: Karl MacMillan <kmacmillan@tresys.com>
3 * Added conditional policy language extensions
5 * Updated: Hewlett-Packard <paul.moore@hp.com>
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
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
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>
32 /* selinuxfs pseudo filesystem for exporting the security policy API.
33 Based on the proc code and the fs/nfsd/nfsctl.c code. */
40 #include "conditional.h"
42 /* Policy capability filenames */
43 static char *policycap_names[] = {
44 "network_peer_controls",
48 unsigned int selinux_checkreqprot = CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
50 static int __init checkreqprot_setup(char *str)
52 unsigned long checkreqprot;
53 if (!strict_strtoul(str, 0, &checkreqprot))
54 selinux_checkreqprot = checkreqprot ? 1 : 0;
57 __setup("checkreqprot=", checkreqprot_setup);
59 static DEFINE_MUTEX(sel_mutex);
61 /* global data for booleans */
62 static struct dentry *bool_dir;
64 static char **bool_pending_names;
65 static int *bool_pending_values;
67 /* global data for classes */
68 static struct dentry *class_dir;
69 static unsigned long last_class_ino;
71 /* global data for policy capabilities */
72 static struct dentry *policycap_dir;
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 const struct task_security_struct *tsec;
84 tsec = __task_cred(tsk)->security;
91 return avc_has_perm(sid, SECINITSID_SECURITY,
92 SECCLASS_SECURITY, perms, NULL);
97 SEL_LOAD, /* load policy */
98 SEL_ENFORCE, /* get or set enforcing status */
99 SEL_CONTEXT, /* validate context */
100 SEL_ACCESS, /* compute access decision */
101 SEL_CREATE, /* compute create labeling decision */
102 SEL_RELABEL, /* compute relabeling decision */
103 SEL_USER, /* compute reachable user contexts */
104 SEL_POLICYVERS, /* return policy version for this kernel */
105 SEL_COMMIT_BOOLS, /* commit new boolean values */
106 SEL_MLS, /* return if MLS policy is enabled */
107 SEL_DISABLE, /* disable SELinux until next reboot */
108 SEL_MEMBER, /* compute polyinstantiation membership decision */
109 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
110 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
111 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
112 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
113 SEL_INO_NEXT, /* The next inode number to use */
116 static unsigned long sel_last_ino = SEL_INO_NEXT - 1;
118 #define SEL_INITCON_INO_OFFSET 0x01000000
119 #define SEL_BOOL_INO_OFFSET 0x02000000
120 #define SEL_CLASS_INO_OFFSET 0x04000000
121 #define SEL_POLICYCAP_INO_OFFSET 0x08000000
122 #define SEL_INO_MASK 0x00ffffff
125 static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
126 size_t count, loff_t *ppos)
128 char tmpbuf[TMPBUFLEN];
131 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_enforcing);
132 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
135 #ifdef CONFIG_SECURITY_SELINUX_DEVELOP
136 static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
137 size_t count, loff_t *ppos)
144 if (count >= PAGE_SIZE)
147 /* No partial writes. */
150 page = (char *)get_zeroed_page(GFP_KERNEL);
154 if (copy_from_user(page, buf, count))
158 if (sscanf(page, "%d", &new_value) != 1)
161 if (new_value != selinux_enforcing) {
162 length = task_has_security(current, SECURITY__SETENFORCE);
165 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
166 "enforcing=%d old_enforcing=%d auid=%u ses=%u",
167 new_value, selinux_enforcing,
168 audit_get_loginuid(current),
169 audit_get_sessionid(current));
170 selinux_enforcing = new_value;
171 if (selinux_enforcing)
173 selnl_notify_setenforce(selinux_enforcing);
177 free_page((unsigned long) page);
181 #define sel_write_enforce NULL
184 static const struct file_operations sel_enforce_ops = {
185 .read = sel_read_enforce,
186 .write = sel_write_enforce,
189 static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
190 size_t count, loff_t *ppos)
192 char tmpbuf[TMPBUFLEN];
194 ino_t ino = filp->f_path.dentry->d_inode->i_ino;
195 int handle_unknown = (ino == SEL_REJECT_UNKNOWN) ?
196 security_get_reject_unknown() : !security_get_allow_unknown();
198 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
199 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
202 static const struct file_operations sel_handle_unknown_ops = {
203 .read = sel_read_handle_unknown,
206 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
207 static ssize_t sel_write_disable(struct file *file, const char __user *buf,
208 size_t count, loff_t *ppos)
214 extern int selinux_disable(void);
216 if (count >= PAGE_SIZE)
219 /* No partial writes. */
222 page = (char *)get_zeroed_page(GFP_KERNEL);
226 if (copy_from_user(page, buf, count))
230 if (sscanf(page, "%d", &new_value) != 1)
234 length = selinux_disable();
237 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
238 "selinux=0 auid=%u ses=%u",
239 audit_get_loginuid(current),
240 audit_get_sessionid(current));
245 free_page((unsigned long) page);
249 #define sel_write_disable NULL
252 static const struct file_operations sel_disable_ops = {
253 .write = sel_write_disable,
256 static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
257 size_t count, loff_t *ppos)
259 char tmpbuf[TMPBUFLEN];
262 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
263 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
266 static const struct file_operations sel_policyvers_ops = {
267 .read = sel_read_policyvers,
270 /* declaration for sel_write_load */
271 static int sel_make_bools(void);
272 static int sel_make_classes(void);
273 static int sel_make_policycap(void);
275 /* declaration for sel_make_class_dirs */
276 static int sel_make_dir(struct inode *dir, struct dentry *dentry,
279 static ssize_t sel_read_mls(struct file *filp, char __user *buf,
280 size_t count, loff_t *ppos)
282 char tmpbuf[TMPBUFLEN];
285 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_mls_enabled);
286 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
289 static const struct file_operations sel_mls_ops = {
290 .read = sel_read_mls,
293 static ssize_t sel_write_load(struct file *file, const char __user *buf,
294 size_t count, loff_t *ppos)
301 mutex_lock(&sel_mutex);
303 length = task_has_security(current, SECURITY__LOAD_POLICY);
308 /* No partial writes. */
313 if ((count > 64 * 1024 * 1024)
314 || (data = vmalloc(count)) == NULL) {
320 if (copy_from_user(data, buf, count) != 0)
323 length = security_load_policy(data, count);
327 ret = sel_make_bools();
333 ret = sel_make_classes();
339 ret = sel_make_policycap();
346 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
347 "policy loaded auid=%u ses=%u",
348 audit_get_loginuid(current),
349 audit_get_sessionid(current));
351 mutex_unlock(&sel_mutex);
356 static const struct file_operations sel_load_ops = {
357 .write = sel_write_load,
360 static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
366 length = task_has_security(current, SECURITY__CHECK_CONTEXT);
370 length = security_context_to_sid(buf, size, &sid);
374 length = security_sid_to_context(sid, &canon, &len);
378 if (len > SIMPLE_TRANSACTION_LIMIT) {
379 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
380 "payload max\n", __func__, len);
385 memcpy(buf, canon, len);
392 static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
393 size_t count, loff_t *ppos)
395 char tmpbuf[TMPBUFLEN];
398 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", selinux_checkreqprot);
399 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
402 static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
403 size_t count, loff_t *ppos)
407 unsigned int new_value;
409 length = task_has_security(current, SECURITY__SETCHECKREQPROT);
413 if (count >= PAGE_SIZE)
416 /* No partial writes. */
419 page = (char *)get_zeroed_page(GFP_KERNEL);
423 if (copy_from_user(page, buf, count))
427 if (sscanf(page, "%u", &new_value) != 1)
430 selinux_checkreqprot = new_value ? 1 : 0;
433 free_page((unsigned long) page);
436 static const struct file_operations sel_checkreqprot_ops = {
437 .read = sel_read_checkreqprot,
438 .write = sel_write_checkreqprot,
442 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
444 static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
445 static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
446 static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
447 static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
448 static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
450 static ssize_t (*write_op[])(struct file *, char *, size_t) = {
451 [SEL_ACCESS] = sel_write_access,
452 [SEL_CREATE] = sel_write_create,
453 [SEL_RELABEL] = sel_write_relabel,
454 [SEL_USER] = sel_write_user,
455 [SEL_MEMBER] = sel_write_member,
456 [SEL_CONTEXT] = sel_write_context,
459 static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
461 ino_t ino = file->f_path.dentry->d_inode->i_ino;
465 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
468 data = simple_transaction_get(file, buf, size);
470 return PTR_ERR(data);
472 rv = write_op[ino](file, data, size);
474 simple_transaction_set(file, rv);
480 static const struct file_operations transaction_ops = {
481 .write = selinux_transaction_write,
482 .read = simple_transaction_read,
483 .release = simple_transaction_release,
487 * payload - write methods
488 * If the method has a response, the response should be put in buf,
489 * and the length returned. Otherwise return 0 or and -error.
492 static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
498 struct av_decision avd;
501 length = task_has_security(current, SECURITY__COMPUTE_AV);
506 scon = kzalloc(size+1, GFP_KERNEL);
510 tcon = kzalloc(size+1, GFP_KERNEL);
515 if (sscanf(buf, "%s %s %hu %x", scon, tcon, &tclass, &req) != 4)
518 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
521 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
525 length = security_compute_av(ssid, tsid, tclass, req, &avd);
529 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
531 avd.allowed, 0xffffffff,
532 avd.auditallow, avd.auditdeny,
533 avd.seqno, avd.flags);
541 static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
544 u32 ssid, tsid, newsid;
550 length = task_has_security(current, SECURITY__COMPUTE_CREATE);
555 scon = kzalloc(size+1, GFP_KERNEL);
559 tcon = kzalloc(size+1, GFP_KERNEL);
564 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
567 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
570 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
574 length = security_transition_sid(ssid, tsid, tclass, &newsid);
578 length = security_sid_to_context(newsid, &newcon, &len);
582 if (len > SIMPLE_TRANSACTION_LIMIT) {
583 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
584 "payload max\n", __func__, len);
589 memcpy(buf, newcon, len);
600 static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
603 u32 ssid, tsid, newsid;
609 length = task_has_security(current, SECURITY__COMPUTE_RELABEL);
614 scon = kzalloc(size+1, GFP_KERNEL);
618 tcon = kzalloc(size+1, GFP_KERNEL);
623 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
626 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
629 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
633 length = security_change_sid(ssid, tsid, tclass, &newsid);
637 length = security_sid_to_context(newsid, &newcon, &len);
641 if (len > SIMPLE_TRANSACTION_LIMIT) {
646 memcpy(buf, newcon, len);
657 static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
659 char *con, *user, *ptr;
666 length = task_has_security(current, SECURITY__COMPUTE_USER);
671 con = kzalloc(size+1, GFP_KERNEL);
675 user = kzalloc(size+1, GFP_KERNEL);
680 if (sscanf(buf, "%s %s", con, user) != 2)
683 length = security_context_to_sid(con, strlen(con)+1, &sid);
687 length = security_get_user_sids(sid, user, &sids, &nsids);
691 length = sprintf(buf, "%u", nsids) + 1;
693 for (i = 0; i < nsids; i++) {
694 rc = security_sid_to_context(sids[i], &newcon, &len);
699 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
704 memcpy(ptr, newcon, len);
718 static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
721 u32 ssid, tsid, newsid;
727 length = task_has_security(current, SECURITY__COMPUTE_MEMBER);
732 scon = kzalloc(size+1, GFP_KERNEL);
736 tcon = kzalloc(size+1, GFP_KERNEL);
741 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
744 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
747 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
751 length = security_member_sid(ssid, tsid, tclass, &newsid);
755 length = security_sid_to_context(newsid, &newcon, &len);
759 if (len > SIMPLE_TRANSACTION_LIMIT) {
760 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
761 "payload max\n", __func__, len);
766 memcpy(buf, newcon, len);
777 static struct inode *sel_make_inode(struct super_block *sb, int mode)
779 struct inode *ret = new_inode(sb);
783 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
788 static ssize_t sel_read_bool(struct file *filep, char __user *buf,
789 size_t count, loff_t *ppos)
795 struct inode *inode = filep->f_path.dentry->d_inode;
796 unsigned index = inode->i_ino & SEL_INO_MASK;
797 const char *name = filep->f_path.dentry->d_name.name;
799 mutex_lock(&sel_mutex);
801 if (index >= bool_num || strcmp(name, bool_pending_names[index])) {
806 page = (char *)get_zeroed_page(GFP_KERNEL);
812 cur_enforcing = security_get_bool_value(index);
813 if (cur_enforcing < 0) {
817 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
818 bool_pending_values[index]);
819 ret = simple_read_from_buffer(buf, count, ppos, page, length);
821 mutex_unlock(&sel_mutex);
823 free_page((unsigned long)page);
827 static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
828 size_t count, loff_t *ppos)
833 struct inode *inode = filep->f_path.dentry->d_inode;
834 unsigned index = inode->i_ino & SEL_INO_MASK;
835 const char *name = filep->f_path.dentry->d_name.name;
837 mutex_lock(&sel_mutex);
839 length = task_has_security(current, SECURITY__SETBOOL);
843 if (index >= bool_num || strcmp(name, bool_pending_names[index])) {
848 if (count >= PAGE_SIZE) {
854 /* No partial writes. */
858 page = (char *)get_zeroed_page(GFP_KERNEL);
865 if (copy_from_user(page, buf, count))
869 if (sscanf(page, "%d", &new_value) != 1)
875 bool_pending_values[index] = new_value;
879 mutex_unlock(&sel_mutex);
881 free_page((unsigned long) page);
885 static const struct file_operations sel_bool_ops = {
886 .read = sel_read_bool,
887 .write = sel_write_bool,
890 static ssize_t sel_commit_bools_write(struct file *filep,
891 const char __user *buf,
892 size_t count, loff_t *ppos)
898 mutex_lock(&sel_mutex);
900 length = task_has_security(current, SECURITY__SETBOOL);
904 if (count >= PAGE_SIZE) {
909 /* No partial writes. */
912 page = (char *)get_zeroed_page(GFP_KERNEL);
919 if (copy_from_user(page, buf, count))
923 if (sscanf(page, "%d", &new_value) != 1)
926 if (new_value && bool_pending_values)
927 security_set_bools(bool_num, bool_pending_values);
932 mutex_unlock(&sel_mutex);
934 free_page((unsigned long) page);
938 static const struct file_operations sel_commit_bools_ops = {
939 .write = sel_commit_bools_write,
942 static void sel_remove_entries(struct dentry *de)
944 struct list_head *node;
946 spin_lock(&dcache_lock);
947 node = de->d_subdirs.next;
948 while (node != &de->d_subdirs) {
949 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
954 spin_unlock(&dcache_lock);
956 simple_unlink(de->d_inode, d);
958 spin_lock(&dcache_lock);
960 node = de->d_subdirs.next;
963 spin_unlock(&dcache_lock);
966 #define BOOL_DIR_NAME "booleans"
968 static int sel_make_bools(void)
972 struct dentry *dentry = NULL;
973 struct dentry *dir = bool_dir;
974 struct inode *inode = NULL;
975 struct inode_security_struct *isec;
976 char **names = NULL, *page;
981 /* remove any existing files */
982 kfree(bool_pending_names);
983 kfree(bool_pending_values);
984 bool_pending_names = NULL;
985 bool_pending_values = NULL;
987 sel_remove_entries(dir);
989 page = (char *)get_zeroed_page(GFP_KERNEL);
993 ret = security_get_bools(&num, &names, &values);
997 for (i = 0; i < num; i++) {
998 dentry = d_alloc_name(dir, names[i]);
1003 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
1009 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
1013 } else if (len >= PAGE_SIZE) {
1014 ret = -ENAMETOOLONG;
1017 isec = (struct inode_security_struct *)inode->i_security;
1018 ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid);
1022 isec->initialized = 1;
1023 inode->i_fop = &sel_bool_ops;
1024 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
1025 d_add(dentry, inode);
1028 bool_pending_names = names;
1029 bool_pending_values = values;
1031 free_page((unsigned long)page);
1035 for (i = 0; i < num; i++)
1040 sel_remove_entries(dir);
1045 #define NULL_FILE_NAME "null"
1047 struct dentry *selinux_null;
1049 static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1050 size_t count, loff_t *ppos)
1052 char tmpbuf[TMPBUFLEN];
1055 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1056 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1059 static ssize_t sel_write_avc_cache_threshold(struct file *file,
1060 const char __user *buf,
1061 size_t count, loff_t *ppos)
1068 if (count >= PAGE_SIZE) {
1074 /* No partial writes. */
1079 page = (char *)get_zeroed_page(GFP_KERNEL);
1085 if (copy_from_user(page, buf, count)) {
1090 if (sscanf(page, "%u", &new_value) != 1) {
1095 if (new_value != avc_cache_threshold) {
1096 ret = task_has_security(current, SECURITY__SETSECPARAM);
1099 avc_cache_threshold = new_value;
1103 free_page((unsigned long)page);
1108 static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1109 size_t count, loff_t *ppos)
1114 page = (char *)__get_free_page(GFP_KERNEL);
1119 ret = avc_get_hash_stats(page);
1121 ret = simple_read_from_buffer(buf, count, ppos, page, ret);
1122 free_page((unsigned long)page);
1127 static const struct file_operations sel_avc_cache_threshold_ops = {
1128 .read = sel_read_avc_cache_threshold,
1129 .write = sel_write_avc_cache_threshold,
1132 static const struct file_operations sel_avc_hash_stats_ops = {
1133 .read = sel_read_avc_hash_stats,
1136 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1137 static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1141 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
1142 if (!cpu_possible(cpu))
1145 return &per_cpu(avc_cache_stats, cpu);
1150 static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1152 loff_t n = *pos - 1;
1155 return SEQ_START_TOKEN;
1157 return sel_avc_get_stat_idx(&n);
1160 static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1162 return sel_avc_get_stat_idx(pos);
1165 static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1167 struct avc_cache_stats *st = v;
1169 if (v == SEQ_START_TOKEN)
1170 seq_printf(seq, "lookups hits misses allocations reclaims "
1173 seq_printf(seq, "%u %u %u %u %u %u\n", st->lookups,
1174 st->hits, st->misses, st->allocations,
1175 st->reclaims, st->frees);
1179 static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1182 static const struct seq_operations sel_avc_cache_stats_seq_ops = {
1183 .start = sel_avc_stats_seq_start,
1184 .next = sel_avc_stats_seq_next,
1185 .show = sel_avc_stats_seq_show,
1186 .stop = sel_avc_stats_seq_stop,
1189 static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1191 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1194 static const struct file_operations sel_avc_cache_stats_ops = {
1195 .open = sel_open_avc_cache_stats,
1197 .llseek = seq_lseek,
1198 .release = seq_release,
1202 static int sel_make_avc_files(struct dentry *dir)
1205 static struct tree_descr files[] = {
1206 { "cache_threshold",
1207 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1208 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1209 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1210 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1214 for (i = 0; i < ARRAY_SIZE(files); i++) {
1215 struct inode *inode;
1216 struct dentry *dentry;
1218 dentry = d_alloc_name(dir, files[i].name);
1224 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
1229 inode->i_fop = files[i].ops;
1230 inode->i_ino = ++sel_last_ino;
1231 d_add(dentry, inode);
1237 static ssize_t sel_read_initcon(struct file *file, char __user *buf,
1238 size_t count, loff_t *ppos)
1240 struct inode *inode;
1245 inode = file->f_path.dentry->d_inode;
1246 sid = inode->i_ino&SEL_INO_MASK;
1247 ret = security_sid_to_context(sid, &con, &len);
1251 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1256 static const struct file_operations sel_initcon_ops = {
1257 .read = sel_read_initcon,
1260 static int sel_make_initcon_files(struct dentry *dir)
1264 for (i = 1; i <= SECINITSID_NUM; i++) {
1265 struct inode *inode;
1266 struct dentry *dentry;
1267 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
1273 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1278 inode->i_fop = &sel_initcon_ops;
1279 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1280 d_add(dentry, inode);
1286 static inline unsigned int sel_div(unsigned long a, unsigned long b)
1288 return a / b - (a % b < 0);
1291 static inline unsigned long sel_class_to_ino(u16 class)
1293 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1296 static inline u16 sel_ino_to_class(unsigned long ino)
1298 return sel_div(ino & SEL_INO_MASK, SEL_VEC_MAX + 1);
1301 static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1303 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1306 static inline u32 sel_ino_to_perm(unsigned long ino)
1308 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1311 static ssize_t sel_read_class(struct file *file, char __user *buf,
1312 size_t count, loff_t *ppos)
1316 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1318 page = (char *)__get_free_page(GFP_KERNEL);
1324 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_class(ino));
1325 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1326 free_page((unsigned long)page);
1331 static const struct file_operations sel_class_ops = {
1332 .read = sel_read_class,
1335 static ssize_t sel_read_perm(struct file *file, char __user *buf,
1336 size_t count, loff_t *ppos)
1340 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1342 page = (char *)__get_free_page(GFP_KERNEL);
1348 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_perm(ino));
1349 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1350 free_page((unsigned long)page);
1355 static const struct file_operations sel_perm_ops = {
1356 .read = sel_read_perm,
1359 static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1360 size_t count, loff_t *ppos)
1363 char tmpbuf[TMPBUFLEN];
1365 unsigned long i_ino = file->f_path.dentry->d_inode->i_ino;
1367 value = security_policycap_supported(i_ino & SEL_INO_MASK);
1368 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1370 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1373 static const struct file_operations sel_policycap_ops = {
1374 .read = sel_read_policycap,
1377 static int sel_make_perm_files(char *objclass, int classvalue,
1380 int i, rc = 0, nperms;
1383 rc = security_get_permissions(objclass, &perms, &nperms);
1387 for (i = 0; i < nperms; i++) {
1388 struct inode *inode;
1389 struct dentry *dentry;
1391 dentry = d_alloc_name(dir, perms[i]);
1397 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1402 inode->i_fop = &sel_perm_ops;
1403 /* i+1 since perm values are 1-indexed */
1404 inode->i_ino = sel_perm_to_ino(classvalue, i+1);
1405 d_add(dentry, inode);
1409 for (i = 0; i < nperms; i++)
1416 static int sel_make_class_dir_entries(char *classname, int index,
1419 struct dentry *dentry = NULL;
1420 struct inode *inode = NULL;
1423 dentry = d_alloc_name(dir, "index");
1429 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1435 inode->i_fop = &sel_class_ops;
1436 inode->i_ino = sel_class_to_ino(index);
1437 d_add(dentry, inode);
1439 dentry = d_alloc_name(dir, "perms");
1445 rc = sel_make_dir(dir->d_inode, dentry, &last_class_ino);
1449 rc = sel_make_perm_files(classname, index, dentry);
1455 static void sel_remove_classes(void)
1457 struct list_head *class_node;
1459 list_for_each(class_node, &class_dir->d_subdirs) {
1460 struct dentry *class_subdir = list_entry(class_node,
1461 struct dentry, d_u.d_child);
1462 struct list_head *class_subdir_node;
1464 list_for_each(class_subdir_node, &class_subdir->d_subdirs) {
1465 struct dentry *d = list_entry(class_subdir_node,
1466 struct dentry, d_u.d_child);
1469 if (d->d_inode->i_mode & S_IFDIR)
1470 sel_remove_entries(d);
1473 sel_remove_entries(class_subdir);
1476 sel_remove_entries(class_dir);
1479 static int sel_make_classes(void)
1481 int rc = 0, nclasses, i;
1484 /* delete any existing entries */
1485 sel_remove_classes();
1487 rc = security_get_classes(&classes, &nclasses);
1491 /* +2 since classes are 1-indexed */
1492 last_class_ino = sel_class_to_ino(nclasses+2);
1494 for (i = 0; i < nclasses; i++) {
1495 struct dentry *class_name_dir;
1497 class_name_dir = d_alloc_name(class_dir, classes[i]);
1498 if (!class_name_dir) {
1503 rc = sel_make_dir(class_dir->d_inode, class_name_dir,
1508 /* i+1 since class values are 1-indexed */
1509 rc = sel_make_class_dir_entries(classes[i], i+1,
1516 for (i = 0; i < nclasses; i++)
1523 static int sel_make_policycap(void)
1526 struct dentry *dentry = NULL;
1527 struct inode *inode = NULL;
1529 sel_remove_entries(policycap_dir);
1531 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
1532 if (iter < ARRAY_SIZE(policycap_names))
1533 dentry = d_alloc_name(policycap_dir,
1534 policycap_names[iter]);
1536 dentry = d_alloc_name(policycap_dir, "unknown");
1541 inode = sel_make_inode(policycap_dir->d_sb, S_IFREG | S_IRUGO);
1545 inode->i_fop = &sel_policycap_ops;
1546 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1547 d_add(dentry, inode);
1553 static int sel_make_dir(struct inode *dir, struct dentry *dentry,
1557 struct inode *inode;
1559 inode = sel_make_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
1564 inode->i_op = &simple_dir_inode_operations;
1565 inode->i_fop = &simple_dir_operations;
1566 inode->i_ino = ++(*ino);
1567 /* directory inodes start off with i_nlink == 2 (for "." entry) */
1569 d_add(dentry, inode);
1570 /* bump link count on parent directory, too */
1576 static int sel_fill_super(struct super_block *sb, void *data, int silent)
1579 struct dentry *dentry;
1580 struct inode *inode, *root_inode;
1581 struct inode_security_struct *isec;
1583 static struct tree_descr selinux_files[] = {
1584 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1585 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
1586 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
1587 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1588 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1589 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1590 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1591 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1592 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1593 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1594 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1595 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1596 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
1597 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1598 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
1601 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1605 root_inode = sb->s_root->d_inode;
1607 dentry = d_alloc_name(sb->s_root, BOOL_DIR_NAME);
1613 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1619 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
1625 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
1630 inode->i_ino = ++sel_last_ino;
1631 isec = (struct inode_security_struct *)inode->i_security;
1632 isec->sid = SECINITSID_DEVNULL;
1633 isec->sclass = SECCLASS_CHR_FILE;
1634 isec->initialized = 1;
1636 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1637 d_add(dentry, inode);
1638 selinux_null = dentry;
1640 dentry = d_alloc_name(sb->s_root, "avc");
1646 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1650 ret = sel_make_avc_files(dentry);
1654 dentry = d_alloc_name(sb->s_root, "initial_contexts");
1660 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1664 ret = sel_make_initcon_files(dentry);
1668 dentry = d_alloc_name(sb->s_root, "class");
1674 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1680 dentry = d_alloc_name(sb->s_root, "policy_capabilities");
1686 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1690 policycap_dir = dentry;
1695 printk(KERN_ERR "SELinux: %s: failed while creating inodes\n",
1700 static int sel_get_sb(struct file_system_type *fs_type,
1701 int flags, const char *dev_name, void *data,
1702 struct vfsmount *mnt)
1704 return get_sb_single(fs_type, flags, data, sel_fill_super, mnt);
1707 static struct file_system_type sel_fs_type = {
1708 .name = "selinuxfs",
1709 .get_sb = sel_get_sb,
1710 .kill_sb = kill_litter_super,
1713 struct vfsmount *selinuxfs_mount;
1715 static int __init init_sel_fs(void)
1719 if (!selinux_enabled)
1721 err = register_filesystem(&sel_fs_type);
1723 selinuxfs_mount = kern_mount(&sel_fs_type);
1724 if (IS_ERR(selinuxfs_mount)) {
1725 printk(KERN_ERR "selinuxfs: could not mount!\n");
1726 err = PTR_ERR(selinuxfs_mount);
1727 selinuxfs_mount = NULL;
1733 __initcall(init_sel_fs);
1735 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
1736 void exit_sel_fs(void)
1738 unregister_filesystem(&sel_fs_type);