selinux: Remove audit dependency
Auditing comes with a lot of overhead due to string assembly via vsnprintf. It isn't actually needed to make SELinux work, so remove SELinux's artificial dependency on it to make it possible to use SELinux without the unneeded overhead. Signed-off-by: Sultan Alsawaf <sultan@kerneltoast.com>
This commit is contained in:
parent
f590674f1e
commit
9bf1253932
4 changed files with 15 additions and 2 deletions
|
@ -268,6 +268,11 @@ static inline int audit_signal_info(int sig, struct task_struct *t)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int audit_update_lsm_rules(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_AUDIT */
|
#endif /* CONFIG_AUDIT */
|
||||||
|
|
||||||
#ifdef CONFIG_AUDIT_COMPAT_GENERIC
|
#ifdef CONFIG_AUDIT_COMPAT_GENERIC
|
||||||
|
|
|
@ -118,8 +118,16 @@ int ipv4_skb_to_auditdata(struct sk_buff *skb,
|
||||||
int ipv6_skb_to_auditdata(struct sk_buff *skb,
|
int ipv6_skb_to_auditdata(struct sk_buff *skb,
|
||||||
struct common_audit_data *ad, u8 *proto);
|
struct common_audit_data *ad, u8 *proto);
|
||||||
|
|
||||||
|
#ifdef CONFIG_AUDIT
|
||||||
void common_lsm_audit(struct common_audit_data *a,
|
void common_lsm_audit(struct common_audit_data *a,
|
||||||
void (*pre_audit)(struct audit_buffer *, void *),
|
void (*pre_audit)(struct audit_buffer *, void *),
|
||||||
void (*post_audit)(struct audit_buffer *, void *));
|
void (*post_audit)(struct audit_buffer *, void *));
|
||||||
|
#else
|
||||||
|
static inline void common_lsm_audit(struct common_audit_data *a,
|
||||||
|
void (*pre_audit)(struct audit_buffer *, void *),
|
||||||
|
void (*post_audit)(struct audit_buffer *, void *))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -23,7 +23,7 @@ obj-$(CONFIG_SECURITY) += security.o
|
||||||
obj-$(CONFIG_SECURITYFS) += inode.o
|
obj-$(CONFIG_SECURITYFS) += inode.o
|
||||||
obj-$(CONFIG_SECURITY_SELINUX) += selinux/
|
obj-$(CONFIG_SECURITY_SELINUX) += selinux/
|
||||||
obj-$(CONFIG_SECURITY_SMACK) += smack/
|
obj-$(CONFIG_SECURITY_SMACK) += smack/
|
||||||
obj-$(CONFIG_SECURITY) += lsm_audit.o
|
obj-$(CONFIG_AUDIT) += lsm_audit.o
|
||||||
obj-$(CONFIG_SECURITY_TOMOYO) += tomoyo/
|
obj-$(CONFIG_SECURITY_TOMOYO) += tomoyo/
|
||||||
obj-$(CONFIG_SECURITY_APPARMOR) += apparmor/
|
obj-$(CONFIG_SECURITY_APPARMOR) += apparmor/
|
||||||
obj-$(CONFIG_SECURITY_YAMA) += yama/
|
obj-$(CONFIG_SECURITY_YAMA) += yama/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
config SECURITY_SELINUX
|
config SECURITY_SELINUX
|
||||||
bool "NSA SELinux Support"
|
bool "NSA SELinux Support"
|
||||||
depends on SECURITY_NETWORK && AUDIT && NET && INET
|
depends on SECURITY_NETWORK && NET && INET
|
||||||
select NETWORK_SECMARK
|
select NETWORK_SECMARK
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
|
|
Loading…
Reference in a new issue