Merge "Also restrict NDK linking by static/shared STL." am: 0b4bf51e49

am: 0c1295691a

Change-Id: I73594ca8c7c6e50707fecd21768c3027ac9d8281
This commit is contained in:
Dan Albert 2018-01-05 23:19:04 +00:00 committed by android-build-merger
commit c1b8713a4d
3 changed files with 40 additions and 11 deletions

View File

@ -6,44 +6,62 @@
# LOCAL_SDK_VERSION # LOCAL_SDK_VERSION
# Output variables: # Output variables:
# my_ndk_stl_family: Family of the NDK STL. # my_ndk_stl_family: Family of the NDK STL.
# my_ndk_stl_link_type: STL link type, static or shared.
# my_allowed_ndk_types: Types of NDK modules that may be linked. # my_allowed_ndk_types: Types of NDK modules that may be linked.
# my_warn_ndk_types: Types of NDK modules that shouldn't be linked, but are. # my_warn_ndk_types: Types of NDK modules that shouldn't be linked, but are.
my_allowed_ndk_types := my_allowed_ndk_types :=
my_warn_ndk_types := my_warn_ndk_types :=
my_ndk_stl_family := my_ndk_stl_family :=
my_ndk_stl_link_type :=
ifdef LOCAL_SDK_VERSION ifdef LOCAL_SDK_VERSION
ifeq ($(LOCAL_NDK_STL_VARIANT),) ifeq ($(LOCAL_NDK_STL_VARIANT),)
my_ndk_stl_family := system my_ndk_stl_family := system
my_ndk_stl_link_type := shared
else ifeq ($(LOCAL_NDK_STL_VARIANT),system) else ifeq ($(LOCAL_NDK_STL_VARIANT),system)
my_ndk_stl_family := system my_ndk_stl_family := system
my_ndk_stl_link_type := shared
else ifeq ($(LOCAL_NDK_STL_VARIANT),c++_shared) else ifeq ($(LOCAL_NDK_STL_VARIANT),c++_shared)
my_ndk_stl_family := libc++ my_ndk_stl_family := libc++
my_ndk_stl_link_type := shared
else ifeq ($(LOCAL_NDK_STL_VARIANT),c++_static) else ifeq ($(LOCAL_NDK_STL_VARIANT),c++_static)
my_ndk_stl_family := libc++ my_ndk_stl_family := libc++
my_ndk_stl_link_type := static
else ifeq ($(LOCAL_NDK_STL_VARIANT),gnustl_static) else ifeq ($(LOCAL_NDK_STL_VARIANT),gnustl_static)
my_ndk_stl_family := gnustl my_ndk_stl_family := gnustl
my_ndk_stl_link_type := static
else ifeq ($(LOCAL_NDK_STL_VARIANT),stlport_shared) else ifeq ($(LOCAL_NDK_STL_VARIANT),stlport_shared)
my_ndk_stl_family := stlport my_ndk_stl_family := stlport
my_ndk_stl_link_type := shared
else ifeq ($(LOCAL_NDK_STL_VARIANT),stlport_static) else ifeq ($(LOCAL_NDK_STL_VARIANT),stlport_static)
my_ndk_stl_family := stlport my_ndk_stl_family := stlport
my_ndk_stl_link_type := static
else ifeq ($(LOCAL_NDK_STL_VARIANT),none) else ifeq ($(LOCAL_NDK_STL_VARIANT),none)
my_ndk_stl_family := none my_ndk_stl_family := none
my_ndk_stl_link_type := none
else else
$(call pretty-error,invalid LOCAL_NDK_STL_VARIANT: $(LOCAL_NDK_STL_VARIANT)) $(call pretty-error,invalid LOCAL_NDK_STL_VARIANT: $(LOCAL_NDK_STL_VARIANT))
endif endif
ifeq ($(LOCAL_MODULE_CLASS),STATIC_LIBRARIES)
# The "none" link type indicates that nothing is actually linked. Since
# this is a static library, it's still up to the final use of the
# library whether a static or shared STL should be used.
my_ndk_stl_link_type := none
endif
# The system STL is only the C++ ABI layer, so it's compatible with any STL. # The system STL is only the C++ ABI layer, so it's compatible with any STL.
my_allowed_ndk_types += native:ndk:system my_allowed_ndk_types += native:ndk:system:shared
my_allowed_ndk_types += native:ndk:system:none
# Libaries that don't use the STL can be linked to anything. # Libaries that don't use the STL can be linked to anything.
my_allowed_ndk_types += native:ndk:none my_allowed_ndk_types += native:ndk:none:none
# And it's okay to link your own STL type. Strictly speaking there are more # And it's always okay to link a static library that uses your own STL type.
# restrictions depending on static vs shared STL, but that will be a follow # Since nothing was actually linked for the static library, it is up to the
# up patch. # first linked library in the dependency chain which gets used.
my_allowed_ndk_types += native:ndk:$(my_ndk_stl_family) my_allowed_ndk_types += native:ndk:$(my_ndk_stl_family):none
ifeq ($(LOCAL_MODULE_CLASS),APPS) ifeq ($(LOCAL_MODULE_CLASS),APPS)
# For an app package, it's actually okay to depend on any set of STLs. # For an app package, it's actually okay to depend on any set of STLs.
@ -51,12 +69,23 @@ ifdef LOCAL_SDK_VERSION
# already been checked for consistency, and if they don't they'll be # already been checked for consistency, and if they don't they'll be
# kept isolated by RTLD_LOCAL anyway. # kept isolated by RTLD_LOCAL anyway.
my_allowed_ndk_types += \ my_allowed_ndk_types += \
native:ndk:gnustl native:ndk:libc++ native:ndk:stlport native:ndk:gnustl:static \
native:ndk:libc++:shared native:ndk:libc++:static \
native:ndk:stlport:shared native:ndk:stlport:static \
# The "none" link type that used by static libraries is intentionally
# omitted here. We should only be dealing with shared libraries in
# LOCAL_JNI_SHARED_LIBRARIES.
else ifeq ($(my_ndk_stl_link_type),shared)
# Modules linked to a shared STL can only use another shared STL.
my_allowed_ndk_types += native:ndk:$(my_ndk_stl_family):shared
endif endif
# Else we are a non-static library that uses a static STL, and are
# incompatible with all other shared libraries that use an STL.
else else
my_allowed_ndk_types := native:ndk:none native:ndk:system my_allowed_ndk_types := native:ndk:none:none native:ndk:system:shared
ifeq ($(LOCAL_MODULE_CLASS),APPS) ifeq ($(LOCAL_MODULE_CLASS),APPS)
# CTS is bad and it should feel bad: http://b/13249737 # CTS is bad and it should feel bad: http://b/13249737
my_warn_ndk_types += native:ndk:libc++ my_warn_ndk_types += native:ndk:libc++:static
endif endif
endif endif

