blob: 74f4bdbb300fdb309b31b3389d2f69a444f066a9 [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.
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700131 if ctx.useSdk() {
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 }
267 }
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")
Colin Cross16b23492016-01-06 14:41:07 -0800286 } else {
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700287 if Bool(sanitize.Properties.Sanitize.Undefined) {
Colin Cross16b23492016-01-06 14:41:07 -0800288 sanitizers = append(sanitizers,
289 "bool",
290 "integer-divide-by-zero",
291 "return",
292 "returns-nonnull-attribute",
293 "shift-exponent",
294 "unreachable",
295 "vla-bound",
296 // TODO(danalbert): The following checks currently have compiler performance issues.
297 //"alignment",
298 //"bounds",
299 //"enum",
300 //"float-cast-overflow",
301 //"float-divide-by-zero",
302 //"nonnull-attribute",
303 //"null",
304 //"shift-base",
305 //"signed-integer-overflow",
306 // TODO(danalbert): Fix UB in libc++'s __tree so we can turn this on.
307 // https://llvm.org/PR19302
308 // http://reviews.llvm.org/D6974
309 // "object-size",
310 )
311 }
312 sanitizers = append(sanitizers, sanitize.Properties.Sanitize.Misc_undefined...)
313 }
314
Ivan Lozano651275b2017-06-13 10:24:34 -0700315 if Bool(sanitize.Properties.Sanitize.Diag.Undefined) {
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700316 diagSanitizers = append(diagSanitizers, "undefined")
317 }
318
Ivan Lozano651275b2017-06-13 10:24:34 -0700319 diagSanitizers = append(diagSanitizers, sanitize.Properties.Sanitize.Diag.Misc_undefined...)
320
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700321 if Bool(sanitize.Properties.Sanitize.Address) {
Colin Cross635c3b02016-05-18 15:37:25 -0700322 if ctx.Arch().ArchType == android.Arm {
Colin Cross16b23492016-01-06 14:41:07 -0800323 // Frame pointer based unwinder in ASan requires ARM frame setup.
324 // TODO: put in flags?
325 flags.RequiredInstructionSet = "arm"
326 }
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700327 flags.CFlags = append(flags.CFlags, asanCflags...)
328 flags.LdFlags = append(flags.LdFlags, asanLdflags...)
Colin Cross16b23492016-01-06 14:41:07 -0800329
Colin Cross16b23492016-01-06 14:41:07 -0800330 if ctx.Host() {
331 // -nodefaultlibs (provided with libc++) prevents the driver from linking
332 // libraries needed with -fsanitize=address. http://b/18650275 (WAI)
Colin Cross16b23492016-01-06 14:41:07 -0800333 flags.LdFlags = append(flags.LdFlags, "-Wl,--no-as-needed")
334 } else {
335 flags.CFlags = append(flags.CFlags, "-mllvm", "-asan-globals=0")
336 flags.DynamicLinker = "/system/bin/linker_asan"
337 if flags.Toolchain.Is64Bit() {
338 flags.DynamicLinker += "64"
339 }
340 }
341 sanitizers = append(sanitizers, "address")
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700342 diagSanitizers = append(diagSanitizers, "address")
Colin Cross16b23492016-01-06 14:41:07 -0800343 }
344
Yabin Cui6be405e2017-10-19 15:52:11 -0700345 if Bool(sanitize.Properties.Sanitize.Thread) {
346 sanitizers = append(sanitizers, "thread")
347 }
348
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700349 if Bool(sanitize.Properties.Sanitize.Coverage) {
Zach Riggle06bbd892017-08-21 17:12:32 -0400350 flags.CFlags = append(flags.CFlags, "-fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp")
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 Stepanov76cee232017-01-27 15:44:44 -0800393 // Host sanitizers only link symbols in the final executable, so
394 // there will always be undefined symbols in intermediate libraries.
395 _, flags.LdFlags = removeFromList("-Wl,--no-undefined", flags.LdFlags)
Colin Cross16b23492016-01-06 14:41:07 -0800396 } else {
Colin Cross263abbd2016-07-15 13:10:48 -0700397 flags.CFlags = append(flags.CFlags, "-fsanitize-trap=all", "-ftrap-function=abort")
Colin Cross16b23492016-01-06 14:41:07 -0800398 }
399 }
400
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700401 if len(diagSanitizers) > 0 {
402 flags.CFlags = append(flags.CFlags, "-fno-sanitize-trap="+strings.Join(diagSanitizers, ","))
403 }
404 // FIXME: enable RTTI if diag + (cfi or vptr)
405
Andreas Gampe97071162017-05-08 13:15:23 -0700406 if sanitize.Properties.Sanitize.Recover != nil {
407 flags.CFlags = append(flags.CFlags, "-fsanitize-recover="+
408 strings.Join(sanitize.Properties.Sanitize.Recover, ","))
409 }
410
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700411 // Link a runtime library if needed.
412 runtimeLibrary := ""
413 if Bool(sanitize.Properties.Sanitize.Address) {
414 runtimeLibrary = config.AddressSanitizerRuntimeLibrary(ctx.toolchain())
Yabin Cui6be405e2017-10-19 15:52:11 -0700415 } else if Bool(sanitize.Properties.Sanitize.Thread) {
416 runtimeLibrary = config.ThreadSanitizerRuntimeLibrary(ctx.toolchain())
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700417 } else if len(diagSanitizers) > 0 {
418 runtimeLibrary = config.UndefinedBehaviorSanitizerRuntimeLibrary(ctx.toolchain())
419 }
420
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700421 if runtimeLibrary != "" {
Jiyong Park27b188b2017-07-18 13:23:39 +0900422 // ASan runtime library must be the first in the link order.
Colin Cross8ff9ef42017-05-08 13:44:11 -0700423 flags.libFlags = append([]string{
424 "${config.ClangAsanLibDir}/" + runtimeLibrary + ctx.toolchain().ShlibSuffix(),
425 }, flags.libFlags...)
426 sanitize.runtimeLibrary = runtimeLibrary
Jiyong Park27b188b2017-07-18 13:23:39 +0900427
428 // When linking against VNDK, use the vendor variant of the runtime lib
429 sanitize.androidMkRuntimeLibrary = sanitize.runtimeLibrary
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700430 if ctx.useVndk() {
Jiyong Park27b188b2017-07-18 13:23:39 +0900431 sanitize.androidMkRuntimeLibrary = sanitize.runtimeLibrary + vendorSuffix
432 }
Evgenii Stepanov1e405e12016-08-16 15:39:54 -0700433 }
434
Colin Cross635c3b02016-05-18 15:37:25 -0700435 blacklist := android.OptionalPathForModuleSrc(ctx, sanitize.Properties.Sanitize.Blacklist)
Colin Cross16b23492016-01-06 14:41:07 -0800436 if blacklist.Valid() {
437 flags.CFlags = append(flags.CFlags, "-fsanitize-blacklist="+blacklist.String())
438 flags.CFlagsDeps = append(flags.CFlagsDeps, blacklist.Path())
439 }
440
441 return flags
442}
443
Colin Cross8ff9ef42017-05-08 13:44:11 -0700444func (sanitize *sanitize) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Colin Cross27a4b052017-08-10 16:32:23 -0700445 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Jiyong Park27b188b2017-07-18 13:23:39 +0900446 if sanitize.androidMkRuntimeLibrary != "" {
447 fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES += "+sanitize.androidMkRuntimeLibrary)
Colin Cross8ff9ef42017-05-08 13:44:11 -0700448 }
Colin Cross8ff9ef42017-05-08 13:44:11 -0700449 })
450}
451
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700452func (sanitize *sanitize) inSanitizerDir() bool {
453 return sanitize.Properties.InSanitizerDir
Colin Cross30d5f512016-05-03 18:02:42 -0700454}
455
Vishwath Mohan95229302017-08-11 00:53:16 +0000456func (sanitize *sanitize) Sanitizer(t sanitizerType) bool {
457 if sanitize == nil {
458 return false
459 }
460
461 switch t {
462 case asan:
463 return Bool(sanitize.Properties.Sanitize.Address)
464 case tsan:
465 return Bool(sanitize.Properties.Sanitize.Thread)
466 case intOverflow:
467 return Bool(sanitize.Properties.Sanitize.Integer_overflow)
468 default:
469 panic(fmt.Errorf("unknown sanitizerType %d", t))
470 }
471}
472
Colin Cross16b23492016-01-06 14:41:07 -0800473func (sanitize *sanitize) SetSanitizer(t sanitizerType, b bool) {
474 switch t {
475 case asan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700476 sanitize.Properties.Sanitize.Address = boolPtr(b)
Colin Cross91169fe2016-08-11 15:54:20 -0700477 if !b {
478 sanitize.Properties.Sanitize.Coverage = nil
479 }
Colin Cross16b23492016-01-06 14:41:07 -0800480 case tsan:
Evgenii Stepanovfcfe56d2016-07-07 10:54:07 -0700481 sanitize.Properties.Sanitize.Thread = boolPtr(b)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700482 case intOverflow:
483 sanitize.Properties.Sanitize.Integer_overflow = boolPtr(b)
Colin Cross16b23492016-01-06 14:41:07 -0800484 default:
485 panic(fmt.Errorf("unknown sanitizerType %d", t))
486 }
487 if b {
488 sanitize.Properties.SanitizerEnabled = true
489 }
490}
491
492// Propagate asan requirements down from binaries
Colin Cross635c3b02016-05-18 15:37:25 -0700493func sanitizerDepsMutator(t sanitizerType) func(android.TopDownMutatorContext) {
494 return func(mctx android.TopDownMutatorContext) {
Vishwath Mohan95229302017-08-11 00:53:16 +0000495 if c, ok := mctx.Module().(*Module); ok && c.sanitize.Sanitizer(t) {
Colin Cross16b23492016-01-06 14:41:07 -0800496 mctx.VisitDepsDepthFirst(func(module blueprint.Module) {
Vishwath Mohan95229302017-08-11 00:53:16 +0000497 if d, ok := mctx.Module().(*Module); ok && c.sanitize != nil &&
498 !c.sanitize.Properties.Sanitize.Never {
Colin Cross16b23492016-01-06 14:41:07 -0800499 d.sanitize.Properties.SanitizeDep = true
500 }
501 })
502 }
503 }
504}
505
506// Create asan variants for modules that need them
Colin Cross635c3b02016-05-18 15:37:25 -0700507func sanitizerMutator(t sanitizerType) func(android.BottomUpMutatorContext) {
508 return func(mctx android.BottomUpMutatorContext) {
Vishwath Mohane6153452017-08-11 00:52:44 +0000509 if c, ok := mctx.Module().(*Module); ok && c.sanitize != nil {
Vishwath Mohan95229302017-08-11 00:53:16 +0000510 if c.isDependencyRoot() && c.sanitize.Sanitizer(t) {
Colin Cross30d5f512016-05-03 18:02:42 -0700511 modules := mctx.CreateVariations(t.String())
512 modules[0].(*Module).sanitize.SetSanitizer(t, true)
Vishwath Mohan95229302017-08-11 00:53:16 +0000513 } else if c.sanitize.Properties.SanitizeDep {
Colin Crossb0f28952016-09-19 16:46:53 -0700514 modules := mctx.CreateVariations("", t.String())
515 modules[0].(*Module).sanitize.SetSanitizer(t, false)
516 modules[1].(*Module).sanitize.SetSanitizer(t, true)
517 modules[0].(*Module).sanitize.Properties.SanitizeDep = false
518 modules[1].(*Module).sanitize.Properties.SanitizeDep = false
Vishwath Mohane6153452017-08-11 00:52:44 +0000519 if mctx.Device() {
520 modules[1].(*Module).sanitize.Properties.InSanitizerDir = true
521 } else {
Vishwath Mohan95229302017-08-11 00:53:16 +0000522 modules[0].(*Module).Properties.PreventInstall = true
Vishwath Mohane6153452017-08-11 00:52:44 +0000523 }
Colin Crossb0f28952016-09-19 16:46:53 -0700524 if mctx.AConfig().EmbeddedInMake() {
Vishwath Mohan95229302017-08-11 00:53:16 +0000525 modules[0].(*Module).Properties.HideFromMake = true
Colin Cross30d5f512016-05-03 18:02:42 -0700526 }
Colin Cross16b23492016-01-06 14:41:07 -0800527 }
528 c.sanitize.Properties.SanitizeDep = false
529 }
530 }
531}