Darrel Goeddel | 376bd9c | 2006-02-24 15:44:05 -0600 | [diff] [blame] | 1 | /* |
| 2 | * SELinux services exported to the rest of the kernel. |
| 3 | * |
| 4 | * Author: James Morris <jmorris@redhat.com> |
| 5 | * |
| 6 | * Copyright (C) 2005 Red Hat, Inc., James Morris <jmorris@redhat.com> |
| 7 | * Copyright (C) 2006 Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com> |
Steve Grubb | e7c3497 | 2006-04-03 09:08:13 -0400 | [diff] [blame] | 8 | * Copyright (C) 2006 IBM Corporation, Timothy R. Chavez <tinytim@us.ibm.com> |
Darrel Goeddel | 376bd9c | 2006-02-24 15:44:05 -0600 | [diff] [blame] | 9 | * |
| 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. |
| 13 | */ |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/selinux.h> |
Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 18 | #include <linux/fs.h> |
Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 19 | #include <linux/ipc.h> |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 20 | #include <asm/atomic.h> |
Darrel Goeddel | 376bd9c | 2006-02-24 15:44:05 -0600 | [diff] [blame] | 21 | |
| 22 | #include "security.h" |
| 23 | #include "objsec.h" |
| 24 | |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 25 | /* SECMARK reference count */ |
| 26 | extern atomic_t selinux_secmark_refcount; |
| 27 | |
James Morris | c749b29 | 2006-06-09 00:28:25 -0700 | [diff] [blame] | 28 | int selinux_string_to_sid(char *str, u32 *sid) |
| 29 | { |
| 30 | if (selinux_enabled) |
| 31 | return security_context_to_sid(str, strlen(str), sid); |
| 32 | else { |
| 33 | *sid = 0; |
| 34 | return 0; |
| 35 | } |
| 36 | } |
| 37 | EXPORT_SYMBOL_GPL(selinux_string_to_sid); |
| 38 | |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 39 | int selinux_secmark_relabel_packet_permission(u32 sid) |
James Morris | c749b29 | 2006-06-09 00:28:25 -0700 | [diff] [blame] | 40 | { |
| 41 | if (selinux_enabled) { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 42 | const struct task_security_struct *__tsec; |
| 43 | u32 tsid; |
James Morris | c749b29 | 2006-06-09 00:28:25 -0700 | [diff] [blame] | 44 | |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 45 | __tsec = current_security(); |
| 46 | tsid = __tsec->sid; |
| 47 | |
| 48 | return avc_has_perm(tsid, sid, SECCLASS_PACKET, |
James Morris | c749b29 | 2006-06-09 00:28:25 -0700 | [diff] [blame] | 49 | PACKET__RELABELTO, NULL); |
| 50 | } |
| 51 | return 0; |
| 52 | } |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 53 | EXPORT_SYMBOL_GPL(selinux_secmark_relabel_packet_permission); |
| 54 | |
| 55 | void selinux_secmark_refcount_inc(void) |
| 56 | { |
| 57 | atomic_inc(&selinux_secmark_refcount); |
| 58 | } |
| 59 | EXPORT_SYMBOL_GPL(selinux_secmark_refcount_inc); |
| 60 | |
| 61 | void selinux_secmark_refcount_dec(void) |
| 62 | { |
| 63 | atomic_dec(&selinux_secmark_refcount); |
| 64 | } |
| 65 | EXPORT_SYMBOL_GPL(selinux_secmark_refcount_dec); |
Eric Paris | ed868a5 | 2009-09-12 22:54:10 -0400 | [diff] [blame] | 66 | |
| 67 | bool selinux_is_enabled(void) |
| 68 | { |
| 69 | return selinux_enabled; |
| 70 | } |
| 71 | EXPORT_SYMBOL_GPL(selinux_is_enabled); |