]> git.ipfire.org Git - people/stevee/selinux-policy.git/blame - refpolicy/Rules.monolithic
remove rules added to make sediff easier
[people/stevee/selinux-policy.git] / refpolicy / Rules.monolithic
CommitLineData
fb0a3a98
CP
1########################################
2#
3# Rules and Targets for building monolithic policies
4#
5
5b45ffb0
CP
6POLICY_CONF = $(BUILDDIR)policy.conf
7FC = $(BUILDDIR)file_contexts
8POLVER = $(BUILDDIR)policy.$(PV)
9HOMEDIR_TEMPLATE = $(BUILDDIR)homedir_template
c9f20d5b 10
3abd5ee8
CP
11M4PARAM += -D self_contained_policy
12
fb0a3a98
CP
13# install paths
14POLICYPATH = $(INSTALLDIR)/policy
5b45ffb0 15LOADPATH = $(POLICYPATH)/$(notdir $(POLVER))
fb0a3a98
CP
16HOMEDIRPATH = $(CONTEXTPATH)/files/homedir_template
17
049e11af 18APPFILES += $(INSTALLDIR)/booleans
fb0a3a98 19
c767b14c 20# for monolithic policy use all base and module to create policy
cf0ff557 21ALL_MODULES := $(strip $(BASE_MODS) $(MOD_MODS))
ab23bb90
CP
22# off module interfaces included to make sure all interfaces are expanded.
23ALL_INTERFACES := $(ALL_MODULES:.te=.if) $(OFF_MODS:.te=.if)
fb0a3a98
CP
24ALL_TE_FILES := $(ALL_MODULES)
25ALL_FC_FILES := $(ALL_MODULES:.te=.fc)
26
a0824843 27PRE_TE_FILES := $(SECCLASS) $(ISIDS) $(AVS) $(M4SUPPORT) $(POLDIR)/mls $(POLDIR)/mcs
ffd04848 28POST_TE_FILES := $(USER_FILES) $(POLDIR)/constraints
fb0a3a98 29
3abd5ee8 30POLICY_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
31
32# search layer dirs for source files
e2680fb4
CP
33vpath %.te $(ALL_LAYERS)
34vpath %.if $(ALL_LAYERS)
35vpath %.fc $(ALL_LAYERS)
c767b14c 36
fb0a3a98
CP
37########################################
38#
39# default action: build policy locally
40#
41default: policy
42
43policy: $(POLVER)
44
45install: $(LOADPATH) $(FCPATH) $(APPFILES) $(USERPATH)/local.users
46
c9f20d5b 47load: $(TMPDIR)/load
fb0a3a98 48
120988c4
CP
49checklabels: $(FCPATH)
50restorelabels: $(FCPATH)
51relabel: $(FCPATH)
52resetlabels: $(FCPATH)
53
fb0a3a98
CP
54########################################
55#
56# Build a binary policy locally
57#
c9f20d5b 58$(POLVER): $(POLICY_CONF)
fb0a3a98
CP
59 @echo "Compiling $(NAME) $(POLVER)"
60ifneq ($(PV),$(KV))
61 @echo
62 @echo "WARNING: Policy version mismatch! Is your OUTPUT_POLICY set correctly?"
63 @echo
64endif
5b45ffb0 65 $(verbose) $(CHECKPOLICY) $^ -o $@
fb0a3a98
CP
66
67########################################
68#
69# Install a binary policy
70#
c9f20d5b 71$(LOADPATH): $(POLICY_CONF)
fb0a3a98
CP
72 @mkdir -p $(POLICYPATH)
73 @echo "Compiling and installing $(NAME) $(LOADPATH)"
74ifneq ($(PV),$(KV))
75 @echo
76 @echo "WARNING: Policy version mismatch! Is your OUTPUT_POLICY set correctly?"
77 @echo
78endif
9b3756bf 79 $(verbose) $(CHECKPOLICY) $^ -o $@
fb0a3a98
CP
80
81########################################
82#
83# Load the binary policy
84#
c9f20d5b 85reload $(TMPDIR)/load: $(LOADPATH) $(FCPATH) $(APPFILES)
fb0a3a98 86 @echo "Loading $(NAME) $(LOADPATH)"
9b3756bf 87 $(verbose) $(LOADPOLICY) -q $(LOADPATH)
c9f20d5b 88 @touch $(TMPDIR)/load
fb0a3a98
CP
89
90########################################
91#
92# Construct a monolithic policy.conf
93#
c9f20d5b
CP
94$(POLICY_CONF): $(POLICY_SECTIONS)
95 @echo "Creating $(NAME) $(@F)"
3abd5ee8
CP
96 @test -d $(@D) || mkdir -p $(@D)
97 $(verbose) cat $^ > $@
fb0a3a98 98
c9f20d5b
CP
99$(TMPDIR)/pre_te_files.conf: $(PRE_TE_FILES)
100 @test -d $(TMPDIR) || mkdir -p $(TMPDIR)
3abd5ee8 101 $(verbose) $(M4) $(M4PARAM) $^ > $@
fb0a3a98 102
988a441b 103$(TMPDIR)/generated_definitions.conf: $(ALL_TE_FILES)
c9f20d5b 104 @test -d $(TMPDIR) || mkdir -p $(TMPDIR)
70131678
CP
105# define all available object classes
106 $(verbose) $(GENPERM) $(AVS) $(SECCLASS) > $@
107# per-userdomain templates:
108 $(verbose) echo "define(\`base_per_userdomain_template',\`" >> $@
3abd5ee8
CP
109 $(verbose) $(foreach mod,$(basename $(notdir $(ALL_MODULES))), \
110 echo "ifdef(\`""$(mod)""_per_userdomain_template',\`""$(mod)""_per_userdomain_template("'$$*'")')" >> $@ ;)
9b3756bf 111 $(verbose) echo "')" >> $@
fb0a3a98 112# define foo.te
9b3756bf 113 $(verbose) for i in $(notdir $(ALL_MODULES)); do \
fb0a3a98
CP
114 echo "define(\`$$i')" >> $@ ;\
115 done
5b45ffb0 116 $(verbose) test -f $(BOOLEANS) && $(SETBOOLS) $(BOOLEANS) >> $@ || true
fb0a3a98 117
3abd5ee8
CP
118$(TMPDIR)/global_bools.conf: $(M4SUPPORT) $(TMPDIR)/generated_definitions.conf $(GLOBALBOOL) $(GLOBALTUN)
119 $(verbose) $(M4) $(M4PARAM) $^ > $@
120
c9f20d5b 121$(TMPDIR)/all_interfaces.conf: $(M4SUPPORT) $(ALL_INTERFACES)
fb0a3a98
CP
122ifeq ($(ALL_INTERFACES),)
123 $(error No enabled modules! $(notdir $(MOD_CONF)) may need to be generated by using "make conf")
124endif
c9f20d5b 125 @test -d $(TMPDIR) || mkdir -p $(TMPDIR)
5706facd 126 @echo "ifdef(\`__if_error',\`m4exit(1)')" > $(TMPDIR)/iferror.m4
3abd5ee8 127 @echo "divert(-1)" > $@
5706facd
CP
128 $(verbose) $(M4) $^ $(TMPDIR)/iferror.m4 >> $(TMPDIR)/$(@F).tmp
129 $(verbose) $(SED) -e s/dollarsstar/\$$\*/g $(TMPDIR)/$(@F).tmp >> $@
3abd5ee8 130 @echo "divert" >> $@
fb0a3a98 131
3abd5ee8
CP
132$(TMPDIR)/rolemap.conf: $(ROLEMAP)
133 $(call parse-rolemap,base,$@)
134
135$(TMPDIR)/all_te_files.conf: $(M4SUPPORT) $(TMPDIR)/generated_definitions.conf $(TMPDIR)/all_interfaces.conf $(ALL_TE_FILES) $(TMPDIR)/rolemap.conf
fb0a3a98
CP
136ifeq ($(ALL_TE_FILES),)
137 $(error No enabled modules! $(notdir $(MOD_CONF)) may need to be generated by using "make conf")
138endif
c9f20d5b 139 @test -d $(TMPDIR) || mkdir -p $(TMPDIR)
3abd5ee8 140 $(verbose) $(M4) $(M4PARAM) -s $^ > $@
fb0a3a98 141
3abd5ee8 142$(TMPDIR)/post_te_files.conf: $(M4SUPPORT) $(POST_TE_FILES)
c9f20d5b 143 @test -d $(TMPDIR) || mkdir -p $(TMPDIR)
3abd5ee8 144 $(verbose) $(M4) $(M4PARAM) $^ > $@
fb0a3a98
CP
145
146# extract attributes and put them first. extract post te stuff
3abd5ee8 147# like genfscon and put last.
c9f20d5b 148$(TMPDIR)/all_attrs_types.conf $(TMPDIR)/only_te_rules.conf $(TMPDIR)/all_post.conf: $(TMPDIR)/all_te_files.conf $(TMPDIR)/post_te_files.conf
f62f4c79 149 $(verbose) $(get_type_attr_decl) $(TMPDIR)/all_te_files.conf | $(SORT) > $(TMPDIR)/all_attrs_types.conf
c9f20d5b 150 $(verbose) cat $(TMPDIR)/post_te_files.conf > $(TMPDIR)/all_post.conf
3abd5ee8
CP
151# these have to run individually because order matters:
152 $(verbose) $(GREP) '^sid ' $(TMPDIR)/all_te_files.conf >> $(TMPDIR)/all_post.conf || true
153 $(verbose) $(GREP) '^fs_use_(xattr|task|trans)' $(TMPDIR)/all_te_files.conf >> $(TMPDIR)/all_post.conf || true
154 $(verbose) $(GREP) ^genfscon $(TMPDIR)/all_te_files.conf >> $(TMPDIR)/all_post.conf || true
155 $(verbose) $(GREP) ^portcon $(TMPDIR)/all_te_files.conf >> $(TMPDIR)/all_post.conf || true
156 $(verbose) $(GREP) ^netifcon $(TMPDIR)/all_te_files.conf >> $(TMPDIR)/all_post.conf || true
157 $(verbose) $(GREP) ^nodecon $(TMPDIR)/all_te_files.conf >> $(TMPDIR)/all_post.conf || true
158 $(verbose) $(comment_move_decl) $(TMPDIR)/all_te_files.conf > $(TMPDIR)/only_te_rules.conf
fb0a3a98
CP
159
160########################################
161#
162# Remove the dontaudit rules from the policy.conf
163#
c9f20d5b
CP
164enableaudit: $(POLICY_CONF)
165 @test -d $(TMPDIR) || mkdir -p $(TMPDIR)
166 @echo "Removing dontaudit rules from $(notdir $(POLICY_CONF))"
3abd5ee8 167 $(verbose) $(GREP) -v dontaudit @^ > $(TMPDIR)/policy.audit
c9f20d5b 168 $(verbose) mv $(TMPDIR)/policy.audit $(POLICY_CONF)
fb0a3a98
CP
169
170########################################
171#
172# Construct file_contexts
173#
c9f20d5b 174$(FC): $(TMPDIR)/$(notdir $(FC)).tmp $(FCSORT)
185ab241
CP
175ifeq "$(DISTRO)" "rhel4"
176# the old genhomedircon used in RHEL4 makes assumptions on
177# the directory strucure of the policy. need to set up a mini
178# environment with this structure for correct functioning.
a3e785d5 179 @ mkdir -p $(TMPDIR)/rhel4
a7c960a8 180 $(verbose) $(FCSORT) $< $(TMPDIR)/rhel4/$(@F).tmp
5d92a208
CP
181 $(verbose) $(M4) $(M4PARAM) $(M4SUPPORT) $(USER_FILES) > $(TMPDIR)/rhel4/users
182 $(verbose) $(GREP) -v "^/root" $(TMPDIR)/rhel4/$(@F).tmp > $(TMPDIR)/rhel4/$(@F).root
183 $(verbose) ( cd $(TMPDIR)/rhel4 ; $(GENHOMEDIRCON) . $(@F).root > $(@F) )
184 $(verbose) $(GREP) "^/root" $(TMPDIR)/rhel4/$(@F).tmp >> $(TMPDIR)/rhel4/file_contexts
185 $(verpose) cp $(TMPDIR)/rhel4/file_contexts $@
185ab241 186else
5d92a208 187 $(verbose) $(FCSORT) $< $@
3abd5ee8
CP
188 $(verbose) $(GREP) -e HOME -e ROLE $@ > $(HOMEDIR_TEMPLATE)
189 $(verbose) $(SED) -i -e /HOME/d -e /ROLE/d $@
185ab241 190endif
c767b14c 191
c9f20d5b 192$(TMPDIR)/$(notdir $(FC)).tmp: $(M4SUPPORT) $(TMPDIR)/generated_definitions.conf $(ALL_FC_FILES)
fb0a3a98
CP
193ifeq ($(ALL_FC_FILES),)
194 $(error No enabled modules! $(notdir $(MOD_CONF)) may need to be generated by using "make conf")
195endif
196 @echo "Creating $(NAME) file_contexts."
c9f20d5b 197 @test -d $(TMPDIR) || mkdir -p $(TMPDIR)
3abd5ee8 198 $(verbose) $(M4) $(M4PARAM) $^ > $@
fb0a3a98
CP
199
200########################################
201#
202# Install file_contexts
203#
204$(FCPATH): $(FC) $(LOADPATH) $(USERPATH)/system.users
205 @echo "Validating $(NAME) file_contexts."
9b3756bf 206 $(verbose) $(SETFILES) -q -c $(LOADPATH) $(FC)
fb0a3a98
CP
207 @echo "Installing file_contexts."
208 @mkdir -p $(CONTEXTPATH)/files
185ab241 209ifeq "$(DISTRO)" "rhel4"
5d92a208 210 $(verbose) install -m 644 $(FC) $@
185ab241 211else
9b3756bf
CP
212 $(verbose) install -m 644 $(FC) $(FCPATH)
213 $(verbose) install -m 644 $(HOMEDIR_TEMPLATE) $(HOMEDIRPATH)
214 $(verbose) $(GENHOMEDIRCON) -d $(TOPDIR) -t $(NAME) $(USEPWD)
185ab241 215endif
fb0a3a98 216
8df65f13
CP
217########################################
218#
219# Run policy source checks
220#
5b45ffb0
CP
221check: $(BUILDDIR)check.res
222$(BUILDDIR)check.res: $(POLICY_CONF) $(FC)
223 $(SECHECK) -s --profile=development --policy=$(POLICY_CONF) --fcfile=$(FC) > $@
8df65f13 224
5b45ffb0
CP
225longcheck: $(BUILDDIR)longcheck.res
226$(BUILDDIR)longcheck.res: $(POLICY_CONF) $(FC)
227 $(SECHECK) -s --profile=all --policy=$(POLICY_CONF) --fcfile=$(FC) > $@
8df65f13 228
049e11af
CP
229########################################
230#
231# Appconfig files
232#
efc94af8 233$(APPDIR)/customizable_types: $(POLICY_CONF)
049e11af 234 @mkdir -p $(APPDIR)
85a0f967 235 $(verbose) $(GREP) '^[[:blank:]]*type .*customizable' $< | cut -d';' -f1 | cut -d',' -f1 | cut -d' ' -f2 | $(SORT) -u > $(TMPDIR)/customizable_types
4ca6d0d2 236 $(verbose) install -m 644 $(TMPDIR)/customizable_types $@
049e11af 237
fb0a3a98
CP
238########################################
239#
240# Clean the sources
241#
242clean:
c9f20d5b 243 rm -f $(POLICY_CONF)
5b45ffb0 244 rm -f $(POLVER)
fb0a3a98 245 rm -f $(FC)
c767b14c 246 rm -f $(HOMEDIR_TEMPLATE)
8df65f13 247 rm -f *.res
c9f20d5b 248 rm -fR $(TMPDIR)
fb0a3a98 249
8df65f13 250.PHONY: default policy install load reload enableaudit checklabels restorelabels relabel check longcheck clean