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)
497 struct av_decision avd;
500 length = task_has_security(current, SECURITY__COMPUTE_AV);
505 scon = kzalloc(size+1, GFP_KERNEL);
509 tcon = kzalloc(size+1, GFP_KERNEL);
514 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
517 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
520 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
524 security_compute_av_user(ssid, tsid, tclass, &avd);
526 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
528 avd.allowed, 0xffffffff,
529 avd.auditallow, avd.auditdeny,
530 avd.seqno, avd.flags);
538 static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
541 u32 ssid, tsid, newsid;
547 length = task_has_security(current, SECURITY__COMPUTE_CREATE);
552 scon = kzalloc(size+1, GFP_KERNEL);
556 tcon = kzalloc(size+1, GFP_KERNEL);
561 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
564 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
567 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
571 length = security_transition_sid_user(ssid, tsid, tclass, &newsid);
575 length = security_sid_to_context(newsid, &newcon, &len);
579 if (len > SIMPLE_TRANSACTION_LIMIT) {
580 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
581 "payload max\n", __func__, len);
586 memcpy(buf, newcon, len);
597 static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
600 u32 ssid, tsid, newsid;
606 length = task_has_security(current, SECURITY__COMPUTE_RELABEL);
611 scon = kzalloc(size+1, GFP_KERNEL);
615 tcon = kzalloc(size+1, GFP_KERNEL);
620 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
623 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
626 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
630 length = security_change_sid(ssid, tsid, tclass, &newsid);
634 length = security_sid_to_context(newsid, &newcon, &len);
638 if (len > SIMPLE_TRANSACTION_LIMIT) {
643 memcpy(buf, newcon, len);
654 static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
656 char *con, *user, *ptr;
663 length = task_has_security(current, SECURITY__COMPUTE_USER);
668 con = kzalloc(size+1, GFP_KERNEL);
672 user = kzalloc(size+1, GFP_KERNEL);
677 if (sscanf(buf, "%s %s", con, user) != 2)
680 length = security_context_to_sid(con, strlen(con)+1, &sid);
684 length = security_get_user_sids(sid, user, &sids, &nsids);
688 length = sprintf(buf, "%u", nsids) + 1;
690 for (i = 0; i < nsids; i++) {
691 rc = security_sid_to_context(sids[i], &newcon, &len);
696 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
701 memcpy(ptr, newcon, len);
715 static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
718 u32 ssid, tsid, newsid;
724 length = task_has_security(current, SECURITY__COMPUTE_MEMBER);
729 scon = kzalloc(size+1, GFP_KERNEL);
733 tcon = kzalloc(size+1, GFP_KERNEL);
738 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
741 length = security_context_to_sid(scon, strlen(scon)+1, &ssid);
744 length = security_context_to_sid(tcon, strlen(tcon)+1, &tsid);
748 length = security_member_sid(ssid, tsid, tclass, &newsid);
752 length = security_sid_to_context(newsid, &newcon, &len);
756 if (len > SIMPLE_TRANSACTION_LIMIT) {
757 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
758 "payload max\n", __func__, len);
763 memcpy(buf, newcon, len);
774 static struct inode *sel_make_inode(struct super_block *sb, int mode)
776 struct inode *ret = new_inode(sb);
780 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
785 static ssize_t sel_read_bool(struct file *filep, char __user *buf,
786 size_t count, loff_t *ppos)
792 struct inode *inode = filep->f_path.dentry->d_inode;
793 unsigned index = inode->i_ino & SEL_INO_MASK;
794 const char *name = filep->f_path.dentry->d_name.name;
796 mutex_lock(&sel_mutex);
798 if (index >= bool_num || strcmp(name, bool_pending_names[index])) {
803 page = (char *)get_zeroed_page(GFP_KERNEL);
809 cur_enforcing = security_get_bool_value(index);
810 if (cur_enforcing < 0) {
814 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
815 bool_pending_values[index]);
816 ret = simple_read_from_buffer(buf, count, ppos, page, length);
818 mutex_unlock(&sel_mutex);
820 free_page((unsigned long)page);
824 static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
825 size_t count, loff_t *ppos)
830 struct inode *inode = filep->f_path.dentry->d_inode;
831 unsigned index = inode->i_ino & SEL_INO_MASK;
832 const char *name = filep->f_path.dentry->d_name.name;
834 mutex_lock(&sel_mutex);
836 length = task_has_security(current, SECURITY__SETBOOL);
840 if (index >= bool_num || strcmp(name, bool_pending_names[index])) {
845 if (count >= PAGE_SIZE) {
851 /* No partial writes. */
855 page = (char *)get_zeroed_page(GFP_KERNEL);
862 if (copy_from_user(page, buf, count))
866 if (sscanf(page, "%d", &new_value) != 1)
872 bool_pending_values[index] = new_value;
876 mutex_unlock(&sel_mutex);
878 free_page((unsigned long) page);
882 static const struct file_operations sel_bool_ops = {
883 .read = sel_read_bool,
884 .write = sel_write_bool,
887 static ssize_t sel_commit_bools_write(struct file *filep,
888 const char __user *buf,
889 size_t count, loff_t *ppos)
895 mutex_lock(&sel_mutex);
897 length = task_has_security(current, SECURITY__SETBOOL);
901 if (count >= PAGE_SIZE) {
906 /* No partial writes. */
909 page = (char *)get_zeroed_page(GFP_KERNEL);
916 if (copy_from_user(page, buf, count))
920 if (sscanf(page, "%d", &new_value) != 1)
923 if (new_value && bool_pending_values)
924 security_set_bools(bool_num, bool_pending_values);
929 mutex_unlock(&sel_mutex);
931 free_page((unsigned long) page);
935 static const struct file_operations sel_commit_bools_ops = {
936 .write = sel_commit_bools_write,
939 static void sel_remove_entries(struct dentry *de)
941 struct list_head *node;
943 spin_lock(&dcache_lock);
944 node = de->d_subdirs.next;
945 while (node != &de->d_subdirs) {
946 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
951 spin_unlock(&dcache_lock);
953 simple_unlink(de->d_inode, d);
955 spin_lock(&dcache_lock);
957 node = de->d_subdirs.next;
960 spin_unlock(&dcache_lock);
963 #define BOOL_DIR_NAME "booleans"
965 static int sel_make_bools(void)
969 struct dentry *dentry = NULL;
970 struct dentry *dir = bool_dir;
971 struct inode *inode = NULL;
972 struct inode_security_struct *isec;
973 char **names = NULL, *page;
978 /* remove any existing files */
979 kfree(bool_pending_names);
980 kfree(bool_pending_values);
981 bool_pending_names = NULL;
982 bool_pending_values = NULL;
984 sel_remove_entries(dir);
986 page = (char *)get_zeroed_page(GFP_KERNEL);
990 ret = security_get_bools(&num, &names, &values);
994 for (i = 0; i < num; i++) {
995 dentry = d_alloc_name(dir, names[i]);
1000 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
1006 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
1010 } else if (len >= PAGE_SIZE) {
1011 ret = -ENAMETOOLONG;
1014 isec = (struct inode_security_struct *)inode->i_security;
1015 ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid);
1019 isec->initialized = 1;
1020 inode->i_fop = &sel_bool_ops;
1021 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
1022 d_add(dentry, inode);
1025 bool_pending_names = names;
1026 bool_pending_values = values;
1028 free_page((unsigned long)page);
1032 for (i = 0; i < num; i++)
1037 sel_remove_entries(dir);
1042 #define NULL_FILE_NAME "null"
1044 struct dentry *selinux_null;
1046 static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1047 size_t count, loff_t *ppos)
1049 char tmpbuf[TMPBUFLEN];
1052 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1053 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1056 static ssize_t sel_write_avc_cache_threshold(struct file *file,
1057 const char __user *buf,
1058 size_t count, loff_t *ppos)
1065 if (count >= PAGE_SIZE) {
1071 /* No partial writes. */
1076 page = (char *)get_zeroed_page(GFP_KERNEL);
1082 if (copy_from_user(page, buf, count)) {
1087 if (sscanf(page, "%u", &new_value) != 1) {
1092 if (new_value != avc_cache_threshold) {
1093 ret = task_has_security(current, SECURITY__SETSECPARAM);
1096 avc_cache_threshold = new_value;
1100 free_page((unsigned long)page);
1105 static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1106 size_t count, loff_t *ppos)
1111 page = (char *)__get_free_page(GFP_KERNEL);
1116 ret = avc_get_hash_stats(page);
1118 ret = simple_read_from_buffer(buf, count, ppos, page, ret);
1119 free_page((unsigned long)page);
1124 static const struct file_operations sel_avc_cache_threshold_ops = {
1125 .read = sel_read_avc_cache_threshold,
1126 .write = sel_write_avc_cache_threshold,
1129 static const struct file_operations sel_avc_hash_stats_ops = {
1130 .read = sel_read_avc_hash_stats,
1133 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1134 static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1138 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
1139 if (!cpu_possible(cpu))
1142 return &per_cpu(avc_cache_stats, cpu);
1147 static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1149 loff_t n = *pos - 1;
1152 return SEQ_START_TOKEN;
1154 return sel_avc_get_stat_idx(&n);
1157 static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1159 return sel_avc_get_stat_idx(pos);
1162 static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1164 struct avc_cache_stats *st = v;
1166 if (v == SEQ_START_TOKEN)
1167 seq_printf(seq, "lookups hits misses allocations reclaims "
1170 seq_printf(seq, "%u %u %u %u %u %u\n", st->lookups,
1171 st->hits, st->misses, st->allocations,
1172 st->reclaims, st->frees);
1176 static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1179 static const struct seq_operations sel_avc_cache_stats_seq_ops = {
1180 .start = sel_avc_stats_seq_start,
1181 .next = sel_avc_stats_seq_next,
1182 .show = sel_avc_stats_seq_show,
1183 .stop = sel_avc_stats_seq_stop,
1186 static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1188 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1191 static const struct file_operations sel_avc_cache_stats_ops = {
1192 .open = sel_open_avc_cache_stats,
1194 .llseek = seq_lseek,
1195 .release = seq_release,
1199 static int sel_make_avc_files(struct dentry *dir)
1202 static struct tree_descr files[] = {
1203 { "cache_threshold",
1204 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1205 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1206 #ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1207 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1211 for (i = 0; i < ARRAY_SIZE(files); i++) {
1212 struct inode *inode;
1213 struct dentry *dentry;
1215 dentry = d_alloc_name(dir, files[i].name);
1221 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
1226 inode->i_fop = files[i].ops;
1227 inode->i_ino = ++sel_last_ino;
1228 d_add(dentry, inode);
1234 static ssize_t sel_read_initcon(struct file *file, char __user *buf,
1235 size_t count, loff_t *ppos)
1237 struct inode *inode;
1242 inode = file->f_path.dentry->d_inode;
1243 sid = inode->i_ino&SEL_INO_MASK;
1244 ret = security_sid_to_context(sid, &con, &len);
1248 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1253 static const struct file_operations sel_initcon_ops = {
1254 .read = sel_read_initcon,
1257 static int sel_make_initcon_files(struct dentry *dir)
1261 for (i = 1; i <= SECINITSID_NUM; i++) {
1262 struct inode *inode;
1263 struct dentry *dentry;
1264 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
1270 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1275 inode->i_fop = &sel_initcon_ops;
1276 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1277 d_add(dentry, inode);
1283 static inline unsigned int sel_div(unsigned long a, unsigned long b)
1285 return a / b - (a % b < 0);
1288 static inline unsigned long sel_class_to_ino(u16 class)
1290 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1293 static inline u16 sel_ino_to_class(unsigned long ino)
1295 return sel_div(ino & SEL_INO_MASK, SEL_VEC_MAX + 1);
1298 static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1300 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1303 static inline u32 sel_ino_to_perm(unsigned long ino)
1305 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1308 static ssize_t sel_read_class(struct file *file, char __user *buf,
1309 size_t count, loff_t *ppos)
1313 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1315 page = (char *)__get_free_page(GFP_KERNEL);
1321 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_class(ino));
1322 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1323 free_page((unsigned long)page);
1328 static const struct file_operations sel_class_ops = {
1329 .read = sel_read_class,
1332 static ssize_t sel_read_perm(struct file *file, char __user *buf,
1333 size_t count, loff_t *ppos)
1337 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1339 page = (char *)__get_free_page(GFP_KERNEL);
1345 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_perm(ino));
1346 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1347 free_page((unsigned long)page);
1352 static const struct file_operations sel_perm_ops = {
1353 .read = sel_read_perm,
1356 static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1357 size_t count, loff_t *ppos)
1360 char tmpbuf[TMPBUFLEN];
1362 unsigned long i_ino = file->f_path.dentry->d_inode->i_ino;
1364 value = security_policycap_supported(i_ino & SEL_INO_MASK);
1365 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1367 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1370 static const struct file_operations sel_policycap_ops = {
1371 .read = sel_read_policycap,
1374 static int sel_make_perm_files(char *objclass, int classvalue,
1377 int i, rc = 0, nperms;
1380 rc = security_get_permissions(objclass, &perms, &nperms);
1384 for (i = 0; i < nperms; i++) {
1385 struct inode *inode;
1386 struct dentry *dentry;
1388 dentry = d_alloc_name(dir, perms[i]);
1394 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1399 inode->i_fop = &sel_perm_ops;
1400 /* i+1 since perm values are 1-indexed */
1401 inode->i_ino = sel_perm_to_ino(classvalue, i+1);
1402 d_add(dentry, inode);
1406 for (i = 0; i < nperms; i++)
1413 static int sel_make_class_dir_entries(char *classname, int index,
1416 struct dentry *dentry = NULL;
1417 struct inode *inode = NULL;
1420 dentry = d_alloc_name(dir, "index");
1426 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
1432 inode->i_fop = &sel_class_ops;
1433 inode->i_ino = sel_class_to_ino(index);
1434 d_add(dentry, inode);
1436 dentry = d_alloc_name(dir, "perms");
1442 rc = sel_make_dir(dir->d_inode, dentry, &last_class_ino);
1446 rc = sel_make_perm_files(classname, index, dentry);
1452 static void sel_remove_classes(void)
1454 struct list_head *class_node;
1456 list_for_each(class_node, &class_dir->d_subdirs) {
1457 struct dentry *class_subdir = list_entry(class_node,
1458 struct dentry, d_u.d_child);
1459 struct list_head *class_subdir_node;
1461 list_for_each(class_subdir_node, &class_subdir->d_subdirs) {
1462 struct dentry *d = list_entry(class_subdir_node,
1463 struct dentry, d_u.d_child);
1466 if (d->d_inode->i_mode & S_IFDIR)
1467 sel_remove_entries(d);
1470 sel_remove_entries(class_subdir);
1473 sel_remove_entries(class_dir);
1476 static int sel_make_classes(void)
1478 int rc = 0, nclasses, i;
1481 /* delete any existing entries */
1482 sel_remove_classes();
1484 rc = security_get_classes(&classes, &nclasses);
1488 /* +2 since classes are 1-indexed */
1489 last_class_ino = sel_class_to_ino(nclasses+2);
1491 for (i = 0; i < nclasses; i++) {
1492 struct dentry *class_name_dir;
1494 class_name_dir = d_alloc_name(class_dir, classes[i]);
1495 if (!class_name_dir) {
1500 rc = sel_make_dir(class_dir->d_inode, class_name_dir,
1505 /* i+1 since class values are 1-indexed */
1506 rc = sel_make_class_dir_entries(classes[i], i+1,
1513 for (i = 0; i < nclasses; i++)
1520 static int sel_make_policycap(void)
1523 struct dentry *dentry = NULL;
1524 struct inode *inode = NULL;
1526 sel_remove_entries(policycap_dir);
1528 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
1529 if (iter < ARRAY_SIZE(policycap_names))
1530 dentry = d_alloc_name(policycap_dir,
1531 policycap_names[iter]);
1533 dentry = d_alloc_name(policycap_dir, "unknown");
1538 inode = sel_make_inode(policycap_dir->d_sb, S_IFREG | S_IRUGO);
1542 inode->i_fop = &sel_policycap_ops;
1543 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1544 d_add(dentry, inode);
1550 static int sel_make_dir(struct inode *dir, struct dentry *dentry,
1554 struct inode *inode;
1556 inode = sel_make_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
1561 inode->i_op = &simple_dir_inode_operations;
1562 inode->i_fop = &simple_dir_operations;
1563 inode->i_ino = ++(*ino);
1564 /* directory inodes start off with i_nlink == 2 (for "." entry) */
1566 d_add(dentry, inode);
1567 /* bump link count on parent directory, too */
1573 static int sel_fill_super(struct super_block *sb, void *data, int silent)
1576 struct dentry *dentry;
1577 struct inode *inode, *root_inode;
1578 struct inode_security_struct *isec;
1580 static struct tree_descr selinux_files[] = {
1581 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1582 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
1583 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
1584 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1585 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1586 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1587 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1588 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1589 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1590 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1591 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1592 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1593 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
1594 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1595 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
1598 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1602 root_inode = sb->s_root->d_inode;
1604 dentry = d_alloc_name(sb->s_root, BOOL_DIR_NAME);
1610 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1616 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
1622 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
1627 inode->i_ino = ++sel_last_ino;
1628 isec = (struct inode_security_struct *)inode->i_security;
1629 isec->sid = SECINITSID_DEVNULL;
1630 isec->sclass = SECCLASS_CHR_FILE;
1631 isec->initialized = 1;
1633 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1634 d_add(dentry, inode);
1635 selinux_null = dentry;
1637 dentry = d_alloc_name(sb->s_root, "avc");
1643 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1647 ret = sel_make_avc_files(dentry);
1651 dentry = d_alloc_name(sb->s_root, "initial_contexts");
1657 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1661 ret = sel_make_initcon_files(dentry);
1665 dentry = d_alloc_name(sb->s_root, "class");
1671 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1677 dentry = d_alloc_name(sb->s_root, "policy_capabilities");
1683 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1687 policycap_dir = dentry;
1692 printk(KERN_ERR "SELinux: %s: failed while creating inodes\n",
1697 static int sel_get_sb(struct file_system_type *fs_type,
1698 int flags, const char *dev_name, void *data,
1699 struct vfsmount *mnt)
1701 return get_sb_single(fs_type, flags, data, sel_fill_super, mnt);
1704 static struct file_system_type sel_fs_type = {
1705 .name = "selinuxfs",
1706 .get_sb = sel_get_sb,
1707 .kill_sb = kill_litter_super,
1710 struct vfsmount *selinuxfs_mount;
1712 static int __init init_sel_fs(void)
1716 if (!selinux_enabled)
1718 err = register_filesystem(&sel_fs_type);
1720 selinuxfs_mount = kern_mount(&sel_fs_type);
1721 if (IS_ERR(selinuxfs_mount)) {
1722 printk(KERN_ERR "selinuxfs: could not mount!\n");
1723 err = PTR_ERR(selinuxfs_mount);
1724 selinuxfs_mount = NULL;
1730 __initcall(init_sel_fs);
1732 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
1733 void exit_sel_fs(void)
1735 unregister_filesystem(&sel_fs_type);