blob: 8b2d71bf08af3f7435ed13d42236fc6cb3e9ffa2 [file] [log] [blame]
Anton Hanssonfae0f972020-12-08 21:12:13 +00001# This file contains logic to enforce artifact path requirements
2# defined in product makefiles.
3
4# Fakes don't get installed, and NDK stubs aren't installed to device.
5static_allowed_patterns := $(TARGET_OUT_FAKE)/% $(SOONG_OUT_DIR)/ndk/%
6# RROs become REQUIRED by the source module, but are always placed on the vendor partition.
7static_allowed_patterns += %__auto_generated_rro_product.apk
8static_allowed_patterns += %__auto_generated_rro_vendor.apk
9# Auto-included targets are not considered
10static_allowed_patterns += $(call product-installed-files,)
11# $(PRODUCT_OUT)/apex is where shared libraries in APEXes get installed.
12# The path can be considered as a fake path, as the shared libraries
13# are installed there just to have symbols files for them under
14# $(PRODUCT_OUT)/symbols/apex for debugging purpose. The /apex directory
15# is never compiled into a filesystem image.
16static_allowed_patterns += $(PRODUCT_OUT)/apex/%
17ifeq (true,$(BOARD_USES_SYSTEM_OTHER_ODEX))
18 # Allow system_other odex space optimization.
19 static_allowed_patterns += \
20 $(TARGET_OUT_SYSTEM_OTHER)/%.odex \
21 $(TARGET_OUT_SYSTEM_OTHER)/%.vdex \
22 $(TARGET_OUT_SYSTEM_OTHER)/%.art
23endif
24
25all_offending_files :=
26$(foreach makefile,$(ARTIFACT_PATH_REQUIREMENT_PRODUCTS),\
27 $(eval requirements := $(PRODUCTS.$(makefile).ARTIFACT_PATH_REQUIREMENTS)) \
28 $(eval ### Verify that the product only produces files inside its path requirements.) \
29 $(eval allowed := $(PRODUCTS.$(makefile).ARTIFACT_PATH_ALLOWED_LIST)) \
30 $(eval path_patterns := $(call resolve-product-relative-paths,$(requirements),%)) \
31 $(eval allowed_patterns := $(call resolve-product-relative-paths,$(allowed))) \
32 $(eval files := $(call product-installed-files, $(makefile))) \
33 $(eval offending_files := $(filter-out $(path_patterns) $(allowed_patterns) $(static_allowed_patterns),$(files))) \
34 $(call maybe-print-list-and-error,$(offending_files),\
35 $(makefile) produces files outside its artifact path requirement. \
36 Allowed paths are $(subst $(space),$(comma)$(space),$(addsuffix *,$(requirements)))) \
37 $(eval unused_allowed := $(filter-out $(files),$(allowed_patterns))) \
38 $(call maybe-print-list-and-error,$(unused_allowed),$(makefile) includes redundant allowed entries in its artifact path requirement.) \
39 $(eval ### Optionally verify that nothing else produces files inside this artifact path requirement.) \
40 $(eval extra_files := $(filter-out $(files) $(HOST_OUT)/%,$(product_target_FILES))) \
41 $(eval files_in_requirement := $(filter $(path_patterns),$(extra_files))) \
42 $(eval all_offending_files += $(files_in_requirement)) \
43 $(eval allowed := $(PRODUCT_ARTIFACT_PATH_REQUIREMENT_ALLOWED_LIST)) \
44 $(eval allowed_patterns := $(call resolve-product-relative-paths,$(allowed))) \
45 $(eval offending_files := $(filter-out $(allowed_patterns),$(files_in_requirement))) \
46 $(eval enforcement := $(PRODUCT_ENFORCE_ARTIFACT_PATH_REQUIREMENTS)) \
47 $(if $(enforcement),\
48 $(call maybe-print-list-and-error,$(offending_files),\
49 $(INTERNAL_PRODUCT) produces files inside $(makefile)s artifact path requirement. \
50 $(PRODUCT_ARTIFACT_PATH_REQUIREMENT_HINT)) \
51 $(eval unused_allowed := $(if $(filter true strict,$(enforcement)),\
52 $(foreach p,$(allowed_patterns),$(if $(filter $(p),$(extra_files)),,$(p))))) \
53 $(call maybe-print-list-and-error,$(unused_allowed),$(INTERNAL_PRODUCT) includes redundant artifact path requirement allowed list entries.) \
54 ) \
55)
56$(PRODUCT_OUT)/offending_artifacts.txt:
57 rm -f $@
58 $(foreach f,$(sort $(all_offending_files)),echo $(f) >> $@;)