]> git.ipfire.org Git - people/stevee/selinux-policy.git/blame - Rules.monolithic
add fail2ban from dan
[people/stevee/selinux-policy.git] / Rules.monolithic
CommitLineData
fb0a3a98
CP
1########################################
2#
3# Rules and Targets for building monolithic policies
4#
5
c634db20
CP
6# determine the policy version and current kernel version if possible
7pv := $(shell $(CHECKPOLICY) -V |cut -f 1 -d ' ')
8kv := $(shell cat /selinux/policyvers)
9
10# dont print version warnings if we are unable to determine
11# the currently running kernel's policy version
12ifeq "$(kv)" ""
13 kv := $(pv)
14endif
15
16policy_conf = $(builddir)policy.conf
17fc = $(builddir)file_contexts
18polver = $(builddir)policy.$(pv)
19homedir_template = $(builddir)homedir_template
c9f20d5b 20
3abd5ee8
CP
21M4PARAM += -D self_contained_policy
22
fb0a3a98 23# install paths
c634db20 24loadpath = $(policypath)/$(notdir $(polver))
fb0a3a98 25
c634db20 26appfiles += $(installdir)/booleans $(userpath)/local.users
fb0a3a98 27
c767b14c 28# for monolithic policy use all base and module to create policy
c634db20 29all_modules := $(strip $(base_mods) $(mod_mods))
ab23bb90 30# off module interfaces included to make sure all interfaces are expanded.
c634db20
CP
31all_interfaces := $(all_modules:.te=.if) $(off_mods:.te=.if)
32all_te_files := $(all_modules)
33all_fc_files := $(all_modules:.te=.fc)
fb0a3a98 34
c634db20
CP
35pre_te_files := $(secclass) $(isids) $(avs) $(m4support) $(poldir)/mls $(poldir)/mcs
36post_te_files := $(user_files) $(poldir)/constraints
fb0a3a98 37
c634db20 38policy_sections := $(tmpdir)/pre_te_files.conf $(tmpdir)/all_attrs_types.conf $(tmpdir)/global_bools.conf $(tmpdir)/only_te_rules.conf $(tmpdir)/all_post.conf
c767b14c
CP
39
40# search layer dirs for source files
c634db20
CP
41vpath %.te $(all_layers)
42vpath %.if $(all_layers)
43vpath %.fc $(all_layers)
c767b14c 44
fb0a3a98
CP
45########################################
46#
47# default action: build policy locally
48#
49default: policy
50
c634db20 51policy: $(polver)
fb0a3a98 52
c634db20 53install: $(loadpath) $(fcpath) $(ncpath) $(appfiles)
fb0a3a98 54
c634db20 55load: $(tmpdir)/load
fb0a3a98 56
c634db20
CP
57checklabels: $(fcpath)
58restorelabels: $(fcpath)
59relabel: $(fcpath)
60resetlabels: $(fcpath)
120988c4 61
fb0a3a98
CP
62########################################
63#
64# Build a binary policy locally
65#
c634db20
CP
66$(polver): $(policy_conf)
67 @echo "Compiling $(NAME) $(polver)"
68ifneq ($(pv),$(kv))
fb0a3a98
CP
69 @echo
70 @echo "WARNING: Policy version mismatch! Is your OUTPUT_POLICY set correctly?"
71 @echo
72endif
5b45ffb0 73 $(verbose) $(CHECKPOLICY) $^ -o $@
fb0a3a98
CP
74
75########################################
76#
77# Install a binary policy
78#
c634db20
CP
79$(loadpath): $(policy_conf)
80 @mkdir -p $(policypath)
81 @echo "Compiling and installing $(NAME) $(loadpath)"
82ifneq ($(pv),$(kv))
fb0a3a98
CP
83 @echo
84 @echo "WARNING: Policy version mismatch! Is your OUTPUT_POLICY set correctly?"
85 @echo
86endif
9b3756bf 87 $(verbose) $(CHECKPOLICY) $^ -o $@
fb0a3a98
CP
88
89########################################
90#
91# Load the binary policy
92#
c634db20
CP
93reload $(tmpdir)/load: $(loadpath) $(fcpath) $(ncpath) $(appfiles)
94 @echo "Loading $(NAME) $(loadpath)"
95 $(verbose) $(LOADPOLICY) -q $(loadpath)
96 @touch $(tmpdir)/load
fb0a3a98
CP
97
98########################################
99#
100# Construct a monolithic policy.conf
101#
c634db20 102$(policy_conf): $(policy_sections)
c9f20d5b 103 @echo "Creating $(NAME) $(@F)"
3abd5ee8
CP
104 @test -d $(@D) || mkdir -p $(@D)
105 $(verbose) cat $^ > $@
fb0a3a98 106
c634db20
CP
107$(tmpdir)/pre_te_files.conf: $(pre_te_files)
108 @test -d $(tmpdir) || mkdir -p $(tmpdir)
3abd5ee8 109 $(verbose) $(M4) $(M4PARAM) $^ > $@
fb0a3a98 110
c634db20
CP
111$(tmpdir)/generated_definitions.conf: $(all_te_files)
112 @test -d $(tmpdir) || mkdir -p $(tmpdir)
70131678 113# define all available object classes
c634db20 114 $(verbose) $(genperm) $(avs) $(secclass) > $@
bbcd3c97 115 $(verbose) $(call create-base-per-role-tmpl,$(basename $(notdir $(all_modules))),$@)
c634db20 116 $(verbose) test -f $(booleans) && $(setbools) $(booleans) >> $@ || true
fb0a3a98 117
c634db20 118$(tmpdir)/global_bools.conf: $(m4support) $(tmpdir)/generated_definitions.conf $(globalbool) $(globaltun)
3abd5ee8
CP
119 $(verbose) $(M4) $(M4PARAM) $^ > $@
120
c634db20
CP
121$(tmpdir)/all_interfaces.conf: $(m4support) $(all_interfaces)
122 @test -d $(tmpdir) || mkdir -p $(tmpdir)
123 @echo "ifdef(\`__if_error',\`m4exit(1)')" > $(tmpdir)/iferror.m4
3abd5ee8 124 @echo "divert(-1)" > $@
c634db20
CP
125 $(verbose) $(M4) $^ $(tmpdir)/iferror.m4 >> $(tmpdir)/$(@F).tmp
126 $(verbose) $(SED) -e s/dollarsstar/\$$\*/g $(tmpdir)/$(@F).tmp >> $@
3abd5ee8 127 @echo "divert" >> $@
fb0a3a98 128
c634db20 129$(tmpdir)/rolemap.conf: $(rolemap)
3abd5ee8
CP
130 $(call parse-rolemap,base,$@)
131
c634db20
CP
132$(tmpdir)/all_te_files.conf: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf $(all_te_files) $(tmpdir)/rolemap.conf
133ifeq "$(strip $(all_te_files))" ""
134 $(error No enabled modules! $(notdir $(mod_conf)) may need to be generated by using "make conf")
fb0a3a98 135endif
c634db20 136 @test -d $(tmpdir) || mkdir -p $(tmpdir)
3abd5ee8 137 $(verbose) $(M4) $(M4PARAM) -s $^ > $@
fb0a3a98 138
c634db20
CP
139$(tmpdir)/post_te_files.conf: $(m4support) $(post_te_files)
140 @test -d $(tmpdir) || mkdir -p $(tmpdir)
3abd5ee8 141 $(verbose) $(M4) $(M4PARAM) $^ > $@
fb0a3a98
CP
142
143# extract attributes and put them first. extract post te stuff
3abd5ee8 144# like genfscon and put last.
c634db20
CP
145$(tmpdir)/all_attrs_types.conf $(tmpdir)/only_te_rules.conf $(tmpdir)/all_post.conf: $(tmpdir)/all_te_files.conf $(tmpdir)/post_te_files.conf
146 $(verbose) $(get_type_attr_decl) $(tmpdir)/all_te_files.conf | $(SORT) > $(tmpdir)/all_attrs_types.conf
147 $(verbose) cat $(tmpdir)/post_te_files.conf > $(tmpdir)/all_post.conf
3abd5ee8 148# these have to run individually because order matters:
c634db20
CP
149 $(verbose) $(GREP) '^sid ' $(tmpdir)/all_te_files.conf >> $(tmpdir)/all_post.conf || true
150 $(verbose) $(GREP) '^fs_use_(xattr|task|trans)' $(tmpdir)/all_te_files.conf >> $(tmpdir)/all_post.conf || true
151 $(verbose) $(GREP) ^genfscon $(tmpdir)/all_te_files.conf >> $(tmpdir)/all_post.conf || true
152 $(verbose) $(GREP) ^portcon $(tmpdir)/all_te_files.conf >> $(tmpdir)/all_post.conf || true
153 $(verbose) $(GREP) ^netifcon $(tmpdir)/all_te_files.conf >> $(tmpdir)/all_post.conf || true
154 $(verbose) $(GREP) ^nodecon $(tmpdir)/all_te_files.conf >> $(tmpdir)/all_post.conf || true
155 $(verbose) $(comment_move_decl) $(tmpdir)/all_te_files.conf > $(tmpdir)/only_te_rules.conf
fb0a3a98
CP
156
157########################################
158#
159# Remove the dontaudit rules from the policy.conf
160#
c634db20
CP
161enableaudit: $(policy_conf)
162 @test -d $(tmpdir) || mkdir -p $(tmpdir)
163 @echo "Removing dontaudit rules from $(notdir $(policy_conf))"
164 $(verbose) $(GREP) -v dontaudit $^ > $(tmpdir)/policy.audit
165 $(verbose) mv $(tmpdir)/policy.audit $(policy_conf)
fb0a3a98
CP
166
167########################################
168#
169# Construct file_contexts
170#
c634db20
CP
171$(fc): $(tmpdir)/$(notdir $(fc)).tmp $(fcsort)
172 $(verbose) $(fcsort) $< $@
173 $(verbose) $(GREP) -e HOME -e ROLE $@ > $(homedir_template)
3abd5ee8 174 $(verbose) $(SED) -i -e /HOME/d -e /ROLE/d $@
c767b14c 175
c634db20
CP
176$(tmpdir)/$(notdir $(fc)).tmp: $(m4support) $(tmpdir)/generated_definitions.conf $(all_fc_files)
177ifeq ($(all_fc_files),)
178 $(error No enabled modules! $(notdir $(mod_conf)) may need to be generated by using "make conf")
fb0a3a98
CP
179endif
180 @echo "Creating $(NAME) file_contexts."
c634db20 181 @test -d $(tmpdir) || mkdir -p $(tmpdir)
3abd5ee8 182 $(verbose) $(M4) $(M4PARAM) $^ > $@
fb0a3a98 183
c634db20 184$(homedir_template): $(fc)
fc47b34c 185
fb0a3a98
CP
186########################################
187#
188# Install file_contexts
189#
c634db20 190$(fcpath): $(fc) $(loadpath) $(userpath)/system.users
fb0a3a98 191 @echo "Validating $(NAME) file_contexts."
c634db20 192 $(verbose) $(SETFILES) -q -c $(loadpath) $(fc)
fb0a3a98 193 @echo "Installing file_contexts."
c634db20
CP
194 @mkdir -p $(contextpath)/files
195 $(verbose) $(INSTALL) -m 644 $(fc) $(fcpath)
196 $(verbose) $(INSTALL) -m 644 $(homedir_template) $(homedirpath)
197 $(verbose) $(genhomedircon) -d $(topdir) -t $(NAME) $(USEPWD)
fc47b34c
CP
198ifeq "$(DISTRO)" "rhel4"
199# Setfiles in RHEL4 does not look at file_contexts.homedirs.
200 $(verbose) cat $@.homedirs >> $@
201# Delete the file_contexts.homedirs in case the toolchain has
202# been updated, to prevent duplicate match errors.
203 $(verbose) rm -f $@.homedirs
185ab241 204endif
fb0a3a98 205
8df65f13 206########################################
5a7c06fd
CP
207#
208# Intall netfilter_contexts
209#
c634db20 210$(ncpath): $(net_contexts)
5a7c06fd 211 @echo "Installing $(NAME) netfilter_contexts."
cfd5c5e1 212 $(verbose) $(INSTALL) -m 0644 $^ $@
5a7c06fd
CP
213
214########################################
8df65f13
CP
215#
216# Run policy source checks
217#
c634db20
CP
218check: $(builddir)check.res
219$(builddir)check.res: $(policy_conf) $(fc)
220 $(SECHECK) -s --profile=development --policy=$(policy_conf) --fcfile=$(fc) > $@
8df65f13 221
c634db20
CP
222longcheck: $(builddir)longcheck.res
223$(builddir)longcheck.res: $(policy_conf) $(fc)
224 $(SECHECK) -s --profile=all --policy=$(policy_conf) --fcfile=$(fc) > $@
8df65f13 225
049e11af
CP
226########################################
227#
228# Appconfig files
229#
c634db20
CP
230$(appdir)/customizable_types: $(policy_conf)
231 @mkdir -p $(appdir)
232 $(verbose) $(GREP) '^[[:blank:]]*type .*customizable' $< | cut -d';' -f1 | cut -d',' -f1 | cut -d' ' -f2 | $(SORT) -u > $(tmpdir)/customizable_types
233 $(verbose) $(INSTALL) -m 644 $(tmpdir)/customizable_types $@
049e11af 234
fb0a3a98
CP
235########################################
236#
237# Clean the sources
238#
239clean:
c634db20
CP
240 rm -f $(policy_conf)
241 rm -f $(polver)
242 rm -f $(fc)
243 rm -f $(homedir_template)
6962bb32 244 rm -f $(net_contexts)
8df65f13 245 rm -f *.res
c634db20 246 rm -fR $(tmpdir)
fb0a3a98 247
8df65f13 248.PHONY: default policy install load reload enableaudit checklabels restorelabels relabel check longcheck clean