GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / security / selinux / exports.c
blobc0a454aee1e03cb0e3825a2c5f965c941636c4d9
1 /*
2 * SELinux services exported to the rest of the kernel.
4 * Author: James Morris <jmorris@redhat.com>
6 * Copyright (C) 2005 Red Hat, Inc., James Morris <jmorris@redhat.com>
7 * Copyright (C) 2006 Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
8 * Copyright (C) 2006 IBM Corporation, Timothy R. Chavez <tinytim@us.ibm.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2,
12 * as published by the Free Software Foundation.
14 #include <linux/types.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/selinux.h>
18 #include <linux/fs.h>
19 #include <linux/ipc.h>
20 #include <asm/atomic.h>
22 #include "security.h"
23 #include "objsec.h"
25 /* SECMARK reference count */
26 extern atomic_t selinux_secmark_refcount;
28 int selinux_string_to_sid(char *str, u32 *sid)
30 if (selinux_enabled)
31 return security_context_to_sid(str, strlen(str), sid);
32 else {
33 *sid = 0;
34 return 0;
37 EXPORT_SYMBOL_GPL(selinux_string_to_sid);
39 int selinux_secmark_relabel_packet_permission(u32 sid)
41 if (selinux_enabled) {
42 const struct task_security_struct *__tsec;
43 u32 tsid;
45 __tsec = current_security();
46 tsid = __tsec->sid;
48 return avc_has_perm(tsid, sid, SECCLASS_PACKET,
49 PACKET__RELABELTO, NULL);
51 return 0;
53 EXPORT_SYMBOL_GPL(selinux_secmark_relabel_packet_permission);
55 void selinux_secmark_refcount_inc(void)
57 atomic_inc(&selinux_secmark_refcount);
59 EXPORT_SYMBOL_GPL(selinux_secmark_refcount_inc);
61 void selinux_secmark_refcount_dec(void)
63 atomic_dec(&selinux_secmark_refcount);
65 EXPORT_SYMBOL_GPL(selinux_secmark_refcount_dec);
67 bool selinux_is_enabled(void)
69 return selinux_enabled;
71 EXPORT_SYMBOL_GPL(selinux_is_enabled);