blob: 9fdb2a2a5196ba9d6c54ccb93e07d1506a66b95a [file] [log] [blame]
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001// Copyright (C) 2018 The Android Open Source Project
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
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090015// package apex implements build rules for creating the APEX files which are container for
16// lower-level system components. See https://source.android.com/devices/tech/ota/apex
Jiyong Park48ca7dc2018-10-10 14:01:00 +090017package apex
18
19import (
20 "fmt"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090021 "path/filepath"
Oriol Prieto Gasco17e22902022-05-05 13:52:25 +000022 "regexp"
Colin Crossb614cd42024-10-11 12:52:21 -070023 "slices"
Jiyong Parkab3ceb32018-10-10 14:05:29 +090024 "sort"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090025 "strings"
26
Jiyong Park48ca7dc2018-10-10 14:01:00 +090027 "github.com/google/blueprint"
Colin Crossb614cd42024-10-11 12:52:21 -070028 "github.com/google/blueprint/depset"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090029 "github.com/google/blueprint/proptools"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070030
31 "android/soong/android"
markchien2f59ec92020-09-02 16:23:38 +080032 "android/soong/bpf"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070033 "android/soong/cc"
Spandan Dasfbcd5fe2024-09-30 22:30:39 +000034 "android/soong/dexpreopt"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070035 prebuilt_etc "android/soong/etc"
Jiyong Park12a719c2021-01-07 15:31:24 +090036 "android/soong/filesystem"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070037 "android/soong/java"
Jiyong Park99644e92020-11-17 22:21:02 +090038 "android/soong/rust"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070039 "android/soong/sh"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090040)
41
Jiyong Park8e6d52f2020-11-19 14:37:47 +090042func init() {
Paul Duffin667893c2021-03-09 22:34:13 +000043 registerApexBuildComponents(android.InitRegistrationContext)
44}
Jiyong Park8e6d52f2020-11-19 14:37:47 +090045
Paul Duffin667893c2021-03-09 22:34:13 +000046func registerApexBuildComponents(ctx android.RegistrationContext) {
47 ctx.RegisterModuleType("apex", BundleFactory)
Yu Liu4c212ce2022-10-14 12:20:20 -070048 ctx.RegisterModuleType("apex_test", TestApexBundleFactory)
Paul Duffin667893c2021-03-09 22:34:13 +000049 ctx.RegisterModuleType("apex_vndk", vndkApexBundleFactory)
Cole Faust912bc882023-03-08 12:29:50 -080050 ctx.RegisterModuleType("apex_defaults", DefaultsFactory)
Paul Duffin667893c2021-03-09 22:34:13 +000051 ctx.RegisterModuleType("prebuilt_apex", PrebuiltFactory)
Wei Li1c66fc72022-05-09 23:59:14 -070052 ctx.RegisterModuleType("override_apex", OverrideApexFactory)
Paul Duffin667893c2021-03-09 22:34:13 +000053 ctx.RegisterModuleType("apex_set", apexSetFactory)
54
55 ctx.PreDepsMutators(RegisterPreDepsMutators)
56 ctx.PostDepsMutators(RegisterPostDepsMutators)
Jiyong Park8e6d52f2020-11-19 14:37:47 +090057}
58
59func RegisterPreDepsMutators(ctx android.RegisterMutatorsContext) {
Colin Cross8a962802024-10-09 15:29:27 -070060 ctx.BottomUp("apex_vndk_deps", apexVndkDepsMutator).UsesReverseDependencies()
Jiyong Park8e6d52f2020-11-19 14:37:47 +090061}
62
63func RegisterPostDepsMutators(ctx android.RegisterMutatorsContext) {
Colin Cross8a962802024-10-09 15:29:27 -070064 ctx.TopDown("apex_info", apexInfoMutator)
65 ctx.BottomUp("apex_unique", apexUniqueVariationsMutator)
Paul Duffin28bf7ee2021-05-12 16:41:35 +010066 // Run mark_platform_availability before the apexMutator as the apexMutator needs to know whether
67 // it should create a platform variant.
Colin Cross8a962802024-10-09 15:29:27 -070068 ctx.BottomUp("mark_platform_availability", markPlatformAvailability)
Colin Cross7c035062024-03-28 12:18:42 -070069 ctx.Transition("apex", &apexTransitionMutator{})
Jiyong Park8e6d52f2020-11-19 14:37:47 +090070}
71
72type apexBundleProperties struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090073 // Json manifest file describing meta info of this APEX bundle. Refer to
74 // system/apex/proto/apex_manifest.proto for the schema. Default: "apex_manifest.json"
Jiyong Park8e6d52f2020-11-19 14:37:47 +090075 Manifest *string `android:"path"`
76
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090077 // AndroidManifest.xml file used for the zip container of this APEX bundle. If unspecified,
78 // a default one is automatically generated.
Inseob Kimb1142342024-07-23 13:39:54 +090079 AndroidManifest proptools.Configurable[string] `android:"path,replace_instead_of_append"`
Jiyong Park8e6d52f2020-11-19 14:37:47 +090080
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090081 // Determines the file contexts file for setting the security contexts to files in this APEX
82 // bundle. For platform APEXes, this should points to a file under /system/sepolicy Default:
83 // /system/sepolicy/apex/<module_name>_file_contexts.
Jiyong Park8e6d52f2020-11-19 14:37:47 +090084 File_contexts *string `android:"path"`
85
Jooyung Hanaf730952023-02-28 14:13:38 +090086 // By default, file_contexts is amended by force-labelling / and /apex_manifest.pb as system_file
87 // to avoid mistakes. When set as true, no force-labelling.
88 Use_file_contexts_as_is *bool
89
Jingwen Chendea7a642023-03-28 11:30:50 +000090 // Path to the canned fs config file for customizing file's
91 // uid/gid/mod/capabilities. The content of this file is appended to the
92 // default config, so that the custom entries are preferred. The format is
93 // /<path_or_glob> <uid> <gid> <mode> [capabilities=0x<cap>], where
94 // path_or_glob is a path or glob pattern for a file or set of files,
95 // uid/gid are numerial values of user ID and group ID, mode is octal value
96 // for the file mode, and cap is hexadecimal value for the capability.
Inseob Kimb1142342024-07-23 13:39:54 +090097 Canned_fs_config proptools.Configurable[string] `android:"path,replace_instead_of_append"`
Jiyong Park038e8522021-12-13 23:56:35 +090098
Jiyong Park8e6d52f2020-11-19 14:37:47 +090099 ApexNativeDependencies
100
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900101 Multilib apexMultilibProperties
102
Anton Hansson72e7ffe2023-02-24 11:12:31 +0000103 // List of runtime resource overlays (RROs) that are embedded inside this APEX.
104 Rros []string
105
Anton Hanssone7545852023-02-24 11:06:07 +0000106 // List of bootclasspath fragments that are embedded inside this APEX bundle.
Spandan Das0b1b0082024-11-11 22:50:49 +0000107 Bootclasspath_fragments proptools.Configurable[[]string]
Anton Hanssone7545852023-02-24 11:06:07 +0000108
109 // List of systemserverclasspath fragments that are embedded inside this APEX bundle.
Spandan Das0b1b0082024-11-11 22:50:49 +0000110 Systemserverclasspath_fragments proptools.Configurable[[]string]
Anton Hanssone7545852023-02-24 11:06:07 +0000111
112 // List of java libraries that are embedded inside this APEX bundle.
113 Java_libs []string
114
Sundong Ahn80c04892021-11-23 00:57:19 +0000115 // List of sh binaries that are embedded inside this APEX bundle.
116 Sh_binaries []string
117
Paul Duffin3abc1742021-03-15 19:32:23 +0000118 // List of platform_compat_config files that are embedded inside this APEX bundle.
119 Compat_configs []string
120
Jiyong Park12a719c2021-01-07 15:31:24 +0900121 // List of filesystem images that are embedded inside this APEX bundle.
122 Filesystems []string
123
Jooyung Hana8bd72a2023-11-02 11:56:48 +0900124 // List of module names which we don't want to add as transitive deps. This can be used as
125 // a workaround when the current implementation collects more than necessary. For example,
126 // Rust binaries with prefer_rlib:true add unnecessary dependencies.
127 Unwanted_transitive_deps []string
128
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900129 // Whether this APEX is considered updatable or not. When set to true, this will enforce
130 // additional rules for making sure that the APEX is truly updatable. To be updatable,
131 // min_sdk_version should be set as well. This will also disable the size optimizations like
Mathew Inwoodf8dcf5e2021-02-16 11:40:16 +0000132 // symlinking to the system libs. Default is true.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900133 Updatable *bool
134
Jiyong Parkf4020582021-11-29 12:37:10 +0900135 // Marks that this APEX is designed to be updatable in the future, although it's not
136 // updatable yet. This is used to mimic some of the build behaviors that are applied only to
137 // updatable APEXes. Currently, this disables the size optimization, so that the size of
138 // APEX will not increase when the APEX is actually marked as truly updatable. Default is
139 // false.
140 Future_updatable *bool
141
Jiyong Park1bc84122021-06-22 20:23:05 +0900142 // Whether this APEX can use platform APIs or not. Can be set to true only when `updatable:
143 // false`. Default is false.
144 Platform_apis *bool
145
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900146 // Whether this APEX is installable to one of the partitions like system, vendor, etc.
147 // Default: true.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900148 Installable *bool
149
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900150 // The type of filesystem to use. Either 'ext4', 'f2fs' or 'erofs'. Default 'ext4'.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900151 Payload_fs_type *string
152
153 // For telling the APEX to ignore special handling for system libraries such as bionic.
154 // Default is false.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900155 Ignore_system_library_special_case *bool
156
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900157 // Whenever apex_payload.img of the APEX should not be dm-verity signed. Should be only
158 // used in tests.
159 Test_only_unsigned_payload *bool
160
Mohammad Samiul Islama8008f92020-12-22 10:47:50 +0000161 // Whenever apex should be compressed, regardless of product flag used. Should be only
162 // used in tests.
163 Test_only_force_compression *bool
164
Jooyung Han09c11ad2021-10-27 03:45:31 +0900165 // Put extra tags (signer=<value>) to apexkeys.txt, so that release tools can sign this apex
166 // with the tool to sign payload contents.
167 Custom_sign_tool *string
168
Dennis Shenaf41bc12022-08-03 16:46:43 +0000169 // Whether this is a dynamic common lib apex, if so the native shared libs will be placed
170 // in a special way that include the digest of the lib file under /lib(64)?
171 Dynamic_common_lib_apex *bool
172
Martin Stjernholmbfffae72021-06-24 14:37:13 +0100173 // Canonical name of this APEX bundle. Used to determine the path to the
174 // activated APEX on device (i.e. /apex/<apexVariationName>), and used for the
175 // apex mutator variations. For override_apex modules, this is the name of the
176 // overridden base module.
177 ApexVariationName string `blueprint:"mutated"`
178
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900179 IsCoverageVariant bool `blueprint:"mutated"`
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900180
181 // List of sanitizer names that this APEX is enabled for
182 SanitizerNames []string `blueprint:"mutated"`
183
184 PreventInstall bool `blueprint:"mutated"`
185
186 HideFromMake bool `blueprint:"mutated"`
187
Sam Delmericoca816532023-06-02 14:09:50 -0400188 // Name that dependencies can specify in their apex_available properties to refer to this module.
Sam Delmericoc3df1132023-06-06 12:14:23 -0400189 // If not specified, this defaults to Soong module name. This must be the name of a Soong module.
Sam Delmericoca816532023-06-02 14:09:50 -0400190 Apex_available_name *string
Sam Delmerico6d65a0f2023-06-05 15:55:57 -0400191
192 // Variant version of the mainline module. Must be an integer between 0-9
193 Variant_version *string
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900194}
195
196type ApexNativeDependencies struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900197 // List of native libraries that are embedded inside this APEX.
Cole Faustac92f3e2024-08-20 13:26:52 -0700198 Native_shared_libs proptools.Configurable[[]string]
199
200 // List of JNI libraries that are embedded inside this APEX.
Jihoon Kang371a0372024-10-01 16:44:41 +0000201 Jni_libs proptools.Configurable[[]string]
Cole Faustac92f3e2024-08-20 13:26:52 -0700202
203 // List of rust dyn libraries that are embedded inside this APEX.
204 Rust_dyn_libs []string
205
206 // List of native executables that are embedded inside this APEX.
207 Binaries proptools.Configurable[[]string]
208
209 // List of native tests that are embedded inside this APEX.
210 Tests []string
211
212 // List of filesystem images that are embedded inside this APEX bundle.
213 Filesystems []string
214
215 // List of prebuilt_etcs that are embedded inside this APEX bundle.
216 Prebuilts proptools.Configurable[[]string]
217
218 // List of native libraries to exclude from this APEX.
219 Exclude_native_shared_libs []string
220
221 // List of JNI libraries to exclude from this APEX.
222 Exclude_jni_libs []string
223
224 // List of rust dyn libraries to exclude from this APEX.
225 Exclude_rust_dyn_libs []string
226
227 // List of native executables to exclude from this APEX.
228 Exclude_binaries []string
229
230 // List of native tests to exclude from this APEX.
231 Exclude_tests []string
232
233 // List of filesystem images to exclude from this APEX bundle.
234 Exclude_filesystems []string
235
236 // List of prebuilt_etcs to exclude from this APEX bundle.
237 Exclude_prebuilts []string
238}
239
240type ResolvedApexNativeDependencies struct {
241 // List of native libraries that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900242 Native_shared_libs []string
243
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900244 // List of JNI libraries that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900245 Jni_libs []string
246
Colin Cross70572ed2022-11-02 13:14:20 -0700247 // List of rust dyn libraries that are embedded inside this APEX.
Jiyong Park99644e92020-11-17 22:21:02 +0900248 Rust_dyn_libs []string
249
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900250 // List of native executables that are embedded inside this APEX.
Cole Faustac92f3e2024-08-20 13:26:52 -0700251 Binaries []string
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900252
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900253 // List of native tests that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900254 Tests []string
Jiyong Park06711462021-02-15 17:54:43 +0900255
256 // List of filesystem images that are embedded inside this APEX bundle.
257 Filesystems []string
Colin Cross70572ed2022-11-02 13:14:20 -0700258
Alice Wang4fab2dc2023-10-20 12:05:08 +0000259 // List of prebuilt_etcs that are embedded inside this APEX bundle.
Cole Faustac92f3e2024-08-20 13:26:52 -0700260 Prebuilts []string
Alice Wang4fab2dc2023-10-20 12:05:08 +0000261
Colin Cross70572ed2022-11-02 13:14:20 -0700262 // List of native libraries to exclude from this APEX.
263 Exclude_native_shared_libs []string
264
265 // List of JNI libraries to exclude from this APEX.
266 Exclude_jni_libs []string
267
268 // List of rust dyn libraries to exclude from this APEX.
269 Exclude_rust_dyn_libs []string
270
271 // List of native executables to exclude from this APEX.
272 Exclude_binaries []string
273
274 // List of native tests to exclude from this APEX.
275 Exclude_tests []string
276
277 // List of filesystem images to exclude from this APEX bundle.
278 Exclude_filesystems []string
Alice Wang4fab2dc2023-10-20 12:05:08 +0000279
280 // List of prebuilt_etcs to exclude from this APEX bundle.
281 Exclude_prebuilts []string
Colin Cross70572ed2022-11-02 13:14:20 -0700282}
283
284// Merge combines another ApexNativeDependencies into this one
Colin Crossb2388e32024-10-07 15:05:23 -0700285func (a *ResolvedApexNativeDependencies) Merge(ctx android.BaseModuleContext, b ApexNativeDependencies) {
Cole Faustac92f3e2024-08-20 13:26:52 -0700286 a.Native_shared_libs = append(a.Native_shared_libs, b.Native_shared_libs.GetOrDefault(ctx, nil)...)
Jihoon Kang371a0372024-10-01 16:44:41 +0000287 a.Jni_libs = append(a.Jni_libs, b.Jni_libs.GetOrDefault(ctx, nil)...)
Colin Cross70572ed2022-11-02 13:14:20 -0700288 a.Rust_dyn_libs = append(a.Rust_dyn_libs, b.Rust_dyn_libs...)
Cole Faustac92f3e2024-08-20 13:26:52 -0700289 a.Binaries = append(a.Binaries, b.Binaries.GetOrDefault(ctx, nil)...)
Colin Cross70572ed2022-11-02 13:14:20 -0700290 a.Tests = append(a.Tests, b.Tests...)
291 a.Filesystems = append(a.Filesystems, b.Filesystems...)
Cole Faustac92f3e2024-08-20 13:26:52 -0700292 a.Prebuilts = append(a.Prebuilts, b.Prebuilts.GetOrDefault(ctx, nil)...)
Colin Cross70572ed2022-11-02 13:14:20 -0700293
294 a.Exclude_native_shared_libs = append(a.Exclude_native_shared_libs, b.Exclude_native_shared_libs...)
295 a.Exclude_jni_libs = append(a.Exclude_jni_libs, b.Exclude_jni_libs...)
296 a.Exclude_rust_dyn_libs = append(a.Exclude_rust_dyn_libs, b.Exclude_rust_dyn_libs...)
297 a.Exclude_binaries = append(a.Exclude_binaries, b.Exclude_binaries...)
298 a.Exclude_tests = append(a.Exclude_tests, b.Exclude_tests...)
299 a.Exclude_filesystems = append(a.Exclude_filesystems, b.Exclude_filesystems...)
Alice Wang4fab2dc2023-10-20 12:05:08 +0000300 a.Exclude_prebuilts = append(a.Exclude_prebuilts, b.Exclude_prebuilts...)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900301}
302
303type apexMultilibProperties struct {
304 // Native dependencies whose compile_multilib is "first"
305 First ApexNativeDependencies
306
307 // Native dependencies whose compile_multilib is "both"
308 Both ApexNativeDependencies
309
310 // Native dependencies whose compile_multilib is "prefer32"
311 Prefer32 ApexNativeDependencies
312
313 // Native dependencies whose compile_multilib is "32"
314 Lib32 ApexNativeDependencies
315
316 // Native dependencies whose compile_multilib is "64"
317 Lib64 ApexNativeDependencies
318}
319
320type apexTargetBundleProperties struct {
321 Target struct {
322 // Multilib properties only for android.
323 Android struct {
324 Multilib apexMultilibProperties
325 }
326
327 // Multilib properties only for host.
328 Host struct {
329 Multilib apexMultilibProperties
330 }
331
332 // Multilib properties only for host linux_bionic.
333 Linux_bionic struct {
334 Multilib apexMultilibProperties
335 }
336
337 // Multilib properties only for host linux_glibc.
338 Linux_glibc struct {
339 Multilib apexMultilibProperties
340 }
341 }
342}
343
Jiyong Park59140302020-12-14 18:44:04 +0900344type apexArchBundleProperties struct {
345 Arch struct {
346 Arm struct {
347 ApexNativeDependencies
348 }
349 Arm64 struct {
350 ApexNativeDependencies
351 }
Colin Crossa2aaa2f2022-10-03 12:41:50 -0700352 Riscv64 struct {
353 ApexNativeDependencies
354 }
Jiyong Park59140302020-12-14 18:44:04 +0900355 X86 struct {
356 ApexNativeDependencies
357 }
358 X86_64 struct {
359 ApexNativeDependencies
360 }
361 }
362}
363
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900364// These properties can be used in override_apex to override the corresponding properties in the
365// base apex.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900366type overridableProperties struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900367 // List of APKs that are embedded inside this APEX.
Inseob Kimd23e0d32024-07-23 16:12:33 +0900368 Apps proptools.Configurable[[]string]
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900369
Daniel Norman5a3ce132021-08-26 15:44:43 -0700370 // List of prebuilt files that are embedded inside this APEX bundle.
Inseob Kimd23e0d32024-07-23 16:12:33 +0900371 Prebuilts proptools.Configurable[[]string]
Daniel Norman5a3ce132021-08-26 15:44:43 -0700372
markchien7c803b82021-08-26 22:10:06 +0800373 // List of BPF programs inside this APEX bundle.
374 Bpfs []string
375
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900376 // Names of modules to be overridden. Listed modules can only be other binaries (in Make or
377 // Soong). This does not completely prevent installation of the overridden binaries, but if
378 // both binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will
379 // be removed from PRODUCT_PACKAGES.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900380 Overrides []string
381
Jesse Melhuishec60e252024-03-29 19:08:20 +0000382 Multilib apexMultilibProperties
383
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900384 // Logging parent value.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900385 Logging_parent string
386
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900387 // Apex Container package name. Override value for attribute package:name in
388 // AndroidManifest.xml
Cole Faust12f6ec92024-10-03 13:32:43 -0700389 Package_name proptools.Configurable[string]
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900390
391 // A txt file containing list of files that are allowed to be included in this APEX.
392 Allowed_files *string `android:"path"`
Jaewoong Jung4cfdf7d2021-04-20 16:21:24 -0700393
394 // Name of the apex_key module that provides the private key to sign this APEX bundle.
395 Key *string
396
397 // Specifies the certificate and the private key to sign the zip container of this APEX. If
398 // this is "foo", foo.x509.pem and foo.pk8 under PRODUCT_DEFAULT_DEV_CERTIFICATE are used
399 // as the certificate and the private key, respectively. If this is ":module", then the
400 // certificate and the private key are provided from the android_app_certificate module
401 // named "module".
402 Certificate *string
Oriol Prieto Gascoa07099d2021-10-14 15:33:41 -0400403
404 // Whether this APEX can be compressed or not. Setting this property to false means this
405 // APEX will never be compressed. When set to true, APEX will be compressed if other
406 // conditions, e.g., target device needs to support APEX compression, are also fulfilled.
407 // Default: false.
408 Compressible *bool
Dennis Shene2ed70c2023-01-11 14:15:43 +0000409
410 // Trim against a specific Dynamic Common Lib APEX
411 Trim_against *string
Spandan Das50801e22024-05-13 18:29:45 +0000412
413 // The minimum SDK version that this APEX must support at minimum. This is usually set to
414 // the SDK version that the APEX was first introduced.
415 Min_sdk_version *string
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900416}
417
418type apexBundle struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900419 // Inherited structs
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900420 android.ModuleBase
421 android.DefaultableModuleBase
422 android.OverridableModuleBase
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900423
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900424 // Properties
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900425 properties apexBundleProperties
426 targetProperties apexTargetBundleProperties
Jiyong Park59140302020-12-14 18:44:04 +0900427 archProperties apexArchBundleProperties
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900428 overridableProperties overridableProperties
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900429 vndkProperties apexVndkProperties // only for apex_vndk modules
Jooyung Hanb9518072024-11-22 14:05:20 +0900430 testProperties apexTestProperties // only for apex_test modules
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900431
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900432 ///////////////////////////////////////////////////////////////////////////////////////////
433 // Inputs
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900434
Nicolas Geoffray036ff9a2023-05-15 10:46:38 +0100435 // Keys for apex_payload.img
Jaewoong Jung18aefc12020-12-21 09:11:10 -0800436 publicKeyFile android.Path
437 privateKeyFile android.Path
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900438
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900439 // Cert/priv-key for the zip container
Jaewoong Jung18aefc12020-12-21 09:11:10 -0800440 containerCertificateFile android.Path
441 containerPrivateKeyFile android.Path
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900442
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900443 // Flags for special variants of APEX
444 testApex bool
445 vndkApex bool
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900446
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900447 // File system type of apex_payload.img
448 payloadFsType fsType
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900449
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900450 // Whether to create symlink to the system file instead of having a file inside the apex or
451 // not
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900452 linkToSystemLib bool
453
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900454 // List of files to be included in this APEX. This is filled in the first part of
455 // GenerateAndroidBuildActions.
456 filesInfo []apexFile
457
Colin Crossb614cd42024-10-11 12:52:21 -0700458 // List of files that were excluded by the unwanted_transitive_deps property.
459 unwantedTransitiveFilesInfo []apexFile
460
461 // List of files that were excluded due to conflicts with other variants of the same module.
462 duplicateTransitiveFilesInfo []apexFile
463
Jingwen Chen29743c82023-01-25 17:49:46 +0000464 // List of other module names that should be installed when this APEX gets installed (LOCAL_REQUIRED_MODULES).
465 makeModulesToInstall []string
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900466
467 ///////////////////////////////////////////////////////////////////////////////////////////
468 // Outputs (final and intermediates)
469
470 // Processed apex manifest in JSONson format (for Q)
471 manifestJsonOut android.WritablePath
472
473 // Processed apex manifest in PB format (for R+)
474 manifestPbOut android.WritablePath
475
476 // Processed file_contexts files
477 fileContexts android.WritablePath
478
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900479 // The built APEX file. This is the main product.
Jooyung Hana6d36672022-02-24 13:58:07 +0900480 // Could be .apex or .capex
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900481 outputFile android.WritablePath
482
Jooyung Hana6d36672022-02-24 13:58:07 +0900483 // The built uncompressed .apex file.
484 outputApexFile android.WritablePath
485
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900486 // The built APEX file in app bundle format. This file is not directly installed to the
487 // device. For an APEX, multiple app bundles are created each of which is for a specific ABI
488 // like arm, arm64, x86, etc. Then they are processed again (outside of the Android build
489 // system) to be merged into a single app bundle file that Play accepts. See
490 // vendor/google/build/build_unbundled_mainline_module.sh for more detail.
491 bundleModuleFile android.WritablePath
492
Colin Cross6340ea52021-11-04 12:01:18 -0700493 // Target directory to install this APEX. Usually out/target/product/<device>/<partition>/apex.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900494 installDir android.InstallPath
495
Colin Cross6340ea52021-11-04 12:01:18 -0700496 // Path where this APEX was installed.
497 installedFile android.InstallPath
498
Jooyung Han286957d2023-10-30 16:17:56 +0900499 // fragment for this apex for apexkeys.txt
500 apexKeysPath android.WritablePath
501
Colin Cross6340ea52021-11-04 12:01:18 -0700502 // Installed locations of symlinks for backward compatibility.
503 compatSymlinks android.InstallPaths
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900504
505 // Text file having the list of individual files that are included in this APEX. Used for
506 // debugging purpose.
Cole Faust4e9f5922024-11-13 16:09:23 -0800507 installedFilesFile android.Path
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900508
509 // List of module names that this APEX is including (to be shown via *-deps-info target).
510 // Used for debugging purpose.
511 android.ApexBundleDepsInfo
512
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900513 // Optional list of lint report zip files for apexes that contain java or app modules
514 lintReports android.Paths
515
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000516 isCompressed bool
517
sophiezc80a2b32020-11-12 16:39:19 +0000518 // Path of API coverage generate file
sophiez02347372021-11-02 17:58:02 -0700519 nativeApisUsedByModuleFile android.ModuleOutPath
520 nativeApisBackedByModuleFile android.ModuleOutPath
521 javaApisUsedByModuleFile android.ModuleOutPath
Yu Liueae7b362023-11-16 17:05:47 -0800522
523 aconfigFiles []android.Path
Cole Faust43ddd082024-06-17 12:32:40 -0700524
525 // Required modules, filled out during GenerateAndroidBuildActions and used in AndroidMk
526 required []string
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900527}
528
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900529// apexFileClass represents a type of file that can be included in APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900530type apexFileClass int
531
Jooyung Han72bd2f82019-10-23 16:46:38 +0900532const (
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900533 app apexFileClass = iota
534 appSet
535 etc
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900536 javaSharedLib
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900537 nativeExecutable
538 nativeSharedLib
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900539 nativeTest
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900540 shBinary
Jooyung Han72bd2f82019-10-23 16:46:38 +0900541)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900542
Jingwen Chen2d37b642023-03-14 16:11:38 +0000543var (
544 classes = map[string]apexFileClass{
545 "app": app,
546 "appSet": appSet,
547 "etc": etc,
Jingwen Chen2d37b642023-03-14 16:11:38 +0000548 "javaSharedLib": javaSharedLib,
549 "nativeExecutable": nativeExecutable,
550 "nativeSharedLib": nativeSharedLib,
551 "nativeTest": nativeTest,
Jingwen Chen2d37b642023-03-14 16:11:38 +0000552 "shBinary": shBinary,
553 }
554)
555
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900556// apexFile represents a file in an APEX bundle. This is created during the first half of
557// GenerateAndroidBuildActions by traversing the dependencies of the APEX. Then in the second half
558// of the function, this is used to create commands that copies the files into a staging directory,
Jooyung Haneec1b3f2023-06-20 16:25:59 +0900559// where they are packaged into the APEX file.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900560type apexFile struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900561 // buildFile is put in the installDir inside the APEX.
Bob Badourde6a0872022-04-01 18:00:00 +0000562 builtFile android.Path
563 installDir string
Jiyong Parkce243632023-02-17 18:22:25 +0900564 partition string
Bob Badourde6a0872022-04-01 18:00:00 +0000565 customStem string
566 symlinks []string // additional symlinks
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900567
Colin Crossa6182ab2024-08-21 10:47:44 -0700568 checkbuildTarget android.Path
569
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900570 // Info for Android.mk Module name of `module` in AndroidMk. Note the generated AndroidMk
571 // module for apexFile is named something like <AndroidMk module name>.<apex name>[<apex
572 // suffix>]
573 androidMkModuleName string // becomes LOCAL_MODULE
574 class apexFileClass // becomes LOCAL_MODULE_CLASS
575 moduleDir string // becomes LOCAL_PATH
576 requiredModuleNames []string // becomes LOCAL_REQUIRED_MODULES
577 targetRequiredModuleNames []string // becomes LOCAL_TARGET_REQUIRED_MODULES
578 hostRequiredModuleNames []string // becomes LOCAL_HOST_REQUIRED_MODULES
579 dataPaths []android.DataPath // becomes LOCAL_TEST_DATA
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900580
581 jacocoReportClassesFile android.Path // only for javalibs and apps
Colin Crossb79aa8f2024-09-25 15:41:01 -0700582 lintInfo *java.LintInfo // only for javalibs and apps
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900583 certificate java.Certificate // only for apps
584 overriddenPackageName string // only for apps
585
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900586 transitiveDep bool
587 isJniLib bool
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900588
Jiyong Park57621b22021-01-20 20:33:11 +0900589 multilib string
590
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900591 // TODO(jiyong): remove this
592 module android.Module
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900593}
594
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900595// TODO(jiyong): shorten the arglist using an option struct
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900596func newApexFile(ctx android.BaseModuleContext, builtFile android.Path, androidMkModuleName string, installDir string, class apexFileClass, module android.Module) apexFile {
597 ret := apexFile{
598 builtFile: builtFile,
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900599 installDir: installDir,
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900600 androidMkModuleName: androidMkModuleName,
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900601 class: class,
602 module: module,
603 }
604 if module != nil {
Colin Crossa6182ab2024-08-21 10:47:44 -0700605 if installFilesInfo, ok := android.OtherModuleProvider(ctx, module, android.InstallFilesProvider); ok {
606 ret.checkbuildTarget = installFilesInfo.CheckbuildTarget
607 }
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900608 ret.moduleDir = ctx.OtherModuleDir(module)
Jiyong Parkce243632023-02-17 18:22:25 +0900609 ret.partition = module.PartitionTag(ctx.DeviceConfig())
Jiyong Park57621b22021-01-20 20:33:11 +0900610 ret.multilib = module.Target().Arch.ArchType.Multilib
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900611 }
612 return ret
613}
614
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900615func (af *apexFile) ok() bool {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900616 return af.builtFile != nil && af.builtFile.String() != ""
617}
618
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900619// apexRelativePath returns the relative path of the given path from the install directory of this
620// apexFile.
621// TODO(jiyong): rename this
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900622func (af *apexFile) apexRelativePath(path string) string {
623 return filepath.Join(af.installDir, path)
624}
625
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900626// path returns path of this apex file relative to the APEX root
627func (af *apexFile) path() string {
628 return af.apexRelativePath(af.stem())
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900629}
630
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900631// stem returns the base filename of this apex file
632func (af *apexFile) stem() string {
633 if af.customStem != "" {
634 return af.customStem
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900635 }
636 return af.builtFile.Base()
637}
638
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900639// symlinkPaths returns paths of the symlinks (if any) relative to the APEX root
640func (af *apexFile) symlinkPaths() []string {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900641 var ret []string
642 for _, symlink := range af.symlinks {
643 ret = append(ret, af.apexRelativePath(symlink))
644 }
645 return ret
646}
647
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900648// availableToPlatform tests whether this apexFile is from a module that can be installed to the
649// platform.
650func (af *apexFile) availableToPlatform() bool {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900651 if af.module == nil {
652 return false
653 }
654 if am, ok := af.module.(android.ApexModule); ok {
655 return am.AvailableFor(android.AvailableToPlatform)
656 }
657 return false
658}
659
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900660////////////////////////////////////////////////////////////////////////////////////////////////////
661// Mutators
662//
663// Brief description about mutators for APEX. The following three mutators are the most important
664// ones.
665//
666// 1) DepsMutator: from the properties like native_shared_libs, java_libs, etc., modules are added
667// to the (direct) dependencies of this APEX bundle.
668//
Paul Duffin949abc02020-12-08 10:34:30 +0000669// 2) apexInfoMutator: this is a post-deps mutator, so runs after DepsMutator. Its goal is to
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900670// collect modules that are direct and transitive dependencies of each APEX bundle. The collected
671// modules are marked as being included in the APEX via BuildForApex().
672//
Paul Duffin949abc02020-12-08 10:34:30 +0000673// 3) apexMutator: this is a post-deps mutator that runs after apexInfoMutator. For each module that
674// are marked by the apexInfoMutator, apex variations are created using CreateApexVariations().
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900675
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900676type dependencyTag struct {
677 blueprint.BaseDependencyTag
678 name string
679
680 // Determines if the dependent will be part of the APEX payload. Can be false for the
681 // dependencies to the signing key module, etc.
682 payload bool
Paul Duffin8c535da2021-03-17 14:51:03 +0000683
684 // True if the dependent can only be a source module, false if a prebuilt module is a suitable
685 // replacement. This is needed because some prebuilt modules do not provide all the information
686 // needed by the apex.
687 sourceOnly bool
Paul Duffin4e7d1c42022-05-13 13:12:19 +0000688
689 // If not-nil and an APEX is a member of an SDK then dependencies of that APEX with this tag will
690 // also be added as exported members of that SDK.
691 memberType android.SdkMemberType
Spandan Das746161d2024-08-21 22:47:53 +0000692
693 installable bool
Paul Duffin4e7d1c42022-05-13 13:12:19 +0000694}
695
696func (d *dependencyTag) SdkMemberType(_ android.Module) android.SdkMemberType {
697 return d.memberType
698}
699
700func (d *dependencyTag) ExportMember() bool {
701 return true
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900702}
703
Paul Duffin520917a2022-05-13 13:01:59 +0000704func (d *dependencyTag) String() string {
705 return fmt.Sprintf("apex.dependencyTag{%q}", d.name)
706}
707
708func (d *dependencyTag) ReplaceSourceWithPrebuilt() bool {
Paul Duffin8c535da2021-03-17 14:51:03 +0000709 return !d.sourceOnly
710}
711
Spandan Das746161d2024-08-21 22:47:53 +0000712func (d *dependencyTag) InstallDepNeeded() bool {
713 return d.installable
714}
715
Paul Duffin8c535da2021-03-17 14:51:03 +0000716var _ android.ReplaceSourceWithPrebuilt = &dependencyTag{}
Paul Duffin4e7d1c42022-05-13 13:12:19 +0000717var _ android.SdkMemberDependencyTag = &dependencyTag{}
Paul Duffin8c535da2021-03-17 14:51:03 +0000718
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900719var (
Spandan Das746161d2024-08-21 22:47:53 +0000720 androidAppTag = &dependencyTag{name: "androidApp", payload: true}
721 bpfTag = &dependencyTag{name: "bpf", payload: true}
722 certificateTag = &dependencyTag{name: "certificate"}
Spandan Das746161d2024-08-21 22:47:53 +0000723 executableTag = &dependencyTag{name: "executable", payload: true}
724 fsTag = &dependencyTag{name: "filesystem", payload: true}
725 bcpfTag = &dependencyTag{name: "bootclasspathFragment", payload: true, sourceOnly: true, memberType: java.BootclasspathFragmentSdkMemberType}
726 // The dexpreopt artifacts of apex system server jars are installed onto system image.
727 sscpfTag = &dependencyTag{name: "systemserverclasspathFragment", payload: true, sourceOnly: true, memberType: java.SystemServerClasspathFragmentSdkMemberType, installable: true}
Paul Duffinfcf79852022-07-20 14:18:24 +0000728 compatConfigTag = &dependencyTag{name: "compatConfig", payload: true, sourceOnly: true, memberType: java.CompatConfigSdkMemberType}
Paul Duffin520917a2022-05-13 13:01:59 +0000729 javaLibTag = &dependencyTag{name: "javaLib", payload: true}
730 jniLibTag = &dependencyTag{name: "jniLib", payload: true}
731 keyTag = &dependencyTag{name: "key"}
732 prebuiltTag = &dependencyTag{name: "prebuilt", payload: true}
733 rroTag = &dependencyTag{name: "rro", payload: true}
734 sharedLibTag = &dependencyTag{name: "sharedLib", payload: true}
Paul Duffin520917a2022-05-13 13:01:59 +0000735 testTag = &dependencyTag{name: "test", payload: true}
736 shBinaryTag = &dependencyTag{name: "shBinary", payload: true}
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900737)
738
739// TODO(jiyong): shorten this function signature
Cole Faustac92f3e2024-08-20 13:26:52 -0700740func addDependenciesForNativeModules(ctx android.BottomUpMutatorContext, nativeModules ResolvedApexNativeDependencies, target android.Target, imageVariation string) {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900741 binVariations := target.Variations()
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900742 libVariations := append(target.Variations(), blueprint.Variation{Mutator: "link", Variation: "shared"})
Ivan Lozano0a468a42024-05-13 21:03:34 -0400743 rustLibVariations := append(
744 target.Variations(), []blueprint.Variation{
745 {Mutator: "rust_libraries", Variation: "dylib"},
Ivan Lozano0a468a42024-05-13 21:03:34 -0400746 }...,
747 )
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900748
Jooyung Han8d4a1f02023-08-23 13:54:08 +0900749 // Append "image" variation
750 binVariations = append(binVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
751 libVariations = append(libVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
752 rustLibVariations = append(rustLibVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900753
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900754 // Use *FarVariation* to be able to depend on modules having conflicting variations with
755 // this module. This is required since arch variant of an APEX bundle is 'common' but it is
756 // 'arm' or 'arm64' for native shared libs.
Colin Cross70572ed2022-11-02 13:14:20 -0700757 ctx.AddFarVariationDependencies(binVariations, executableTag,
Cole Faustac92f3e2024-08-20 13:26:52 -0700758 android.RemoveListFromList(nativeModules.Binaries, nativeModules.Exclude_binaries)...)
Colin Cross70572ed2022-11-02 13:14:20 -0700759 ctx.AddFarVariationDependencies(binVariations, testTag,
760 android.RemoveListFromList(nativeModules.Tests, nativeModules.Exclude_tests)...)
761 ctx.AddFarVariationDependencies(libVariations, jniLibTag,
762 android.RemoveListFromList(nativeModules.Jni_libs, nativeModules.Exclude_jni_libs)...)
763 ctx.AddFarVariationDependencies(libVariations, sharedLibTag,
764 android.RemoveListFromList(nativeModules.Native_shared_libs, nativeModules.Exclude_native_shared_libs)...)
765 ctx.AddFarVariationDependencies(rustLibVariations, sharedLibTag,
766 android.RemoveListFromList(nativeModules.Rust_dyn_libs, nativeModules.Exclude_rust_dyn_libs)...)
767 ctx.AddFarVariationDependencies(target.Variations(), fsTag,
768 android.RemoveListFromList(nativeModules.Filesystems, nativeModules.Exclude_filesystems)...)
Alice Wang4fab2dc2023-10-20 12:05:08 +0000769 ctx.AddFarVariationDependencies(target.Variations(), prebuiltTag,
Cole Faustac92f3e2024-08-20 13:26:52 -0700770 android.RemoveListFromList(nativeModules.Prebuilts, nativeModules.Exclude_prebuilts)...)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900771}
772
773func (a *apexBundle) combineProperties(ctx android.BottomUpMutatorContext) {
Jooyung Han8d4a1f02023-08-23 13:54:08 +0900774 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Android.Multilib, nil)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900775}
776
Jooyung Hand045ebc2022-12-06 15:23:57 +0900777// getImageVariationPair returns a pair for the image variation name as its
778// prefix and suffix. The prefix indicates whether it's core/vendor/product and the
Kiyoung Kimb5fdb2e2024-01-03 14:24:34 +0900779// suffix indicates the vndk version for vendor/product if vndk is enabled.
Jooyung Hand045ebc2022-12-06 15:23:57 +0900780// getImageVariation can simply join the result of this function to get the
781// image variation name.
Kiyoung Kim4e765b12024-04-04 17:33:42 +0900782func (a *apexBundle) getImageVariationPair() (string, string) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900783 if a.vndkApex {
Kiyoung Kimfa13ff12024-03-18 16:01:19 +0900784 return cc.VendorVariationPrefix, a.vndkVersion()
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900785 }
786
Kiyoung Kimb5fdb2e2024-01-03 14:24:34 +0900787 prefix := android.CoreVariation
Kiyoung Kim4e765b12024-04-04 17:33:42 +0900788 if a.SocSpecific() || a.DeviceSpecific() {
Jihoon Kang47e91842024-06-19 00:51:16 +0000789 prefix = android.VendorVariation
Kiyoung Kim4e765b12024-04-04 17:33:42 +0900790 } else if a.ProductSpecific() {
Jihoon Kang47e91842024-06-19 00:51:16 +0000791 prefix = android.ProductVariation
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900792 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900793
Kiyoung Kim4e765b12024-04-04 17:33:42 +0900794 return prefix, ""
Jooyung Hand045ebc2022-12-06 15:23:57 +0900795}
796
797// getImageVariation returns the image variant name for this apexBundle. In most cases, it's simply
798// android.CoreVariation, but gets complicated for the vendor APEXes and the VNDK APEX.
Kiyoung Kim4e765b12024-04-04 17:33:42 +0900799func (a *apexBundle) getImageVariation() string {
800 prefix, vndkVersion := a.getImageVariationPair()
Jooyung Hand045ebc2022-12-06 15:23:57 +0900801 return prefix + vndkVersion
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900802}
803
804func (a *apexBundle) DepsMutator(ctx android.BottomUpMutatorContext) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900805 // apexBundle is a multi-arch targets module. Arch variant of apexBundle is set to 'common'.
806 // arch-specific targets are enabled by the compile_multilib setting of the apex bundle. For
807 // each target os/architectures, appropriate dependencies are selected by their
808 // target.<os>.multilib.<type> groups and are added as (direct) dependencies.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900809 targets := ctx.MultiTargets()
Kiyoung Kim4e765b12024-04-04 17:33:42 +0900810 imageVariation := a.getImageVariation()
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900811
812 a.combineProperties(ctx)
813
814 has32BitTarget := false
815 for _, target := range targets {
816 if target.Arch.ArchType.Multilib == "lib32" {
817 has32BitTarget = true
Paul Duffin7d74e7b2020-03-06 12:30:13 +0000818 }
819 }
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900820 for i, target := range targets {
Cole Faustac92f3e2024-08-20 13:26:52 -0700821 var deps ResolvedApexNativeDependencies
Paul Duffin7d74e7b2020-03-06 12:30:13 +0000822
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900823 // Add native modules targeting both ABIs. When multilib.* is omitted for
824 // native_shared_libs/jni_libs/tests, it implies multilib.both
Inseob Kimd23e0d32024-07-23 16:12:33 +0900825 deps.Merge(ctx, a.properties.Multilib.Both)
826 deps.Merge(ctx, ApexNativeDependencies{
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900827 Native_shared_libs: a.properties.Native_shared_libs,
Colin Cross49f1a8f2024-10-23 13:04:15 -0700828 Rust_dyn_libs: a.properties.Rust_dyn_libs,
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900829 Tests: a.properties.Tests,
830 Jni_libs: a.properties.Jni_libs,
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900831 })
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900832
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900833 // Add native modules targeting the first ABI When multilib.* is omitted for
834 // binaries, it implies multilib.first
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900835 isPrimaryAbi := i == 0
836 if isPrimaryAbi {
Inseob Kimd23e0d32024-07-23 16:12:33 +0900837 deps.Merge(ctx, a.properties.Multilib.First)
838 deps.Merge(ctx, ApexNativeDependencies{
Cole Faustac92f3e2024-08-20 13:26:52 -0700839 Native_shared_libs: proptools.NewConfigurable[[]string](nil, nil),
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900840 Tests: nil,
Jihoon Kang371a0372024-10-01 16:44:41 +0000841 Jni_libs: proptools.NewConfigurable[[]string](nil, nil),
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900842 Binaries: a.properties.Binaries,
843 })
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900844 }
845
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900846 // Add native modules targeting either 32-bit or 64-bit ABI
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900847 switch target.Arch.ArchType.Multilib {
848 case "lib32":
Inseob Kimd23e0d32024-07-23 16:12:33 +0900849 deps.Merge(ctx, a.properties.Multilib.Lib32)
850 deps.Merge(ctx, a.properties.Multilib.Prefer32)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900851 case "lib64":
Inseob Kimd23e0d32024-07-23 16:12:33 +0900852 deps.Merge(ctx, a.properties.Multilib.Lib64)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900853 if !has32BitTarget {
Inseob Kimd23e0d32024-07-23 16:12:33 +0900854 deps.Merge(ctx, a.properties.Multilib.Prefer32)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900855 }
856 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900857
Jiyong Park59140302020-12-14 18:44:04 +0900858 // Add native modules targeting a specific arch variant
859 switch target.Arch.ArchType {
860 case android.Arm:
Inseob Kimd23e0d32024-07-23 16:12:33 +0900861 deps.Merge(ctx, a.archProperties.Arch.Arm.ApexNativeDependencies)
Jiyong Park59140302020-12-14 18:44:04 +0900862 case android.Arm64:
Inseob Kimd23e0d32024-07-23 16:12:33 +0900863 deps.Merge(ctx, a.archProperties.Arch.Arm64.ApexNativeDependencies)
Colin Crossa2aaa2f2022-10-03 12:41:50 -0700864 case android.Riscv64:
Inseob Kimd23e0d32024-07-23 16:12:33 +0900865 deps.Merge(ctx, a.archProperties.Arch.Riscv64.ApexNativeDependencies)
Jiyong Park59140302020-12-14 18:44:04 +0900866 case android.X86:
Inseob Kimd23e0d32024-07-23 16:12:33 +0900867 deps.Merge(ctx, a.archProperties.Arch.X86.ApexNativeDependencies)
Jiyong Park59140302020-12-14 18:44:04 +0900868 case android.X86_64:
Inseob Kimd23e0d32024-07-23 16:12:33 +0900869 deps.Merge(ctx, a.archProperties.Arch.X86_64.ApexNativeDependencies)
Jiyong Park59140302020-12-14 18:44:04 +0900870 default:
871 panic(fmt.Errorf("unsupported arch %v\n", ctx.Arch().ArchType))
872 }
873
Colin Cross70572ed2022-11-02 13:14:20 -0700874 addDependenciesForNativeModules(ctx, deps, target, imageVariation)
Riya Thakur654461c2024-02-27 07:21:05 +0000875 if isPrimaryAbi {
876 ctx.AddFarVariationDependencies([]blueprint.Variation{
877 {Mutator: "os", Variation: target.OsVariation()},
878 {Mutator: "arch", Variation: target.ArchVariation()},
879 }, shBinaryTag, a.properties.Sh_binaries...)
880 }
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900881 }
882
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900883 // Common-arch dependencies come next
884 commonVariation := ctx.Config().AndroidCommonTarget.Variations()
Anton Hansson72e7ffe2023-02-24 11:12:31 +0000885 ctx.AddFarVariationDependencies(commonVariation, rroTag, a.properties.Rros...)
Spandan Das0b1b0082024-11-11 22:50:49 +0000886 ctx.AddFarVariationDependencies(commonVariation, bcpfTag, a.properties.Bootclasspath_fragments.GetOrDefault(ctx, nil)...)
887 ctx.AddFarVariationDependencies(commonVariation, sscpfTag, a.properties.Systemserverclasspath_fragments.GetOrDefault(ctx, nil)...)
Anton Hanssone7545852023-02-24 11:06:07 +0000888 ctx.AddFarVariationDependencies(commonVariation, javaLibTag, a.properties.Java_libs...)
Jiyong Park12a719c2021-01-07 15:31:24 +0900889 ctx.AddFarVariationDependencies(commonVariation, fsTag, a.properties.Filesystems...)
Paul Duffin0b817782021-03-17 15:02:19 +0000890 ctx.AddFarVariationDependencies(commonVariation, compatConfigTag, a.properties.Compat_configs...)
Andrei Onea115e7e72020-06-05 21:14:03 +0100891}
892
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900893// DepsMutator for the overridden properties.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900894func (a *apexBundle) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
895 if a.overridableProperties.Allowed_files != nil {
896 android.ExtractSourceDeps(ctx, a.overridableProperties.Allowed_files)
Andrei Onea115e7e72020-06-05 21:14:03 +0100897 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900898
899 commonVariation := ctx.Config().AndroidCommonTarget.Variations()
Cole Faustbf1d92a2024-07-29 12:24:25 -0700900 ctx.AddFarVariationDependencies(commonVariation, androidAppTag, a.overridableProperties.Apps.GetOrDefault(ctx, nil)...)
markchien7c803b82021-08-26 22:10:06 +0800901 ctx.AddFarVariationDependencies(commonVariation, bpfTag, a.overridableProperties.Bpfs...)
Cole Faustbf1d92a2024-07-29 12:24:25 -0700902 if prebuilts := a.overridableProperties.Prebuilts.GetOrDefault(ctx, nil); len(prebuilts) > 0 {
Daniel Norman5a3ce132021-08-26 15:44:43 -0700903 // For prebuilt_etc, use the first variant (64 on 64/32bit device, 32 on 32bit device)
904 // regardless of the TARGET_PREFER_* setting. See b/144532908
905 arches := ctx.DeviceConfig().Arches()
906 if len(arches) != 0 {
907 archForPrebuiltEtc := arches[0]
908 for _, arch := range arches {
909 // Prefer 64-bit arch if there is any
910 if arch.ArchType.Multilib == "lib64" {
911 archForPrebuiltEtc = arch
912 break
913 }
914 }
915 ctx.AddFarVariationDependencies([]blueprint.Variation{
916 {Mutator: "os", Variation: ctx.Os().String()},
917 {Mutator: "arch", Variation: archForPrebuiltEtc.String()},
918 }, prebuiltTag, prebuilts...)
919 }
920 }
Jaewoong Jung4cfdf7d2021-04-20 16:21:24 -0700921
922 // Dependencies for signing
923 if String(a.overridableProperties.Key) == "" {
924 ctx.PropertyErrorf("key", "missing")
925 return
926 }
927 ctx.AddDependency(ctx.Module(), keyTag, String(a.overridableProperties.Key))
928
929 cert := android.SrcIsModule(a.getCertString(ctx))
930 if cert != "" {
931 ctx.AddDependency(ctx.Module(), certificateTag, cert)
932 // empty cert is not an error. Cert and private keys will be directly found under
933 // PRODUCT_DEFAULT_DEV_CERTIFICATE
934 }
Andrei Onea115e7e72020-06-05 21:14:03 +0100935}
936
Paul Duffina7d6a892020-12-07 17:39:59 +0000937var _ ApexInfoMutator = (*apexBundle)(nil)
938
Martin Stjernholmbfffae72021-06-24 14:37:13 +0100939func (a *apexBundle) ApexVariationName() string {
940 return a.properties.ApexVariationName
941}
942
Paul Duffina7d6a892020-12-07 17:39:59 +0000943// ApexInfoMutator is responsible for collecting modules that need to have apex variants. They are
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900944// identified by doing a graph walk starting from an apexBundle. Basically, all the (direct and
945// indirect) dependencies are collected. But a few types of modules that shouldn't be included in
946// the apexBundle (e.g. stub libraries) are not collected. Note that a single module can be depended
947// on by multiple apexBundles. In that case, the module is collected for all of the apexBundles.
Paul Duffin949abc02020-12-08 10:34:30 +0000948//
949// For each dependency between an apex and an ApexModule an ApexInfo object describing the apex
950// is passed to that module's BuildForApex(ApexInfo) method which collates them all in a list.
951// The apexMutator uses that list to create module variants for the apexes to which it belongs.
952// The relationship between module variants and apexes is not one-to-one as variants will be
953// shared between compatible apexes.
Paul Duffina7d6a892020-12-07 17:39:59 +0000954func (a *apexBundle) ApexInfoMutator(mctx android.TopDownMutatorContext) {
Jooyung Handf78e212020-07-22 15:54:47 +0900955
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900956 // The VNDK APEX is special. For the APEX, the membership is described in a very different
957 // way. There is no dependency from the VNDK APEX to the VNDK libraries. Instead, VNDK
958 // libraries are self-identified by their vndk.enabled properties. There is no need to run
959 // this mutator for the APEX as nothing will be collected. So, let's return fast.
960 if a.vndkApex {
961 return
962 }
963
Colin Cross56a83212020-09-15 18:30:11 -0700964 continueApexDepsWalk := func(child, parent android.Module) bool {
Jooyung Han698dd9f2020-07-22 15:17:19 +0900965 am, ok := child.(android.ApexModule)
966 if !ok || !am.CanHaveApexVariants() {
967 return false
Jiyong Parkf760cae2020-02-12 07:53:12 +0900968 }
Paul Duffin573989d2021-03-17 13:25:29 +0000969 depTag := mctx.OtherModuleDependencyTag(child)
970
971 // Check to see if the tag always requires that the child module has an apex variant for every
972 // apex variant of the parent module. If it does not then it is still possible for something
973 // else, e.g. the DepIsInSameApex(...) method to decide that a variant is required.
974 if required, ok := depTag.(android.AlwaysRequireApexVariantTag); ok && required.AlwaysRequireApexVariant() {
975 return true
976 }
Paul Duffin4c3e8e22021-03-18 15:41:29 +0000977 if !android.IsDepInSameApex(mctx, parent, child) {
Jooyung Han698dd9f2020-07-22 15:17:19 +0900978 return false
979 }
Kiyoung Kimcbe2ba02023-09-07 16:00:04 +0900980
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900981 // By default, all the transitive dependencies are collected, unless filtered out
982 // above.
Colin Cross56a83212020-09-15 18:30:11 -0700983 return true
984 }
985
Colin Crossbb674a12024-11-18 14:24:23 -0800986 android.SetProvider(mctx, android.ApexBundleInfoProvider, android.ApexBundleInfo{})
Colin Cross56a83212020-09-15 18:30:11 -0700987
Jooyung Haned124c32021-01-26 11:43:46 +0900988 minSdkVersion := a.minSdkVersion(mctx)
989 // When min_sdk_version is not set, the apex is built against FutureApiLevel.
990 if minSdkVersion.IsNone() {
991 minSdkVersion = android.FutureApiLevel
992 }
993
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900994 // This is the main part of this mutator. Mark the collected dependencies that they need to
995 // be built for this apexBundle.
Jiyong Park78349b52021-05-12 17:13:56 +0900996
Jooyung Han63dff462023-02-09 00:11:27 +0000997 apexVariationName := mctx.ModuleName() // could be com.android.foo
Spandan Das50801e22024-05-13 18:29:45 +0000998 if overridable, ok := mctx.Module().(android.OverridableModule); ok && overridable.GetOverriddenBy() != "" {
999 // use the overridden name com.mycompany.android.foo
1000 apexVariationName = overridable.GetOverriddenBy()
1001 }
1002
Martin Stjernholmbfffae72021-06-24 14:37:13 +01001003 a.properties.ApexVariationName = apexVariationName
Spandan Dase8173a82023-04-12 17:14:11 +00001004 testApexes := []string{}
1005 if a.testApex {
1006 testApexes = []string{apexVariationName}
1007 }
Colin Cross56a83212020-09-15 18:30:11 -07001008 apexInfo := android.ApexInfo{
Martin Stjernholmbfffae72021-06-24 14:37:13 +01001009 ApexVariationName: apexVariationName,
Jiyong Park4eab21d2021-04-15 15:17:54 +09001010 MinSdkVersion: minSdkVersion,
Colin Cross56a83212020-09-15 18:30:11 -07001011 Updatable: a.Updatable(),
Jiyong Park1bc84122021-06-22 20:23:05 +09001012 UsePlatformApis: a.UsePlatformApis(),
Martin Stjernholmbfffae72021-06-24 14:37:13 +01001013 InApexVariants: []string{apexVariationName},
Spandan Dase8173a82023-04-12 17:14:11 +00001014 TestApexes: testApexes,
Spandan Das33bbeb22024-06-18 23:28:25 +00001015 BaseApexName: mctx.ModuleName(),
Spandan Das003452f2024-09-06 00:56:25 +00001016 ApexAvailableName: proptools.String(a.properties.Apex_available_name),
Colin Cross56a83212020-09-15 18:30:11 -07001017 }
Colin Cross56a83212020-09-15 18:30:11 -07001018 mctx.WalkDeps(func(child, parent android.Module) bool {
1019 if !continueApexDepsWalk(child, parent) {
1020 return false
1021 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001022 child.(android.ApexModule).BuildForApex(apexInfo) // leave a mark!
Jooyung Han698dd9f2020-07-22 15:17:19 +09001023 return true
Jiyong Parkf760cae2020-02-12 07:53:12 +09001024 })
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001025}
1026
Paul Duffina7d6a892020-12-07 17:39:59 +00001027type ApexInfoMutator interface {
Martin Stjernholmbfffae72021-06-24 14:37:13 +01001028 // ApexVariationName returns the name of the APEX variation to use in the apex
1029 // mutator etc. It is the same name as ApexInfo.ApexVariationName.
1030 ApexVariationName() string
1031
Paul Duffina7d6a892020-12-07 17:39:59 +00001032 // ApexInfoMutator implementations must call BuildForApex(ApexInfo) on any modules that are
1033 // depended upon by an apex and which require an apex specific variant.
1034 ApexInfoMutator(android.TopDownMutatorContext)
1035}
1036
1037// apexInfoMutator delegates the work of identifying which modules need an ApexInfo and apex
1038// specific variant to modules that support the ApexInfoMutator.
Spandan Das42e89502022-05-06 22:12:55 +00001039// It also propagates updatable=true to apps of updatable apexes
Paul Duffina7d6a892020-12-07 17:39:59 +00001040func apexInfoMutator(mctx android.TopDownMutatorContext) {
Cole Fausta963b942024-04-11 17:43:00 -07001041 if !mctx.Module().Enabled(mctx) {
Paul Duffina7d6a892020-12-07 17:39:59 +00001042 return
1043 }
1044
1045 if a, ok := mctx.Module().(ApexInfoMutator); ok {
1046 a.ApexInfoMutator(mctx)
Paul Duffina7d6a892020-12-07 17:39:59 +00001047 }
Colin Cross7c035062024-03-28 12:18:42 -07001048
1049 if am, ok := mctx.Module().(android.ApexModule); ok {
1050 android.ApexInfoMutator(mctx, am)
1051 }
Spandan Das42e89502022-05-06 22:12:55 +00001052}
1053
Spandan Das08c911f2022-01-21 22:07:26 +00001054// TODO: b/215736885 Whittle the denylist
1055// Transitive deps of certain mainline modules baseline NewApi errors
1056// Skip these mainline modules for now
1057var (
1058 skipStrictUpdatabilityLintAllowlist = []string{
Cole Fauste17f93a2024-01-18 11:25:59 -08001059 // go/keep-sorted start
1060 "PackageManagerTestApex",
1061 "com.android.adservices",
1062 "com.android.appsearch",
Spandan Das08c911f2022-01-21 22:07:26 +00001063 "com.android.art",
1064 "com.android.art.debug",
Cole Fauste17f93a2024-01-18 11:25:59 -08001065 "com.android.btservices",
1066 "com.android.cellbroadcast",
1067 "com.android.configinfrastructure",
Spandan Das08c911f2022-01-21 22:07:26 +00001068 "com.android.conscrypt",
Cole Fauste17f93a2024-01-18 11:25:59 -08001069 "com.android.extservices",
1070 "com.android.extservices_tplus",
1071 "com.android.healthfitness",
1072 "com.android.ipsec",
Spandan Das08c911f2022-01-21 22:07:26 +00001073 "com.android.media",
Cole Fauste17f93a2024-01-18 11:25:59 -08001074 "com.android.mediaprovider",
1075 "com.android.ondevicepersonalization",
1076 "com.android.os.statsd",
1077 "com.android.permission",
Yisroel Forta154796c2024-02-13 00:16:36 +00001078 "com.android.profiling",
Cole Fauste17f93a2024-01-18 11:25:59 -08001079 "com.android.rkpd",
1080 "com.android.scheduling",
1081 "com.android.tethering",
1082 "com.android.uwb",
1083 "com.android.wifi",
Spandan Das08c911f2022-01-21 22:07:26 +00001084 "test_com.android.art",
Cole Fauste17f93a2024-01-18 11:25:59 -08001085 "test_com.android.cellbroadcast",
Spandan Das08c911f2022-01-21 22:07:26 +00001086 "test_com.android.conscrypt",
Cole Fauste17f93a2024-01-18 11:25:59 -08001087 "test_com.android.extservices",
1088 "test_com.android.ipsec",
Spandan Das08c911f2022-01-21 22:07:26 +00001089 "test_com.android.media",
Cole Fauste17f93a2024-01-18 11:25:59 -08001090 "test_com.android.mediaprovider",
1091 "test_com.android.os.statsd",
1092 "test_com.android.permission",
1093 "test_com.android.wifi",
Dmitrii Ishcheikinf8821072024-06-05 15:20:48 +00001094 "test_imgdiag_com.android.art",
Spandan Das08c911f2022-01-21 22:07:26 +00001095 "test_jitzygote_com.android.art",
Cole Fauste17f93a2024-01-18 11:25:59 -08001096 // go/keep-sorted end
Spandan Das08c911f2022-01-21 22:07:26 +00001097 }
1098)
1099
Colin Cross87427352024-09-25 15:41:19 -07001100func (a *apexBundle) checkStrictUpdatabilityLinting(mctx android.ModuleContext) bool {
Spandan Das50801e22024-05-13 18:29:45 +00001101 // The allowlist contains the base apex name, so use that instead of the ApexVariationName
1102 return a.Updatable() && !android.InList(mctx.ModuleName(), skipStrictUpdatabilityLintAllowlist)
Spandan Das08c911f2022-01-21 22:07:26 +00001103}
1104
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001105// apexUniqueVariationsMutator checks if any dependencies use unique apex variations. If so, use
1106// unique apex variations for this module. See android/apex.go for more about unique apex variant.
1107// TODO(jiyong): move this to android/apex.go?
Colin Crossaede88c2020-08-11 12:17:01 -07001108func apexUniqueVariationsMutator(mctx android.BottomUpMutatorContext) {
Cole Fausta963b942024-04-11 17:43:00 -07001109 if !mctx.Module().Enabled(mctx) {
Colin Crossaede88c2020-08-11 12:17:01 -07001110 return
1111 }
1112 if am, ok := mctx.Module().(android.ApexModule); ok {
Colin Cross56a83212020-09-15 18:30:11 -07001113 android.UpdateUniqueApexVariationsForDeps(mctx, am)
1114 }
1115}
1116
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001117// markPlatformAvailability marks whether or not a module can be available to platform. A module
1118// cannot be available to platform if 1) it is explicitly marked as not available (i.e.
1119// "//apex_available:platform" is absent) or 2) it depends on another module that isn't (or can't
1120// be) available to platform
1121// TODO(jiyong): move this to android/apex.go?
Jiyong Park89e850a2020-04-07 16:37:39 +09001122func markPlatformAvailability(mctx android.BottomUpMutatorContext) {
Jooyung Han8d4a1f02023-08-23 13:54:08 +09001123 // Recovery is not considered as platform
1124 if mctx.Module().InstallInRecovery() {
Jiyong Park89e850a2020-04-07 16:37:39 +09001125 return
1126 }
1127
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001128 am, ok := mctx.Module().(android.ApexModule)
1129 if !ok {
1130 return
1131 }
Jiyong Park89e850a2020-04-07 16:37:39 +09001132
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001133 availableToPlatform := am.AvailableFor(android.AvailableToPlatform)
Jiyong Park89e850a2020-04-07 16:37:39 +09001134
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001135 // If any of the dep is not available to platform, this module is also considered as being
1136 // not available to platform even if it has "//apex_available:platform"
1137 mctx.VisitDirectDeps(func(child android.Module) {
Paul Duffin4c3e8e22021-03-18 15:41:29 +00001138 if !android.IsDepInSameApex(mctx, am, child) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001139 // if the dependency crosses apex boundary, don't consider it
1140 return
Jiyong Park89e850a2020-04-07 16:37:39 +09001141 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001142 if dep, ok := child.(android.ApexModule); ok && dep.NotAvailableForPlatform() {
1143 availableToPlatform = false
1144 // TODO(b/154889534) trigger an error when 'am' has
1145 // "//apex_available:platform"
Jiyong Park89e850a2020-04-07 16:37:39 +09001146 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001147 })
Jiyong Park89e850a2020-04-07 16:37:39 +09001148
Paul Duffinb5769c12021-05-12 16:16:51 +01001149 // Exception 1: check to see if the module always requires it.
1150 if am.AlwaysRequiresPlatformApexVariant() {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001151 availableToPlatform = true
1152 }
1153
1154 // Exception 2: bootstrap bionic libraries are also always available to platform
1155 if cc.InstallToBootstrap(mctx.ModuleName(), mctx.Config()) {
1156 availableToPlatform = true
1157 }
1158
1159 if !availableToPlatform {
1160 am.SetNotAvailableForPlatform()
Jiyong Park89e850a2020-04-07 16:37:39 +09001161 }
1162}
1163
Colin Cross7c035062024-03-28 12:18:42 -07001164type apexTransitionMutator struct{}
Colin Cross56a83212020-09-15 18:30:11 -07001165
Colin Cross7c035062024-03-28 12:18:42 -07001166func (a *apexTransitionMutator) Split(ctx android.BaseModuleContext) []string {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001167 // apexBundle itself is mutated so that it and its dependencies have the same apex variant.
Colin Cross7c035062024-03-28 12:18:42 -07001168 if ai, ok := ctx.Module().(ApexInfoMutator); ok && apexModuleTypeRequiresVariant(ai) {
Spandan Das50801e22024-05-13 18:29:45 +00001169 if overridable, ok := ctx.Module().(android.OverridableModule); ok && overridable.GetOverriddenBy() != "" {
1170 return []string{overridable.GetOverriddenBy()}
Jiyong Park5d790c32019-11-15 18:40:32 +09001171 }
Spandan Das50801e22024-05-13 18:29:45 +00001172 return []string{ai.ApexVariationName()}
1173 } else if _, ok := ctx.Module().(*OverrideApex); ok {
1174 return []string{ctx.ModuleName()}
Colin Cross7c035062024-03-28 12:18:42 -07001175 }
1176 return []string{""}
1177}
1178
1179func (a *apexTransitionMutator) OutgoingTransition(ctx android.OutgoingTransitionContext, sourceVariation string) string {
1180 return sourceVariation
1181}
1182
1183func (a *apexTransitionMutator) IncomingTransition(ctx android.IncomingTransitionContext, incomingVariation string) string {
1184 if am, ok := ctx.Module().(android.ApexModule); ok && am.CanHaveApexVariants() {
1185 return android.IncomingApexTransition(ctx, incomingVariation)
1186 } else if ai, ok := ctx.Module().(ApexInfoMutator); ok {
Spandan Das50801e22024-05-13 18:29:45 +00001187 if overridable, ok := ctx.Module().(android.OverridableModule); ok && overridable.GetOverriddenBy() != "" {
1188 return overridable.GetOverriddenBy()
1189 }
Colin Cross7c035062024-03-28 12:18:42 -07001190 return ai.ApexVariationName()
Spandan Das50801e22024-05-13 18:29:45 +00001191 } else if _, ok := ctx.Module().(*OverrideApex); ok {
1192 return ctx.Module().Name()
Colin Cross7c035062024-03-28 12:18:42 -07001193 }
1194
1195 return ""
1196}
1197
1198func (a *apexTransitionMutator) Mutate(ctx android.BottomUpMutatorContext, variation string) {
1199 if am, ok := ctx.Module().(android.ApexModule); ok && am.CanHaveApexVariants() {
1200 android.MutateApexTransition(ctx, variation)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001201 }
1202}
Sundong Ahne9b55722019-09-06 17:37:42 +09001203
Paul Duffin6717d882021-06-15 19:09:41 +01001204// apexModuleTypeRequiresVariant determines whether the module supplied requires an apex specific
1205// variant.
Martin Stjernholmbfffae72021-06-24 14:37:13 +01001206func apexModuleTypeRequiresVariant(module ApexInfoMutator) bool {
Paul Duffin6717d882021-06-15 19:09:41 +01001207 if a, ok := module.(*apexBundle); ok {
Martin Stjernholmbfffae72021-06-24 14:37:13 +01001208 // TODO(jiyong): document the reason why the VNDK APEX is an exception here.
Paul Duffin6717d882021-06-15 19:09:41 +01001209 return !a.vndkApex
1210 }
1211
Martin Stjernholmbfffae72021-06-24 14:37:13 +01001212 return true
Paul Duffin6717d882021-06-15 19:09:41 +01001213}
1214
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001215const (
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001216 // File extensions of an APEX for different packaging methods
Samiul Islam7c02e262021-09-08 17:48:28 +01001217 imageApexSuffix = ".apex"
1218 imageCapexSuffix = ".capex"
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001219
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001220 // variant names each of which is for a packaging method
Jooyung Haneec1b3f2023-06-20 16:25:59 +09001221 imageApexType = "image"
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001222
Dan Willemsen47e1a752021-10-16 18:36:13 -07001223 ext4FsType = "ext4"
1224 f2fsFsType = "f2fs"
Huang Jianan13cac632021-08-02 15:02:17 +08001225 erofsFsType = "erofs"
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001226)
1227
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001228var _ android.DepIsInSameApex = (*apexBundle)(nil)
Theotime Combes4ba38c12020-06-12 12:46:59 +00001229
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001230// Implements android.DepInInSameApex
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001231func (a *apexBundle) DepIsInSameApex(_ android.BaseModuleContext, _ android.Module) bool {
Jiyong Parka7bc8ad2019-10-15 15:20:07 +09001232 // direct deps of an APEX bundle are all part of the APEX bundle
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001233 // TODO(jiyong): shouldn't we look into the payload field of the dependencyTag?
Jiyong Parka7bc8ad2019-10-15 15:20:07 +09001234 return true
1235}
1236
Inseob Kim5eb7ee92022-04-27 10:30:34 +09001237func (a *apexBundle) Exportable() bool {
Inseob Kim5eb7ee92022-04-27 10:30:34 +09001238 return true
1239}
1240
1241func (a *apexBundle) TaggedOutputs() map[string]android.Paths {
1242 ret := make(map[string]android.Paths)
1243 ret["apex"] = android.Paths{a.outputFile}
1244 return ret
1245}
1246
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001247var _ cc.Coverage = (*apexBundle)(nil)
1248
1249// Implements cc.Coverage
Colin Crosse1a85552024-06-14 12:17:37 -07001250func (a *apexBundle) IsNativeCoverageNeeded(ctx cc.IsNativeCoverageNeededContext) bool {
Jooyung Han8d4a1f02023-08-23 13:54:08 +09001251 return ctx.DeviceConfig().NativeCoverageEnabled()
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001252}
1253
1254// Implements cc.Coverage
Ivan Lozanod7586b62021-04-01 09:49:36 -04001255func (a *apexBundle) SetPreventInstall() {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001256 a.properties.PreventInstall = true
1257}
1258
1259// Implements cc.Coverage
1260func (a *apexBundle) HideFromMake() {
1261 a.properties.HideFromMake = true
Colin Crosse6a83e62020-12-17 18:22:34 -08001262 // This HideFromMake is shadowing the ModuleBase one, call through to it for now.
1263 // TODO(ccross): untangle these
1264 a.ModuleBase.HideFromMake()
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001265}
1266
1267// Implements cc.Coverage
1268func (a *apexBundle) MarkAsCoverageVariant(coverage bool) {
1269 a.properties.IsCoverageVariant = coverage
1270}
1271
1272// Implements cc.Coverage
1273func (a *apexBundle) EnableCoverageIfNeeded() {}
1274
1275var _ android.ApexBundleDepsInfoIntf = (*apexBundle)(nil)
1276
Oriol Prieto Gascoa07099d2021-10-14 15:33:41 -04001277// Implements android.ApexBundleDepsInfoIntf
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001278func (a *apexBundle) Updatable() bool {
Mathew Inwoodf8dcf5e2021-02-16 11:40:16 +00001279 return proptools.BoolDefault(a.properties.Updatable, true)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001280}
1281
Jiyong Parkf4020582021-11-29 12:37:10 +09001282func (a *apexBundle) FutureUpdatable() bool {
1283 return proptools.BoolDefault(a.properties.Future_updatable, false)
1284}
1285
Jiyong Park1bc84122021-06-22 20:23:05 +09001286func (a *apexBundle) UsePlatformApis() bool {
1287 return proptools.BoolDefault(a.properties.Platform_apis, false)
1288}
1289
Jooyung Hanb9518072024-11-22 14:05:20 +09001290type apexValidationType int
1291
1292const (
1293 hostApexVerifier apexValidationType = iota
1294 apexSepolicyTests
1295)
1296
1297func (a *apexBundle) skipValidation(validationType apexValidationType) bool {
1298 switch validationType {
1299 case hostApexVerifier:
1300 return proptools.Bool(a.testProperties.Skip_validations.Host_apex_verifier)
1301 case apexSepolicyTests:
1302 return proptools.Bool(a.testProperties.Skip_validations.Apex_sepolicy_tests)
1303 }
1304 panic("Unknown validation type")
1305}
1306
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001307// getCertString returns the name of the cert that should be used to sign this APEX. This is
1308// basically from the "certificate" property, but could be overridden by the device config.
Colin Cross0ea8ba82019-06-06 14:33:29 -07001309func (a *apexBundle) getCertString(ctx android.BaseModuleContext) string {
Jooyung Han27151d92019-12-16 17:45:32 +09001310 moduleName := ctx.ModuleName()
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001311 // VNDK APEXes share the same certificate. To avoid adding a new VNDK version to the
1312 // OVERRIDE_* list, we check with the pseudo module name to see if its certificate is
1313 // overridden.
Jooyung Han27151d92019-12-16 17:45:32 +09001314 if a.vndkApex {
1315 moduleName = vndkApexName
1316 }
1317 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(moduleName)
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001318 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001319 return ":" + certificate
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001320 }
Jaewoong Jung4cfdf7d2021-04-20 16:21:24 -07001321 return String(a.overridableProperties.Certificate)
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001322}
1323
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001324// See the installable property
Jiyong Park92c0f9c2018-12-13 23:14:57 +09001325func (a *apexBundle) installable() bool {
Jiyong Parkee9a98d2019-08-09 14:44:36 +09001326 return !a.properties.PreventInstall && (a.properties.Installable == nil || proptools.Bool(a.properties.Installable))
Jiyong Park92c0f9c2018-12-13 23:14:57 +09001327}
1328
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001329// See the test_only_unsigned_payload property
Dario Frenica913392020-04-27 18:21:11 +01001330func (a *apexBundle) testOnlyShouldSkipPayloadSign() bool {
1331 return proptools.Bool(a.properties.Test_only_unsigned_payload)
1332}
1333
Mohammad Samiul Islama8008f92020-12-22 10:47:50 +00001334// See the test_only_force_compression property
1335func (a *apexBundle) testOnlyShouldForceCompression() bool {
1336 return proptools.Bool(a.properties.Test_only_force_compression)
1337}
1338
Dennis Shenaf41bc12022-08-03 16:46:43 +00001339// See the dynamic_common_lib_apex property
1340func (a *apexBundle) dynamic_common_lib_apex() bool {
1341 return proptools.BoolDefault(a.properties.Dynamic_common_lib_apex, false)
1342}
1343
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001344// These functions are interfacing with cc/sanitizer.go. The entire APEX (along with all of its
1345// members) can be sanitized, either forcibly, or by the global configuration. For some of the
1346// sanitizers, extra dependencies can be forcibly added as well.
Jiyong Parkda6eb592018-12-19 17:12:36 +09001347
Jiyong Parkf97782b2019-02-13 20:28:58 +09001348func (a *apexBundle) EnableSanitizer(sanitizerName string) {
1349 if !android.InList(sanitizerName, a.properties.SanitizerNames) {
1350 a.properties.SanitizerNames = append(a.properties.SanitizerNames, sanitizerName)
1351 }
1352}
1353
Lukacs T. Berki01a648a2022-06-17 08:59:37 +02001354func (a *apexBundle) IsSanitizerEnabled(config android.Config, sanitizerName string) bool {
Jiyong Parkf97782b2019-02-13 20:28:58 +09001355 if android.InList(sanitizerName, a.properties.SanitizerNames) {
1356 return true
Jiyong Park235e67c2019-02-09 11:50:56 +09001357 }
1358
1359 // Then follow the global setting
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001360 var globalSanitizerNames []string
Jooyung Han8d4a1f02023-08-23 13:54:08 +09001361 arches := config.SanitizeDeviceArch()
1362 if len(arches) == 0 || android.InList(a.Arch().ArchType.Name, arches) {
1363 globalSanitizerNames = config.SanitizeDevice()
Jiyong Park388ef3f2019-01-28 19:47:32 +09001364 }
1365 return android.InList(sanitizerName, globalSanitizerNames)
Jiyong Park379de2f2018-12-19 02:47:14 +09001366}
1367
Jooyung Han8ce8db92020-05-15 19:05:05 +09001368func (a *apexBundle) AddSanitizerDependencies(ctx android.BottomUpMutatorContext, sanitizerName string) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001369 // TODO(jiyong): move this info (the sanitizer name, the lib name, etc.) to cc/sanitize.go
1370 // Keep only the mechanism here.
Jooyung Han8d4a1f02023-08-23 13:54:08 +09001371 if sanitizerName == "hwaddress" && strings.HasPrefix(a.Name(), "com.android.runtime") {
Kiyoung Kim4e765b12024-04-04 17:33:42 +09001372 imageVariation := a.getImageVariation()
Jooyung Han8ce8db92020-05-15 19:05:05 +09001373 for _, target := range ctx.MultiTargets() {
1374 if target.Arch.ArchType.Multilib == "lib64" {
Cole Faustac92f3e2024-08-20 13:26:52 -07001375 addDependenciesForNativeModules(ctx, ResolvedApexNativeDependencies{
Colin Cross4c4c1be2022-02-10 11:41:18 -08001376 Native_shared_libs: []string{"libclang_rt.hwasan"},
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001377 Tests: nil,
1378 Jni_libs: nil,
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001379 }, target, imageVariation)
Jooyung Han8ce8db92020-05-15 19:05:05 +09001380 break
1381 }
1382 }
1383 }
1384}
1385
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001386// apexFileFor<Type> functions below create an apexFile struct for a given Soong module. The
1387// returned apexFile saves information about the Soong module that will be used for creating the
1388// build rules.
Jiyong Park1833cef2019-12-13 13:28:36 +09001389func apexFileForNativeLibrary(ctx android.BaseModuleContext, ccMod *cc.Module, handleSpecialLibs bool) apexFile {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001390 // Decide the APEX-local directory by the multilib of the library In the future, we may
1391 // query this to the module.
1392 // TODO(jiyong): use the new PackagingSpec
Jiyong Parkf653b052019-11-18 15:39:01 +09001393 var dirInApex string
Martin Stjernholm279de572019-09-10 23:18:20 +01001394 switch ccMod.Arch().ArchType.Multilib {
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001395 case "lib32":
1396 dirInApex = "lib"
1397 case "lib64":
1398 dirInApex = "lib64"
1399 }
Colin Cross3b19f5d2019-09-17 14:45:31 -07001400 if ccMod.Target().NativeBridge == android.NativeBridgeEnabled {
Martin Stjernholm279de572019-09-10 23:18:20 +01001401 dirInApex = filepath.Join(dirInApex, ccMod.Target().NativeBridgeRelativePath)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001402 }
Jiyong Park1833cef2019-12-13 13:28:36 +09001403 if handleSpecialLibs && cc.InstallToBootstrap(ccMod.BaseModuleName(), ctx.Config()) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001404 // Special case for Bionic libs and other libs installed with them. This is to
1405 // prevent those libs from being included in the search path
1406 // /apex/com.android.runtime/${LIB}. This exclusion is required because those libs
1407 // in the Runtime APEX are available via the legacy paths in /system/lib/. By the
1408 // init process, the libs in the APEX are bind-mounted to the legacy paths and thus
1409 // will be loaded into the default linker namespace (aka "platform" namespace). If
1410 // the libs are directly in /apex/com.android.runtime/${LIB} then the same libs will
1411 // be loaded again into the runtime linker namespace, which will result in double
1412 // loading of them, which isn't supported.
Martin Stjernholm279de572019-09-10 23:18:20 +01001413 dirInApex = filepath.Join(dirInApex, "bionic")
Jiyong Parkb0788572018-12-20 22:10:17 +09001414 }
Florian Mayer95cd6db2023-03-23 17:48:07 -07001415 // This needs to go after the runtime APEX handling because otherwise we would get
1416 // weird paths like lib64/rel_install_path/bionic rather than
1417 // lib64/bionic/rel_install_path.
1418 dirInApex = filepath.Join(dirInApex, ccMod.RelativeInstallPath())
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001419
Colin Cross1d487152022-10-03 19:14:46 -07001420 fileToCopy := android.OutputFileForModule(ctx, ccMod, "")
Yo Chiange8128052020-07-23 20:09:18 +08001421 androidMkModuleName := ccMod.BaseModuleName() + ccMod.Properties.SubName
1422 return newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeSharedLib, ccMod)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001423}
1424
Jiyong Park1833cef2019-12-13 13:28:36 +09001425func apexFileForExecutable(ctx android.BaseModuleContext, cc *cc.Module) apexFile {
Jooyung Han35155c42020-02-06 17:33:20 +09001426 dirInApex := "bin"
Colin Cross3b19f5d2019-09-17 14:45:31 -07001427 if cc.Target().NativeBridge == android.NativeBridgeEnabled {
dimitry8d6dde82019-07-11 10:23:53 +02001428 dirInApex = filepath.Join(dirInApex, cc.Target().NativeBridgeRelativePath)
Jiyong Parkacbf6c72019-07-09 16:19:16 +09001429 }
Jooyung Han35155c42020-02-06 17:33:20 +09001430 dirInApex = filepath.Join(dirInApex, cc.RelativeInstallPath())
Colin Cross1d487152022-10-03 19:14:46 -07001431 fileToCopy := android.OutputFileForModule(ctx, cc, "")
Yo Chiange8128052020-07-23 20:09:18 +08001432 androidMkModuleName := cc.BaseModuleName() + cc.Properties.SubName
1433 af := newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeExecutable, cc)
Jiyong Parkf653b052019-11-18 15:39:01 +09001434 af.symlinks = cc.Symlinks()
Liz Kammer1c14a212020-05-12 15:26:55 -07001435 af.dataPaths = cc.DataPaths()
Jiyong Parkf653b052019-11-18 15:39:01 +09001436 return af
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001437}
1438
Jiyong Park99644e92020-11-17 22:21:02 +09001439func apexFileForRustExecutable(ctx android.BaseModuleContext, rustm *rust.Module) apexFile {
1440 dirInApex := "bin"
1441 if rustm.Target().NativeBridge == android.NativeBridgeEnabled {
1442 dirInApex = filepath.Join(dirInApex, rustm.Target().NativeBridgeRelativePath)
1443 }
Jooyung Han4ed512b2023-08-11 16:30:04 +09001444 dirInApex = filepath.Join(dirInApex, rustm.RelativeInstallPath())
Colin Cross1d487152022-10-03 19:14:46 -07001445 fileToCopy := android.OutputFileForModule(ctx, rustm, "")
Jiyong Park99644e92020-11-17 22:21:02 +09001446 androidMkModuleName := rustm.BaseModuleName() + rustm.Properties.SubName
1447 af := newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeExecutable, rustm)
1448 return af
1449}
1450
1451func apexFileForRustLibrary(ctx android.BaseModuleContext, rustm *rust.Module) apexFile {
1452 // Decide the APEX-local directory by the multilib of the library
1453 // In the future, we may query this to the module.
1454 var dirInApex string
1455 switch rustm.Arch().ArchType.Multilib {
1456 case "lib32":
1457 dirInApex = "lib"
1458 case "lib64":
1459 dirInApex = "lib64"
1460 }
1461 if rustm.Target().NativeBridge == android.NativeBridgeEnabled {
1462 dirInApex = filepath.Join(dirInApex, rustm.Target().NativeBridgeRelativePath)
1463 }
Jooyung Han4ed512b2023-08-11 16:30:04 +09001464 dirInApex = filepath.Join(dirInApex, rustm.RelativeInstallPath())
Colin Cross1d487152022-10-03 19:14:46 -07001465 fileToCopy := android.OutputFileForModule(ctx, rustm, "")
Jiyong Park99644e92020-11-17 22:21:02 +09001466 androidMkModuleName := rustm.BaseModuleName() + rustm.Properties.SubName
1467 return newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeSharedLib, rustm)
1468}
1469
Jaewoong Jung4b79e982020-06-01 10:45:49 -07001470func apexFileForShBinary(ctx android.BaseModuleContext, sh *sh.ShBinary) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +09001471 dirInApex := filepath.Join("bin", sh.SubDir())
Sundong Ahn80c04892021-11-23 00:57:19 +00001472 if sh.Target().NativeBridge == android.NativeBridgeEnabled {
1473 dirInApex = filepath.Join(dirInApex, sh.Target().NativeBridgeRelativePath)
1474 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001475 fileToCopy := sh.OutputFile()
Yo Chiange8128052020-07-23 20:09:18 +08001476 af := newApexFile(ctx, fileToCopy, sh.BaseModuleName(), dirInApex, shBinary, sh)
Jiyong Parkf653b052019-11-18 15:39:01 +09001477 af.symlinks = sh.Symlinks()
1478 return af
Jiyong Park04480cf2019-02-06 00:16:29 +09001479}
1480
Thiébaud Weksteen00e8b312024-03-18 14:06:00 +11001481func apexFileForPrebuiltEtc(ctx android.BaseModuleContext, prebuilt prebuilt_etc.PrebuiltEtcModule, outputFile android.Path) apexFile {
Jooyung Han0703fd82020-08-26 22:11:53 +09001482 dirInApex := filepath.Join(prebuilt.BaseDir(), prebuilt.SubDir())
Cole Faust7c991b42024-05-15 11:17:55 -07001483 makeModuleName := strings.ReplaceAll(filepath.Join(dirInApex, outputFile.Base()), "/", "_")
1484 return newApexFile(ctx, outputFile, makeModuleName, dirInApex, etc, prebuilt)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001485}
1486
atrost6e126252020-01-27 17:01:16 +00001487func apexFileForCompatConfig(ctx android.BaseModuleContext, config java.PlatformCompatConfigIntf, depName string) apexFile {
1488 dirInApex := filepath.Join("etc", config.SubDir())
1489 fileToCopy := config.CompatConfig()
1490 return newApexFile(ctx, fileToCopy, depName, dirInApex, etc, config)
1491}
1492
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001493// javaModule is an interface to handle all Java modules (java_library, dex_import, etc) in the same
1494// way.
1495type javaModule interface {
1496 android.Module
1497 BaseModuleName() string
Spandan Das59a4a2b2024-01-09 21:35:56 +00001498 DexJarBuildPath(ctx android.ModuleErrorfContext) java.OptionalDexJarPath
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001499 JacocoReportClassesFile() android.Path
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001500 Stem() string
1501}
1502
1503var _ javaModule = (*java.Library)(nil)
Bill Peckhama41a6962021-01-11 10:58:54 -08001504var _ javaModule = (*java.Import)(nil)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001505var _ javaModule = (*java.SdkLibrary)(nil)
1506var _ javaModule = (*java.DexImport)(nil)
1507var _ javaModule = (*java.SdkLibraryImport)(nil)
1508
Paul Duffin190fdef2021-04-26 10:33:59 +01001509// apexFileForJavaModule creates an apexFile for a java module's dex implementation jar.
Justin Yun613bdc52024-06-12 21:32:10 +09001510func apexFileForJavaModule(ctx android.ModuleContext, module javaModule) apexFile {
Spandan Das59a4a2b2024-01-09 21:35:56 +00001511 return apexFileForJavaModuleWithFile(ctx, module, module.DexJarBuildPath(ctx).PathOrNil())
Paul Duffin190fdef2021-04-26 10:33:59 +01001512}
1513
1514// apexFileForJavaModuleWithFile creates an apexFile for a java module with the supplied file.
Justin Yun613bdc52024-06-12 21:32:10 +09001515func apexFileForJavaModuleWithFile(ctx android.ModuleContext, module javaModule, dexImplementationJar android.Path) apexFile {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001516 dirInApex := "javalib"
Paul Duffin190fdef2021-04-26 10:33:59 +01001517 af := newApexFile(ctx, dexImplementationJar, module.BaseModuleName(), dirInApex, javaSharedLib, module)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001518 af.jacocoReportClassesFile = module.JacocoReportClassesFile()
Colin Crossb79aa8f2024-09-25 15:41:01 -07001519 if lintInfo, ok := android.OtherModuleProvider(ctx, module, java.LintProvider); ok {
1520 af.lintInfo = lintInfo
1521 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001522 af.customStem = module.Stem() + ".jar"
Jihoon Kanga3a05462024-04-05 00:36:44 +00001523 // TODO: b/338641779 - Remove special casing of sdkLibrary once bcpf and sscpf depends
1524 // on the implementation library
1525 if sdkLib, ok := module.(*java.SdkLibrary); ok {
1526 for _, install := range sdkLib.BuiltInstalledForApex() {
1527 af.requiredModuleNames = append(af.requiredModuleNames, install.FullModuleName())
1528 }
1529 } else if dexpreopter, ok := module.(java.DexpreopterInterface); ok {
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001530 for _, install := range dexpreopter.DexpreoptBuiltInstalledForApex() {
1531 af.requiredModuleNames = append(af.requiredModuleNames, install.FullModuleName())
1532 }
1533 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001534 return af
1535}
1536
Jiakai Zhang3317ce72023-02-08 01:19:19 +08001537func apexFileForJavaModuleProfile(ctx android.BaseModuleContext, module javaModule) *apexFile {
1538 if dexpreopter, ok := module.(java.DexpreopterInterface); ok {
Jiakai Zhang81e46812023-02-08 21:56:07 +08001539 if profilePathOnHost := dexpreopter.OutputProfilePathOnHost(); profilePathOnHost != nil {
Jiakai Zhang3317ce72023-02-08 01:19:19 +08001540 dirInApex := "javalib"
1541 af := newApexFile(ctx, profilePathOnHost, module.BaseModuleName()+"-profile", dirInApex, etc, nil)
1542 af.customStem = module.Stem() + ".jar.prof"
1543 return &af
1544 }
1545 }
1546 return nil
1547}
1548
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001549// androidApp is an interface to handle all app modules (android_app, android_app_import, etc.) in
1550// the same way.
1551type androidApp interface {
Jiyong Parkf653b052019-11-18 15:39:01 +09001552 android.Module
1553 Privileged() bool
Jooyung Han39ee1192020-03-23 20:21:11 +09001554 InstallApkName() string
Jiyong Parkf653b052019-11-18 15:39:01 +09001555 OutputFile() android.Path
Jiyong Park618922e2020-01-08 13:35:43 +09001556 JacocoReportClassesFile() android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001557 Certificate() java.Certificate
Yo Chiange8128052020-07-23 20:09:18 +08001558 BaseModuleName() string
Andrei Onea580636b2022-08-17 16:53:46 +00001559 PrivAppAllowlist() android.OptionalPath
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001560}
1561
1562var _ androidApp = (*java.AndroidApp)(nil)
1563var _ androidApp = (*java.AndroidAppImport)(nil)
1564
Oriol Prieto Gasco17e22902022-05-05 13:52:25 +00001565func sanitizedBuildIdForPath(ctx android.BaseModuleContext) string {
1566 buildId := ctx.Config().BuildId()
1567
1568 // The build ID is used as a suffix for a filename, so ensure that
1569 // the set of characters being used are sanitized.
1570 // - any word character: [a-zA-Z0-9_]
1571 // - dots: .
1572 // - dashes: -
1573 validRegex := regexp.MustCompile(`^[\w\.\-\_]+$`)
1574 if !validRegex.MatchString(buildId) {
1575 ctx.ModuleErrorf("Unable to use build id %s as filename suffix, valid characters are [a-z A-Z 0-9 _ . -].", buildId)
1576 }
1577 return buildId
1578}
Jingwen Chen8ce1efc2022-04-19 13:57:01 +00001579
Andrei Onea580636b2022-08-17 16:53:46 +00001580func apexFilesForAndroidApp(ctx android.BaseModuleContext, aapp androidApp) []apexFile {
Jiyong Parkf7487312019-10-17 12:54:30 +09001581 appDir := "app"
Jiyong Parkf653b052019-11-18 15:39:01 +09001582 if aapp.Privileged() {
Jiyong Parkf7487312019-10-17 12:54:30 +09001583 appDir = "priv-app"
1584 }
Jingwen Chen8ce1efc2022-04-19 13:57:01 +00001585
1586 // TODO(b/224589412, b/226559955): Ensure that the subdirname is suffixed
1587 // so that PackageManager correctly invalidates the existing installed apk
1588 // in favour of the new APK-in-APEX. See bugs for more information.
Oriol Prieto Gasco17e22902022-05-05 13:52:25 +00001589 dirInApex := filepath.Join(appDir, aapp.InstallApkName()+"@"+sanitizedBuildIdForPath(ctx))
Jiyong Parkf653b052019-11-18 15:39:01 +09001590 fileToCopy := aapp.OutputFile()
Jingwen Chen8ce1efc2022-04-19 13:57:01 +00001591
Yo Chiange8128052020-07-23 20:09:18 +08001592 af := newApexFile(ctx, fileToCopy, aapp.BaseModuleName(), dirInApex, app, aapp)
Jiyong Park618922e2020-01-08 13:35:43 +09001593 af.jacocoReportClassesFile = aapp.JacocoReportClassesFile()
Colin Crossb79aa8f2024-09-25 15:41:01 -07001594 if lintInfo, ok := android.OtherModuleProvider(ctx, aapp, java.LintProvider); ok {
1595 af.lintInfo = lintInfo
1596 }
Colin Cross503c1d02020-01-28 14:00:53 -08001597 af.certificate = aapp.Certificate()
Jiyong Parkcfaa1642020-02-28 16:51:07 +09001598
1599 if app, ok := aapp.(interface {
1600 OverriddenManifestPackageName() string
1601 }); ok {
1602 af.overriddenPackageName = app.OverriddenManifestPackageName()
1603 }
Sam Delmericob1daccd2023-05-25 14:45:30 -04001604
1605 apexFiles := []apexFile{}
Andrei Onea580636b2022-08-17 16:53:46 +00001606
1607 if allowlist := aapp.PrivAppAllowlist(); allowlist.Valid() {
1608 dirInApex := filepath.Join("etc", "permissions")
Sam Delmericob1daccd2023-05-25 14:45:30 -04001609 privAppAllowlist := newApexFile(ctx, allowlist.Path(), aapp.BaseModuleName()+"_privapp", dirInApex, etc, aapp)
Andrei Onea580636b2022-08-17 16:53:46 +00001610 apexFiles = append(apexFiles, privAppAllowlist)
1611 }
1612
Sam Delmericob1daccd2023-05-25 14:45:30 -04001613 apexFiles = append(apexFiles, af)
1614
Andrei Onea580636b2022-08-17 16:53:46 +00001615 return apexFiles
Dario Frenicde2a032019-10-27 00:29:22 +01001616}
1617
Jiyong Park69aeba92020-04-24 21:16:36 +09001618func apexFileForRuntimeResourceOverlay(ctx android.BaseModuleContext, rro java.RuntimeResourceOverlayModule) apexFile {
1619 rroDir := "overlay"
1620 dirInApex := filepath.Join(rroDir, rro.Theme())
1621 fileToCopy := rro.OutputFile()
1622 af := newApexFile(ctx, fileToCopy, rro.Name(), dirInApex, app, rro)
1623 af.certificate = rro.Certificate()
1624
1625 if a, ok := rro.(interface {
1626 OverriddenManifestPackageName() string
1627 }); ok {
1628 af.overriddenPackageName = a.OverriddenManifestPackageName()
1629 }
1630 return af
1631}
1632
Ken Chenfad7f9d2021-11-10 22:02:57 +08001633func apexFileForBpfProgram(ctx android.BaseModuleContext, builtFile android.Path, apex_sub_dir string, bpfProgram bpf.BpfModule) apexFile {
1634 dirInApex := filepath.Join("etc", "bpf", apex_sub_dir)
markchien2f59ec92020-09-02 16:23:38 +08001635 return newApexFile(ctx, builtFile, builtFile.Base(), dirInApex, etc, bpfProgram)
1636}
1637
Jiyong Park12a719c2021-01-07 15:31:24 +09001638func apexFileForFilesystem(ctx android.BaseModuleContext, buildFile android.Path, fs filesystem.Filesystem) apexFile {
1639 dirInApex := filepath.Join("etc", "fs")
1640 return newApexFile(ctx, buildFile, buildFile.Base(), dirInApex, etc, fs)
1641}
1642
Paul Duffin064b70c2020-11-02 17:32:38 +00001643// WalkPayloadDeps visits dependencies that contributes to the payload of this APEX. For each of the
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001644// visited module, the `do` callback is executed. Returning true in the callback continues the visit
1645// to the child modules. Returning false makes the visit to continue in the sibling or the parent
1646// modules. This is used in check* functions below.
Colin Cross8bf14fc2024-09-25 16:41:31 -07001647func (a *apexBundle) WalkPayloadDeps(ctx android.BaseModuleContext, do android.PayloadDepsCallback) {
Paul Duffindf915ff2020-03-30 17:58:21 +01001648 ctx.WalkDeps(func(child, parent android.Module) bool {
Jiyong Park0f80c182020-01-31 02:49:53 +09001649 am, ok := child.(android.ApexModule)
1650 if !ok || !am.CanHaveApexVariants() {
1651 return false
1652 }
1653
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001654 // Filter-out unwanted depedendencies
1655 depTag := ctx.OtherModuleDependencyTag(child)
1656 if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok {
1657 return false
1658 }
Paul Duffin520917a2022-05-13 13:01:59 +00001659 if dt, ok := depTag.(*dependencyTag); ok && !dt.payload {
Martin Stjernholm58c33f02020-07-06 22:56:01 +01001660 return false
1661 }
Jiyong Park8bcf3c62024-03-18 18:37:10 +09001662 if depTag == android.RequiredDepTag {
1663 return false
1664 }
Martin Stjernholm58c33f02020-07-06 22:56:01 +01001665
Colin Cross313aa542023-12-13 13:47:44 -08001666 ai, _ := android.OtherModuleProvider(ctx, child, android.ApexInfoProvider)
Jiyong Parkab50b072021-05-12 17:13:56 +09001667 externalDep := !android.InList(ctx.ModuleName(), ai.InApexVariants)
Jiyong Park0f80c182020-01-31 02:49:53 +09001668
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001669 // Visit actually
1670 return do(ctx, parent, am, externalDep)
Jiyong Park0f80c182020-01-31 02:49:53 +09001671 })
1672}
1673
Yu Liub1bfa9d2024-12-05 18:57:51 +00001674func (a *apexBundle) WalkPayloadDepsProxy(ctx android.BaseModuleContext,
1675 do func(ctx android.BaseModuleContext, from, to android.ModuleProxy, externalDep bool) bool) {
1676 ctx.WalkDepsProxy(func(child, parent android.ModuleProxy) bool {
1677 if !android.OtherModuleProviderOrDefault(ctx, child, android.CommonModuleInfoKey).CanHaveApexVariants {
1678 return false
1679 }
1680 // Filter-out unwanted depedendencies
1681 depTag := ctx.OtherModuleDependencyTag(child)
1682 if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok {
1683 return false
1684 }
1685 if dt, ok := depTag.(*dependencyTag); ok && !dt.payload {
1686 return false
1687 }
1688 if depTag == android.RequiredDepTag {
1689 return false
1690 }
1691
1692 ai, _ := android.OtherModuleProvider(ctx, child, android.ApexInfoProvider)
1693 externalDep := !android.InList(ctx.ModuleName(), ai.InApexVariants)
1694
1695 // Visit actually
1696 return do(ctx, parent, child, externalDep)
1697 })
1698}
1699
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001700// filesystem type of the apex_payload.img inside the APEX. Currently, ext4 and f2fs are supported.
1701type fsType int
Jooyung Han03b51852020-02-26 22:45:42 +09001702
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001703const (
1704 ext4 fsType = iota
1705 f2fs
Huang Jianan13cac632021-08-02 15:02:17 +08001706 erofs
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001707)
Artur Satayev849f8442020-04-28 14:57:42 +01001708
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001709func (f fsType) string() string {
1710 switch f {
1711 case ext4:
1712 return ext4FsType
1713 case f2fs:
1714 return f2fsFsType
Huang Jianan13cac632021-08-02 15:02:17 +08001715 case erofs:
1716 return erofsFsType
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001717 default:
1718 panic(fmt.Errorf("unknown APEX payload type %d", f))
Jooyung Han548640b2020-04-27 12:10:30 +09001719 }
1720}
1721
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001722func (a *apexBundle) setCompression(ctx android.ModuleContext) {
Jooyung Han06a8a1c2023-08-23 11:11:43 +09001723 if a.testOnlyShouldForceCompression() {
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001724 a.isCompressed = true
1725 } else {
1726 a.isCompressed = ctx.Config().ApexCompressionEnabled() && a.isCompressable()
1727 }
1728}
1729
1730func (a *apexBundle) setSystemLibLink(ctx android.ModuleContext) {
1731 // Optimization. If we are building bundled APEX, for the files that are gathered due to the
1732 // transitive dependencies, don't place them inside the APEX, but place a symlink pointing
1733 // the same library in the system partition, thus effectively sharing the same libraries
1734 // across the APEX boundary. For unbundled APEX, all the gathered files are actually placed
1735 // in the APEX.
1736 a.linkToSystemLib = !ctx.Config().UnbundledBuild() && a.installable()
1737
1738 // APEXes targeting other than system/system_ext partitions use vendor/product variants.
1739 // So we can't link them to /system/lib libs which are core variants.
1740 if a.SocSpecific() || a.DeviceSpecific() || (a.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
1741 a.linkToSystemLib = false
1742 }
1743
1744 forced := ctx.Config().ForceApexSymlinkOptimization()
1745 updatable := a.Updatable() || a.FutureUpdatable()
1746
1747 // We don't need the optimization for updatable APEXes, as it might give false signal
1748 // to the system health when the APEXes are still bundled (b/149805758).
Jooyung Han06a8a1c2023-08-23 11:11:43 +09001749 if !forced && updatable {
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001750 a.linkToSystemLib = false
1751 }
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001752}
1753
1754func (a *apexBundle) setPayloadFsType(ctx android.ModuleContext) {
Jooyung Han920809a2024-11-15 12:50:50 +09001755 defaultFsType := ctx.Config().DefaultApexPayloadType()
1756 switch proptools.StringDefault(a.properties.Payload_fs_type, defaultFsType) {
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001757 case ext4FsType:
1758 a.payloadFsType = ext4
1759 case f2fsFsType:
1760 a.payloadFsType = f2fs
1761 case erofsFsType:
1762 a.payloadFsType = erofs
1763 default:
1764 ctx.PropertyErrorf("payload_fs_type", "%q is not a valid filesystem for apex [ext4, f2fs, erofs]", *a.properties.Payload_fs_type)
1765 }
1766}
1767
Jooyung Haneec1b3f2023-06-20 16:25:59 +09001768func (a *apexBundle) isCompressable() bool {
Jooyung Hana8fb73b2024-11-25 16:51:25 +09001769 if a.testApex {
1770 return false
1771 }
1772 if a.payloadFsType == erofs {
1773 return false
1774 }
1775 return proptools.Bool(a.overridableProperties.Compressible)
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001776}
1777
1778func (a *apexBundle) commonBuildActions(ctx android.ModuleContext) bool {
1779 a.checkApexAvailability(ctx)
1780 a.checkUpdatable(ctx)
1781 a.CheckMinSdkVersion(ctx)
1782 a.checkStaticLinkingToStubLibraries(ctx)
1783 a.checkStaticExecutables(ctx)
Colin Cross99939e92024-10-01 16:02:46 -07001784 a.enforceAppUpdatability(ctx)
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001785 if len(a.properties.Tests) > 0 && !a.testApex {
1786 ctx.PropertyErrorf("tests", "property allowed only in apex_test module type")
1787 return false
1788 }
1789 return true
1790}
1791
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001792type visitorContext struct {
1793 // all the files that will be included in this APEX
1794 filesInfo []apexFile
1795
1796 // native lib dependencies
1797 provideNativeLibs []string
1798 requireNativeLibs []string
1799
1800 handleSpecialLibs bool
Jooyung Han862c0d62022-12-21 10:15:37 +09001801
1802 // if true, raise error on duplicate apexFile
1803 checkDuplicate bool
Jooyung Hana8bd72a2023-11-02 11:56:48 +09001804
1805 // visitor skips these from this list of module names
1806 unwantedTransitiveDeps []string
Colin Crossb614cd42024-10-11 12:52:21 -07001807
1808 // unwantedTransitiveFilesInfo contains files that would have been in the apex
1809 // except that they were listed in unwantedTransitiveDeps.
1810 unwantedTransitiveFilesInfo []apexFile
1811
1812 // duplicateTransitiveFilesInfo contains files that would ahve been in the apex
1813 // except that another variant of the same module was already in the apex.
1814 duplicateTransitiveFilesInfo []apexFile
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001815}
1816
Jooyung Han862c0d62022-12-21 10:15:37 +09001817func (vctx *visitorContext) normalizeFileInfo(mctx android.ModuleContext) {
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001818 encountered := make(map[string]apexFile)
1819 for _, f := range vctx.filesInfo {
Jooyung Hana8bd72a2023-11-02 11:56:48 +09001820 // Skips unwanted transitive deps. This happens, for example, with Rust binaries with prefer_rlib:true.
1821 // TODO(b/295593640)
1822 // Needs additional verification for the resulting APEX to ensure that skipped artifacts don't make problems.
1823 // For example, DT_NEEDED modules should be found within the APEX unless they are marked in `requiredNativeLibs`.
1824 if f.transitiveDep && f.module != nil && android.InList(mctx.OtherModuleName(f.module), vctx.unwantedTransitiveDeps) {
Colin Crossb614cd42024-10-11 12:52:21 -07001825 vctx.unwantedTransitiveFilesInfo = append(vctx.unwantedTransitiveFilesInfo, f)
Jooyung Hana8bd72a2023-11-02 11:56:48 +09001826 continue
1827 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001828 dest := filepath.Join(f.installDir, f.builtFile.Base())
1829 if e, ok := encountered[dest]; !ok {
1830 encountered[dest] = f
1831 } else {
Jooyung Han862c0d62022-12-21 10:15:37 +09001832 if vctx.checkDuplicate && f.builtFile.String() != e.builtFile.String() {
1833 mctx.ModuleErrorf("apex file %v is provided by two different files %v and %v",
1834 dest, e.builtFile, f.builtFile)
1835 return
Colin Crossb614cd42024-10-11 12:52:21 -07001836 } else {
1837 vctx.duplicateTransitiveFilesInfo = append(vctx.duplicateTransitiveFilesInfo, f)
Jooyung Han862c0d62022-12-21 10:15:37 +09001838 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001839 // If a module is directly included and also transitively depended on
1840 // consider it as directly included.
1841 e.transitiveDep = e.transitiveDep && f.transitiveDep
Jiakai Zhang9c60c172023-09-05 15:19:21 +01001842 // If a module is added as both a JNI library and a regular shared library, consider it as a
1843 // JNI library.
1844 e.isJniLib = e.isJniLib || f.isJniLib
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001845 encountered[dest] = e
1846 }
1847 }
1848 vctx.filesInfo = vctx.filesInfo[:0]
1849 for _, v := range encountered {
1850 vctx.filesInfo = append(vctx.filesInfo, v)
1851 }
Colin Crossb614cd42024-10-11 12:52:21 -07001852
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001853 sort.Slice(vctx.filesInfo, func(i, j int) bool {
1854 // Sort by destination path so as to ensure consistent ordering even if the source of the files
1855 // changes.
1856 return vctx.filesInfo[i].path() < vctx.filesInfo[j].path()
1857 })
1858}
1859
Spandan Dasfbcd5fe2024-09-30 22:30:39 +00001860// enforcePartitionTagOnApexSystemServerJar checks that the partition tags of an apex system server jar matches
1861// the partition tags of the top-level apex.
1862// e.g. if the top-level apex sets system_ext_specific to true, the javalib must set this property to true as well.
1863// This check ensures that the dexpreopt artifacts of the apex system server jar is installed in the same partition
1864// as the apex.
1865func (a *apexBundle) enforcePartitionTagOnApexSystemServerJar(ctx android.ModuleContext) {
1866 global := dexpreopt.GetGlobalConfig(ctx)
Yu Liu7e601222024-12-03 22:24:05 +00001867 ctx.VisitDirectDepsProxyWithTag(sscpfTag, func(child android.ModuleProxy) {
Spandan Dasfbcd5fe2024-09-30 22:30:39 +00001868 info, ok := android.OtherModuleProvider(ctx, child, java.LibraryNameToPartitionInfoProvider)
1869 if !ok {
1870 ctx.ModuleErrorf("Could not find partition info of apex system server jars.")
1871 }
1872 apexPartition := ctx.Module().PartitionTag(ctx.DeviceConfig())
1873 for javalib, javalibPartition := range info.LibraryNameToPartition {
1874 if !global.AllApexSystemServerJars(ctx).ContainsJar(javalib) {
1875 continue // not an apex system server jar
1876 }
1877 if apexPartition != javalibPartition {
1878 ctx.ModuleErrorf(`
1879%s is an apex systemserver jar, but its partition does not match the partition of its containing apex. Expected %s, Got %s`,
1880 javalib, apexPartition, javalibPartition)
1881 }
1882 }
1883 })
1884}
1885
Colin Cross648daea2024-09-12 14:35:29 -07001886func (a *apexBundle) depVisitor(vctx *visitorContext, ctx android.ModuleContext, child, parent android.Module) bool {
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001887 depTag := ctx.OtherModuleDependencyTag(child)
1888 if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok {
1889 return false
1890 }
Colin Cross648daea2024-09-12 14:35:29 -07001891 if !child.Enabled(ctx) {
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001892 return false
1893 }
1894 depName := ctx.OtherModuleName(child)
1895 if _, isDirectDep := parent.(*apexBundle); isDirectDep {
1896 switch depTag {
1897 case sharedLibTag, jniLibTag:
1898 isJniLib := depTag == jniLibTag
Jooyung Han20348752023-12-05 15:23:56 +09001899 propertyName := "native_shared_libs"
1900 if isJniLib {
1901 propertyName = "jni_libs"
1902 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001903 switch ch := child.(type) {
1904 case *cc.Module:
Jooyung Han20348752023-12-05 15:23:56 +09001905 if ch.IsStubs() {
1906 ctx.PropertyErrorf(propertyName, "%q is a stub. Remove it from the list.", depName)
1907 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001908 fi := apexFileForNativeLibrary(ctx, ch, vctx.handleSpecialLibs)
1909 fi.isJniLib = isJniLib
1910 vctx.filesInfo = append(vctx.filesInfo, fi)
1911 // Collect the list of stub-providing libs except:
1912 // - VNDK libs are only for vendors
1913 // - bootstrap bionic libs are treated as provided by system
1914 if ch.HasStubsVariants() && !a.vndkApex && !cc.InstallToBootstrap(ch.BaseModuleName(), ctx.Config()) {
1915 vctx.provideNativeLibs = append(vctx.provideNativeLibs, fi.stem())
1916 }
1917 return true // track transitive dependencies
1918 case *rust.Module:
1919 fi := apexFileForRustLibrary(ctx, ch)
1920 fi.isJniLib = isJniLib
1921 vctx.filesInfo = append(vctx.filesInfo, fi)
1922 return true // track transitive dependencies
1923 default:
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001924 ctx.PropertyErrorf(propertyName, "%q is not a cc_library or cc_library_shared module", depName)
1925 }
1926 case executableTag:
1927 switch ch := child.(type) {
1928 case *cc.Module:
1929 vctx.filesInfo = append(vctx.filesInfo, apexFileForExecutable(ctx, ch))
1930 return true // track transitive dependencies
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001931 case *rust.Module:
1932 vctx.filesInfo = append(vctx.filesInfo, apexFileForRustExecutable(ctx, ch))
1933 return true // track transitive dependencies
1934 default:
1935 ctx.PropertyErrorf("binaries",
1936 "%q is neither cc_binary, rust_binary, (embedded) py_binary, (host) blueprint_go_binary, nor (host) bootstrap_go_binary", depName)
1937 }
1938 case shBinaryTag:
1939 if csh, ok := child.(*sh.ShBinary); ok {
1940 vctx.filesInfo = append(vctx.filesInfo, apexFileForShBinary(ctx, csh))
1941 } else {
1942 ctx.PropertyErrorf("sh_binaries", "%q is not a sh_binary module", depName)
1943 }
1944 case bcpfTag:
Jiakai Zhangb47cacc2023-05-10 16:40:18 +01001945 _, ok := child.(*java.BootclasspathFragmentModule)
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001946 if !ok {
1947 ctx.PropertyErrorf("bootclasspath_fragments", "%q is not a bootclasspath_fragment module", depName)
1948 return false
1949 }
1950
1951 vctx.filesInfo = append(vctx.filesInfo, apexBootclasspathFragmentFiles(ctx, child)...)
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001952 return true
1953 case sscpfTag:
1954 if _, ok := child.(*java.SystemServerClasspathModule); !ok {
1955 ctx.PropertyErrorf("systemserverclasspath_fragments",
1956 "%q is not a systemserverclasspath_fragment module", depName)
1957 return false
1958 }
1959 if af := apexClasspathFragmentProtoFile(ctx, child); af != nil {
1960 vctx.filesInfo = append(vctx.filesInfo, *af)
1961 }
1962 return true
1963 case javaLibTag:
1964 switch child.(type) {
1965 case *java.Library, *java.SdkLibrary, *java.DexImport, *java.SdkLibraryImport, *java.Import:
1966 af := apexFileForJavaModule(ctx, child.(javaModule))
1967 if !af.ok() {
1968 ctx.PropertyErrorf("java_libs", "%q is not configured to be compiled into dex", depName)
1969 return false
1970 }
1971 vctx.filesInfo = append(vctx.filesInfo, af)
1972 return true // track transitive dependencies
1973 default:
1974 ctx.PropertyErrorf("java_libs", "%q of type %q is not supported", depName, ctx.OtherModuleType(child))
1975 }
1976 case androidAppTag:
1977 switch ap := child.(type) {
1978 case *java.AndroidApp:
Andrei Onea580636b2022-08-17 16:53:46 +00001979 vctx.filesInfo = append(vctx.filesInfo, apexFilesForAndroidApp(ctx, ap)...)
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001980 return true // track transitive dependencies
1981 case *java.AndroidAppImport:
Andrei Onea580636b2022-08-17 16:53:46 +00001982 vctx.filesInfo = append(vctx.filesInfo, apexFilesForAndroidApp(ctx, ap)...)
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001983 case *java.AndroidTestHelperApp:
Andrei Onea580636b2022-08-17 16:53:46 +00001984 vctx.filesInfo = append(vctx.filesInfo, apexFilesForAndroidApp(ctx, ap)...)
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07001985 case *java.AndroidAppSet:
1986 appDir := "app"
1987 if ap.Privileged() {
1988 appDir = "priv-app"
1989 }
1990 // TODO(b/224589412, b/226559955): Ensure that the dirname is
1991 // suffixed so that PackageManager correctly invalidates the
1992 // existing installed apk in favour of the new APK-in-APEX.
1993 // See bugs for more information.
1994 appDirName := filepath.Join(appDir, ap.BaseModuleName()+"@"+sanitizedBuildIdForPath(ctx))
1995 af := newApexFile(ctx, ap.OutputFile(), ap.BaseModuleName(), appDirName, appSet, ap)
1996 af.certificate = java.PresignedCertificate
1997 vctx.filesInfo = append(vctx.filesInfo, af)
1998 default:
1999 ctx.PropertyErrorf("apps", "%q is not an android_app module", depName)
2000 }
2001 case rroTag:
2002 if rro, ok := child.(java.RuntimeResourceOverlayModule); ok {
2003 vctx.filesInfo = append(vctx.filesInfo, apexFileForRuntimeResourceOverlay(ctx, rro))
2004 } else {
2005 ctx.PropertyErrorf("rros", "%q is not an runtime_resource_overlay module", depName)
2006 }
2007 case bpfTag:
2008 if bpfProgram, ok := child.(bpf.BpfModule); ok {
mrziwange6c85812024-05-22 14:36:09 -07002009 filesToCopy := android.OutputFilesForModule(ctx, bpfProgram, "")
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002010 apex_sub_dir := bpfProgram.SubDir()
2011 for _, bpfFile := range filesToCopy {
2012 vctx.filesInfo = append(vctx.filesInfo, apexFileForBpfProgram(ctx, bpfFile, apex_sub_dir, bpfProgram))
2013 }
2014 } else {
2015 ctx.PropertyErrorf("bpfs", "%q is not a bpf module", depName)
2016 }
2017 case fsTag:
2018 if fs, ok := child.(filesystem.Filesystem); ok {
2019 vctx.filesInfo = append(vctx.filesInfo, apexFileForFilesystem(ctx, fs.OutputPath(), fs))
2020 } else {
2021 ctx.PropertyErrorf("filesystems", "%q is not a filesystem module", depName)
2022 }
2023 case prebuiltTag:
2024 if prebuilt, ok := child.(prebuilt_etc.PrebuiltEtcModule); ok {
mrziwange2346b82024-06-10 15:09:45 -07002025 filesToCopy := android.OutputFilesForModule(ctx, prebuilt, "")
Thiébaud Weksteen00e8b312024-03-18 14:06:00 +11002026 for _, etcFile := range filesToCopy {
2027 vctx.filesInfo = append(vctx.filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, etcFile))
2028 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002029 } else {
2030 ctx.PropertyErrorf("prebuilts", "%q is not a prebuilt_etc module", depName)
2031 }
2032 case compatConfigTag:
2033 if compatConfig, ok := child.(java.PlatformCompatConfigIntf); ok {
2034 vctx.filesInfo = append(vctx.filesInfo, apexFileForCompatConfig(ctx, compatConfig, depName))
2035 } else {
2036 ctx.PropertyErrorf("compat_configs", "%q is not a platform_compat_config module", depName)
2037 }
2038 case testTag:
2039 if ccTest, ok := child.(*cc.Module); ok {
Colin Cross3a02c7b2024-05-21 13:46:22 -07002040 af := apexFileForExecutable(ctx, ccTest)
2041 af.class = nativeTest
2042 vctx.filesInfo = append(vctx.filesInfo, af)
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002043 return true // track transitive dependencies
2044 } else {
2045 ctx.PropertyErrorf("tests", "%q is not a cc module", depName)
2046 }
2047 case keyTag:
2048 if key, ok := child.(*apexKey); ok {
2049 a.privateKeyFile = key.privateKeyFile
2050 a.publicKeyFile = key.publicKeyFile
2051 } else {
2052 ctx.PropertyErrorf("key", "%q is not an apex_key module", depName)
2053 }
2054 case certificateTag:
2055 if dep, ok := child.(*java.AndroidAppCertificate); ok {
2056 a.containerCertificateFile = dep.Certificate.Pem
2057 a.containerPrivateKeyFile = dep.Certificate.Key
2058 } else {
2059 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", depName)
2060 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002061 }
2062 return false
2063 }
2064
2065 if a.vndkApex {
2066 return false
2067 }
2068
2069 // indirect dependencies
2070 am, ok := child.(android.ApexModule)
2071 if !ok {
2072 return false
2073 }
2074 // We cannot use a switch statement on `depTag` here as the checked
2075 // tags used below are private (e.g. `cc.sharedDepTag`).
2076 if cc.IsSharedDepTag(depTag) || cc.IsRuntimeDepTag(depTag) {
2077 if ch, ok := child.(*cc.Module); ok {
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002078 af := apexFileForNativeLibrary(ctx, ch, vctx.handleSpecialLibs)
2079 af.transitiveDep = true
2080
Colin Cross79170a92024-11-06 15:16:14 -08002081 if ch.IsStubs() || ch.HasStubsVariants() {
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002082 // If the dependency is a stubs lib, don't include it in this APEX,
2083 // but make sure that the lib is installed on the device.
2084 // In case no APEX is having the lib, the lib is installed to the system
2085 // partition.
2086 //
2087 // Always include if we are a host-apex however since those won't have any
2088 // system libraries.
Colin Crossdf2043e2023-01-26 15:39:15 -08002089 //
2090 // Skip the dependency in unbundled builds where the device image is not
2091 // being built.
Colin Crossff6559d2024-11-18 14:15:24 -08002092 if ch.IsStubsImplementationRequired() && !am.NotInPlatform() && !ctx.Config().UnbundledBuild() {
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002093 // we need a module name for Make
2094 name := ch.ImplementationModuleNameForMake(ctx) + ch.Properties.SubName
Jingwen Chen29743c82023-01-25 17:49:46 +00002095 if !android.InList(name, a.makeModulesToInstall) {
2096 a.makeModulesToInstall = append(a.makeModulesToInstall, name)
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002097 }
2098 }
2099 vctx.requireNativeLibs = append(vctx.requireNativeLibs, af.stem())
2100 // Don't track further
2101 return false
2102 }
2103
2104 // If the dep is not considered to be in the same
2105 // apex, don't add it to filesInfo so that it is not
2106 // included in this APEX.
2107 // TODO(jiyong): move this to at the top of the
2108 // else-if clause for the indirect dependencies.
2109 // Currently, that's impossible because we would
2110 // like to record requiredNativeLibs even when
2111 // DepIsInSameAPex is false. We also shouldn't do
2112 // this for host.
2113 //
2114 // TODO(jiyong): explain why the same module is passed in twice.
2115 // Switching the first am to parent breaks lots of tests.
2116 if !android.IsDepInSameApex(ctx, am, am) {
2117 return false
2118 }
2119
2120 vctx.filesInfo = append(vctx.filesInfo, af)
2121 return true // track transitive dependencies
2122 } else if rm, ok := child.(*rust.Module); ok {
Ashutosh Agarwal46e4fad2024-08-27 17:13:12 +00002123 if !android.IsDepInSameApex(ctx, am, am) {
2124 return false
2125 }
2126
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002127 af := apexFileForRustLibrary(ctx, rm)
2128 af.transitiveDep = true
2129 vctx.filesInfo = append(vctx.filesInfo, af)
2130 return true // track transitive dependencies
2131 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002132 } else if cc.IsHeaderDepTag(depTag) {
2133 // nothing
2134 } else if java.IsJniDepTag(depTag) {
2135 // Because APK-in-APEX embeds jni_libs transitively, we don't need to track transitive deps
2136 } else if java.IsXmlPermissionsFileDepTag(depTag) {
2137 if prebuilt, ok := child.(prebuilt_etc.PrebuiltEtcModule); ok {
mrziwange2346b82024-06-10 15:09:45 -07002138 filesToCopy := android.OutputFilesForModule(ctx, prebuilt, "")
Thiébaud Weksteen00e8b312024-03-18 14:06:00 +11002139 for _, etcFile := range filesToCopy {
2140 vctx.filesInfo = append(vctx.filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, etcFile))
2141 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002142 }
2143 } else if rust.IsDylibDepTag(depTag) {
2144 if rustm, ok := child.(*rust.Module); ok && rustm.IsInstallableToApex() {
Ashutosh Agarwal46e4fad2024-08-27 17:13:12 +00002145 if !android.IsDepInSameApex(ctx, am, am) {
2146 return false
2147 }
2148
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002149 af := apexFileForRustLibrary(ctx, rustm)
2150 af.transitiveDep = true
2151 vctx.filesInfo = append(vctx.filesInfo, af)
2152 return true // track transitive dependencies
2153 }
2154 } else if rust.IsRlibDepTag(depTag) {
2155 // Rlib is statically linked, but it might have shared lib
2156 // dependencies. Track them.
2157 return true
2158 } else if java.IsBootclasspathFragmentContentDepTag(depTag) {
2159 // Add the contents of the bootclasspath fragment to the apex.
2160 switch child.(type) {
2161 case *java.Library, *java.SdkLibrary:
2162 javaModule := child.(javaModule)
2163 af := apexFileForBootclasspathFragmentContentModule(ctx, parent, javaModule)
2164 if !af.ok() {
2165 ctx.PropertyErrorf("bootclasspath_fragments",
2166 "bootclasspath_fragment content %q is not configured to be compiled into dex", depName)
2167 return false
2168 }
2169 vctx.filesInfo = append(vctx.filesInfo, af)
2170 return true // track transitive dependencies
2171 default:
2172 ctx.PropertyErrorf("bootclasspath_fragments",
2173 "bootclasspath_fragment content %q of type %q is not supported", depName, ctx.OtherModuleType(child))
2174 }
2175 } else if java.IsSystemServerClasspathFragmentContentDepTag(depTag) {
2176 // Add the contents of the systemserverclasspath fragment to the apex.
2177 switch child.(type) {
2178 case *java.Library, *java.SdkLibrary:
2179 af := apexFileForJavaModule(ctx, child.(javaModule))
2180 vctx.filesInfo = append(vctx.filesInfo, af)
Jiakai Zhang3317ce72023-02-08 01:19:19 +08002181 if profileAf := apexFileForJavaModuleProfile(ctx, child.(javaModule)); profileAf != nil {
2182 vctx.filesInfo = append(vctx.filesInfo, *profileAf)
2183 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002184 return true // track transitive dependencies
2185 default:
2186 ctx.PropertyErrorf("systemserverclasspath_fragments",
2187 "systemserverclasspath_fragment content %q of type %q is not supported", depName, ctx.OtherModuleType(child))
2188 }
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002189 } else if depTag == android.DarwinUniversalVariantTag {
2190 // nothing
Jiyong Park8bcf3c62024-03-18 18:37:10 +09002191 } else if depTag == android.RequiredDepTag {
2192 // nothing
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002193 } else if am.CanHaveApexVariants() && am.IsInstallableToApex() {
2194 ctx.ModuleErrorf("unexpected tag %s for indirect dependency %q", android.PrettyPrintTag(depTag), depName)
2195 }
2196 return false
2197}
2198
Jooyung Han862c0d62022-12-21 10:15:37 +09002199func (a *apexBundle) shouldCheckDuplicate(ctx android.ModuleContext) bool {
2200 // TODO(b/263308293) remove this
2201 if a.properties.IsCoverageVariant {
2202 return false
2203 }
Jooyung Han8d4a1f02023-08-23 13:54:08 +09002204 if ctx.DeviceConfig().DeviceArch() == "" {
Jooyung Han862c0d62022-12-21 10:15:37 +09002205 return false
2206 }
2207 return true
2208}
2209
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002210// Creates build rules for an APEX. It consists of the following major steps:
2211//
2212// 1) do some validity checks such as apex_available, min_sdk_version, etc.
2213// 2) traverse the dependency tree to collect apexFile structs from them.
2214// 3) some fields in apexBundle struct are configured
2215// 4) generate the build rules to create the APEX. This is mostly done in builder.go.
Jiyong Park48ca7dc2018-10-10 14:01:00 +09002216func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002217 ////////////////////////////////////////////////////////////////////////////////////////////
2218 // 1) do some validity checks such as apex_available, min_sdk_version, etc.
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07002219 if !a.commonBuildActions(ctx) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002220 return
2221 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002222 ////////////////////////////////////////////////////////////////////////////////////////////
2223 // 2) traverse the dependency tree to collect apexFile structs from them.
braleeb0c1f0c2021-06-07 22:49:13 +08002224
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002225 // TODO(jiyong): do this using WalkPayloadDeps
2226 // TODO(jiyong): make this clean!!!
Jooyung Han862c0d62022-12-21 10:15:37 +09002227 vctx := visitorContext{
Jooyung Hana8bd72a2023-11-02 11:56:48 +09002228 handleSpecialLibs: !android.Bool(a.properties.Ignore_system_library_special_case),
2229 checkDuplicate: a.shouldCheckDuplicate(ctx),
2230 unwantedTransitiveDeps: a.properties.Unwanted_transitive_deps,
Jooyung Han862c0d62022-12-21 10:15:37 +09002231 }
Colin Cross648daea2024-09-12 14:35:29 -07002232 ctx.WalkDeps(func(child, parent android.Module) bool { return a.depVisitor(&vctx, ctx, child, parent) })
Jooyung Han862c0d62022-12-21 10:15:37 +09002233 vctx.normalizeFileInfo(ctx)
Jaewoong Jung18aefc12020-12-21 09:11:10 -08002234 if a.privateKeyFile == nil {
Nicolas Geoffray036ff9a2023-05-15 10:46:38 +01002235 if ctx.Config().AllowMissingDependencies() {
2236 // TODO(b/266099037): a better approach for slim manifests.
2237 ctx.AddMissingDependencies([]string{String(a.overridableProperties.Key)})
2238 // Create placeholder paths for later stages that expect to see those paths,
2239 // though they won't be used.
2240 var unusedPath = android.PathForModuleOut(ctx, "nonexistentprivatekey")
2241 ctx.Build(pctx, android.BuildParams{
2242 Rule: android.ErrorRule,
2243 Output: unusedPath,
2244 Args: map[string]string{
2245 "error": "Private key not available",
2246 },
2247 })
2248 a.privateKeyFile = unusedPath
2249 } else {
2250 ctx.PropertyErrorf("key", "private_key for %q could not be found", String(a.overridableProperties.Key))
2251 return
2252 }
2253 }
2254
2255 if a.publicKeyFile == nil {
2256 if ctx.Config().AllowMissingDependencies() {
2257 // TODO(b/266099037): a better approach for slim manifests.
2258 ctx.AddMissingDependencies([]string{String(a.overridableProperties.Key)})
2259 // Create placeholder paths for later stages that expect to see those paths,
2260 // though they won't be used.
2261 var unusedPath = android.PathForModuleOut(ctx, "nonexistentpublickey")
2262 ctx.Build(pctx, android.BuildParams{
2263 Rule: android.ErrorRule,
2264 Output: unusedPath,
2265 Args: map[string]string{
2266 "error": "Public key not available",
2267 },
2268 })
2269 a.publicKeyFile = unusedPath
2270 } else {
2271 ctx.PropertyErrorf("key", "public_key for %q could not be found", String(a.overridableProperties.Key))
2272 return
2273 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002274 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09002275
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002276 ////////////////////////////////////////////////////////////////////////////////////////////
2277 // 3) some fields in apexBundle struct are configured
Jiyong Park8fd61922018-11-08 02:50:25 +09002278 a.installDir = android.PathForModuleInstall(ctx, "apex")
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002279 a.filesInfo = vctx.filesInfo
Colin Crossb614cd42024-10-11 12:52:21 -07002280 a.unwantedTransitiveFilesInfo = vctx.unwantedTransitiveFilesInfo
2281 a.duplicateTransitiveFilesInfo = vctx.duplicateTransitiveFilesInfo
Alex Light5098a612018-11-29 17:12:15 -08002282
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07002283 a.setPayloadFsType(ctx)
2284 a.setSystemLibLink(ctx)
Jooyung Han06a8a1c2023-08-23 11:11:43 +09002285 a.compatSymlinks = makeCompatSymlinks(a.BaseModuleName(), ctx)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002286
2287 ////////////////////////////////////////////////////////////////////////////////////////////
Jooyung Hana3fddf42024-09-03 13:22:21 +09002288 // 3.a) some artifacts are generated from the collected files
2289 a.filesInfo = append(a.filesInfo, a.buildAconfigFiles(ctx)...)
2290
2291 ////////////////////////////////////////////////////////////////////////////////////////////
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002292 // 4) generate the build rules to create the APEX. This is done in builder.go.
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002293 a.buildManifest(ctx, vctx.provideNativeLibs, vctx.requireNativeLibs)
Jooyung Haneec1b3f2023-06-20 16:25:59 +09002294 a.buildApex(ctx)
Jiyong Park956305c2020-01-09 12:32:06 +09002295 a.buildApexDependencyInfo(ctx)
Colin Cross08dca382020-07-21 20:31:17 -07002296 a.buildLintReports(ctx)
Spandan Dasda739a32023-12-13 00:06:32 +00002297
2298 // Set a provider for dexpreopt of bootjars
2299 a.provideApexExportsInfo(ctx)
Spandan Dasa747d2e2024-03-11 21:37:25 +00002300
2301 a.providePrebuiltInfo(ctx)
Cole Faust43ddd082024-06-17 12:32:40 -07002302
2303 a.required = a.RequiredModuleNames(ctx)
Kiyoung Kimfaf6af32024-08-12 11:15:19 +09002304 a.required = append(a.required, a.VintfFragmentModuleNames(ctx)...)
mrziwange7ec89e2024-06-13 12:05:18 -07002305
2306 a.setOutputFiles(ctx)
Spandan Dasfbcd5fe2024-09-30 22:30:39 +00002307 a.enforcePartitionTagOnApexSystemServerJar(ctx)
Colin Crossb614cd42024-10-11 12:52:21 -07002308
2309 a.verifyNativeImplementationLibs(ctx)
Spandan Dasa747d2e2024-03-11 21:37:25 +00002310}
2311
Spandan Dasa747d2e2024-03-11 21:37:25 +00002312// Set prebuiltInfoProvider. This will be used by `apex_prebuiltinfo_singleton` to print out a metadata file
2313// with information about whether source or prebuilt of an apex was used during the build.
2314func (a *apexBundle) providePrebuiltInfo(ctx android.ModuleContext) {
Spandan Das3490dfd2024-03-11 21:37:25 +00002315 info := android.PrebuiltInfo{
Spandan Dasa747d2e2024-03-11 21:37:25 +00002316 Name: a.Name(),
2317 Is_prebuilt: false,
2318 }
Spandan Das3490dfd2024-03-11 21:37:25 +00002319 android.SetProvider(ctx, android.PrebuiltInfoProvider, info)
Spandan Dasda739a32023-12-13 00:06:32 +00002320}
2321
2322// Set a provider containing information about the jars and .prof provided by the apex
2323// Apexes built from source retrieve this information by visiting `bootclasspath_fragments`
2324// Used by dex_bootjars to generate the boot image
2325func (a *apexBundle) provideApexExportsInfo(ctx android.ModuleContext) {
Yu Liu7e601222024-12-03 22:24:05 +00002326 ctx.VisitDirectDepsProxyWithTag(bcpfTag, func(child android.ModuleProxy) {
Spandan Dasda739a32023-12-13 00:06:32 +00002327 if info, ok := android.OtherModuleProvider(ctx, child, java.BootclasspathFragmentApexContentInfoProvider); ok {
2328 exports := android.ApexExportsInfo{
Spandan Das5be63332023-12-13 00:06:32 +00002329 ApexName: a.ApexVariationName(),
2330 ProfilePathOnHost: info.ProfilePathOnHost(),
2331 LibraryNameToDexJarPathOnHost: info.DexBootJarPathMap(),
Spandan Dasda739a32023-12-13 00:06:32 +00002332 }
Spandan Dasa41b8ec2023-12-22 00:05:04 +00002333 android.SetProvider(ctx, android.ApexExportsInfoProvider, exports)
Spandan Dasda739a32023-12-13 00:06:32 +00002334 }
2335 })
Jooyung Han01a3ee22019-11-02 02:52:25 +09002336}
2337
mrziwange7ec89e2024-06-13 12:05:18 -07002338// Set output files to outputFiles property, which is later used to set the
2339// OutputFilesProvider
2340func (a *apexBundle) setOutputFiles(ctx android.ModuleContext) {
2341 // default dist path
2342 ctx.SetOutputFiles(android.Paths{a.outputFile}, "")
2343 ctx.SetOutputFiles(android.Paths{a.outputFile}, android.DefaultDistTag)
2344 // uncompressed one
2345 if a.outputApexFile != nil {
2346 ctx.SetOutputFiles(android.Paths{a.outputApexFile}, imageApexSuffix)
2347 }
2348}
2349
Colin Cross99939e92024-10-01 16:02:46 -07002350// enforceAppUpdatability propagates updatable=true to apps of updatable apexes
2351func (a *apexBundle) enforceAppUpdatability(mctx android.ModuleContext) {
2352 if !a.Enabled(mctx) {
2353 return
2354 }
2355 if a.Updatable() {
2356 // checking direct deps is sufficient since apex->apk is a direct edge, even when inherited via apex_defaults
Yu Liue47ba7b2024-12-03 21:55:54 +00002357 mctx.VisitDirectDepsProxy(func(module android.ModuleProxy) {
Colin Cross99939e92024-10-01 16:02:46 -07002358 if appInfo, ok := android.OtherModuleProvider(mctx, module, java.AppInfoProvider); ok {
2359 // ignore android_test_app
2360 if !appInfo.TestHelperApp && !appInfo.Updatable {
2361 mctx.ModuleErrorf("app dependency %s must have updatable: true", mctx.OtherModuleName(module))
2362 }
2363 }
2364 })
2365 }
2366}
2367
Paul Duffincc33ec82021-04-25 23:14:55 +01002368// apexBootclasspathFragmentFiles returns the list of apexFile structures defining the files that
2369// the bootclasspath_fragment contributes to the apex.
2370func apexBootclasspathFragmentFiles(ctx android.ModuleContext, module blueprint.Module) []apexFile {
Colin Cross313aa542023-12-13 13:47:44 -08002371 bootclasspathFragmentInfo, _ := android.OtherModuleProvider(ctx, module, java.BootclasspathFragmentApexContentInfoProvider)
Paul Duffincc33ec82021-04-25 23:14:55 +01002372 var filesToAdd []apexFile
2373
satayev3db35472021-05-06 23:59:58 +01002374 // Add classpaths.proto config.
satayevb98371c2021-06-15 16:49:50 +01002375 if af := apexClasspathFragmentProtoFile(ctx, module); af != nil {
2376 filesToAdd = append(filesToAdd, *af)
2377 }
satayev3db35472021-05-06 23:59:58 +01002378
Ulya Trafimovichf5c548d2022-11-16 14:52:41 +00002379 pathInApex := bootclasspathFragmentInfo.ProfileInstallPathInApex()
Jiakai Zhangbc698cd2023-05-08 16:28:38 +00002380 if pathInApex != "" {
Jiakai Zhang49b1eb62021-11-26 18:09:27 +00002381 pathOnHost := bootclasspathFragmentInfo.ProfilePathOnHost()
2382 tempPath := android.PathForModuleOut(ctx, "boot_image_profile", pathInApex)
2383
2384 if pathOnHost != nil {
2385 // We need to copy the profile to a temporary path with the right filename because the apexer
2386 // will take the filename as is.
2387 ctx.Build(pctx, android.BuildParams{
2388 Rule: android.Cp,
2389 Input: pathOnHost,
2390 Output: tempPath,
2391 })
2392 } else {
2393 // At this point, the boot image profile cannot be generated. It is probably because the boot
2394 // image profile source file does not exist on the branch, or it is not available for the
2395 // current build target.
2396 // However, we cannot enforce the boot image profile to be generated because some build
2397 // targets (such as module SDK) do not need it. It is only needed when the APEX is being
2398 // built. Therefore, we create an error rule so that an error will occur at the ninja phase
2399 // only if the APEX is being built.
2400 ctx.Build(pctx, android.BuildParams{
2401 Rule: android.ErrorRule,
2402 Output: tempPath,
2403 Args: map[string]string{
2404 "error": "Boot image profile cannot be generated",
2405 },
2406 })
2407 }
2408
2409 androidMkModuleName := filepath.Base(pathInApex)
2410 af := newApexFile(ctx, tempPath, androidMkModuleName, filepath.Dir(pathInApex), etc, nil)
2411 filesToAdd = append(filesToAdd, af)
2412 }
2413
Paul Duffincc33ec82021-04-25 23:14:55 +01002414 return filesToAdd
2415}
2416
satayevb98371c2021-06-15 16:49:50 +01002417// apexClasspathFragmentProtoFile returns *apexFile structure defining the classpath.proto config that
2418// the module contributes to the apex; or nil if the proto config was not generated.
2419func apexClasspathFragmentProtoFile(ctx android.ModuleContext, module blueprint.Module) *apexFile {
Colin Cross313aa542023-12-13 13:47:44 -08002420 info, _ := android.OtherModuleProvider(ctx, module, java.ClasspathFragmentProtoContentInfoProvider)
satayevb98371c2021-06-15 16:49:50 +01002421 if !info.ClasspathFragmentProtoGenerated {
2422 return nil
2423 }
2424 classpathProtoOutput := info.ClasspathFragmentProtoOutput
2425 af := newApexFile(ctx, classpathProtoOutput, classpathProtoOutput.Base(), info.ClasspathFragmentProtoInstallDir.Rel(), etc, nil)
2426 return &af
satayev14e49132021-05-17 21:03:07 +01002427}
2428
Paul Duffincc33ec82021-04-25 23:14:55 +01002429// apexFileForBootclasspathFragmentContentModule creates an apexFile for a bootclasspath_fragment
2430// content module, i.e. a library that is part of the bootclasspath.
Paul Duffin190fdef2021-04-26 10:33:59 +01002431func apexFileForBootclasspathFragmentContentModule(ctx android.ModuleContext, fragmentModule blueprint.Module, javaModule javaModule) apexFile {
Colin Cross313aa542023-12-13 13:47:44 -08002432 bootclasspathFragmentInfo, _ := android.OtherModuleProvider(ctx, fragmentModule, java.BootclasspathFragmentApexContentInfoProvider)
Paul Duffin190fdef2021-04-26 10:33:59 +01002433
2434 // Get the dexBootJar from the bootclasspath_fragment as that is responsible for performing the
2435 // hidden API encpding.
Paul Duffin1a8010a2021-05-15 12:39:23 +01002436 dexBootJar, err := bootclasspathFragmentInfo.DexBootJarPathForContentModule(javaModule)
2437 if err != nil {
2438 ctx.ModuleErrorf("%s", err)
2439 }
Paul Duffin190fdef2021-04-26 10:33:59 +01002440
2441 // Create an apexFile as for a normal java module but with the dex boot jar provided by the
2442 // bootclasspath_fragment.
2443 af := apexFileForJavaModuleWithFile(ctx, javaModule, dexBootJar)
2444 return af
Paul Duffincc33ec82021-04-25 23:14:55 +01002445}
2446
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002447///////////////////////////////////////////////////////////////////////////////////////////////////
2448// Factory functions
2449//
2450
2451func newApexBundle() *apexBundle {
2452 module := &apexBundle{}
2453
2454 module.AddProperties(&module.properties)
2455 module.AddProperties(&module.targetProperties)
Jiyong Park59140302020-12-14 18:44:04 +09002456 module.AddProperties(&module.archProperties)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002457 module.AddProperties(&module.overridableProperties)
2458
Jooyung Han8d4a1f02023-08-23 13:54:08 +09002459 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002460 android.InitDefaultableModule(module)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002461 android.InitOverridableModule(module, &module.overridableProperties.Overrides)
2462 return module
2463}
2464
Jooyung Hanb9518072024-11-22 14:05:20 +09002465type apexTestProperties struct {
2466 // Boolean flags for validation checks. Test APEXes can turn on/off individual checks.
2467 Skip_validations struct {
2468 // Skips `Apex_sepolicy_tests` check if true
2469 Apex_sepolicy_tests *bool
2470 // Skips `Host_apex_verifier` check if true
2471 Host_apex_verifier *bool
2472 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002473}
2474
2475// apex_test is an APEX for testing. The difference from the ordinary apex module type is that
2476// certain compatibility checks such as apex_available are not done for apex_test.
Yu Liu4c212ce2022-10-14 12:20:20 -07002477func TestApexBundleFactory() android.Module {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002478 bundle := newApexBundle()
2479 bundle.testApex = true
Jooyung Hanb9518072024-11-22 14:05:20 +09002480 bundle.AddProperties(&bundle.testProperties)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002481 return bundle
2482}
2483
2484// apex packages other modules into an APEX file which is a packaging format for system-level
2485// components like binaries, shared libraries, etc.
2486func BundleFactory() android.Module {
2487 return newApexBundle()
2488}
2489
2490type Defaults struct {
2491 android.ModuleBase
2492 android.DefaultsModuleBase
2493}
2494
2495// apex_defaults provides defaultable properties to other apex modules.
Cole Faust912bc882023-03-08 12:29:50 -08002496func DefaultsFactory() android.Module {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002497 module := &Defaults{}
2498
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002499 module.AddProperties(
2500 &apexBundleProperties{},
2501 &apexTargetBundleProperties{},
Nikita Ioffee58f5272022-10-24 17:24:38 +01002502 &apexArchBundleProperties{},
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002503 &overridableProperties{},
2504 )
2505
2506 android.InitDefaultsModule(module)
2507 return module
2508}
2509
2510type OverrideApex struct {
2511 android.ModuleBase
2512 android.OverrideModuleBase
2513}
2514
Sasha Smundak6f9e91d2022-06-28 22:43:04 -07002515func (o *OverrideApex) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002516 // All the overrides happen in the base module.
2517}
2518
2519// override_apex is used to create an apex module based on another apex module by overriding some of
2520// its properties.
Wei Li1c66fc72022-05-09 23:59:14 -07002521func OverrideApexFactory() android.Module {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002522 m := &OverrideApex{}
2523
2524 m.AddProperties(&overridableProperties{})
2525
2526 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
2527 android.InitOverrideModule(m)
2528 return m
2529}
2530
2531///////////////////////////////////////////////////////////////////////////////////////////////////
2532// Vality check routines
2533//
2534// These are called in at the very beginning of GenerateAndroidBuildActions to flag an error when
2535// certain conditions are not met.
2536//
2537// TODO(jiyong): move these checks to a separate go file.
2538
satayevad991492021-12-03 18:58:32 +00002539var _ android.ModuleWithMinSdkVersionCheck = (*apexBundle)(nil)
2540
Spandan Dasa5f39a12022-08-05 02:35:52 +00002541// Ensures that min_sdk_version of the included modules are equal or less than the min_sdk_version
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002542// of this apexBundle.
satayevb3fd4112021-12-02 13:59:35 +00002543func (a *apexBundle) CheckMinSdkVersion(ctx android.ModuleContext) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002544 if a.testApex || a.vndkApex {
2545 return
2546 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002547 // apexBundle::minSdkVersion reports its own errors.
2548 minSdkVersion := a.minSdkVersion(ctx)
satayevb3fd4112021-12-02 13:59:35 +00002549 android.CheckMinSdkVersion(ctx, minSdkVersion, a.WalkPayloadDeps)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002550}
2551
Albert Martineefabcf2022-03-21 20:11:16 +00002552// Returns apex's min_sdk_version string value, honoring overrides
2553func (a *apexBundle) minSdkVersionValue(ctx android.EarlyModuleContext) string {
2554 // Only override the minSdkVersion value on Apexes which already specify
2555 // a min_sdk_version (it's optional for non-updatable apexes), and that its
2556 // min_sdk_version value is lower than the one to override with.
Spandan Das50801e22024-05-13 18:29:45 +00002557 minApiLevel := android.MinSdkVersionFromValue(ctx, proptools.String(a.overridableProperties.Min_sdk_version))
Colin Cross56534df2022-10-04 09:58:58 -07002558 if minApiLevel.IsNone() {
2559 return ""
Albert Martineefabcf2022-03-21 20:11:16 +00002560 }
2561
Colin Cross56534df2022-10-04 09:58:58 -07002562 overrideMinSdkValue := ctx.DeviceConfig().ApexGlobalMinSdkVersionOverride()
Sam Delmerico0e0d96e2023-08-18 22:43:28 +00002563 overrideApiLevel := android.MinSdkVersionFromValue(ctx, overrideMinSdkValue)
Colin Cross56534df2022-10-04 09:58:58 -07002564 if !overrideApiLevel.IsNone() && overrideApiLevel.CompareTo(minApiLevel) > 0 {
2565 minApiLevel = overrideApiLevel
2566 }
2567
2568 return minApiLevel.String()
Albert Martineefabcf2022-03-21 20:11:16 +00002569}
2570
2571// Returns apex's min_sdk_version SdkSpec, honoring overrides
Spandan Das8c9ae7e2023-03-03 21:20:36 +00002572func (a *apexBundle) MinSdkVersion(ctx android.EarlyModuleContext) android.ApiLevel {
2573 return a.minSdkVersion(ctx)
satayevad991492021-12-03 18:58:32 +00002574}
2575
Albert Martineefabcf2022-03-21 20:11:16 +00002576// Returns apex's min_sdk_version ApiLevel, honoring overrides
satayevad991492021-12-03 18:58:32 +00002577func (a *apexBundle) minSdkVersion(ctx android.EarlyModuleContext) android.ApiLevel {
Sam Delmerico0e0d96e2023-08-18 22:43:28 +00002578 return android.MinSdkVersionFromValue(ctx, a.minSdkVersionValue(ctx))
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002579}
2580
2581// Ensures that a lib providing stub isn't statically linked
2582func (a *apexBundle) checkStaticLinkingToStubLibraries(ctx android.ModuleContext) {
2583 // Practically, we only care about regular APEXes on the device.
Jooyung Han8d4a1f02023-08-23 13:54:08 +09002584 if a.testApex || a.vndkApex {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002585 return
2586 }
2587
Colin Cross79170a92024-11-06 15:16:14 -08002588 librariesDirectlyInApex := make(map[string]bool)
2589 ctx.VisitDirectDepsProxyWithTag(sharedLibTag, func(dep android.ModuleProxy) {
2590 librariesDirectlyInApex[ctx.OtherModuleName(dep)] = true
2591 })
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002592
Yu Liub1bfa9d2024-12-05 18:57:51 +00002593 a.WalkPayloadDepsProxy(ctx, func(ctx android.BaseModuleContext, from, to android.ModuleProxy, externalDep bool) bool {
2594 if ccInfo, ok := android.OtherModuleProvider(ctx, to, cc.CcInfoProvider); ok {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002595 // If `to` is not actually in the same APEX as `from` then it does not need
2596 // apex_available and neither do any of its dependencies.
Yu Liub1bfa9d2024-12-05 18:57:51 +00002597 if externalDep {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002598 // As soon as the dependency graph crosses the APEX boundary, don't go further.
2599 return false
2600 }
2601
Yu Liub1bfa9d2024-12-05 18:57:51 +00002602 apexName := ctx.ModuleName()
2603 fromName := ctx.OtherModuleName(from)
2604 toName := ctx.OtherModuleName(to)
2605
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002606 // The dynamic linker and crash_dump tool in the runtime APEX is the only
2607 // exception to this rule. It can't make the static dependencies dynamic
2608 // because it can't do the dynamic linking for itself.
Kiyoung Kim4098c7e2020-11-30 14:42:14 +09002609 // Same rule should be applied to linkerconfig, because it should be executed
2610 // only with static linked libraries before linker is available with ld.config.txt
2611 if apexName == "com.android.runtime" && (fromName == "linker" || fromName == "crash_dump" || fromName == "linkerconfig") {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002612 return false
2613 }
2614
Yu Liub1bfa9d2024-12-05 18:57:51 +00002615 isStubLibraryFromOtherApex := ccInfo.HasStubsVariants && !librariesDirectlyInApex[toName]
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002616 if isStubLibraryFromOtherApex && !externalDep {
2617 ctx.ModuleErrorf("%q required by %q is a native library providing stub. "+
2618 "It shouldn't be included in this APEX via static linking. Dependency path: %s", to.String(), fromName, ctx.GetPathString(false))
2619 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002620 }
2621 return true
2622 })
2623}
2624
satayevb98371c2021-06-15 16:49:50 +01002625// checkUpdatable enforces APEX and its transitive dep properties to have desired values for updatable APEXes.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002626func (a *apexBundle) checkUpdatable(ctx android.ModuleContext) {
2627 if a.Updatable() {
Albert Martineefabcf2022-03-21 20:11:16 +00002628 if a.minSdkVersionValue(ctx) == "" {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002629 ctx.PropertyErrorf("updatable", "updatable APEXes should set min_sdk_version as well")
2630 }
Spandan Das32c93a32024-07-17 20:31:58 +00002631 if a.minSdkVersion(ctx).IsCurrent() {
Spandan Dasca1d63e2024-07-01 22:53:49 +00002632 ctx.PropertyErrorf("updatable", "updatable APEXes should not set min_sdk_version to current. Please use a finalized API level or a recognized in-development codename")
2633 }
Jiyong Park1bc84122021-06-22 20:23:05 +09002634 if a.UsePlatformApis() {
2635 ctx.PropertyErrorf("updatable", "updatable APEXes can't use platform APIs")
2636 }
Jiyong Parkf4020582021-11-29 12:37:10 +09002637 if a.FutureUpdatable() {
2638 ctx.PropertyErrorf("future_updatable", "Already updatable. Remove `future_updatable: true:`")
2639 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002640 a.checkJavaStableSdkVersion(ctx)
satayevb98371c2021-06-15 16:49:50 +01002641 a.checkClasspathFragments(ctx)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002642 }
2643}
2644
satayevb98371c2021-06-15 16:49:50 +01002645// checkClasspathFragments enforces that all classpath fragments in deps generate classpaths.proto config.
2646func (a *apexBundle) checkClasspathFragments(ctx android.ModuleContext) {
Yu Liuac483e02024-11-11 22:29:30 +00002647 ctx.VisitDirectDepsProxy(func(module android.ModuleProxy) {
satayevb98371c2021-06-15 16:49:50 +01002648 if tag := ctx.OtherModuleDependencyTag(module); tag == bcpfTag || tag == sscpfTag {
Colin Cross313aa542023-12-13 13:47:44 -08002649 info, _ := android.OtherModuleProvider(ctx, module, java.ClasspathFragmentProtoContentInfoProvider)
satayevb98371c2021-06-15 16:49:50 +01002650 if !info.ClasspathFragmentProtoGenerated {
2651 ctx.OtherModuleErrorf(module, "is included in updatable apex %v, it must not set generate_classpaths_proto to false", ctx.ModuleName())
2652 }
2653 }
2654 })
2655}
2656
2657// checkJavaStableSdkVersion enforces that all Java deps are using stable SDKs to compile.
Artur Satayev8cf899a2020-04-15 17:29:42 +01002658func (a *apexBundle) checkJavaStableSdkVersion(ctx android.ModuleContext) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002659 // Visit direct deps only. As long as we guarantee top-level deps are using stable SDKs,
2660 // java's checkLinkType guarantees correct usage for transitive deps
Yu Liu63bdf632024-12-03 19:54:05 +00002661 ctx.VisitDirectDepsProxy(func(module android.ModuleProxy) {
Artur Satayev8cf899a2020-04-15 17:29:42 +01002662 tag := ctx.OtherModuleDependencyTag(module)
2663 switch tag {
2664 case javaLibTag, androidAppTag:
Yu Liu63bdf632024-12-03 19:54:05 +00002665 if err := java.CheckStableSdkVersion(ctx, module); err != nil {
2666 ctx.ModuleErrorf("cannot depend on \"%v\": %v", ctx.OtherModuleName(module), err)
Artur Satayev8cf899a2020-04-15 17:29:42 +01002667 }
2668 }
2669 })
2670}
2671
satayevb98371c2021-06-15 16:49:50 +01002672// checkApexAvailability ensures that the all the dependencies are marked as available for this APEX.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002673func (a *apexBundle) checkApexAvailability(ctx android.ModuleContext) {
2674 // Let's be practical. Availability for test, host, and the VNDK apex isn't important
Jooyung Han8d4a1f02023-08-23 13:54:08 +09002675 if a.testApex || a.vndkApex {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002676 return
2677 }
2678
2679 // Because APEXes targeting other than system/system_ext partitions can't set
2680 // apex_available, we skip checks for these APEXes
2681 if a.SocSpecific() || a.DeviceSpecific() || (a.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
2682 return
2683 }
2684
Chan Wang490a6f92024-09-23 11:52:00 +00002685 // Temporarily bypass /product APEXes with a specific prefix.
2686 // TODO: b/352818241 - Remove this after APEX availability is enforced for /product APEXes.
2687 if a.ProductSpecific() && strings.HasPrefix(a.ApexVariationName(), "com.sdv.") {
2688 return
2689 }
2690
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002691 // Coverage build adds additional dependencies for the coverage-only runtime libraries.
2692 // Requiring them and their transitive depencies with apex_available is not right
2693 // because they just add noise.
2694 if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT") || a.IsNativeCoverageNeeded(ctx) {
2695 return
2696 }
2697
Colin Cross8bf14fc2024-09-25 16:41:31 -07002698 a.WalkPayloadDeps(ctx, func(ctx android.BaseModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002699 // As soon as the dependency graph crosses the APEX boundary, don't go further.
2700 if externalDep {
2701 return false
2702 }
2703
2704 apexName := ctx.ModuleName()
Sam Delmericoca816532023-06-02 14:09:50 -04002705 for _, props := range ctx.Module().GetProperties() {
2706 if apexProps, ok := props.(*apexBundleProperties); ok {
2707 if apexProps.Apex_available_name != nil {
2708 apexName = *apexProps.Apex_available_name
2709 }
2710 }
2711 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002712 fromName := ctx.OtherModuleName(from)
2713 toName := ctx.OtherModuleName(to)
2714
2715 // If `to` is not actually in the same APEX as `from` then it does not need
2716 // apex_available and neither do any of its dependencies.
Paul Duffin4c3e8e22021-03-18 15:41:29 +00002717 //
2718 // It is ok to call DepIsInSameApex() directly from within WalkPayloadDeps().
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002719 if am, ok := from.(android.DepIsInSameApex); ok && !am.DepIsInSameApex(ctx, to) {
2720 // As soon as the dependency graph crosses the APEX boundary, don't go
2721 // further.
2722 return false
2723 }
2724
Jooyung Hana89a58a2024-08-29 13:00:33 +09002725 if to.AvailableFor(apexName) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002726 return true
2727 }
Jooyung Han9a419e22024-08-16 17:14:21 +09002728
2729 // Let's give some hint for apex_available
2730 hint := fmt.Sprintf("%q", apexName)
2731
2732 if strings.HasPrefix(apexName, "com.") && !strings.HasPrefix(apexName, "com.android.") && strings.Count(apexName, ".") >= 2 {
2733 // In case of a partner APEX, prefix format might be an option.
2734 components := strings.Split(apexName, ".")
2735 components[len(components)-1] = "*"
2736 hint += fmt.Sprintf(" or %q", strings.Join(components, "."))
2737 }
2738
Jiyong Park767dbd92021-03-04 13:03:10 +09002739 ctx.ModuleErrorf("%q requires %q that doesn't list the APEX under 'apex_available'."+
2740 "\n\nDependency path:%s\n\n"+
Jooyung Han9a419e22024-08-16 17:14:21 +09002741 "Consider adding %s to 'apex_available' property of %q",
2742 fromName, toName, ctx.GetPathString(true), hint, toName)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002743 // Visit this module's dependencies to check and report any issues with their availability.
2744 return true
2745 })
2746}
2747
Jiyong Park192600a2021-08-03 07:52:17 +00002748// checkStaticExecutable ensures that executables in an APEX are not static.
2749func (a *apexBundle) checkStaticExecutables(ctx android.ModuleContext) {
Yu Liu986d98c2024-11-12 00:28:11 +00002750 ctx.VisitDirectDepsProxy(func(module android.ModuleProxy) {
Jiyong Park192600a2021-08-03 07:52:17 +00002751 if ctx.OtherModuleDependencyTag(module) != executableTag {
2752 return
2753 }
Jiyong Parkd12979d2021-08-03 13:36:09 +09002754
Yu Liu986d98c2024-11-12 00:28:11 +00002755 if android.OtherModuleProviderOrDefault(ctx, module, cc.LinkableInfoKey).StaticExecutable {
Jiyong Park192600a2021-08-03 07:52:17 +00002756 apex := a.ApexVariationName()
2757 exec := ctx.OtherModuleName(module)
2758 if isStaticExecutableAllowed(apex, exec) {
2759 return
2760 }
2761 ctx.ModuleErrorf("executable %s is static", ctx.OtherModuleName(module))
2762 }
2763 })
2764}
2765
2766// A small list of exceptions where static executables are allowed in APEXes.
2767func isStaticExecutableAllowed(apex string, exec string) bool {
2768 m := map[string][]string{
Wei Li40f98732022-05-20 22:08:11 -07002769 "com.android.runtime": {
Jiyong Park192600a2021-08-03 07:52:17 +00002770 "linker",
2771 "linkerconfig",
2772 },
2773 }
2774 execNames, ok := m[apex]
2775 return ok && android.InList(exec, execNames)
2776}
2777
braleeb0c1f0c2021-06-07 22:49:13 +08002778// Collect information for opening IDE project files in java/jdeps.go.
Cole Faustb36d31d2024-08-27 16:04:28 -07002779func (a *apexBundle) IDEInfo(ctx android.BaseModuleContext, dpInfo *android.IdeInfo) {
Anton Hanssone7545852023-02-24 11:06:07 +00002780 dpInfo.Deps = append(dpInfo.Deps, a.properties.Java_libs...)
Spandan Das0b1b0082024-11-11 22:50:49 +00002781 dpInfo.Deps = append(dpInfo.Deps, a.properties.Bootclasspath_fragments.GetOrDefault(ctx, nil)...)
2782 dpInfo.Deps = append(dpInfo.Deps, a.properties.Systemserverclasspath_fragments.GetOrDefault(ctx, nil)...)
braleeb0c1f0c2021-06-07 22:49:13 +08002783}
2784
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002785func init() {
Spandan Dasf14e2542021-11-12 00:01:37 +00002786 android.AddNeverAllowRules(createBcpPermittedPackagesRules(qBcpPackages())...)
2787 android.AddNeverAllowRules(createBcpPermittedPackagesRules(rBcpPackages())...)
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002788}
2789
Spandan Dasf14e2542021-11-12 00:01:37 +00002790func createBcpPermittedPackagesRules(bcpPermittedPackages map[string][]string) []android.Rule {
2791 rules := make([]android.Rule, 0, len(bcpPermittedPackages))
2792 for jar, permittedPackages := range bcpPermittedPackages {
Jaewoong Jung18aefc12020-12-21 09:11:10 -08002793 permittedPackagesRule := android.NeverAllow().
Spandan Dasf14e2542021-11-12 00:01:37 +00002794 With("name", jar).
2795 WithMatcher("permitted_packages", android.NotInList(permittedPackages)).
2796 Because(jar +
2797 " bootjar may only use these package prefixes: " + strings.Join(permittedPackages, ",") +
Anton Hanssone1b18362021-12-23 15:05:38 +00002798 ". Please consider the following alternatives:\n" +
Andrei Onead967aee2022-01-19 15:36:40 +00002799 " 1. If the offending code is from a statically linked library, consider " +
2800 "removing that dependency and using an alternative already in the " +
2801 "bootclasspath, or perhaps a shared library." +
2802 " 2. Move the offending code into an allowed package.\n" +
2803 " 3. Jarjar the offending code. Please be mindful of the potential system " +
2804 "health implications of bundling that code, particularly if the offending jar " +
2805 "is part of the bootclasspath.")
Spandan Dasf14e2542021-11-12 00:01:37 +00002806
Jaewoong Jung18aefc12020-12-21 09:11:10 -08002807 rules = append(rules, permittedPackagesRule)
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002808 }
2809 return rules
2810}
2811
Anton Hanssone1b18362021-12-23 15:05:38 +00002812// DO NOT EDIT! These are the package prefixes that are exempted from being AOT'ed by ART.
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002813// Adding code to the bootclasspath in new packages will cause issues on module update.
Spandan Dasf14e2542021-11-12 00:01:37 +00002814func qBcpPackages() map[string][]string {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002815 return map[string][]string{
Wei Li40f98732022-05-20 22:08:11 -07002816 "conscrypt": {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002817 "android.net.ssl",
2818 "com.android.org.conscrypt",
2819 },
Wei Li40f98732022-05-20 22:08:11 -07002820 "updatable-media": {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002821 "android.media",
2822 },
2823 }
2824}
2825
Anton Hanssone1b18362021-12-23 15:05:38 +00002826// DO NOT EDIT! These are the package prefixes that are exempted from being AOT'ed by ART.
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002827// Adding code to the bootclasspath in new packages will cause issues on module update.
Spandan Dasf14e2542021-11-12 00:01:37 +00002828func rBcpPackages() map[string][]string {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002829 return map[string][]string{
Wei Li40f98732022-05-20 22:08:11 -07002830 "framework-mediaprovider": {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002831 "android.provider",
2832 },
Wei Li40f98732022-05-20 22:08:11 -07002833 "framework-permission": {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002834 "android.permission",
2835 "android.app.role",
2836 "com.android.permission",
2837 "com.android.role",
2838 },
Wei Li40f98732022-05-20 22:08:11 -07002839 "framework-sdkextensions": {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002840 "android.os.ext",
2841 },
Wei Li40f98732022-05-20 22:08:11 -07002842 "framework-statsd": {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002843 "android.app",
2844 "android.os",
2845 "android.util",
2846 "com.android.internal.statsd",
2847 "com.android.server.stats",
2848 },
Wei Li40f98732022-05-20 22:08:11 -07002849 "framework-wifi": {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002850 "com.android.server.wifi",
2851 "com.android.wifi.x",
2852 "android.hardware.wifi",
2853 "android.net.wifi",
2854 },
Wei Li40f98732022-05-20 22:08:11 -07002855 "framework-tethering": {
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002856 "android.net",
2857 },
2858 }
2859}
Rupert Shuttlewortha9d76dd2021-07-02 07:17:16 -04002860
Colin Crossb614cd42024-10-11 12:52:21 -07002861// verifyNativeImplementationLibs compares the list of transitive implementation libraries used to link native
2862// libraries in the apex against the list of implementation libraries in the apex, ensuring that none of the
2863// libraries in the apex have references to private APIs from outside the apex.
2864func (a *apexBundle) verifyNativeImplementationLibs(ctx android.ModuleContext) {
2865 var directImplementationLibs android.Paths
2866 var transitiveImplementationLibs []depset.DepSet[android.Path]
2867
2868 if a.properties.IsCoverageVariant {
2869 return
2870 }
2871
2872 if a.testApex {
2873 return
2874 }
2875
2876 if a.UsePlatformApis() {
2877 return
2878 }
2879
2880 checkApexTag := func(tag blueprint.DependencyTag) bool {
2881 switch tag {
2882 case sharedLibTag, jniLibTag, executableTag, androidAppTag:
2883 return true
2884 default:
2885 return false
2886 }
2887 }
2888
2889 checkTransitiveTag := func(tag blueprint.DependencyTag) bool {
2890 switch {
2891 case cc.IsSharedDepTag(tag), java.IsJniDepTag(tag), rust.IsRlibDepTag(tag), rust.IsDylibDepTag(tag), checkApexTag(tag):
2892 return true
2893 default:
2894 return false
2895 }
2896 }
2897
2898 var appEmbeddedJNILibs android.Paths
Yu Liube90fc92024-12-03 23:06:34 +00002899 ctx.VisitDirectDepsProxy(func(dep android.ModuleProxy) {
Colin Crossb614cd42024-10-11 12:52:21 -07002900 tag := ctx.OtherModuleDependencyTag(dep)
2901 if !checkApexTag(tag) {
2902 return
2903 }
2904 if tag == sharedLibTag || tag == jniLibTag {
2905 outputFile := android.OutputFileForModule(ctx, dep, "")
2906 directImplementationLibs = append(directImplementationLibs, outputFile)
2907 }
2908 if info, ok := android.OtherModuleProvider(ctx, dep, cc.ImplementationDepInfoProvider); ok {
2909 transitiveImplementationLibs = append(transitiveImplementationLibs, info.ImplementationDeps)
2910 }
2911 if info, ok := android.OtherModuleProvider(ctx, dep, java.AppInfoProvider); ok {
2912 appEmbeddedJNILibs = append(appEmbeddedJNILibs, info.EmbeddedJNILibs...)
2913 }
2914 })
2915
2916 depSet := depset.New(depset.PREORDER, directImplementationLibs, transitiveImplementationLibs)
2917 allImplementationLibs := depSet.ToList()
2918
2919 allFileInfos := slices.Concat(a.filesInfo, a.unwantedTransitiveFilesInfo, a.duplicateTransitiveFilesInfo)
2920
2921 for _, lib := range allImplementationLibs {
2922 inApex := slices.ContainsFunc(allFileInfos, func(fi apexFile) bool {
2923 return fi.builtFile == lib
2924 })
2925 inApkInApex := slices.Contains(appEmbeddedJNILibs, lib)
2926
2927 if !inApex && !inApkInApex {
2928 ctx.ModuleErrorf("library in apex transitively linked against implementation library %q not in apex", lib)
2929 var depPath []android.Module
2930 ctx.WalkDeps(func(child, parent android.Module) bool {
2931 if depPath != nil {
2932 return false
2933 }
2934
2935 tag := ctx.OtherModuleDependencyTag(child)
2936
2937 if parent == ctx.Module() {
2938 if !checkApexTag(tag) {
2939 return false
2940 }
2941 }
2942
2943 if checkTransitiveTag(tag) {
2944 if android.OutputFileForModule(ctx, child, "") == lib {
2945 depPath = ctx.GetWalkPath()
2946 }
2947 return true
2948 }
2949
2950 return false
2951 })
2952 if depPath != nil {
2953 ctx.ModuleErrorf("dependency path:")
2954 for _, m := range depPath {
2955 ctx.ModuleErrorf(" %s", ctx.OtherModuleName(m))
2956 }
2957 return
2958 }
2959 }
2960 }
2961}