Dan Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 1 | ############################################## |
| 2 | ## Perform configuration steps for sanitizers. |
| 3 | ############################################## |
| 4 | |
Dan Albert | 27ccb75 | 2015-04-16 16:21:02 -0700 | [diff] [blame] | 5 | my_sanitize := $(strip $(LOCAL_SANITIZE)) |
Vishwath Mohan | 8dcfdce | 2017-01-18 17:50:29 -0800 | [diff] [blame] | 6 | my_sanitize_diag := $(strip $(LOCAL_SANITIZE_DIAG)) |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 7 | |
Dan Albert | 4c40141 | 2015-08-19 20:13:33 -0700 | [diff] [blame] | 8 | # SANITIZE_HOST is only in effect if the module is already using clang (host |
| 9 | # modules that haven't set `LOCAL_CLANG := false` and device modules that |
| 10 | # have set `LOCAL_CLANG := true`. |
| 11 | my_global_sanitize := |
| 12 | ifeq ($(my_clang),true) |
| 13 | ifdef LOCAL_IS_HOST_MODULE |
| 14 | my_global_sanitize := $(strip $(SANITIZE_HOST)) |
| 15 | |
| 16 | # SANITIZE_HOST=true is a deprecated way to say SANITIZE_HOST=address. |
| 17 | my_global_sanitize := $(subst true,address,$(my_global_sanitize)) |
| 18 | else |
| 19 | my_global_sanitize := $(strip $(SANITIZE_TARGET)) |
| 20 | endif |
| 21 | endif |
| 22 | |
Dan Albert | 4c40141 | 2015-08-19 20:13:33 -0700 | [diff] [blame] | 23 | ifneq ($(my_global_sanitize),) |
Evgenii Stepanov | 71faa19 | 2016-05-19 17:45:21 -0700 | [diff] [blame] | 24 | my_sanitize := $(my_global_sanitize) $(my_sanitize) |
Dan Albert | 4c40141 | 2015-08-19 20:13:33 -0700 | [diff] [blame] | 25 | endif |
| 26 | |
Andreas Gampe | 6b30d77 | 2016-06-27 15:15:31 -0700 | [diff] [blame] | 27 | # The sanitizer specified in the product configuration wins over the previous. |
| 28 | ifneq ($(SANITIZER.$(TARGET_PRODUCT).$(LOCAL_MODULE).CONFIG),) |
| 29 | my_sanitize := $(SANITIZER.$(TARGET_PRODUCT).$(LOCAL_MODULE).CONFIG) |
| 30 | ifeq ($(my_sanitize),never) |
| 31 | my_sanitize := |
| 32 | endif |
| 33 | endif |
| 34 | |
Colin Cross | 2361842 | 2016-11-02 15:05:21 -0700 | [diff] [blame] | 35 | ifndef LOCAL_IS_HOST_MODULE |
| 36 | # Add a filter point for 32-bit vs 64-bit sanitization (to lighten the burden) |
| 37 | SANITIZE_TARGET_ARCH ?= $(TARGET_ARCH) $(TARGET_2ND_ARCH) |
| 38 | ifeq ($(filter $(SANITIZE_TARGET_ARCH),$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)),) |
| 39 | my_sanitize := |
| 40 | endif |
Andreas Gampe | cd25740 | 2016-06-20 17:36:49 -0700 | [diff] [blame] | 41 | endif |
| 42 | |
Andreas Gampe | 3d3b0c9 | 2016-06-20 17:46:29 -0700 | [diff] [blame] | 43 | # Add a filter point based on module owner (to lighten the burden). The format is a space- or |
| 44 | # colon-separated list of owner names. |
| 45 | ifneq (,$(SANITIZE_NEVER_BY_OWNER)) |
| 46 | ifneq (,$(LOCAL_MODULE_OWNER)) |
| 47 | ifneq (,$(filter $(LOCAL_MODULE_OWNER),$(subst :, ,$(SANITIZE_NEVER_BY_OWNER)))) |
| 48 | $(warning Not sanitizing $(LOCAL_MODULE) based on module owner.) |
| 49 | my_sanitize := |
| 50 | endif |
| 51 | endif |
| 52 | endif |
| 53 | |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 54 | # Don't apply sanitizers to NDK code. |
| 55 | ifdef LOCAL_SDK_VERSION |
Dan Albert | 4c40141 | 2015-08-19 20:13:33 -0700 | [diff] [blame] | 56 | my_sanitize := |
Dan Willemsen | f761c0f | 2016-06-28 16:47:43 -0700 | [diff] [blame] | 57 | my_global_sanitize := |
Dan Albert | 27ccb75 | 2015-04-16 16:21:02 -0700 | [diff] [blame] | 58 | endif |
| 59 | |
Dan Albert | 4c40141 | 2015-08-19 20:13:33 -0700 | [diff] [blame] | 60 | # Never always wins. |
| 61 | ifeq ($(LOCAL_SANITIZE),never) |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 62 | my_sanitize := |
| 63 | endif |
| 64 | |
Vishwath Mohan | 8dcfdce | 2017-01-18 17:50:29 -0800 | [diff] [blame] | 65 | # If CFI is disabled globally, remove it from my_sanitize. |
| 66 | ifeq ($(strip $(ENABLE_CFI)),) |
| 67 | my_sanitize := $(filter-out cfi,$(my_sanitize)) |
| 68 | my_sanitize_diag := $(filter-out cfi,$(my_sanitize_diag)) |
| 69 | endif |
| 70 | |
Vishwath Mohan | a204606 | 2017-02-07 20:28:07 -0800 | [diff] [blame] | 71 | # Disable CFI for arm32 (b/35157333). |
| 72 | ifneq ($(filter arm,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)),) |
| 73 | my_sanitize := $(filter-out cfi,$(my_sanitize)) |
| 74 | my_sanitize_diag := $(filter-out cfi,$(my_sanitize_diag)) |
| 75 | endif |
| 76 | |
Evgenii Stepanov | 8c50e3c | 2017-01-31 17:08:33 -0800 | [diff] [blame] | 77 | # CFI needs gold linker, and mips toolchain does not have one. |
| 78 | ifneq ($(filter mips mips64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)),) |
| 79 | my_sanitize := $(filter-out cfi,$(my_sanitize)) |
| 80 | my_sanitize_diag := $(filter-out cfi,$(my_sanitize_diag)) |
| 81 | endif |
| 82 | |
Evgenii Stepanov | 4282366 | 2016-05-12 13:07:17 -0700 | [diff] [blame] | 83 | my_nosanitize = $(strip $(LOCAL_NOSANITIZE)) |
| 84 | ifneq ($(my_nosanitize),) |
| 85 | my_sanitize := $(filter-out $(my_nosanitize),$(my_sanitize)) |
| 86 | endif |
| 87 | |
Dan Albert | a6311b7 | 2015-07-30 10:17:33 -0700 | [diff] [blame] | 88 | # TSAN is not supported on 32-bit architectures. For non-multilib cases, make |
| 89 | # its use an error. For multilib cases, don't use it for the 32-bit case. |
| 90 | ifneq ($(filter thread,$(my_sanitize)),) |
| 91 | ifeq ($(my_32_64_bit_suffix),32) |
| 92 | ifeq ($(my_module_multilib),both) |
| 93 | my_sanitize := $(filter-out thread,$(my_sanitize)) |
| 94 | else |
| 95 | $(error $(LOCAL_PATH): $(LOCAL_MODULE): TSAN cannot be used for 32-bit modules.) |
| 96 | endif |
| 97 | endif |
| 98 | endif |
| 99 | |
Evgenii Stepanov | 7dcb8b8 | 2016-05-06 18:15:57 -0700 | [diff] [blame] | 100 | ifneq ($(filter safe-stack,$(my_sanitize)),) |
| 101 | ifeq ($(my_32_64_bit_suffix),32) |
| 102 | my_sanitize := $(filter-out safe-stack,$(my_sanitize)) |
| 103 | endif |
| 104 | endif |
| 105 | |
Evgenii Stepanov | 5adfcb1 | 2015-06-25 16:38:25 -0700 | [diff] [blame] | 106 | # Undefined symbols can occur if a non-sanitized library links |
| 107 | # sanitized static libraries. That's OK, because the executable |
| 108 | # always depends on the ASan runtime library, which defines these |
| 109 | # symbols. |
Evgenii Stepanov | 912b51f | 2016-05-19 17:49:51 -0700 | [diff] [blame] | 110 | ifneq ($(filter address thread,$(strip $(SANITIZE_TARGET))),) |
Evgenii Stepanov | 5adfcb1 | 2015-06-25 16:38:25 -0700 | [diff] [blame] | 111 | ifndef LOCAL_IS_HOST_MODULE |
| 112 | ifeq ($(LOCAL_MODULE_CLASS),SHARED_LIBRARIES) |
| 113 | ifeq ($(my_sanitize),) |
| 114 | my_allow_undefined_symbols := true |
| 115 | endif |
| 116 | endif |
| 117 | endif |
| 118 | endif |
| 119 | |
Dan Albert | 94b5791 | 2015-04-17 09:48:33 -0700 | [diff] [blame] | 120 | # Sanitizers can only be used with clang. |
| 121 | ifneq ($(my_clang),true) |
| 122 | ifneq ($(my_sanitize),) |
| 123 | $(error $(LOCAL_PATH): $(LOCAL_MODULE): Use of sanitizers requires LOCAL_CLANG := true) |
| 124 | endif |
| 125 | endif |
| 126 | |
Dan Albert | b5b2ffe | 2015-04-16 18:07:07 -0700 | [diff] [blame] | 127 | ifneq ($(filter default-ub,$(my_sanitize)),) |
| 128 | my_sanitize := $(CLANG_DEFAULT_UB_CHECKS) |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 129 | endif |
| 130 | |
Ivan Krasin | 74b32b8 | 2015-09-18 11:54:43 -0700 | [diff] [blame] | 131 | ifneq ($(filter coverage,$(my_sanitize)),) |
| 132 | ifeq ($(filter address,$(my_sanitize)),) |
| 133 | $(error $(LOCAL_PATH): $(LOCAL_MODULE): Use of 'coverage' also requires 'address') |
| 134 | endif |
| 135 | my_cflags += -fsanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp |
| 136 | my_sanitize := $(filter-out coverage,$(my_sanitize)) |
| 137 | endif |
| 138 | |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 139 | ifneq ($(my_sanitize),) |
Stephen Hines | e8119e9 | 2015-11-09 16:32:11 -0800 | [diff] [blame] | 140 | fsanitize_arg := $(subst $(space),$(comma),$(my_sanitize)) |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 141 | my_cflags += -fsanitize=$(fsanitize_arg) |
| 142 | |
| 143 | ifdef LOCAL_IS_HOST_MODULE |
Dan Albert | abf4bc9 | 2015-06-16 23:27:34 -0700 | [diff] [blame] | 144 | my_cflags += -fno-sanitize-recover=all |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 145 | my_ldflags += -fsanitize=$(fsanitize_arg) |
Dan Albert | 2922411 | 2015-08-13 17:25:10 -0700 | [diff] [blame] | 146 | my_ldlibs += -lrt -ldl |
Dan Albert | abf4bc9 | 2015-06-16 23:27:34 -0700 | [diff] [blame] | 147 | else |
Evgenii Stepanov | 71faa19 | 2016-05-19 17:45:21 -0700 | [diff] [blame] | 148 | my_cflags += -fsanitize-trap=all |
| 149 | my_cflags += -ftrap-function=abort |
Evgenii Stepanov | 55f73e6 | 2016-05-12 13:07:36 -0700 | [diff] [blame] | 150 | ifneq ($(filter address thread,$(my_sanitize)),) |
Evgenii Stepanov | 71faa19 | 2016-05-19 17:45:21 -0700 | [diff] [blame] | 151 | my_cflags += -fno-sanitize-trap=address,thread |
Evgenii Stepanov | 55f73e6 | 2016-05-12 13:07:36 -0700 | [diff] [blame] | 152 | my_shared_libraries += libdl |
| 153 | endif |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 154 | endif |
| 155 | endif |
| 156 | |
Evgenii Stepanov | 202c7a7 | 2016-07-07 10:56:39 -0700 | [diff] [blame] | 157 | ifneq ($(filter cfi,$(my_sanitize)),) |
Evgenii Stepanov | 81bea1b | 2017-01-20 14:12:08 -0800 | [diff] [blame] | 158 | # __cfi_check needs to be built as Thumb (see the code in linker_cfi.cpp). |
| 159 | # LLVM is not set up to do this on a function basis, so force Thumb on the |
| 160 | # entire module. |
| 161 | LOCAL_ARM_MODE := thumb |
Vishwath Mohan | 5b69c06 | 2017-02-14 07:55:37 -0800 | [diff] [blame] | 162 | my_cflags += $(CFI_EXTRA_CFLAGS) |
| 163 | my_ldflags += $(CFI_EXTRA_LDFLAGS) |
Evgenii Stepanov | e1b96f3 | 2017-01-23 16:57:38 -0800 | [diff] [blame] | 164 | my_arflags += --plugin $(LLVM_PREBUILTS_PATH)/../lib64/LLVMgold.so |
Evgenii Stepanov | 8c50e3c | 2017-01-31 17:08:33 -0800 | [diff] [blame] | 165 | # Workaround for b/33678192. CFI jumptables need Thumb2 codegen. Revert when |
| 166 | # Clang is updated past r290384. |
| 167 | ifneq ($(filter arm,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)),) |
| 168 | my_ldflags += -march=armv7-a |
| 169 | endif |
Evgenii Stepanov | 202c7a7 | 2016-07-07 10:56:39 -0700 | [diff] [blame] | 170 | endif |
| 171 | |
Chih-Hung Hsieh | ad741e6 | 2016-03-09 14:54:55 -0800 | [diff] [blame] | 172 | # If local or global modules need ASAN, add linker flags. |
| 173 | ifneq ($(filter address,$(my_global_sanitize) $(my_sanitize)),) |
Dan Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 174 | my_ldflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS) |
| 175 | ifdef LOCAL_IS_HOST_MODULE |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 176 | # -nodefaultlibs (provided with libc++) prevents the driver from linking |
| 177 | # libraries needed with -fsanitize=address. http://b/18650275 (WAI) |
Dan Albert | abf4bc9 | 2015-06-16 23:27:34 -0700 | [diff] [blame] | 178 | my_ldlibs += -lm -lpthread |
Dan Albert | 1f0d530 | 2015-04-28 14:55:50 -0700 | [diff] [blame] | 179 | my_ldflags += -Wl,--no-as-needed |
Dan Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 180 | else |
Chih-Hung Hsieh | ad741e6 | 2016-03-09 14:54:55 -0800 | [diff] [blame] | 181 | # Add asan libraries unless LOCAL_MODULE is the asan library. |
Evgenii Stepanov | f0b15e1 | 2015-04-24 16:34:47 -0700 | [diff] [blame] | 182 | # ASan runtime library must be the first in the link order. |
Chih-Hung Hsieh | ad741e6 | 2016-03-09 14:54:55 -0800 | [diff] [blame] | 183 | ifeq (,$(filter $(LOCAL_MODULE),$($(LOCAL_2ND_ARCH_VAR_PREFIX)ADDRESS_SANITIZER_RUNTIME_LIBRARY))) |
| 184 | my_shared_libraries := $($(LOCAL_2ND_ARCH_VAR_PREFIX)ADDRESS_SANITIZER_RUNTIME_LIBRARY) \ |
| 185 | $(my_shared_libraries) |
| 186 | endif |
| 187 | ifeq (,$(filter $(LOCAL_MODULE),$(ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES))) |
| 188 | my_static_libraries += $(ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES) |
| 189 | endif |
| 190 | |
| 191 | # Do not add unnecessary dependency in shared libraries. |
| 192 | ifeq ($(LOCAL_MODULE_CLASS),SHARED_LIBRARIES) |
| 193 | my_ldflags += -Wl,--as-needed |
| 194 | endif |
Ying Wang | a05e222 | 2015-08-17 16:13:24 -0700 | [diff] [blame] | 195 | |
Colin Cross | d08699e | 2016-07-17 15:28:07 -0700 | [diff] [blame] | 196 | ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES) |
| 197 | ifneq ($(LOCAL_FORCE_STATIC_EXECUTABLE),true) |
| 198 | my_linker := $($(LOCAL_2ND_ARCH_VAR_PREFIX)ADDRESS_SANITIZER_LINKER) |
| 199 | # Make sure linker_asan get installed. |
| 200 | $(LOCAL_INSTALLED_MODULE) : | $(PRODUCT_OUT)$($(LOCAL_2ND_ARCH_VAR_PREFIX)ADDRESS_SANITIZER_LINKER) |
| 201 | endif |
| 202 | endif |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 203 | endif |
| 204 | endif |
| 205 | |
Chih-Hung Hsieh | ad741e6 | 2016-03-09 14:54:55 -0800 | [diff] [blame] | 206 | # If local module needs ASAN, add compiler flags. |
| 207 | ifneq ($(filter address,$(my_sanitize)),) |
| 208 | # Frame pointer based unwinder in ASan requires ARM frame setup. |
| 209 | LOCAL_ARM_MODE := arm |
| 210 | my_cflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_CFLAGS) |
| 211 | ifndef LOCAL_IS_HOST_MODULE |
| 212 | my_cflags += -mllvm -asan-globals=0 |
| 213 | endif |
| 214 | endif |
| 215 | |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 216 | ifneq ($(filter undefined,$(my_sanitize)),) |
Dan Albert | abf4bc9 | 2015-06-16 23:27:34 -0700 | [diff] [blame] | 217 | ifndef LOCAL_IS_HOST_MODULE |
Dan Albert | 08cca28 | 2014-12-11 18:56:26 -0800 | [diff] [blame] | 218 | $(error ubsan is not yet supported on the target) |
Dan Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 219 | endif |
| 220 | endif |
Dan Albert | 4111d48 | 2015-04-16 18:08:44 -0700 | [diff] [blame] | 221 | |
Dan Albert | 9f17655 | 2015-04-28 11:26:45 -0700 | [diff] [blame] | 222 | ifneq ($(strip $(LOCAL_SANITIZE_RECOVER)),) |
| 223 | recover_arg := $(subst $(space),$(comma),$(LOCAL_SANITIZE_RECOVER)), |
Dan Albert | 4111d48 | 2015-04-16 18:08:44 -0700 | [diff] [blame] | 224 | my_cflags += -fsanitize-recover=$(recover_arg) |
| 225 | endif |
Evgenii Stepanov | 202c7a7 | 2016-07-07 10:56:39 -0700 | [diff] [blame] | 226 | |
Vishwath Mohan | 8dcfdce | 2017-01-18 17:50:29 -0800 | [diff] [blame] | 227 | ifneq ($(my_sanitize_diag),) |
| 228 | notrap_arg := $(subst $(space),$(comma),$(my_sanitize_diag)), |
Evgenii Stepanov | 202c7a7 | 2016-07-07 10:56:39 -0700 | [diff] [blame] | 229 | my_cflags += -fno-sanitize-trap=$(notrap_arg) |
| 230 | # Diagnostic requires a runtime library, unless ASan or TSan are also enabled. |
| 231 | ifeq ($(filter address thread,$(my_sanitize)),) |
| 232 | # Does not have to be the first DT_NEEDED unlike ASan. |
| 233 | my_shared_libraries += $($(LOCAL_2ND_ARCH_VAR_PREFIX)UBSAN_RUNTIME_LIBRARY) |
| 234 | endif |
| 235 | endif |