selinux-policy/refpolicy/Makefile

371 lines
11 KiB
Makefile
Raw Normal View History

#
# Makefile for the security policy.
#
# Targets:
#
# install - compile and install the policy configuration, and context files.
# load - compile, install, and load the policy configuration.
# reload - compile, install, and load/reload the policy configuration.
# relabel - relabel filesystems based on the file contexts configuration.
# checklabels - check filesystems against the file context configuration
# restorelabels - check filesystems against the file context configuration
# and restore the label of files with incorrect labels
# policy - compile the policy configuration locally for testing/development.
#
# The default target is 'policy'.
#
2005-04-14 20:18:17 +00:00
#
# Please see build.conf for policy build options.
2005-04-14 20:18:17 +00:00
#
########################################
#
2005-06-06 18:13:38 +00:00
# NO OPTIONS BELOW HERE
2005-04-14 20:18:17 +00:00
#
include build.conf
2005-04-14 20:18:17 +00:00
# executable paths
PREFIX := /usr
BINDIR := $(PREFIX)/bin
SBINDIR := $(PREFIX)/sbin
2005-10-24 22:29:30 +00:00
CHECKPOLICY := $(BINDIR)/checkpolicy
CHECKMODULE := $(BINDIR)/checkmodule
2005-11-22 22:07:12 +00:00
SEMODULE := $(SBINDIR)/semodule
SEMOD_PKG := $(BINDIR)/semodule_package
2005-05-24 20:44:31 +00:00
LOADPOLICY := $(SBINDIR)/load_policy
2005-04-14 20:18:17 +00:00
SETFILES := $(SBINDIR)/setfiles
GENHOMEDIRCON := $(SBINDIR)/genhomedircon
XMLLINT := $(BINDIR)/xmllint
2005-10-12 19:13:49 +00:00
SECHECK := $(BINDIR)/sechecker
CFLAGS := -Wall
# policy source layout
POLDIR := policy
MODDIR := $(POLDIR)/modules
FLASKDIR := $(POLDIR)/flask
SECCLASS := $(FLASKDIR)/security_classes
ISIDS := $(FLASKDIR)/initial_sids
AVS := $(FLASKDIR)/access_vectors
# policy building support tools
2005-06-07 18:35:18 +00:00
SUPPORT := support
GENXML := $(SUPPORT)/segenxml.py
2005-06-07 18:35:18 +00:00
GENDOC := $(SUPPORT)/sedoctool.py
GENPERM := $(SUPPORT)/genclassperms.py
FCSORT := $(SUPPORT)/fc_sort
2005-06-08 13:44:23 +00:00
SETTUN := $(SUPPORT)/set_tunables
2005-06-07 18:35:18 +00:00
# documentation paths
DOCS = doc
POLXML = $(DOCS)/policy.xml
XMLDTD = $(DOCS)/policy.dtd
LAYERXML = metadata.xml
HTMLDIR = $(DOCS)/html
DOCTEMPLATE = $(DOCS)/templates
# config file paths
GLOBALTUN := $(POLDIR)/global_tunables
GLOBALBOOL := $(POLDIR)/global_booleans
MOD_CONF := $(POLDIR)/modules.conf
TUNABLES := $(POLDIR)/tunables.conf
BOOLEANS := $(POLDIR)/booleans.conf
# install paths
TOPDIR = $(DESTDIR)/etc/selinux
INSTALLDIR = $(TOPDIR)/$(NAME)
SRCPATH = $(INSTALLDIR)/src
USERPATH = $(INSTALLDIR)/users
CONTEXTPATH = $(INSTALLDIR)/contexts
2005-11-22 22:07:12 +00:00
MODPKGDIR = $(DESTDIR)/usr/share/selinux/$(NAME)
# compile strict policy if requested.
ifneq ($(findstring strict,$(TYPE)),)
override M4PARAM += -D strict_policy
endif
# compile targeted policy if requested.
ifneq ($(findstring targeted,$(TYPE)),)
override M4PARAM += -D targeted_policy
endif
2005-04-14 20:18:17 +00:00
# enable MLS if requested.
2005-09-16 13:36:26 +00:00
ifneq ($(findstring -mls,$(TYPE)),)
override M4PARAM += -D enable_mls
2005-11-22 22:07:12 +00:00
override CHECKPOLICY += -M
override CHECKMODULE += -M
endif
2005-09-16 13:36:26 +00:00
# enable MLS if MCS requested.
ifneq ($(findstring -mcs,$(TYPE)),)
override M4PARAM += -D enable_mcs
2005-11-22 22:07:12 +00:00
override CHECKPOLICY += -M
override CHECKMODULE += -M
2005-06-06 18:13:38 +00:00
endif
# enable distribution-specific policy
ifneq ($(DISTRO),)
override M4PARAM += -D distro_$(DISTRO)
endif
2006-01-10 21:03:16 +00:00
# enable polyinstantiation
ifeq ($(POLY),y)
override M4PARAM += -D enable_polyinstantiation
endif
2005-06-06 18:13:38 +00:00
ifneq ($(OUTPUT_POLICY),)
2005-11-22 22:07:12 +00:00
override CHECKPOLICY += -c $(OUTPUT_POLICY)
2005-06-06 18:13:38 +00:00
endif
ifeq ($(NAME),)
NAME := $(TYPE)
endif
2005-09-21 14:49:41 +00:00
ifeq ($(DIRECT_INITRC),y)
override M4PARAM += -D direct_sysadm_daemon
endif
2005-10-24 22:49:26 +00:00
override M4PARAM += -D hide_broken_symptoms
# we need exuberant ctags; unfortunately it is named
# differently on different distros
ifeq ($(DISTRO),debian)
CTAGS := ctags-exuberant
endif
ifeq ($(DISTRO),gentoo)
CTAGS := exuberant-ctags
endif
2006-01-25 19:02:48 +00:00
CTAGS ?= ctags
2005-04-14 20:18:17 +00:00
# determine the policy version and current kernel version if possible
PV := $(shell $(CHECKPOLICY) -V |cut -f 1 -d ' ')
2005-04-14 20:18:17 +00:00
KV := $(shell cat /selinux/policyvers)
# dont print version warnings if we are unable to determine
# the currently running kernel's policy version
ifeq ($(KV),)
KV := $(PV)
2005-04-14 20:18:17 +00:00
endif
M4SUPPORT = $(wildcard $(POLDIR)/support/*.spt)
2005-09-20 14:20:02 +00:00
APPCONF := config/appconfig-$(TYPE)
2005-05-25 20:58:09 +00:00
APPDIR := $(CONTEXTPATH)
APPFILES := $(addprefix $(APPDIR)/,default_contexts default_type initrc_context failsafe_context userhelper_context removable_context dbus_contexts customizable_types) $(CONTEXTPATH)/files/media
2005-06-01 17:27:56 +00:00
CONTEXTFILES += $(wildcard $(APPCONF)/*_context*) $(APPCONF)/media
2005-12-05 20:31:54 +00:00
USER_FILES := $(POLDIR)/users
2005-05-25 20:58:09 +00:00
ALL_LAYERS := $(filter-out $(MODDIR)/CVS,$(shell find $(wildcard $(MODDIR)/*) -maxdepth 0 -type d))
2005-06-08 22:14:26 +00:00
GENERATED_TE := $(basename $(foreach dir,$(ALL_LAYERS),$(wildcard $(dir)/*.te.in)))
GENERATED_IF := $(basename $(foreach dir,$(ALL_LAYERS),$(wildcard $(dir)/*.if.in)))
GENERATED_FC := $(basename $(foreach dir,$(ALL_LAYERS),$(wildcard $(dir)/*.fc.in)))
# sort here since it removes duplicates, which can happen
# when a generated file is already generated
DETECTED_MODS := $(sort $(foreach dir,$(ALL_LAYERS),$(wildcard $(dir)/*.te)) $(GENERATED_TE))
# modules.conf setting for base module
2005-07-05 19:42:11 +00:00
MODBASE := base
# modules.conf setting for loadable module
2005-07-05 19:42:11 +00:00
MODMOD := module
# modules.conf setting for unused module
MODUNUSED := off
# extract settings from modules.conf
2005-11-22 22:07:12 +00:00
BASE_MODS := $(addsuffix .te,$(shell awk '/^[[:blank:]]*[[:alpha:]]/{ if ($$3 == "$(MODBASE)") print $$1 }' $(MOD_CONF) 2> /dev/null))
MOD_MODS := $(addsuffix .te,$(shell awk '/^[[:blank:]]*[[:alpha:]]/{ if ($$3 == "$(MODMOD)") print $$1 }' $(MOD_CONF) 2> /dev/null))
OFF_MODS := $(addsuffix .te,$(shell awk '/^[[:blank:]]*[[:alpha:]]/{ if ($$3 == "$(MODUNUSED)") print $$1 }' $(MOD_CONF) 2> /dev/null))
2005-09-12 15:17:39 +00:00
2005-04-14 20:18:17 +00:00
########################################
#
# Load appropriate rules
2005-04-14 20:18:17 +00:00
#
ifeq ($(MONOLITHIC),y)
include Rules.monolithic
else
include Rules.modular
2005-04-14 20:18:17 +00:00
endif
########################################
#
# Generated files
2005-04-14 20:18:17 +00:00
#
$(MODDIR)/kernel/corenetwork.if: $(MODDIR)/kernel/corenetwork.if.m4 $(MODDIR)/kernel/corenetwork.if.in
@echo "#" > $@
@echo "# This is a generated file! Instead of modifying this file, the" >> $@
@echo "# $(notdir $@).in or $(notdir $@).m4 file should be modified." >> $@
@echo "#" >> $@
$(QUIET) cat $(MODDIR)/kernel/corenetwork.if.in >> $@
$(QUIET) egrep "^[[:blank:]]*network_(interface|node|port)\(.*\)" $(@:.if=.te).in \
| m4 -D self_contained_policy $(M4PARAM) $(MODDIR)/kernel/corenetwork.if.m4 - \
| sed -e 's/dollarsone/\$$1/g' -e 's/dollarszero/\$$0/g' >> $@
$(MODDIR)/kernel/corenetwork.te: $(MODDIR)/kernel/corenetwork.te.m4 $(MODDIR)/kernel/corenetwork.te.in
@echo "#" > $@
@echo "# This is a generated file! Instead of modifying this file, the" >> $@
@echo "# $(notdir $@).in or $(notdir $@).m4 file should be modified." >> $@
@echo "#" >> $@
$(QUIET) m4 -D self_contained_policy $(M4PARAM) $^ \
| sed -e 's/dollarsone/\$$1/g' -e 's/dollarszero/\$$0/g' >> $@
2005-06-08 13:44:23 +00:00
########################################
#
# Create config files
#
conf: $(MOD_CONF) $(BOOLEANS) $(GENERATED_TE) $(GENERATED_IF) $(GENERATED_FC)
$(MOD_CONF) $(BOOLEANS): $(POLXML)
@echo "Updating $(MOD_CONF) and $(BOOLEANS)"
$(QUIET) cd $(DOCS) && ../$(GENDOC) -t ../$(BOOLEANS) -m ../$(MOD_CONF) -x ../$(POLXML)
2005-06-08 13:44:23 +00:00
2005-05-18 20:58:13 +00:00
########################################
#
# Documentation generation
#
# minimal dependencies here, because we don't want to rebuild
2005-06-08 13:44:23 +00:00
# this and its dependents every time the dependencies
# change. Also use all .if files here, rather then just the
# enabled modules.
2005-06-29 16:54:13 +00:00
$(POLXML): $(DETECTED_MODS:.te=.if) $(foreach dir,$(ALL_LAYERS),$(dir)/$(LAYERXML))
2005-05-24 17:31:39 +00:00
@echo "Creating $@"
2005-06-08 13:44:23 +00:00
@mkdir -p tmp
$(QUIET) echo '<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>' > $@
$(QUIET) echo '<!DOCTYPE policy SYSTEM "$(notdir $(XMLDTD))">' >> $@
$(QUIET) $(GENXML) -w -m $(LAYERXML) -t $(GLOBALTUN) -b $(GLOBALBOOL) $(ALL_LAYERS) >> $@
$(QUIET) if test -x $(XMLLINT) && test -f $(XMLDTD); then \
$(XMLLINT) --noout --dtdvalid $(XMLDTD) $@ ;\
fi
2005-05-18 20:58:13 +00:00
html: $(POLXML)
2006-01-18 22:30:01 +00:00
@echo "Building html interface reference documentation in $(HTMLDIR)"
2005-06-09 19:02:52 +00:00
@mkdir -p $(HTMLDIR)
$(QUIET) cd $(DOCS) && ../$(GENDOC) -d ../$(HTMLDIR) -T ../$(DOCTEMPLATE) -x ../$(POLXML)
2005-06-09 19:02:52 +00:00
$(QUIET) cp $(DOCTEMPLATE)/*.css $(HTMLDIR)
2005-05-25 20:58:09 +00:00
########################################
#
# Runtime binary policy patching of users
#
$(USERPATH)/system.users: $(M4SUPPORT) tmp/generated_definitions.conf $(USER_FILES)
2005-05-25 20:58:09 +00:00
@mkdir -p $(USERPATH)
@echo "Installing system.users"
@echo "# " > tmp/system.users
@echo "# Do not edit this file. " >> tmp/system.users
@echo "# This file is replaced on reinstalls of this policy." >> tmp/system.users
@echo "# Please edit local.users to make local changes." >> tmp/system.users
@echo "#" >> tmp/system.users
$(QUIET) m4 -D self_contained_policy $(M4PARAM) $^ | sed -r -e 's/^[[:blank:]]+//' \
-e '/^[[:blank:]]*($$|#)/d' >> tmp/system.users
2005-05-25 20:58:09 +00:00
$(QUIET) install -m 644 tmp/system.users $@
$(USERPATH)/local.users: config/local.users
2005-05-25 20:58:09 +00:00
@mkdir -p $(USERPATH)
@echo "Installing local.users"
$(QUIET) install -b -m 644 $< $@
2005-05-25 20:58:09 +00:00
########################################
#
# Appconfig files
#
install-appconfig: $(APPFILES)
$(INSTALLDIR)/booleans: $(BOOLEANS)
@mkdir -p $(INSTALLDIR)
2006-01-23 20:59:26 +00:00
$(QUIET) sed -r -e 's/false/0/g' -e 's/true/1/g' \
-e '/^[[:blank:]]*($$|#)/d' $(BOOLEANS) | sort > tmp/booleans
$(QUIET) install -m 644 tmp/booleans $@
2005-06-01 17:27:56 +00:00
$(CONTEXTPATH)/files/media: $(APPCONF)/media
@mkdir -p $(CONTEXTPATH)/files/
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-01 17:27:56 +00:00
$(APPDIR)/default_contexts: $(APPCONF)/default_contexts
@mkdir -p $(APPDIR)
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-01 17:27:56 +00:00
$(APPDIR)/removable_context: $(APPCONF)/removable_context
@mkdir -p $(APPDIR)
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-01 17:27:56 +00:00
$(APPDIR)/default_type: $(APPCONF)/default_type
@mkdir -p $(APPDIR)
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-01 17:27:56 +00:00
$(APPDIR)/userhelper_context: $(APPCONF)/userhelper_context
@mkdir -p $(APPDIR)
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-01 17:27:56 +00:00
$(APPDIR)/initrc_context: $(APPCONF)/initrc_context
@mkdir -p $(APPDIR)
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-01 17:27:56 +00:00
$(APPDIR)/failsafe_context: $(APPCONF)/failsafe_context
@mkdir -p $(APPDIR)
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-01 17:27:56 +00:00
$(APPDIR)/dbus_contexts: $(APPCONF)/dbus_contexts
@mkdir -p $(APPDIR)
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-01 17:27:56 +00:00
$(APPDIR)/users/root: $(APPCONF)/root_default_contexts
@mkdir -p $(APPDIR)/users
$(QUIET) install -m 644 $< $@
2005-05-25 20:58:09 +00:00
2005-06-15 14:14:20 +00:00
########################################
#
# Install policy sources
#
install-src:
rm -rf $(SRCPATH)/policy.old
-mv $(SRCPATH)/policy $(SRCPATH)/policy.old
mkdir -p $(SRCPATH)/policy
cp -R . $(SRCPATH)/policy
########################################
#
# Generate tags file
#
tags:
@($(CTAGS) --version | grep -q Exuberant) || (echo ERROR: Need exuberant-ctags to function!; exit 1)
@LC_ALL=C $(CTAGS) --langdef=te --langmap=te:..te.if.spt \
--regex-te='/^type[ \t]+(\w+)(,|;)/\1/t,type/' \
--regex-te='/^typealias[ \t]+\w+[ \t+]+alias[ \t]+(\w+);/\1/t,type/' \
--regex-te='/^attribute[ \t]+(\w+);/\1/a,attribute/' \
--regex-te='/^[ \t]*define\(`(\w+)/\1/d,define/' \
--regex-te='/^[ \t]*interface\(`(\w+)/\1/i,interface/' \
--regex-te='/^[ \t]*bool[ \t]+(\w+)/\1/b,bool/' policy/modules/*/*.{if,te} policy/support/*.spt
2005-06-15 15:45:54 +00:00
########################################
#
# Clean everything
#
bare: clean
rm -f $(POLXML)
rm -f $(SUPPORT)/*.pyc
rm -f $(FCSORT)
rm -f $(MOD_CONF)
rm -f $(BOOLEANS)
2005-06-09 19:02:52 +00:00
rm -fR $(HTMLDIR)
rm -f tags
2005-11-22 22:07:12 +00:00
ifneq ($(GENERATED_TE),)
rm -f $(GENERATED_TE)
endif
ifneq ($(GENERATED_IF),)
rm -f $(GENERATED_IF)
endif
ifneq ($(GENERATED_FC),)
rm -f $(GENERATED_FC)
endif
.PHONY: install-src install-appconfig conf html bare tags
.SUFFIXES:
.SUFFIXES: .c