2006-02-24 21:44:05 +00:00
|
|
|
/*
|
|
|
|
* SELinux services exported to the rest of the kernel.
|
|
|
|
*
|
|
|
|
* Author: James Morris <jmorris@redhat.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Red Hat, Inc., James Morris <jmorris@redhat.com>
|
|
|
|
* Copyright (C) 2006 Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
|
2006-04-03 13:08:13 +00:00
|
|
|
* Copyright (C) 2006 IBM Corporation, Timothy R. Chavez <tinytim@us.ibm.com>
|
2006-02-24 21:44:05 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_SELINUX_H
|
|
|
|
#define _LINUX_SELINUX_H
|
|
|
|
|
|
|
|
struct selinux_audit_rule;
|
|
|
|
struct audit_context;
|
2006-03-31 20:22:49 +00:00
|
|
|
struct kern_ipc_perm;
|
2006-02-24 21:44:05 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SECURITY_SELINUX
|
|
|
|
|
2009-09-13 02:54:10 +00:00
|
|
|
/**
|
|
|
|
* selinux_is_enabled - is SELinux enabled?
|
|
|
|
*/
|
|
|
|
bool selinux_is_enabled(void);
|
2006-02-24 21:44:05 +00:00
|
|
|
#else
|
|
|
|
|
2009-09-15 00:59:48 +00:00
|
|
|
static inline bool selinux_is_enabled(void)
|
2009-09-13 02:54:10 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-24 21:44:05 +00:00
|
|
|
#endif /* CONFIG_SECURITY_SELINUX */
|
|
|
|
|
|
|
|
#endif /* _LINUX_SELINUX_H */
|