blob: 46d5d909e366d63b9db84e8af6ba2ab5859ffb3c [file] [log] [blame]
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001// 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 config
16
17import (
Dan Willemsen318af8b2016-11-02 14:50:21 -070018 "android/soong/android"
Dan Willemsen54daaf02018-03-12 13:24:09 -070019 "strings"
Dan Willemsena03cf6d2016-09-26 15:45:04 -070020)
21
Chih-Hung Hsieh794b81d2022-06-11 18:10:58 -070022var (
Chih-Hung Hsieh9f876e92022-06-12 20:28:00 -070023 // Some clang-tidy checks have bugs or don't work for Android.
Chih-Hung Hsieh794b81d2022-06-11 18:10:58 -070024 // They are disabled here, overriding any locally selected checks.
25 globalNoCheckList = []string{
26 // https://b.corp.google.com/issues/153464409
27 // many local projects enable cert-* checks, which
28 // trigger bugprone-reserved-identifier.
29 "-bugprone-reserved-identifier*,-cert-dcl51-cpp,-cert-dcl37-c",
30 // http://b/153757728
31 "-readability-qualified-auto",
32 // http://b/193716442
33 "-bugprone-implicit-widening-of-multiplication-result",
34 // Too many existing functions trigger this rule, and fixing it requires large code
35 // refactoring. The cost of maintaining this tidy rule outweighs the benefit it brings.
36 "-bugprone-easily-swappable-parameters",
37 // http://b/216364337 - TODO: Follow-up after compiler update to
38 // disable or fix individual instances.
39 "-cert-err33-c",
Chih-Hung Hsieh3b93ac62022-08-08 22:40:50 -070040 // http://b/241125373
41 "-bugprone-unchecked-optional-access",
Yi Kongdf456b52023-01-14 02:37:21 +090042 // http://b/265438407
43 "-misc-use-anonymous-namespace",
Yabin Cui2c336fe2023-05-31 19:25:49 +000044 // http://b/285005947
45 "-performance-avoid-endl",
Chih-Hung Hsieh794b81d2022-06-11 18:10:58 -070046 }
47
48 // Some clang-tidy checks are included in some tidy_checks_as_errors lists,
49 // but not all warnings are fixed/suppressed yet. These checks are not
50 // disabled in the TidyGlobalNoChecks list, so we can see them and fix/suppress them.
51 globalNoErrorCheckList = []string{
Chih-Hung Hsieh3b93ac62022-08-08 22:40:50 -070052 // http://b/241997913
53 "-bugprone-assignment-in-if-condition",
Chih-Hung Hsieh794b81d2022-06-11 18:10:58 -070054 // http://b/155034972
55 "-bugprone-branch-clone",
Chih-Hung Hsieh3b93ac62022-08-08 22:40:50 -070056 // http://b/155034563
57 "-bugprone-signed-char-misuse",
58 // http://b/241819232
59 "-misc-const-correctness",
Yabin Cuic31c2fb2023-06-01 18:19:39 +000060 // http://b/285356805
61 "-bugprone-unsafe-functions",
62 "-cert-msc24-c",
63 "-cert-msc33-c",
64 // http://b/285356799
65 "-modernize-type-traits",
66 // http://b/285361108
67 "-readability-avoid-unconditional-preprocessor-if",
Chih-Hung Hsieh794b81d2022-06-11 18:10:58 -070068 }
Sam Delmericoee030d22022-11-10 14:33:40 -050069
70 extraArgFlags = []string{
71 // We might be using the static analyzer through clang tidy.
72 // https://bugs.llvm.org/show_bug.cgi?id=32914
73 "-D__clang_analyzer__",
74
75 // A recent change in clang-tidy (r328258) enabled destructor inlining, which
76 // appears to cause a number of false positives. Until that's resolved, this turns
77 // off the effects of r328258.
78 // https://bugs.llvm.org/show_bug.cgi?id=37459
79 "-Xclang",
80 "-analyzer-config",
81 "-Xclang",
82 "c++-temp-dtor-inlining=false",
83 }
Chih-Hung Hsieh794b81d2022-06-11 18:10:58 -070084)
85
Dan Willemsena03cf6d2016-09-26 15:45:04 -070086func init() {
Chih-Hung Hsiehd21c46a2022-10-11 12:27:17 -070087 // The global default tidy checks should include clang-tidy
88 // default checks and tested groups, but exclude known noisy checks.
Chih-Hung Hsieh34850d32021-01-14 16:51:49 -080089 // See https://clang.llvm.org/extra/clang-tidy/checks/list.html
Cole Faust8982b1c2024-04-08 16:54:45 -070090 pctx.VariableConfigMethod("TidyDefaultGlobalChecks", func(config android.Config) string {
Sam Delmericob9b6c672022-10-21 11:52:18 -040091 if override := config.Getenv("DEFAULT_GLOBAL_TIDY_CHECKS"); override != "" {
Dan Willemsen54daaf02018-03-12 13:24:09 -070092 return override
Dan Willemsen318af8b2016-11-02 14:50:21 -070093 }
Chih-Hung Hsieh04f8d372021-01-19 18:28:18 -080094 checks := strings.Join([]string{
Chih-Hung Hsieh34850d32021-01-14 16:51:49 -080095 "android-*",
96 "bugprone-*",
97 "cert-*",
Chris Li46cad062021-01-14 19:48:49 +000098 "clang-diagnostic-unused-command-line-argument",
Chih-Hung Hsieh82126212022-05-17 15:26:34 -070099 // Select only google-* checks that do not have thousands of warnings.
100 // Add more such checks when we clean up source code.
101 // "google-build-using-namespace",
102 // "google-default-arguments",
103 // "google-explicit-constructor",
104 // "google-global-names-in-headers",
105 // "google-runtime-int",
106 "google-build-explicit-make-pair",
107 "google-build-namespaces",
108 "google-runtime-operator",
109 "google-upgrade-*",
Chih-Hung Hsieh34850d32021-01-14 16:51:49 -0800110 "misc-*",
111 "performance-*",
112 "portability-*",
Chih-Hung Hsieh3b93ac62022-08-08 22:40:50 -0700113 "-bugprone-assignment-in-if-condition",
Stephen Hines4b721452021-09-11 01:14:36 -0700114 "-bugprone-easily-swappable-parameters",
Chih-Hung Hsieh70b93162020-03-03 12:05:22 -0800115 "-bugprone-narrowing-conversions",
Chih-Hung Hsieh3b93ac62022-08-08 22:40:50 -0700116 "-misc-const-correctness",
Chih-Hung Hsieh34850d32021-01-14 16:51:49 -0800117 "-misc-no-recursion",
118 "-misc-non-private-member-variables-in-classes",
119 "-misc-unused-parameters",
Chih-Hung Hsieh5d46cd32022-05-09 16:01:10 -0700120 "-performance-no-int-to-ptr",
Chih-Hung Hsiehd21c46a2022-10-11 12:27:17 -0700121 // the following groups are not in clang-tidy default checks.
Chih-Hung Hsieh34850d32021-01-14 16:51:49 -0800122 // -altera-*
123 // -cppcoreguidelines-*
124 // -darwin-*
125 // -fuchsia-*
126 // -hicpp-*
127 // -llvm-*
128 // -llvmlibc-*
129 // -modernize-*
130 // -mpi-*
131 // -objc-*
132 // -readability-*
133 // -zircon-*
Dan Willemsen54daaf02018-03-12 13:24:09 -0700134 }, ",")
Chih-Hung Hsiehd21c46a2022-10-11 12:27:17 -0700135 // clang-analyzer-* checks are slow for large files, but we have TIDY_TIMEOUT to
136 // limit clang-tidy runtime. We allow clang-tidy default clang-analyzer-* checks,
137 // and add it explicitly when CLANG_ANALYZER_CHECKS is set.
Chih-Hung Hsieh9bcce2e2022-02-07 16:44:13 -0800138 // The insecureAPI.DeprecatedOrUnsafeBufferHandling warning does not apply to Android.
Sam Delmericob9b6c672022-10-21 11:52:18 -0400139 if config.IsEnvTrue("CLANG_ANALYZER_CHECKS") {
Chih-Hung Hsieh9bcce2e2022-02-07 16:44:13 -0800140 checks += ",clang-analyzer-*,-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling"
Chih-Hung Hsiehd21c46a2022-10-11 12:27:17 -0700141 } else {
142 checks += ",-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling"
Chih-Hung Hsieh04f8d372021-01-19 18:28:18 -0800143 }
144 return checks
Dan Willemsen318af8b2016-11-02 14:50:21 -0700145 })
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700146
Chih-Hung Hsiehd21c46a2022-10-11 12:27:17 -0700147 // The external and vendor projects do not run clang-tidy unless TIDY_EXTERNAL_VENDOR is set.
148 // We do not add "-*" to the check list to avoid suppressing the check list in .clang-tidy config files.
149 // There are too many clang-tidy warnings in external and vendor projects, so we only
150 // enable some google checks for these projects. Users can add more checks locally with the
151 // "tidy_checks" list in .bp files, or the "Checks" list in .clang-tidy config files.
Cole Faust8982b1c2024-04-08 16:54:45 -0700152 pctx.VariableConfigMethod("TidyExternalVendorChecks", func(config android.Config) string {
Sam Delmericob9b6c672022-10-21 11:52:18 -0400153 if override := config.Getenv("DEFAULT_EXTERNAL_VENDOR_TIDY_CHECKS"); override != "" {
Dan Willemsen54daaf02018-03-12 13:24:09 -0700154 return override
Dan Willemsen318af8b2016-11-02 14:50:21 -0700155 }
156 return strings.Join([]string{
Chih-Hung Hsieha7aa9582018-08-15 11:28:38 -0700157 "clang-diagnostic-unused-command-line-argument",
Chih-Hung Hsieh82126212022-05-17 15:26:34 -0700158 "google-build-explicit-make-pair",
159 "google-build-namespaces",
160 "google-runtime-operator",
161 "google-upgrade-*",
Chih-Hung Hsiehd21c46a2022-10-11 12:27:17 -0700162 "-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling",
Dan Willemsen54daaf02018-03-12 13:24:09 -0700163 }, ",")
Dan Willemsen318af8b2016-11-02 14:50:21 -0700164 })
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700165
Cole Faust8982b1c2024-04-08 16:54:45 -0700166 pctx.StaticVariable("TidyGlobalNoChecks", strings.Join(globalNoCheckList, ","))
Chih-Hung Hsieh794b81d2022-06-11 18:10:58 -0700167
Cole Faust8982b1c2024-04-08 16:54:45 -0700168 pctx.StaticVariable("TidyGlobalNoErrorChecks", strings.Join(globalNoErrorCheckList, ","))
Chih-Hung Hsieh43b920e2022-06-09 17:58:41 -0700169
Cole Faust8982b1c2024-04-08 16:54:45 -0700170 pctx.StaticVariable("TidyExtraArgFlags", strings.Join(extraArgFlags, " "))
Sam Delmericoee030d22022-11-10 14:33:40 -0500171
Chih-Hung Hsieh9f94c362021-02-10 21:56:03 -0800172 // To reduce duplicate warnings from the same header files,
173 // header-filter will contain only the module directory and
174 // those specified by DEFAULT_TIDY_HEADER_DIRS.
Cole Faust8982b1c2024-04-08 16:54:45 -0700175 pctx.VariableConfigMethod("TidyDefaultHeaderDirs", func(config android.Config) string {
Sam Delmericob9b6c672022-10-21 11:52:18 -0400176 return config.Getenv("DEFAULT_TIDY_HEADER_DIRS")
Chih-Hung Hsieh60bd4bf2018-09-21 09:38:17 -0700177 })
Chih-Hung Hsieh9e5d8a62018-09-21 15:12:44 -0700178
179 // Use WTIH_TIDY_FLAGS to pass extra global default clang-tidy flags.
Cole Faust8982b1c2024-04-08 16:54:45 -0700180 pctx.VariableConfigMethod("TidyWithTidyFlags", func(config android.Config) string {
Sam Delmericob9b6c672022-10-21 11:52:18 -0400181 return config.Getenv("WITH_TIDY_FLAGS")
Chih-Hung Hsieh9e5d8a62018-09-21 15:12:44 -0700182 })
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700183}
184
185type PathBasedTidyCheck struct {
186 PathPrefix string
187 Checks string
188}
189
190const tidyDefault = "${config.TidyDefaultGlobalChecks}"
191const tidyExternalVendor = "${config.TidyExternalVendorChecks}"
Chih-Hung Hsieh062e9342021-08-30 13:32:29 -0700192const tidyDefaultNoAnalyzer = "${config.TidyDefaultGlobalChecks},-clang-analyzer-*"
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700193
194// This is a map of local path prefixes to the set of default clang-tidy checks
Chih-Hung Hsieh1a467532022-09-01 17:14:22 -0700195// to be used. This is like android.IsThirdPartyPath, but with more patterns.
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700196// The last matched local_path_prefix should be the most specific to be used.
197var DefaultLocalTidyChecks = []PathBasedTidyCheck{
198 {"external/", tidyExternalVendor},
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700199 {"frameworks/compile/mclinker/", tidyExternalVendor},
Chih-Hung Hsieh1a467532022-09-01 17:14:22 -0700200 {"hardware/", tidyExternalVendor},
201 {"hardware/google/", tidyDefault},
202 {"hardware/interfaces/", tidyDefault},
203 {"hardware/ril/", tidyDefault},
204 {"hardware/libhardware", tidyDefault}, // all 'hardware/libhardware*'
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700205 {"vendor/", tidyExternalVendor},
Chih-Hung Hsieh1a467532022-09-01 17:14:22 -0700206 {"vendor/google", tidyDefault}, // all 'vendor/google*'
207 {"vendor/google/external/", tidyExternalVendor},
Chih-Hung Hsieh47e35bb2022-05-05 14:09:12 -0700208 {"vendor/google_arc/libs/org.chromium.arc.mojom", tidyExternalVendor},
Chih-Hung Hsieh1a467532022-09-01 17:14:22 -0700209 {"vendor/google_devices/", tidyExternalVendor}, // many have vendor code
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700210}
211
212var reversedDefaultLocalTidyChecks = reverseTidyChecks(DefaultLocalTidyChecks)
213
214func reverseTidyChecks(in []PathBasedTidyCheck) []PathBasedTidyCheck {
215 ret := make([]PathBasedTidyCheck, len(in))
216 for i, check := range in {
217 ret[len(in)-i-1] = check
218 }
219 return ret
220}
221
222func TidyChecksForDir(dir string) string {
Chih-Hung Hsiehf92c7152021-09-05 19:53:15 -0700223 dir = dir + "/"
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700224 for _, pathCheck := range reversedDefaultLocalTidyChecks {
225 if strings.HasPrefix(dir, pathCheck.PathPrefix) {
226 return pathCheck.Checks
227 }
228 }
229 return tidyDefault
230}
Chih-Hung Hsieh062e9342021-08-30 13:32:29 -0700231
Chih-Hung Hsiehff2efae2022-10-18 14:43:27 -0700232func neverTidyForDir(dir string) bool {
233 // This function can be extended if tidy needs to be disabled for more directories.
234 return strings.HasPrefix(dir, "external/grpc-grpc")
235}
236
237func NoClangTidyForDir(allowExternalVendor bool, dir string) bool {
238 // Tidy can be disable for a module in dir, if the dir is "neverTidyForDir",
239 // or if it belongs to external|vendor and !allowExternalVendor.
Chih-Hung Hsieh1a467532022-09-01 17:14:22 -0700240 // This function depends on TidyChecksForDir, which selects tidyExternalVendor
Chih-Hung Hsiehff2efae2022-10-18 14:43:27 -0700241 // checks for external/vendor projects.
242 return neverTidyForDir(dir) ||
243 (!allowExternalVendor && TidyChecksForDir(dir) == tidyExternalVendor)
Chih-Hung Hsieh1a467532022-09-01 17:14:22 -0700244}
245
Chih-Hung Hsieh43b920e2022-06-09 17:58:41 -0700246// Returns a globally disabled tidy checks, overriding locally selected checks.
247func TidyGlobalNoChecks() string {
Chih-Hung Hsieh794b81d2022-06-11 18:10:58 -0700248 if len(globalNoCheckList) > 0 {
249 return ",${config.TidyGlobalNoChecks}"
250 }
251 return ""
252}
253
254// Returns a globally allowed/no-error tidy checks, appended to -warnings-as-errors.
255func TidyGlobalNoErrorChecks() string {
256 if len(globalNoErrorCheckList) > 0 {
257 return ",${config.TidyGlobalNoErrorChecks}"
258 }
259 return ""
Chih-Hung Hsieh43b920e2022-06-09 17:58:41 -0700260}
261
Sam Delmericoee030d22022-11-10 14:33:40 -0500262func TidyExtraArgFlags() []string {
263 return extraArgFlags
264}
265
Chih-Hung Hsieh062e9342021-08-30 13:32:29 -0700266func TidyFlagsForSrcFile(srcFile android.Path, flags string) string {
267 // Disable clang-analyzer-* checks globally for generated source files
268 // because some of them are too huge. Local .bp files can add wanted
269 // clang-analyzer checks through the tidy_checks property.
270 // Need to do this patch per source file, because some modules
271 // have both generated and organic source files.
272 if _, ok := srcFile.(android.WritablePath); ok {
273 if strings.Contains(flags, tidyDefault) {
274 return strings.ReplaceAll(flags, tidyDefault, tidyDefaultNoAnalyzer)
275 }
276 }
277 return flags
278}