blob: 3c8224bf9597c570dd56a5da21c8102fc90f5ad1 [file] [log] [blame]
Colin Cross3f40fa42015-01-30 17:27:36 -08001// Copyright 2015 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
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Colin Cross3f40fa42015-01-30 17:27:36 -080016
Jingwen Chenc711fec2020-11-22 23:52:50 -050017// This is the primary location to write and read all configuration values and
18// product variables necessary for soong_build's operation.
19
Colin Cross3f40fa42015-01-30 17:27:36 -080020import (
Colin Cross3f40fa42015-01-30 17:27:36 -080021 "encoding/json"
Lukacs T. Berki720b3962021-03-17 13:34:30 +010022 "errors"
Colin Cross3f40fa42015-01-30 17:27:36 -080023 "fmt"
Colin Crossd8f20142016-11-03 09:43:26 -070024 "io/ioutil"
Colin Cross3f40fa42015-01-30 17:27:36 -080025 "os"
Colin Cross35cec122015-04-02 14:37:16 -070026 "path/filepath"
Sam Delmerico5c32bbf2022-01-20 20:15:02 +000027 "reflect"
Colin Cross3f40fa42015-01-30 17:27:36 -080028 "runtime"
Inseob Kim60c32f02020-12-21 22:53:05 +090029 "strconv"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070030 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070031 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080032
Colin Cross98be1bb2019-12-13 20:41:13 -080033 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080034 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080035 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080036 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080037
38 "android/soong/android/soongconfig"
Liz Kammer09f947d2021-05-12 14:51:49 -040039 "android/soong/bazel"
Colin Cross77cdcfd2021-03-12 11:28:25 -080040 "android/soong/remoteexec"
Liz Kammer72beb342022-02-03 08:42:10 -050041 "android/soong/starlark_fmt"
Colin Cross3f40fa42015-01-30 17:27:36 -080042)
43
Jingwen Chenc711fec2020-11-22 23:52:50 -050044// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080045var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050046
47// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080048var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050049
50// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090051var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090052
Jingwen Chenc711fec2020-11-22 23:52:50 -050053// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070054const FutureApiLevelInt = 10000
55
Jingwen Chenc711fec2020-11-22 23:52:50 -050056// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070057var FutureApiLevel = ApiLevel{
58 value: "current",
59 number: FutureApiLevelInt,
60 isPreview: true,
61}
Colin Cross6ff51382015-12-17 16:39:19 -080062
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050063// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070064const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080065
Colin Cross9272ade2016-08-17 15:24:12 -070066// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070067type Config struct {
68 *config
69}
70
Lukacs T. Berkib078ade2021-08-31 10:42:08 +020071// SoongOutDir returns the build output directory for the configuration.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020072func (c Config) SoongOutDir() string {
73 return c.soongOutDir
Jeff Gastonefc1b412017-03-29 17:29:06 -070074}
75
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020076func (c Config) OutDir() string {
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +020077 return c.outDir
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010078}
79
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020080func (c Config) RunGoTests() bool {
81 return c.runGoTests
82}
83
Lukacs T. Berki5f6cb1d2021-03-17 15:03:14 +010084func (c Config) DebugCompilation() bool {
85 return false // Never compile Go code in the main build for debugging
86}
87
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020088func (c Config) Subninjas() []string {
89 return []string{}
90}
91
92func (c Config) PrimaryBuilderInvocations() []bootstrap.PrimaryBuilderInvocation {
93 return []bootstrap.PrimaryBuilderInvocation{}
94}
95
Jingwen Chenc711fec2020-11-22 23:52:50 -050096// A DeviceConfig object represents the configuration for a particular device
97// being built. For now there will only be one of these, but in the future there
98// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070099type DeviceConfig struct {
100 *deviceConfig
101}
102
Jingwen Chenc711fec2020-11-22 23:52:50 -0500103// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -0800104type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -0700105
Jingwen Chenc711fec2020-11-22 23:52:50 -0500106// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500107// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -0700108type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500109 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800110 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800111
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700112 // Only available on configs created by TestConfig
113 TestProductVariables *productVariables
114
Jingwen Chenc711fec2020-11-22 23:52:50 -0500115 // A specialized context object for Bazel/Soong mixed builds and migration
116 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400117 BazelContext BazelContext
118
Dan Willemsen87b17d12015-07-14 00:39:06 -0700119 ProductVariablesFileName string
120
Colin Cross0c66bc62021-07-20 09:47:41 -0700121 // BuildOS stores the OsType for the OS that the build is running on.
122 BuildOS OsType
123
124 // BuildArch stores the ArchType for the CPU that the build is running on.
125 BuildArch ArchType
126
Jaewoong Jung642916f2020-10-09 17:25:15 -0700127 Targets map[OsType][]Target
128 BuildOSTarget Target // the Target for tools run on the build machine
129 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
130 AndroidCommonTarget Target // the Target for common modules for the Android device
131 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700132
Jingwen Chenc711fec2020-11-22 23:52:50 -0500133 // multilibConflicts for an ArchType is true if there is earlier configured
134 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700135 multilibConflicts map[ArchType]bool
136
Colin Cross9272ade2016-08-17 15:24:12 -0700137 deviceConfig *deviceConfig
138
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200139 outDir string // The output directory (usually out/)
140 soongOutDir string
Chris Parsons8f232a22020-06-23 17:37:05 -0400141 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700142
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200143 runGoTests bool
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200144
Colin Cross6ccbc912017-10-10 23:07:38 -0700145 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700146 envLock sync.Mutex
147 envDeps map[string]string
148 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800149
Jingwen Chencda22c92020-11-23 00:22:30 -0500150 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
151 // runs standalone.
152 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700153
Colin Cross32616ed2017-09-05 21:56:44 -0700154 captureBuild bool // true for tests, saves build parameters for each module
155 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700156
Colin Cross98be1bb2019-12-13 20:41:13 -0800157 fs pathtools.FileSystem
158 mockBpList string
159
Jingwen Chen01812022021-11-19 14:29:43 +0000160 runningAsBp2Build bool
161 bp2buildPackageConfig Bp2BuildConfig
Jingwen Chen01812022021-11-19 14:29:43 +0000162 Bp2buildSoongConfigDefinitions soongconfig.Bp2BuildSoongConfigDefinitions
Jingwen Chen12b4c272021-03-10 02:05:59 -0500163
Colin Cross5e6a7972020-06-07 16:56:32 -0700164 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
165 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000166 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700167
Jingwen Chenc711fec2020-11-22 23:52:50 -0500168 // The list of files that when changed, must invalidate soong_build to
169 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700170 ninjaFileDepsSet sync.Map
171
Colin Cross9272ade2016-08-17 15:24:12 -0700172 OncePer
173}
174
175type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700176 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700177 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800178}
179
Colin Cross485e5722015-08-27 13:28:01 -0700180type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700181 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700182}
Colin Cross3f40fa42015-01-30 17:27:36 -0800183
Colin Cross485e5722015-08-27 13:28:01 -0700184func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000185 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700186}
187
Jingwen Chenc711fec2020-11-22 23:52:50 -0500188// loadFromConfigFile loads and decodes configuration options from a JSON file
189// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400190func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800191 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700192 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800193 defer configFileReader.Close()
194 if os.IsNotExist(err) {
195 // Need to create a file, so that blueprint & ninja don't get in
196 // a dependency tracking loop.
197 // Make a file-configurable-options with defaults, write it out using
198 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700199 configurable.SetDefaultConfig()
200 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800201 if err != nil {
202 return err
203 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800204 } else if err != nil {
205 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800206 } else {
207 // Make a decoder for it
208 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700209 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800210 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800211 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800212 }
213 }
214
Liz Kammer09f947d2021-05-12 14:51:49 -0400215 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
216 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
217 }
218
219 configurable.Native_coverage = proptools.BoolPtr(
220 Bool(configurable.GcovCoverage) ||
221 Bool(configurable.ClangCoverage))
222
Yuntao Xu402e9b02021-08-09 15:44:44 -0700223 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
224 // if false (pre-released version, for example), use Platform_sdk_codename.
225 if Bool(configurable.Platform_sdk_final) {
226 if configurable.Platform_sdk_version != nil {
227 configurable.Platform_sdk_version_or_codename =
228 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
229 } else {
230 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
231 }
232 } else {
233 configurable.Platform_sdk_version_or_codename =
234 proptools.StringPtr(String(configurable.Platform_sdk_codename))
235 }
236
Liz Kammer09f947d2021-05-12 14:51:49 -0400237 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800238}
239
Colin Crossd8f20142016-11-03 09:43:26 -0700240// atomically writes the config file in case two copies of soong_build are running simultaneously
241// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400242func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800243 data, err := json.MarshalIndent(&config, "", " ")
244 if err != nil {
245 return fmt.Errorf("cannot marshal config data: %s", err.Error())
246 }
247
Colin Crossd8f20142016-11-03 09:43:26 -0700248 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800249 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500250 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800251 }
Colin Crossd8f20142016-11-03 09:43:26 -0700252 defer os.Remove(f.Name())
253 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800254
Colin Crossd8f20142016-11-03 09:43:26 -0700255 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800256 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700257 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
258 }
259
Colin Crossd8f20142016-11-03 09:43:26 -0700260 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700261 if err != nil {
262 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800263 }
264
Colin Crossd8f20142016-11-03 09:43:26 -0700265 f.Close()
266 os.Rename(f.Name(), filename)
267
Colin Cross3f40fa42015-01-30 17:27:36 -0800268 return nil
269}
270
Liz Kammer09f947d2021-05-12 14:51:49 -0400271func saveToBazelConfigFile(config *productVariables, outDir string) error {
272 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
273 err := createDirIfNonexistent(dir, os.ModePerm)
274 if err != nil {
275 return fmt.Errorf("Could not create dir %s: %s", dir, err)
276 }
277
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000278 nonArchVariantProductVariables := []string{}
279 archVariantProductVariables := []string{}
280 p := variableProperties{}
281 t := reflect.TypeOf(p.Product_variables)
282 for i := 0; i < t.NumField(); i++ {
283 f := t.Field(i)
284 nonArchVariantProductVariables = append(nonArchVariantProductVariables, strings.ToLower(f.Name))
285 if proptools.HasTag(f, "android", "arch_variant") {
286 archVariantProductVariables = append(archVariantProductVariables, strings.ToLower(f.Name))
287 }
288 }
289
Liz Kammer72beb342022-02-03 08:42:10 -0500290 nonArchVariantProductVariablesJson := starlark_fmt.PrintStringList(nonArchVariantProductVariables, 0)
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000291 if err != nil {
292 return fmt.Errorf("cannot marshal product variable data: %s", err.Error())
293 }
294
Liz Kammer72beb342022-02-03 08:42:10 -0500295 archVariantProductVariablesJson := starlark_fmt.PrintStringList(archVariantProductVariables, 0)
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000296 if err != nil {
297 return fmt.Errorf("cannot marshal arch variant product variable data: %s", err.Error())
298 }
299
300 configJson, err := json.MarshalIndent(&config, "", " ")
Liz Kammer09f947d2021-05-12 14:51:49 -0400301 if err != nil {
302 return fmt.Errorf("cannot marshal config data: %s", err.Error())
303 }
304
305 bzl := []string{
306 bazel.GeneratedBazelFileWarning,
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000307 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, configJson),
308 fmt.Sprintf(`_product_var_constraints = %s`, nonArchVariantProductVariablesJson),
309 fmt.Sprintf(`_arch_variant_product_var_constraints = %s`, archVariantProductVariablesJson),
310 "\n", `
311product_vars = _product_vars
312product_var_constraints = _product_var_constraints
313arch_variant_product_var_constraints = _arch_variant_product_var_constraints
314`,
Liz Kammer09f947d2021-05-12 14:51:49 -0400315 }
316 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
317 if err != nil {
318 return fmt.Errorf("Could not write .bzl config file %s", err)
319 }
320 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
321 if err != nil {
322 return fmt.Errorf("Could not write BUILD config file %s", err)
323 }
324
325 return nil
326}
327
Colin Cross988414c2020-01-11 01:11:46 +0000328// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
329// use the android package.
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200330func NullConfig(outDir, soongOutDir string) Config {
Colin Cross988414c2020-01-11 01:11:46 +0000331 return Config{
332 config: &config{
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200333 outDir: outDir,
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200334 soongOutDir: soongOutDir,
335 fs: pathtools.OsFs,
Colin Cross988414c2020-01-11 01:11:46 +0000336 },
337 }
338}
339
Jingwen Chenc711fec2020-11-22 23:52:50 -0500340// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800341func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700342 envCopy := make(map[string]string)
343 for k, v := range env {
344 envCopy[k] = v
345 }
346
Jingwen Chen2838c812020-11-23 01:06:40 -0500347 // Copy the real PATH value to the test environment, it's needed by
348 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100349 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700350
Dan Willemsen00269f22017-07-06 16:59:48 -0700351 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800352 productVariables: productVariables{
Anton Hansson97d0bae2022-02-16 16:15:10 +0000353 DeviceName: stringPtr("test_device"),
354 Platform_sdk_version: intPtr(30),
355 Platform_sdk_codename: stringPtr("S"),
356 Platform_base_sdk_extension_version: intPtr(1),
357 Platform_version_active_codenames: []string{"S", "Tiramisu"},
358 DeviceSystemSdkVersions: []string{"14", "15"},
359 Platform_systemsdk_versions: []string{"29", "30"},
360 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
361 AAPTPreferredConfig: stringPtr("xhdpi"),
362 AAPTCharacteristics: stringPtr("nosdcard"),
363 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
364 UncompressPrivAppDex: boolPtr(true),
365 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700366 },
367
Colin Cross7b6a55f2021-11-09 12:34:39 -0800368 outDir: buildDir,
369 soongOutDir: filepath.Join(buildDir, "soong"),
Colin Cross6ccbc912017-10-10 23:07:38 -0700370 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700371 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700372
373 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
374 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000375 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400376
377 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700378 }
379 config.deviceConfig = &deviceConfig{
380 config: config,
381 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800382 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700383
Colin Cross98be1bb2019-12-13 20:41:13 -0800384 config.mockFileSystem(bp, fs)
385
Colin Cross790ef352021-10-25 19:15:55 -0700386 determineBuildOS(config)
387
Dan Willemsen00269f22017-07-06 16:59:48 -0700388 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700389}
390
Paul Duffin35816122021-02-24 01:49:52 +0000391func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700392 config := testConfig.config
393
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700394 config.Targets = map[OsType][]Target{
395 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900396 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
397 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700398 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700399 config.BuildOS: []Target{
400 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
401 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700402 },
403 }
404
Colin Cross0d99f7c2019-05-14 16:01:24 -0700405 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700406 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700407 }
408
Colin Cross0c66bc62021-07-20 09:47:41 -0700409 config.BuildOSTarget = config.Targets[config.BuildOS][0]
410 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700411 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700412 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900413 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
414 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
415 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
416 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000417}
Colin Cross2a076922018-10-04 23:28:25 -0700418
Colin Cross528d67e2021-07-23 22:23:07 +0000419func modifyTestConfigForMusl(config Config) {
420 delete(config.Targets, config.BuildOS)
421 config.productVariables.HostMusl = boolPtr(true)
422 determineBuildOS(config.config)
423 config.Targets[config.BuildOS] = []Target{
424 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
425 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
426 }
427
428 config.BuildOSTarget = config.Targets[config.BuildOS][0]
429 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
430}
431
Paul Duffin35816122021-02-24 01:49:52 +0000432// TestArchConfig returns a Config object suitable for using for tests that
433// need to run the arch mutator.
434func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
435 testConfig := TestConfig(buildDir, env, bp, fs)
436 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700437 return testConfig
438}
439
Jingwen Chenc711fec2020-11-22 23:52:50 -0500440// ConfigForAdditionalRun is a config object which is "reset" for another
441// bootstrap run. Only per-run data is reset. Data which needs to persist across
442// multiple runs in the same program execution is carried over (such as Bazel
443// context or environment deps).
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200444func ConfigForAdditionalRun(c Config) (Config, error) {
445 newConfig, err := NewConfig(c.moduleListFile, c.runGoTests, c.outDir, c.soongOutDir, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400446 if err != nil {
447 return Config{}, err
448 }
449 newConfig.BazelContext = c.BazelContext
450 newConfig.envDeps = c.envDeps
451 return newConfig, nil
452}
453
Jingwen Chenc711fec2020-11-22 23:52:50 -0500454// NewConfig creates a new Config object. The srcDir argument specifies the path
455// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200456func NewConfig(moduleListFile string, runGoTests bool, outDir, soongOutDir string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500457 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700458 config := &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200459 ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700460
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200461 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700462
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200463 outDir: outDir,
464 soongOutDir: soongOutDir,
465 runGoTests: runGoTests,
466 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800467
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200468 moduleListFile: moduleListFile,
Chris Parsons8f232a22020-06-23 17:37:05 -0400469 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700470 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800471
Dan Willemsen00269f22017-07-06 16:59:48 -0700472 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700473 config: config,
474 }
475
Liz Kammer7941b302020-07-28 13:27:34 -0700476 // Soundness check of the build and source directories. This won't catch strange
477 // configurations with symlinks, but at least checks the obvious case.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200478 absBuildDir, err := filepath.Abs(soongOutDir)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700479 if err != nil {
480 return Config{}, err
481 }
482
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200483 absSrcDir, err := filepath.Abs(".")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700484 if err != nil {
485 return Config{}, err
486 }
487
488 if strings.HasPrefix(absSrcDir, absBuildDir) {
489 return Config{}, fmt.Errorf("Build dir must not contain source directory")
490 }
491
Colin Cross3f40fa42015-01-30 17:27:36 -0800492 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700493 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800494 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700495 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800496 }
497
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200498 KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled")
Jingwen Chencda22c92020-11-23 00:22:30 -0500499 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
500 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800501 }
502
Colin Cross0c66bc62021-07-20 09:47:41 -0700503 determineBuildOS(config)
504
Jingwen Chenc711fec2020-11-22 23:52:50 -0500505 // Sets up the map of target OSes to the finer grained compilation targets
506 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700507 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700508 if err != nil {
509 return Config{}, err
510 }
511
Paul Duffin1356d8c2020-02-25 19:26:33 +0000512 // Make the CommonOS OsType available for all products.
513 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
514
Dan Albert4098deb2016-10-19 14:04:41 -0700515 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500516 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700517 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000518 } else if config.AmlAbis() {
519 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700520 }
521
522 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800523 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800524 if err != nil {
525 return Config{}, err
526 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700527 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800528 }
529
Colin Cross3b19f5d2019-09-17 14:45:31 -0700530 multilib := make(map[string]bool)
531 for _, target := range targets[Android] {
532 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
533 config.multilibConflicts[target.Arch.ArchType] = true
534 }
535 multilib[target.Arch.ArchType.Multilib] = true
536 }
537
Jingwen Chenc711fec2020-11-22 23:52:50 -0500538 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700539 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500540
541 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700542 config.BuildOSTarget = config.Targets[config.BuildOS][0]
543 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500544
545 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700546 if len(config.Targets[Android]) > 0 {
547 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700548 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700549 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700550
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400551 config.BazelContext, err = NewBazelContext(config)
Jingwen Chen12b4c272021-03-10 02:05:59 -0500552 config.bp2buildPackageConfig = bp2buildDefaultConfig
Colin Cross3f40fa42015-01-30 17:27:36 -0800553
Jingwen Chenc711fec2020-11-22 23:52:50 -0500554 return Config{config}, err
555}
Colin Cross988414c2020-01-11 01:11:46 +0000556
Colin Cross98be1bb2019-12-13 20:41:13 -0800557// mockFileSystem replaces all reads with accesses to the provided map of
558// filenames to contents stored as a byte slice.
559func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
560 mockFS := map[string][]byte{}
561
562 if _, exists := mockFS["Android.bp"]; !exists {
563 mockFS["Android.bp"] = []byte(bp)
564 }
565
566 for k, v := range fs {
567 mockFS[k] = v
568 }
569
570 // no module list file specified; find every file named Blueprints or Android.bp
571 pathsToParse := []string{}
572 for candidate := range mockFS {
573 base := filepath.Base(candidate)
Lukacs T. Berkib838b0a2021-09-02 11:46:24 +0200574 if base == "Android.bp" {
Colin Cross98be1bb2019-12-13 20:41:13 -0800575 pathsToParse = append(pathsToParse, candidate)
576 }
577 }
578 if len(pathsToParse) < 1 {
579 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
580 }
581 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
582
583 c.fs = pathtools.MockFs(mockFS)
584 c.mockBpList = blueprint.MockModuleListFile
585}
586
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100587func (c *config) SetAllowMissingDependencies() {
588 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
589}
590
Jingwen Chenc711fec2020-11-22 23:52:50 -0500591// BlueprintToolLocation returns the directory containing build system tools
592// from Blueprint, like soong_zip and merge_zips.
Lukacs T. Berkia806e412021-09-01 08:57:48 +0200593func (c *config) HostToolDir() string {
Colin Crossacfcc1f2021-10-25 15:40:32 -0700594 if c.KatiEnabled() {
595 return filepath.Join(c.outDir, "host", c.PrebuiltOS(), "bin")
596 } else {
597 return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin")
598 }
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700599}
600
Dan Willemsen60e62f02018-11-16 21:05:32 -0800601func (c *config) HostToolPath(ctx PathContext, tool string) Path {
Colin Cross790ef352021-10-25 19:15:55 -0700602 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "bin", false, tool)
603 return path
Dan Willemsen60e62f02018-11-16 21:05:32 -0800604}
605
Colin Cross790ef352021-10-25 19:15:55 -0700606func (c *config) HostJNIToolPath(ctx PathContext, lib string) Path {
Martin Stjernholm7260d062019-12-09 21:47:14 +0000607 ext := ".so"
608 if runtime.GOOS == "darwin" {
609 ext = ".dylib"
610 }
Colin Cross790ef352021-10-25 19:15:55 -0700611 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "lib64", false, lib+ext)
612 return path
Martin Stjernholm7260d062019-12-09 21:47:14 +0000613}
614
Colin Crossae5330a2021-11-03 13:31:22 -0700615func (c *config) HostJavaToolPath(ctx PathContext, tool string) Path {
616 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "framework", false, tool)
Colin Cross3e3eda62021-11-04 10:22:51 -0700617 return path
618}
619
Jingwen Chenc711fec2020-11-22 23:52:50 -0500620// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700621func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800622 switch runtime.GOOS {
623 case "linux":
624 return "linux-x86"
625 case "darwin":
626 return "darwin-x86"
627 default:
628 panic("Unknown GOOS")
629 }
630}
631
632// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700633func (c *config) GoRoot() string {
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200634 return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS())
Colin Cross3f40fa42015-01-30 17:27:36 -0800635}
636
Jingwen Chenc711fec2020-11-22 23:52:50 -0500637// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
638// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700639func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
640 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
641}
642
Jingwen Chenc711fec2020-11-22 23:52:50 -0500643// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
644// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700645func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700646 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800647 case "darwin":
648 return "-R"
649 case "linux":
650 return "-d"
651 default:
652 return ""
653 }
654}
Colin Cross68f55102015-03-25 14:43:57 -0700655
Colin Cross1332b002015-04-07 17:11:30 -0700656func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700657 var val string
658 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700659 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800660 defer c.envLock.Unlock()
661 if c.envDeps == nil {
662 c.envDeps = make(map[string]string)
663 }
Colin Cross68f55102015-03-25 14:43:57 -0700664 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700665 if c.envFrozen {
666 panic("Cannot access new environment variables after envdeps are frozen")
667 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700668 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700669 c.envDeps[key] = val
670 }
671 return val
672}
673
Colin Cross99d7c232016-11-23 16:52:04 -0800674func (c *config) GetenvWithDefault(key string, defaultValue string) string {
675 ret := c.Getenv(key)
676 if ret == "" {
677 return defaultValue
678 }
679 return ret
680}
681
682func (c *config) IsEnvTrue(key string) bool {
683 value := c.Getenv(key)
684 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
685}
686
687func (c *config) IsEnvFalse(key string) bool {
688 value := c.Getenv(key)
689 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
690}
691
Jingwen Chenc711fec2020-11-22 23:52:50 -0500692// EnvDeps returns the environment variables this build depends on. The first
693// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700694func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700695 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800696 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700697 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700698 return c.envDeps
699}
Colin Cross35cec122015-04-02 14:37:16 -0700700
Jingwen Chencda22c92020-11-23 00:22:30 -0500701func (c *config) KatiEnabled() bool {
702 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800703}
704
Nan Zhang581fd212018-01-10 16:06:12 -0800705func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800706 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800707}
708
Jingwen Chenc711fec2020-11-22 23:52:50 -0500709// BuildNumberFile returns the path to a text file containing metadata
710// representing the current build's number.
711//
712// Rules that want to reference the build number should read from this file
713// without depending on it. They will run whenever their other dependencies
714// require them to run and get the current build number. This ensures they don't
715// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800716func (c *config) BuildNumberFile(ctx PathContext) Path {
717 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800718}
719
Jingwen Chenc711fec2020-11-22 23:52:50 -0500720// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700721// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700722func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800723 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700724}
725
Anton Hansson53c88442019-03-18 15:53:16 +0000726func (c *config) DeviceResourceOverlays() []string {
727 return c.productVariables.DeviceResourceOverlays
728}
729
730func (c *config) ProductResourceOverlays() []string {
731 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700732}
733
Colin Crossbfd347d2018-05-09 11:11:35 -0700734func (c *config) PlatformVersionName() string {
735 return String(c.productVariables.Platform_version_name)
736}
737
Dan Albert4f378d72020-07-23 17:32:15 -0700738func (c *config) PlatformSdkVersion() ApiLevel {
739 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700740}
741
Colin Crossd09b0b62018-04-18 11:06:47 -0700742func (c *config) PlatformSdkCodename() string {
743 return String(c.productVariables.Platform_sdk_codename)
744}
745
Anton Hansson97d0bae2022-02-16 16:15:10 +0000746func (c *config) PlatformSdkExtensionVersion() int {
747 return *c.productVariables.Platform_sdk_extension_version
748}
749
750func (c *config) PlatformBaseSdkExtensionVersion() int {
751 return *c.productVariables.Platform_base_sdk_extension_version
752}
753
Colin Cross092c9da2019-04-02 22:56:43 -0700754func (c *config) PlatformSecurityPatch() string {
755 return String(c.productVariables.Platform_security_patch)
756}
757
758func (c *config) PlatformPreviewSdkVersion() string {
759 return String(c.productVariables.Platform_preview_sdk_version)
760}
761
762func (c *config) PlatformMinSupportedTargetSdkVersion() string {
763 return String(c.productVariables.Platform_min_supported_target_sdk_version)
764}
765
766func (c *config) PlatformBaseOS() string {
767 return String(c.productVariables.Platform_base_os)
768}
769
Dan Albert1a246272020-07-06 14:49:35 -0700770func (c *config) MinSupportedSdkVersion() ApiLevel {
771 return uncheckedFinalApiLevel(16)
772}
773
774func (c *config) FinalApiLevels() []ApiLevel {
775 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700776 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700777 levels = append(levels, uncheckedFinalApiLevel(i))
778 }
779 return levels
780}
781
782func (c *config) PreviewApiLevels() []ApiLevel {
783 var levels []ApiLevel
784 for i, codename := range c.PlatformVersionActiveCodenames() {
785 levels = append(levels, ApiLevel{
786 value: codename,
787 number: i,
788 isPreview: true,
789 })
790 }
791 return levels
792}
793
satayevcca4ab72021-11-30 12:33:55 +0000794func (c *config) LatestPreviewApiLevel() ApiLevel {
795 level := NoneApiLevel
796 for _, l := range c.PreviewApiLevels() {
797 if l.GreaterThan(level) {
798 level = l
799 }
800 }
801 return level
802}
803
Dan Albert1a246272020-07-06 14:49:35 -0700804func (c *config) AllSupportedApiLevels() []ApiLevel {
805 var levels []ApiLevel
806 levels = append(levels, c.FinalApiLevels()...)
807 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700808}
809
Jingwen Chenc711fec2020-11-22 23:52:50 -0500810// DefaultAppTargetSdk returns the API level that platform apps are targeting.
811// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700812func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700813 if Bool(c.productVariables.Platform_sdk_final) {
814 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700815 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500816 codename := c.PlatformSdkCodename()
817 if codename == "" {
818 return NoneApiLevel
819 }
820 if codename == "REL" {
821 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
822 }
823 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700824}
825
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800826func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800827 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800828}
829
Dan Albert31384de2017-07-28 12:39:46 -0700830// Codenames that are active in the current lunch target.
831func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800832 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700833}
834
Colin Crossface4e42017-10-30 17:32:15 -0700835func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800836 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700837}
838
Colin Crossface4e42017-10-30 17:32:15 -0700839func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800840 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700841}
842
Colin Crossface4e42017-10-30 17:32:15 -0700843func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800844 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700845}
846
847func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800848 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700849}
850
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700851func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800852 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800853 if defaultCert != "" {
854 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800855 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500856 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700857}
858
Colin Crosse1731a52017-12-14 11:22:55 -0800859func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800860 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800861 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800862 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800863 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500864 defaultDir := c.DefaultAppCertificateDir(ctx)
865 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700866}
Colin Cross6ff51382015-12-17 16:39:19 -0800867
Jiyong Park9335a262018-12-24 11:31:58 +0900868func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
869 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
870 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700871 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900872 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
873 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800874 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900875 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500876 // If not, APEX keys are under the specified directory
877 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900878}
879
Jingwen Chenc711fec2020-11-22 23:52:50 -0500880// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
881// are configured to depend on non-existent modules. Note that this does not
882// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800883func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800884 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800885}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800886
Jeongik Cha816a23a2020-07-08 01:09:23 +0900887// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700888func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800889 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700890}
891
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100892// Returns true if building apps that aren't bundled with the platform.
893// UnbundledBuild() is always true when this is true.
894func (c *config) UnbundledBuildApps() bool {
Cole Faust701ca252021-11-23 19:02:08 -0800895 return len(c.productVariables.Unbundled_build_apps) > 0
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100896}
897
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900898// Returns true if building image that aren't bundled with the platform.
899// UnbundledBuild() is always true when this is true.
900func (c *config) UnbundledBuildImage() bool {
901 return Bool(c.productVariables.Unbundled_build_image)
902}
903
Jeongik Cha816a23a2020-07-08 01:09:23 +0900904// Returns true if building modules against prebuilt SDKs.
905func (c *config) AlwaysUsePrebuiltSdks() bool {
906 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800907}
908
Colin Cross126a25c2017-10-31 13:55:34 -0700909func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800910 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700911}
912
Colin Crossed064c02018-09-05 16:28:13 -0700913func (c *config) Debuggable() bool {
914 return Bool(c.productVariables.Debuggable)
915}
916
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800917func (c *config) Eng() bool {
918 return Bool(c.productVariables.Eng)
919}
920
Colin Crossc53c37f2021-12-08 15:42:22 -0800921// DevicePrimaryArchType returns the ArchType for the first configured device architecture, or
922// Common if there are no device architectures.
Jiyong Park8d52f862018-07-07 18:02:07 +0900923func (c *config) DevicePrimaryArchType() ArchType {
Colin Crossc53c37f2021-12-08 15:42:22 -0800924 if androidTargets := c.Targets[Android]; len(androidTargets) > 0 {
925 return androidTargets[0].Arch.ArchType
926 }
927 return Common
Jiyong Park8d52f862018-07-07 18:02:07 +0900928}
929
Colin Cross16b23492016-01-06 14:41:07 -0800930func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800931 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800932}
933
934func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800935 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700936}
937
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700938func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800939 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700940}
941
Colin Cross23ae82a2016-11-02 14:34:39 -0700942func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800943 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800944}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700945
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800946func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800947 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800948 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800949 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500950 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800951}
952
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800953func (c *config) DisableScudo() bool {
954 return Bool(c.productVariables.DisableScudo)
955}
956
Colin Crossa1ad8d12016-06-01 17:09:44 -0700957func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700958 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700959 if t.Arch.ArchType.Multilib == "lib64" {
960 return true
961 }
962 }
963
964 return false
965}
Colin Cross9272ade2016-08-17 15:24:12 -0700966
Colin Cross9d45bb72016-08-29 16:14:13 -0700967func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800968 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700969}
970
Ramy Medhatbbf25672019-07-17 12:30:04 +0000971func (c *config) UseRBE() bool {
972 return Bool(c.productVariables.UseRBE)
973}
974
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500975func (c *config) UseRBEJAVAC() bool {
976 return Bool(c.productVariables.UseRBEJAVAC)
977}
978
979func (c *config) UseRBER8() bool {
980 return Bool(c.productVariables.UseRBER8)
981}
982
983func (c *config) UseRBED8() bool {
984 return Bool(c.productVariables.UseRBED8)
985}
986
Colin Cross8b8bec32019-11-15 13:18:43 -0800987func (c *config) UseRemoteBuild() bool {
988 return c.UseGoma() || c.UseRBE()
989}
990
Colin Cross66548102018-06-19 22:47:35 -0700991func (c *config) RunErrorProne() bool {
992 return c.IsEnvTrue("RUN_ERROR_PRONE")
993}
994
Jingwen Chenc711fec2020-11-22 23:52:50 -0500995// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800996func (c *config) XrefCorpusName() string {
997 return c.Getenv("XREF_CORPUS")
998}
999
Jingwen Chenc711fec2020-11-22 23:52:50 -05001000// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
1001// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -08001002func (c *config) XrefCuEncoding() string {
1003 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
1004 return enc
1005 }
1006 return "json"
1007}
1008
Sasha Smundakb0addaf2021-02-16 10:39:40 -08001009// XrefCuJavaSourceMax returns the maximum number of the Java source files
1010// in a single compilation unit
1011const xrefJavaSourceFileMaxDefault = "1000"
1012
1013func (c Config) XrefCuJavaSourceMax() string {
1014 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
1015 if v == "" {
1016 return xrefJavaSourceFileMaxDefault
1017 }
1018 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
1019 fmt.Fprintf(os.Stderr,
1020 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
1021 err, xrefJavaSourceFileMaxDefault)
1022 return xrefJavaSourceFileMaxDefault
1023 }
1024 return v
1025
1026}
1027
Sasha Smundak2a4549e2018-11-05 16:49:08 -08001028func (c *config) EmitXrefRules() bool {
1029 return c.XrefCorpusName() != ""
1030}
1031
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001032func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001033 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001034}
1035
1036func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001037 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001038 return ""
1039 }
Dan Willemsen45133ac2018-03-09 21:22:06 -08001040 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001041}
1042
Colin Cross0f4e0d62016-07-27 10:56:55 -07001043func (c *config) LibartImgHostBaseAddress() string {
1044 return "0x60000000"
1045}
1046
1047func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -08001048 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -07001049}
1050
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001051func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001052 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001053}
1054
Jingwen Chenc711fec2020-11-22 23:52:50 -05001055// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
1056// but some modules still depend on it.
1057//
1058// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001059func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001060 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001061
Roland Levillainf6cc2612020-07-09 16:58:14 +01001062 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001063 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001064 return true
1065 }
Colin Crossa74ca042019-01-31 14:31:51 -08001066 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001067 }
1068 return false
1069}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001070func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001071 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001072 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001073 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001074 }
1075 return false
1076}
1077
1078func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001079 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001080}
1081
1082func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001083 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001084}
1085
Colin Cross5a0dcd52018-10-05 14:20:06 -07001086func (c *config) UncompressPrivAppDex() bool {
1087 return Bool(c.productVariables.UncompressPrivAppDex)
1088}
1089
1090func (c *config) ModulesLoadedByPrivilegedModules() []string {
1091 return c.productVariables.ModulesLoadedByPrivilegedModules
1092}
1093
Jingwen Chenc711fec2020-11-22 23:52:50 -05001094// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1095// the output directory, if it was created during the product configuration
1096// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001097func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001098 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001099 return OptionalPathForPath(nil)
1100 }
1101 return OptionalPathForPath(
1102 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1103}
1104
Jingwen Chenc711fec2020-11-22 23:52:50 -05001105// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1106// configuration. Since the configuration file was created by Kati during
1107// product configuration (externally of soong_build), it's not tracked, so we
1108// also manually add a Ninja file dependency on the configuration file to the
1109// rule that creates the main build.ninja file. This ensures that build.ninja is
1110// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001111func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1112 path := c.DexpreoptGlobalConfigPath(ctx)
1113 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001114 return nil, nil
1115 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001116 ctx.AddNinjaFileDeps(path.String())
1117 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001118}
1119
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001120func (c *deviceConfig) WithDexpreopt() bool {
1121 return c.config.productVariables.WithDexpreopt
1122}
1123
David Brazdil91b4e3e2019-01-23 21:04:05 +00001124func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001125 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001126}
1127
Inseob Kimae553032019-05-14 18:52:49 +09001128func (c *config) VndkSnapshotBuildArtifacts() bool {
1129 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1130}
1131
Colin Cross3b19f5d2019-09-17 14:45:31 -07001132func (c *config) HasMultilibConflict(arch ArchType) bool {
1133 return c.multilibConflicts[arch]
1134}
1135
Bill Peckhambae47492021-01-08 09:34:44 -08001136func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1137 return String(c.productVariables.PrebuiltHiddenApiDir)
1138}
1139
Colin Cross9272ade2016-08-17 15:24:12 -07001140func (c *deviceConfig) Arches() []Arch {
1141 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001142 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001143 arches = append(arches, target.Arch)
1144 }
1145 return arches
1146}
Dan Willemsend2ede872016-11-18 14:54:24 -08001147
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001148func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001149 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001150 if is32BitBinder != nil && *is32BitBinder {
1151 return "32"
1152 }
1153 return "64"
1154}
1155
Dan Willemsen4353bc42016-12-05 17:16:02 -08001156func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001157 if c.config.productVariables.VendorPath != nil {
1158 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001159 }
1160 return "vendor"
1161}
1162
Justin Yun71549282017-11-17 12:10:28 +09001163func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001164 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001165}
1166
Jose Galmes6f843bc2020-12-11 13:36:29 -08001167func (c *deviceConfig) RecoverySnapshotVersion() string {
1168 return String(c.config.productVariables.RecoverySnapshotVersion)
1169}
1170
Jeongik Cha219141c2020-08-06 23:00:37 +09001171func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1172 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1173}
1174
Justin Yun8fe12122017-12-07 17:18:15 +09001175func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001176 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001177}
1178
Justin Yun5f7f7e82019-11-18 19:52:14 +09001179func (c *deviceConfig) ProductVndkVersion() string {
1180 return String(c.config.productVariables.ProductVndkVersion)
1181}
1182
Justin Yun71549282017-11-17 12:10:28 +09001183func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001184 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001185}
Jack He8cc71432016-12-08 15:45:07 -08001186
Vic Yangefd249e2018-11-12 20:19:56 -08001187func (c *deviceConfig) VndkUseCoreVariant() bool {
1188 return Bool(c.config.productVariables.VndkUseCoreVariant)
1189}
1190
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001191func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001192 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001193}
1194
1195func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001196 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001197}
1198
Jiyong Park2db76922017-11-08 16:03:48 +09001199func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001200 if c.config.productVariables.OdmPath != nil {
1201 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001202 }
1203 return "odm"
1204}
1205
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001206func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001207 if c.config.productVariables.ProductPath != nil {
1208 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001209 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001210 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001211}
1212
Justin Yund5f6c822019-06-25 16:47:17 +09001213func (c *deviceConfig) SystemExtPath() string {
1214 if c.config.productVariables.SystemExtPath != nil {
1215 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001216 }
Justin Yund5f6c822019-06-25 16:47:17 +09001217 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001218}
1219
Jack He8cc71432016-12-08 15:45:07 -08001220func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001221 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001222}
Dan Willemsen581341d2017-02-09 16:16:31 -08001223
Jiyong Parkd773eb32017-07-03 13:18:12 +09001224func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001225 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001226}
1227
Roland Levillainada12702020-06-09 13:07:36 +01001228// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1229// path. Coverage is enabled by default when the product variable
1230// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1231// enabled for any path which is part of this variable (and not part of the
1232// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1233// represents any path.
1234func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1235 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001236 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001237 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1238 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1239 coverage = true
1240 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001241 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001242 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1243 coverage = false
1244 }
1245 }
1246 return coverage
1247}
1248
Colin Cross1a6acd42020-06-16 17:51:46 -07001249// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001250func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001251 return Bool(c.config.productVariables.GcovCoverage) ||
1252 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001253}
1254
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001255func (c *deviceConfig) ClangCoverageEnabled() bool {
1256 return Bool(c.config.productVariables.ClangCoverage)
1257}
1258
Colin Cross1a6acd42020-06-16 17:51:46 -07001259func (c *deviceConfig) GcovCoverageEnabled() bool {
1260 return Bool(c.config.productVariables.GcovCoverage)
1261}
1262
Roland Levillain4f5297b2020-06-09 12:44:06 +01001263// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1264// code coverage is enabled for path. By default, coverage is not enabled for a
1265// given path unless it is part of the NativeCoveragePaths product variable (and
1266// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1267// NativeCoveragePaths represents any path.
1268func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001269 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001270 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001271 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001272 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001273 }
1274 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001275 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001276 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001277 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001278 }
1279 }
1280 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001281}
Ivan Lozano5f595532017-07-13 14:46:05 -07001282
Yi Kongeb8efc92021-12-09 18:06:29 +08001283func (c *deviceConfig) AfdoAdditionalProfileDirs() []string {
1284 return c.config.productVariables.AfdoAdditionalProfileDirs
1285}
1286
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001287func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001288 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001289}
1290
Tri Vo35a51432018-03-25 20:00:00 -07001291func (c *deviceConfig) VendorSepolicyDirs() []string {
1292 return c.config.productVariables.BoardVendorSepolicyDirs
1293}
1294
1295func (c *deviceConfig) OdmSepolicyDirs() []string {
1296 return c.config.productVariables.BoardOdmSepolicyDirs
1297}
1298
Felixa20a8752020-05-17 18:28:35 +02001299func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1300 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001301}
1302
Felixa20a8752020-05-17 18:28:35 +02001303func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1304 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001305}
1306
Inseob Kim0866b002019-04-15 20:21:29 +09001307func (c *deviceConfig) SepolicyM4Defs() []string {
1308 return c.config.productVariables.BoardSepolicyM4Defs
1309}
1310
Jiyong Park7f67f482019-01-05 12:57:48 +09001311func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001312 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1313 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1314}
1315
1316func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001317 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001318 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1319}
1320
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001321func (c *deviceConfig) OverridePackageNameFor(name string) string {
1322 newName, overridden := findOverrideValue(
1323 c.config.productVariables.PackageNameOverrides,
1324 name,
1325 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1326 if overridden {
1327 return newName
1328 }
1329 return name
1330}
1331
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001332func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001333 if overrides == nil || len(overrides) == 0 {
1334 return "", false
1335 }
1336 for _, o := range overrides {
1337 split := strings.Split(o, ":")
1338 if len(split) != 2 {
1339 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001340 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001341 }
1342 if matchPattern(split[0], name) {
1343 return substPattern(split[0], split[1], name), true
1344 }
1345 }
1346 return "", false
1347}
1348
Ivan Lozano5f595532017-07-13 14:46:05 -07001349func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001350 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001351 return false
1352 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001353 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001354}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001355
1356func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001357 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001358 return false
1359 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001360 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001361}
1362
1363func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001364 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001365 return false
1366 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001367 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001368}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001369
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001370func (c *config) MemtagHeapDisabledForPath(path string) bool {
1371 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1372 return false
1373 }
1374 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1375}
1376
1377func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1378 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1379 return false
1380 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001381 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001382}
1383
1384func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1385 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1386 return false
1387 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001388 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001389}
1390
Dan Willemsen0fe78662018-03-26 12:41:18 -07001391func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001392 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001393}
1394
Colin Cross395f2cf2018-10-24 16:10:32 -07001395func (c *config) NdkAbis() bool {
1396 return Bool(c.productVariables.Ndk_abis)
1397}
1398
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001399func (c *config) AmlAbis() bool {
1400 return Bool(c.productVariables.Aml_abis)
1401}
1402
Jiyong Park8fd61922018-11-08 02:50:25 +09001403func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001404 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001405}
1406
Jiyong Park4da07972021-01-05 21:01:11 +09001407func (c *config) ForceApexSymlinkOptimization() bool {
1408 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1409}
1410
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001411func (c *config) CompressedApex() bool {
1412 return Bool(c.productVariables.CompressedApex)
1413}
1414
Jeongik Chac9464142019-01-07 12:07:27 +09001415func (c *config) EnforceSystemCertificate() bool {
1416 return Bool(c.productVariables.EnforceSystemCertificate)
1417}
1418
Colin Cross440e0d02020-06-11 11:32:11 -07001419func (c *config) EnforceSystemCertificateAllowList() []string {
1420 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001421}
1422
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001423func (c *config) EnforceProductPartitionInterface() bool {
1424 return Bool(c.productVariables.EnforceProductPartitionInterface)
1425}
1426
JaeMan Parkff715562020-10-19 17:25:58 +09001427func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1428 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1429}
1430
1431func (c *config) InterPartitionJavaLibraryAllowList() []string {
1432 return c.productVariables.InterPartitionJavaLibraryAllowList
1433}
1434
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001435func (c *config) InstallExtraFlattenedApexes() bool {
1436 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1437}
1438
Colin Crossf24a22a2019-01-31 14:12:44 -08001439func (c *config) ProductHiddenAPIStubs() []string {
1440 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001441}
1442
Colin Crossf24a22a2019-01-31 14:12:44 -08001443func (c *config) ProductHiddenAPIStubsSystem() []string {
1444 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001445}
1446
Colin Crossf24a22a2019-01-31 14:12:44 -08001447func (c *config) ProductHiddenAPIStubsTest() []string {
1448 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001449}
Dan Willemsen71c74602019-04-10 12:27:35 -07001450
Dan Willemsen54879d12019-04-18 10:08:46 -07001451func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001452 return c.config.productVariables.TargetFSConfigGen
1453}
Inseob Kim0866b002019-04-15 20:21:29 +09001454
1455func (c *config) ProductPublicSepolicyDirs() []string {
1456 return c.productVariables.ProductPublicSepolicyDirs
1457}
1458
1459func (c *config) ProductPrivateSepolicyDirs() []string {
1460 return c.productVariables.ProductPrivateSepolicyDirs
1461}
1462
Colin Cross50ddcc42019-05-16 12:28:22 -07001463func (c *config) MissingUsesLibraries() []string {
1464 return c.productVariables.MissingUsesLibraries
1465}
1466
Inseob Kim1f086e22019-05-09 13:29:15 +09001467func (c *deviceConfig) DeviceArch() string {
1468 return String(c.config.productVariables.DeviceArch)
1469}
1470
1471func (c *deviceConfig) DeviceArchVariant() string {
1472 return String(c.config.productVariables.DeviceArchVariant)
1473}
1474
1475func (c *deviceConfig) DeviceSecondaryArch() string {
1476 return String(c.config.productVariables.DeviceSecondaryArch)
1477}
1478
1479func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1480 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1481}
Yifan Hong82db7352020-01-21 16:12:26 -08001482
1483func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1484 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1485}
Yifan Hong97365ee2020-07-29 09:51:57 -07001486
1487func (c *deviceConfig) BoardKernelBinaries() []string {
1488 return c.config.productVariables.BoardKernelBinaries
1489}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001490
Yifan Hong42bef8d2020-08-05 14:36:09 -07001491func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1492 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1493}
1494
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001495func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1496 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1497}
1498
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001499func (c *deviceConfig) PlatformSepolicyVersion() string {
1500 return String(c.config.productVariables.PlatformSepolicyVersion)
1501}
1502
Inseob Kima10ef272021-09-15 03:04:53 +00001503func (c *deviceConfig) TotSepolicyVersion() string {
1504 return String(c.config.productVariables.TotSepolicyVersion)
1505}
1506
Inseob Kim843f6642022-01-07 09:11:23 +09001507func (c *deviceConfig) PlatformSepolicyCompatVersions() []string {
1508 return c.config.productVariables.PlatformSepolicyCompatVersions
1509}
1510
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001511func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001512 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1513 return ver
1514 }
1515 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001516}
1517
Inseob Kim14178802021-12-08 22:53:31 +09001518func (c *deviceConfig) BoardPlatVendorPolicy() []string {
1519 return c.config.productVariables.BoardPlatVendorPolicy
1520}
1521
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001522func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1523 return c.config.productVariables.BoardReqdMaskPolicy
1524}
1525
Inseob Kim0f46e7c2021-12-15 22:48:14 +09001526func (c *deviceConfig) BoardSystemExtPublicPrebuiltDirs() []string {
1527 return c.config.productVariables.BoardSystemExtPublicPrebuiltDirs
1528}
1529
1530func (c *deviceConfig) BoardSystemExtPrivatePrebuiltDirs() []string {
1531 return c.config.productVariables.BoardSystemExtPrivatePrebuiltDirs
1532}
1533
1534func (c *deviceConfig) BoardProductPublicPrebuiltDirs() []string {
1535 return c.config.productVariables.BoardProductPublicPrebuiltDirs
1536}
1537
1538func (c *deviceConfig) BoardProductPrivatePrebuiltDirs() []string {
1539 return c.config.productVariables.BoardProductPrivatePrebuiltDirs
1540}
1541
Inseob Kim1a0afcc2022-02-14 23:10:51 +09001542func (c *deviceConfig) SystemExtSepolicyPrebuiltApiDir() string {
1543 return String(c.config.productVariables.SystemExtSepolicyPrebuiltApiDir)
1544}
1545
1546func (c *deviceConfig) ProductSepolicyPrebuiltApiDir() string {
1547 return String(c.config.productVariables.ProductSepolicyPrebuiltApiDir)
1548}
1549
1550func (c *deviceConfig) IsPartnerTrebleSepolicyTestEnabled() bool {
1551 return c.SystemExtSepolicyPrebuiltApiDir() != "" || c.ProductSepolicyPrebuiltApiDir() != ""
1552}
1553
Inseob Kim7cf14652021-01-06 23:06:52 +09001554func (c *deviceConfig) DirectedVendorSnapshot() bool {
1555 return c.config.productVariables.DirectedVendorSnapshot
1556}
1557
1558func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1559 return c.config.productVariables.VendorSnapshotModules
1560}
1561
Jose Galmes4c6895e2021-02-09 07:44:30 -08001562func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1563 return c.config.productVariables.DirectedRecoverySnapshot
1564}
1565
1566func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1567 return c.config.productVariables.RecoverySnapshotModules
1568}
1569
Justin DeMartino383bfb32021-02-24 10:49:43 -08001570func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1571 var ret = make(map[string]bool)
1572 for _, dir := range dirs {
1573 clean := filepath.Clean(dir)
1574 if previous[clean] || ret[clean] {
1575 return nil, fmt.Errorf("Duplicate entry %s", dir)
1576 }
1577 ret[clean] = true
1578 }
1579 return ret, nil
1580}
1581
1582func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1583 dirMap := c.Once(onceKey, func() interface{} {
1584 ret, err := createDirsMap(previous, dirs)
1585 if err != nil {
1586 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1587 }
1588 return ret
1589 })
1590 if dirMap == nil {
1591 return nil
1592 }
1593 return dirMap.(map[string]bool)
1594}
1595
1596var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1597
1598func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1599 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1600 c.config.productVariables.VendorSnapshotDirsExcluded)
1601}
1602
1603var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1604
1605func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1606 excludedMap := c.VendorSnapshotDirsExcludedMap()
1607 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1608 c.config.productVariables.VendorSnapshotDirsIncluded)
1609}
1610
1611var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1612
1613func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1614 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1615 c.config.productVariables.RecoverySnapshotDirsExcluded)
1616}
1617
1618var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1619
1620func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1621 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1622 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1623 c.config.productVariables.RecoverySnapshotDirsIncluded)
1624}
1625
Rob Seymour925aa092021-08-10 20:42:03 +00001626func (c *deviceConfig) HostFakeSnapshotEnabled() bool {
1627 return c.config.productVariables.HostFakeSnapshotEnabled
1628}
1629
Inseob Kim60c32f02020-12-21 22:53:05 +09001630func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1631 if c.config.productVariables.ShippingApiLevel == nil {
1632 return NoneApiLevel
1633 }
1634 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1635 return uncheckedFinalApiLevel(apiLevel)
1636}
1637
Inseob Kim67e5add192021-03-17 18:05:33 +09001638func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1639 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1640}
1641
1642func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1643 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1644}
1645
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001646func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1647 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1648}
1649
Inseob Kim0cac7b42021-02-03 18:16:46 +09001650func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1651 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1652}
1653
Liz Kammer619be462022-01-28 15:13:39 -05001654func (c *deviceConfig) BuildBrokenInputDir(name string) bool {
1655 return InList(name, c.config.productVariables.BuildBrokenInputDirModules)
1656}
1657
Inseob Kim67e5add192021-03-17 18:05:33 +09001658func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1659 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1660}
1661
1662func (c *config) SelinuxIgnoreNeverallows() bool {
1663 return c.productVariables.SelinuxIgnoreNeverallows
1664}
1665
1666func (c *deviceConfig) SepolicySplit() bool {
1667 return c.config.productVariables.SepolicySplit
1668}
1669
Inseob Kima10ef272021-09-15 03:04:53 +00001670func (c *deviceConfig) SepolicyFreezeTestExtraDirs() []string {
1671 return c.config.productVariables.SepolicyFreezeTestExtraDirs
1672}
1673
1674func (c *deviceConfig) SepolicyFreezeTestExtraPrebuiltDirs() []string {
1675 return c.config.productVariables.SepolicyFreezeTestExtraPrebuiltDirs
1676}
1677
Jiyong Parkd163d4d2021-10-12 16:47:43 +09001678func (c *deviceConfig) GenerateAidlNdkPlatformBackend() bool {
1679 return c.config.productVariables.GenerateAidlNdkPlatformBackend
1680}
1681
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001682// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1683// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1684// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1685// module name. The pairs come from Make product variables as a list of colon-separated strings.
1686//
1687// Examples:
1688// - "com.android.art:core-oj"
1689// - "platform:framework"
1690// - "system_ext:foo"
1691//
1692type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001693 // A list of apex components, which can be an apex name,
1694 // or special names like "platform" or "system_ext".
1695 apexes []string
1696
1697 // A list of jar module name components.
1698 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001699}
1700
Jingwen Chenc711fec2020-11-22 23:52:50 -05001701// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001702func (l *ConfiguredJarList) Len() int {
1703 return len(l.jars)
1704}
1705
Jingwen Chenc711fec2020-11-22 23:52:50 -05001706// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001707func (l *ConfiguredJarList) Jar(idx int) string {
1708 return l.jars[idx]
1709}
1710
Jingwen Chenc711fec2020-11-22 23:52:50 -05001711// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001712func (l *ConfiguredJarList) Apex(idx int) string {
1713 return l.apexes[idx]
1714}
1715
Jingwen Chenc711fec2020-11-22 23:52:50 -05001716// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1717// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001718func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1719 return InList(jar, l.jars)
1720}
1721
1722// If the list contains the given (apex, jar) pair.
1723func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1724 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001725 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001726 return true
1727 }
1728 }
1729 return false
1730}
1731
satayev3db35472021-05-06 23:59:58 +01001732// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1733// an empty string if not found.
1734func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1735 if idx := IndexList(jar, l.jars); idx != -1 {
1736 return l.Apex(IndexList(jar, l.jars))
1737 }
1738 return ""
1739}
1740
Jingwen Chenc711fec2020-11-22 23:52:50 -05001741// IndexOfJar returns the first pair with the given jar name on the list, or -1
1742// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001743func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1744 return IndexList(jar, l.jars)
1745}
1746
Paul Duffin7d584e92020-10-23 18:26:03 +01001747func copyAndAppend(list []string, item string) []string {
1748 // Create the result list to be 1 longer than the input.
1749 result := make([]string, len(list)+1)
1750
1751 // Copy the whole input list into the result.
1752 count := copy(result, list)
1753
1754 // Insert the extra item at the end.
1755 result[count] = item
1756
1757 return result
1758}
1759
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001760// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001761func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1762 // Create a copy of the backing arrays before appending to avoid sharing backing
1763 // arrays that are mutated across instances.
1764 apexes := copyAndAppend(l.apexes, apex)
1765 jars := copyAndAppend(l.jars, jar)
1766
1767 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001768}
1769
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001770// Append a list of (apex, jar) pairs to the list.
Jiakai Zhang389a6472021-12-14 18:54:06 +00001771func (l *ConfiguredJarList) AppendList(other *ConfiguredJarList) ConfiguredJarList {
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001772 apexes := make([]string, 0, l.Len()+other.Len())
1773 jars := make([]string, 0, l.Len()+other.Len())
1774
1775 apexes = append(apexes, l.apexes...)
1776 jars = append(jars, l.jars...)
1777
1778 apexes = append(apexes, other.apexes...)
1779 jars = append(jars, other.jars...)
1780
1781 return ConfiguredJarList{apexes, jars}
1782}
1783
Jingwen Chenc711fec2020-11-22 23:52:50 -05001784// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001785func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001786 apexes := make([]string, 0, l.Len())
1787 jars := make([]string, 0, l.Len())
1788
1789 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001790 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001791 if !list.containsApexJarPair(apex, jar) {
1792 apexes = append(apexes, apex)
1793 jars = append(jars, jar)
1794 }
1795 }
1796
Paul Duffin7d584e92020-10-23 18:26:03 +01001797 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001798}
1799
satayevd34eb0c2021-08-06 13:20:28 +01001800// Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list
1801// and any remaining jars that are not on this list.
1802func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) {
satayev8fab6f82021-05-07 00:10:33 +01001803 var apexes []string
1804 var jars []string
1805
1806 for i, jar := range l.jars {
1807 if InList(jar, jarsToKeep) {
1808 apexes = append(apexes, l.apexes[i])
1809 jars = append(jars, jar)
1810 }
1811 }
1812
satayevd34eb0c2021-08-06 13:20:28 +01001813 return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars)
satayev8fab6f82021-05-07 00:10:33 +01001814}
1815
Jingwen Chenc711fec2020-11-22 23:52:50 -05001816// CopyOfJars returns a copy of the list of strings containing jar module name
1817// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001818func (l *ConfiguredJarList) CopyOfJars() []string {
1819 return CopyOf(l.jars)
1820}
1821
Jingwen Chenc711fec2020-11-22 23:52:50 -05001822// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1823// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001824func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1825 pairs := make([]string, 0, l.Len())
1826
1827 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001828 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001829 pairs = append(pairs, apex+":"+jar)
1830 }
1831
1832 return pairs
1833}
1834
Jingwen Chenc711fec2020-11-22 23:52:50 -05001835// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001836func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1837 paths := make(WritablePaths, l.Len())
1838 for i, jar := range l.jars {
1839 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1840 }
1841 return paths
1842}
1843
Paul Duffin5f148ca2021-06-02 17:24:22 +01001844// BuildPathsByModule returns a map from module name to build paths based on the given directory
1845// prefix.
1846func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1847 paths := map[string]WritablePath{}
1848 for _, jar := range l.jars {
1849 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1850 }
1851 return paths
1852}
1853
Jingwen Chenc711fec2020-11-22 23:52:50 -05001854// UnmarshalJSON converts JSON configuration from raw bytes into a
1855// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001856func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1857 // Try and unmarshal into a []string each item of which contains a pair
1858 // <apex>:<jar>.
1859 var list []string
1860 err := json.Unmarshal(b, &list)
1861 if err != nil {
1862 // Did not work so return
1863 return err
1864 }
1865
1866 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1867 if err != nil {
1868 return err
1869 }
1870 l.apexes = apexes
1871 l.jars = jars
1872 return nil
1873}
1874
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001875func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1876 if len(l.apexes) != len(l.jars) {
1877 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1878 }
1879
1880 list := make([]string, 0, len(l.apexes))
1881
1882 for i := 0; i < len(l.apexes); i++ {
1883 list = append(list, l.apexes[i]+":"+l.jars[i])
1884 }
1885
1886 return json.Marshal(list)
1887}
1888
Jingwen Chenc711fec2020-11-22 23:52:50 -05001889// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1890//
1891// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1892// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001893func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001894 if module == "framework-minus-apex" {
1895 return "framework"
1896 }
1897 return module
1898}
1899
Jingwen Chenc711fec2020-11-22 23:52:50 -05001900// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1901// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001902func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1903 paths := make([]string, l.Len())
1904 for i, jar := range l.jars {
1905 apex := l.apexes[i]
1906 name := ModuleStem(jar) + ".jar"
1907
1908 var subdir string
1909 if apex == "platform" {
1910 subdir = "system/framework"
1911 } else if apex == "system_ext" {
1912 subdir = "system_ext/framework"
1913 } else {
1914 subdir = filepath.Join("apex", apex, "javalib")
1915 }
1916
1917 if ostype.Class == Host {
1918 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1919 } else {
1920 paths[i] = filepath.Join("/", subdir, name)
1921 }
1922 }
1923 return paths
1924}
1925
Paul Duffin7d584e92020-10-23 18:26:03 +01001926func (l *ConfiguredJarList) String() string {
1927 var pairs []string
1928 for i := 0; i < l.Len(); i++ {
1929 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1930 }
1931 return strings.Join(pairs, ",")
1932}
1933
Paul Duffin01416602020-10-23 21:04:03 +01001934func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1935 // Now we need to populate this list by splitting each item in the slice of
1936 // pairs and appending them to the appropriate list of apexes or jars.
1937 apexes := make([]string, len(list))
1938 jars := make([]string, len(list))
1939
1940 for i, apexjar := range list {
1941 apex, jar, err := splitConfiguredJarPair(apexjar)
1942 if err != nil {
1943 return nil, nil, err
1944 }
1945 apexes[i] = apex
1946 jars[i] = jar
1947 }
1948
1949 return apexes, jars, nil
1950}
1951
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001952// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001953func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001954 pair := strings.SplitN(str, ":", 2)
1955 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001956 apex := pair[0]
1957 jar := pair[1]
1958 if apex == "" {
1959 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1960 }
1961 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001962 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001963 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001964 }
1965}
1966
Paul Duffin9c3ac962021-02-03 14:11:27 +00001967// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001968func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001969 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1970 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1971 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001972 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001973 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001974 }
1975
Paul Duffin9c3ac962021-02-03 14:11:27 +00001976 var jarList ConfiguredJarList
1977 err = json.Unmarshal(b, &jarList)
1978 if err != nil {
1979 panic(err)
1980 }
1981
1982 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001983}
1984
Jingwen Chenc711fec2020-11-22 23:52:50 -05001985// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001986func EmptyConfiguredJarList() ConfiguredJarList {
1987 return ConfiguredJarList{}
1988}
1989
1990var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1991
1992func (c *config) BootJars() []string {
1993 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001994 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01001995 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001996 }).([]string)
1997}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001998
satayevd604b212021-07-21 14:23:52 +01001999func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002000 return c.productVariables.BootJars
2001}
2002
satayevd604b212021-07-21 14:23:52 +01002003func (c *config) ApexBootJars() ConfiguredJarList {
2004 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002005}
Colin Cross77cdcfd2021-03-12 11:28:25 -08002006
2007func (c *config) RBEWrapper() string {
2008 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
2009}
Colin Cross9b698b62021-12-22 09:55:32 -08002010
2011// UseHostMusl returns true if the host target has been configured to build against musl libc.
2012func (c *config) UseHostMusl() bool {
2013 return Bool(c.productVariables.HostMusl)
2014}