blob: 1fcb32c9c71033a80e8e4c1831a325d70237f4db [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
Jiyong Park27b188b2017-07-18 13:23:39 +0900119 runtimeLibrary string
120 androidMkRuntimeLibrary string
Colin Cross16b23492016-01-06 14:41:07 -0800121}
122
123func (sanitize *sanitize) props() []interface{} {
124 return []interface{}{&sanitize.Properties}
125}
126
127func (sanitize *sanitize) begin(ctx BaseModuleContext) {
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700128 s := &sanitize.Properties.Sanitize
129
Colin Cross16b23492016-01-06 14:41:07 -0800130 // Don't apply sanitizers to NDK code.
131 if ctx.sdk() {
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700132 s.Never = true
Colin Cross16b23492016-01-06 14:41:07 -0800133 }
134
135 // Never always wins.
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700136 if s.Never {
Colin Cross16b23492016-01-06 14:41:07 -0800137 return
138 }
139
Colin Cross16b23492016-01-06 14:41:07 -0800140 var globalSanitizers []string
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700141 var globalSanitizersDiag []string
142
Colin Cross16b23492016-01-06 14:41:07 -0800143 if ctx.clang() {
144 if ctx.Host() {
145 globalSanitizers = ctx.AConfig().SanitizeHost()
146 } else {
Colin Cross23ae82a2016-11-02 14:34:39 -0700147 arches := ctx.AConfig().SanitizeDeviceArch()
148 if len(arches) == 0 || inList(ctx.Arch().ArchType.Name, arches) {
149 globalSanitizers = ctx.AConfig().SanitizeDevice()
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700150 globalSanitizersDiag = ctx.AConfig().SanitizeDeviceDiag()
Colin Cross23ae82a2016-11-02 14:34:39 -0700151 }
Colin Cross16b23492016-01-06 14:41:07 -0800152 }
153 }
154
Colin Cross16b23492016-01-06 14:41:07 -0800155 if len(globalSanitizers) > 0 {
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000156 var found bool
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700157 if found, globalSanitizers = removeFromList("undefined", globalSanitizers); found && s.All_undefined == nil {
158 s.All_undefined = boolPtr(true)
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000159 }
Colin Cross16b23492016-01-06 14:41:07 -0800160
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700161 if found, globalSanitizers = removeFromList("default-ub", globalSanitizers); found && s.Undefined == nil {
162 s.Undefined = boolPtr(true)
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000163 }
164
Evgenii Stepanov774cb812016-12-28 15:52:54 -0800165 if found, globalSanitizers = removeFromList("address", globalSanitizers); found {
166 if s.Address == nil {
167 s.Address = boolPtr(true)
168 } else if *s.Address == false {
169 // Coverage w/o address is an error. If globalSanitizers includes both, and the module
170 // disables address, then disable coverage as well.
171 _, globalSanitizers = removeFromList("coverage", globalSanitizers)
172 }
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000173 }
174
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700175 if found, globalSanitizers = removeFromList("thread", globalSanitizers); found && s.Thread == nil {
176 s.Thread = boolPtr(true)
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000177 }
178
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700179 if found, globalSanitizers = removeFromList("coverage", globalSanitizers); found && s.Coverage == nil {
180 s.Coverage = boolPtr(true)
181 }
182
183 if found, globalSanitizers = removeFromList("safe-stack", globalSanitizers); found && s.Safestack == nil {
184 s.Safestack = boolPtr(true)
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000185 }
186
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700187 if found, globalSanitizers = removeFromList("cfi", globalSanitizers); found && s.Cfi == nil {
188 s.Cfi = boolPtr(true)
189 }
190
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700191 if found, globalSanitizers = removeFromList("integer_overflow", globalSanitizers); found && s.Integer_overflow == nil {
Ivan Lozano5f595532017-07-13 14:46:05 -0700192 if !ctx.AConfig().IntegerOverflowDisabledForPath(ctx.ModuleDir()) {
193 s.Integer_overflow = boolPtr(true)
194 }
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700195 }
196
Evgenii Stepanov05bafd32016-07-07 17:38:41 +0000197 if len(globalSanitizers) > 0 {
198 ctx.ModuleErrorf("unknown global sanitizer option %s", globalSanitizers[0])
199 }
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700200
201 if found, globalSanitizersDiag = removeFromList("integer_overflow", globalSanitizersDiag); found &&
202 s.Diag.Integer_overflow == nil && Bool(s.Integer_overflow) {
203 s.Diag.Integer_overflow = boolPtr(true)
204 }
205
206 if len(globalSanitizersDiag) > 0 {
207 ctx.ModuleErrorf("unknown global sanitizer diagnostics option %s", globalSanitizersDiag[0])
208 }
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700209 }
Colin Cross3c344ef2016-07-18 15:44:56 -0700210
Evgenii Stepanova83fdac2017-01-31 18:37:30 -0800211 // CFI needs gold linker, and mips toolchain does not have one.
212 if !ctx.AConfig().EnableCFI() || ctx.Arch().ArchType == android.Mips || ctx.Arch().ArchType == android.Mips64 {
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800213 s.Cfi = nil
214 s.Diag.Cfi = nil
215 }
216
Vishwath Mohan6d67e6e2017-02-07 20:31:41 -0800217 // Also disable CFI for arm32 until b/35157333 is fixed.
218 if ctx.Arch().ArchType == android.Arm {
219 s.Cfi = nil
220 s.Diag.Cfi = nil
221 }
222
Vishwath Mohan8f4fdd82017-04-20 07:42:52 -0700223 // Also disable CFI if ASAN is enabled.
224 if Bool(s.Address) {
225 s.Cfi = nil
226 s.Diag.Cfi = nil
227 }
228
Colin Cross3c344ef2016-07-18 15:44:56 -0700229 if ctx.staticBinary() {
230 s.Address = nil
Colin Cross91169fe2016-08-11 15:54:20 -0700231 s.Coverage = nil
Colin Cross3c344ef2016-07-18 15:44:56 -0700232 s.Thread = nil
Colin Cross16b23492016-01-06 14:41:07 -0800233 }
234
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700235 if Bool(s.All_undefined) {
236 s.Undefined = nil
237 }
238
Evgenii Stepanov0a8a0d02016-05-12 13:54:53 -0700239 if !ctx.toolchain().Is64Bit() {
240 // TSAN and SafeStack are not supported on 32-bit architectures
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700241 s.Thread = nil
242 s.Safestack = nil
Colin Cross16b23492016-01-06 14:41:07 -0800243 // TODO(ccross): error for compile_multilib = "32"?
244 }
245
Evgenii Stepanov76cee232017-01-27 15:44:44 -0800246 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 -0700247 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 -0700248 sanitize.Properties.SanitizerEnabled = true
249 }
250
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700251 if Bool(s.Coverage) {
252 if !Bool(s.Address) {
Colin Cross16b23492016-01-06 14:41:07 -0800253 ctx.ModuleErrorf(`Use of "coverage" also requires "address"`)
254 }
255 }
256}
257
258func (sanitize *sanitize) deps(ctx BaseModuleContext, deps Deps) Deps {
259 if !sanitize.Properties.SanitizerEnabled { // || c.static() {
260 return deps
261 }
262
263 if ctx.Device() {
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700264 if Bool(sanitize.Properties.Sanitize.Address) {
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700265 deps.StaticLibs = append(deps.StaticLibs, asanLibs...)
Colin Cross16b23492016-01-06 14:41:07 -0800266 }
Colin Cross263abbd2016-07-15 13:10:48 -0700267 if Bool(sanitize.Properties.Sanitize.Address) || Bool(sanitize.Properties.Sanitize.Thread) {
268 deps.SharedLibs = append(deps.SharedLibs, "libdl")
269 }
Colin Cross16b23492016-01-06 14:41:07 -0800270 }
271
272 return deps
273}
274
275func (sanitize *sanitize) flags(ctx ModuleContext, flags Flags) Flags {
276 if !sanitize.Properties.SanitizerEnabled {
277 return flags
278 }
279
280 if !ctx.clang() {
281 ctx.ModuleErrorf("Use of sanitizers requires clang")
282 }
283
284 var sanitizers []string
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700285 var diagSanitizers []string
Colin Cross16b23492016-01-06 14:41:07 -0800286
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700287 if Bool(sanitize.Properties.Sanitize.All_undefined) {
Colin Cross16b23492016-01-06 14:41:07 -0800288 sanitizers = append(sanitizers, "undefined")
Colin Cross16b23492016-01-06 14:41:07 -0800289 } 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
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700423 if runtimeLibrary != "" {
Jiyong Park27b188b2017-07-18 13:23:39 +0900424 // ASan runtime library must be the first in the link order.
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
Jiyong Park27b188b2017-07-18 13:23:39 +0900429
430 // When linking against VNDK, use the vendor variant of the runtime lib
431 sanitize.androidMkRuntimeLibrary = sanitize.runtimeLibrary
432 if ctx.vndk() {
433 sanitize.androidMkRuntimeLibrary = sanitize.runtimeLibrary + vendorSuffix
434 }
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700435 }
436
Colin Cross635c3b02016-05-18 15:37:25 -0700437 blacklist := android.OptionalPathForModuleSrc(ctx, sanitize.Properties.Sanitize.Blacklist)
Colin Cross16b23492016-01-06 14:41:07 -0800438 if blacklist.Valid() {
439 flags.CFlags = append(flags.CFlags, "-fsanitize-blacklist="+blacklist.String())
440 flags.CFlagsDeps = append(flags.CFlagsDeps, blacklist.Path())
441 }
442
443 return flags
444}
445
Colin Cross8ff9ef42017-05-08 13:44:11 -0700446func (sanitize *sanitize) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
447 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Jiyong Park27b188b2017-07-18 13:23:39 +0900448 if sanitize.androidMkRuntimeLibrary != "" {
449 fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES += "+sanitize.androidMkRuntimeLibrary)
Colin Cross8ff9ef42017-05-08 13:44:11 -0700450 }
451
452 return nil
453 })
454}
455
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700456func (sanitize *sanitize) inSanitizerDir() bool {
457 return sanitize.Properties.InSanitizerDir
Colin Cross30d5f512016-05-03 18:02:42 -0700458}
459
Colin Cross16b23492016-01-06 14:41:07 -0800460func (sanitize *sanitize) Sanitizer(t sanitizerType) bool {
461 if sanitize == nil {
462 return false
463 }
464
465 switch t {
466 case asan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700467 return Bool(sanitize.Properties.Sanitize.Address)
Colin Cross16b23492016-01-06 14:41:07 -0800468 case tsan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700469 return Bool(sanitize.Properties.Sanitize.Thread)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700470 case intOverflow:
471 return Bool(sanitize.Properties.Sanitize.Integer_overflow)
Colin Cross16b23492016-01-06 14:41:07 -0800472 default:
473 panic(fmt.Errorf("unknown sanitizerType %d", t))
474 }
475}
476
477func (sanitize *sanitize) SetSanitizer(t sanitizerType, b bool) {
478 switch t {
479 case asan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700480 sanitize.Properties.Sanitize.Address = boolPtr(b)
Colin Cross91169fe2016-08-11 15:54:20 -0700481 if !b {
482 sanitize.Properties.Sanitize.Coverage = nil
483 }
Colin Cross16b23492016-01-06 14:41:07 -0800484 case tsan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700485 sanitize.Properties.Sanitize.Thread = boolPtr(b)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700486 case intOverflow:
487 sanitize.Properties.Sanitize.Integer_overflow = boolPtr(b)
Colin Cross16b23492016-01-06 14:41:07 -0800488 default:
489 panic(fmt.Errorf("unknown sanitizerType %d", t))
490 }
491 if b {
492 sanitize.Properties.SanitizerEnabled = true
493 }
494}
495
496// Propagate asan requirements down from binaries
Colin Cross635c3b02016-05-18 15:37:25 -0700497func sanitizerDepsMutator(t sanitizerType) func(android.TopDownMutatorContext) {
498 return func(mctx android.TopDownMutatorContext) {
Colin Cross16b23492016-01-06 14:41:07 -0800499 if c, ok := mctx.Module().(*Module); ok && c.sanitize.Sanitizer(t) {
500 mctx.VisitDepsDepthFirst(func(module blueprint.Module) {
501 if d, ok := mctx.Module().(*Module); ok && c.sanitize != nil &&
502 !c.sanitize.Properties.Sanitize.Never {
503 d.sanitize.Properties.SanitizeDep = true
504 }
505 })
506 }
507 }
508}
509
510// Create asan variants for modules that need them
Colin Cross635c3b02016-05-18 15:37:25 -0700511func sanitizerMutator(t sanitizerType) func(android.BottomUpMutatorContext) {
512 return func(mctx android.BottomUpMutatorContext) {
Colin Cross16b23492016-01-06 14:41:07 -0800513 if c, ok := mctx.Module().(*Module); ok && c.sanitize != nil {
Colin Crossb916a382016-07-29 17:28:03 -0700514 if c.isDependencyRoot() && c.sanitize.Sanitizer(t) {
Colin Cross30d5f512016-05-03 18:02:42 -0700515 modules := mctx.CreateVariations(t.String())
516 modules[0].(*Module).sanitize.SetSanitizer(t, true)
Colin Cross16b23492016-01-06 14:41:07 -0800517 } else if c.sanitize.Properties.SanitizeDep {
Colin Crossb0f28952016-09-19 16:46:53 -0700518 modules := mctx.CreateVariations("", t.String())
519 modules[0].(*Module).sanitize.SetSanitizer(t, false)
520 modules[1].(*Module).sanitize.SetSanitizer(t, true)
521 modules[0].(*Module).sanitize.Properties.SanitizeDep = false
522 modules[1].(*Module).sanitize.Properties.SanitizeDep = false
523 if mctx.Device() {
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700524 modules[1].(*Module).sanitize.Properties.InSanitizerDir = true
Colin Crossb0f28952016-09-19 16:46:53 -0700525 } else {
526 modules[0].(*Module).Properties.PreventInstall = true
527 }
528 if mctx.AConfig().EmbeddedInMake() {
529 modules[0].(*Module).Properties.HideFromMake = true
Colin Cross30d5f512016-05-03 18:02:42 -0700530 }
Colin Cross16b23492016-01-06 14:41:07 -0800531 }
532 c.sanitize.Properties.SanitizeDep = false
533 }
534 }
535}