Don\'t allow permissive SELinux domains on user builds.
am: bca98efa57
* commit 'bca98efa575bedab68f2d5eaee2cd1fd1741962b':
Don't allow permissive SELinux domains on user builds.
This commit is contained in:
commit
0551e9e8d4
1 changed files with 22 additions and 4 deletions
26
Android.mk
26
Android.mk
|
@ -97,10 +97,19 @@ $(sepolicy_policy.conf): $(call build_policy, $(sepolicy_build_files))
|
|||
-s $^ > $@
|
||||
$(hide) sed '/dontaudit/d' $@ > $@.dontaudit
|
||||
|
||||
$(LOCAL_BUILT_MODULE): $(sepolicy_policy.conf) $(HOST_OUT_EXECUTABLES)/checkpolicy
|
||||
$(LOCAL_BUILT_MODULE): $(sepolicy_policy.conf) $(HOST_OUT_EXECUTABLES)/checkpolicy $(HOST_OUT_EXECUTABLES)/sepolicy-analyze
|
||||
@mkdir -p $(dir $@)
|
||||
$(hide) $(HOST_OUT_EXECUTABLES)/checkpolicy -M -c $(POLICYVERS) -o $@ $<
|
||||
$(hide) $(HOST_OUT_EXECUTABLES)/checkpolicy -M -c $(POLICYVERS) -o $@.tmp $<
|
||||
$(hide) $(HOST_OUT_EXECUTABLES)/checkpolicy -M -c $(POLICYVERS) -o $(dir $<)/$(notdir $@).dontaudit $<.dontaudit
|
||||
$(hide) $(HOST_OUT_EXECUTABLES)/sepolicy-analyze $@.tmp permissive > $@.permissivedomains
|
||||
$(hide) if [ "$(TARGET_BUILD_VARIANT)" = "user" -a -s $@.permissivedomains ]; then \
|
||||
echo "==========" 1>&2; \
|
||||
echo "ERROR: permissive domains not allowed in user builds" 1>&2; \
|
||||
echo "List of invalid domains:" 1>&2; \
|
||||
cat $@.permissivedomains 1>&2; \
|
||||
exit 1; \
|
||||
fi
|
||||
$(hide) mv $@.tmp $@
|
||||
|
||||
built_sepolicy := $(LOCAL_BUILT_MODULE)
|
||||
sepolicy_policy.conf :=
|
||||
|
@ -126,9 +135,18 @@ $(sepolicy_policy_recovery.conf): $(call build_policy, $(sepolicy_build_files))
|
|||
-D target_recovery=true \
|
||||
-s $^ > $@
|
||||
|
||||
$(LOCAL_BUILT_MODULE): $(sepolicy_policy_recovery.conf) $(HOST_OUT_EXECUTABLES)/checkpolicy
|
||||
$(LOCAL_BUILT_MODULE): $(sepolicy_policy_recovery.conf) $(HOST_OUT_EXECUTABLES)/checkpolicy $(HOST_OUT_EXECUTABLES)/sepolicy-analyze
|
||||
@mkdir -p $(dir $@)
|
||||
$(hide) $(HOST_OUT_EXECUTABLES)/checkpolicy -M -c $(POLICYVERS) -o $@ $<
|
||||
$(hide) $(HOST_OUT_EXECUTABLES)/checkpolicy -M -c $(POLICYVERS) -o $@.tmp $<
|
||||
$(hide) $(HOST_OUT_EXECUTABLES)/sepolicy-analyze $@.tmp permissive > $@.permissivedomains
|
||||
$(hide) if [ "$(TARGET_BUILD_VARIANT)" = "user" -a -s $@.permissivedomains ]; then \
|
||||
echo "==========" 1>&2; \
|
||||
echo "ERROR: permissive domains not allowed in user builds" 1>&2; \
|
||||
echo "List of invalid domains:" 1>&2; \
|
||||
cat $@.permissivedomains 1>&2; \
|
||||
exit 1; \
|
||||
fi
|
||||
$(hide) mv $@.tmp $@
|
||||
|
||||
built_sepolicy_recovery := $(LOCAL_BUILT_MODULE)
|
||||
sepolicy_policy_recovery.conf :=
|
||||
|
|
Loading…
Reference in a new issue