blob: 7d79f267cd416e356a0aee17661fc925ac896d6c [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"
Jiyong Parkab3ceb32018-10-10 14:05:29 +090022 "sort"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090023 "strings"
24
Jiyong Park48ca7dc2018-10-10 14:01:00 +090025 "github.com/google/blueprint"
Alex Light778127a2019-02-27 14:19:50 -080026 "github.com/google/blueprint/bootstrap"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090027 "github.com/google/blueprint/proptools"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070028
29 "android/soong/android"
markchien2f59ec92020-09-02 16:23:38 +080030 "android/soong/bpf"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070031 "android/soong/cc"
32 prebuilt_etc "android/soong/etc"
Jiyong Park12a719c2021-01-07 15:31:24 +090033 "android/soong/filesystem"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070034 "android/soong/java"
35 "android/soong/python"
Jiyong Park99644e92020-11-17 22:21:02 +090036 "android/soong/rust"
Jaewoong Jung4b79e982020-06-01 10:45:49 -070037 "android/soong/sh"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090038)
39
Jiyong Park8e6d52f2020-11-19 14:37:47 +090040func init() {
41 android.RegisterModuleType("apex", BundleFactory)
42 android.RegisterModuleType("apex_test", testApexBundleFactory)
43 android.RegisterModuleType("apex_vndk", vndkApexBundleFactory)
44 android.RegisterModuleType("apex_defaults", defaultsFactory)
45 android.RegisterModuleType("prebuilt_apex", PrebuiltFactory)
46 android.RegisterModuleType("override_apex", overrideApexFactory)
47 android.RegisterModuleType("apex_set", apexSetFactory)
48
49 android.PreDepsMutators(RegisterPreDepsMutators)
50 android.PostDepsMutators(RegisterPostDepsMutators)
51}
52
53func RegisterPreDepsMutators(ctx android.RegisterMutatorsContext) {
54 ctx.TopDown("apex_vndk", apexVndkMutator).Parallel()
55 ctx.BottomUp("apex_vndk_deps", apexVndkDepsMutator).Parallel()
56}
57
58func RegisterPostDepsMutators(ctx android.RegisterMutatorsContext) {
Paul Duffin949abc02020-12-08 10:34:30 +000059 ctx.TopDown("apex_info", apexInfoMutator).Parallel()
Jiyong Park8e6d52f2020-11-19 14:37:47 +090060 ctx.BottomUp("apex_unique", apexUniqueVariationsMutator).Parallel()
61 ctx.BottomUp("apex_test_for_deps", apexTestForDepsMutator).Parallel()
62 ctx.BottomUp("apex_test_for", apexTestForMutator).Parallel()
63 ctx.BottomUp("apex", apexMutator).Parallel()
64 ctx.BottomUp("apex_directly_in_any", apexDirectlyInAnyMutator).Parallel()
65 ctx.BottomUp("apex_flattened", apexFlattenedMutator).Parallel()
66 ctx.BottomUp("mark_platform_availability", markPlatformAvailability).Parallel()
67}
68
69type apexBundleProperties struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090070 // Json manifest file describing meta info of this APEX bundle. Refer to
71 // system/apex/proto/apex_manifest.proto for the schema. Default: "apex_manifest.json"
Jiyong Park8e6d52f2020-11-19 14:37:47 +090072 Manifest *string `android:"path"`
73
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090074 // AndroidManifest.xml file used for the zip container of this APEX bundle. If unspecified,
75 // a default one is automatically generated.
Jiyong Park8e6d52f2020-11-19 14:37:47 +090076 AndroidManifest *string `android:"path"`
77
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090078 // Canonical name of this APEX bundle. Used to determine the path to the activated APEX on
79 // device (/apex/<apex_name>). If unspecified, follows the name property.
Jiyong Park8e6d52f2020-11-19 14:37:47 +090080 Apex_name *string
81
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090082 // Determines the file contexts file for setting the security contexts to files in this APEX
83 // bundle. For platform APEXes, this should points to a file under /system/sepolicy Default:
84 // /system/sepolicy/apex/<module_name>_file_contexts.
Jiyong Park8e6d52f2020-11-19 14:37:47 +090085 File_contexts *string `android:"path"`
86
87 ApexNativeDependencies
88
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090089 Multilib apexMultilibProperties
90
91 // List of java libraries that are embedded inside this APEX bundle.
Jiyong Park8e6d52f2020-11-19 14:37:47 +090092 Java_libs []string
93
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090094 // List of prebuilt files that are embedded inside this APEX bundle.
Jiyong Park8e6d52f2020-11-19 14:37:47 +090095 Prebuilts []string
96
Jiyong Parkc0ec6f92020-11-19 23:00:52 +090097 // List of BPF programs inside this APEX bundle.
Jiyong Park8e6d52f2020-11-19 14:37:47 +090098 Bpfs []string
99
Jiyong Park12a719c2021-01-07 15:31:24 +0900100 // List of filesystem images that are embedded inside this APEX bundle.
101 Filesystems []string
102
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900103 // Name of the apex_key module that provides the private key to sign this APEX bundle.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900104 Key *string
105
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900106 // Specifies the certificate and the private key to sign the zip container of this APEX. If
107 // this is "foo", foo.x509.pem and foo.pk8 under PRODUCT_DEFAULT_DEV_CERTIFICATE are used
108 // as the certificate and the private key, respectively. If this is ":module", then the
109 // certificate and the private key are provided from the android_app_certificate module
110 // named "module".
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900111 Certificate *string
112
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900113 // The minimum SDK version that this APEX must support at minimum. This is usually set to
114 // the SDK version that the APEX was first introduced.
115 Min_sdk_version *string
116
117 // Whether this APEX is considered updatable or not. When set to true, this will enforce
118 // additional rules for making sure that the APEX is truly updatable. To be updatable,
119 // min_sdk_version should be set as well. This will also disable the size optimizations like
120 // symlinking to the system libs. Default is false.
121 Updatable *bool
122
123 // Whether this APEX is installable to one of the partitions like system, vendor, etc.
124 // Default: true.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900125 Installable *bool
126
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000127 // Whether this APEX can be compressed or not. Setting this property to false means this
128 // APEX will never be compressed. When set to true, APEX will be compressed if other
129 // conditions, e.g, target device needs to support APEX compression, are also fulfilled.
130 // Default: true.
131 Compressible *bool
132
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900133 // For native libraries and binaries, use the vendor variant instead of the core (platform)
134 // variant. Default is false. DO NOT use this for APEXes that are installed to the system or
135 // system_ext partition.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900136 Use_vendor *bool
137
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900138 // If set true, VNDK libs are considered as stable libs and are not included in this APEX.
139 // Should be only used in non-system apexes (e.g. vendor: true). Default is false.
140 Use_vndk_as_stable *bool
141
142 // List of SDKs that are used to build this APEX. A reference to an SDK should be either
143 // `name#version` or `name` which is an alias for `name#current`. If left empty,
144 // `platform#current` is implied. This value affects all modules included in this APEX. In
145 // other words, they are also built with the SDKs specified here.
146 Uses_sdks []string
147
148 // The type of APEX to build. Controls what the APEX payload is. Either 'image', 'zip' or
149 // 'both'. When set to image, contents are stored in a filesystem image inside a zip
150 // container. When set to zip, contents are stored in a zip container directly. This type is
151 // mostly for host-side debugging. When set to both, the two types are both built. Default
152 // is 'image'.
153 Payload_type *string
154
155 // The type of filesystem to use when the payload_type is 'image'. Either 'ext4' or 'f2fs'.
156 // Default 'ext4'.
157 Payload_fs_type *string
158
159 // For telling the APEX to ignore special handling for system libraries such as bionic.
160 // Default is false.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900161 Ignore_system_library_special_case *bool
162
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900163 // Whenever apex_payload.img of the APEX should include dm-verity hashtree. Should be only
164 // used in tests.
165 Test_only_no_hashtree *bool
166
167 // Whenever apex_payload.img of the APEX should not be dm-verity signed. Should be only
168 // used in tests.
169 Test_only_unsigned_payload *bool
170
Mohammad Samiul Islama8008f92020-12-22 10:47:50 +0000171 // Whenever apex should be compressed, regardless of product flag used. Should be only
172 // used in tests.
173 Test_only_force_compression *bool
174
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900175 IsCoverageVariant bool `blueprint:"mutated"`
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900176
177 // List of sanitizer names that this APEX is enabled for
178 SanitizerNames []string `blueprint:"mutated"`
179
180 PreventInstall bool `blueprint:"mutated"`
181
182 HideFromMake bool `blueprint:"mutated"`
183
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900184 // Internal package method for this APEX. When payload_type is image, this can be either
185 // imageApex or flattenedApex depending on Config.FlattenApex(). When payload_type is zip,
186 // this becomes zipApex.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900187 ApexType apexPackaging `blueprint:"mutated"`
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900188}
189
190type ApexNativeDependencies struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900191 // List of native libraries that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900192 Native_shared_libs []string
193
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900194 // List of JNI libraries that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900195 Jni_libs []string
196
Jiyong Park99644e92020-11-17 22:21:02 +0900197 // List of rust dyn libraries
198 Rust_dyn_libs []string
199
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900200 // List of native executables that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900201 Binaries []string
202
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900203 // List of native tests that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900204 Tests []string
205}
206
207type apexMultilibProperties struct {
208 // Native dependencies whose compile_multilib is "first"
209 First ApexNativeDependencies
210
211 // Native dependencies whose compile_multilib is "both"
212 Both ApexNativeDependencies
213
214 // Native dependencies whose compile_multilib is "prefer32"
215 Prefer32 ApexNativeDependencies
216
217 // Native dependencies whose compile_multilib is "32"
218 Lib32 ApexNativeDependencies
219
220 // Native dependencies whose compile_multilib is "64"
221 Lib64 ApexNativeDependencies
222}
223
224type apexTargetBundleProperties struct {
225 Target struct {
226 // Multilib properties only for android.
227 Android struct {
228 Multilib apexMultilibProperties
229 }
230
231 // Multilib properties only for host.
232 Host struct {
233 Multilib apexMultilibProperties
234 }
235
236 // Multilib properties only for host linux_bionic.
237 Linux_bionic struct {
238 Multilib apexMultilibProperties
239 }
240
241 // Multilib properties only for host linux_glibc.
242 Linux_glibc struct {
243 Multilib apexMultilibProperties
244 }
245 }
246}
247
Jiyong Park59140302020-12-14 18:44:04 +0900248type apexArchBundleProperties struct {
249 Arch struct {
250 Arm struct {
251 ApexNativeDependencies
252 }
253 Arm64 struct {
254 ApexNativeDependencies
255 }
256 X86 struct {
257 ApexNativeDependencies
258 }
259 X86_64 struct {
260 ApexNativeDependencies
261 }
262 }
263}
264
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900265// These properties can be used in override_apex to override the corresponding properties in the
266// base apex.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900267type overridableProperties struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900268 // List of APKs that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900269 Apps []string
270
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900271 // List of runtime resource overlays (RROs) that are embedded inside this APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900272 Rros []string
273
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900274 // Names of modules to be overridden. Listed modules can only be other binaries (in Make or
275 // Soong). This does not completely prevent installation of the overridden binaries, but if
276 // both binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will
277 // be removed from PRODUCT_PACKAGES.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900278 Overrides []string
279
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900280 // Logging parent value.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900281 Logging_parent string
282
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900283 // Apex Container package name. Override value for attribute package:name in
284 // AndroidManifest.xml
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900285 Package_name string
286
287 // A txt file containing list of files that are allowed to be included in this APEX.
288 Allowed_files *string `android:"path"`
289}
290
291type apexBundle struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900292 // Inherited structs
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900293 android.ModuleBase
294 android.DefaultableModuleBase
295 android.OverridableModuleBase
296 android.SdkBase
297
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900298 // Properties
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900299 properties apexBundleProperties
300 targetProperties apexTargetBundleProperties
Jiyong Park59140302020-12-14 18:44:04 +0900301 archProperties apexArchBundleProperties
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900302 overridableProperties overridableProperties
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900303 vndkProperties apexVndkProperties // only for apex_vndk modules
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900304
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900305 ///////////////////////////////////////////////////////////////////////////////////////////
306 // Inputs
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900307
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900308 // Keys for apex_paylaod.img
Jaewoong Jung18aefc12020-12-21 09:11:10 -0800309 publicKeyFile android.Path
310 privateKeyFile android.Path
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900311
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900312 // Cert/priv-key for the zip container
Jaewoong Jung18aefc12020-12-21 09:11:10 -0800313 containerCertificateFile android.Path
314 containerPrivateKeyFile android.Path
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900315
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900316 // Flags for special variants of APEX
317 testApex bool
318 vndkApex bool
319 artApex bool
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900320
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900321 // Tells whether this variant of the APEX bundle is the primary one or not. Only the primary
322 // one gets installed to the device.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900323 primaryApexType bool
324
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900325 // Suffix of module name in Android.mk ".flattened", ".apex", ".zipapex", or ""
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900326 suffix string
327
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900328 // File system type of apex_payload.img
329 payloadFsType fsType
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900330
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900331 // Whether to create symlink to the system file instead of having a file inside the apex or
332 // not
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900333 linkToSystemLib bool
334
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900335 // List of files to be included in this APEX. This is filled in the first part of
336 // GenerateAndroidBuildActions.
337 filesInfo []apexFile
338
339 // List of other module names that should be installed when this APEX gets installed.
340 requiredDeps []string
341
342 ///////////////////////////////////////////////////////////////////////////////////////////
343 // Outputs (final and intermediates)
344
345 // Processed apex manifest in JSONson format (for Q)
346 manifestJsonOut android.WritablePath
347
348 // Processed apex manifest in PB format (for R+)
349 manifestPbOut android.WritablePath
350
351 // Processed file_contexts files
352 fileContexts android.WritablePath
353
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900354 // Struct holding the merged notice file paths in different formats
355 mergedNotices android.NoticeOutputs
356
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900357 // The built APEX file. This is the main product.
358 outputFile android.WritablePath
359
360 // The built APEX file in app bundle format. This file is not directly installed to the
361 // device. For an APEX, multiple app bundles are created each of which is for a specific ABI
362 // like arm, arm64, x86, etc. Then they are processed again (outside of the Android build
363 // system) to be merged into a single app bundle file that Play accepts. See
364 // vendor/google/build/build_unbundled_mainline_module.sh for more detail.
365 bundleModuleFile android.WritablePath
366
367 // Target path to install this APEX. Usually out/target/product/<device>/<partition>/apex.
368 installDir android.InstallPath
369
370 // List of commands to create symlinks for backward compatibility. These commands will be
371 // attached as LOCAL_POST_INSTALL_CMD to apex package itself (for unflattened build) or
372 // apex_manifest (for flattened build) so that compat symlinks are always installed
373 // regardless of TARGET_FLATTEN_APEX setting.
374 compatSymlinks []string
375
376 // Text file having the list of individual files that are included in this APEX. Used for
377 // debugging purpose.
378 installedFilesFile android.WritablePath
379
380 // List of module names that this APEX is including (to be shown via *-deps-info target).
381 // Used for debugging purpose.
382 android.ApexBundleDepsInfo
383
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900384 // Optional list of lint report zip files for apexes that contain java or app modules
385 lintReports android.Paths
386
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900387 prebuiltFileToDelete string
sophiezc80a2b32020-11-12 16:39:19 +0000388
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000389 isCompressed bool
390
sophiezc80a2b32020-11-12 16:39:19 +0000391 // Path of API coverage generate file
392 coverageOutputPath android.ModuleOutPath
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900393}
394
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900395// apexFileClass represents a type of file that can be included in APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900396type apexFileClass int
397
Jooyung Han72bd2f82019-10-23 16:46:38 +0900398const (
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900399 app apexFileClass = iota
400 appSet
401 etc
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900402 goBinary
403 javaSharedLib
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900404 nativeExecutable
405 nativeSharedLib
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900406 nativeTest
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900407 pyBinary
408 shBinary
Jooyung Han72bd2f82019-10-23 16:46:38 +0900409)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900410
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900411// apexFile represents a file in an APEX bundle. This is created during the first half of
412// GenerateAndroidBuildActions by traversing the dependencies of the APEX. Then in the second half
413// of the function, this is used to create commands that copies the files into a staging directory,
414// where they are packaged into the APEX file. This struct is also used for creating Make modules
415// for each of the files in case when the APEX is flattened.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900416type apexFile struct {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900417 // buildFile is put in the installDir inside the APEX.
418 builtFile android.Path
419 noticeFiles android.Paths
420 installDir string
421 customStem string
422 symlinks []string // additional symlinks
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900423
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900424 // Info for Android.mk Module name of `module` in AndroidMk. Note the generated AndroidMk
425 // module for apexFile is named something like <AndroidMk module name>.<apex name>[<apex
426 // suffix>]
427 androidMkModuleName string // becomes LOCAL_MODULE
428 class apexFileClass // becomes LOCAL_MODULE_CLASS
429 moduleDir string // becomes LOCAL_PATH
430 requiredModuleNames []string // becomes LOCAL_REQUIRED_MODULES
431 targetRequiredModuleNames []string // becomes LOCAL_TARGET_REQUIRED_MODULES
432 hostRequiredModuleNames []string // becomes LOCAL_HOST_REQUIRED_MODULES
433 dataPaths []android.DataPath // becomes LOCAL_TEST_DATA
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900434
435 jacocoReportClassesFile android.Path // only for javalibs and apps
436 lintDepSets java.LintDepSets // only for javalibs and apps
437 certificate java.Certificate // only for apps
438 overriddenPackageName string // only for apps
439
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900440 transitiveDep bool
441 isJniLib bool
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900442
Jiyong Park57621b22021-01-20 20:33:11 +0900443 multilib string
444
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900445 // TODO(jiyong): remove this
446 module android.Module
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900447}
448
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900449// TODO(jiyong): shorten the arglist using an option struct
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900450func newApexFile(ctx android.BaseModuleContext, builtFile android.Path, androidMkModuleName string, installDir string, class apexFileClass, module android.Module) apexFile {
451 ret := apexFile{
452 builtFile: builtFile,
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900453 installDir: installDir,
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900454 androidMkModuleName: androidMkModuleName,
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900455 class: class,
456 module: module,
457 }
458 if module != nil {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900459 ret.noticeFiles = module.NoticeFiles()
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900460 ret.moduleDir = ctx.OtherModuleDir(module)
461 ret.requiredModuleNames = module.RequiredModuleNames()
462 ret.targetRequiredModuleNames = module.TargetRequiredModuleNames()
463 ret.hostRequiredModuleNames = module.HostRequiredModuleNames()
Jiyong Park57621b22021-01-20 20:33:11 +0900464 ret.multilib = module.Target().Arch.ArchType.Multilib
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900465 }
466 return ret
467}
468
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900469func (af *apexFile) ok() bool {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900470 return af.builtFile != nil && af.builtFile.String() != ""
471}
472
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900473// apexRelativePath returns the relative path of the given path from the install directory of this
474// apexFile.
475// TODO(jiyong): rename this
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900476func (af *apexFile) apexRelativePath(path string) string {
477 return filepath.Join(af.installDir, path)
478}
479
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900480// path returns path of this apex file relative to the APEX root
481func (af *apexFile) path() string {
482 return af.apexRelativePath(af.stem())
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900483}
484
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900485// stem returns the base filename of this apex file
486func (af *apexFile) stem() string {
487 if af.customStem != "" {
488 return af.customStem
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900489 }
490 return af.builtFile.Base()
491}
492
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900493// symlinkPaths returns paths of the symlinks (if any) relative to the APEX root
494func (af *apexFile) symlinkPaths() []string {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900495 var ret []string
496 for _, symlink := range af.symlinks {
497 ret = append(ret, af.apexRelativePath(symlink))
498 }
499 return ret
500}
501
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900502// availableToPlatform tests whether this apexFile is from a module that can be installed to the
503// platform.
504func (af *apexFile) availableToPlatform() bool {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900505 if af.module == nil {
506 return false
507 }
508 if am, ok := af.module.(android.ApexModule); ok {
509 return am.AvailableFor(android.AvailableToPlatform)
510 }
511 return false
512}
513
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900514////////////////////////////////////////////////////////////////////////////////////////////////////
515// Mutators
516//
517// Brief description about mutators for APEX. The following three mutators are the most important
518// ones.
519//
520// 1) DepsMutator: from the properties like native_shared_libs, java_libs, etc., modules are added
521// to the (direct) dependencies of this APEX bundle.
522//
Paul Duffin949abc02020-12-08 10:34:30 +0000523// 2) apexInfoMutator: this is a post-deps mutator, so runs after DepsMutator. Its goal is to
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900524// collect modules that are direct and transitive dependencies of each APEX bundle. The collected
525// modules are marked as being included in the APEX via BuildForApex().
526//
Paul Duffin949abc02020-12-08 10:34:30 +0000527// 3) apexMutator: this is a post-deps mutator that runs after apexInfoMutator. For each module that
528// are marked by the apexInfoMutator, apex variations are created using CreateApexVariations().
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900529
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900530type dependencyTag struct {
531 blueprint.BaseDependencyTag
532 name string
533
534 // Determines if the dependent will be part of the APEX payload. Can be false for the
535 // dependencies to the signing key module, etc.
536 payload bool
537}
538
539var (
540 androidAppTag = dependencyTag{name: "androidApp", payload: true}
541 bpfTag = dependencyTag{name: "bpf", payload: true}
542 certificateTag = dependencyTag{name: "certificate"}
543 executableTag = dependencyTag{name: "executable", payload: true}
Jiyong Park12a719c2021-01-07 15:31:24 +0900544 fsTag = dependencyTag{name: "filesystem", payload: true}
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900545 javaLibTag = dependencyTag{name: "javaLib", payload: true}
546 jniLibTag = dependencyTag{name: "jniLib", payload: true}
547 keyTag = dependencyTag{name: "key"}
548 prebuiltTag = dependencyTag{name: "prebuilt", payload: true}
549 rroTag = dependencyTag{name: "rro", payload: true}
550 sharedLibTag = dependencyTag{name: "sharedLib", payload: true}
551 testForTag = dependencyTag{name: "test for"}
552 testTag = dependencyTag{name: "test", payload: true}
553)
554
555// TODO(jiyong): shorten this function signature
556func addDependenciesForNativeModules(ctx android.BottomUpMutatorContext, nativeModules ApexNativeDependencies, target android.Target, imageVariation string) {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900557 binVariations := target.Variations()
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900558 libVariations := append(target.Variations(), blueprint.Variation{Mutator: "link", Variation: "shared"})
Jiyong Park99644e92020-11-17 22:21:02 +0900559 rustLibVariations := append(target.Variations(), blueprint.Variation{Mutator: "rust_libraries", Variation: "dylib"})
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900560
561 if ctx.Device() {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900562 binVariations = append(binVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
Jiyong Parkf2cc1b72020-12-09 00:20:45 +0900563 libVariations = append(libVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
564 rustLibVariations = append(rustLibVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900565 }
566
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900567 // Use *FarVariation* to be able to depend on modules having conflicting variations with
568 // this module. This is required since arch variant of an APEX bundle is 'common' but it is
569 // 'arm' or 'arm64' for native shared libs.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900570 ctx.AddFarVariationDependencies(binVariations, executableTag, nativeModules.Binaries...)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900571 ctx.AddFarVariationDependencies(binVariations, testTag, nativeModules.Tests...)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900572 ctx.AddFarVariationDependencies(libVariations, jniLibTag, nativeModules.Jni_libs...)
573 ctx.AddFarVariationDependencies(libVariations, sharedLibTag, nativeModules.Native_shared_libs...)
Jiyong Park99644e92020-11-17 22:21:02 +0900574 ctx.AddFarVariationDependencies(rustLibVariations, sharedLibTag, nativeModules.Rust_dyn_libs...)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900575}
576
577func (a *apexBundle) combineProperties(ctx android.BottomUpMutatorContext) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900578 if ctx.Device() {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900579 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Android.Multilib, nil)
580 } else {
581 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Host.Multilib, nil)
582 if ctx.Os().Bionic() {
583 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Linux_bionic.Multilib, nil)
584 } else {
585 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Linux_glibc.Multilib, nil)
586 }
587 }
588}
589
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900590// getImageVariation returns the image variant name for this apexBundle. In most cases, it's simply
591// android.CoreVariation, but gets complicated for the vendor APEXes and the VNDK APEX.
592func (a *apexBundle) getImageVariation(ctx android.BottomUpMutatorContext) string {
593 deviceConfig := ctx.DeviceConfig()
594 if a.vndkApex {
595 return cc.VendorVariationPrefix + a.vndkVersion(deviceConfig)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900596 }
597
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900598 var prefix string
599 var vndkVersion string
600 if deviceConfig.VndkVersion() != "" {
601 if proptools.Bool(a.properties.Use_vendor) {
602 prefix = cc.VendorVariationPrefix
603 vndkVersion = deviceConfig.PlatformVndkVersion()
604 } else if a.SocSpecific() || a.DeviceSpecific() {
605 prefix = cc.VendorVariationPrefix
606 vndkVersion = deviceConfig.VndkVersion()
607 } else if a.ProductSpecific() {
608 prefix = cc.ProductVariationPrefix
609 vndkVersion = deviceConfig.ProductVndkVersion()
610 }
611 }
612 if vndkVersion == "current" {
613 vndkVersion = deviceConfig.PlatformVndkVersion()
614 }
615 if vndkVersion != "" {
616 return prefix + vndkVersion
617 }
618
619 return android.CoreVariation // The usual case
620}
621
622func (a *apexBundle) DepsMutator(ctx android.BottomUpMutatorContext) {
623 // TODO(jiyong): move this kind of checks to GenerateAndroidBuildActions?
624 checkUseVendorProperty(ctx, a)
625
626 // apexBundle is a multi-arch targets module. Arch variant of apexBundle is set to 'common'.
627 // arch-specific targets are enabled by the compile_multilib setting of the apex bundle. For
628 // each target os/architectures, appropriate dependencies are selected by their
629 // target.<os>.multilib.<type> groups and are added as (direct) dependencies.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900630 targets := ctx.MultiTargets()
631 config := ctx.DeviceConfig()
632 imageVariation := a.getImageVariation(ctx)
633
634 a.combineProperties(ctx)
635
636 has32BitTarget := false
637 for _, target := range targets {
638 if target.Arch.ArchType.Multilib == "lib32" {
639 has32BitTarget = true
Paul Duffin7d74e7b2020-03-06 12:30:13 +0000640 }
641 }
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900642 for i, target := range targets {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900643 // Don't include artifacts for the host cross targets because there is no way for us
644 // to run those artifacts natively on host
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900645 if target.HostCross {
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900646 continue
647 }
Paul Duffin7d74e7b2020-03-06 12:30:13 +0000648
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900649 var depsList []ApexNativeDependencies
Paul Duffin7d74e7b2020-03-06 12:30:13 +0000650
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900651 // Add native modules targeting both ABIs. When multilib.* is omitted for
652 // native_shared_libs/jni_libs/tests, it implies multilib.both
653 depsList = append(depsList, a.properties.Multilib.Both)
654 depsList = append(depsList, ApexNativeDependencies{
655 Native_shared_libs: a.properties.Native_shared_libs,
656 Tests: a.properties.Tests,
657 Jni_libs: a.properties.Jni_libs,
658 Binaries: nil,
659 })
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900660
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900661 // Add native modules targeting the first ABI When multilib.* is omitted for
662 // binaries, it implies multilib.first
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900663 isPrimaryAbi := i == 0
664 if isPrimaryAbi {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900665 depsList = append(depsList, a.properties.Multilib.First)
666 depsList = append(depsList, ApexNativeDependencies{
667 Native_shared_libs: nil,
668 Tests: nil,
669 Jni_libs: nil,
670 Binaries: a.properties.Binaries,
671 })
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900672 }
673
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900674 // Add native modules targeting either 32-bit or 64-bit ABI
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900675 switch target.Arch.ArchType.Multilib {
676 case "lib32":
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900677 depsList = append(depsList, a.properties.Multilib.Lib32)
678 depsList = append(depsList, a.properties.Multilib.Prefer32)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900679 case "lib64":
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900680 depsList = append(depsList, a.properties.Multilib.Lib64)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900681 if !has32BitTarget {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900682 depsList = append(depsList, a.properties.Multilib.Prefer32)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900683 }
684 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900685
Jiyong Park59140302020-12-14 18:44:04 +0900686 // Add native modules targeting a specific arch variant
687 switch target.Arch.ArchType {
688 case android.Arm:
689 depsList = append(depsList, a.archProperties.Arch.Arm.ApexNativeDependencies)
690 case android.Arm64:
691 depsList = append(depsList, a.archProperties.Arch.Arm64.ApexNativeDependencies)
692 case android.X86:
693 depsList = append(depsList, a.archProperties.Arch.X86.ApexNativeDependencies)
694 case android.X86_64:
695 depsList = append(depsList, a.archProperties.Arch.X86_64.ApexNativeDependencies)
696 default:
697 panic(fmt.Errorf("unsupported arch %v\n", ctx.Arch().ArchType))
698 }
699
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900700 for _, d := range depsList {
701 addDependenciesForNativeModules(ctx, d, target, imageVariation)
702 }
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900703 }
704
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900705 // For prebuilt_etc, use the first variant (64 on 64/32bit device, 32 on 32bit device)
706 // regardless of the TARGET_PREFER_* setting. See b/144532908
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900707 archForPrebuiltEtc := config.Arches()[0]
708 for _, arch := range config.Arches() {
709 // Prefer 64-bit arch if there is any
710 if arch.ArchType.Multilib == "lib64" {
711 archForPrebuiltEtc = arch
712 break
713 }
714 }
715 ctx.AddFarVariationDependencies([]blueprint.Variation{
716 {Mutator: "os", Variation: ctx.Os().String()},
717 {Mutator: "arch", Variation: archForPrebuiltEtc.String()},
718 }, prebuiltTag, a.properties.Prebuilts...)
719
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900720 // Common-arch dependencies come next
721 commonVariation := ctx.Config().AndroidCommonTarget.Variations()
722 ctx.AddFarVariationDependencies(commonVariation, javaLibTag, a.properties.Java_libs...)
723 ctx.AddFarVariationDependencies(commonVariation, bpfTag, a.properties.Bpfs...)
Jiyong Park12a719c2021-01-07 15:31:24 +0900724 ctx.AddFarVariationDependencies(commonVariation, fsTag, a.properties.Filesystems...)
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900725
726 // With EMMA_INSTRUMENT_FRAMEWORK=true the ART boot image includes jacoco library.
727 if a.artApex && ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK") {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900728 ctx.AddFarVariationDependencies(commonVariation, javaLibTag, "jacocoagent")
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900729 }
730
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900731 // Dependencies for signing
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900732 if String(a.properties.Key) == "" {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900733 ctx.PropertyErrorf("key", "missing")
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900734 return
735 }
736 ctx.AddDependency(ctx.Module(), keyTag, String(a.properties.Key))
737
738 cert := android.SrcIsModule(a.getCertString(ctx))
739 if cert != "" {
740 ctx.AddDependency(ctx.Module(), certificateTag, cert)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900741 // empty cert is not an error. Cert and private keys will be directly found under
742 // PRODUCT_DEFAULT_DEV_CERTIFICATE
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900743 }
744
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900745 // Marks that this APEX (in fact all the modules in it) has to be built with the given SDKs.
746 // This field currently isn't used.
747 // TODO(jiyong): consider dropping this feature
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900748 // TODO(jiyong): ensure that all apexes are with non-empty uses_sdks
749 if len(a.properties.Uses_sdks) > 0 {
750 sdkRefs := []android.SdkRef{}
751 for _, str := range a.properties.Uses_sdks {
752 parsed := android.ParseSdkRef(ctx, str, "uses_sdks")
753 sdkRefs = append(sdkRefs, parsed)
754 }
755 a.BuildWithSdks(sdkRefs)
Andrei Onea115e7e72020-06-05 21:14:03 +0100756 }
757}
758
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900759// DepsMutator for the overridden properties.
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900760func (a *apexBundle) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
761 if a.overridableProperties.Allowed_files != nil {
762 android.ExtractSourceDeps(ctx, a.overridableProperties.Allowed_files)
Andrei Onea115e7e72020-06-05 21:14:03 +0100763 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900764
765 commonVariation := ctx.Config().AndroidCommonTarget.Variations()
766 ctx.AddFarVariationDependencies(commonVariation, androidAppTag, a.overridableProperties.Apps...)
767 ctx.AddFarVariationDependencies(commonVariation, rroTag, a.overridableProperties.Rros...)
Andrei Onea115e7e72020-06-05 21:14:03 +0100768}
769
Jiyong Park8e6d52f2020-11-19 14:37:47 +0900770type ApexBundleInfo struct {
771 Contents *android.ApexContents
Andrei Onea115e7e72020-06-05 21:14:03 +0100772}
773
Paul Duffin949abc02020-12-08 10:34:30 +0000774var ApexBundleInfoProvider = blueprint.NewMutatorProvider(ApexBundleInfo{}, "apex_info")
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900775
Paul Duffina7d6a892020-12-07 17:39:59 +0000776var _ ApexInfoMutator = (*apexBundle)(nil)
777
778// ApexInfoMutator is responsible for collecting modules that need to have apex variants. They are
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900779// identified by doing a graph walk starting from an apexBundle. Basically, all the (direct and
780// indirect) dependencies are collected. But a few types of modules that shouldn't be included in
781// the apexBundle (e.g. stub libraries) are not collected. Note that a single module can be depended
782// on by multiple apexBundles. In that case, the module is collected for all of the apexBundles.
Paul Duffin949abc02020-12-08 10:34:30 +0000783//
784// For each dependency between an apex and an ApexModule an ApexInfo object describing the apex
785// is passed to that module's BuildForApex(ApexInfo) method which collates them all in a list.
786// The apexMutator uses that list to create module variants for the apexes to which it belongs.
787// The relationship between module variants and apexes is not one-to-one as variants will be
788// shared between compatible apexes.
Paul Duffina7d6a892020-12-07 17:39:59 +0000789func (a *apexBundle) ApexInfoMutator(mctx android.TopDownMutatorContext) {
Jooyung Handf78e212020-07-22 15:54:47 +0900790
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900791 // The VNDK APEX is special. For the APEX, the membership is described in a very different
792 // way. There is no dependency from the VNDK APEX to the VNDK libraries. Instead, VNDK
793 // libraries are self-identified by their vndk.enabled properties. There is no need to run
794 // this mutator for the APEX as nothing will be collected. So, let's return fast.
795 if a.vndkApex {
796 return
797 }
798
799 // Special casing for APEXes on non-system (e.g., vendor, odm, etc.) partitions. They are
800 // provided with a property named use_vndk_as_stable, which when set to true doesn't collect
801 // VNDK libraries as transitive dependencies. This option is useful for reducing the size of
802 // the non-system APEXes because the VNDK libraries won't be included (and duped) in the
803 // APEX, but shared across APEXes via the VNDK APEX.
Jooyung Handf78e212020-07-22 15:54:47 +0900804 useVndk := a.SocSpecific() || a.DeviceSpecific() || (a.ProductSpecific() && mctx.Config().EnforceProductPartitionInterface())
805 excludeVndkLibs := useVndk && proptools.Bool(a.properties.Use_vndk_as_stable)
806 if !useVndk && proptools.Bool(a.properties.Use_vndk_as_stable) {
807 mctx.PropertyErrorf("use_vndk_as_stable", "not supported for system/system_ext APEXes")
808 return
809 }
810
Colin Cross56a83212020-09-15 18:30:11 -0700811 continueApexDepsWalk := func(child, parent android.Module) bool {
Jooyung Han698dd9f2020-07-22 15:17:19 +0900812 am, ok := child.(android.ApexModule)
813 if !ok || !am.CanHaveApexVariants() {
814 return false
Jiyong Parkf760cae2020-02-12 07:53:12 +0900815 }
Paul Duffina37eca22020-07-22 13:00:54 +0100816 if !parent.(android.DepIsInSameApex).DepIsInSameApex(mctx, child) {
Jooyung Han698dd9f2020-07-22 15:17:19 +0900817 return false
818 }
Jooyung Handf78e212020-07-22 15:54:47 +0900819 if excludeVndkLibs {
820 if c, ok := child.(*cc.Module); ok && c.IsVndk() {
821 return false
822 }
823 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900824 // By default, all the transitive dependencies are collected, unless filtered out
825 // above.
Colin Cross56a83212020-09-15 18:30:11 -0700826 return true
827 }
828
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900829 // Records whether a certain module is included in this apexBundle via direct dependency or
830 // inndirect dependency.
831 contents := make(map[string]android.ApexMembership)
Colin Cross56a83212020-09-15 18:30:11 -0700832 mctx.WalkDeps(func(child, parent android.Module) bool {
833 if !continueApexDepsWalk(child, parent) {
834 return false
835 }
Jooyung Han698dd9f2020-07-22 15:17:19 +0900836 // If the parent is apexBundle, this child is directly depended.
837 _, directDep := parent.(*apexBundle)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900838 depName := mctx.OtherModuleName(child)
Colin Cross56a83212020-09-15 18:30:11 -0700839 contents[depName] = contents[depName].Add(directDep)
840 return true
841 })
842
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900843 // The membership information is saved for later access
Jiyong Parke4758ed2020-11-18 01:34:22 +0900844 apexContents := android.NewApexContents(contents)
Colin Cross56a83212020-09-15 18:30:11 -0700845 mctx.SetProvider(ApexBundleInfoProvider, ApexBundleInfo{
846 Contents: apexContents,
847 })
848
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900849 // This is the main part of this mutator. Mark the collected dependencies that they need to
850 // be built for this apexBundle.
Colin Cross56a83212020-09-15 18:30:11 -0700851 apexInfo := android.ApexInfo{
852 ApexVariationName: mctx.ModuleName(),
853 MinSdkVersionStr: a.minSdkVersion(mctx).String(),
854 RequiredSdks: a.RequiredSdks(),
855 Updatable: a.Updatable(),
856 InApexes: []string{mctx.ModuleName()},
857 ApexContents: []*android.ApexContents{apexContents},
858 }
Colin Cross56a83212020-09-15 18:30:11 -0700859 mctx.WalkDeps(func(child, parent android.Module) bool {
860 if !continueApexDepsWalk(child, parent) {
861 return false
862 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900863 child.(android.ApexModule).BuildForApex(apexInfo) // leave a mark!
Jooyung Han698dd9f2020-07-22 15:17:19 +0900864 return true
Jiyong Parkf760cae2020-02-12 07:53:12 +0900865 })
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900866}
867
Paul Duffina7d6a892020-12-07 17:39:59 +0000868type ApexInfoMutator interface {
869 // ApexInfoMutator implementations must call BuildForApex(ApexInfo) on any modules that are
870 // depended upon by an apex and which require an apex specific variant.
871 ApexInfoMutator(android.TopDownMutatorContext)
872}
873
874// apexInfoMutator delegates the work of identifying which modules need an ApexInfo and apex
875// specific variant to modules that support the ApexInfoMutator.
876func apexInfoMutator(mctx android.TopDownMutatorContext) {
877 if !mctx.Module().Enabled() {
878 return
879 }
880
881 if a, ok := mctx.Module().(ApexInfoMutator); ok {
882 a.ApexInfoMutator(mctx)
883 return
884 }
885}
886
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900887// apexUniqueVariationsMutator checks if any dependencies use unique apex variations. If so, use
888// unique apex variations for this module. See android/apex.go for more about unique apex variant.
889// TODO(jiyong): move this to android/apex.go?
Colin Crossaede88c2020-08-11 12:17:01 -0700890func apexUniqueVariationsMutator(mctx android.BottomUpMutatorContext) {
891 if !mctx.Module().Enabled() {
892 return
893 }
894 if am, ok := mctx.Module().(android.ApexModule); ok {
Colin Cross56a83212020-09-15 18:30:11 -0700895 android.UpdateUniqueApexVariationsForDeps(mctx, am)
896 }
897}
898
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900899// apexTestForDepsMutator checks if this module is a test for an apex. If so, add a dependency on
900// the apex in order to retrieve its contents later.
901// TODO(jiyong): move this to android/apex.go?
Colin Cross56a83212020-09-15 18:30:11 -0700902func apexTestForDepsMutator(mctx android.BottomUpMutatorContext) {
903 if !mctx.Module().Enabled() {
904 return
905 }
Colin Cross56a83212020-09-15 18:30:11 -0700906 if am, ok := mctx.Module().(android.ApexModule); ok {
907 if testFor := am.TestFor(); len(testFor) > 0 {
908 mctx.AddFarVariationDependencies([]blueprint.Variation{
909 {Mutator: "os", Variation: am.Target().OsVariation()},
910 {"arch", "common"},
911 }, testForTag, testFor...)
912 }
913 }
914}
915
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900916// TODO(jiyong): move this to android/apex.go?
Colin Cross56a83212020-09-15 18:30:11 -0700917func apexTestForMutator(mctx android.BottomUpMutatorContext) {
918 if !mctx.Module().Enabled() {
919 return
920 }
Colin Cross56a83212020-09-15 18:30:11 -0700921 if _, ok := mctx.Module().(android.ApexModule); ok {
922 var contents []*android.ApexContents
923 for _, testFor := range mctx.GetDirectDepsWithTag(testForTag) {
924 abInfo := mctx.OtherModuleProvider(testFor, ApexBundleInfoProvider).(ApexBundleInfo)
925 contents = append(contents, abInfo.Contents)
926 }
927 mctx.SetProvider(android.ApexTestForInfoProvider, android.ApexTestForInfo{
928 ApexContents: contents,
929 })
Colin Crossaede88c2020-08-11 12:17:01 -0700930 }
931}
932
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900933// markPlatformAvailability marks whether or not a module can be available to platform. A module
934// cannot be available to platform if 1) it is explicitly marked as not available (i.e.
935// "//apex_available:platform" is absent) or 2) it depends on another module that isn't (or can't
936// be) available to platform
937// TODO(jiyong): move this to android/apex.go?
Jiyong Park89e850a2020-04-07 16:37:39 +0900938func markPlatformAvailability(mctx android.BottomUpMutatorContext) {
939 // Host and recovery are not considered as platform
940 if mctx.Host() || mctx.Module().InstallInRecovery() {
941 return
942 }
943
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900944 am, ok := mctx.Module().(android.ApexModule)
945 if !ok {
946 return
947 }
Jiyong Park89e850a2020-04-07 16:37:39 +0900948
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900949 availableToPlatform := am.AvailableFor(android.AvailableToPlatform)
Jiyong Park89e850a2020-04-07 16:37:39 +0900950
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900951 // If any of the dep is not available to platform, this module is also considered as being
952 // not available to platform even if it has "//apex_available:platform"
953 mctx.VisitDirectDeps(func(child android.Module) {
954 if !am.DepIsInSameApex(mctx, child) {
955 // if the dependency crosses apex boundary, don't consider it
956 return
Jiyong Park89e850a2020-04-07 16:37:39 +0900957 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900958 if dep, ok := child.(android.ApexModule); ok && dep.NotAvailableForPlatform() {
959 availableToPlatform = false
960 // TODO(b/154889534) trigger an error when 'am' has
961 // "//apex_available:platform"
Jiyong Park89e850a2020-04-07 16:37:39 +0900962 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900963 })
Jiyong Park89e850a2020-04-07 16:37:39 +0900964
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900965 // Exception 1: stub libraries and native bridge libraries are always available to platform
966 if cc, ok := mctx.Module().(*cc.Module); ok &&
967 (cc.IsStubs() || cc.Target().NativeBridge == android.NativeBridgeEnabled) {
968 availableToPlatform = true
969 }
970
971 // Exception 2: bootstrap bionic libraries are also always available to platform
972 if cc.InstallToBootstrap(mctx.ModuleName(), mctx.Config()) {
973 availableToPlatform = true
974 }
975
976 if !availableToPlatform {
977 am.SetNotAvailableForPlatform()
Jiyong Park89e850a2020-04-07 16:37:39 +0900978 }
979}
980
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900981// apexMutator visits each module and creates apex variations if the module was marked in the
Paul Duffin949abc02020-12-08 10:34:30 +0000982// previous run of apexInfoMutator.
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900983func apexMutator(mctx android.BottomUpMutatorContext) {
Jooyung Han49f67012020-04-17 13:43:10 +0900984 if !mctx.Module().Enabled() {
985 return
986 }
Colin Cross56a83212020-09-15 18:30:11 -0700987
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900988 // This is the usual path.
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900989 if am, ok := mctx.Module().(android.ApexModule); ok && am.CanHaveApexVariants() {
Colin Cross56a83212020-09-15 18:30:11 -0700990 android.CreateApexVariations(mctx, am)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900991 return
992 }
993
994 // apexBundle itself is mutated so that it and its dependencies have the same apex variant.
995 // TODO(jiyong): document the reason why the VNDK APEX is an exception here.
996 if a, ok := mctx.Module().(*apexBundle); ok && !a.vndkApex {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900997 apexBundleName := mctx.ModuleName()
998 mctx.CreateVariations(apexBundleName)
Jiyong Park5d790c32019-11-15 18:40:32 +0900999 } else if o, ok := mctx.Module().(*OverrideApex); ok {
1000 apexBundleName := o.GetOverriddenModuleName()
1001 if apexBundleName == "" {
1002 mctx.ModuleErrorf("base property is not set")
1003 return
1004 }
1005 mctx.CreateVariations(apexBundleName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001006 }
1007}
Sundong Ahne9b55722019-09-06 17:37:42 +09001008
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001009// See android.UpdateDirectlyInAnyApex
1010// TODO(jiyong): move this to android/apex.go?
Colin Cross56a83212020-09-15 18:30:11 -07001011func apexDirectlyInAnyMutator(mctx android.BottomUpMutatorContext) {
1012 if !mctx.Module().Enabled() {
1013 return
1014 }
1015 if am, ok := mctx.Module().(android.ApexModule); ok {
1016 android.UpdateDirectlyInAnyApex(mctx, am)
1017 }
1018}
1019
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001020// apexPackaging represents a specific packaging method for an APEX.
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001021type apexPackaging int
1022
1023const (
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001024 // imageApex is a packaging method where contents are included in a filesystem image which
1025 // is then included in a zip container. This is the most typical way of packaging.
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001026 imageApex apexPackaging = iota
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001027
1028 // zipApex is a packaging method where contents are directly included in the zip container.
1029 // This is used for host-side testing - because the contents are easily accessible by
1030 // unzipping the container.
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001031 zipApex
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001032
1033 // flattendApex is a packaging method where contents are not included in the APEX file, but
1034 // installed to /apex/<apexname> directory on the device. This packaging method is used for
1035 // old devices where the filesystem-based APEX file can't be supported.
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001036 flattenedApex
1037)
1038
1039const (
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001040 // File extensions of an APEX for different packaging methods
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001041 imageApexSuffix = ".apex"
1042 zipApexSuffix = ".zipapex"
1043 flattenedSuffix = ".flattened"
1044
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001045 // variant names each of which is for a packaging method
Jiyong Park8e6d52f2020-11-19 14:37:47 +09001046 imageApexType = "image"
1047 zipApexType = "zip"
1048 flattenedApexType = "flattened"
1049
1050 ext4FsType = "ext4"
1051 f2fsFsType = "f2fs"
1052)
1053
1054// The suffix for the output "file", not the module
1055func (a apexPackaging) suffix() string {
1056 switch a {
1057 case imageApex:
1058 return imageApexSuffix
1059 case zipApex:
1060 return zipApexSuffix
1061 default:
1062 panic(fmt.Errorf("unknown APEX type %d", a))
1063 }
1064}
1065
1066func (a apexPackaging) name() string {
1067 switch a {
1068 case imageApex:
1069 return imageApexType
1070 case zipApex:
1071 return zipApexType
1072 default:
1073 panic(fmt.Errorf("unknown APEX type %d", a))
1074 }
1075}
1076
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001077// apexFlattenedMutator creates one or more variations each of which is for a packaging method.
1078// TODO(jiyong): give a better name to this mutator
Sundong Ahne9b55722019-09-06 17:37:42 +09001079func apexFlattenedMutator(mctx android.BottomUpMutatorContext) {
Jooyung Han49f67012020-04-17 13:43:10 +09001080 if !mctx.Module().Enabled() {
1081 return
1082 }
Sundong Ahne8fb7242019-09-17 13:50:45 +09001083 if ab, ok := mctx.Module().(*apexBundle); ok {
Sundong Ahnabb64432019-10-22 13:58:29 +09001084 var variants []string
1085 switch proptools.StringDefault(ab.properties.Payload_type, "image") {
1086 case "image":
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001087 // This is the normal case. Note that both image and flattend APEXes are
1088 // created. The image type is installed to the system partition, while the
1089 // flattened APEX is (optionally) installed to the system_ext partition.
1090 // This is mostly for GSI which has to support wide range of devices. If GSI
1091 // is installed on a newer (APEX-capable) device, the image APEX in the
1092 // system will be used. However, if the same GSI is installed on an old
1093 // device which can't support image APEX, the flattened APEX in the
1094 // system_ext partion (which still is part of GSI) is used instead.
Sundong Ahnabb64432019-10-22 13:58:29 +09001095 variants = append(variants, imageApexType, flattenedApexType)
1096 case "zip":
1097 variants = append(variants, zipApexType)
1098 case "both":
1099 variants = append(variants, imageApexType, zipApexType, flattenedApexType)
1100 default:
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001101 mctx.PropertyErrorf("payload_type", "%q is not one of \"image\", \"zip\", or \"both\".", *ab.properties.Payload_type)
Sundong Ahnabb64432019-10-22 13:58:29 +09001102 return
1103 }
1104
1105 modules := mctx.CreateLocalVariations(variants...)
1106
1107 for i, v := range variants {
1108 switch v {
1109 case imageApexType:
1110 modules[i].(*apexBundle).properties.ApexType = imageApex
1111 case zipApexType:
1112 modules[i].(*apexBundle).properties.ApexType = zipApex
1113 case flattenedApexType:
1114 modules[i].(*apexBundle).properties.ApexType = flattenedApex
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001115 // See the comment above for why system_ext.
Jooyung Han91df2082019-11-20 01:49:42 +09001116 if !mctx.Config().FlattenApex() && ab.Platform() {
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09001117 modules[i].(*apexBundle).MakeAsSystemExt()
1118 }
Sundong Ahnabb64432019-10-22 13:58:29 +09001119 }
Sundong Ahne9b55722019-09-06 17:37:42 +09001120 }
Jiyong Park5d790c32019-11-15 18:40:32 +09001121 } else if _, ok := mctx.Module().(*OverrideApex); ok {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001122 // payload_type is forcibly overridden to "image"
1123 // TODO(jiyong): is this the right decision?
Jiyong Park5d790c32019-11-15 18:40:32 +09001124 mctx.CreateVariations(imageApexType, flattenedApexType)
Sundong Ahne9b55722019-09-06 17:37:42 +09001125 }
1126}
1127
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001128// checkUseVendorProperty checks if the use of `use_vendor` property is allowed for the given APEX.
1129// When use_vendor is used, native modules are built with __ANDROID_VNDK__ and __ANDROID_APEX__,
1130// which may cause compatibility issues. (e.g. libbinder) Even though libbinder restricts its
1131// availability via 'apex_available' property and relies on yet another macro
1132// __ANDROID_APEX_<NAME>__, we restrict usage of "use_vendor:" from other APEX modules to avoid
1133// similar problems.
1134func checkUseVendorProperty(ctx android.BottomUpMutatorContext, a *apexBundle) {
1135 if proptools.Bool(a.properties.Use_vendor) && !android.InList(a.Name(), useVendorAllowList(ctx.Config())) {
1136 ctx.PropertyErrorf("use_vendor", "not allowed to set use_vendor: true")
1137 }
1138}
1139
Jooyung Handc782442019-11-01 03:14:38 +09001140var (
Colin Cross440e0d02020-06-11 11:32:11 -07001141 useVendorAllowListKey = android.NewOnceKey("useVendorAllowList")
Jooyung Handc782442019-11-01 03:14:38 +09001142)
1143
Colin Cross440e0d02020-06-11 11:32:11 -07001144func useVendorAllowList(config android.Config) []string {
1145 return config.Once(useVendorAllowListKey, func() interface{} {
Jooyung Handc782442019-11-01 03:14:38 +09001146 return []string{
1147 // swcodec uses "vendor" variants for smaller size
1148 "com.android.media.swcodec",
1149 "test_com.android.media.swcodec",
1150 }
1151 }).([]string)
1152}
1153
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001154// setUseVendorAllowListForTest overrides useVendorAllowList and must be called before the first
1155// call to useVendorAllowList()
Colin Cross440e0d02020-06-11 11:32:11 -07001156func setUseVendorAllowListForTest(config android.Config, allowList []string) {
1157 config.Once(useVendorAllowListKey, func() interface{} {
1158 return allowList
Jooyung Handc782442019-11-01 03:14:38 +09001159 })
1160}
1161
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001162var _ android.DepIsInSameApex = (*apexBundle)(nil)
Theotime Combes4ba38c12020-06-12 12:46:59 +00001163
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001164// Implements android.DepInInSameApex
Jiyong Parka7bc8ad2019-10-15 15:20:07 +09001165func (a *apexBundle) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
1166 // direct deps of an APEX bundle are all part of the APEX bundle
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001167 // TODO(jiyong): shouldn't we look into the payload field of the dependencyTag?
Jiyong Parka7bc8ad2019-10-15 15:20:07 +09001168 return true
1169}
1170
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001171var _ android.OutputFileProducer = (*apexBundle)(nil)
1172
1173// Implements android.OutputFileProducer
1174func (a *apexBundle) OutputFiles(tag string) (android.Paths, error) {
1175 switch tag {
Paul Duffin74f05592020-11-25 16:37:46 +00001176 case "", android.DefaultDistTag:
1177 // This is the default dist path.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001178 return android.Paths{a.outputFile}, nil
1179 default:
1180 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
1181 }
1182}
1183
1184var _ cc.Coverage = (*apexBundle)(nil)
1185
1186// Implements cc.Coverage
1187func (a *apexBundle) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
1188 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
1189}
1190
1191// Implements cc.Coverage
1192func (a *apexBundle) PreventInstall() {
1193 a.properties.PreventInstall = true
1194}
1195
1196// Implements cc.Coverage
1197func (a *apexBundle) HideFromMake() {
1198 a.properties.HideFromMake = true
Colin Crosse6a83e62020-12-17 18:22:34 -08001199 // This HideFromMake is shadowing the ModuleBase one, call through to it for now.
1200 // TODO(ccross): untangle these
1201 a.ModuleBase.HideFromMake()
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001202}
1203
1204// Implements cc.Coverage
1205func (a *apexBundle) MarkAsCoverageVariant(coverage bool) {
1206 a.properties.IsCoverageVariant = coverage
1207}
1208
1209// Implements cc.Coverage
1210func (a *apexBundle) EnableCoverageIfNeeded() {}
1211
1212var _ android.ApexBundleDepsInfoIntf = (*apexBundle)(nil)
1213
1214// Implements android.ApexBudleDepsInfoIntf
1215func (a *apexBundle) Updatable() bool {
1216 return proptools.Bool(a.properties.Updatable)
1217}
1218
1219// getCertString returns the name of the cert that should be used to sign this APEX. This is
1220// basically from the "certificate" property, but could be overridden by the device config.
Colin Cross0ea8ba82019-06-06 14:33:29 -07001221func (a *apexBundle) getCertString(ctx android.BaseModuleContext) string {
Jooyung Han27151d92019-12-16 17:45:32 +09001222 moduleName := ctx.ModuleName()
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001223 // VNDK APEXes share the same certificate. To avoid adding a new VNDK version to the
1224 // OVERRIDE_* list, we check with the pseudo module name to see if its certificate is
1225 // overridden.
Jooyung Han27151d92019-12-16 17:45:32 +09001226 if a.vndkApex {
1227 moduleName = vndkApexName
1228 }
1229 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(moduleName)
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001230 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001231 return ":" + certificate
Jiyong Parkb2742fd2019-02-11 11:38:15 +09001232 }
1233 return String(a.properties.Certificate)
1234}
1235
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001236// See the installable property
Jiyong Park92c0f9c2018-12-13 23:14:57 +09001237func (a *apexBundle) installable() bool {
Jiyong Parkee9a98d2019-08-09 14:44:36 +09001238 return !a.properties.PreventInstall && (a.properties.Installable == nil || proptools.Bool(a.properties.Installable))
Jiyong Park92c0f9c2018-12-13 23:14:57 +09001239}
1240
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001241// See the test_only_no_hashtree property
Nikita Ioffec72b5dd2019-12-07 17:30:22 +00001242func (a *apexBundle) testOnlyShouldSkipHashtreeGeneration() bool {
1243 return proptools.Bool(a.properties.Test_only_no_hashtree)
1244}
1245
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001246// See the test_only_unsigned_payload property
Dario Frenica913392020-04-27 18:21:11 +01001247func (a *apexBundle) testOnlyShouldSkipPayloadSign() bool {
1248 return proptools.Bool(a.properties.Test_only_unsigned_payload)
1249}
1250
Mohammad Samiul Islama8008f92020-12-22 10:47:50 +00001251// See the test_only_force_compression property
1252func (a *apexBundle) testOnlyShouldForceCompression() bool {
1253 return proptools.Bool(a.properties.Test_only_force_compression)
1254}
1255
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001256// These functions are interfacing with cc/sanitizer.go. The entire APEX (along with all of its
1257// members) can be sanitized, either forcibly, or by the global configuration. For some of the
1258// sanitizers, extra dependencies can be forcibly added as well.
Jiyong Parkda6eb592018-12-19 17:12:36 +09001259
Jiyong Parkf97782b2019-02-13 20:28:58 +09001260func (a *apexBundle) EnableSanitizer(sanitizerName string) {
1261 if !android.InList(sanitizerName, a.properties.SanitizerNames) {
1262 a.properties.SanitizerNames = append(a.properties.SanitizerNames, sanitizerName)
1263 }
1264}
1265
Jiyong Park388ef3f2019-01-28 19:47:32 +09001266func (a *apexBundle) IsSanitizerEnabled(ctx android.BaseModuleContext, sanitizerName string) bool {
Jiyong Parkf97782b2019-02-13 20:28:58 +09001267 if android.InList(sanitizerName, a.properties.SanitizerNames) {
1268 return true
Jiyong Park235e67c2019-02-09 11:50:56 +09001269 }
1270
1271 // Then follow the global setting
Jiyong Park388ef3f2019-01-28 19:47:32 +09001272 globalSanitizerNames := []string{}
1273 if a.Host() {
1274 globalSanitizerNames = ctx.Config().SanitizeHost()
1275 } else {
1276 arches := ctx.Config().SanitizeDeviceArch()
1277 if len(arches) == 0 || android.InList(a.Arch().ArchType.Name, arches) {
1278 globalSanitizerNames = ctx.Config().SanitizeDevice()
1279 }
1280 }
1281 return android.InList(sanitizerName, globalSanitizerNames)
Jiyong Park379de2f2018-12-19 02:47:14 +09001282}
1283
Jooyung Han8ce8db92020-05-15 19:05:05 +09001284func (a *apexBundle) AddSanitizerDependencies(ctx android.BottomUpMutatorContext, sanitizerName string) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001285 // TODO(jiyong): move this info (the sanitizer name, the lib name, etc.) to cc/sanitize.go
1286 // Keep only the mechanism here.
Jooyung Han8ce8db92020-05-15 19:05:05 +09001287 if ctx.Device() && sanitizerName == "hwaddress" && strings.HasPrefix(a.Name(), "com.android.runtime") {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001288 imageVariation := a.getImageVariation(ctx)
Jooyung Han8ce8db92020-05-15 19:05:05 +09001289 for _, target := range ctx.MultiTargets() {
1290 if target.Arch.ArchType.Multilib == "lib64" {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001291 addDependenciesForNativeModules(ctx, ApexNativeDependencies{
1292 Native_shared_libs: []string{"libclang_rt.hwasan-aarch64-android"},
1293 Tests: nil,
1294 Jni_libs: nil,
1295 Binaries: nil,
1296 }, target, imageVariation)
Jooyung Han8ce8db92020-05-15 19:05:05 +09001297 break
1298 }
1299 }
1300 }
1301}
1302
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001303// apexFileFor<Type> functions below create an apexFile struct for a given Soong module. The
1304// returned apexFile saves information about the Soong module that will be used for creating the
1305// build rules.
Jiyong Park1833cef2019-12-13 13:28:36 +09001306func apexFileForNativeLibrary(ctx android.BaseModuleContext, ccMod *cc.Module, handleSpecialLibs bool) apexFile {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001307 // Decide the APEX-local directory by the multilib of the library In the future, we may
1308 // query this to the module.
1309 // TODO(jiyong): use the new PackagingSpec
Jiyong Parkf653b052019-11-18 15:39:01 +09001310 var dirInApex string
Martin Stjernholm279de572019-09-10 23:18:20 +01001311 switch ccMod.Arch().ArchType.Multilib {
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001312 case "lib32":
1313 dirInApex = "lib"
1314 case "lib64":
1315 dirInApex = "lib64"
1316 }
Colin Cross3b19f5d2019-09-17 14:45:31 -07001317 if ccMod.Target().NativeBridge == android.NativeBridgeEnabled {
Martin Stjernholm279de572019-09-10 23:18:20 +01001318 dirInApex = filepath.Join(dirInApex, ccMod.Target().NativeBridgeRelativePath)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001319 }
Jooyung Han35155c42020-02-06 17:33:20 +09001320 dirInApex = filepath.Join(dirInApex, ccMod.RelativeInstallPath())
Jiyong Park1833cef2019-12-13 13:28:36 +09001321 if handleSpecialLibs && cc.InstallToBootstrap(ccMod.BaseModuleName(), ctx.Config()) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001322 // Special case for Bionic libs and other libs installed with them. This is to
1323 // prevent those libs from being included in the search path
1324 // /apex/com.android.runtime/${LIB}. This exclusion is required because those libs
1325 // in the Runtime APEX are available via the legacy paths in /system/lib/. By the
1326 // init process, the libs in the APEX are bind-mounted to the legacy paths and thus
1327 // will be loaded into the default linker namespace (aka "platform" namespace). If
1328 // the libs are directly in /apex/com.android.runtime/${LIB} then the same libs will
1329 // be loaded again into the runtime linker namespace, which will result in double
1330 // loading of them, which isn't supported.
Martin Stjernholm279de572019-09-10 23:18:20 +01001331 dirInApex = filepath.Join(dirInApex, "bionic")
Jiyong Parkb0788572018-12-20 22:10:17 +09001332 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001333
Jiyong Parkf653b052019-11-18 15:39:01 +09001334 fileToCopy := ccMod.OutputFile().Path()
Yo Chiange8128052020-07-23 20:09:18 +08001335 androidMkModuleName := ccMod.BaseModuleName() + ccMod.Properties.SubName
1336 return newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeSharedLib, ccMod)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001337}
1338
Jiyong Park1833cef2019-12-13 13:28:36 +09001339func apexFileForExecutable(ctx android.BaseModuleContext, cc *cc.Module) apexFile {
Jooyung Han35155c42020-02-06 17:33:20 +09001340 dirInApex := "bin"
Colin Cross3b19f5d2019-09-17 14:45:31 -07001341 if cc.Target().NativeBridge == android.NativeBridgeEnabled {
dimitry8d6dde82019-07-11 10:23:53 +02001342 dirInApex = filepath.Join(dirInApex, cc.Target().NativeBridgeRelativePath)
Jiyong Parkacbf6c72019-07-09 16:19:16 +09001343 }
Jooyung Han35155c42020-02-06 17:33:20 +09001344 dirInApex = filepath.Join(dirInApex, cc.RelativeInstallPath())
Jiyong Parkf653b052019-11-18 15:39:01 +09001345 fileToCopy := cc.OutputFile().Path()
Yo Chiange8128052020-07-23 20:09:18 +08001346 androidMkModuleName := cc.BaseModuleName() + cc.Properties.SubName
1347 af := newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeExecutable, cc)
Jiyong Parkf653b052019-11-18 15:39:01 +09001348 af.symlinks = cc.Symlinks()
Liz Kammer1c14a212020-05-12 15:26:55 -07001349 af.dataPaths = cc.DataPaths()
Jiyong Parkf653b052019-11-18 15:39:01 +09001350 return af
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001351}
1352
Jiyong Park99644e92020-11-17 22:21:02 +09001353func apexFileForRustExecutable(ctx android.BaseModuleContext, rustm *rust.Module) apexFile {
1354 dirInApex := "bin"
1355 if rustm.Target().NativeBridge == android.NativeBridgeEnabled {
1356 dirInApex = filepath.Join(dirInApex, rustm.Target().NativeBridgeRelativePath)
1357 }
1358 fileToCopy := rustm.OutputFile().Path()
1359 androidMkModuleName := rustm.BaseModuleName() + rustm.Properties.SubName
1360 af := newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeExecutable, rustm)
1361 return af
1362}
1363
1364func apexFileForRustLibrary(ctx android.BaseModuleContext, rustm *rust.Module) apexFile {
1365 // Decide the APEX-local directory by the multilib of the library
1366 // In the future, we may query this to the module.
1367 var dirInApex string
1368 switch rustm.Arch().ArchType.Multilib {
1369 case "lib32":
1370 dirInApex = "lib"
1371 case "lib64":
1372 dirInApex = "lib64"
1373 }
1374 if rustm.Target().NativeBridge == android.NativeBridgeEnabled {
1375 dirInApex = filepath.Join(dirInApex, rustm.Target().NativeBridgeRelativePath)
1376 }
1377 fileToCopy := rustm.OutputFile().Path()
1378 androidMkModuleName := rustm.BaseModuleName() + rustm.Properties.SubName
1379 return newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeSharedLib, rustm)
1380}
1381
Jiyong Park1833cef2019-12-13 13:28:36 +09001382func apexFileForPyBinary(ctx android.BaseModuleContext, py *python.Module) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +09001383 dirInApex := "bin"
1384 fileToCopy := py.HostToolPath().Path()
Yo Chiange8128052020-07-23 20:09:18 +08001385 return newApexFile(ctx, fileToCopy, py.BaseModuleName(), dirInApex, pyBinary, py)
Alex Light778127a2019-02-27 14:19:50 -08001386}
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001387
Jiyong Park1833cef2019-12-13 13:28:36 +09001388func apexFileForGoBinary(ctx android.BaseModuleContext, depName string, gb bootstrap.GoBinaryTool) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +09001389 dirInApex := "bin"
Alex Light778127a2019-02-27 14:19:50 -08001390 s, err := filepath.Rel(android.PathForOutput(ctx).String(), gb.InstallPath())
1391 if err != nil {
1392 ctx.ModuleErrorf("Unable to use compiled binary at %s", gb.InstallPath())
Jiyong Parkf653b052019-11-18 15:39:01 +09001393 return apexFile{}
Alex Light778127a2019-02-27 14:19:50 -08001394 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001395 fileToCopy := android.PathForOutput(ctx, s)
1396 // NB: Since go binaries are static we don't need the module for anything here, which is
1397 // good since the go tool is a blueprint.Module not an android.Module like we would
1398 // normally use.
Jiyong Park1833cef2019-12-13 13:28:36 +09001399 return newApexFile(ctx, fileToCopy, depName, dirInApex, goBinary, nil)
Alex Light778127a2019-02-27 14:19:50 -08001400}
1401
Jaewoong Jung4b79e982020-06-01 10:45:49 -07001402func apexFileForShBinary(ctx android.BaseModuleContext, sh *sh.ShBinary) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +09001403 dirInApex := filepath.Join("bin", sh.SubDir())
1404 fileToCopy := sh.OutputFile()
Yo Chiange8128052020-07-23 20:09:18 +08001405 af := newApexFile(ctx, fileToCopy, sh.BaseModuleName(), dirInApex, shBinary, sh)
Jiyong Parkf653b052019-11-18 15:39:01 +09001406 af.symlinks = sh.Symlinks()
1407 return af
Jiyong Park04480cf2019-02-06 00:16:29 +09001408}
1409
Jaewoong Jung4b79e982020-06-01 10:45:49 -07001410func apexFileForPrebuiltEtc(ctx android.BaseModuleContext, prebuilt prebuilt_etc.PrebuiltEtcModule, depName string) apexFile {
Jooyung Han0703fd82020-08-26 22:11:53 +09001411 dirInApex := filepath.Join(prebuilt.BaseDir(), prebuilt.SubDir())
Jiyong Parkf653b052019-11-18 15:39:01 +09001412 fileToCopy := prebuilt.OutputFile()
Jiyong Park1833cef2019-12-13 13:28:36 +09001413 return newApexFile(ctx, fileToCopy, depName, dirInApex, etc, prebuilt)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001414}
1415
atrost6e126252020-01-27 17:01:16 +00001416func apexFileForCompatConfig(ctx android.BaseModuleContext, config java.PlatformCompatConfigIntf, depName string) apexFile {
1417 dirInApex := filepath.Join("etc", config.SubDir())
1418 fileToCopy := config.CompatConfig()
1419 return newApexFile(ctx, fileToCopy, depName, dirInApex, etc, config)
1420}
1421
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001422// javaModule is an interface to handle all Java modules (java_library, dex_import, etc) in the same
1423// way.
1424type javaModule interface {
1425 android.Module
1426 BaseModuleName() string
1427 DexJarBuildPath() android.Path
1428 JacocoReportClassesFile() android.Path
1429 LintDepSets() java.LintDepSets
1430 Stem() string
1431}
1432
1433var _ javaModule = (*java.Library)(nil)
1434var _ javaModule = (*java.SdkLibrary)(nil)
1435var _ javaModule = (*java.DexImport)(nil)
1436var _ javaModule = (*java.SdkLibraryImport)(nil)
1437
1438func apexFileForJavaModule(ctx android.BaseModuleContext, module javaModule) apexFile {
1439 dirInApex := "javalib"
1440 fileToCopy := module.DexJarBuildPath()
1441 af := newApexFile(ctx, fileToCopy, module.BaseModuleName(), dirInApex, javaSharedLib, module)
1442 af.jacocoReportClassesFile = module.JacocoReportClassesFile()
1443 af.lintDepSets = module.LintDepSets()
1444 af.customStem = module.Stem() + ".jar"
1445 return af
1446}
1447
1448// androidApp is an interface to handle all app modules (android_app, android_app_import, etc.) in
1449// the same way.
1450type androidApp interface {
Jiyong Parkf653b052019-11-18 15:39:01 +09001451 android.Module
1452 Privileged() bool
Jooyung Han39ee1192020-03-23 20:21:11 +09001453 InstallApkName() string
Jiyong Parkf653b052019-11-18 15:39:01 +09001454 OutputFile() android.Path
Jiyong Park618922e2020-01-08 13:35:43 +09001455 JacocoReportClassesFile() android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001456 Certificate() java.Certificate
Yo Chiange8128052020-07-23 20:09:18 +08001457 BaseModuleName() string
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001458}
1459
1460var _ androidApp = (*java.AndroidApp)(nil)
1461var _ androidApp = (*java.AndroidAppImport)(nil)
1462
1463func apexFileForAndroidApp(ctx android.BaseModuleContext, aapp androidApp) apexFile {
Jiyong Parkf7487312019-10-17 12:54:30 +09001464 appDir := "app"
Jiyong Parkf653b052019-11-18 15:39:01 +09001465 if aapp.Privileged() {
Jiyong Parkf7487312019-10-17 12:54:30 +09001466 appDir = "priv-app"
1467 }
Jooyung Han39ee1192020-03-23 20:21:11 +09001468 dirInApex := filepath.Join(appDir, aapp.InstallApkName())
Jiyong Parkf653b052019-11-18 15:39:01 +09001469 fileToCopy := aapp.OutputFile()
Yo Chiange8128052020-07-23 20:09:18 +08001470 af := newApexFile(ctx, fileToCopy, aapp.BaseModuleName(), dirInApex, app, aapp)
Jiyong Park618922e2020-01-08 13:35:43 +09001471 af.jacocoReportClassesFile = aapp.JacocoReportClassesFile()
Colin Cross503c1d02020-01-28 14:00:53 -08001472 af.certificate = aapp.Certificate()
Jiyong Parkcfaa1642020-02-28 16:51:07 +09001473
1474 if app, ok := aapp.(interface {
1475 OverriddenManifestPackageName() string
1476 }); ok {
1477 af.overriddenPackageName = app.OverriddenManifestPackageName()
1478 }
Jiyong Park618922e2020-01-08 13:35:43 +09001479 return af
Dario Frenicde2a032019-10-27 00:29:22 +01001480}
1481
Jiyong Park69aeba92020-04-24 21:16:36 +09001482func apexFileForRuntimeResourceOverlay(ctx android.BaseModuleContext, rro java.RuntimeResourceOverlayModule) apexFile {
1483 rroDir := "overlay"
1484 dirInApex := filepath.Join(rroDir, rro.Theme())
1485 fileToCopy := rro.OutputFile()
1486 af := newApexFile(ctx, fileToCopy, rro.Name(), dirInApex, app, rro)
1487 af.certificate = rro.Certificate()
1488
1489 if a, ok := rro.(interface {
1490 OverriddenManifestPackageName() string
1491 }); ok {
1492 af.overriddenPackageName = a.OverriddenManifestPackageName()
1493 }
1494 return af
1495}
1496
markchien2f59ec92020-09-02 16:23:38 +08001497func apexFileForBpfProgram(ctx android.BaseModuleContext, builtFile android.Path, bpfProgram bpf.BpfModule) apexFile {
1498 dirInApex := filepath.Join("etc", "bpf")
1499 return newApexFile(ctx, builtFile, builtFile.Base(), dirInApex, etc, bpfProgram)
1500}
1501
Jiyong Park12a719c2021-01-07 15:31:24 +09001502func apexFileForFilesystem(ctx android.BaseModuleContext, buildFile android.Path, fs filesystem.Filesystem) apexFile {
1503 dirInApex := filepath.Join("etc", "fs")
1504 return newApexFile(ctx, buildFile, buildFile.Base(), dirInApex, etc, fs)
1505}
1506
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001507// WalyPayloadDeps visits dependencies that contributes to the payload of this APEX. For each of the
1508// visited module, the `do` callback is executed. Returning true in the callback continues the visit
1509// to the child modules. Returning false makes the visit to continue in the sibling or the parent
1510// modules. This is used in check* functions below.
Jooyung Han749dc692020-04-15 11:03:39 +09001511func (a *apexBundle) WalkPayloadDeps(ctx android.ModuleContext, do android.PayloadDepsCallback) {
Paul Duffindf915ff2020-03-30 17:58:21 +01001512 ctx.WalkDeps(func(child, parent android.Module) bool {
Jiyong Park0f80c182020-01-31 02:49:53 +09001513 am, ok := child.(android.ApexModule)
1514 if !ok || !am.CanHaveApexVariants() {
1515 return false
1516 }
1517
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001518 // Filter-out unwanted depedendencies
1519 depTag := ctx.OtherModuleDependencyTag(child)
1520 if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok {
1521 return false
1522 }
1523 if dt, ok := depTag.(dependencyTag); ok && !dt.payload {
Martin Stjernholm58c33f02020-07-06 22:56:01 +01001524 return false
1525 }
1526
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001527 ai := ctx.OtherModuleProvider(child, android.ApexInfoProvider).(android.ApexInfo)
1528 externalDep := !android.InList(ctx.ModuleName(), ai.InApexes)
Jiyong Park0f80c182020-01-31 02:49:53 +09001529
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001530 // Visit actually
1531 return do(ctx, parent, am, externalDep)
Jiyong Park0f80c182020-01-31 02:49:53 +09001532 })
1533}
1534
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001535// filesystem type of the apex_payload.img inside the APEX. Currently, ext4 and f2fs are supported.
1536type fsType int
Jooyung Han03b51852020-02-26 22:45:42 +09001537
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001538const (
1539 ext4 fsType = iota
1540 f2fs
1541)
Artur Satayev849f8442020-04-28 14:57:42 +01001542
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001543func (f fsType) string() string {
1544 switch f {
1545 case ext4:
1546 return ext4FsType
1547 case f2fs:
1548 return f2fsFsType
1549 default:
1550 panic(fmt.Errorf("unknown APEX payload type %d", f))
Jooyung Han548640b2020-04-27 12:10:30 +09001551 }
1552}
1553
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001554// Creates build rules for an APEX. It consists of the following major steps:
1555//
1556// 1) do some validity checks such as apex_available, min_sdk_version, etc.
1557// 2) traverse the dependency tree to collect apexFile structs from them.
1558// 3) some fields in apexBundle struct are configured
1559// 4) generate the build rules to create the APEX. This is mostly done in builder.go.
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001560func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001561 ////////////////////////////////////////////////////////////////////////////////////////////
1562 // 1) do some validity checks such as apex_available, min_sdk_version, etc.
Jiyong Park0f80c182020-01-31 02:49:53 +09001563 a.checkApexAvailability(ctx)
Jooyung Han548640b2020-04-27 12:10:30 +09001564 a.checkUpdatable(ctx)
Jooyung Han749dc692020-04-15 11:03:39 +09001565 a.checkMinSdkVersion(ctx)
Jiyong Park7d95a512020-05-10 15:16:24 +09001566 a.checkStaticLinkingToStubLibraries(ctx)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001567 if len(a.properties.Tests) > 0 && !a.testApex {
1568 ctx.PropertyErrorf("tests", "property allowed only in apex_test module type")
1569 return
1570 }
Jiyong Park678c8812020-02-07 17:25:49 +09001571
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001572 ////////////////////////////////////////////////////////////////////////////////////////////
1573 // 2) traverse the dependency tree to collect apexFile structs from them.
1574
1575 // all the files that will be included in this APEX
1576 var filesInfo []apexFile
Alex Lightfc0bd7c2019-01-29 18:31:59 -08001577
Jooyung Hane1633032019-08-01 17:41:43 +09001578 // native lib dependencies
1579 var provideNativeLibs []string
1580 var requireNativeLibs []string
1581
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001582 handleSpecialLibs := !android.Bool(a.properties.Ignore_system_library_special_case)
1583
1584 // TODO(jiyong): do this using WalkPayloadDeps
1585 // TODO(jiyong): make this clean!!!
Alex Light778127a2019-02-27 14:19:50 -08001586 ctx.WalkDepsBlueprint(func(child, parent blueprint.Module) bool {
Roland Levillainf89cd092019-07-29 16:22:59 +01001587 depTag := ctx.OtherModuleDependencyTag(child)
Paul Duffindddd5462020-04-07 15:25:44 +01001588 if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok {
1589 return false
1590 }
Roland Levillainf89cd092019-07-29 16:22:59 +01001591 depName := ctx.OtherModuleName(child)
Jiyong Parkf653b052019-11-18 15:39:01 +09001592 if _, isDirectDep := parent.(*apexBundle); isDirectDep {
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001593 switch depTag {
Jooyung Han643adc42020-02-27 13:50:06 +09001594 case sharedLibTag, jniLibTag:
1595 isJniLib := depTag == jniLibTag
Jooyung Hanfaa2d5f2020-02-06 17:42:40 +09001596 if c, ok := child.(*cc.Module); ok {
Jooyung Han643adc42020-02-27 13:50:06 +09001597 fi := apexFileForNativeLibrary(ctx, c, handleSpecialLibs)
1598 fi.isJniLib = isJniLib
1599 filesInfo = append(filesInfo, fi)
Jooyung Han45a96772020-06-15 14:59:42 +09001600 // Collect the list of stub-providing libs except:
1601 // - VNDK libs are only for vendors
1602 // - bootstrap bionic libs are treated as provided by system
1603 if c.HasStubsVariants() && !a.vndkApex && !cc.InstallToBootstrap(c.BaseModuleName(), ctx.Config()) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001604 provideNativeLibs = append(provideNativeLibs, fi.stem())
Jiyong Parkf1493cc2020-05-29 21:29:20 +09001605 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001606 return true // track transitive dependencies
Jiyong Parkf2cc1b72020-12-09 00:20:45 +09001607 } else if r, ok := child.(*rust.Module); ok {
1608 fi := apexFileForRustLibrary(ctx, r)
1609 filesInfo = append(filesInfo, fi)
Jiyong Parkff1458f2018-10-12 21:49:38 +09001610 } else {
Jooyung Han643adc42020-02-27 13:50:06 +09001611 propertyName := "native_shared_libs"
1612 if isJniLib {
1613 propertyName = "jni_libs"
1614 }
1615 ctx.PropertyErrorf(propertyName, "%q is not a cc_library or cc_library_shared module", depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001616 }
1617 case executableTag:
1618 if cc, ok := child.(*cc.Module); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001619 filesInfo = append(filesInfo, apexFileForExecutable(ctx, cc))
Jiyong Parkf653b052019-11-18 15:39:01 +09001620 return true // track transitive dependencies
Jaewoong Jung4b79e982020-06-01 10:45:49 -07001621 } else if sh, ok := child.(*sh.ShBinary); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001622 filesInfo = append(filesInfo, apexFileForShBinary(ctx, sh))
Alex Light778127a2019-02-27 14:19:50 -08001623 } else if py, ok := child.(*python.Module); ok && py.HostToolPath().Valid() {
Jiyong Park1833cef2019-12-13 13:28:36 +09001624 filesInfo = append(filesInfo, apexFileForPyBinary(ctx, py))
Alex Light778127a2019-02-27 14:19:50 -08001625 } else if gb, ok := child.(bootstrap.GoBinaryTool); ok && a.Host() {
Jiyong Parkf653b052019-11-18 15:39:01 +09001626 filesInfo = append(filesInfo, apexFileForGoBinary(ctx, depName, gb))
Jiyong Park99644e92020-11-17 22:21:02 +09001627 } else if rust, ok := child.(*rust.Module); ok {
1628 filesInfo = append(filesInfo, apexFileForRustExecutable(ctx, rust))
1629 return true // track transitive dependencies
Jiyong Parkff1458f2018-10-12 21:49:38 +09001630 } else {
Jiyong Park99644e92020-11-17 22:21:02 +09001631 ctx.PropertyErrorf("binaries", "%q is neither cc_binary, rust_binary, (embedded) py_binary, (host) blueprint_go_binary, (host) bootstrap_go_binary, nor sh_binary", depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001632 }
1633 case javaLibTag:
Jiyong Park77acec62020-06-01 21:39:15 +09001634 switch child.(type) {
Paul Duffineedc5d52020-06-12 17:46:39 +01001635 case *java.Library, *java.SdkLibrary, *java.DexImport, *java.SdkLibraryImport:
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001636 af := apexFileForJavaModule(ctx, child.(javaModule))
1637 if !af.ok() {
Jooyung Han58f26ab2019-12-18 15:34:32 +09001638 ctx.PropertyErrorf("java_libs", "%q is not configured to be compiled into dex", depName)
1639 return false
1640 }
1641 filesInfo = append(filesInfo, af)
Jooyung Han58f26ab2019-12-18 15:34:32 +09001642 return true // track transitive dependencies
Jiyong Park77acec62020-06-01 21:39:15 +09001643 default:
Jiyong Park9e6c2422019-08-09 20:39:45 +09001644 ctx.PropertyErrorf("java_libs", "%q of type %q is not supported", depName, ctx.OtherModuleType(child))
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001645 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001646 case androidAppTag:
Jiyong Parkf653b052019-11-18 15:39:01 +09001647 if ap, ok := child.(*java.AndroidApp); ok {
Jooyung Han39ee1192020-03-23 20:21:11 +09001648 filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap))
Jiyong Parkf653b052019-11-18 15:39:01 +09001649 return true // track transitive dependencies
1650 } else if ap, ok := child.(*java.AndroidAppImport); ok {
Jooyung Han39ee1192020-03-23 20:21:11 +09001651 filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap))
Dario Freni6f3937c2019-12-20 22:58:03 +00001652 } else if ap, ok := child.(*java.AndroidTestHelperApp); ok {
Jooyung Han39ee1192020-03-23 20:21:11 +09001653 filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap))
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001654 } else if ap, ok := child.(*java.AndroidAppSet); ok {
1655 appDir := "app"
1656 if ap.Privileged() {
1657 appDir = "priv-app"
1658 }
Yo Chiange8128052020-07-23 20:09:18 +08001659 af := newApexFile(ctx, ap.OutputFile(), ap.BaseModuleName(),
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001660 filepath.Join(appDir, ap.BaseModuleName()), appSet, ap)
1661 af.certificate = java.PresignedCertificate
1662 filesInfo = append(filesInfo, af)
Jiyong Parkf653b052019-11-18 15:39:01 +09001663 } else {
1664 ctx.PropertyErrorf("apps", "%q is not an android_app module", depName)
1665 }
Jiyong Park69aeba92020-04-24 21:16:36 +09001666 case rroTag:
1667 if rro, ok := child.(java.RuntimeResourceOverlayModule); ok {
1668 filesInfo = append(filesInfo, apexFileForRuntimeResourceOverlay(ctx, rro))
1669 } else {
1670 ctx.PropertyErrorf("rros", "%q is not an runtime_resource_overlay module", depName)
1671 }
markchien2f59ec92020-09-02 16:23:38 +08001672 case bpfTag:
1673 if bpfProgram, ok := child.(bpf.BpfModule); ok {
1674 filesToCopy, _ := bpfProgram.OutputFiles("")
1675 for _, bpfFile := range filesToCopy {
1676 filesInfo = append(filesInfo, apexFileForBpfProgram(ctx, bpfFile, bpfProgram))
1677 }
1678 } else {
1679 ctx.PropertyErrorf("bpfs", "%q is not a bpf module", depName)
1680 }
Jiyong Park12a719c2021-01-07 15:31:24 +09001681 case fsTag:
1682 if fs, ok := child.(filesystem.Filesystem); ok {
1683 filesInfo = append(filesInfo, apexFileForFilesystem(ctx, fs.OutputPath(), fs))
1684 } else {
1685 ctx.PropertyErrorf("filesystems", "%q is not a filesystem module", depName)
1686 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001687 case prebuiltTag:
Jaewoong Jung4b79e982020-06-01 10:45:49 -07001688 if prebuilt, ok := child.(prebuilt_etc.PrebuiltEtcModule); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001689 filesInfo = append(filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, depName))
atrost6e126252020-01-27 17:01:16 +00001690 } else if prebuilt, ok := child.(java.PlatformCompatConfigIntf); ok {
1691 filesInfo = append(filesInfo, apexFileForCompatConfig(ctx, prebuilt, depName))
Jiyong Parkff1458f2018-10-12 21:49:38 +09001692 } else {
atrost6e126252020-01-27 17:01:16 +00001693 ctx.PropertyErrorf("prebuilts", "%q is not a prebuilt_etc and not a platform_compat_config module", depName)
Jiyong Parkff1458f2018-10-12 21:49:38 +09001694 }
Roland Levillain630846d2019-06-26 12:48:34 +01001695 case testTag:
Roland Levillainf89cd092019-07-29 16:22:59 +01001696 if ccTest, ok := child.(*cc.Module); ok {
1697 if ccTest.IsTestPerSrcAllTestsVariation() {
1698 // Multiple-output test module (where `test_per_src: true`).
1699 //
1700 // `ccTest` is the "" ("all tests") variation of a `test_per_src` module.
1701 // We do not add this variation to `filesInfo`, as it has no output;
1702 // however, we do add the other variations of this module as indirect
1703 // dependencies (see below).
Roland Levillain9b5fde92019-06-28 15:41:19 +01001704 } else {
Roland Levillainf89cd092019-07-29 16:22:59 +01001705 // Single-output test module (where `test_per_src: false`).
Jiyong Park1833cef2019-12-13 13:28:36 +09001706 af := apexFileForExecutable(ctx, ccTest)
Jiyong Parkf653b052019-11-18 15:39:01 +09001707 af.class = nativeTest
1708 filesInfo = append(filesInfo, af)
Roland Levillain9b5fde92019-06-28 15:41:19 +01001709 }
Jiyong Parkaf9539f2020-05-04 10:31:32 +09001710 return true // track transitive dependencies
Roland Levillain630846d2019-06-26 12:48:34 +01001711 } else {
1712 ctx.PropertyErrorf("tests", "%q is not a cc module", depName)
1713 }
Jiyong Parkff1458f2018-10-12 21:49:38 +09001714 case keyTag:
1715 if key, ok := child.(*apexKey); ok {
Jaewoong Jung18aefc12020-12-21 09:11:10 -08001716 a.privateKeyFile = key.privateKeyFile
1717 a.publicKeyFile = key.publicKeyFile
Jiyong Parkff1458f2018-10-12 21:49:38 +09001718 } else {
1719 ctx.PropertyErrorf("key", "%q is not an apex_key module", depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001720 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001721 return false
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001722 case certificateTag:
1723 if dep, ok := child.(*java.AndroidAppCertificate); ok {
Jaewoong Jung18aefc12020-12-21 09:11:10 -08001724 a.containerCertificateFile = dep.Certificate.Pem
1725 a.containerPrivateKeyFile = dep.Certificate.Key
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001726 } else {
1727 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", depName)
1728 }
Jiyong Park03b68dd2019-07-26 23:20:40 +09001729 case android.PrebuiltDepTag:
1730 // If the prebuilt is force disabled, remember to delete the prebuilt file
1731 // that might have been installed in the previous builds
Jiyong Park10e926b2020-07-16 21:38:56 +09001732 if prebuilt, ok := child.(prebuilt); ok && prebuilt.isForceDisabled() {
Jiyong Park03b68dd2019-07-26 23:20:40 +09001733 a.prebuiltFileToDelete = prebuilt.InstallFilename()
1734 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001735 }
Jooyung Han8aee2042019-10-29 05:08:31 +09001736 } else if !a.vndkApex {
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001737 // indirect dependencies
Jooyung Han9c80bae2019-08-20 17:30:57 +09001738 if am, ok := child.(android.ApexModule); ok {
Roland Levillainf89cd092019-07-29 16:22:59 +01001739 // We cannot use a switch statement on `depTag` here as the checked
1740 // tags used below are private (e.g. `cc.sharedDepTag`).
Jiyong Park52cd06f2019-11-11 10:14:32 +09001741 if cc.IsSharedDepTag(depTag) || cc.IsRuntimeDepTag(depTag) {
Roland Levillainf89cd092019-07-29 16:22:59 +01001742 if cc, ok := child.(*cc.Module); ok {
Jooyung Handf78e212020-07-22 15:54:47 +09001743 if cc.UseVndk() && proptools.Bool(a.properties.Use_vndk_as_stable) && cc.IsVndk() {
Jooyung Han6c4cc9c2020-07-29 16:00:54 +09001744 requireNativeLibs = append(requireNativeLibs, ":vndk")
Jooyung Handf78e212020-07-22 15:54:47 +09001745 return false
1746 }
Jiyong Parkf1493cc2020-05-29 21:29:20 +09001747 af := apexFileForNativeLibrary(ctx, cc, handleSpecialLibs)
1748 af.transitiveDep = true
Martin Stjernholmf2635ec2020-12-16 01:01:59 +00001749
1750 // Always track transitive dependencies for host.
1751 if a.Host() {
1752 filesInfo = append(filesInfo, af)
1753 return true
1754 }
1755
Colin Cross56a83212020-09-15 18:30:11 -07001756 abInfo := ctx.Provider(ApexBundleInfoProvider).(ApexBundleInfo)
Martin Stjernholmf2635ec2020-12-16 01:01:59 +00001757 if !abInfo.Contents.DirectlyInApex(depName) && (cc.IsStubs() || cc.HasStubsVariants()) {
Roland Levillainf89cd092019-07-29 16:22:59 +01001758 // If the dependency is a stubs lib, don't include it in this APEX,
1759 // but make sure that the lib is installed on the device.
1760 // In case no APEX is having the lib, the lib is installed to the system
1761 // partition.
1762 //
1763 // Always include if we are a host-apex however since those won't have any
1764 // system libraries.
Colin Cross56a83212020-09-15 18:30:11 -07001765 if !am.DirectlyInAnyApex() {
Jooyung Hanefb184e2020-06-25 17:14:25 +09001766 // we need a module name for Make
Martin Stjernholm2856c662020-12-02 15:03:42 +00001767 name := cc.ImplementationModuleNameForMake(ctx)
Colin Cross0477b422020-10-13 18:43:54 -07001768
1769 if !proptools.Bool(a.properties.Use_vendor) {
Jooyung Hanefb184e2020-06-25 17:14:25 +09001770 // we don't use subName(.vendor) for a "use_vendor: true" apex
1771 // which is supposed to be installed in /system
Colin Cross0477b422020-10-13 18:43:54 -07001772 name += cc.Properties.SubName
Jooyung Hanefb184e2020-06-25 17:14:25 +09001773 }
1774 if !android.InList(name, a.requiredDeps) {
1775 a.requiredDeps = append(a.requiredDeps, name)
1776 }
Roland Levillainf89cd092019-07-29 16:22:59 +01001777 }
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001778 requireNativeLibs = append(requireNativeLibs, af.stem())
Roland Levillainf89cd092019-07-29 16:22:59 +01001779 // Don't track further
1780 return false
1781 }
Jiyong Parke3867542020-12-03 17:28:25 +09001782
1783 // If the dep is not considered to be in the same
1784 // apex, don't add it to filesInfo so that it is not
1785 // included in this APEX.
1786 // TODO(jiyong): move this to at the top of the
1787 // else-if clause for the indirect dependencies.
1788 // Currently, that's impossible because we would
1789 // like to record requiredNativeLibs even when
Martin Stjernholmf2635ec2020-12-16 01:01:59 +00001790 // DepIsInSameAPex is false. We also shouldn't do
1791 // this for host.
Jiyong Parke3867542020-12-03 17:28:25 +09001792 if !am.DepIsInSameApex(ctx, am) {
1793 return false
1794 }
1795
Jiyong Parkf653b052019-11-18 15:39:01 +09001796 filesInfo = append(filesInfo, af)
1797 return true // track transitive dependencies
Jiyong Parkf2cc1b72020-12-09 00:20:45 +09001798 } else if rm, ok := child.(*rust.Module); ok {
1799 af := apexFileForRustLibrary(ctx, rm)
1800 af.transitiveDep = true
1801 filesInfo = append(filesInfo, af)
1802 return true // track transitive dependencies
Jiyong Park25fc6a92018-11-18 18:02:45 +09001803 }
Roland Levillainf89cd092019-07-29 16:22:59 +01001804 } else if cc.IsTestPerSrcDepTag(depTag) {
1805 if cc, ok := child.(*cc.Module); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001806 af := apexFileForExecutable(ctx, cc)
Roland Levillainf89cd092019-07-29 16:22:59 +01001807 // Handle modules created as `test_per_src` variations of a single test module:
1808 // use the name of the generated test binary (`fileToCopy`) instead of the name
1809 // of the original test module (`depName`, shared by all `test_per_src`
1810 // variations of that module).
Yo Chiange8128052020-07-23 20:09:18 +08001811 af.androidMkModuleName = filepath.Base(af.builtFile.String())
Jiyong Park7cd10e32020-01-14 09:22:18 +09001812 // these are not considered transitive dep
1813 af.transitiveDep = false
Jiyong Parkf653b052019-11-18 15:39:01 +09001814 filesInfo = append(filesInfo, af)
1815 return true // track transitive dependencies
Roland Levillainf89cd092019-07-29 16:22:59 +01001816 }
Jiyong Park1ad8e162020-12-01 23:40:09 +09001817 } else if cc.IsHeaderDepTag(depTag) {
1818 // nothing
Jiyong Park52cd06f2019-11-11 10:14:32 +09001819 } else if java.IsJniDepTag(depTag) {
Jooyung Hanb7bebe22020-02-25 16:59:29 +09001820 // Because APK-in-APEX embeds jni_libs transitively, we don't need to track transitive deps
1821 return false
Jiyong Parke3833882020-02-17 17:28:10 +09001822 } else if java.IsXmlPermissionsFileDepTag(depTag) {
Jaewoong Jung4b79e982020-06-01 10:45:49 -07001823 if prebuilt, ok := child.(prebuilt_etc.PrebuiltEtcModule); ok {
Jiyong Parke3833882020-02-17 17:28:10 +09001824 filesInfo = append(filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, depName))
1825 }
Jiyong Park99644e92020-11-17 22:21:02 +09001826 } else if rust.IsDylibDepTag(depTag) {
1827 if rustm, ok := child.(*rust.Module); ok && rustm.IsInstallableToApex() {
1828 af := apexFileForRustLibrary(ctx, rustm)
1829 af.transitiveDep = true
1830 filesInfo = append(filesInfo, af)
1831 return true // track transitive dependencies
1832 }
Colin Cross56a83212020-09-15 18:30:11 -07001833 } else if _, ok := depTag.(android.CopyDirectlyInAnyApexTag); ok {
1834 // nothing
Jooyung Han9c80bae2019-08-20 17:30:57 +09001835 } else if am.CanHaveApexVariants() && am.IsInstallableToApex() {
Jiyong Park1c7e9622020-05-07 16:12:13 +09001836 ctx.ModuleErrorf("unexpected tag %s for indirect dependency %q", android.PrettyPrintTag(depTag), depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001837 }
1838 }
1839 }
1840 return false
1841 })
Jaewoong Jung18aefc12020-12-21 09:11:10 -08001842 if a.privateKeyFile == nil {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001843 ctx.PropertyErrorf("key", "private_key for %q could not be found", String(a.properties.Key))
1844 return
1845 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001846
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001847 // Specific to the ART apex: dexpreopt artifacts for libcore Java libraries. Build rules are
1848 // generated by the dexpreopt singleton, and here we access build artifacts via the global
1849 // boot image config.
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001850 if a.artApex {
Tim Joinesc1ef1bb2020-03-18 18:00:41 +00001851 for arch, files := range java.DexpreoptedArtApexJars(ctx) {
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001852 dirInApex := filepath.Join("javalib", arch.String())
1853 for _, f := range files {
1854 localModule := "javalib_" + arch.String() + "_" + filepath.Base(f.String())
Jiyong Park1833cef2019-12-13 13:28:36 +09001855 af := newApexFile(ctx, f, localModule, dirInApex, etc, nil)
Jiyong Parkf653b052019-11-18 15:39:01 +09001856 filesInfo = append(filesInfo, af)
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001857 }
1858 }
1859 }
1860
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001861 // Remove duplicates in filesInfo
Jiyong Park8fd61922018-11-08 02:50:25 +09001862 removeDup := func(filesInfo []apexFile) []apexFile {
Jiyong Park7cd10e32020-01-14 09:22:18 +09001863 encountered := make(map[string]apexFile)
Jiyong Park8fd61922018-11-08 02:50:25 +09001864 for _, f := range filesInfo {
Jooyung Han344d5432019-08-23 11:17:39 +09001865 dest := filepath.Join(f.installDir, f.builtFile.Base())
Jiyong Park7cd10e32020-01-14 09:22:18 +09001866 if e, ok := encountered[dest]; !ok {
1867 encountered[dest] = f
1868 } else {
1869 // If a module is directly included and also transitively depended on
1870 // consider it as directly included.
1871 e.transitiveDep = e.transitiveDep && f.transitiveDep
1872 encountered[dest] = e
Jiyong Park8fd61922018-11-08 02:50:25 +09001873 }
1874 }
Jiyong Park7cd10e32020-01-14 09:22:18 +09001875 var result []apexFile
1876 for _, v := range encountered {
1877 result = append(result, v)
1878 }
Jiyong Park8fd61922018-11-08 02:50:25 +09001879 return result
1880 }
1881 filesInfo = removeDup(filesInfo)
1882
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001883 // Sort to have consistent build rules
Jiyong Park8fd61922018-11-08 02:50:25 +09001884 sort.Slice(filesInfo, func(i, j int) bool {
1885 return filesInfo[i].builtFile.String() < filesInfo[j].builtFile.String()
1886 })
1887
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001888 ////////////////////////////////////////////////////////////////////////////////////////////
1889 // 3) some fields in apexBundle struct are configured
Jiyong Park8fd61922018-11-08 02:50:25 +09001890 a.installDir = android.PathForModuleInstall(ctx, "apex")
1891 a.filesInfo = filesInfo
Alex Light5098a612018-11-29 17:12:15 -08001892
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001893 // Set suffix and primaryApexType depending on the ApexType
1894 buildFlattenedAsDefault := ctx.Config().FlattenApex() && !ctx.Config().UnbundledBuildApps()
1895 switch a.properties.ApexType {
1896 case imageApex:
1897 if buildFlattenedAsDefault {
1898 a.suffix = imageApexSuffix
1899 } else {
1900 a.suffix = ""
1901 a.primaryApexType = true
1902
1903 if ctx.Config().InstallExtraFlattenedApexes() {
1904 a.requiredDeps = append(a.requiredDeps, a.Name()+flattenedSuffix)
1905 }
1906 }
1907 case zipApex:
1908 if proptools.String(a.properties.Payload_type) == "zip" {
1909 a.suffix = ""
1910 a.primaryApexType = true
1911 } else {
1912 a.suffix = zipApexSuffix
1913 }
1914 case flattenedApex:
1915 if buildFlattenedAsDefault {
1916 a.suffix = ""
1917 a.primaryApexType = true
1918 } else {
1919 a.suffix = flattenedSuffix
1920 }
1921 }
1922
Theotime Combes4ba38c12020-06-12 12:46:59 +00001923 switch proptools.StringDefault(a.properties.Payload_fs_type, ext4FsType) {
1924 case ext4FsType:
1925 a.payloadFsType = ext4
1926 case f2fsFsType:
1927 a.payloadFsType = f2fs
1928 default:
1929 ctx.PropertyErrorf("payload_fs_type", "%q is not a valid filesystem for apex [ext4, f2fs]", *a.properties.Payload_fs_type)
1930 }
1931
Jiyong Park7cd10e32020-01-14 09:22:18 +09001932 // Optimization. If we are building bundled APEX, for the files that are gathered due to the
1933 // transitive dependencies, don't place them inside the APEX, but place a symlink pointing
1934 // the same library in the system partition, thus effectively sharing the same libraries
1935 // across the APEX boundary. For unbundled APEX, all the gathered files are actually placed
1936 // in the APEX.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001937 a.linkToSystemLib = !ctx.Config().UnbundledBuild() && a.installable() && !proptools.Bool(a.properties.Use_vendor)
Jooyung Han54aca7b2019-11-20 02:26:02 +09001938
Jooyung Han85d61762020-06-24 23:50:26 +09001939 // APEXes targeting other than system/system_ext partitions use vendor/product variants.
1940 // So we can't link them to /system/lib libs which are core variants.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001941 if a.SocSpecific() || a.DeviceSpecific() || (a.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
Jooyung Han85d61762020-06-24 23:50:26 +09001942 a.linkToSystemLib = false
1943 }
1944
Jiyong Park4da07972021-01-05 21:01:11 +09001945 forced := ctx.Config().ForceApexSymlinkOptimization()
1946
Jiyong Park9d677202020-02-19 16:29:35 +09001947 // We don't need the optimization for updatable APEXes, as it might give false signal
Jiyong Park4da07972021-01-05 21:01:11 +09001948 // to the system health when the APEXes are still bundled (b/149805758).
1949 if !forced && a.Updatable() && a.properties.ApexType == imageApex {
Jiyong Park9d677202020-02-19 16:29:35 +09001950 a.linkToSystemLib = false
1951 }
1952
Jiyong Park638d30e2020-02-26 18:27:19 +09001953 // We also don't want the optimization for host APEXes, because it doesn't make sense.
1954 if ctx.Host() {
1955 a.linkToSystemLib = false
1956 }
1957
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001958 a.compatSymlinks = makeCompatSymlinks(a.BaseModuleName(), ctx)
1959
1960 ////////////////////////////////////////////////////////////////////////////////////////////
1961 // 4) generate the build rules to create the APEX. This is done in builder.go.
1962 a.buildManifest(ctx, provideNativeLibs, requireNativeLibs)
Jooyung Han01a3ee22019-11-02 02:52:25 +09001963 if a.properties.ApexType == flattenedApex {
1964 a.buildFlattenedApex(ctx)
1965 } else {
1966 a.buildUnflattenedApex(ctx)
1967 }
Jiyong Park956305c2020-01-09 12:32:06 +09001968 a.buildApexDependencyInfo(ctx)
Colin Cross08dca382020-07-21 20:31:17 -07001969 a.buildLintReports(ctx)
Jiyong Parkb81b9902020-11-24 19:51:18 +09001970
1971 // Append meta-files to the filesInfo list so that they are reflected in Android.mk as well.
1972 if a.installable() {
1973 // For flattened APEX, make sure that APEX manifest and apex_pubkey are also copied
1974 // along with other ordinary files. (Note that this is done by apexer for
1975 // non-flattened APEXes)
1976 a.filesInfo = append(a.filesInfo, newApexFile(ctx, a.manifestPbOut, "apex_manifest.pb", ".", etc, nil))
1977
1978 // Place the public key as apex_pubkey. This is also done by apexer for
1979 // non-flattened APEXes case.
1980 // TODO(jiyong): Why do we need this CP rule?
1981 copiedPubkey := android.PathForModuleOut(ctx, "apex_pubkey")
1982 ctx.Build(pctx, android.BuildParams{
1983 Rule: android.Cp,
Jaewoong Jung18aefc12020-12-21 09:11:10 -08001984 Input: a.publicKeyFile,
Jiyong Parkb81b9902020-11-24 19:51:18 +09001985 Output: copiedPubkey,
1986 })
1987 a.filesInfo = append(a.filesInfo, newApexFile(ctx, copiedPubkey, "apex_pubkey", ".", etc, nil))
1988 }
Jooyung Han01a3ee22019-11-02 02:52:25 +09001989}
1990
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09001991///////////////////////////////////////////////////////////////////////////////////////////////////
1992// Factory functions
1993//
1994
1995func newApexBundle() *apexBundle {
1996 module := &apexBundle{}
1997
1998 module.AddProperties(&module.properties)
1999 module.AddProperties(&module.targetProperties)
Jiyong Park59140302020-12-14 18:44:04 +09002000 module.AddProperties(&module.archProperties)
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002001 module.AddProperties(&module.overridableProperties)
2002
2003 android.InitAndroidMultiTargetsArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon)
2004 android.InitDefaultableModule(module)
2005 android.InitSdkAwareModule(module)
2006 android.InitOverridableModule(module, &module.overridableProperties.Overrides)
2007 return module
2008}
2009
2010func ApexBundleFactory(testApex bool, artApex bool) android.Module {
2011 bundle := newApexBundle()
2012 bundle.testApex = testApex
2013 bundle.artApex = artApex
2014 return bundle
2015}
2016
2017// apex_test is an APEX for testing. The difference from the ordinary apex module type is that
2018// certain compatibility checks such as apex_available are not done for apex_test.
2019func testApexBundleFactory() android.Module {
2020 bundle := newApexBundle()
2021 bundle.testApex = true
2022 return bundle
2023}
2024
2025// apex packages other modules into an APEX file which is a packaging format for system-level
2026// components like binaries, shared libraries, etc.
2027func BundleFactory() android.Module {
2028 return newApexBundle()
2029}
2030
2031type Defaults struct {
2032 android.ModuleBase
2033 android.DefaultsModuleBase
2034}
2035
2036// apex_defaults provides defaultable properties to other apex modules.
2037func defaultsFactory() android.Module {
2038 return DefaultsFactory()
2039}
2040
2041func DefaultsFactory(props ...interface{}) android.Module {
2042 module := &Defaults{}
2043
2044 module.AddProperties(props...)
2045 module.AddProperties(
2046 &apexBundleProperties{},
2047 &apexTargetBundleProperties{},
2048 &overridableProperties{},
2049 )
2050
2051 android.InitDefaultsModule(module)
2052 return module
2053}
2054
2055type OverrideApex struct {
2056 android.ModuleBase
2057 android.OverrideModuleBase
2058}
2059
2060func (o *OverrideApex) GenerateAndroidBuildActions(ctx android.ModuleContext) {
2061 // All the overrides happen in the base module.
2062}
2063
2064// override_apex is used to create an apex module based on another apex module by overriding some of
2065// its properties.
2066func overrideApexFactory() android.Module {
2067 m := &OverrideApex{}
2068
2069 m.AddProperties(&overridableProperties{})
2070
2071 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
2072 android.InitOverrideModule(m)
2073 return m
2074}
2075
2076///////////////////////////////////////////////////////////////////////////////////////////////////
2077// Vality check routines
2078//
2079// These are called in at the very beginning of GenerateAndroidBuildActions to flag an error when
2080// certain conditions are not met.
2081//
2082// TODO(jiyong): move these checks to a separate go file.
2083
2084// Entures that min_sdk_version of the included modules are equal or less than the min_sdk_version
2085// of this apexBundle.
2086func (a *apexBundle) checkMinSdkVersion(ctx android.ModuleContext) {
2087 if a.testApex || a.vndkApex {
2088 return
2089 }
2090 // Meaningless to check min_sdk_version when building use_vendor modules against non-Trebleized targets
2091 if proptools.Bool(a.properties.Use_vendor) && ctx.DeviceConfig().VndkVersion() == "" {
2092 return
2093 }
2094 // apexBundle::minSdkVersion reports its own errors.
2095 minSdkVersion := a.minSdkVersion(ctx)
2096 android.CheckMinSdkVersion(a, ctx, minSdkVersion)
2097}
2098
2099func (a *apexBundle) minSdkVersion(ctx android.BaseModuleContext) android.ApiLevel {
2100 ver := proptools.String(a.properties.Min_sdk_version)
2101 if ver == "" {
2102 return android.FutureApiLevel
2103 }
2104 apiLevel, err := android.ApiLevelFromUser(ctx, ver)
2105 if err != nil {
2106 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
2107 return android.NoneApiLevel
2108 }
2109 if apiLevel.IsPreview() {
2110 // All codenames should build against "current".
2111 return android.FutureApiLevel
2112 }
2113 return apiLevel
2114}
2115
2116// Ensures that a lib providing stub isn't statically linked
2117func (a *apexBundle) checkStaticLinkingToStubLibraries(ctx android.ModuleContext) {
2118 // Practically, we only care about regular APEXes on the device.
2119 if ctx.Host() || a.testApex || a.vndkApex {
2120 return
2121 }
2122
2123 abInfo := ctx.Provider(ApexBundleInfoProvider).(ApexBundleInfo)
2124
2125 a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
2126 if ccm, ok := to.(*cc.Module); ok {
2127 apexName := ctx.ModuleName()
2128 fromName := ctx.OtherModuleName(from)
2129 toName := ctx.OtherModuleName(to)
2130
2131 // If `to` is not actually in the same APEX as `from` then it does not need
2132 // apex_available and neither do any of its dependencies.
2133 if am, ok := from.(android.DepIsInSameApex); ok && !am.DepIsInSameApex(ctx, to) {
2134 // As soon as the dependency graph crosses the APEX boundary, don't go further.
2135 return false
2136 }
2137
2138 // The dynamic linker and crash_dump tool in the runtime APEX is the only
2139 // exception to this rule. It can't make the static dependencies dynamic
2140 // because it can't do the dynamic linking for itself.
Kiyoung Kim4098c7e2020-11-30 14:42:14 +09002141 // Same rule should be applied to linkerconfig, because it should be executed
2142 // only with static linked libraries before linker is available with ld.config.txt
2143 if apexName == "com.android.runtime" && (fromName == "linker" || fromName == "crash_dump" || fromName == "linkerconfig") {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002144 return false
2145 }
2146
2147 isStubLibraryFromOtherApex := ccm.HasStubsVariants() && !abInfo.Contents.DirectlyInApex(toName)
2148 if isStubLibraryFromOtherApex && !externalDep {
2149 ctx.ModuleErrorf("%q required by %q is a native library providing stub. "+
2150 "It shouldn't be included in this APEX via static linking. Dependency path: %s", to.String(), fromName, ctx.GetPathString(false))
2151 }
2152
2153 }
2154 return true
2155 })
2156}
2157
Artur Satayev8cf899a2020-04-15 17:29:42 +01002158// Enforce that Java deps of the apex are using stable SDKs to compile
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002159func (a *apexBundle) checkUpdatable(ctx android.ModuleContext) {
2160 if a.Updatable() {
2161 if String(a.properties.Min_sdk_version) == "" {
2162 ctx.PropertyErrorf("updatable", "updatable APEXes should set min_sdk_version as well")
2163 }
2164 a.checkJavaStableSdkVersion(ctx)
2165 }
2166}
2167
Artur Satayev8cf899a2020-04-15 17:29:42 +01002168func (a *apexBundle) checkJavaStableSdkVersion(ctx android.ModuleContext) {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002169 // Visit direct deps only. As long as we guarantee top-level deps are using stable SDKs,
2170 // java's checkLinkType guarantees correct usage for transitive deps
Artur Satayev8cf899a2020-04-15 17:29:42 +01002171 ctx.VisitDirectDepsBlueprint(func(module blueprint.Module) {
2172 tag := ctx.OtherModuleDependencyTag(module)
2173 switch tag {
2174 case javaLibTag, androidAppTag:
2175 if m, ok := module.(interface{ CheckStableSdkVersion() error }); ok {
2176 if err := m.CheckStableSdkVersion(); err != nil {
2177 ctx.ModuleErrorf("cannot depend on \"%v\": %v", ctx.OtherModuleName(module), err)
2178 }
2179 }
2180 }
2181 })
2182}
2183
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002184// Ensures that the all the dependencies are marked as available for this APEX
2185func (a *apexBundle) checkApexAvailability(ctx android.ModuleContext) {
2186 // Let's be practical. Availability for test, host, and the VNDK apex isn't important
2187 if ctx.Host() || a.testApex || a.vndkApex {
2188 return
2189 }
2190
2191 // Because APEXes targeting other than system/system_ext partitions can't set
2192 // apex_available, we skip checks for these APEXes
2193 if a.SocSpecific() || a.DeviceSpecific() || (a.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
2194 return
2195 }
2196
2197 // Coverage build adds additional dependencies for the coverage-only runtime libraries.
2198 // Requiring them and their transitive depencies with apex_available is not right
2199 // because they just add noise.
2200 if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT") || a.IsNativeCoverageNeeded(ctx) {
2201 return
2202 }
2203
2204 a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
2205 // As soon as the dependency graph crosses the APEX boundary, don't go further.
2206 if externalDep {
2207 return false
2208 }
2209
2210 apexName := ctx.ModuleName()
2211 fromName := ctx.OtherModuleName(from)
2212 toName := ctx.OtherModuleName(to)
2213
2214 // If `to` is not actually in the same APEX as `from` then it does not need
2215 // apex_available and neither do any of its dependencies.
2216 if am, ok := from.(android.DepIsInSameApex); ok && !am.DepIsInSameApex(ctx, to) {
2217 // As soon as the dependency graph crosses the APEX boundary, don't go
2218 // further.
2219 return false
2220 }
2221
2222 if to.AvailableFor(apexName) || baselineApexAvailable(apexName, toName) {
2223 return true
2224 }
2225 ctx.ModuleErrorf("%q requires %q that doesn't list the APEX under 'apex_available'. Dependency path:%s",
2226 fromName, toName, ctx.GetPathString(true))
2227 // Visit this module's dependencies to check and report any issues with their availability.
2228 return true
2229 })
2230}
2231
2232var (
2233 apexAvailBaseline = makeApexAvailableBaseline()
2234 inverseApexAvailBaseline = invertApexBaseline(apexAvailBaseline)
2235)
2236
Colin Cross440e0d02020-06-11 11:32:11 -07002237func baselineApexAvailable(apex, moduleName string) bool {
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002238 key := apex
Paul Duffin7d74e7b2020-03-06 12:30:13 +00002239 moduleName = normalizeModuleName(moduleName)
2240
Colin Cross440e0d02020-06-11 11:32:11 -07002241 if val, ok := apexAvailBaseline[key]; ok && android.InList(moduleName, val) {
Paul Duffin7d74e7b2020-03-06 12:30:13 +00002242 return true
2243 }
2244
2245 key = android.AvailableToAnyApex
Colin Cross440e0d02020-06-11 11:32:11 -07002246 if val, ok := apexAvailBaseline[key]; ok && android.InList(moduleName, val) {
Paul Duffin7d74e7b2020-03-06 12:30:13 +00002247 return true
2248 }
2249
2250 return false
2251}
2252
2253func normalizeModuleName(moduleName string) string {
Jiyong Park0f80c182020-01-31 02:49:53 +09002254 // Prebuilt modules (e.g. java_import, etc.) have "prebuilt_" prefix added by the build
2255 // system. Trim the prefix for the check since they are confusing
Paul Duffind23c7262020-12-11 18:13:08 +00002256 moduleName = android.RemoveOptionalPrebuiltPrefix(moduleName)
Jiyong Park0f80c182020-01-31 02:49:53 +09002257 if strings.HasPrefix(moduleName, "libclang_rt.") {
2258 // This module has many arch variants that depend on the product being built.
2259 // We don't want to list them all
2260 moduleName = "libclang_rt"
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002261 }
Jooyung Hanacc7bbe2020-05-20 09:06:00 +09002262 if strings.HasPrefix(moduleName, "androidx.") {
2263 // TODO(b/156996905) Set apex_available/min_sdk_version for androidx support libraries
2264 moduleName = "androidx"
2265 }
Paul Duffin7d74e7b2020-03-06 12:30:13 +00002266 return moduleName
Anton Hanssoneec79eb2020-01-10 15:12:39 +00002267}
2268
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002269// Transform the map of apex -> modules to module -> apexes.
2270func invertApexBaseline(m map[string][]string) map[string][]string {
2271 r := make(map[string][]string)
2272 for apex, modules := range m {
2273 for _, module := range modules {
2274 r[module] = append(r[module], apex)
2275 }
2276 }
2277 return r
2278}
2279
2280// Retrieve the baseline of apexes to which the supplied module belongs.
2281func BaselineApexAvailable(moduleName string) []string {
2282 return inverseApexAvailBaseline[normalizeModuleName(moduleName)]
2283}
2284
Jiyong Parkc0ec6f92020-11-19 23:00:52 +09002285// This is a map from apex to modules, which overrides the apex_available setting for that
2286// particular module to make it available for the apex regardless of its setting.
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002287// TODO(b/147364041): remove this
2288func makeApexAvailableBaseline() map[string][]string {
2289 // The "Module separator"s below are employed to minimize merge conflicts.
2290 m := make(map[string][]string)
2291 //
2292 // Module separator
2293 //
2294 m["com.android.appsearch"] = []string{
2295 "icing-java-proto-lite",
2296 "libprotobuf-java-lite",
2297 }
2298 //
2299 // Module separator
2300 //
2301 m["com.android.bluetooth.updatable"] = []string{
2302 "android.hardware.audio.common@5.0",
2303 "android.hardware.bluetooth.a2dp@1.0",
2304 "android.hardware.bluetooth.audio@2.0",
2305 "android.hardware.bluetooth@1.0",
2306 "android.hardware.bluetooth@1.1",
2307 "android.hardware.graphics.bufferqueue@1.0",
2308 "android.hardware.graphics.bufferqueue@2.0",
2309 "android.hardware.graphics.common@1.0",
2310 "android.hardware.graphics.common@1.1",
2311 "android.hardware.graphics.common@1.2",
2312 "android.hardware.media@1.0",
2313 "android.hidl.safe_union@1.0",
2314 "android.hidl.token@1.0",
2315 "android.hidl.token@1.0-utils",
2316 "avrcp-target-service",
2317 "avrcp_headers",
2318 "bluetooth-protos-lite",
2319 "bluetooth.mapsapi",
2320 "com.android.vcard",
2321 "dnsresolver_aidl_interface-V2-java",
2322 "ipmemorystore-aidl-interfaces-V5-java",
2323 "ipmemorystore-aidl-interfaces-java",
2324 "internal_include_headers",
2325 "lib-bt-packets",
2326 "lib-bt-packets-avrcp",
2327 "lib-bt-packets-base",
2328 "libFraunhoferAAC",
2329 "libaudio-a2dp-hw-utils",
2330 "libaudio-hearing-aid-hw-utils",
2331 "libbinder_headers",
2332 "libbluetooth",
2333 "libbluetooth-types",
2334 "libbluetooth-types-header",
2335 "libbluetooth_gd",
2336 "libbluetooth_headers",
2337 "libbluetooth_jni",
2338 "libbt-audio-hal-interface",
2339 "libbt-bta",
2340 "libbt-common",
2341 "libbt-hci",
2342 "libbt-platform-protos-lite",
2343 "libbt-protos-lite",
2344 "libbt-sbc-decoder",
2345 "libbt-sbc-encoder",
2346 "libbt-stack",
2347 "libbt-utils",
2348 "libbtcore",
2349 "libbtdevice",
2350 "libbte",
2351 "libbtif",
2352 "libchrome",
2353 "libevent",
2354 "libfmq",
2355 "libg722codec",
2356 "libgui_headers",
2357 "libmedia_headers",
2358 "libmodpb64",
2359 "libosi",
2360 "libstagefright_foundation_headers",
2361 "libstagefright_headers",
2362 "libstatslog",
2363 "libstatssocket",
2364 "libtinyxml2",
2365 "libudrv-uipc",
2366 "libz",
2367 "media_plugin_headers",
2368 "net-utils-services-common",
2369 "netd_aidl_interface-unstable-java",
2370 "netd_event_listener_interface-java",
2371 "netlink-client",
2372 "networkstack-client",
2373 "sap-api-java-static",
2374 "services.net",
2375 }
2376 //
2377 // Module separator
2378 //
2379 m["com.android.cellbroadcast"] = []string{"CellBroadcastApp", "CellBroadcastServiceModule"}
2380 //
2381 // Module separator
2382 //
2383 m["com.android.extservices"] = []string{
2384 "error_prone_annotations",
2385 "ExtServices-core",
2386 "ExtServices",
2387 "libtextclassifier-java",
2388 "libz_current",
2389 "textclassifier-statsd",
2390 "TextClassifierNotificationLibNoManifest",
2391 "TextClassifierServiceLibNoManifest",
2392 }
2393 //
2394 // Module separator
2395 //
2396 m["com.android.neuralnetworks"] = []string{
2397 "android.hardware.neuralnetworks@1.0",
2398 "android.hardware.neuralnetworks@1.1",
2399 "android.hardware.neuralnetworks@1.2",
2400 "android.hardware.neuralnetworks@1.3",
2401 "android.hidl.allocator@1.0",
2402 "android.hidl.memory.token@1.0",
2403 "android.hidl.memory@1.0",
2404 "android.hidl.safe_union@1.0",
2405 "libarect",
2406 "libbuildversion",
2407 "libmath",
2408 "libprocpartition",
2409 "libsync",
2410 }
2411 //
2412 // Module separator
2413 //
2414 m["com.android.media"] = []string{
2415 "android.frameworks.bufferhub@1.0",
2416 "android.hardware.cas.native@1.0",
2417 "android.hardware.cas@1.0",
2418 "android.hardware.configstore-utils",
2419 "android.hardware.configstore@1.0",
2420 "android.hardware.configstore@1.1",
2421 "android.hardware.graphics.allocator@2.0",
2422 "android.hardware.graphics.allocator@3.0",
2423 "android.hardware.graphics.bufferqueue@1.0",
2424 "android.hardware.graphics.bufferqueue@2.0",
2425 "android.hardware.graphics.common@1.0",
2426 "android.hardware.graphics.common@1.1",
2427 "android.hardware.graphics.common@1.2",
2428 "android.hardware.graphics.mapper@2.0",
2429 "android.hardware.graphics.mapper@2.1",
2430 "android.hardware.graphics.mapper@3.0",
2431 "android.hardware.media.omx@1.0",
2432 "android.hardware.media@1.0",
2433 "android.hidl.allocator@1.0",
2434 "android.hidl.memory.token@1.0",
2435 "android.hidl.memory@1.0",
2436 "android.hidl.token@1.0",
2437 "android.hidl.token@1.0-utils",
2438 "bionic_libc_platform_headers",
2439 "exoplayer2-extractor",
2440 "exoplayer2-extractor-annotation-stubs",
2441 "gl_headers",
2442 "jsr305",
2443 "libEGL",
2444 "libEGL_blobCache",
2445 "libEGL_getProcAddress",
2446 "libFLAC",
2447 "libFLAC-config",
2448 "libFLAC-headers",
2449 "libGLESv2",
2450 "libaacextractor",
2451 "libamrextractor",
2452 "libarect",
2453 "libaudio_system_headers",
2454 "libaudioclient",
2455 "libaudioclient_headers",
2456 "libaudiofoundation",
2457 "libaudiofoundation_headers",
2458 "libaudiomanager",
2459 "libaudiopolicy",
2460 "libaudioutils",
2461 "libaudioutils_fixedfft",
2462 "libbinder_headers",
2463 "libbluetooth-types-header",
2464 "libbufferhub",
2465 "libbufferhub_headers",
2466 "libbufferhubqueue",
2467 "libc_malloc_debug_backtrace",
2468 "libcamera_client",
2469 "libcamera_metadata",
2470 "libdvr_headers",
2471 "libexpat",
2472 "libfifo",
2473 "libflacextractor",
2474 "libgrallocusage",
2475 "libgraphicsenv",
2476 "libgui",
2477 "libgui_headers",
2478 "libhardware_headers",
2479 "libinput",
2480 "liblzma",
2481 "libmath",
2482 "libmedia",
2483 "libmedia_codeclist",
2484 "libmedia_headers",
2485 "libmedia_helper",
2486 "libmedia_helper_headers",
2487 "libmedia_midiiowrapper",
2488 "libmedia_omx",
2489 "libmediautils",
2490 "libmidiextractor",
2491 "libmkvextractor",
2492 "libmp3extractor",
2493 "libmp4extractor",
2494 "libmpeg2extractor",
2495 "libnativebase_headers",
2496 "libnativewindow_headers",
2497 "libnblog",
2498 "liboggextractor",
2499 "libpackagelistparser",
2500 "libpdx",
2501 "libpdx_default_transport",
2502 "libpdx_headers",
2503 "libpdx_uds",
2504 "libprocinfo",
2505 "libspeexresampler",
2506 "libspeexresampler",
2507 "libstagefright_esds",
2508 "libstagefright_flacdec",
2509 "libstagefright_flacdec",
2510 "libstagefright_foundation",
2511 "libstagefright_foundation_headers",
2512 "libstagefright_foundation_without_imemory",
2513 "libstagefright_headers",
2514 "libstagefright_id3",
2515 "libstagefright_metadatautils",
2516 "libstagefright_mpeg2extractor",
2517 "libstagefright_mpeg2support",
2518 "libsync",
2519 "libui",
2520 "libui_headers",
2521 "libunwindstack",
2522 "libvibrator",
2523 "libvorbisidec",
2524 "libwavextractor",
2525 "libwebm",
2526 "media_ndk_headers",
2527 "media_plugin_headers",
2528 "updatable-media",
2529 }
2530 //
2531 // Module separator
2532 //
2533 m["com.android.media.swcodec"] = []string{
2534 "android.frameworks.bufferhub@1.0",
2535 "android.hardware.common-ndk_platform",
2536 "android.hardware.configstore-utils",
2537 "android.hardware.configstore@1.0",
2538 "android.hardware.configstore@1.1",
2539 "android.hardware.graphics.allocator@2.0",
2540 "android.hardware.graphics.allocator@3.0",
2541 "android.hardware.graphics.allocator@4.0",
2542 "android.hardware.graphics.bufferqueue@1.0",
2543 "android.hardware.graphics.bufferqueue@2.0",
2544 "android.hardware.graphics.common-ndk_platform",
2545 "android.hardware.graphics.common@1.0",
2546 "android.hardware.graphics.common@1.1",
2547 "android.hardware.graphics.common@1.2",
2548 "android.hardware.graphics.mapper@2.0",
2549 "android.hardware.graphics.mapper@2.1",
2550 "android.hardware.graphics.mapper@3.0",
2551 "android.hardware.graphics.mapper@4.0",
2552 "android.hardware.media.bufferpool@2.0",
2553 "android.hardware.media.c2@1.0",
2554 "android.hardware.media.c2@1.1",
2555 "android.hardware.media.omx@1.0",
2556 "android.hardware.media@1.0",
2557 "android.hardware.media@1.0",
2558 "android.hidl.memory.token@1.0",
2559 "android.hidl.memory@1.0",
2560 "android.hidl.safe_union@1.0",
2561 "android.hidl.token@1.0",
2562 "android.hidl.token@1.0-utils",
2563 "libEGL",
2564 "libFLAC",
2565 "libFLAC-config",
2566 "libFLAC-headers",
2567 "libFraunhoferAAC",
2568 "libLibGuiProperties",
2569 "libarect",
2570 "libaudio_system_headers",
2571 "libaudioutils",
2572 "libaudioutils",
2573 "libaudioutils_fixedfft",
2574 "libavcdec",
2575 "libavcenc",
2576 "libavservices_minijail",
2577 "libavservices_minijail",
2578 "libbinder_headers",
2579 "libbinderthreadstateutils",
2580 "libbluetooth-types-header",
2581 "libbufferhub_headers",
2582 "libcodec2",
2583 "libcodec2_headers",
2584 "libcodec2_hidl@1.0",
2585 "libcodec2_hidl@1.1",
2586 "libcodec2_internal",
2587 "libcodec2_soft_aacdec",
2588 "libcodec2_soft_aacenc",
2589 "libcodec2_soft_amrnbdec",
2590 "libcodec2_soft_amrnbenc",
2591 "libcodec2_soft_amrwbdec",
2592 "libcodec2_soft_amrwbenc",
2593 "libcodec2_soft_av1dec_gav1",
2594 "libcodec2_soft_avcdec",
2595 "libcodec2_soft_avcenc",
2596 "libcodec2_soft_common",
2597 "libcodec2_soft_flacdec",
2598 "libcodec2_soft_flacenc",
2599 "libcodec2_soft_g711alawdec",
2600 "libcodec2_soft_g711mlawdec",
2601 "libcodec2_soft_gsmdec",
2602 "libcodec2_soft_h263dec",
2603 "libcodec2_soft_h263enc",
2604 "libcodec2_soft_hevcdec",
2605 "libcodec2_soft_hevcenc",
2606 "libcodec2_soft_mp3dec",
2607 "libcodec2_soft_mpeg2dec",
2608 "libcodec2_soft_mpeg4dec",
2609 "libcodec2_soft_mpeg4enc",
2610 "libcodec2_soft_opusdec",
2611 "libcodec2_soft_opusenc",
2612 "libcodec2_soft_rawdec",
2613 "libcodec2_soft_vorbisdec",
2614 "libcodec2_soft_vp8dec",
2615 "libcodec2_soft_vp8enc",
2616 "libcodec2_soft_vp9dec",
2617 "libcodec2_soft_vp9enc",
2618 "libcodec2_vndk",
2619 "libdvr_headers",
2620 "libfmq",
2621 "libfmq",
2622 "libgav1",
2623 "libgralloctypes",
2624 "libgrallocusage",
2625 "libgraphicsenv",
2626 "libgsm",
2627 "libgui_bufferqueue_static",
2628 "libgui_headers",
2629 "libhardware",
2630 "libhardware_headers",
2631 "libhevcdec",
2632 "libhevcenc",
2633 "libion",
2634 "libjpeg",
2635 "liblzma",
2636 "libmath",
2637 "libmedia_codecserviceregistrant",
2638 "libmedia_headers",
2639 "libmpeg2dec",
2640 "libnativebase_headers",
2641 "libnativewindow_headers",
2642 "libpdx_headers",
2643 "libscudo_wrapper",
2644 "libsfplugin_ccodec_utils",
2645 "libspeexresampler",
2646 "libstagefright_amrnb_common",
2647 "libstagefright_amrnbdec",
2648 "libstagefright_amrnbenc",
2649 "libstagefright_amrwbdec",
2650 "libstagefright_amrwbenc",
2651 "libstagefright_bufferpool@2.0.1",
2652 "libstagefright_bufferqueue_helper",
2653 "libstagefright_enc_common",
2654 "libstagefright_flacdec",
2655 "libstagefright_foundation",
2656 "libstagefright_foundation_headers",
2657 "libstagefright_headers",
2658 "libstagefright_m4vh263dec",
2659 "libstagefright_m4vh263enc",
2660 "libstagefright_mp3dec",
2661 "libsync",
2662 "libui",
2663 "libui_headers",
2664 "libunwindstack",
2665 "libvorbisidec",
2666 "libvpx",
2667 "libyuv",
2668 "libyuv_static",
2669 "media_ndk_headers",
2670 "media_plugin_headers",
2671 "mediaswcodec",
2672 }
2673 //
2674 // Module separator
2675 //
2676 m["com.android.mediaprovider"] = []string{
2677 "MediaProvider",
2678 "MediaProviderGoogle",
2679 "fmtlib_ndk",
2680 "libbase_ndk",
2681 "libfuse",
2682 "libfuse_jni",
2683 }
2684 //
2685 // Module separator
2686 //
2687 m["com.android.permission"] = []string{
2688 "car-ui-lib",
2689 "iconloader",
2690 "kotlin-annotations",
2691 "kotlin-stdlib",
2692 "kotlin-stdlib-jdk7",
2693 "kotlin-stdlib-jdk8",
2694 "kotlinx-coroutines-android",
2695 "kotlinx-coroutines-android-nodeps",
2696 "kotlinx-coroutines-core",
2697 "kotlinx-coroutines-core-nodeps",
2698 "permissioncontroller-statsd",
2699 "GooglePermissionController",
2700 "PermissionController",
2701 "SettingsLibActionBarShadow",
2702 "SettingsLibAppPreference",
2703 "SettingsLibBarChartPreference",
2704 "SettingsLibLayoutPreference",
2705 "SettingsLibProgressBar",
2706 "SettingsLibSearchWidget",
2707 "SettingsLibSettingsTheme",
2708 "SettingsLibRestrictedLockUtils",
2709 "SettingsLibHelpUtils",
2710 }
2711 //
2712 // Module separator
2713 //
2714 m["com.android.runtime"] = []string{
2715 "bionic_libc_platform_headers",
2716 "libarm-optimized-routines-math",
2717 "libc_aeabi",
2718 "libc_bionic",
2719 "libc_bionic_ndk",
2720 "libc_bootstrap",
2721 "libc_common",
2722 "libc_common_shared",
2723 "libc_common_static",
2724 "libc_dns",
2725 "libc_dynamic_dispatch",
2726 "libc_fortify",
2727 "libc_freebsd",
2728 "libc_freebsd_large_stack",
2729 "libc_gdtoa",
2730 "libc_init_dynamic",
2731 "libc_init_static",
2732 "libc_jemalloc_wrapper",
2733 "libc_netbsd",
2734 "libc_nomalloc",
2735 "libc_nopthread",
2736 "libc_openbsd",
2737 "libc_openbsd_large_stack",
2738 "libc_openbsd_ndk",
2739 "libc_pthread",
2740 "libc_static_dispatch",
2741 "libc_syscalls",
2742 "libc_tzcode",
2743 "libc_unwind_static",
2744 "libdebuggerd",
2745 "libdebuggerd_common_headers",
2746 "libdebuggerd_handler_core",
2747 "libdebuggerd_handler_fallback",
2748 "libdl_static",
2749 "libjemalloc5",
2750 "liblinker_main",
2751 "liblinker_malloc",
2752 "liblz4",
2753 "liblzma",
2754 "libprocinfo",
2755 "libpropertyinfoparser",
2756 "libscudo",
2757 "libstdc++",
2758 "libsystemproperties",
2759 "libtombstoned_client_static",
2760 "libunwindstack",
2761 "libz",
2762 "libziparchive",
2763 }
2764 //
2765 // Module separator
2766 //
2767 m["com.android.tethering"] = []string{
2768 "android.hardware.tetheroffload.config-V1.0-java",
2769 "android.hardware.tetheroffload.control-V1.0-java",
2770 "android.hidl.base-V1.0-java",
2771 "libcgrouprc",
2772 "libcgrouprc_format",
2773 "libtetherutilsjni",
2774 "libvndksupport",
2775 "net-utils-framework-common",
2776 "netd_aidl_interface-V3-java",
2777 "netlink-client",
2778 "networkstack-aidl-interfaces-java",
2779 "tethering-aidl-interfaces-java",
2780 "TetheringApiCurrentLib",
2781 }
2782 //
2783 // Module separator
2784 //
2785 m["com.android.wifi"] = []string{
2786 "PlatformProperties",
2787 "android.hardware.wifi-V1.0-java",
2788 "android.hardware.wifi-V1.0-java-constants",
2789 "android.hardware.wifi-V1.1-java",
2790 "android.hardware.wifi-V1.2-java",
2791 "android.hardware.wifi-V1.3-java",
2792 "android.hardware.wifi-V1.4-java",
2793 "android.hardware.wifi.hostapd-V1.0-java",
2794 "android.hardware.wifi.hostapd-V1.1-java",
2795 "android.hardware.wifi.hostapd-V1.2-java",
2796 "android.hardware.wifi.supplicant-V1.0-java",
2797 "android.hardware.wifi.supplicant-V1.1-java",
2798 "android.hardware.wifi.supplicant-V1.2-java",
2799 "android.hardware.wifi.supplicant-V1.3-java",
2800 "android.hidl.base-V1.0-java",
2801 "android.hidl.manager-V1.0-java",
2802 "android.hidl.manager-V1.1-java",
2803 "android.hidl.manager-V1.2-java",
2804 "bouncycastle-unbundled",
2805 "dnsresolver_aidl_interface-V2-java",
2806 "error_prone_annotations",
2807 "framework-wifi-pre-jarjar",
2808 "framework-wifi-util-lib",
2809 "ipmemorystore-aidl-interfaces-V3-java",
2810 "ipmemorystore-aidl-interfaces-java",
2811 "ksoap2",
2812 "libnanohttpd",
2813 "libwifi-jni",
2814 "net-utils-services-common",
2815 "netd_aidl_interface-V2-java",
2816 "netd_aidl_interface-unstable-java",
2817 "netd_event_listener_interface-java",
2818 "netlink-client",
2819 "networkstack-client",
2820 "services.net",
2821 "wifi-lite-protos",
2822 "wifi-nano-protos",
2823 "wifi-service-pre-jarjar",
2824 "wifi-service-resources",
2825 }
2826 //
2827 // Module separator
2828 //
2829 m["com.android.sdkext"] = []string{
2830 "fmtlib_ndk",
2831 "libbase_ndk",
2832 "libprotobuf-cpp-lite-ndk",
2833 }
2834 //
2835 // Module separator
2836 //
2837 m["com.android.os.statsd"] = []string{
2838 "libstatssocket",
2839 }
2840 //
2841 // Module separator
2842 //
2843 m[android.AvailableToAnyApex] = []string{
2844 // TODO(b/156996905) Set apex_available/min_sdk_version for androidx/extras support libraries
2845 "androidx",
2846 "androidx-constraintlayout_constraintlayout",
2847 "androidx-constraintlayout_constraintlayout-nodeps",
2848 "androidx-constraintlayout_constraintlayout-solver",
2849 "androidx-constraintlayout_constraintlayout-solver-nodeps",
2850 "com.google.android.material_material",
2851 "com.google.android.material_material-nodeps",
2852
2853 "libatomic",
2854 "libclang_rt",
2855 "libgcc_stripped",
2856 "libprofile-clang-extras",
2857 "libprofile-clang-extras_ndk",
2858 "libprofile-extras",
2859 "libprofile-extras_ndk",
2860 "libunwind_llvm",
2861 }
2862 return m
2863}
2864
2865func init() {
2866 android.AddNeverAllowRules(createApexPermittedPackagesRules(qModulesPackages())...)
2867 android.AddNeverAllowRules(createApexPermittedPackagesRules(rModulesPackages())...)
2868}
2869
2870func createApexPermittedPackagesRules(modules_packages map[string][]string) []android.Rule {
2871 rules := make([]android.Rule, 0, len(modules_packages))
2872 for module_name, module_packages := range modules_packages {
Jaewoong Jung18aefc12020-12-21 09:11:10 -08002873 permittedPackagesRule := android.NeverAllow().
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002874 BootclasspathJar().
2875 With("apex_available", module_name).
2876 WithMatcher("permitted_packages", android.NotInList(module_packages)).
2877 Because("jars that are part of the " + module_name +
2878 " module may only allow these packages: " + strings.Join(module_packages, ",") +
2879 ". Please jarjar or move code around.")
Jaewoong Jung18aefc12020-12-21 09:11:10 -08002880 rules = append(rules, permittedPackagesRule)
Jiyong Park8e6d52f2020-11-19 14:37:47 +09002881 }
2882 return rules
2883}
2884
2885// DO NOT EDIT! These are the package prefixes that are exempted from being AOT'ed by ART.
2886// Adding code to the bootclasspath in new packages will cause issues on module update.
2887func qModulesPackages() map[string][]string {
2888 return map[string][]string{
2889 "com.android.conscrypt": []string{
2890 "android.net.ssl",
2891 "com.android.org.conscrypt",
2892 },
2893 "com.android.media": []string{
2894 "android.media",
2895 },
2896 }
2897}
2898
2899// DO NOT EDIT! These are the package prefixes that are exempted from being AOT'ed by ART.
2900// Adding code to the bootclasspath in new packages will cause issues on module update.
2901func rModulesPackages() map[string][]string {
2902 return map[string][]string{
2903 "com.android.mediaprovider": []string{
2904 "android.provider",
2905 },
2906 "com.android.permission": []string{
2907 "android.permission",
2908 "android.app.role",
2909 "com.android.permission",
2910 "com.android.role",
2911 },
2912 "com.android.sdkext": []string{
2913 "android.os.ext",
2914 },
2915 "com.android.os.statsd": []string{
2916 "android.app",
2917 "android.os",
2918 "android.util",
2919 "com.android.internal.statsd",
2920 "com.android.server.stats",
2921 },
2922 "com.android.wifi": []string{
2923 "com.android.server.wifi",
2924 "com.android.wifi.x",
2925 "android.hardware.wifi",
2926 "android.net.wifi",
2927 },
2928 "com.android.tethering": []string{
2929 "android.net",
2930 },
2931 }
2932}