2018-02-01 01:22:35 +01:00
|
|
|
version := $(version_under_treble_tests)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
# For Treble builds run tests verifying that processes are properly labeled and
|
|
|
|
# permissions granted do not violate the treble model. Also ensure that treble
|
|
|
|
# compatibility guarantees are upheld between SELinux version bumps.
|
|
|
|
LOCAL_MODULE := treble_sepolicy_tests_$(version)
|
2021-02-04 08:07:40 +01:00
|
|
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 legacy_unencumbered
|
|
|
|
LOCAL_LICENSE_CONDITIONS := notice unencumbered
|
|
|
|
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/NOTICE
|
2019-05-29 18:05:43 +02:00
|
|
|
LOCAL_MODULE_CLASS := FAKE
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
2018-02-01 01:22:35 +01:00
|
|
|
|
2021-03-22 11:25:09 +01:00
|
|
|
IS_TREBLE_TEST_ENABLED_PARTNER := false
|
|
|
|
ifeq ($(filter 26.0 27.0 28.0 29.0,$(version)),)
|
2023-09-06 07:39:49 +02:00
|
|
|
ifneq (,$(BOARD_SYSTEM_EXT_PREBUILT_DIR)$(BOARD_PRODUCT_PREBUILT_DIR))
|
2021-03-22 11:25:09 +01:00
|
|
|
IS_TREBLE_TEST_ENABLED_PARTNER := true
|
2024-03-29 03:09:48 +01:00
|
|
|
endif # (,$(BOARD_SYSTEM_EXT_PREBUILT_DIR)$(BOARD_PRODUCT_PREBUILT_DIR))
|
2021-03-22 11:25:09 +01:00
|
|
|
endif # ($(filter 26.0 27.0 28.0 29.0,$(version)),)
|
|
|
|
|
2018-02-01 01:22:35 +01:00
|
|
|
include $(BUILD_SYSTEM)/base_rules.mk
|
|
|
|
|
|
|
|
# $(version)_plat - the platform policy shipped as part of the $(version) release. This is
|
|
|
|
# built to enable us to determine the diff between the current policy and the
|
|
|
|
# $(version) policy, which will be used in tests to make sure that compatibility has
|
|
|
|
# been maintained by our mapping files.
|
2023-09-06 11:01:53 +02:00
|
|
|
built_$(version)_plat_sepolicy_cil := $(call intermediates-dir-for,ETC,$(version)_plat_policy.cil)/$(version)_plat_policy.cil
|
2022-01-21 03:47:54 +01:00
|
|
|
|
2019-10-11 01:29:40 +02:00
|
|
|
$(version)_mapping.cil := $(call intermediates-dir-for,ETC,plat_$(version).cil)/plat_$(version).cil
|
2018-09-30 02:47:10 +02:00
|
|
|
$(version)_mapping.ignore.cil := \
|
|
|
|
$(call intermediates-dir-for,ETC,$(version).ignore.cil)/$(version).ignore.cil
|
2021-03-22 11:25:09 +01:00
|
|
|
ifeq ($(IS_TREBLE_TEST_ENABLED_PARTNER),true)
|
2024-03-29 03:09:48 +01:00
|
|
|
ifneq (,$(BOARD_SYSTEM_EXT_PREBUILT_DIR))
|
2021-03-22 11:25:09 +01:00
|
|
|
$(version)_mapping.cil += \
|
|
|
|
$(call intermediates-dir-for,ETC,system_ext_$(version).cil)/system_ext_$(version).cil
|
|
|
|
$(version)_mapping.ignore.cil += \
|
|
|
|
$(call intermediates-dir-for,ETC,system_ext_$(version).ignore.cil)/system_ext_$(version).ignore.cil
|
2024-03-29 03:09:48 +01:00
|
|
|
endif # (,$(BOARD_SYSTEM_EXT_PREBUILT_DIR))
|
|
|
|
ifneq (,$(BOARD_PRODUCT_PREBUILT_DIR))
|
2021-03-22 11:25:09 +01:00
|
|
|
$(version)_mapping.cil += \
|
|
|
|
$(call intermediates-dir-for,ETC,product_$(version).cil)/product_$(version).cil
|
|
|
|
$(version)_mapping.ignore.cil += \
|
|
|
|
$(call intermediates-dir-for,ETC,product_$(version).ignore.cil)/product_$(version).ignore.cil
|
2024-03-29 03:09:48 +01:00
|
|
|
endif # (,$(BOARD_PRODUCT_PREBUILT_DIR))
|
2021-03-22 11:25:09 +01:00
|
|
|
endif #($(IS_TREBLE_TEST_ENABLED_PARTNER),true)
|
2018-07-11 11:30:44 +02:00
|
|
|
|
2018-02-01 01:22:35 +01:00
|
|
|
# $(version)_mapping.combined.cil - a combination of the mapping file used when
|
|
|
|
# combining the current platform policy with nonplatform policy based on the
|
|
|
|
# $(version) policy release and also a special ignored file that exists purely for
|
|
|
|
# these tests.
|
2023-09-06 07:39:49 +02:00
|
|
|
intermediates := $(TARGET_OUT_INTERMEDIATES)/ETC/$(LOCAL_MODULE)_intermediates
|
2018-02-01 01:22:35 +01:00
|
|
|
$(version)_mapping.combined.cil := $(intermediates)/$(version)_mapping.combined.cil
|
|
|
|
$($(version)_mapping.combined.cil): $($(version)_mapping.cil) $($(version)_mapping.ignore.cil)
|
|
|
|
mkdir -p $(dir $@)
|
|
|
|
cat $^ > $@
|
|
|
|
|
2021-03-22 11:25:09 +01:00
|
|
|
ifeq ($(IS_TREBLE_TEST_ENABLED_PARTNER),true)
|
|
|
|
public_cil_files := $(base_product_pub_policy.cil)
|
|
|
|
else
|
|
|
|
public_cil_files := $(base_plat_pub_policy.cil)
|
|
|
|
endif # ($(IS_TREBLE_TEST_ENABLED_PARTNER),true)
|
2023-09-06 11:01:53 +02:00
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_SEPOLICY_OLD := $(built_$(version)_plat_sepolicy_cil)
|
2019-05-29 18:05:43 +02:00
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_COMBINED_MAPPING := $($(version)_mapping.combined.cil)
|
2021-03-22 11:25:09 +01:00
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_PLAT_PUB_SEPOLICY := $(public_cil_files)
|
2019-05-29 18:05:43 +02:00
|
|
|
$(LOCAL_BUILT_MODULE): $(HOST_OUT_EXECUTABLES)/treble_sepolicy_tests \
|
2021-03-22 11:25:09 +01:00
|
|
|
$(public_cil_files) \
|
2023-09-06 11:01:53 +02:00
|
|
|
$(built_$(version)_plat_sepolicy_cil) $($(version)_mapping.combined.cil)
|
2018-02-01 01:22:35 +01:00
|
|
|
@mkdir -p $(dir $@)
|
2023-09-04 12:02:53 +02:00
|
|
|
$(hide) $(HOST_OUT_EXECUTABLES)/treble_sepolicy_tests \
|
2023-09-06 11:01:53 +02:00
|
|
|
-b $(PRIVATE_PLAT_PUB_SEPOLICY) -m $(PRIVATE_COMBINED_MAPPING) \
|
|
|
|
-o $(PRIVATE_SEPOLICY_OLD)
|
2018-02-01 01:22:35 +01:00
|
|
|
$(hide) touch $@
|
|
|
|
|
2021-03-22 11:25:09 +01:00
|
|
|
built_sepolicy_files :=
|
|
|
|
public_cil_files :=
|
2018-02-01 01:22:35 +01:00
|
|
|
$(version)_mapping.cil :=
|
|
|
|
$(version)_mapping.combined.cil :=
|
|
|
|
$(version)_mapping.ignore.cil :=
|
|
|
|
built_$(version)_plat_sepolicy :=
|
|
|
|
version :=
|
|
|
|
version_under_treble_tests :=
|