blob: 49bd0f310987cd88ee15b7d094cc13d5ff1a35aa [file] [log] [blame]
Colin Cross16b23492016-01-06 14:41:07 -08001// Copyright 2016 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package cc
16
17import (
18 "fmt"
Colin Cross8ff9ef42017-05-08 13:44:11 -070019 "io"
Colin Cross16b23492016-01-06 14:41:07 -080020 "strings"
21
22 "github.com/google/blueprint"
23
Colin Cross635c3b02016-05-18 15:37:25 -070024 "android/soong/android"
Evgenii Stepanovaf36db12016-08-15 14:18:24 -070025 "android/soong/cc/config"
Colin Cross16b23492016-01-06 14:41:07 -080026)
27
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -070028var (
29 // Any C flags added by sanitizer which libTooling tools may not
30 // understand also need to be added to ClangLibToolingUnknownCflags in
31 // cc/config/clang.go
Vishwath Mohanf3918d32017-02-14 07:59:33 -080032
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -070033 asanCflags = []string{"-fno-omit-frame-pointer"}
34 asanLdflags = []string{"-Wl,-u,__asan_preinit"}
35 asanLibs = []string{"libasan"}
36
37 cfiCflags = []string{"-flto", "-fsanitize-cfi-cross-dso", "-fvisibility=default",
38 "-fsanitize-blacklist=external/compiler-rt/lib/cfi/cfi_blacklist.txt"}
Vishwath Mohanf3918d32017-02-14 07:59:33 -080039 // FIXME: revert the __cfi_check flag when clang is updated to r280031.
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -070040 cfiLdflags = []string{"-flto", "-fsanitize-cfi-cross-dso", "-fsanitize=cfi",
41 "-Wl,-plugin-opt,O1 -Wl,-export-dynamic-symbol=__cfi_check"}
42 cfiArflags = []string{"--plugin ${config.ClangBin}/../lib64/LLVMgold.so"}
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -070043
44 intOverflowCflags = []string{"-fsanitize-blacklist=build/soong/cc/config/integer_overflow_blacklist.txt"}
Dan Willemsencbceaab2016-10-13 16:44:07 -070045)
46
Colin Cross16b23492016-01-06 14:41:07 -080047type sanitizerType int
48
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -070049func boolPtr(v bool) *bool {
50 if v {
51 return &v
52 } else {
53 return nil
54 }
55}
56
Colin Cross16b23492016-01-06 14:41:07 -080057const (
58 asan sanitizerType = iota + 1
59 tsan
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -070060 intOverflow
Colin Cross16b23492016-01-06 14:41:07 -080061)
62
63func (t sanitizerType) String() string {
64 switch t {
65 case asan:
66 return "asan"
67 case tsan:
68 return "tsan"
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -070069 case intOverflow:
70 return "intOverflow"
Colin Cross16b23492016-01-06 14:41:07 -080071 default:
72 panic(fmt.Errorf("unknown sanitizerType %d", t))
73 }
74}
75
76type SanitizeProperties struct {
77 // enable AddressSanitizer, ThreadSanitizer, or UndefinedBehaviorSanitizer
78 Sanitize struct {
79 Never bool `android:"arch_variant"`
80
81 // main sanitizers
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -070082 Address *bool `android:"arch_variant"`
83 Thread *bool `android:"arch_variant"`
Colin Cross16b23492016-01-06 14:41:07 -080084
85 // local sanitizers
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -070086 Undefined *bool `android:"arch_variant"`
87 All_undefined *bool `android:"arch_variant"`
88 Misc_undefined []string `android:"arch_variant"`
89 Coverage *bool `android:"arch_variant"`
90 Safestack *bool `android:"arch_variant"`
91 Cfi *bool `android:"arch_variant"`
92 Integer_overflow *bool `android:"arch_variant"`
Colin Cross16b23492016-01-06 14:41:07 -080093
Evgenii Stepanov1e405e12016-08-16 15:39:54 -070094 // Sanitizers to run in the diagnostic mode (as opposed to the release mode).
95 // Replaces abort() on error with a human-readable error message.
96 // Address and Thread sanitizers always run in diagnostic mode.
97 Diag struct {
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -070098 Undefined *bool `android:"arch_variant"`
99 Cfi *bool `android:"arch_variant"`
100 Integer_overflow *bool `android:"arch_variant"`
101 Misc_undefined []string `android:"arch_variant"`
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700102 }
103
104 // value to pass to -fsanitize-recover=
Colin Cross16b23492016-01-06 14:41:07 -0800105 Recover []string
106
107 // value to pass to -fsanitize-blacklist
108 Blacklist *string
109 } `android:"arch_variant"`
110
111 SanitizerEnabled bool `blueprint:"mutated"`
112 SanitizeDep bool `blueprint:"mutated"`
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700113 InSanitizerDir bool `blueprint:"mutated"`
Colin Cross16b23492016-01-06 14:41:07 -0800114}
115
116type sanitize struct {
117 Properties SanitizeProperties
Colin Cross8ff9ef42017-05-08 13:44:11 -0700118
119 runtimeLibrary string
Colin Cross16b23492016-01-06 14:41:07 -0800120}
121
122func (sanitize *sanitize) props() []interface{} {
123 return []interface{}{&sanitize.Properties}
124}
125
126func (sanitize *sanitize) begin(ctx BaseModuleContext) {
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700127 s := &sanitize.Properties.Sanitize
128
Colin Cross16b23492016-01-06 14:41:07 -0800129 // Don't apply sanitizers to NDK code.
130 if ctx.sdk() {
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700131 s.Never = true
Colin Cross16b23492016-01-06 14:41:07 -0800132 }
133
134 // Never always wins.
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700135 if s.Never {
Colin Cross16b23492016-01-06 14:41:07 -0800136 return
137 }
138
Colin Cross16b23492016-01-06 14:41:07 -0800139 var globalSanitizers []string
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700140 var globalSanitizersDiag []string
141
Colin Cross16b23492016-01-06 14:41:07 -0800142 if ctx.clang() {
143 if ctx.Host() {
144 globalSanitizers = ctx.AConfig().SanitizeHost()
145 } else {
Colin Cross23ae82a2016-11-02 14:34:39 -0700146 arches := ctx.AConfig().SanitizeDeviceArch()
147 if len(arches) == 0 || inList(ctx.Arch().ArchType.Name, arches) {
148 globalSanitizers = ctx.AConfig().SanitizeDevice()
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700149 globalSanitizersDiag = ctx.AConfig().SanitizeDeviceDiag()
Colin Cross23ae82a2016-11-02 14:34:39 -0700150 }
Colin Cross16b23492016-01-06 14:41:07 -0800151 }
152 }
153
Colin Cross16b23492016-01-06 14:41:07 -0800154 if len(globalSanitizers) > 0 {
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000155 var found bool
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700156 if found, globalSanitizers = removeFromList("undefined", globalSanitizers); found && s.All_undefined == nil {
157 s.All_undefined = boolPtr(true)
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000158 }
Colin Cross16b23492016-01-06 14:41:07 -0800159
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700160 if found, globalSanitizers = removeFromList("default-ub", globalSanitizers); found && s.Undefined == nil {
161 s.Undefined = boolPtr(true)
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000162 }
163
Evgenii Stepanov774cb812016-12-28 15:52:54 -0800164 if found, globalSanitizers = removeFromList("address", globalSanitizers); found {
165 if s.Address == nil {
166 s.Address = boolPtr(true)
167 } else if *s.Address == false {
168 // Coverage w/o address is an error. If globalSanitizers includes both, and the module
169 // disables address, then disable coverage as well.
170 _, globalSanitizers = removeFromList("coverage", globalSanitizers)
171 }
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000172 }
173
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700174 if found, globalSanitizers = removeFromList("thread", globalSanitizers); found && s.Thread == nil {
175 s.Thread = boolPtr(true)
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000176 }
177
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700178 if found, globalSanitizers = removeFromList("coverage", globalSanitizers); found && s.Coverage == nil {
179 s.Coverage = boolPtr(true)
180 }
181
182 if found, globalSanitizers = removeFromList("safe-stack", globalSanitizers); found && s.Safestack == nil {
183 s.Safestack = boolPtr(true)
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000184 }
185
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700186 if found, globalSanitizers = removeFromList("cfi", globalSanitizers); found && s.Cfi == nil {
187 s.Cfi = boolPtr(true)
188 }
189
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700190 if found, globalSanitizers = removeFromList("integer_overflow", globalSanitizers); found && s.Integer_overflow == nil {
191 s.Integer_overflow = boolPtr(true)
192 }
193
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000194 if len(globalSanitizers) > 0 {
195 ctx.ModuleErrorf("unknown global sanitizer option %s", globalSanitizers[0])
196 }
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700197
198 if found, globalSanitizersDiag = removeFromList("integer_overflow", globalSanitizersDiag); found &&
199 s.Diag.Integer_overflow == nil && Bool(s.Integer_overflow) {
200 s.Diag.Integer_overflow = boolPtr(true)
201 }
202
203 if len(globalSanitizersDiag) > 0 {
204 ctx.ModuleErrorf("unknown global sanitizer diagnostics option %s", globalSanitizersDiag[0])
205 }
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700206 }
Colin Cross3c344ef2016-07-18 15:44:56 -0700207
Evgenii Stepanova83fdac2017-01-31 18:37:30 -0800208 // CFI needs gold linker, and mips toolchain does not have one.
209 if !ctx.AConfig().EnableCFI() || ctx.Arch().ArchType == android.Mips || ctx.Arch().ArchType == android.Mips64 {
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800210 s.Cfi = nil
211 s.Diag.Cfi = nil
212 }
213
Vishwath Mohan6d67e6e2017-02-07 20:31:41 -0800214 // Also disable CFI for arm32 until b/35157333 is fixed.
215 if ctx.Arch().ArchType == android.Arm {
216 s.Cfi = nil
217 s.Diag.Cfi = nil
218 }
219
Vishwath Mohan8f4fdd82017-04-20 07:42:52 -0700220 // Also disable CFI if ASAN is enabled.
221 if Bool(s.Address) {
222 s.Cfi = nil
223 s.Diag.Cfi = nil
224 }
225
Colin Cross3c344ef2016-07-18 15:44:56 -0700226 if ctx.staticBinary() {
227 s.Address = nil
Colin Cross91169fe2016-08-11 15:54:20 -0700228 s.Coverage = nil
Colin Cross3c344ef2016-07-18 15:44:56 -0700229 s.Thread = nil
Colin Cross16b23492016-01-06 14:41:07 -0800230 }
231
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700232 if Bool(s.All_undefined) {
233 s.Undefined = nil
234 }
235
Evgenii Stepanov0a8a0d02016-05-12 13:54:53 -0700236 if !ctx.toolchain().Is64Bit() {
237 // TSAN and SafeStack are not supported on 32-bit architectures
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700238 s.Thread = nil
239 s.Safestack = nil
Colin Cross16b23492016-01-06 14:41:07 -0800240 // TODO(ccross): error for compile_multilib = "32"?
241 }
242
Evgenii Stepanov76cee232017-01-27 15:44:44 -0800243 if ctx.Os() != android.Windows && (Bool(s.All_undefined) || Bool(s.Undefined) || Bool(s.Address) || Bool(s.Thread) ||
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700244 Bool(s.Coverage) || Bool(s.Safestack) || Bool(s.Cfi) || Bool(s.Integer_overflow) || len(s.Misc_undefined) > 0) {
Colin Cross3c344ef2016-07-18 15:44:56 -0700245 sanitize.Properties.SanitizerEnabled = true
246 }
247
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700248 if Bool(s.Coverage) {
249 if !Bool(s.Address) {
Colin Cross16b23492016-01-06 14:41:07 -0800250 ctx.ModuleErrorf(`Use of "coverage" also requires "address"`)
251 }
252 }
253}
254
255func (sanitize *sanitize) deps(ctx BaseModuleContext, deps Deps) Deps {
256 if !sanitize.Properties.SanitizerEnabled { // || c.static() {
257 return deps
258 }
259
260 if ctx.Device() {
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700261 if Bool(sanitize.Properties.Sanitize.Address) {
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700262 deps.StaticLibs = append(deps.StaticLibs, asanLibs...)
Colin Cross16b23492016-01-06 14:41:07 -0800263 }
Colin Cross263abbd2016-07-15 13:10:48 -0700264 if Bool(sanitize.Properties.Sanitize.Address) || Bool(sanitize.Properties.Sanitize.Thread) {
265 deps.SharedLibs = append(deps.SharedLibs, "libdl")
266 }
Colin Cross16b23492016-01-06 14:41:07 -0800267 }
268
269 return deps
270}
271
272func (sanitize *sanitize) flags(ctx ModuleContext, flags Flags) Flags {
273 if !sanitize.Properties.SanitizerEnabled {
274 return flags
275 }
276
277 if !ctx.clang() {
278 ctx.ModuleErrorf("Use of sanitizers requires clang")
279 }
280
281 var sanitizers []string
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700282 var diagSanitizers []string
Colin Cross16b23492016-01-06 14:41:07 -0800283
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700284 if Bool(sanitize.Properties.Sanitize.All_undefined) {
Colin Cross16b23492016-01-06 14:41:07 -0800285 sanitizers = append(sanitizers, "undefined")
286 if ctx.Device() {
287 ctx.ModuleErrorf("ubsan is not yet supported on the device")
288 }
289 } else {
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700290 if Bool(sanitize.Properties.Sanitize.Undefined) {
Colin Cross16b23492016-01-06 14:41:07 -0800291 sanitizers = append(sanitizers,
292 "bool",
293 "integer-divide-by-zero",
294 "return",
295 "returns-nonnull-attribute",
296 "shift-exponent",
297 "unreachable",
298 "vla-bound",
299 // TODO(danalbert): The following checks currently have compiler performance issues.
300 //"alignment",
301 //"bounds",
302 //"enum",
303 //"float-cast-overflow",
304 //"float-divide-by-zero",
305 //"nonnull-attribute",
306 //"null",
307 //"shift-base",
308 //"signed-integer-overflow",
309 // TODO(danalbert): Fix UB in libc++'s __tree so we can turn this on.
310 // https://llvm.org/PR19302
311 // http://reviews.llvm.org/D6974
312 // "object-size",
313 )
314 }
315 sanitizers = append(sanitizers, sanitize.Properties.Sanitize.Misc_undefined...)
316 }
317
Ivan Lozano651275b2017-06-13 10:24:34 -0700318 if Bool(sanitize.Properties.Sanitize.Diag.Undefined) {
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700319 diagSanitizers = append(diagSanitizers, "undefined")
320 }
321
Ivan Lozano651275b2017-06-13 10:24:34 -0700322 diagSanitizers = append(diagSanitizers, sanitize.Properties.Sanitize.Diag.Misc_undefined...)
323
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700324 if Bool(sanitize.Properties.Sanitize.Address) {
Colin Cross635c3b02016-05-18 15:37:25 -0700325 if ctx.Arch().ArchType == android.Arm {
Colin Cross16b23492016-01-06 14:41:07 -0800326 // Frame pointer based unwinder in ASan requires ARM frame setup.
327 // TODO: put in flags?
328 flags.RequiredInstructionSet = "arm"
329 }
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700330 flags.CFlags = append(flags.CFlags, asanCflags...)
331 flags.LdFlags = append(flags.LdFlags, asanLdflags...)
Colin Cross16b23492016-01-06 14:41:07 -0800332
Colin Cross16b23492016-01-06 14:41:07 -0800333 if ctx.Host() {
334 // -nodefaultlibs (provided with libc++) prevents the driver from linking
335 // libraries needed with -fsanitize=address. http://b/18650275 (WAI)
336 flags.LdFlags = append(flags.LdFlags, "-lm", "-lpthread")
337 flags.LdFlags = append(flags.LdFlags, "-Wl,--no-as-needed")
338 } else {
339 flags.CFlags = append(flags.CFlags, "-mllvm", "-asan-globals=0")
340 flags.DynamicLinker = "/system/bin/linker_asan"
341 if flags.Toolchain.Is64Bit() {
342 flags.DynamicLinker += "64"
343 }
344 }
345 sanitizers = append(sanitizers, "address")
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700346 diagSanitizers = append(diagSanitizers, "address")
Colin Cross16b23492016-01-06 14:41:07 -0800347 }
348
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700349 if Bool(sanitize.Properties.Sanitize.Coverage) {
Dan Austin8241abb2017-06-28 15:29:09 -0700350 flags.CFlags = append(flags.CFlags, "-fsanitize-coverage=trace-pc-guard")
Colin Cross16b23492016-01-06 14:41:07 -0800351 }
352
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700353 if Bool(sanitize.Properties.Sanitize.Safestack) {
Evgenii Stepanov0a8a0d02016-05-12 13:54:53 -0700354 sanitizers = append(sanitizers, "safe-stack")
355 }
356
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700357 if Bool(sanitize.Properties.Sanitize.Cfi) {
Evgenii Stepanov7ebf9fa2017-01-20 14:13:06 -0800358 if ctx.Arch().ArchType == android.Arm {
359 // __cfi_check needs to be built as Thumb (see the code in linker_cfi.cpp). LLVM is not set up
360 // to do this on a function basis, so force Thumb on the entire module.
361 flags.RequiredInstructionSet = "thumb"
Evgenii Stepanova83fdac2017-01-31 18:37:30 -0800362 // Workaround for b/33678192. CFI jumptables need Thumb2 codegen. Revert when
363 // Clang is updated past r290384.
364 flags.LdFlags = append(flags.LdFlags, "-march=armv7-a")
Evgenii Stepanov7ebf9fa2017-01-20 14:13:06 -0800365 }
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700366 sanitizers = append(sanitizers, "cfi")
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700367 flags.CFlags = append(flags.CFlags, cfiCflags...)
368 flags.LdFlags = append(flags.LdFlags, cfiLdflags...)
369 flags.ArFlags = append(flags.ArFlags, cfiArflags...)
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700370 if Bool(sanitize.Properties.Sanitize.Diag.Cfi) {
371 diagSanitizers = append(diagSanitizers, "cfi")
372 }
373 }
374
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700375 if Bool(sanitize.Properties.Sanitize.Integer_overflow) {
376 if !ctx.static() {
377 sanitizers = append(sanitizers, "unsigned-integer-overflow")
378 sanitizers = append(sanitizers, "signed-integer-overflow")
379 flags.CFlags = append(flags.CFlags, intOverflowCflags...)
380 if Bool(sanitize.Properties.Sanitize.Diag.Integer_overflow) {
381 diagSanitizers = append(diagSanitizers, "unsigned-integer-overflow")
382 diagSanitizers = append(diagSanitizers, "signed-integer-overflow")
383 }
384 }
385 }
386
Colin Cross16b23492016-01-06 14:41:07 -0800387 if len(sanitizers) > 0 {
388 sanitizeArg := "-fsanitize=" + strings.Join(sanitizers, ",")
389 flags.CFlags = append(flags.CFlags, sanitizeArg)
390 if ctx.Host() {
391 flags.CFlags = append(flags.CFlags, "-fno-sanitize-recover=all")
392 flags.LdFlags = append(flags.LdFlags, sanitizeArg)
Evgenii Stepanovc6482d62017-06-07 15:46:40 -0700393 if ctx.Os() == android.Linux {
394 flags.LdFlags = append(flags.LdFlags, "-lrt")
395 }
396 flags.LdFlags = append(flags.LdFlags, "-ldl")
Evgenii Stepanov76cee232017-01-27 15:44:44 -0800397 // Host sanitizers only link symbols in the final executable, so
398 // there will always be undefined symbols in intermediate libraries.
399 _, flags.LdFlags = removeFromList("-Wl,--no-undefined", flags.LdFlags)
Colin Cross16b23492016-01-06 14:41:07 -0800400 } else {
Colin Cross263abbd2016-07-15 13:10:48 -0700401 flags.CFlags = append(flags.CFlags, "-fsanitize-trap=all", "-ftrap-function=abort")
Colin Cross16b23492016-01-06 14:41:07 -0800402 }
403 }
404
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700405 if len(diagSanitizers) > 0 {
406 flags.CFlags = append(flags.CFlags, "-fno-sanitize-trap="+strings.Join(diagSanitizers, ","))
407 }
408 // FIXME: enable RTTI if diag + (cfi or vptr)
409
Andreas Gampe97071162017-05-08 13:15:23 -0700410 if sanitize.Properties.Sanitize.Recover != nil {
411 flags.CFlags = append(flags.CFlags, "-fsanitize-recover="+
412 strings.Join(sanitize.Properties.Sanitize.Recover, ","))
413 }
414
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700415 // Link a runtime library if needed.
416 runtimeLibrary := ""
417 if Bool(sanitize.Properties.Sanitize.Address) {
418 runtimeLibrary = config.AddressSanitizerRuntimeLibrary(ctx.toolchain())
419 } else if len(diagSanitizers) > 0 {
420 runtimeLibrary = config.UndefinedBehaviorSanitizerRuntimeLibrary(ctx.toolchain())
421 }
422
423 // ASan runtime library must be the first in the link order.
424 if runtimeLibrary != "" {
Colin Cross8ff9ef42017-05-08 13:44:11 -0700425 flags.libFlags = append([]string{
426 "${config.ClangAsanLibDir}/" + runtimeLibrary + ctx.toolchain().ShlibSuffix(),
427 }, flags.libFlags...)
428 sanitize.runtimeLibrary = runtimeLibrary
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700429 }
430
Colin Cross635c3b02016-05-18 15:37:25 -0700431 blacklist := android.OptionalPathForModuleSrc(ctx, sanitize.Properties.Sanitize.Blacklist)
Colin Cross16b23492016-01-06 14:41:07 -0800432 if blacklist.Valid() {
433 flags.CFlags = append(flags.CFlags, "-fsanitize-blacklist="+blacklist.String())
434 flags.CFlagsDeps = append(flags.CFlagsDeps, blacklist.Path())
435 }
436
437 return flags
438}
439
Colin Cross8ff9ef42017-05-08 13:44:11 -0700440func (sanitize *sanitize) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
441 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
442 if sanitize.runtimeLibrary != "" {
443 fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES += "+sanitize.runtimeLibrary)
444 }
445
446 return nil
447 })
448}
449
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700450func (sanitize *sanitize) inSanitizerDir() bool {
451 return sanitize.Properties.InSanitizerDir
Colin Cross30d5f512016-05-03 18:02:42 -0700452}
453
Colin Cross16b23492016-01-06 14:41:07 -0800454func (sanitize *sanitize) Sanitizer(t sanitizerType) bool {
455 if sanitize == nil {
456 return false
457 }
458
459 switch t {
460 case asan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700461 return Bool(sanitize.Properties.Sanitize.Address)
Colin Cross16b23492016-01-06 14:41:07 -0800462 case tsan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700463 return Bool(sanitize.Properties.Sanitize.Thread)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700464 case intOverflow:
465 return Bool(sanitize.Properties.Sanitize.Integer_overflow)
Colin Cross16b23492016-01-06 14:41:07 -0800466 default:
467 panic(fmt.Errorf("unknown sanitizerType %d", t))
468 }
469}
470
471func (sanitize *sanitize) SetSanitizer(t sanitizerType, b bool) {
472 switch t {
473 case asan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700474 sanitize.Properties.Sanitize.Address = boolPtr(b)
Colin Cross91169fe2016-08-11 15:54:20 -0700475 if !b {
476 sanitize.Properties.Sanitize.Coverage = nil
477 }
Colin Cross16b23492016-01-06 14:41:07 -0800478 case tsan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700479 sanitize.Properties.Sanitize.Thread = boolPtr(b)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700480 case intOverflow:
481 sanitize.Properties.Sanitize.Integer_overflow = boolPtr(b)
Colin Cross16b23492016-01-06 14:41:07 -0800482 default:
483 panic(fmt.Errorf("unknown sanitizerType %d", t))
484 }
485 if b {
486 sanitize.Properties.SanitizerEnabled = true
487 }
488}
489
490// Propagate asan requirements down from binaries
Colin Cross635c3b02016-05-18 15:37:25 -0700491func sanitizerDepsMutator(t sanitizerType) func(android.TopDownMutatorContext) {
492 return func(mctx android.TopDownMutatorContext) {
Colin Cross16b23492016-01-06 14:41:07 -0800493 if c, ok := mctx.Module().(*Module); ok && c.sanitize.Sanitizer(t) {
494 mctx.VisitDepsDepthFirst(func(module blueprint.Module) {
495 if d, ok := mctx.Module().(*Module); ok && c.sanitize != nil &&
496 !c.sanitize.Properties.Sanitize.Never {
497 d.sanitize.Properties.SanitizeDep = true
498 }
499 })
500 }
501 }
502}
503
504// Create asan variants for modules that need them
Colin Cross635c3b02016-05-18 15:37:25 -0700505func sanitizerMutator(t sanitizerType) func(android.BottomUpMutatorContext) {
506 return func(mctx android.BottomUpMutatorContext) {
Colin Cross16b23492016-01-06 14:41:07 -0800507 if c, ok := mctx.Module().(*Module); ok && c.sanitize != nil {
Colin Crossb916a382016-07-29 17:28:03 -0700508 if c.isDependencyRoot() && c.sanitize.Sanitizer(t) {
Colin Cross30d5f512016-05-03 18:02:42 -0700509 modules := mctx.CreateVariations(t.String())
510 modules[0].(*Module).sanitize.SetSanitizer(t, true)
Colin Cross16b23492016-01-06 14:41:07 -0800511 } else if c.sanitize.Properties.SanitizeDep {
Colin Crossb0f28952016-09-19 16:46:53 -0700512 modules := mctx.CreateVariations("", t.String())
513 modules[0].(*Module).sanitize.SetSanitizer(t, false)
514 modules[1].(*Module).sanitize.SetSanitizer(t, true)
515 modules[0].(*Module).sanitize.Properties.SanitizeDep = false
516 modules[1].(*Module).sanitize.Properties.SanitizeDep = false
517 if mctx.Device() {
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700518 modules[1].(*Module).sanitize.Properties.InSanitizerDir = true
Colin Crossb0f28952016-09-19 16:46:53 -0700519 } else {
520 modules[0].(*Module).Properties.PreventInstall = true
521 }
522 if mctx.AConfig().EmbeddedInMake() {
523 modules[0].(*Module).Properties.HideFromMake = true
Colin Cross30d5f512016-05-03 18:02:42 -0700524 }
Colin Cross16b23492016-01-06 14:41:07 -0800525 }
526 c.sanitize.Properties.SanitizeDep = false
527 }
528 }
529}