selinux-policy/refpolicy/Makefile

380 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
########################################
#
# Configurable portions of the Makefile
#
# Policy version
# By default, checkpolicy will create the highest
# version policy it supports. Setting this will
2005-11-22 22:07:12 +00:00
# override the version. This only affects
# monolithic policies.
#OUTPUT_POLICY = 18
2005-06-06 18:13:38 +00:00
# Policy Type
2005-09-21 14:49:41 +00:00
# strict, targeted,
# strict-mls, targeted-mls,
# strict-mcs, targeted-mcs
2005-10-24 16:01:26 +00:00
TYPE = targeted-mcs
2005-04-14 20:18:17 +00:00
# Policy Name
2005-06-06 18:13:38 +00:00
# If set, this will be used as the policy
# name. Otherwise the policy type will be
# used for the name.
NAME = refpolicy
2005-06-06 18:13:38 +00:00
# Distribution
# Some distributions have portions of policy
# for programs or configurations specific to the
# distribution. Setting this will enable options
# for the distribution.
# redhat, gentoo, debian, and suse are current options.
# Fedora users should enable redhat.
2005-10-24 16:01:26 +00:00
DISTRO = redhat
2005-09-21 14:49:41 +00:00
# Direct admin init
# Setting this will allow sysadm to directly
# run init scripts, instead of requring run_init.
# This is a build option, as role transitions do
# not work in conditional policy.
2005-10-24 16:01:26 +00:00
DIRECT_INITRC=y
2005-09-21 14:49:41 +00:00
2005-06-06 18:13:38 +00:00
# Build monolithic policy. Putting n here
# will build a loadable module policy.
MONOLITHIC=y
2005-04-14 20:18:17 +00:00
# Uncomment this to disable command echoing
#QUIET:=@
########################################
#
2005-06-06 18:13:38 +00:00
# NO OPTIONS BELOW HERE
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
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
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)
2005-11-22 22:07:12 +00:00
APPFILES := $(addprefix $(APPDIR)/,default_contexts default_type initrc_context failsafe_context userhelper_context removable_context dbus_contexts) $(CONTEXTPATH)/files/media
2005-06-01 17:27:56 +00:00
CONTEXTFILES += $(wildcard $(APPCONF)/*_context*) $(APPCONF)/media
2005-09-12 15:17:39 +00:00
USER_FILES := $(POLDIR)/systemuser $(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 module
2005-07-05 19:42:11 +00:00
MODMOD := module
# 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))
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)
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) $^ | \
2005-09-22 14:42:49 +00:00
egrep -v "^[[:blank:]]*($$|#)" | \
sed -r -e 's/^[[:blank:]]+//' >> 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)
$(QUIET) egrep '^[[:blank:]]*[[:alpha:]]' $(BOOLEANS) \
| sed -e 's/false/0/g' -e 's/true/1/g' > 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
$(APPDIR)/customizable_types: policy.conf
@mkdir -p $(APPDIR)
$(QUIET) grep "^type .*customizable" $< | cut -d',' -f1 | cut -d' ' -f2 > tmp/customizable_types
$(QUIET) install -m 644 tmp/customizable_types $@
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
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)
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