mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
8753f6bec3
Add a simple utility (scripts/selinux/genheaders) and invoke it to generate the kernel-private class and permission indices in flask.h and av_permissions.h automatically during the kernel build from the security class mapping definitions in classmap.h. Adding new kernel classes and permissions can then be done just by adding them to classmap.h. Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov> Signed-off-by: James Morris <jmorris@namei.org>
31 lines
728 B
Makefile
31 lines
728 B
Makefile
#
|
|
# Makefile for building the SELinux module as part of the kernel tree.
|
|
#
|
|
|
|
obj-$(CONFIG_SECURITY_SELINUX) := selinux.o ss/
|
|
|
|
selinux-y := avc.o \
|
|
hooks.o \
|
|
selinuxfs.o \
|
|
netlink.o \
|
|
nlmsgtab.o \
|
|
netif.o \
|
|
netnode.o \
|
|
netport.o \
|
|
exports.o
|
|
|
|
selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o
|
|
|
|
selinux-$(CONFIG_NETLABEL) += netlabel.o
|
|
|
|
EXTRA_CFLAGS += -Isecurity/selinux -Isecurity/selinux/include
|
|
|
|
$(obj)/avc.o: $(obj)/flask.h
|
|
|
|
quiet_cmd_flask = GEN $(obj)/flask.h $(obj)/av_permissions.h
|
|
cmd_flask = scripts/selinux/genheaders/genheaders $(obj)/flask.h $(obj)/av_permissions.h
|
|
|
|
targets += flask.h
|
|
$(obj)/flask.h: $(src)/include/classmap.h FORCE
|
|
$(call if_changed,flask)
|