View File

@ -1407,7 +1407,7 @@ endif
include $(BUILD_SYSTEM)/allowed_ndk_types.mk include $(BUILD_SYSTEM)/allowed_ndk_types.mk
ifdef LOCAL_SDK_VERSION ifdef LOCAL_SDK_VERSION
my_link_type := native:ndk:$(my_ndk_stl_family) my_link_type := native:ndk:$(my_ndk_stl_family):$(my_ndk_stl_link_type)
my_warn_types := $(my_warn_ndk_types) my_warn_types := $(my_warn_ndk_types)
my_allowed_types := $(my_allowed_ndk_types) my_allowed_types := $(my_allowed_ndk_types)
else ifdef LOCAL_USE_VNDK else ifdef LOCAL_USE_VNDK

View File

@ -176,7 +176,7 @@ export_cflags :=
include $(BUILD_SYSTEM)/allowed_ndk_types.mk include $(BUILD_SYSTEM)/allowed_ndk_types.mk
ifdef LOCAL_SDK_VERSION ifdef LOCAL_SDK_VERSION
my_link_type := native:ndk:$(my_ndk_stl_family) my_link_type := native:ndk:$(my_ndk_stl_family):$(my_ndk_stl_link_type)
else ifdef LOCAL_USE_VNDK else ifdef LOCAL_USE_VNDK
_name := $(patsubst %.vendor,%,$(LOCAL_MODULE)) _name := $(patsubst %.vendor,%,$(LOCAL_MODULE))
ifneq ($(filter $(_name),$(VNDK_CORE_LIBRARIES) $(VNDK_SAMEPROCESS_LIBRARIES) $(LLNDK_LIBRARIES)),) ifneq ($(filter $(_name),$(VNDK_CORE_LIBRARIES) $(VNDK_SAMEPROCESS_LIBRARIES) $(LLNDK_LIBRARIES)),)