blob: ba2ada5f16a946e365a2e0ae8008891adbe5b84f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Updated: Karl MacMillan <kmacmillan@tresys.com>
2 *
Eric Paris18729812008-04-17 14:15:45 -04003 * Added conditional policy language extensions
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Paul Moore82c21bf2011-08-01 11:10:33 +00005 * Updated: Hewlett-Packard <paul@paul-moore.com>
Paul Moore3bb56b22008-01-29 08:38:19 -05006 *
Eric Paris18729812008-04-17 14:15:45 -04007 * Added support for the policy capability bitmap
Paul Moore3bb56b22008-01-29 08:38:19 -05008 *
9 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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
Eric Paris18729812008-04-17 14:15:45 -040013 * it under the terms of the GNU General Public License as published by
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * the Free Software Foundation, version 2.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
18#include <linux/pagemap.h>
19#include <linux/slab.h>
20#include <linux/vmalloc.h>
21#include <linux/fs.h>
Ingo Molnarbb003072006-03-22 00:09:14 -080022#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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>
Steve Grubbaf601e42006-01-04 14:08:39 +000029#include <linux/audit.h>
Eric Parisf5269712008-05-14 11:27:45 -040030#include <linux/uaccess.h>
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -070031#include <linux/kobject.h>
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -040032#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/* selinuxfs pseudo filesystem for exporting the security policy API.
35 Based on the proc code and the fs/nfsd/nfsctl.c code. */
36
37#include "flask.h"
38#include "avc.h"
39#include "avc_ss.h"
40#include "security.h"
41#include "objsec.h"
42#include "conditional.h"
43
Paul Moore3bb56b22008-01-29 08:38:19 -050044/* Policy capability filenames */
45static char *policycap_names[] = {
Eric Parisb0c636b2008-02-28 12:58:40 -050046 "network_peer_controls",
47 "open_perms"
Paul Moore3bb56b22008-01-29 08:38:19 -050048};
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050unsigned int selinux_checkreqprot = CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE;
51
52static int __init checkreqprot_setup(char *str)
53{
Eric Parisf5269712008-05-14 11:27:45 -040054 unsigned long checkreqprot;
55 if (!strict_strtoul(str, 0, &checkreqprot))
56 selinux_checkreqprot = checkreqprot ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return 1;
58}
59__setup("checkreqprot=", checkreqprot_setup);
60
Ingo Molnarbb003072006-03-22 00:09:14 -080061static DEFINE_MUTEX(sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* global data for booleans */
Eric Paris18729812008-04-17 14:15:45 -040064static struct dentry *bool_dir;
65static int bool_num;
Stephen Smalleyd313f942007-11-26 11:12:53 -050066static char **bool_pending_names;
Eric Paris18729812008-04-17 14:15:45 -040067static int *bool_pending_values;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -040069/* global data for classes */
Eric Paris18729812008-04-17 14:15:45 -040070static struct dentry *class_dir;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -040071static unsigned long last_class_ino;
72
Eric Pariscee74f42010-10-13 17:50:25 -040073static char policy_opened;
74
Paul Moore3bb56b22008-01-29 08:38:19 -050075/* global data for policy capabilities */
Eric Paris18729812008-04-17 14:15:45 -040076static struct dentry *policycap_dir;
Paul Moore3bb56b22008-01-29 08:38:19 -050077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078extern void selnl_notify_setenforce(int val);
79
80/* Check whether a task is allowed to use a security operation. */
81static int task_has_security(struct task_struct *tsk,
82 u32 perms)
83{
David Howellsc69e8d92008-11-14 10:39:19 +110084 const struct task_security_struct *tsec;
85 u32 sid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
David Howellsc69e8d92008-11-14 10:39:19 +110087 rcu_read_lock();
88 tsec = __task_cred(tsk)->security;
89 if (tsec)
90 sid = tsec->sid;
91 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (!tsec)
93 return -EACCES;
94
David Howellsc69e8d92008-11-14 10:39:19 +110095 return avc_has_perm(sid, SECINITSID_SECURITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 SECCLASS_SECURITY, perms, NULL);
97}
98
99enum sel_inos {
100 SEL_ROOT_INO = 2,
101 SEL_LOAD, /* load policy */
102 SEL_ENFORCE, /* get or set enforcing status */
103 SEL_CONTEXT, /* validate context */
104 SEL_ACCESS, /* compute access decision */
105 SEL_CREATE, /* compute create labeling decision */
106 SEL_RELABEL, /* compute relabeling decision */
107 SEL_USER, /* compute reachable user contexts */
108 SEL_POLICYVERS, /* return policy version for this kernel */
109 SEL_COMMIT_BOOLS, /* commit new boolean values */
110 SEL_MLS, /* return if MLS policy is enabled */
111 SEL_DISABLE, /* disable SELinux until next reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 SEL_MEMBER, /* compute polyinstantiation membership decision */
113 SEL_CHECKREQPROT, /* check requested protection, not kernel-applied one */
James Morris4e5ab4c2006-06-09 00:33:33 -0700114 SEL_COMPAT_NET, /* whether to use old compat network packet controls */
Eric Paris3f120702007-09-21 14:37:10 -0400115 SEL_REJECT_UNKNOWN, /* export unknown reject handling to userspace */
116 SEL_DENY_UNKNOWN, /* export unknown deny handling to userspace */
KaiGai Kohei11904162010-09-14 18:28:39 +0900117 SEL_STATUS, /* export current status using mmap() */
Eric Pariscee74f42010-10-13 17:50:25 -0400118 SEL_POLICY, /* allow userspace to read the in kernel policy */
James Carter6174eaf2007-04-04 16:18:39 -0400119 SEL_INO_NEXT, /* The next inode number to use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
James Carter6174eaf2007-04-04 16:18:39 -0400122static unsigned long sel_last_ino = SEL_INO_NEXT - 1;
123
Paul Moore3bb56b22008-01-29 08:38:19 -0500124#define SEL_INITCON_INO_OFFSET 0x01000000
125#define SEL_BOOL_INO_OFFSET 0x02000000
126#define SEL_CLASS_INO_OFFSET 0x04000000
127#define SEL_POLICYCAP_INO_OFFSET 0x08000000
128#define SEL_INO_MASK 0x00ffffff
James Carterf0ee2e42007-04-04 10:11:29 -0400129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define TMPBUFLEN 12
131static ssize_t sel_read_enforce(struct file *filp, char __user *buf,
132 size_t count, loff_t *ppos)
133{
134 char tmpbuf[TMPBUFLEN];
135 ssize_t length;
136
137 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", selinux_enforcing);
138 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
139}
140
141#ifdef CONFIG_SECURITY_SELINUX_DEVELOP
Eric Paris18729812008-04-17 14:15:45 -0400142static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 size_t count, loff_t *ppos)
144
145{
Eric Parisb77a4932010-11-23 11:40:08 -0500146 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ssize_t length;
148 int new_value;
149
Eric Parisb77a4932010-11-23 11:40:08 -0500150 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800151 if (count >= PAGE_SIZE)
Eric Parisb77a4932010-11-23 11:40:08 -0500152 goto out;
153
154 /* No partial writes. */
155 length = EINVAL;
156 if (*ppos != 0)
157 goto out;
158
159 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400160 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500162 goto out;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 length = -EFAULT;
165 if (copy_from_user(page, buf, count))
166 goto out;
167
168 length = -EINVAL;
169 if (sscanf(page, "%d", &new_value) != 1)
170 goto out;
171
172 if (new_value != selinux_enforcing) {
173 length = task_has_security(current, SECURITY__SETENFORCE);
174 if (length)
175 goto out;
Steve Grubbaf601e42006-01-04 14:08:39 +0000176 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
Eric Paris4746ec52008-01-08 10:06:53 -0500177 "enforcing=%d old_enforcing=%d auid=%u ses=%u",
178 new_value, selinux_enforcing,
179 audit_get_loginuid(current),
180 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 selinux_enforcing = new_value;
182 if (selinux_enforcing)
183 avc_ss_reset(0);
184 selnl_notify_setenforce(selinux_enforcing);
KaiGai Kohei11904162010-09-14 18:28:39 +0900185 selinux_status_update_setenforce(selinux_enforcing);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187 length = count;
188out:
189 free_page((unsigned long) page);
190 return length;
191}
192#else
193#define sel_write_enforce NULL
194#endif
195
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800196static const struct file_operations sel_enforce_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .read = sel_read_enforce,
198 .write = sel_write_enforce,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200199 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Eric Paris3f120702007-09-21 14:37:10 -0400202static ssize_t sel_read_handle_unknown(struct file *filp, char __user *buf,
203 size_t count, loff_t *ppos)
204{
205 char tmpbuf[TMPBUFLEN];
206 ssize_t length;
207 ino_t ino = filp->f_path.dentry->d_inode->i_ino;
208 int handle_unknown = (ino == SEL_REJECT_UNKNOWN) ?
209 security_get_reject_unknown() : !security_get_allow_unknown();
210
211 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", handle_unknown);
212 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
213}
214
215static const struct file_operations sel_handle_unknown_ops = {
216 .read = sel_read_handle_unknown,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200217 .llseek = generic_file_llseek,
Eric Paris3f120702007-09-21 14:37:10 -0400218};
219
KaiGai Kohei11904162010-09-14 18:28:39 +0900220static int sel_open_handle_status(struct inode *inode, struct file *filp)
221{
222 struct page *status = selinux_kernel_status_page();
223
224 if (!status)
225 return -ENOMEM;
226
227 filp->private_data = status;
228
229 return 0;
230}
231
232static ssize_t sel_read_handle_status(struct file *filp, char __user *buf,
233 size_t count, loff_t *ppos)
234{
235 struct page *status = filp->private_data;
236
237 BUG_ON(!status);
238
239 return simple_read_from_buffer(buf, count, ppos,
240 page_address(status),
241 sizeof(struct selinux_kernel_status));
242}
243
244static int sel_mmap_handle_status(struct file *filp,
245 struct vm_area_struct *vma)
246{
247 struct page *status = filp->private_data;
248 unsigned long size = vma->vm_end - vma->vm_start;
249
250 BUG_ON(!status);
251
252 /* only allows one page from the head */
253 if (vma->vm_pgoff > 0 || size != PAGE_SIZE)
254 return -EIO;
255 /* disallow writable mapping */
256 if (vma->vm_flags & VM_WRITE)
257 return -EPERM;
258 /* disallow mprotect() turns it into writable */
259 vma->vm_flags &= ~VM_MAYWRITE;
260
261 return remap_pfn_range(vma, vma->vm_start,
262 page_to_pfn(status),
263 size, vma->vm_page_prot);
264}
265
266static const struct file_operations sel_handle_status_ops = {
267 .open = sel_open_handle_status,
268 .read = sel_read_handle_status,
269 .mmap = sel_mmap_handle_status,
270 .llseek = generic_file_llseek,
271};
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#ifdef CONFIG_SECURITY_SELINUX_DISABLE
Eric Paris18729812008-04-17 14:15:45 -0400274static ssize_t sel_write_disable(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 size_t count, loff_t *ppos)
276
277{
Eric Parisb77a4932010-11-23 11:40:08 -0500278 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 ssize_t length;
280 int new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Eric Parisb77a4932010-11-23 11:40:08 -0500282 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800283 if (count >= PAGE_SIZE)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700284 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -0500285
286 /* No partial writes. */
287 length = -EINVAL;
288 if (*ppos != 0)
289 goto out;
290
291 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400292 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500294 goto out;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 length = -EFAULT;
297 if (copy_from_user(page, buf, count))
298 goto out;
299
300 length = -EINVAL;
301 if (sscanf(page, "%d", &new_value) != 1)
302 goto out;
303
304 if (new_value) {
305 length = selinux_disable();
Eric Parisb77a4932010-11-23 11:40:08 -0500306 if (length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 goto out;
Steve Grubbaf601e42006-01-04 14:08:39 +0000308 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_STATUS,
Eric Paris4746ec52008-01-08 10:06:53 -0500309 "selinux=0 auid=%u ses=%u",
310 audit_get_loginuid(current),
311 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 length = count;
315out:
316 free_page((unsigned long) page);
317 return length;
318}
319#else
320#define sel_write_disable NULL
321#endif
322
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800323static const struct file_operations sel_disable_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 .write = sel_write_disable,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200325 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326};
327
328static ssize_t sel_read_policyvers(struct file *filp, char __user *buf,
Eric Paris18729812008-04-17 14:15:45 -0400329 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 char tmpbuf[TMPBUFLEN];
332 ssize_t length;
333
334 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", POLICYDB_VERSION_MAX);
335 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
336}
337
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800338static const struct file_operations sel_policyvers_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 .read = sel_read_policyvers,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200340 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341};
342
343/* declaration for sel_write_load */
344static int sel_make_bools(void);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400345static int sel_make_classes(void);
Paul Moore3bb56b22008-01-29 08:38:19 -0500346static int sel_make_policycap(void);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400347
348/* declaration for sel_make_class_dirs */
349static int sel_make_dir(struct inode *dir, struct dentry *dentry,
350 unsigned long *ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352static ssize_t sel_read_mls(struct file *filp, char __user *buf,
353 size_t count, loff_t *ppos)
354{
355 char tmpbuf[TMPBUFLEN];
356 ssize_t length;
357
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100358 length = scnprintf(tmpbuf, TMPBUFLEN, "%d",
359 security_mls_enabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
361}
362
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800363static const struct file_operations sel_mls_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 .read = sel_read_mls,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200365 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366};
367
Eric Pariscee74f42010-10-13 17:50:25 -0400368struct policy_load_memory {
369 size_t len;
370 void *data;
371};
372
373static int sel_open_policy(struct inode *inode, struct file *filp)
374{
375 struct policy_load_memory *plm = NULL;
376 int rc;
377
378 BUG_ON(filp->private_data);
379
380 mutex_lock(&sel_mutex);
381
382 rc = task_has_security(current, SECURITY__READ_POLICY);
383 if (rc)
384 goto err;
385
386 rc = -EBUSY;
387 if (policy_opened)
388 goto err;
389
390 rc = -ENOMEM;
391 plm = kzalloc(sizeof(*plm), GFP_KERNEL);
392 if (!plm)
393 goto err;
394
395 if (i_size_read(inode) != security_policydb_len()) {
396 mutex_lock(&inode->i_mutex);
397 i_size_write(inode, security_policydb_len());
398 mutex_unlock(&inode->i_mutex);
399 }
400
401 rc = security_read_policy(&plm->data, &plm->len);
402 if (rc)
403 goto err;
404
405 policy_opened = 1;
406
407 filp->private_data = plm;
408
409 mutex_unlock(&sel_mutex);
410
411 return 0;
412err:
413 mutex_unlock(&sel_mutex);
414
415 if (plm)
416 vfree(plm->data);
417 kfree(plm);
418 return rc;
419}
420
421static int sel_release_policy(struct inode *inode, struct file *filp)
422{
423 struct policy_load_memory *plm = filp->private_data;
424
425 BUG_ON(!plm);
426
427 policy_opened = 0;
428
429 vfree(plm->data);
430 kfree(plm);
431
432 return 0;
433}
434
435static ssize_t sel_read_policy(struct file *filp, char __user *buf,
436 size_t count, loff_t *ppos)
437{
438 struct policy_load_memory *plm = filp->private_data;
439 int ret;
440
441 mutex_lock(&sel_mutex);
442
443 ret = task_has_security(current, SECURITY__READ_POLICY);
444 if (ret)
445 goto out;
446
447 ret = simple_read_from_buffer(buf, count, ppos, plm->data, plm->len);
448out:
449 mutex_unlock(&sel_mutex);
450 return ret;
451}
452
Eric Paris845ca302010-10-13 17:50:31 -0400453static int sel_mmap_policy_fault(struct vm_area_struct *vma,
454 struct vm_fault *vmf)
455{
456 struct policy_load_memory *plm = vma->vm_file->private_data;
457 unsigned long offset;
458 struct page *page;
459
460 if (vmf->flags & (FAULT_FLAG_MKWRITE | FAULT_FLAG_WRITE))
461 return VM_FAULT_SIGBUS;
462
463 offset = vmf->pgoff << PAGE_SHIFT;
464 if (offset >= roundup(plm->len, PAGE_SIZE))
465 return VM_FAULT_SIGBUS;
466
467 page = vmalloc_to_page(plm->data + offset);
468 get_page(page);
469
470 vmf->page = page;
471
472 return 0;
473}
474
475static struct vm_operations_struct sel_mmap_policy_ops = {
476 .fault = sel_mmap_policy_fault,
477 .page_mkwrite = sel_mmap_policy_fault,
478};
479
James Morrisad3fa082011-08-30 10:50:12 +1000480static int sel_mmap_policy(struct file *filp, struct vm_area_struct *vma)
Eric Paris845ca302010-10-13 17:50:31 -0400481{
482 if (vma->vm_flags & VM_SHARED) {
483 /* do not allow mprotect to make mapping writable */
484 vma->vm_flags &= ~VM_MAYWRITE;
485
486 if (vma->vm_flags & VM_WRITE)
487 return -EACCES;
488 }
489
490 vma->vm_flags |= VM_RESERVED;
491 vma->vm_ops = &sel_mmap_policy_ops;
492
493 return 0;
494}
495
Eric Pariscee74f42010-10-13 17:50:25 -0400496static const struct file_operations sel_policy_ops = {
497 .open = sel_open_policy,
498 .read = sel_read_policy,
Eric Paris845ca302010-10-13 17:50:31 -0400499 .mmap = sel_mmap_policy,
Eric Pariscee74f42010-10-13 17:50:25 -0400500 .release = sel_release_policy,
501};
502
Eric Paris18729812008-04-17 14:15:45 -0400503static ssize_t sel_write_load(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 size_t count, loff_t *ppos)
505
506{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 ssize_t length;
508 void *data = NULL;
509
Ingo Molnarbb003072006-03-22 00:09:14 -0800510 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 length = task_has_security(current, SECURITY__LOAD_POLICY);
513 if (length)
514 goto out;
515
Eric Parisb77a4932010-11-23 11:40:08 -0500516 /* No partial writes. */
517 length = -EINVAL;
518 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Eric Parisb77a4932010-11-23 11:40:08 -0500521 length = -EFBIG;
522 if (count > 64 * 1024 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -0500524
525 length = -ENOMEM;
526 data = vmalloc(count);
527 if (!data)
528 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 length = -EFAULT;
531 if (copy_from_user(data, buf, count) != 0)
532 goto out;
533
534 length = security_load_policy(data, count);
535 if (length)
536 goto out;
537
Eric Parisb77a4932010-11-23 11:40:08 -0500538 length = sel_make_bools();
539 if (length)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400540 goto out1;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400541
Eric Parisb77a4932010-11-23 11:40:08 -0500542 length = sel_make_classes();
543 if (length)
Paul Moore3bb56b22008-01-29 08:38:19 -0500544 goto out1;
Paul Moore3bb56b22008-01-29 08:38:19 -0500545
Eric Parisb77a4932010-11-23 11:40:08 -0500546 length = sel_make_policycap();
547 if (length)
548 goto out1;
549
550 length = count;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -0400551
552out1:
Steve Grubbaf601e42006-01-04 14:08:39 +0000553 audit_log(current->audit_context, GFP_KERNEL, AUDIT_MAC_POLICY_LOAD,
Eric Paris4746ec52008-01-08 10:06:53 -0500554 "policy loaded auid=%u ses=%u",
555 audit_get_loginuid(current),
556 audit_get_sessionid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557out:
Ingo Molnarbb003072006-03-22 00:09:14 -0800558 mutex_unlock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 vfree(data);
560 return length;
561}
562
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800563static const struct file_operations sel_load_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 .write = sel_write_load,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200565 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566};
567
Eric Paris18729812008-04-17 14:15:45 -0400568static ssize_t sel_write_context(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Eric Parisb77a4932010-11-23 11:40:08 -0500570 char *canon = NULL;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800571 u32 sid, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 ssize_t length;
573
574 length = task_has_security(current, SECURITY__CHECK_CONTEXT);
575 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500576 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800578 length = security_context_to_sid(buf, size, &sid);
Eric Parisb77a4932010-11-23 11:40:08 -0500579 if (length)
580 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800582 length = security_sid_to_context(sid, &canon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500583 if (length)
584 goto out;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800585
Eric Parisb77a4932010-11-23 11:40:08 -0500586 length = -ERANGE;
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800587 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400588 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
589 "payload max\n", __func__, len);
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800590 goto out;
591 }
592
593 memcpy(buf, canon, len);
594 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595out:
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800596 kfree(canon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return length;
598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static ssize_t sel_read_checkreqprot(struct file *filp, char __user *buf,
601 size_t count, loff_t *ppos)
602{
603 char tmpbuf[TMPBUFLEN];
604 ssize_t length;
605
606 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", selinux_checkreqprot);
607 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
608}
609
Eric Paris18729812008-04-17 14:15:45 -0400610static ssize_t sel_write_checkreqprot(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 size_t count, loff_t *ppos)
612{
Eric Parisb77a4932010-11-23 11:40:08 -0500613 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 ssize_t length;
615 unsigned int new_value;
616
617 length = task_has_security(current, SECURITY__SETCHECKREQPROT);
618 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500619 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Eric Parisb77a4932010-11-23 11:40:08 -0500621 length = -ENOMEM;
Davi Arnautbfd51622005-10-30 14:59:24 -0800622 if (count >= PAGE_SIZE)
Eric Parisb77a4932010-11-23 11:40:08 -0500623 goto out;
624
625 /* No partial writes. */
626 length = -EINVAL;
627 if (*ppos != 0)
628 goto out;
629
630 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -0400631 page = (char *)get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -0500633 goto out;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 length = -EFAULT;
636 if (copy_from_user(page, buf, count))
637 goto out;
638
639 length = -EINVAL;
640 if (sscanf(page, "%u", &new_value) != 1)
641 goto out;
642
643 selinux_checkreqprot = new_value ? 1 : 0;
644 length = count;
645out:
646 free_page((unsigned long) page);
647 return length;
648}
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800649static const struct file_operations sel_checkreqprot_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 .read = sel_read_checkreqprot,
651 .write = sel_write_checkreqprot,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200652 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653};
654
655/*
656 * Remaining nodes use transaction based IO methods like nfsd/nfsctl.c
657 */
Eric Paris18729812008-04-17 14:15:45 -0400658static ssize_t sel_write_access(struct file *file, char *buf, size_t size);
659static ssize_t sel_write_create(struct file *file, char *buf, size_t size);
660static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size);
661static ssize_t sel_write_user(struct file *file, char *buf, size_t size);
662static ssize_t sel_write_member(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664static ssize_t (*write_op[])(struct file *, char *, size_t) = {
665 [SEL_ACCESS] = sel_write_access,
666 [SEL_CREATE] = sel_write_create,
667 [SEL_RELABEL] = sel_write_relabel,
668 [SEL_USER] = sel_write_user,
669 [SEL_MEMBER] = sel_write_member,
Stephen Smalleyce9982d2005-11-08 21:34:33 -0800670 [SEL_CONTEXT] = sel_write_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671};
672
673static ssize_t selinux_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
674{
Eric Paris18729812008-04-17 14:15:45 -0400675 ino_t ino = file->f_path.dentry->d_inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 char *data;
677 ssize_t rv;
678
Nicolas Kaiser6e20a642006-01-06 00:11:22 -0800679 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return -EINVAL;
681
682 data = simple_transaction_get(file, buf, size);
683 if (IS_ERR(data))
684 return PTR_ERR(data);
685
Eric Paris18729812008-04-17 14:15:45 -0400686 rv = write_op[ino](file, data, size);
687 if (rv > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 simple_transaction_set(file, rv);
689 rv = size;
690 }
691 return rv;
692}
693
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800694static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 .write = selinux_transaction_write,
696 .read = simple_transaction_read,
697 .release = simple_transaction_release,
Arnd Bergmann57a62c22010-07-07 23:40:10 +0200698 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699};
700
701/*
702 * payload - write methods
703 * If the method has a response, the response should be put in buf,
704 * and the length returned. Otherwise return 0 or and -error.
705 */
706
Eric Paris18729812008-04-17 14:15:45 -0400707static ssize_t sel_write_access(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Eric Parisb77a4932010-11-23 11:40:08 -0500709 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 u32 ssid, tsid;
711 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct av_decision avd;
713 ssize_t length;
714
715 length = task_has_security(current, SECURITY__COMPUTE_AV);
716 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500717 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800720 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500722 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Eric Parisb77a4932010-11-23 11:40:08 -0500724 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800725 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (!tcon)
727 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 length = -EINVAL;
Stephen Smalley19439d02010-01-14 17:28:10 -0500730 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500731 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800733 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500734 if (length)
735 goto out;
736
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800737 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500738 if (length)
739 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Stephen Smalley19439d02010-01-14 17:28:10 -0500741 security_compute_av_user(ssid, tsid, tclass, &avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 length = scnprintf(buf, SIMPLE_TRANSACTION_LIMIT,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900744 "%x %x %x %x %u %x",
Eric Parisf1c63812009-02-12 14:50:54 -0500745 avd.allowed, 0xffffffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 avd.auditallow, avd.auditdeny,
KaiGai Kohei8a6f83a2009-04-01 10:07:57 +0900747 avd.seqno, avd.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748out:
Eric Parisb77a4932010-11-23 11:40:08 -0500749 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 kfree(scon);
751 return length;
752}
753
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400754static inline int hexcode_to_int(int code) {
755 if (code == '\0' || !isxdigit(code))
756 return -1;
757 if (isdigit(code))
758 return code - '0';
759 return tolower(code) - 'a' + 10;
760}
761
Eric Paris18729812008-04-17 14:15:45 -0400762static ssize_t sel_write_create(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Eric Parisb77a4932010-11-23 11:40:08 -0500764 char *scon = NULL, *tcon = NULL;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100765 char *namebuf = NULL, *objname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 u32 ssid, tsid, newsid;
767 u16 tclass;
768 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500769 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 u32 len;
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100771 int nargs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 length = task_has_security(current, SECURITY__COMPUTE_CREATE);
774 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500775 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800778 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500780 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Eric Parisb77a4932010-11-23 11:40:08 -0500782 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800783 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (!tcon)
785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100787 length = -ENOMEM;
788 namebuf = kzalloc(size + 1, GFP_KERNEL);
789 if (!namebuf)
Eric Parisb77a4932010-11-23 11:40:08 -0500790 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100792 length = -EINVAL;
793 nargs = sscanf(buf, "%s %s %hu %s", scon, tcon, &tclass, namebuf);
794 if (nargs < 3 || nargs > 4)
795 goto out;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400796 if (nargs == 4) {
797 /*
798 * If and when the name of new object to be queried contains
799 * either whitespace or multibyte characters, they shall be
800 * encoded based on the percentage-encoding rule.
801 * If not encoded, the sscanf logic picks up only left-half
802 * of the supplied name; splitted by a whitespace unexpectedly.
803 */
804 char *r, *w;
805 int c1, c2;
806
807 r = w = namebuf;
808 do {
809 c1 = *r++;
810 if (c1 == '+')
811 c1 = ' ';
812 else if (c1 == '%') {
813 if ((c1 = hexcode_to_int(*r++)) < 0)
814 goto out;
815 if ((c2 = hexcode_to_int(*r++)) < 0)
816 goto out;
817 c1 = (c1 << 4) | c2;
818 }
819 *w++ = c1;
820 } while (c1 != '\0');
821
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100822 objname = namebuf;
Kohei Kaigai0f7e4c32011-05-26 14:59:25 -0400823 }
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100824
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800825 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500826 if (length)
827 goto out;
828
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800829 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500830 if (length)
831 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100833 length = security_transition_sid_user(ssid, tsid, tclass,
834 objname, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500835 if (length)
836 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500839 if (length)
840 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Eric Parisb77a4932010-11-23 11:40:08 -0500842 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -0400844 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
845 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -0500846 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848
849 memcpy(buf, newcon, len);
850 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851out:
Eric Parisb77a4932010-11-23 11:40:08 -0500852 kfree(newcon);
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +0100853 kfree(namebuf);
Eric Parisb77a4932010-11-23 11:40:08 -0500854 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 kfree(scon);
856 return length;
857}
858
Eric Paris18729812008-04-17 14:15:45 -0400859static ssize_t sel_write_relabel(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Eric Parisb77a4932010-11-23 11:40:08 -0500861 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 u32 ssid, tsid, newsid;
863 u16 tclass;
864 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500865 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 u32 len;
867
868 length = task_has_security(current, SECURITY__COMPUTE_RELABEL);
869 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500870 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800873 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (!scon)
Eric Parisb77a4932010-11-23 11:40:08 -0500875 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Eric Parisb77a4932010-11-23 11:40:08 -0500877 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800878 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (!tcon)
880 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 length = -EINVAL;
883 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -0500884 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800886 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -0500887 if (length)
888 goto out;
889
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800890 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500891 if (length)
892 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 length = security_change_sid(ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -0500895 if (length)
896 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -0500899 if (length)
900 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Eric Parisb77a4932010-11-23 11:40:08 -0500902 length = -ERANGE;
903 if (len > SIMPLE_TRANSACTION_LIMIT)
904 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 memcpy(buf, newcon, len);
907 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908out:
Eric Parisb77a4932010-11-23 11:40:08 -0500909 kfree(newcon);
910 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 kfree(scon);
912 return length;
913}
914
Eric Paris18729812008-04-17 14:15:45 -0400915static ssize_t sel_write_user(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Eric Parisb77a4932010-11-23 11:40:08 -0500917 char *con = NULL, *user = NULL, *ptr;
918 u32 sid, *sids = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 ssize_t length;
920 char *newcon;
921 int i, rc;
922 u32 len, nsids;
923
924 length = task_has_security(current, SECURITY__COMPUTE_USER);
925 if (length)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700926 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800929 con = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (!con)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700931 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Eric Parisb77a4932010-11-23 11:40:08 -0500933 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800934 user = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (!user)
936 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 length = -EINVAL;
939 if (sscanf(buf, "%s %s", con, user) != 2)
Eric Parisb77a4932010-11-23 11:40:08 -0500940 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800942 length = security_context_to_sid(con, strlen(con) + 1, &sid);
Eric Parisb77a4932010-11-23 11:40:08 -0500943 if (length)
944 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 length = security_get_user_sids(sid, user, &sids, &nsids);
Eric Parisb77a4932010-11-23 11:40:08 -0500947 if (length)
948 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 length = sprintf(buf, "%u", nsids) + 1;
951 ptr = buf + length;
952 for (i = 0; i < nsids; i++) {
953 rc = security_sid_to_context(sids[i], &newcon, &len);
954 if (rc) {
955 length = rc;
Eric Parisb77a4932010-11-23 11:40:08 -0500956 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958 if ((length + len) >= SIMPLE_TRANSACTION_LIMIT) {
959 kfree(newcon);
960 length = -ERANGE;
Eric Parisb77a4932010-11-23 11:40:08 -0500961 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963 memcpy(ptr, newcon, len);
964 kfree(newcon);
965 ptr += len;
966 length += len;
967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968out:
Eric Parisb77a4932010-11-23 11:40:08 -0500969 kfree(sids);
970 kfree(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 kfree(con);
972 return length;
973}
974
Eric Paris18729812008-04-17 14:15:45 -0400975static ssize_t sel_write_member(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Eric Parisb77a4932010-11-23 11:40:08 -0500977 char *scon = NULL, *tcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 u32 ssid, tsid, newsid;
979 u16 tclass;
980 ssize_t length;
Eric Parisb77a4932010-11-23 11:40:08 -0500981 char *newcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 u32 len;
983
984 length = task_has_security(current, SECURITY__COMPUTE_MEMBER);
985 if (length)
Eric Parisb77a4932010-11-23 11:40:08 -0500986 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800989 scon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (!scon)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700991 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Eric Parisb77a4932010-11-23 11:40:08 -0500993 length = -ENOMEM;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800994 tcon = kzalloc(size + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (!tcon)
996 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 length = -EINVAL;
999 if (sscanf(buf, "%s %s %hu", scon, tcon, &tclass) != 3)
Eric Parisb77a4932010-11-23 11:40:08 -05001000 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001002 length = security_context_to_sid(scon, strlen(scon) + 1, &ssid);
Eric Parisb77a4932010-11-23 11:40:08 -05001003 if (length)
1004 goto out;
1005
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001006 length = security_context_to_sid(tcon, strlen(tcon) + 1, &tsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001007 if (length)
1008 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 length = security_member_sid(ssid, tsid, tclass, &newsid);
Eric Parisb77a4932010-11-23 11:40:08 -05001011 if (length)
1012 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 length = security_sid_to_context(newsid, &newcon, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001015 if (length)
1016 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Eric Parisb77a4932010-11-23 11:40:08 -05001018 length = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (len > SIMPLE_TRANSACTION_LIMIT) {
Eric Paris744ba352008-04-17 11:52:44 -04001020 printk(KERN_ERR "SELinux: %s: context size (%u) exceeds "
1021 "payload max\n", __func__, len);
Eric Parisb77a4932010-11-23 11:40:08 -05001022 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024
1025 memcpy(buf, newcon, len);
1026 length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027out:
Eric Parisb77a4932010-11-23 11:40:08 -05001028 kfree(newcon);
1029 kfree(tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 kfree(scon);
1031 return length;
1032}
1033
1034static struct inode *sel_make_inode(struct super_block *sb, int mode)
1035{
1036 struct inode *ret = new_inode(sb);
1037
1038 if (ret) {
1039 ret->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
1041 }
1042 return ret;
1043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045static ssize_t sel_read_bool(struct file *filep, char __user *buf,
1046 size_t count, loff_t *ppos)
1047{
1048 char *page = NULL;
1049 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 ssize_t ret;
1051 int cur_enforcing;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001052 struct inode *inode = filep->f_path.dentry->d_inode;
1053 unsigned index = inode->i_ino & SEL_INO_MASK;
1054 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Ingo Molnarbb003072006-03-22 00:09:14 -08001056 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Eric Parisb77a4932010-11-23 11:40:08 -05001058 ret = -EINVAL;
1059 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
Stephen Smalleyd313f942007-11-26 11:12:53 -05001060 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Eric Parisb77a4932010-11-23 11:40:08 -05001062 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001063 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001064 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Stephen Smalleyd313f942007-11-26 11:12:53 -05001067 cur_enforcing = security_get_bool_value(index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (cur_enforcing < 0) {
1069 ret = cur_enforcing;
1070 goto out;
1071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 length = scnprintf(page, PAGE_SIZE, "%d %d", cur_enforcing,
Stephen Smalleyd313f942007-11-26 11:12:53 -05001073 bool_pending_values[index]);
Stephen Smalley68bdcf22006-03-22 00:09:15 -08001074 ret = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001076 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001077 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return ret;
1079}
1080
1081static ssize_t sel_write_bool(struct file *filep, const char __user *buf,
1082 size_t count, loff_t *ppos)
1083{
1084 char *page = NULL;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001085 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 int new_value;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001087 struct inode *inode = filep->f_path.dentry->d_inode;
1088 unsigned index = inode->i_ino & SEL_INO_MASK;
1089 const char *name = filep->f_path.dentry->d_name.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Ingo Molnarbb003072006-03-22 00:09:14 -08001091 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 length = task_has_security(current, SECURITY__SETBOOL);
1094 if (length)
1095 goto out;
1096
Eric Parisb77a4932010-11-23 11:40:08 -05001097 length = -EINVAL;
1098 if (index >= bool_num || strcmp(name, bool_pending_names[index]))
Stephen Smalleyd313f942007-11-26 11:12:53 -05001099 goto out;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001100
Eric Parisb77a4932010-11-23 11:40:08 -05001101 length = -ENOMEM;
1102 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 goto out;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001104
Eric Parisb77a4932010-11-23 11:40:08 -05001105 /* No partial writes. */
1106 length = -EINVAL;
1107 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001109
1110 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001111 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001112 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Stephen Smalleyd313f942007-11-26 11:12:53 -05001115 length = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (copy_from_user(page, buf, count))
1117 goto out;
1118
1119 length = -EINVAL;
1120 if (sscanf(page, "%d", &new_value) != 1)
1121 goto out;
1122
1123 if (new_value)
1124 new_value = 1;
1125
Stephen Smalleyd313f942007-11-26 11:12:53 -05001126 bool_pending_values[index] = new_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 length = count;
1128
1129out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001130 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001131 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return length;
1133}
1134
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001135static const struct file_operations sel_bool_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001136 .read = sel_read_bool,
1137 .write = sel_write_bool,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001138 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139};
1140
1141static ssize_t sel_commit_bools_write(struct file *filep,
1142 const char __user *buf,
1143 size_t count, loff_t *ppos)
1144{
1145 char *page = NULL;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001146 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 int new_value;
1148
Ingo Molnarbb003072006-03-22 00:09:14 -08001149 mutex_lock(&sel_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 length = task_has_security(current, SECURITY__SETBOOL);
1152 if (length)
1153 goto out;
1154
Eric Parisb77a4932010-11-23 11:40:08 -05001155 length = -ENOMEM;
1156 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001158
1159 /* No partial writes. */
1160 length = -EINVAL;
1161 if (*ppos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 goto out;
Eric Parisb77a4932010-11-23 11:40:08 -05001163
1164 length = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001165 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001166 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Stephen Smalleyd313f942007-11-26 11:12:53 -05001169 length = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (copy_from_user(page, buf, count))
1171 goto out;
1172
1173 length = -EINVAL;
1174 if (sscanf(page, "%d", &new_value) != 1)
1175 goto out;
1176
Eric Parisb77a4932010-11-23 11:40:08 -05001177 length = 0;
Eric Paris18729812008-04-17 14:15:45 -04001178 if (new_value && bool_pending_values)
Eric Parisb77a4932010-11-23 11:40:08 -05001179 length = security_set_bools(bool_num, bool_pending_values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Eric Parisb77a4932010-11-23 11:40:08 -05001181 if (!length)
1182 length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184out:
Ingo Molnarbb003072006-03-22 00:09:14 -08001185 mutex_unlock(&sel_mutex);
Eric Parisb77a4932010-11-23 11:40:08 -05001186 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return length;
1188}
1189
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001190static const struct file_operations sel_commit_bools_ops = {
Eric Paris18729812008-04-17 14:15:45 -04001191 .write = sel_commit_bools_write,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001192 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193};
1194
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001195static void sel_remove_entries(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Stephen Smalley0955dc02007-11-21 09:01:36 -05001197 struct list_head *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001199 spin_lock(&de->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 node = de->d_subdirs.next;
1201 while (node != &de->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -08001202 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001203
1204 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 list_del_init(node);
1206
1207 if (d->d_inode) {
Nick Piggindc0474b2011-01-07 17:49:43 +11001208 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001209 spin_unlock(&de->d_lock);
1210 spin_unlock(&d->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 d_delete(d);
1212 simple_unlink(de->d_inode, d);
1213 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001214 spin_lock(&de->d_lock);
1215 } else
1216 spin_unlock(&d->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 node = de->d_subdirs.next;
1218 }
1219
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001220 spin_unlock(&de->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
1223#define BOOL_DIR_NAME "booleans"
1224
1225static int sel_make_bools(void)
1226{
Eric Parisb77a4932010-11-23 11:40:08 -05001227 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 ssize_t len;
1229 struct dentry *dentry = NULL;
1230 struct dentry *dir = bool_dir;
1231 struct inode *inode = NULL;
1232 struct inode_security_struct *isec;
1233 char **names = NULL, *page;
1234 int num;
1235 int *values = NULL;
1236 u32 sid;
1237
1238 /* remove any existing files */
Xiaotian Feng8007f102010-02-09 08:22:24 +11001239 for (i = 0; i < bool_num; i++)
1240 kfree(bool_pending_names[i]);
Stephen Smalleyd313f942007-11-26 11:12:53 -05001241 kfree(bool_pending_names);
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001242 kfree(bool_pending_values);
Stephen Smalleyd313f942007-11-26 11:12:53 -05001243 bool_pending_names = NULL;
Davi Arnaut20c19e42005-10-23 12:57:16 -07001244 bool_pending_values = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001246 sel_remove_entries(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Eric Parisb77a4932010-11-23 11:40:08 -05001248 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001249 page = (char *)get_zeroed_page(GFP_KERNEL);
1250 if (!page)
Eric Parisb77a4932010-11-23 11:40:08 -05001251 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 ret = security_get_bools(&num, &names, &values);
Eric Parisb77a4932010-11-23 11:40:08 -05001254 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 goto out;
1256
1257 for (i = 0; i < num; i++) {
Eric Parisb77a4932010-11-23 11:40:08 -05001258 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 dentry = d_alloc_name(dir, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001260 if (!dentry)
1261 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Eric Parisb77a4932010-11-23 11:40:08 -05001263 ret = -ENOMEM;
1264 inode = sel_make_inode(dir->d_sb, S_IFREG | S_IRUGO | S_IWUSR);
1265 if (!inode)
1266 goto out;
1267
1268 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 len = snprintf(page, PAGE_SIZE, "/%s/%s", BOOL_DIR_NAME, names[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001270 if (len < 0)
1271 goto out;
1272
1273 ret = -ENAMETOOLONG;
1274 if (len >= PAGE_SIZE)
1275 goto out;
1276
Eric Paris18729812008-04-17 14:15:45 -04001277 isec = (struct inode_security_struct *)inode->i_security;
1278 ret = security_genfs_sid("selinuxfs", page, SECCLASS_FILE, &sid);
1279 if (ret)
Eric Parisb77a4932010-11-23 11:40:08 -05001280 goto out;
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 isec->sid = sid;
1283 isec->initialized = 1;
1284 inode->i_fop = &sel_bool_ops;
James Carterbce34bc2007-04-04 16:18:50 -04001285 inode->i_ino = i|SEL_BOOL_INO_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 d_add(dentry, inode);
1287 }
1288 bool_num = num;
Stephen Smalleyd313f942007-11-26 11:12:53 -05001289 bool_pending_names = names;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 bool_pending_values = values;
Eric Parisb77a4932010-11-23 11:40:08 -05001291
1292 free_page((unsigned long)page);
1293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294out:
1295 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (names) {
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07001298 for (i = 0; i < num; i++)
1299 kfree(names[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 kfree(names);
1301 }
Davi Arnaut20c19e42005-10-23 12:57:16 -07001302 kfree(values);
Christopher J. PeBenito0c92d7c2007-05-23 09:12:07 -04001303 sel_remove_entries(dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001304
1305 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
1308#define NULL_FILE_NAME "null"
1309
Eric Paris18729812008-04-17 14:15:45 -04001310struct dentry *selinux_null;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312static ssize_t sel_read_avc_cache_threshold(struct file *filp, char __user *buf,
1313 size_t count, loff_t *ppos)
1314{
1315 char tmpbuf[TMPBUFLEN];
1316 ssize_t length;
1317
1318 length = scnprintf(tmpbuf, TMPBUFLEN, "%u", avc_cache_threshold);
1319 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1320}
1321
Eric Paris18729812008-04-17 14:15:45 -04001322static ssize_t sel_write_avc_cache_threshold(struct file *file,
1323 const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 size_t count, loff_t *ppos)
1325
1326{
Eric Parisb77a4932010-11-23 11:40:08 -05001327 char *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 ssize_t ret;
1329 int new_value;
1330
Eric Parisb77a4932010-11-23 11:40:08 -05001331 ret = task_has_security(current, SECURITY__SETSECPARAM);
1332 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Eric Parisb77a4932010-11-23 11:40:08 -05001335 ret = -ENOMEM;
1336 if (count >= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Eric Parisb77a4932010-11-23 11:40:08 -05001339 /* No partial writes. */
1340 ret = -EINVAL;
1341 if (*ppos != 0)
1342 goto out;
1343
1344 ret = -ENOMEM;
Eric Paris18729812008-04-17 14:15:45 -04001345 page = (char *)get_zeroed_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001346 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Eric Parisb77a4932010-11-23 11:40:08 -05001349 ret = -EFAULT;
1350 if (copy_from_user(page, buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Eric Parisb77a4932010-11-23 11:40:08 -05001353 ret = -EINVAL;
1354 if (sscanf(page, "%u", &new_value) != 1)
1355 goto out;
1356
1357 avc_cache_threshold = new_value;
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360out:
Eric Parisb77a4932010-11-23 11:40:08 -05001361 free_page((unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return ret;
1363}
1364
1365static ssize_t sel_read_avc_hash_stats(struct file *filp, char __user *buf,
1366 size_t count, loff_t *ppos)
1367{
1368 char *page;
Eric Parisb77a4932010-11-23 11:40:08 -05001369 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001372 if (!page)
1373 return -ENOMEM;
1374
1375 length = avc_get_hash_stats(page);
1376 if (length >= 0)
1377 length = simple_read_from_buffer(buf, count, ppos, page, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001379
1380 return length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001383static const struct file_operations sel_avc_cache_threshold_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 .read = sel_read_avc_cache_threshold,
1385 .write = sel_write_avc_cache_threshold,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001386 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387};
1388
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001389static const struct file_operations sel_avc_hash_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 .read = sel_read_avc_hash_stats,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001391 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392};
1393
1394#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1395static struct avc_cache_stats *sel_avc_get_stat_idx(loff_t *idx)
1396{
1397 int cpu;
1398
Rusty Russell4f4b6c12009-01-01 10:12:15 +10301399 for (cpu = *idx; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (!cpu_possible(cpu))
1401 continue;
1402 *idx = cpu + 1;
1403 return &per_cpu(avc_cache_stats, cpu);
1404 }
1405 return NULL;
1406}
1407
1408static void *sel_avc_stats_seq_start(struct seq_file *seq, loff_t *pos)
1409{
1410 loff_t n = *pos - 1;
1411
1412 if (*pos == 0)
1413 return SEQ_START_TOKEN;
1414
1415 return sel_avc_get_stat_idx(&n);
1416}
1417
1418static void *sel_avc_stats_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1419{
1420 return sel_avc_get_stat_idx(pos);
1421}
1422
1423static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
1424{
1425 struct avc_cache_stats *st = v;
1426
1427 if (v == SEQ_START_TOKEN)
1428 seq_printf(seq, "lookups hits misses allocations reclaims "
1429 "frees\n");
Linus Torvalds257313b2011-05-19 21:22:53 -07001430 else {
1431 unsigned int lookups = st->lookups;
1432 unsigned int misses = st->misses;
1433 unsigned int hits = lookups - misses;
1434 seq_printf(seq, "%u %u %u %u %u %u\n", lookups,
1435 hits, misses, st->allocations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 st->reclaims, st->frees);
Linus Torvalds257313b2011-05-19 21:22:53 -07001437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
1439}
1440
1441static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v)
1442{ }
1443
Jan Engelhardt1996a102008-01-23 00:02:58 +01001444static const struct seq_operations sel_avc_cache_stats_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 .start = sel_avc_stats_seq_start,
1446 .next = sel_avc_stats_seq_next,
1447 .show = sel_avc_stats_seq_show,
1448 .stop = sel_avc_stats_seq_stop,
1449};
1450
1451static int sel_open_avc_cache_stats(struct inode *inode, struct file *file)
1452{
1453 return seq_open(file, &sel_avc_cache_stats_seq_ops);
1454}
1455
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001456static const struct file_operations sel_avc_cache_stats_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 .open = sel_open_avc_cache_stats,
1458 .read = seq_read,
1459 .llseek = seq_lseek,
1460 .release = seq_release,
1461};
1462#endif
1463
1464static int sel_make_avc_files(struct dentry *dir)
1465{
Eric Parisb77a4932010-11-23 11:40:08 -05001466 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 static struct tree_descr files[] = {
1468 { "cache_threshold",
1469 &sel_avc_cache_threshold_ops, S_IRUGO|S_IWUSR },
1470 { "hash_stats", &sel_avc_hash_stats_ops, S_IRUGO },
1471#ifdef CONFIG_SECURITY_SELINUX_AVC_STATS
1472 { "cache_stats", &sel_avc_cache_stats_ops, S_IRUGO },
1473#endif
1474 };
1475
Nicolas Kaiser6e20a642006-01-06 00:11:22 -08001476 for (i = 0; i < ARRAY_SIZE(files); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 struct inode *inode;
1478 struct dentry *dentry;
1479
1480 dentry = d_alloc_name(dir, files[i].name);
Eric Parisb77a4932010-11-23 11:40:08 -05001481 if (!dentry)
1482 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 inode = sel_make_inode(dir->d_sb, S_IFREG|files[i].mode);
Eric Parisb77a4932010-11-23 11:40:08 -05001485 if (!inode)
1486 return -ENOMEM;
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 inode->i_fop = files[i].ops;
James Carter6174eaf2007-04-04 16:18:39 -04001489 inode->i_ino = ++sel_last_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 d_add(dentry, inode);
1491 }
Eric Parisb77a4932010-11-23 11:40:08 -05001492
1493 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Eric Paris18729812008-04-17 14:15:45 -04001496static ssize_t sel_read_initcon(struct file *file, char __user *buf,
James Carterf0ee2e42007-04-04 10:11:29 -04001497 size_t count, loff_t *ppos)
1498{
1499 struct inode *inode;
1500 char *con;
1501 u32 sid, len;
1502 ssize_t ret;
1503
1504 inode = file->f_path.dentry->d_inode;
1505 sid = inode->i_ino&SEL_INO_MASK;
1506 ret = security_sid_to_context(sid, &con, &len);
Eric Parisb77a4932010-11-23 11:40:08 -05001507 if (ret)
James Carterf0ee2e42007-04-04 10:11:29 -04001508 return ret;
1509
1510 ret = simple_read_from_buffer(buf, count, ppos, con, len);
1511 kfree(con);
1512 return ret;
1513}
1514
1515static const struct file_operations sel_initcon_ops = {
1516 .read = sel_read_initcon,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001517 .llseek = generic_file_llseek,
James Carterf0ee2e42007-04-04 10:11:29 -04001518};
1519
1520static int sel_make_initcon_files(struct dentry *dir)
1521{
Eric Parisb77a4932010-11-23 11:40:08 -05001522 int i;
James Carterf0ee2e42007-04-04 10:11:29 -04001523
1524 for (i = 1; i <= SECINITSID_NUM; i++) {
1525 struct inode *inode;
1526 struct dentry *dentry;
1527 dentry = d_alloc_name(dir, security_get_initial_sid_context(i));
Eric Parisb77a4932010-11-23 11:40:08 -05001528 if (!dentry)
1529 return -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001530
1531 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001532 if (!inode)
1533 return -ENOMEM;
1534
James Carterf0ee2e42007-04-04 10:11:29 -04001535 inode->i_fop = &sel_initcon_ops;
1536 inode->i_ino = i|SEL_INITCON_INO_OFFSET;
1537 d_add(dentry, inode);
1538 }
Eric Parisb77a4932010-11-23 11:40:08 -05001539
1540 return 0;
James Carterf0ee2e42007-04-04 10:11:29 -04001541}
1542
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001543static inline unsigned int sel_div(unsigned long a, unsigned long b)
1544{
1545 return a / b - (a % b < 0);
1546}
1547
1548static inline unsigned long sel_class_to_ino(u16 class)
1549{
1550 return (class * (SEL_VEC_MAX + 1)) | SEL_CLASS_INO_OFFSET;
1551}
1552
1553static inline u16 sel_ino_to_class(unsigned long ino)
1554{
1555 return sel_div(ino & SEL_INO_MASK, SEL_VEC_MAX + 1);
1556}
1557
1558static inline unsigned long sel_perm_to_ino(u16 class, u32 perm)
1559{
1560 return (class * (SEL_VEC_MAX + 1) + perm) | SEL_CLASS_INO_OFFSET;
1561}
1562
1563static inline u32 sel_ino_to_perm(unsigned long ino)
1564{
1565 return (ino & SEL_INO_MASK) % (SEL_VEC_MAX + 1);
1566}
1567
Eric Paris18729812008-04-17 14:15:45 -04001568static ssize_t sel_read_class(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001569 size_t count, loff_t *ppos)
1570{
1571 ssize_t rc, len;
1572 char *page;
1573 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1574
1575 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001576 if (!page)
1577 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001578
1579 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_class(ino));
1580 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1581 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001582
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001583 return rc;
1584}
1585
1586static const struct file_operations sel_class_ops = {
1587 .read = sel_read_class,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001588 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001589};
1590
Eric Paris18729812008-04-17 14:15:45 -04001591static ssize_t sel_read_perm(struct file *file, char __user *buf,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001592 size_t count, loff_t *ppos)
1593{
1594 ssize_t rc, len;
1595 char *page;
1596 unsigned long ino = file->f_path.dentry->d_inode->i_ino;
1597
1598 page = (char *)__get_free_page(GFP_KERNEL);
Eric Parisb77a4932010-11-23 11:40:08 -05001599 if (!page)
1600 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001601
Eric Paris18729812008-04-17 14:15:45 -04001602 len = snprintf(page, PAGE_SIZE, "%d", sel_ino_to_perm(ino));
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001603 rc = simple_read_from_buffer(buf, count, ppos, page, len);
1604 free_page((unsigned long)page);
Eric Parisb77a4932010-11-23 11:40:08 -05001605
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001606 return rc;
1607}
1608
1609static const struct file_operations sel_perm_ops = {
1610 .read = sel_read_perm,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001611 .llseek = generic_file_llseek,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001612};
1613
Paul Moore3bb56b22008-01-29 08:38:19 -05001614static ssize_t sel_read_policycap(struct file *file, char __user *buf,
1615 size_t count, loff_t *ppos)
1616{
1617 int value;
1618 char tmpbuf[TMPBUFLEN];
1619 ssize_t length;
1620 unsigned long i_ino = file->f_path.dentry->d_inode->i_ino;
1621
1622 value = security_policycap_supported(i_ino & SEL_INO_MASK);
1623 length = scnprintf(tmpbuf, TMPBUFLEN, "%d", value);
1624
1625 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1626}
1627
1628static const struct file_operations sel_policycap_ops = {
1629 .read = sel_read_policycap,
Arnd Bergmann57a62c22010-07-07 23:40:10 +02001630 .llseek = generic_file_llseek,
Paul Moore3bb56b22008-01-29 08:38:19 -05001631};
1632
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001633static int sel_make_perm_files(char *objclass, int classvalue,
1634 struct dentry *dir)
1635{
Eric Parisb77a4932010-11-23 11:40:08 -05001636 int i, rc, nperms;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001637 char **perms;
1638
1639 rc = security_get_permissions(objclass, &perms, &nperms);
1640 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001641 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001642
1643 for (i = 0; i < nperms; i++) {
1644 struct inode *inode;
1645 struct dentry *dentry;
1646
Eric Parisb77a4932010-11-23 11:40:08 -05001647 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001648 dentry = d_alloc_name(dir, perms[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001649 if (!dentry)
1650 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001651
Eric Parisb77a4932010-11-23 11:40:08 -05001652 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001653 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001654 if (!inode)
1655 goto out;
1656
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001657 inode->i_fop = &sel_perm_ops;
1658 /* i+1 since perm values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001659 inode->i_ino = sel_perm_to_ino(classvalue, i + 1);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001660 d_add(dentry, inode);
1661 }
Eric Parisb77a4932010-11-23 11:40:08 -05001662 rc = 0;
1663out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001664 for (i = 0; i < nperms; i++)
1665 kfree(perms[i]);
1666 kfree(perms);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001667 return rc;
1668}
1669
1670static int sel_make_class_dir_entries(char *classname, int index,
1671 struct dentry *dir)
1672{
1673 struct dentry *dentry = NULL;
1674 struct inode *inode = NULL;
1675 int rc;
1676
1677 dentry = d_alloc_name(dir, "index");
Eric Parisb77a4932010-11-23 11:40:08 -05001678 if (!dentry)
1679 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001680
1681 inode = sel_make_inode(dir->d_sb, S_IFREG|S_IRUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001682 if (!inode)
1683 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001684
1685 inode->i_fop = &sel_class_ops;
1686 inode->i_ino = sel_class_to_ino(index);
1687 d_add(dentry, inode);
1688
1689 dentry = d_alloc_name(dir, "perms");
Eric Parisb77a4932010-11-23 11:40:08 -05001690 if (!dentry)
1691 return -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001692
1693 rc = sel_make_dir(dir->d_inode, dentry, &last_class_ino);
1694 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001695 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001696
1697 rc = sel_make_perm_files(classname, index, dentry);
1698
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001699 return rc;
1700}
1701
1702static void sel_remove_classes(void)
1703{
1704 struct list_head *class_node;
1705
1706 list_for_each(class_node, &class_dir->d_subdirs) {
1707 struct dentry *class_subdir = list_entry(class_node,
1708 struct dentry, d_u.d_child);
1709 struct list_head *class_subdir_node;
1710
1711 list_for_each(class_subdir_node, &class_subdir->d_subdirs) {
1712 struct dentry *d = list_entry(class_subdir_node,
1713 struct dentry, d_u.d_child);
1714
1715 if (d->d_inode)
1716 if (d->d_inode->i_mode & S_IFDIR)
1717 sel_remove_entries(d);
1718 }
1719
1720 sel_remove_entries(class_subdir);
1721 }
1722
1723 sel_remove_entries(class_dir);
1724}
1725
1726static int sel_make_classes(void)
1727{
Eric Parisb77a4932010-11-23 11:40:08 -05001728 int rc, nclasses, i;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001729 char **classes;
1730
1731 /* delete any existing entries */
1732 sel_remove_classes();
1733
1734 rc = security_get_classes(&classes, &nclasses);
Eric Parisb77a4932010-11-23 11:40:08 -05001735 if (rc)
1736 return rc;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001737
1738 /* +2 since classes are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001739 last_class_ino = sel_class_to_ino(nclasses + 2);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001740
1741 for (i = 0; i < nclasses; i++) {
1742 struct dentry *class_name_dir;
1743
Eric Parisb77a4932010-11-23 11:40:08 -05001744 rc = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001745 class_name_dir = d_alloc_name(class_dir, classes[i]);
Eric Parisb77a4932010-11-23 11:40:08 -05001746 if (!class_name_dir)
1747 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001748
1749 rc = sel_make_dir(class_dir->d_inode, class_name_dir,
1750 &last_class_ino);
1751 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001752 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001753
1754 /* i+1 since class values are 1-indexed */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001755 rc = sel_make_class_dir_entries(classes[i], i + 1,
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001756 class_name_dir);
1757 if (rc)
Eric Parisb77a4932010-11-23 11:40:08 -05001758 goto out;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001759 }
Eric Parisb77a4932010-11-23 11:40:08 -05001760 rc = 0;
1761out:
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001762 for (i = 0; i < nclasses; i++)
1763 kfree(classes[i]);
1764 kfree(classes);
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001765 return rc;
1766}
1767
Paul Moore3bb56b22008-01-29 08:38:19 -05001768static int sel_make_policycap(void)
1769{
1770 unsigned int iter;
1771 struct dentry *dentry = NULL;
1772 struct inode *inode = NULL;
1773
1774 sel_remove_entries(policycap_dir);
1775
1776 for (iter = 0; iter <= POLICYDB_CAPABILITY_MAX; iter++) {
1777 if (iter < ARRAY_SIZE(policycap_names))
1778 dentry = d_alloc_name(policycap_dir,
1779 policycap_names[iter]);
1780 else
1781 dentry = d_alloc_name(policycap_dir, "unknown");
1782
1783 if (dentry == NULL)
1784 return -ENOMEM;
1785
1786 inode = sel_make_inode(policycap_dir->d_sb, S_IFREG | S_IRUGO);
1787 if (inode == NULL)
1788 return -ENOMEM;
1789
1790 inode->i_fop = &sel_policycap_ops;
1791 inode->i_ino = iter | SEL_POLICYCAP_INO_OFFSET;
1792 d_add(dentry, inode);
1793 }
1794
1795 return 0;
1796}
1797
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001798static int sel_make_dir(struct inode *dir, struct dentry *dentry,
1799 unsigned long *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 struct inode *inode;
1802
James Morrisedb20fb2006-03-22 00:09:20 -08001803 inode = sel_make_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001804 if (!inode)
1805 return -ENOMEM;
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 inode->i_op = &simple_dir_inode_operations;
1808 inode->i_fop = &simple_dir_operations;
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001809 inode->i_ino = ++(*ino);
James Morris40e906f2006-03-22 00:09:16 -08001810 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -07001811 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 d_add(dentry, inode);
James Morrisedb20fb2006-03-22 00:09:20 -08001813 /* bump link count on parent directory, too */
Dave Hansend8c76e62006-09-30 23:29:04 -07001814 inc_nlink(dir);
Eric Parisb77a4932010-11-23 11:40:08 -05001815
1816 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
Eric Paris18729812008-04-17 14:15:45 -04001819static int sel_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 int ret;
1822 struct dentry *dentry;
James Morrisedb20fb2006-03-22 00:09:20 -08001823 struct inode *inode, *root_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 struct inode_security_struct *isec;
1825
1826 static struct tree_descr selinux_files[] = {
1827 [SEL_LOAD] = {"load", &sel_load_ops, S_IRUSR|S_IWUSR},
1828 [SEL_ENFORCE] = {"enforce", &sel_enforce_ops, S_IRUGO|S_IWUSR},
Stephen Smalleyce9982d2005-11-08 21:34:33 -08001829 [SEL_CONTEXT] = {"context", &transaction_ops, S_IRUGO|S_IWUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 [SEL_ACCESS] = {"access", &transaction_ops, S_IRUGO|S_IWUGO},
1831 [SEL_CREATE] = {"create", &transaction_ops, S_IRUGO|S_IWUGO},
1832 [SEL_RELABEL] = {"relabel", &transaction_ops, S_IRUGO|S_IWUGO},
1833 [SEL_USER] = {"user", &transaction_ops, S_IRUGO|S_IWUGO},
1834 [SEL_POLICYVERS] = {"policyvers", &sel_policyvers_ops, S_IRUGO},
1835 [SEL_COMMIT_BOOLS] = {"commit_pending_bools", &sel_commit_bools_ops, S_IWUSR},
1836 [SEL_MLS] = {"mls", &sel_mls_ops, S_IRUGO},
1837 [SEL_DISABLE] = {"disable", &sel_disable_ops, S_IWUSR},
1838 [SEL_MEMBER] = {"member", &transaction_ops, S_IRUGO|S_IWUGO},
1839 [SEL_CHECKREQPROT] = {"checkreqprot", &sel_checkreqprot_ops, S_IRUGO|S_IWUSR},
Eric Paris3f120702007-09-21 14:37:10 -04001840 [SEL_REJECT_UNKNOWN] = {"reject_unknown", &sel_handle_unknown_ops, S_IRUGO},
1841 [SEL_DENY_UNKNOWN] = {"deny_unknown", &sel_handle_unknown_ops, S_IRUGO},
KaiGai Kohei11904162010-09-14 18:28:39 +09001842 [SEL_STATUS] = {"status", &sel_handle_status_ops, S_IRUGO},
Eric Pariscee74f42010-10-13 17:50:25 -04001843 [SEL_POLICY] = {"policy", &sel_policy_ops, S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 /* last one */ {""}
1845 };
1846 ret = simple_fill_super(sb, SELINUX_MAGIC, selinux_files);
1847 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001848 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
James Morrisedb20fb2006-03-22 00:09:20 -08001850 root_inode = sb->s_root->d_inode;
1851
Eric Parisb77a4932010-11-23 11:40:08 -05001852 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 dentry = d_alloc_name(sb->s_root, BOOL_DIR_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05001854 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001855 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001857 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
James Morriscde174a2006-03-22 00:09:17 -08001858 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001859 goto err;
James Morriscde174a2006-03-22 00:09:17 -08001860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 bool_dir = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Eric Parisb77a4932010-11-23 11:40:08 -05001863 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 dentry = d_alloc_name(sb->s_root, NULL_FILE_NAME);
Eric Parisb77a4932010-11-23 11:40:08 -05001865 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001866 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Eric Parisb77a4932010-11-23 11:40:08 -05001868 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 inode = sel_make_inode(sb, S_IFCHR | S_IRUGO | S_IWUGO);
Eric Parisb77a4932010-11-23 11:40:08 -05001870 if (!inode)
James Morris161ce452006-03-22 00:09:17 -08001871 goto err;
Eric Parisb77a4932010-11-23 11:40:08 -05001872
James Carter6174eaf2007-04-04 16:18:39 -04001873 inode->i_ino = ++sel_last_ino;
Eric Paris18729812008-04-17 14:15:45 -04001874 isec = (struct inode_security_struct *)inode->i_security;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 isec->sid = SECINITSID_DEVNULL;
1876 isec->sclass = SECCLASS_CHR_FILE;
1877 isec->initialized = 1;
1878
1879 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, MKDEV(MEM_MAJOR, 3));
1880 d_add(dentry, inode);
1881 selinux_null = dentry;
1882
Eric Parisb77a4932010-11-23 11:40:08 -05001883 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 dentry = d_alloc_name(sb->s_root, "avc");
Eric Parisb77a4932010-11-23 11:40:08 -05001885 if (!dentry)
James Morris161ce452006-03-22 00:09:17 -08001886 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001888 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001890 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 ret = sel_make_avc_files(dentry);
1893 if (ret)
James Morris161ce452006-03-22 00:09:17 -08001894 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04001895
Eric Parisb77a4932010-11-23 11:40:08 -05001896 ret = -ENOMEM;
James Carterf0ee2e42007-04-04 10:11:29 -04001897 dentry = d_alloc_name(sb->s_root, "initial_contexts");
Eric Parisb77a4932010-11-23 11:40:08 -05001898 if (!dentry)
James Carterf0ee2e42007-04-04 10:11:29 -04001899 goto err;
James Carterf0ee2e42007-04-04 10:11:29 -04001900
Christopher J. PeBenito0dd4ae52007-05-23 09:12:08 -04001901 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
James Carterf0ee2e42007-04-04 10:11:29 -04001902 if (ret)
1903 goto err;
1904
1905 ret = sel_make_initcon_files(dentry);
1906 if (ret)
1907 goto err;
1908
Eric Parisb77a4932010-11-23 11:40:08 -05001909 ret = -ENOMEM;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001910 dentry = d_alloc_name(sb->s_root, "class");
Eric Parisb77a4932010-11-23 11:40:08 -05001911 if (!dentry)
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001912 goto err;
Christopher J. PeBenitoe47c8fc2007-05-23 09:12:09 -04001913
1914 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1915 if (ret)
1916 goto err;
1917
1918 class_dir = dentry;
1919
Eric Parisb77a4932010-11-23 11:40:08 -05001920 ret = -ENOMEM;
Paul Moore3bb56b22008-01-29 08:38:19 -05001921 dentry = d_alloc_name(sb->s_root, "policy_capabilities");
Eric Parisb77a4932010-11-23 11:40:08 -05001922 if (!dentry)
Paul Moore3bb56b22008-01-29 08:38:19 -05001923 goto err;
Paul Moore3bb56b22008-01-29 08:38:19 -05001924
1925 ret = sel_make_dir(root_inode, dentry, &sel_last_ino);
1926 if (ret)
1927 goto err;
1928
1929 policycap_dir = dentry;
1930
Eric Parisb77a4932010-11-23 11:40:08 -05001931 return 0;
James Morris161ce452006-03-22 00:09:17 -08001932err:
Eric Paris744ba352008-04-17 11:52:44 -04001933 printk(KERN_ERR "SELinux: %s: failed while creating inodes\n",
1934 __func__);
Eric Parisb77a4932010-11-23 11:40:08 -05001935 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
Al Virofc14f2f2010-07-25 01:48:30 +04001938static struct dentry *sel_mount(struct file_system_type *fs_type,
1939 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
Al Virofc14f2f2010-07-25 01:48:30 +04001941 return mount_single(fs_type, flags, data, sel_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
1944static struct file_system_type sel_fs_type = {
1945 .name = "selinuxfs",
Al Virofc14f2f2010-07-25 01:48:30 +04001946 .mount = sel_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 .kill_sb = kill_litter_super,
1948};
1949
1950struct vfsmount *selinuxfs_mount;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001951static struct kobject *selinuxfs_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953static int __init init_sel_fs(void)
1954{
1955 int err;
1956
1957 if (!selinux_enabled)
1958 return 0;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001959
1960 selinuxfs_kobj = kobject_create_and_add("selinux", fs_kobj);
1961 if (!selinuxfs_kobj)
1962 return -ENOMEM;
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 err = register_filesystem(&sel_fs_type);
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001965 if (err) {
1966 kobject_put(selinuxfs_kobj);
Eric Parisb77a4932010-11-23 11:40:08 -05001967 return err;
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001968 }
Eric Parisb77a4932010-11-23 11:40:08 -05001969
1970 selinuxfs_mount = kern_mount(&sel_fs_type);
1971 if (IS_ERR(selinuxfs_mount)) {
1972 printk(KERN_ERR "selinuxfs: could not mount!\n");
1973 err = PTR_ERR(selinuxfs_mount);
1974 selinuxfs_mount = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
Eric Parisb77a4932010-11-23 11:40:08 -05001976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return err;
1978}
1979
1980__initcall(init_sel_fs);
1981
1982#ifdef CONFIG_SECURITY_SELINUX_DISABLE
1983void exit_sel_fs(void)
1984{
Greg Kroah-Hartman7a627e32011-05-10 15:34:16 -07001985 kobject_put(selinuxfs_kobj);
Tim Chen423e0ab2011-07-19 09:32:38 -07001986 kern_unmount(selinuxfs_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 unregister_filesystem(&sel_fs_type);
1988}
1989#endif