blob: 6fd0b909284cdf8840ad99a63fe18178f5cc130b [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
15package apex
16
17import (
18 "fmt"
Jooyung Han54aca7b2019-11-20 02:26:02 +090019 "path"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090020 "path/filepath"
Jiyong Parkab3ceb32018-10-10 14:05:29 +090021 "sort"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090022 "strings"
Jooyung Han344d5432019-08-23 11:17:39 +090023 "sync"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090024
25 "android/soong/android"
26 "android/soong/cc"
27 "android/soong/java"
Alex Light778127a2019-02-27 14:19:50 -080028 "android/soong/python"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090029
30 "github.com/google/blueprint"
Alex Light778127a2019-02-27 14:19:50 -080031 "github.com/google/blueprint/bootstrap"
Jiyong Park48ca7dc2018-10-10 14:01:00 +090032 "github.com/google/blueprint/proptools"
33)
34
Jooyung Han72bd2f82019-10-23 16:46:38 +090035const (
36 imageApexSuffix = ".apex"
37 zipApexSuffix = ".zipapex"
Sundong Ahnabb64432019-10-22 13:58:29 +090038 flattenedSuffix = ".flattened"
Alex Light5098a612018-11-29 17:12:15 -080039
Sundong Ahnabb64432019-10-22 13:58:29 +090040 imageApexType = "image"
41 zipApexType = "zip"
42 flattenedApexType = "flattened"
Jooyung Han72bd2f82019-10-23 16:46:38 +090043)
Jiyong Park48ca7dc2018-10-10 14:01:00 +090044
45type dependencyTag struct {
46 blueprint.BaseDependencyTag
47 name string
48}
49
50var (
Jiyong Parkc00cbd92018-10-30 21:20:05 +090051 sharedLibTag = dependencyTag{name: "sharedLib"}
52 executableTag = dependencyTag{name: "executable"}
53 javaLibTag = dependencyTag{name: "javaLib"}
54 prebuiltTag = dependencyTag{name: "prebuilt"}
Roland Levillain630846d2019-06-26 12:48:34 +010055 testTag = dependencyTag{name: "test"}
Jiyong Parkc00cbd92018-10-30 21:20:05 +090056 keyTag = dependencyTag{name: "key"}
57 certificateTag = dependencyTag{name: "certificate"}
Jooyung Han5c998b92019-06-27 11:30:33 +090058 usesTag = dependencyTag{name: "uses"}
Sundong Ahne1f05aa2019-08-27 13:55:42 +090059 androidAppTag = dependencyTag{name: "androidApp"}
Jiyong Park48ca7dc2018-10-10 14:01:00 +090060)
61
62func init() {
Jiyong Parkd1063c12019-07-17 20:08:41 +090063 android.RegisterModuleType("apex", BundleFactory)
Alex Light0851b882019-02-07 13:20:53 -080064 android.RegisterModuleType("apex_test", testApexBundleFactory)
Jooyung Han344d5432019-08-23 11:17:39 +090065 android.RegisterModuleType("apex_vndk", vndkApexBundleFactory)
Jiyong Park30ca9372019-02-07 16:27:23 +090066 android.RegisterModuleType("apex_defaults", defaultsFactory)
Jaewoong Jung939ebd52019-03-26 15:07:36 -070067 android.RegisterModuleType("prebuilt_apex", PrebuiltFactory)
Jiyong Park5d790c32019-11-15 18:40:32 +090068 android.RegisterModuleType("override_apex", overrideApexFactory)
Jiyong Park48ca7dc2018-10-10 14:01:00 +090069
Jooyung Han31c470b2019-10-18 16:26:59 +090070 android.PreDepsMutators(RegisterPreDepsMutators)
Jiyong Parkd1063c12019-07-17 20:08:41 +090071 android.PostDepsMutators(RegisterPostDepsMutators)
Jooyung Han7a78a922019-10-08 21:59:58 +090072
73 android.RegisterMakeVarsProvider(pctx, func(ctx android.MakeVarsContext) {
74 apexFileContextsInfos := apexFileContextsInfos(ctx.Config())
75 sort.Strings(*apexFileContextsInfos)
76 ctx.Strict("APEX_FILE_CONTEXTS_INFOS", strings.Join(*apexFileContextsInfos, " "))
77 })
Jiyong Parkd1063c12019-07-17 20:08:41 +090078}
79
Jooyung Han31c470b2019-10-18 16:26:59 +090080func RegisterPreDepsMutators(ctx android.RegisterMutatorsContext) {
81 ctx.TopDown("apex_vndk", apexVndkMutator).Parallel()
82 ctx.BottomUp("apex_vndk_deps", apexVndkDepsMutator).Parallel()
83}
84
Jiyong Parkd1063c12019-07-17 20:08:41 +090085func RegisterPostDepsMutators(ctx android.RegisterMutatorsContext) {
Jiyong Parka308ea12019-11-15 10:38:39 +090086 ctx.BottomUp("apex_deps", apexDepsMutator)
Jiyong Parkd1063c12019-07-17 20:08:41 +090087 ctx.BottomUp("apex", apexMutator).Parallel()
88 ctx.BottomUp("apex_flattened", apexFlattenedMutator).Parallel()
89 ctx.BottomUp("apex_uses", apexUsesMutator).Parallel()
Jiyong Park48ca7dc2018-10-10 14:01:00 +090090}
91
Jiyong Park48ca7dc2018-10-10 14:01:00 +090092// Mark the direct and transitive dependencies of apex bundles so that they
93// can be built for the apex bundles.
Jiyong Parka308ea12019-11-15 10:38:39 +090094func apexDepsMutator(mctx android.BottomUpMutatorContext) {
Alex Lightf98087f2019-02-04 14:45:06 -080095 if a, ok := mctx.Module().(*apexBundle); ok {
Colin Crossa4925902018-11-16 11:36:28 -080096 apexBundleName := mctx.ModuleName()
Jiyong Park48ca7dc2018-10-10 14:01:00 +090097 mctx.WalkDeps(func(child, parent android.Module) bool {
Jiyong Park0ddfcd12018-12-11 01:35:25 +090098 depName := mctx.OtherModuleName(child)
99 // If the parent is apexBundle, this child is directly depended.
100 _, directDep := parent.(*apexBundle)
Alex Light0851b882019-02-07 13:20:53 -0800101 if a.installable() && !a.testApex {
Alex Lightf98087f2019-02-04 14:45:06 -0800102 // TODO(b/123892969): Workaround for not having any way to annotate test-apexs
103 // non-installable apex's cannot be installed and so should not prevent libraries from being
104 // installed to the system.
105 android.UpdateApexDependency(apexBundleName, depName, directDep)
106 }
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900107
Jiyong Park3ff16992019-12-27 14:11:47 +0900108 if am, ok := child.(android.ApexModule); ok && am.CanHaveApexVariants() &&
109 (directDep || am.DepIsInSameApex(mctx, child)) {
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900110 am.BuildForApex(apexBundleName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900111 return true
112 } else {
113 return false
114 }
115 })
116 }
117}
118
119// Create apex variations if a module is included in APEX(s).
120func apexMutator(mctx android.BottomUpMutatorContext) {
121 if am, ok := mctx.Module().(android.ApexModule); ok && am.CanHaveApexVariants() {
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900122 am.CreateApexVariations(mctx)
Jooyung Han54aca7b2019-11-20 02:26:02 +0900123 } else if _, ok := mctx.Module().(*apexBundle); ok {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900124 // apex bundle itself is mutated so that it and its modules have same
125 // apex variant.
126 apexBundleName := mctx.ModuleName()
127 mctx.CreateVariations(apexBundleName)
Jiyong Park5d790c32019-11-15 18:40:32 +0900128 } else if o, ok := mctx.Module().(*OverrideApex); ok {
129 apexBundleName := o.GetOverriddenModuleName()
130 if apexBundleName == "" {
131 mctx.ModuleErrorf("base property is not set")
132 return
133 }
134 mctx.CreateVariations(apexBundleName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900135 }
Jiyong Park5d790c32019-11-15 18:40:32 +0900136
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900137}
Sundong Ahne9b55722019-09-06 17:37:42 +0900138
Jooyung Han7a78a922019-10-08 21:59:58 +0900139var (
140 apexFileContextsInfosKey = android.NewOnceKey("apexFileContextsInfosKey")
141 apexFileContextsInfosMutex sync.Mutex
142)
143
144func apexFileContextsInfos(config android.Config) *[]string {
145 return config.Once(apexFileContextsInfosKey, func() interface{} {
146 return &[]string{}
147 }).(*[]string)
148}
149
Jooyung Han54aca7b2019-11-20 02:26:02 +0900150func addFlattenedFileContextsInfos(ctx android.BaseModuleContext, fileContextsInfo string) {
Jooyung Han7a78a922019-10-08 21:59:58 +0900151 apexFileContextsInfosMutex.Lock()
152 defer apexFileContextsInfosMutex.Unlock()
153 apexFileContextsInfos := apexFileContextsInfos(ctx.Config())
Jooyung Han54aca7b2019-11-20 02:26:02 +0900154 *apexFileContextsInfos = append(*apexFileContextsInfos, fileContextsInfo)
Jooyung Han7a78a922019-10-08 21:59:58 +0900155}
156
Sundong Ahne9b55722019-09-06 17:37:42 +0900157func apexFlattenedMutator(mctx android.BottomUpMutatorContext) {
Sundong Ahne8fb7242019-09-17 13:50:45 +0900158 if ab, ok := mctx.Module().(*apexBundle); ok {
Sundong Ahnabb64432019-10-22 13:58:29 +0900159 var variants []string
160 switch proptools.StringDefault(ab.properties.Payload_type, "image") {
161 case "image":
162 variants = append(variants, imageApexType, flattenedApexType)
163 case "zip":
164 variants = append(variants, zipApexType)
165 case "both":
166 variants = append(variants, imageApexType, zipApexType, flattenedApexType)
167 default:
Sundong Ahnd95aa2d2019-10-08 19:34:03 +0900168 mctx.PropertyErrorf("type", "%q is not one of \"image\", \"zip\", or \"both\".", *ab.properties.Payload_type)
Sundong Ahnabb64432019-10-22 13:58:29 +0900169 return
170 }
171
172 modules := mctx.CreateLocalVariations(variants...)
173
174 for i, v := range variants {
175 switch v {
176 case imageApexType:
177 modules[i].(*apexBundle).properties.ApexType = imageApex
178 case zipApexType:
179 modules[i].(*apexBundle).properties.ApexType = zipApex
180 case flattenedApexType:
181 modules[i].(*apexBundle).properties.ApexType = flattenedApex
Jooyung Han91df2082019-11-20 01:49:42 +0900182 if !mctx.Config().FlattenApex() && ab.Platform() {
Sundong Ahnd95aa2d2019-10-08 19:34:03 +0900183 modules[i].(*apexBundle).MakeAsSystemExt()
184 }
Sundong Ahnabb64432019-10-22 13:58:29 +0900185 }
Sundong Ahne9b55722019-09-06 17:37:42 +0900186 }
Jiyong Park5d790c32019-11-15 18:40:32 +0900187 } else if _, ok := mctx.Module().(*OverrideApex); ok {
188 mctx.CreateVariations(imageApexType, flattenedApexType)
Sundong Ahne9b55722019-09-06 17:37:42 +0900189 }
190}
191
Jooyung Han5c998b92019-06-27 11:30:33 +0900192func apexUsesMutator(mctx android.BottomUpMutatorContext) {
193 if ab, ok := mctx.Module().(*apexBundle); ok {
194 mctx.AddFarVariationDependencies(nil, usesTag, ab.properties.Uses...)
195 }
196}
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900197
Jooyung Handc782442019-11-01 03:14:38 +0900198var (
199 useVendorWhitelistKey = android.NewOnceKey("useVendorWhitelist")
200)
201
202// useVendorWhitelist returns the list of APEXes which are allowed to use_vendor.
203// When use_vendor is used, native modules are built with __ANDROID_VNDK__ and __ANDROID_APEX__,
204// which may cause compatibility issues. (e.g. libbinder)
205// Even though libbinder restricts its availability via 'apex_available' property and relies on
206// yet another macro __ANDROID_APEX_<NAME>__, we restrict usage of "use_vendor:" from other APEX modules
207// to avoid similar problems.
208func useVendorWhitelist(config android.Config) []string {
209 return config.Once(useVendorWhitelistKey, func() interface{} {
210 return []string{
211 // swcodec uses "vendor" variants for smaller size
212 "com.android.media.swcodec",
213 "test_com.android.media.swcodec",
214 }
215 }).([]string)
216}
217
218// setUseVendorWhitelistForTest overrides useVendorWhitelist and must be
219// called before the first call to useVendorWhitelist()
220func setUseVendorWhitelistForTest(config android.Config, whitelist []string) {
221 config.Once(useVendorWhitelistKey, func() interface{} {
222 return whitelist
223 })
224}
225
Alex Light9670d332019-01-29 18:07:33 -0800226type apexNativeDependencies struct {
227 // List of native libraries
228 Native_shared_libs []string
Jooyung Han344d5432019-08-23 11:17:39 +0900229
Alex Light9670d332019-01-29 18:07:33 -0800230 // List of native executables
231 Binaries []string
Jooyung Han344d5432019-08-23 11:17:39 +0900232
Roland Levillain630846d2019-06-26 12:48:34 +0100233 // List of native tests
234 Tests []string
Alex Light9670d332019-01-29 18:07:33 -0800235}
Jooyung Han344d5432019-08-23 11:17:39 +0900236
Alex Light9670d332019-01-29 18:07:33 -0800237type apexMultilibProperties struct {
238 // Native dependencies whose compile_multilib is "first"
239 First apexNativeDependencies
240
241 // Native dependencies whose compile_multilib is "both"
242 Both apexNativeDependencies
243
244 // Native dependencies whose compile_multilib is "prefer32"
245 Prefer32 apexNativeDependencies
246
247 // Native dependencies whose compile_multilib is "32"
248 Lib32 apexNativeDependencies
249
250 // Native dependencies whose compile_multilib is "64"
251 Lib64 apexNativeDependencies
252}
253
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900254type apexBundleProperties struct {
255 // Json manifest file describing meta info of this APEX bundle. Default:
Dario Freni4abb1dc2018-11-20 18:04:58 +0000256 // "apex_manifest.json"
Colin Cross27b922f2019-03-04 22:35:41 -0800257 Manifest *string `android:"path"`
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900258
Jiyong Park40e26a22019-02-08 02:53:06 +0900259 // AndroidManifest.xml file used for the zip container of this APEX bundle.
260 // If unspecified, a default one is automatically generated.
Colin Cross27b922f2019-03-04 22:35:41 -0800261 AndroidManifest *string `android:"path"`
Jiyong Park40e26a22019-02-08 02:53:06 +0900262
Roland Levillain411c5842019-09-19 16:37:20 +0100263 // Canonical name of the APEX bundle. Used to determine the path to the activated APEX on
264 // device (/apex/<apex_name>).
265 // If unspecified, defaults to the value of name.
Jiyong Park05e70dd2019-03-18 14:26:32 +0900266 Apex_name *string
267
Jiyong Parkd0a65ba2018-11-10 06:37:15 +0900268 // Determines the file contexts file for setting security context to each file in this APEX bundle.
Jooyung Han54aca7b2019-11-20 02:26:02 +0900269 // For platform APEXes, this should points to a file under /system/sepolicy
270 // Default: /system/sepolicy/apex/<module_name>_file_contexts.
271 File_contexts *string `android:"path"`
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900272
273 // List of native shared libs that are embedded inside this APEX bundle
274 Native_shared_libs []string
275
Roland Levillain630846d2019-06-26 12:48:34 +0100276 // List of executables that are embedded inside this APEX bundle
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900277 Binaries []string
278
279 // List of java libraries that are embedded inside this APEX bundle
280 Java_libs []string
281
282 // List of prebuilt files that are embedded inside this APEX bundle
283 Prebuilts []string
Jiyong Parkff1458f2018-10-12 21:49:38 +0900284
Roland Levillain630846d2019-06-26 12:48:34 +0100285 // List of tests that are embedded inside this APEX bundle
286 Tests []string
287
Jiyong Parkff1458f2018-10-12 21:49:38 +0900288 // Name of the apex_key module that provides the private key to sign APEX
289 Key *string
Jiyong Park397e55e2018-10-24 21:09:55 +0900290
Alex Light5098a612018-11-29 17:12:15 -0800291 // The type of APEX to build. Controls what the APEX payload is. Either
292 // 'image', 'zip' or 'both'. Default: 'image'.
293 Payload_type *string
294
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900295 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
296 // or an android_app_certificate module name in the form ":module".
297 Certificate *string
298
Jiyong Park92c0f9c2018-12-13 23:14:57 +0900299 // Whether this APEX is installable to one of the partitions. Default: true.
300 Installable *bool
301
Jiyong Parkda6eb592018-12-19 17:12:36 +0900302 // For native libraries and binaries, use the vendor variant instead of the core (platform) variant.
303 // Default is false.
304 Use_vendor *bool
305
Alex Lightfc0bd7c2019-01-29 18:31:59 -0800306 // For telling the apex to ignore special handling for system libraries such as bionic. Default is false.
307 Ignore_system_library_special_case *bool
308
Alex Light9670d332019-01-29 18:07:33 -0800309 Multilib apexMultilibProperties
Jiyong Park235e67c2019-02-09 11:50:56 +0900310
Jiyong Parkf97782b2019-02-13 20:28:58 +0900311 // List of sanitizer names that this APEX is enabled for
312 SanitizerNames []string `blueprint:"mutated"`
Jooyung Han5c998b92019-06-27 11:30:33 +0900313
Jiyong Parkee9a98d2019-08-09 14:44:36 +0900314 PreventInstall bool `blueprint:"mutated"`
315
316 HideFromMake bool `blueprint:"mutated"`
317
Jooyung Han5c998b92019-06-27 11:30:33 +0900318 // Indicates this APEX provides C++ shared libaries to other APEXes. Default: false.
319 Provide_cpp_shared_libs *bool
320
321 // List of providing APEXes' names so that this APEX can depend on provided shared libraries.
322 Uses []string
Nikita Ioffe5d5ae762019-08-31 14:38:05 +0100323
324 // A txt file containing list of files that are whitelisted to be included in this APEX.
325 Whitelisted_files *string
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900326
Sundong Ahnabb64432019-10-22 13:58:29 +0900327 // package format of this apex variant; could be non-flattened, flattened, or zip.
328 // imageApex, zipApex or flattened
329 ApexType apexPackaging `blueprint:"mutated"`
Sundong Ahne8fb7242019-09-17 13:50:45 +0900330
Jiyong Parkd1063c12019-07-17 20:08:41 +0900331 // List of SDKs that are used to build this APEX. A reference to an SDK should be either
332 // `name#version` or `name` which is an alias for `name#current`. If left empty, `platform#current`
333 // is implied. This value affects all modules included in this APEX. In other words, they are
334 // also built with the SDKs specified here.
335 Uses_sdks []string
Jiyong Park5d790c32019-11-15 18:40:32 +0900336
Nikita Ioffec72b5dd2019-12-07 17:30:22 +0000337 // Whenever apex_payload.img of the APEX should include dm-verity hashtree.
338 // Should be only used in tests#.
339 Test_only_no_hashtree *bool
Jooyung Han214bf372019-11-12 13:03:50 +0900340
341 // Whether this APEX should support Android10. Default is false. If this is set true, then apex_manifest.json is bundled as well
342 // because Android10 requires legacy apex_manifest.json instead of apex_manifest.pb
343 Legacy_android10_support *bool
Alex Light9670d332019-01-29 18:07:33 -0800344}
345
346type apexTargetBundleProperties struct {
347 Target struct {
348 // Multilib properties only for android.
349 Android struct {
350 Multilib apexMultilibProperties
Jiyong Park397e55e2018-10-24 21:09:55 +0900351 }
Jooyung Han344d5432019-08-23 11:17:39 +0900352
Alex Light9670d332019-01-29 18:07:33 -0800353 // Multilib properties only for host.
354 Host struct {
355 Multilib apexMultilibProperties
Jiyong Park397e55e2018-10-24 21:09:55 +0900356 }
Jooyung Han344d5432019-08-23 11:17:39 +0900357
Alex Light9670d332019-01-29 18:07:33 -0800358 // Multilib properties only for host linux_bionic.
359 Linux_bionic struct {
360 Multilib apexMultilibProperties
Jiyong Park397e55e2018-10-24 21:09:55 +0900361 }
Jooyung Han344d5432019-08-23 11:17:39 +0900362
Alex Light9670d332019-01-29 18:07:33 -0800363 // Multilib properties only for host linux_glibc.
364 Linux_glibc struct {
365 Multilib apexMultilibProperties
Jiyong Park397e55e2018-10-24 21:09:55 +0900366 }
367 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900368}
369
Jiyong Park5d790c32019-11-15 18:40:32 +0900370type overridableProperties struct {
371 // List of APKs to package inside APEX
372 Apps []string
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -0800373
374 // Names of modules to be overridden. Listed modules can only be other binaries
375 // (in Make or Soong).
376 // This does not completely prevent installation of the overridden binaries, but if both
377 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
378 // from PRODUCT_PACKAGES.
379 Overrides []string
Jiyong Park5d790c32019-11-15 18:40:32 +0900380}
381
Alex Light5098a612018-11-29 17:12:15 -0800382type apexPackaging int
383
384const (
385 imageApex apexPackaging = iota
386 zipApex
Sundong Ahnabb64432019-10-22 13:58:29 +0900387 flattenedApex
Alex Light5098a612018-11-29 17:12:15 -0800388)
389
Sundong Ahnabb64432019-10-22 13:58:29 +0900390// The suffix for the output "file", not the module
Alex Light5098a612018-11-29 17:12:15 -0800391func (a apexPackaging) suffix() string {
392 switch a {
393 case imageApex:
394 return imageApexSuffix
395 case zipApex:
396 return zipApexSuffix
Alex Light5098a612018-11-29 17:12:15 -0800397 default:
Roland Levillain4644b222019-07-31 14:09:17 +0100398 panic(fmt.Errorf("unknown APEX type %d", a))
Alex Light5098a612018-11-29 17:12:15 -0800399 }
400}
401
402func (a apexPackaging) name() string {
403 switch a {
404 case imageApex:
405 return imageApexType
406 case zipApex:
407 return zipApexType
Alex Light5098a612018-11-29 17:12:15 -0800408 default:
Roland Levillain4644b222019-07-31 14:09:17 +0100409 panic(fmt.Errorf("unknown APEX type %d", a))
Alex Light5098a612018-11-29 17:12:15 -0800410 }
411}
412
Jiyong Parkf653b052019-11-18 15:39:01 +0900413type apexFileClass int
414
415const (
416 etc apexFileClass = iota
417 nativeSharedLib
418 nativeExecutable
419 shBinary
420 pyBinary
421 goBinary
422 javaSharedLib
423 nativeTest
424 app
425)
426
Jiyong Park8fd61922018-11-08 02:50:25 +0900427func (class apexFileClass) NameInMake() string {
428 switch class {
429 case etc:
430 return "ETC"
431 case nativeSharedLib:
432 return "SHARED_LIBRARIES"
Alex Light778127a2019-02-27 14:19:50 -0800433 case nativeExecutable, shBinary, pyBinary, goBinary:
Jiyong Park8fd61922018-11-08 02:50:25 +0900434 return "EXECUTABLES"
435 case javaSharedLib:
436 return "JAVA_LIBRARIES"
Roland Levillain630846d2019-06-26 12:48:34 +0100437 case nativeTest:
438 return "NATIVE_TESTS"
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900439 case app:
Jiyong Parkf383f7c2019-10-11 20:46:25 +0900440 // b/142537672 Why isn't this APP? We want to have full control over
441 // the paths and file names of the apk file under the flattend APEX.
442 // If this is set to APP, then the paths and file names are modified
443 // by the Make build system. For example, it is installed to
444 // /system/apex/<apexname>/app/<Appname>/<apexname>.<Appname>/ instead of
445 // /system/apex/<apexname>/app/<Appname> because the build system automatically
446 // appends module name (which is <apexname>.<Appname> to the path.
447 return "ETC"
Jiyong Park8fd61922018-11-08 02:50:25 +0900448 default:
Roland Levillain4644b222019-07-31 14:09:17 +0100449 panic(fmt.Errorf("unknown class %d", class))
Jiyong Park8fd61922018-11-08 02:50:25 +0900450 }
451}
452
Jiyong Parkf653b052019-11-18 15:39:01 +0900453// apexFile represents a file in an APEX bundle
Jiyong Park8fd61922018-11-08 02:50:25 +0900454type apexFile struct {
455 builtFile android.Path
456 moduleName string
Jiyong Park8fd61922018-11-08 02:50:25 +0900457 installDir string
458 class apexFileClass
Jiyong Parka8894842018-12-19 17:36:39 +0900459 module android.Module
Jiyong Parkf653b052019-11-18 15:39:01 +0900460 // list of symlinks that will be created in installDir that point to this apexFile
461 symlinks []string
462 transitiveDep bool
Jiyong Park1833cef2019-12-13 13:28:36 +0900463 moduleDir string
Jiyong Parkf653b052019-11-18 15:39:01 +0900464}
465
Jiyong Park1833cef2019-12-13 13:28:36 +0900466func newApexFile(ctx android.BaseModuleContext, builtFile android.Path, moduleName string, installDir string, class apexFileClass, module android.Module) apexFile {
467 ret := apexFile{
Jiyong Parkf653b052019-11-18 15:39:01 +0900468 builtFile: builtFile,
469 moduleName: moduleName,
470 installDir: installDir,
471 class: class,
472 module: module,
473 }
Jiyong Park1833cef2019-12-13 13:28:36 +0900474 if module != nil {
475 ret.moduleDir = ctx.OtherModuleDir(module)
476 }
477 return ret
Jiyong Parkf653b052019-11-18 15:39:01 +0900478}
479
480func (af *apexFile) Ok() bool {
Jiyong Park479321d2019-12-16 11:47:12 +0900481 return af.builtFile != nil && af.builtFile.String() != ""
Jiyong Park8fd61922018-11-08 02:50:25 +0900482}
483
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900484type apexBundle struct {
485 android.ModuleBase
486 android.DefaultableModuleBase
Jiyong Park5d790c32019-11-15 18:40:32 +0900487 android.OverridableModuleBase
Jiyong Parkd1063c12019-07-17 20:08:41 +0900488 android.SdkBase
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900489
Jiyong Park5d790c32019-11-15 18:40:32 +0900490 properties apexBundleProperties
491 targetProperties apexTargetBundleProperties
Jiyong Park5d790c32019-11-15 18:40:32 +0900492 overridableProperties overridableProperties
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900493
Jooyung Hanf21c7972019-12-16 22:32:06 +0900494 // specific to apex_vndk modules
495 vndkProperties apexVndkProperties
496
Colin Crossa4925902018-11-16 11:36:28 -0800497 bundleModuleFile android.WritablePath
Sundong Ahnabb64432019-10-22 13:58:29 +0900498 outputFile android.WritablePath
Colin Cross70dda7e2019-10-01 22:05:35 -0700499 installDir android.InstallPath
Jiyong Park8fd61922018-11-08 02:50:25 +0900500
Jiyong Park03b68dd2019-07-26 23:20:40 +0900501 prebuiltFileToDelete string
502
Jiyong Park42cca6c2019-04-01 11:15:50 +0900503 public_key_file android.Path
504 private_key_file android.Path
Jiyong Park0ca3ce82019-02-18 15:25:04 +0900505
506 container_certificate_file android.Path
507 container_private_key_file android.Path
508
Jooyung Han54aca7b2019-11-20 02:26:02 +0900509 fileContexts android.Path
510
Jiyong Park8fd61922018-11-08 02:50:25 +0900511 // list of files to be included in this apex
512 filesInfo []apexFile
513
Jiyong Parkac2bacd2019-02-20 21:49:26 +0900514 // list of module names that this APEX is depending on
515 externalDeps []string
516
Sundong Ahnabb64432019-10-22 13:58:29 +0900517 testApex bool
518 vndkApex bool
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000519 artApex bool
Sundong Ahnabb64432019-10-22 13:58:29 +0900520 primaryApexType bool
Jooyung Hane1633032019-08-01 17:41:43 +0900521
Jooyung Han214bf372019-11-12 13:03:50 +0900522 manifestJsonOut android.WritablePath
523 manifestPbOut android.WritablePath
Jooyung Han72bd2f82019-10-23 16:46:38 +0900524
525 // list of commands to create symlinks for backward compatibility
526 // these commands will be attached as LOCAL_POST_INSTALL_CMD to
527 // apex package itself(for unflattened build) or apex_manifest.json(for flattened build)
528 // so that compat symlinks are always installed regardless of TARGET_FLATTEN_APEX setting.
529 compatSymlinks []string
Sundong Ahnabb64432019-10-22 13:58:29 +0900530
531 // Suffix of module name in Android.mk
532 // ".flattened", ".apex", ".zipapex", or ""
533 suffix string
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900534}
535
Jiyong Park397e55e2018-10-24 21:09:55 +0900536func addDependenciesForNativeModules(ctx android.BottomUpMutatorContext,
Roland Levillain630846d2019-06-26 12:48:34 +0100537 native_shared_libs []string, binaries []string, tests []string,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700538 target android.Target, imageVariation string) {
Jiyong Park397e55e2018-10-24 21:09:55 +0900539 // Use *FarVariation* to be able to depend on modules having
540 // conflicting variations with this module. This is required since
541 // arch variant of an APEX bundle is 'common' but it is 'arm' or 'arm64'
542 // for native shared libs.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700543 ctx.AddFarVariationDependencies(append(target.Variations(), []blueprint.Variation{
Jiyong Parkda6eb592018-12-19 17:12:36 +0900544 {Mutator: "image", Variation: imageVariation},
Jiyong Park397e55e2018-10-24 21:09:55 +0900545 {Mutator: "link", Variation: "shared"},
Jiyong Park28d395a2018-12-07 22:42:47 +0900546 {Mutator: "version", Variation: ""}, // "" is the non-stub variant
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700547 }...), sharedLibTag, native_shared_libs...)
Jiyong Park397e55e2018-10-24 21:09:55 +0900548
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700549 ctx.AddFarVariationDependencies(append(target.Variations(),
550 blueprint.Variation{Mutator: "image", Variation: imageVariation}),
551 executableTag, binaries...)
Roland Levillain630846d2019-06-26 12:48:34 +0100552
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700553 ctx.AddFarVariationDependencies(append(target.Variations(), []blueprint.Variation{
Roland Levillain630846d2019-06-26 12:48:34 +0100554 {Mutator: "image", Variation: imageVariation},
Roland Levillain9b5fde92019-06-28 15:41:19 +0100555 {Mutator: "test_per_src", Variation: ""}, // "" is the all-tests variant
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700556 }...), testTag, tests...)
Jiyong Park397e55e2018-10-24 21:09:55 +0900557}
558
Alex Light9670d332019-01-29 18:07:33 -0800559func (a *apexBundle) combineProperties(ctx android.BottomUpMutatorContext) {
560 if ctx.Os().Class == android.Device {
561 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Android.Multilib, nil)
562 } else {
563 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Host.Multilib, nil)
564 if ctx.Os().Bionic() {
565 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Linux_bionic.Multilib, nil)
566 } else {
567 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Linux_glibc.Multilib, nil)
568 }
569 }
570}
571
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900572func (a *apexBundle) DepsMutator(ctx android.BottomUpMutatorContext) {
Jooyung Handc782442019-11-01 03:14:38 +0900573 if proptools.Bool(a.properties.Use_vendor) && !android.InList(a.Name(), useVendorWhitelist(ctx.Config())) {
574 ctx.PropertyErrorf("use_vendor", "not allowed to set use_vendor: true")
575 }
576
Jiyong Park397e55e2018-10-24 21:09:55 +0900577 targets := ctx.MultiTargets()
Jiyong Park7c1dc612019-01-05 11:15:24 +0900578 config := ctx.DeviceConfig()
Alex Light9670d332019-01-29 18:07:33 -0800579
580 a.combineProperties(ctx)
581
Jiyong Park397e55e2018-10-24 21:09:55 +0900582 has32BitTarget := false
583 for _, target := range targets {
584 if target.Arch.ArchType.Multilib == "lib32" {
585 has32BitTarget = true
586 }
587 }
588 for i, target := range targets {
589 // When multilib.* is omitted for native_shared_libs, it implies
590 // multilib.both.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700591 ctx.AddFarVariationDependencies(append(target.Variations(), []blueprint.Variation{
Jiyong Park7c1dc612019-01-05 11:15:24 +0900592 {Mutator: "image", Variation: a.getImageVariation(config)},
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900593 {Mutator: "link", Variation: "shared"},
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700594 }...), sharedLibTag, a.properties.Native_shared_libs...)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900595
Roland Levillain630846d2019-06-26 12:48:34 +0100596 // When multilib.* is omitted for tests, it implies
597 // multilib.both.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700598 ctx.AddFarVariationDependencies(append(target.Variations(), []blueprint.Variation{
Roland Levillain630846d2019-06-26 12:48:34 +0100599 {Mutator: "image", Variation: a.getImageVariation(config)},
Roland Levillain9b5fde92019-06-28 15:41:19 +0100600 {Mutator: "test_per_src", Variation: ""}, // "" is the all-tests variant
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700601 }...), testTag, a.properties.Tests...)
Roland Levillain630846d2019-06-26 12:48:34 +0100602
Jiyong Park397e55e2018-10-24 21:09:55 +0900603 // Add native modules targetting both ABIs
604 addDependenciesForNativeModules(ctx,
605 a.properties.Multilib.Both.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100606 a.properties.Multilib.Both.Binaries,
607 a.properties.Multilib.Both.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700608 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900609 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900610
Alex Light3d673592019-01-18 14:37:31 -0800611 isPrimaryAbi := i == 0
612 if isPrimaryAbi {
Jiyong Park397e55e2018-10-24 21:09:55 +0900613 // When multilib.* is omitted for binaries, it implies
614 // multilib.first.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700615 ctx.AddFarVariationDependencies(append(target.Variations(),
616 blueprint.Variation{Mutator: "image", Variation: a.getImageVariation(config)}),
617 executableTag, a.properties.Binaries...)
Jiyong Park397e55e2018-10-24 21:09:55 +0900618
619 // Add native modules targetting the first ABI
620 addDependenciesForNativeModules(ctx,
621 a.properties.Multilib.First.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100622 a.properties.Multilib.First.Binaries,
623 a.properties.Multilib.First.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700624 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900625 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900626 }
627
628 switch target.Arch.ArchType.Multilib {
629 case "lib32":
630 // Add native modules targetting 32-bit ABI
631 addDependenciesForNativeModules(ctx,
632 a.properties.Multilib.Lib32.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100633 a.properties.Multilib.Lib32.Binaries,
634 a.properties.Multilib.Lib32.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700635 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900636 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900637
638 addDependenciesForNativeModules(ctx,
639 a.properties.Multilib.Prefer32.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100640 a.properties.Multilib.Prefer32.Binaries,
641 a.properties.Multilib.Prefer32.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700642 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900643 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900644 case "lib64":
645 // Add native modules targetting 64-bit ABI
646 addDependenciesForNativeModules(ctx,
647 a.properties.Multilib.Lib64.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100648 a.properties.Multilib.Lib64.Binaries,
649 a.properties.Multilib.Lib64.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700650 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900651 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900652
653 if !has32BitTarget {
654 addDependenciesForNativeModules(ctx,
655 a.properties.Multilib.Prefer32.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100656 a.properties.Multilib.Prefer32.Binaries,
657 a.properties.Multilib.Prefer32.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700658 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900659 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900660 }
Peter Collingbourne3478bb22019-04-24 14:41:12 -0700661
662 if strings.HasPrefix(ctx.ModuleName(), "com.android.runtime") && target.Os.Class == android.Device {
663 for _, sanitizer := range ctx.Config().SanitizeDevice() {
664 if sanitizer == "hwaddress" {
665 addDependenciesForNativeModules(ctx,
666 []string{"libclang_rt.hwasan-aarch64-android"},
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700667 nil, nil, target, a.getImageVariation(config))
Peter Collingbourne3478bb22019-04-24 14:41:12 -0700668 break
669 }
670 }
671 }
Jiyong Park397e55e2018-10-24 21:09:55 +0900672 }
673
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900674 }
675
Jiyong Parkce6aadc2019-11-20 13:58:28 +0900676 // For prebuilt_etc, use the first variant (64 on 64/32bit device,
677 // 32 on 32bit device) regardless of the TARGET_PREFER_* setting.
678 // b/144532908
679 archForPrebuiltEtc := config.Arches()[0]
680 for _, arch := range config.Arches() {
681 // Prefer 64-bit arch if there is any
682 if arch.ArchType.Multilib == "lib64" {
683 archForPrebuiltEtc = arch
684 break
685 }
686 }
687 ctx.AddFarVariationDependencies([]blueprint.Variation{
688 {Mutator: "os", Variation: ctx.Os().String()},
689 {Mutator: "arch", Variation: archForPrebuiltEtc.String()},
690 }, prebuiltTag, a.properties.Prebuilts...)
691
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700692 ctx.AddFarVariationDependencies(ctx.Config().AndroidCommonTarget.Variations(),
693 javaLibTag, a.properties.Java_libs...)
Jiyong Parkff1458f2018-10-12 21:49:38 +0900694
Jiyong Park23c52b02019-02-02 13:13:47 +0900695 if String(a.properties.Key) == "" {
696 ctx.ModuleErrorf("key is missing")
697 return
698 }
699 ctx.AddDependency(ctx.Module(), keyTag, String(a.properties.Key))
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900700
Jiyong Parkb2742fd2019-02-11 11:38:15 +0900701 cert := android.SrcIsModule(a.getCertString(ctx))
Jiyong Park23c52b02019-02-02 13:13:47 +0900702 if cert != "" {
703 ctx.AddDependency(ctx.Module(), certificateTag, cert)
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900704 }
Jiyong Parkd1063c12019-07-17 20:08:41 +0900705
706 // TODO(jiyong): ensure that all apexes are with non-empty uses_sdks
707 if len(a.properties.Uses_sdks) > 0 {
708 sdkRefs := []android.SdkRef{}
709 for _, str := range a.properties.Uses_sdks {
710 parsed := android.ParseSdkRef(ctx, str, "uses_sdks")
711 sdkRefs = append(sdkRefs, parsed)
712 }
713 a.BuildWithSdks(sdkRefs)
714 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900715}
716
Jiyong Park5d790c32019-11-15 18:40:32 +0900717func (a *apexBundle) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
718 ctx.AddFarVariationDependencies(ctx.Config().AndroidCommonTarget.Variations(),
719 androidAppTag, a.overridableProperties.Apps...)
720}
721
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900722func (a *apexBundle) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
723 // direct deps of an APEX bundle are all part of the APEX bundle
724 return true
725}
726
Colin Cross0ea8ba82019-06-06 14:33:29 -0700727func (a *apexBundle) getCertString(ctx android.BaseModuleContext) string {
Jooyung Han27151d92019-12-16 17:45:32 +0900728 moduleName := ctx.ModuleName()
729 // VNDK APEXes share the same certificate. To avoid adding a new VNDK version to the OVERRIDE_* list,
730 // we check with the pseudo module name to see if its certificate is overridden.
731 if a.vndkApex {
732 moduleName = vndkApexName
733 }
734 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(moduleName)
Jiyong Parkb2742fd2019-02-11 11:38:15 +0900735 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000736 return ":" + certificate
Jiyong Parkb2742fd2019-02-11 11:38:15 +0900737 }
738 return String(a.properties.Certificate)
739}
740
Colin Cross41955e82019-05-29 14:40:35 -0700741func (a *apexBundle) OutputFiles(tag string) (android.Paths, error) {
742 switch tag {
743 case "":
Sundong Ahnabb64432019-10-22 13:58:29 +0900744 return android.Paths{a.outputFile}, nil
Colin Cross41955e82019-05-29 14:40:35 -0700745 default:
746 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
Jiyong Park5a832022018-12-20 09:54:35 +0900747 }
Jiyong Park74e240b2018-11-27 21:27:08 +0900748}
749
Jiyong Park92c0f9c2018-12-13 23:14:57 +0900750func (a *apexBundle) installable() bool {
Jiyong Parkee9a98d2019-08-09 14:44:36 +0900751 return !a.properties.PreventInstall && (a.properties.Installable == nil || proptools.Bool(a.properties.Installable))
Jiyong Park92c0f9c2018-12-13 23:14:57 +0900752}
753
Nikita Ioffec72b5dd2019-12-07 17:30:22 +0000754func (a *apexBundle) testOnlyShouldSkipHashtreeGeneration() bool {
755 return proptools.Bool(a.properties.Test_only_no_hashtree)
756}
757
Jiyong Park7c1dc612019-01-05 11:15:24 +0900758func (a *apexBundle) getImageVariation(config android.DeviceConfig) string {
Jooyung Han31c470b2019-10-18 16:26:59 +0900759 if a.vndkApex {
Colin Cross7228ecd2019-11-18 16:00:16 -0800760 return cc.VendorVariationPrefix + a.vndkVersion(config)
Jooyung Han31c470b2019-10-18 16:26:59 +0900761 }
Jiyong Park7c1dc612019-01-05 11:15:24 +0900762 if config.VndkVersion() != "" && proptools.Bool(a.properties.Use_vendor) {
Colin Cross7228ecd2019-11-18 16:00:16 -0800763 return cc.VendorVariationPrefix + config.PlatformVndkVersion()
Jiyong Parkda6eb592018-12-19 17:12:36 +0900764 } else {
Colin Cross7228ecd2019-11-18 16:00:16 -0800765 return android.CoreVariation
Jiyong Parkda6eb592018-12-19 17:12:36 +0900766 }
767}
768
Jiyong Parkf97782b2019-02-13 20:28:58 +0900769func (a *apexBundle) EnableSanitizer(sanitizerName string) {
770 if !android.InList(sanitizerName, a.properties.SanitizerNames) {
771 a.properties.SanitizerNames = append(a.properties.SanitizerNames, sanitizerName)
772 }
773}
774
Jiyong Park388ef3f2019-01-28 19:47:32 +0900775func (a *apexBundle) IsSanitizerEnabled(ctx android.BaseModuleContext, sanitizerName string) bool {
Jiyong Parkf97782b2019-02-13 20:28:58 +0900776 if android.InList(sanitizerName, a.properties.SanitizerNames) {
777 return true
Jiyong Park235e67c2019-02-09 11:50:56 +0900778 }
779
780 // Then follow the global setting
Jiyong Park388ef3f2019-01-28 19:47:32 +0900781 globalSanitizerNames := []string{}
782 if a.Host() {
783 globalSanitizerNames = ctx.Config().SanitizeHost()
784 } else {
785 arches := ctx.Config().SanitizeDeviceArch()
786 if len(arches) == 0 || android.InList(a.Arch().ArchType.Name, arches) {
787 globalSanitizerNames = ctx.Config().SanitizeDevice()
788 }
789 }
790 return android.InList(sanitizerName, globalSanitizerNames)
Jiyong Park379de2f2018-12-19 02:47:14 +0900791}
792
Jiyong Parkee9a98d2019-08-09 14:44:36 +0900793func (a *apexBundle) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
794 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
795}
796
797func (a *apexBundle) PreventInstall() {
798 a.properties.PreventInstall = true
799}
800
801func (a *apexBundle) HideFromMake() {
802 a.properties.HideFromMake = true
803}
804
Jiyong Parkf653b052019-11-18 15:39:01 +0900805// TODO(jiyong) move apexFileFor* close to the apexFile type definition
Jiyong Park1833cef2019-12-13 13:28:36 +0900806func apexFileForNativeLibrary(ctx android.BaseModuleContext, ccMod *cc.Module, handleSpecialLibs bool) apexFile {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900807 // Decide the APEX-local directory by the multilib of the library
808 // In the future, we may query this to the module.
Jiyong Parkf653b052019-11-18 15:39:01 +0900809 var dirInApex string
Martin Stjernholm279de572019-09-10 23:18:20 +0100810 switch ccMod.Arch().ArchType.Multilib {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900811 case "lib32":
812 dirInApex = "lib"
813 case "lib64":
814 dirInApex = "lib64"
815 }
Martin Stjernholm279de572019-09-10 23:18:20 +0100816 dirInApex = filepath.Join(dirInApex, ccMod.RelativeInstallPath())
Colin Cross3b19f5d2019-09-17 14:45:31 -0700817 if ccMod.Target().NativeBridge == android.NativeBridgeEnabled {
Martin Stjernholm279de572019-09-10 23:18:20 +0100818 dirInApex = filepath.Join(dirInApex, ccMod.Target().NativeBridgeRelativePath)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900819 }
Jiyong Park1833cef2019-12-13 13:28:36 +0900820 if handleSpecialLibs && cc.InstallToBootstrap(ccMod.BaseModuleName(), ctx.Config()) {
Martin Stjernholm279de572019-09-10 23:18:20 +0100821 // Special case for Bionic libs and other libs installed with them. This is
822 // to prevent those libs from being included in the search path
823 // /apex/com.android.runtime/${LIB}. This exclusion is required because
824 // those libs in the Runtime APEX are available via the legacy paths in
825 // /system/lib/. By the init process, the libs in the APEX are bind-mounted
826 // to the legacy paths and thus will be loaded into the default linker
827 // namespace (aka "platform" namespace). If the libs are directly in
828 // /apex/com.android.runtime/${LIB} then the same libs will be loaded again
829 // into the runtime linker namespace, which will result in double loading of
830 // them, which isn't supported.
831 dirInApex = filepath.Join(dirInApex, "bionic")
Jiyong Parkb0788572018-12-20 22:10:17 +0900832 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900833
Jiyong Parkf653b052019-11-18 15:39:01 +0900834 fileToCopy := ccMod.OutputFile().Path()
Jiyong Park1833cef2019-12-13 13:28:36 +0900835 return newApexFile(ctx, fileToCopy, ccMod.Name(), dirInApex, nativeSharedLib, ccMod)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900836}
837
Jiyong Park1833cef2019-12-13 13:28:36 +0900838func apexFileForExecutable(ctx android.BaseModuleContext, cc *cc.Module) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900839 dirInApex := filepath.Join("bin", cc.RelativeInstallPath())
Colin Cross3b19f5d2019-09-17 14:45:31 -0700840 if cc.Target().NativeBridge == android.NativeBridgeEnabled {
dimitry8d6dde82019-07-11 10:23:53 +0200841 dirInApex = filepath.Join(dirInApex, cc.Target().NativeBridgeRelativePath)
Jiyong Parkacbf6c72019-07-09 16:19:16 +0900842 }
Jiyong Parkf653b052019-11-18 15:39:01 +0900843 fileToCopy := cc.OutputFile().Path()
Jiyong Park1833cef2019-12-13 13:28:36 +0900844 af := newApexFile(ctx, fileToCopy, cc.Name(), dirInApex, nativeExecutable, cc)
Jiyong Parkf653b052019-11-18 15:39:01 +0900845 af.symlinks = cc.Symlinks()
846 return af
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900847}
848
Jiyong Park1833cef2019-12-13 13:28:36 +0900849func apexFileForPyBinary(ctx android.BaseModuleContext, py *python.Module) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900850 dirInApex := "bin"
851 fileToCopy := py.HostToolPath().Path()
Jiyong Park1833cef2019-12-13 13:28:36 +0900852 return newApexFile(ctx, fileToCopy, py.Name(), dirInApex, pyBinary, py)
Alex Light778127a2019-02-27 14:19:50 -0800853}
Jiyong Park1833cef2019-12-13 13:28:36 +0900854func apexFileForGoBinary(ctx android.BaseModuleContext, depName string, gb bootstrap.GoBinaryTool) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900855 dirInApex := "bin"
Alex Light778127a2019-02-27 14:19:50 -0800856 s, err := filepath.Rel(android.PathForOutput(ctx).String(), gb.InstallPath())
857 if err != nil {
858 ctx.ModuleErrorf("Unable to use compiled binary at %s", gb.InstallPath())
Jiyong Parkf653b052019-11-18 15:39:01 +0900859 return apexFile{}
Alex Light778127a2019-02-27 14:19:50 -0800860 }
Jiyong Parkf653b052019-11-18 15:39:01 +0900861 fileToCopy := android.PathForOutput(ctx, s)
862 // NB: Since go binaries are static we don't need the module for anything here, which is
863 // good since the go tool is a blueprint.Module not an android.Module like we would
864 // normally use.
Jiyong Park1833cef2019-12-13 13:28:36 +0900865 return newApexFile(ctx, fileToCopy, depName, dirInApex, goBinary, nil)
Alex Light778127a2019-02-27 14:19:50 -0800866}
867
Jiyong Park1833cef2019-12-13 13:28:36 +0900868func apexFileForShBinary(ctx android.BaseModuleContext, sh *android.ShBinary) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900869 dirInApex := filepath.Join("bin", sh.SubDir())
870 fileToCopy := sh.OutputFile()
Jiyong Park1833cef2019-12-13 13:28:36 +0900871 af := newApexFile(ctx, fileToCopy, sh.Name(), dirInApex, shBinary, sh)
Jiyong Parkf653b052019-11-18 15:39:01 +0900872 af.symlinks = sh.Symlinks()
873 return af
Jiyong Park04480cf2019-02-06 00:16:29 +0900874}
875
Jooyung Han58f26ab2019-12-18 15:34:32 +0900876// TODO(b/146586360): replace javaLibrary(in apex/apex.go) with java.Dependency
877type javaLibrary interface {
878 android.Module
879 java.Dependency
880}
881
882func apexFileForJavaLibrary(ctx android.BaseModuleContext, lib javaLibrary) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900883 dirInApex := "javalib"
Jooyung Han58f26ab2019-12-18 15:34:32 +0900884 fileToCopy := lib.DexJar()
885 return newApexFile(ctx, fileToCopy, lib.Name(), dirInApex, javaSharedLib, lib)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900886}
887
Jiyong Park1833cef2019-12-13 13:28:36 +0900888func apexFileForPrebuiltEtc(ctx android.BaseModuleContext, prebuilt android.PrebuiltEtcModule, depName string) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900889 dirInApex := filepath.Join("etc", prebuilt.SubDir())
890 fileToCopy := prebuilt.OutputFile()
Jiyong Park1833cef2019-12-13 13:28:36 +0900891 return newApexFile(ctx, fileToCopy, depName, dirInApex, etc, prebuilt)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900892}
893
Jiyong Park1833cef2019-12-13 13:28:36 +0900894func apexFileForAndroidApp(ctx android.BaseModuleContext, aapp interface {
Jiyong Parkf653b052019-11-18 15:39:01 +0900895 android.Module
896 Privileged() bool
897 OutputFile() android.Path
898}, pkgName string) apexFile {
Jiyong Parkf7487312019-10-17 12:54:30 +0900899 appDir := "app"
Jiyong Parkf653b052019-11-18 15:39:01 +0900900 if aapp.Privileged() {
Jiyong Parkf7487312019-10-17 12:54:30 +0900901 appDir = "priv-app"
902 }
Jiyong Parkf653b052019-11-18 15:39:01 +0900903 dirInApex := filepath.Join(appDir, pkgName)
904 fileToCopy := aapp.OutputFile()
Jiyong Park1833cef2019-12-13 13:28:36 +0900905 return newApexFile(ctx, fileToCopy, aapp.Name(), dirInApex, app, aapp)
Dario Frenicde2a032019-10-27 00:29:22 +0100906}
907
Roland Levillain935639d2019-08-13 14:55:28 +0100908// Context "decorator", overriding the InstallBypassMake method to always reply `true`.
909type flattenedApexContext struct {
910 android.ModuleContext
911}
912
913func (c *flattenedApexContext) InstallBypassMake() bool {
914 return true
915}
916
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900917func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Sundong Ahnabb64432019-10-22 13:58:29 +0900918 buildFlattenedAsDefault := ctx.Config().FlattenApex() && !ctx.Config().UnbundledBuild()
919 switch a.properties.ApexType {
920 case imageApex:
921 if buildFlattenedAsDefault {
922 a.suffix = imageApexSuffix
923 } else {
924 a.suffix = ""
925 a.primaryApexType = true
Jooyung Han3ab2c3e2019-12-05 16:27:44 +0900926
927 if ctx.Config().InstallExtraFlattenedApexes() {
928 a.externalDeps = append(a.externalDeps, a.Name()+flattenedSuffix)
929 }
Sundong Ahnabb64432019-10-22 13:58:29 +0900930 }
931 case zipApex:
932 if proptools.String(a.properties.Payload_type) == "zip" {
933 a.suffix = ""
934 a.primaryApexType = true
935 } else {
936 a.suffix = zipApexSuffix
937 }
938 case flattenedApex:
939 if buildFlattenedAsDefault {
940 a.suffix = ""
941 a.primaryApexType = true
942 } else {
943 a.suffix = flattenedSuffix
944 }
Alex Light5098a612018-11-29 17:12:15 -0800945 }
946
Roland Levillain630846d2019-06-26 12:48:34 +0100947 if len(a.properties.Tests) > 0 && !a.testApex {
948 ctx.PropertyErrorf("tests", "property not allowed in apex module type")
949 return
950 }
951
Alex Lightfc0bd7c2019-01-29 18:31:59 -0800952 handleSpecialLibs := !android.Bool(a.properties.Ignore_system_library_special_case)
953
Jooyung Hane1633032019-08-01 17:41:43 +0900954 // native lib dependencies
955 var provideNativeLibs []string
956 var requireNativeLibs []string
957
Jooyung Han5c998b92019-06-27 11:30:33 +0900958 // Check if "uses" requirements are met with dependent apexBundles
959 var providedNativeSharedLibs []string
960 useVendor := proptools.Bool(a.properties.Use_vendor)
961 ctx.VisitDirectDepsBlueprint(func(m blueprint.Module) {
962 if ctx.OtherModuleDependencyTag(m) != usesTag {
963 return
964 }
965 otherName := ctx.OtherModuleName(m)
966 other, ok := m.(*apexBundle)
967 if !ok {
968 ctx.PropertyErrorf("uses", "%q is not a provider", otherName)
969 return
970 }
971 if proptools.Bool(other.properties.Use_vendor) != useVendor {
972 ctx.PropertyErrorf("use_vendor", "%q has different value of use_vendor", otherName)
973 return
974 }
975 if !proptools.Bool(other.properties.Provide_cpp_shared_libs) {
976 ctx.PropertyErrorf("uses", "%q does not provide native_shared_libs", otherName)
977 return
978 }
979 providedNativeSharedLibs = append(providedNativeSharedLibs, other.properties.Native_shared_libs...)
980 })
981
Jiyong Parkf653b052019-11-18 15:39:01 +0900982 var filesInfo []apexFile
Alex Light778127a2019-02-27 14:19:50 -0800983 ctx.WalkDepsBlueprint(func(child, parent blueprint.Module) bool {
Roland Levillainf89cd092019-07-29 16:22:59 +0100984 depTag := ctx.OtherModuleDependencyTag(child)
985 depName := ctx.OtherModuleName(child)
Jiyong Parkf653b052019-11-18 15:39:01 +0900986 if _, isDirectDep := parent.(*apexBundle); isDirectDep {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900987 switch depTag {
988 case sharedLibTag:
989 if cc, ok := child.(*cc.Module); ok {
Jooyung Hane1633032019-08-01 17:41:43 +0900990 if cc.HasStubsVariants() {
991 provideNativeLibs = append(provideNativeLibs, cc.OutputFile().Path().Base())
992 }
Jiyong Park1833cef2019-12-13 13:28:36 +0900993 filesInfo = append(filesInfo, apexFileForNativeLibrary(ctx, cc, handleSpecialLibs))
Jiyong Parkf653b052019-11-18 15:39:01 +0900994 return true // track transitive dependencies
Jiyong Parkff1458f2018-10-12 21:49:38 +0900995 } else {
996 ctx.PropertyErrorf("native_shared_libs", "%q is not a cc_library or cc_library_shared module", depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900997 }
998 case executableTag:
999 if cc, ok := child.(*cc.Module); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001000 filesInfo = append(filesInfo, apexFileForExecutable(ctx, cc))
Jiyong Parkf653b052019-11-18 15:39:01 +09001001 return true // track transitive dependencies
Jiyong Park04480cf2019-02-06 00:16:29 +09001002 } else if sh, ok := child.(*android.ShBinary); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001003 filesInfo = append(filesInfo, apexFileForShBinary(ctx, sh))
Alex Light778127a2019-02-27 14:19:50 -08001004 } else if py, ok := child.(*python.Module); ok && py.HostToolPath().Valid() {
Jiyong Park1833cef2019-12-13 13:28:36 +09001005 filesInfo = append(filesInfo, apexFileForPyBinary(ctx, py))
Alex Light778127a2019-02-27 14:19:50 -08001006 } else if gb, ok := child.(bootstrap.GoBinaryTool); ok && a.Host() {
Jiyong Parkf653b052019-11-18 15:39:01 +09001007 filesInfo = append(filesInfo, apexFileForGoBinary(ctx, depName, gb))
Jiyong Parkff1458f2018-10-12 21:49:38 +09001008 } else {
Alex Light778127a2019-02-27 14:19:50 -08001009 ctx.PropertyErrorf("binaries", "%q is neither cc_binary, (embedded) py_binary, (host) blueprint_go_binary, (host) bootstrap_go_binary, nor sh_binary", depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001010 }
1011 case javaLibTag:
Jiyong Park9e6c2422019-08-09 20:39:45 +09001012 if javaLib, ok := child.(*java.Library); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001013 af := apexFileForJavaLibrary(ctx, javaLib)
Jiyong Parkf653b052019-11-18 15:39:01 +09001014 if !af.Ok() {
Jiyong Park8fd61922018-11-08 02:50:25 +09001015 ctx.PropertyErrorf("java_libs", "%q is not configured to be compiled into dex", depName)
1016 } else {
Jiyong Parkf653b052019-11-18 15:39:01 +09001017 filesInfo = append(filesInfo, af)
1018 return true // track transitive dependencies
Jiyong Park9e6c2422019-08-09 20:39:45 +09001019 }
Jooyung Han58f26ab2019-12-18 15:34:32 +09001020 } else if sdkLib, ok := child.(*java.SdkLibrary); ok {
1021 af := apexFileForJavaLibrary(ctx, sdkLib)
1022 if !af.Ok() {
1023 ctx.PropertyErrorf("java_libs", "%q is not configured to be compiled into dex", depName)
1024 return false
1025 }
1026 filesInfo = append(filesInfo, af)
1027
1028 pf := sdkLib.PermissionFile()
1029 if pf == nil {
1030 ctx.PropertyErrorf("java_libs", "%q failed to generate permission XML", depName)
1031 return false
1032 }
1033 filesInfo = append(filesInfo, newApexFile(ctx, pf, pf.Base(), "etc/permissions", etc, nil))
1034 return true // track transitive dependencies
Jiyong Parkff1458f2018-10-12 21:49:38 +09001035 } else {
Jiyong Park9e6c2422019-08-09 20:39:45 +09001036 ctx.PropertyErrorf("java_libs", "%q of type %q is not supported", depName, ctx.OtherModuleType(child))
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001037 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001038 case androidAppTag:
1039 pkgName := ctx.DeviceConfig().OverridePackageNameFor(depName)
1040 if ap, ok := child.(*java.AndroidApp); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001041 filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap, pkgName))
Jiyong Parkf653b052019-11-18 15:39:01 +09001042 return true // track transitive dependencies
1043 } else if ap, ok := child.(*java.AndroidAppImport); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001044 filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap, pkgName))
Dario Freni6f3937c2019-12-20 22:58:03 +00001045 } else if ap, ok := child.(*java.AndroidTestHelperApp); ok {
1046 filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap, pkgName))
Jiyong Parkf653b052019-11-18 15:39:01 +09001047 } else {
1048 ctx.PropertyErrorf("apps", "%q is not an android_app module", depName)
1049 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001050 case prebuiltTag:
Jooyung Han39edb6c2019-11-06 16:53:07 +09001051 if prebuilt, ok := child.(android.PrebuiltEtcModule); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001052 filesInfo = append(filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, depName))
Jiyong Parkff1458f2018-10-12 21:49:38 +09001053 } else {
1054 ctx.PropertyErrorf("prebuilts", "%q is not a prebuilt_etc module", depName)
1055 }
Roland Levillain630846d2019-06-26 12:48:34 +01001056 case testTag:
Roland Levillainf89cd092019-07-29 16:22:59 +01001057 if ccTest, ok := child.(*cc.Module); ok {
1058 if ccTest.IsTestPerSrcAllTestsVariation() {
1059 // Multiple-output test module (where `test_per_src: true`).
1060 //
1061 // `ccTest` is the "" ("all tests") variation of a `test_per_src` module.
1062 // We do not add this variation to `filesInfo`, as it has no output;
1063 // however, we do add the other variations of this module as indirect
1064 // dependencies (see below).
1065 return true
Roland Levillain9b5fde92019-06-28 15:41:19 +01001066 } else {
Roland Levillainf89cd092019-07-29 16:22:59 +01001067 // Single-output test module (where `test_per_src: false`).
Jiyong Park1833cef2019-12-13 13:28:36 +09001068 af := apexFileForExecutable(ctx, ccTest)
Jiyong Parkf653b052019-11-18 15:39:01 +09001069 af.class = nativeTest
1070 filesInfo = append(filesInfo, af)
Roland Levillain9b5fde92019-06-28 15:41:19 +01001071 }
Roland Levillain630846d2019-06-26 12:48:34 +01001072 } else {
1073 ctx.PropertyErrorf("tests", "%q is not a cc module", depName)
1074 }
Jiyong Parkff1458f2018-10-12 21:49:38 +09001075 case keyTag:
1076 if key, ok := child.(*apexKey); ok {
Jiyong Park0ca3ce82019-02-18 15:25:04 +09001077 a.private_key_file = key.private_key_file
1078 a.public_key_file = key.public_key_file
Jiyong Parkff1458f2018-10-12 21:49:38 +09001079 } else {
1080 ctx.PropertyErrorf("key", "%q is not an apex_key module", depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001081 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001082 return false
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001083 case certificateTag:
1084 if dep, ok := child.(*java.AndroidAppCertificate); ok {
Jiyong Park0ca3ce82019-02-18 15:25:04 +09001085 a.container_certificate_file = dep.Certificate.Pem
1086 a.container_private_key_file = dep.Certificate.Key
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001087 } else {
1088 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", depName)
1089 }
Jiyong Park03b68dd2019-07-26 23:20:40 +09001090 case android.PrebuiltDepTag:
1091 // If the prebuilt is force disabled, remember to delete the prebuilt file
1092 // that might have been installed in the previous builds
1093 if prebuilt, ok := child.(*Prebuilt); ok && prebuilt.isForceDisabled() {
1094 a.prebuiltFileToDelete = prebuilt.InstallFilename()
1095 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001096 }
Jooyung Han8aee2042019-10-29 05:08:31 +09001097 } else if !a.vndkApex {
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001098 // indirect dependencies
Jooyung Han9c80bae2019-08-20 17:30:57 +09001099 if am, ok := child.(android.ApexModule); ok {
Roland Levillainf89cd092019-07-29 16:22:59 +01001100 // We cannot use a switch statement on `depTag` here as the checked
1101 // tags used below are private (e.g. `cc.sharedDepTag`).
Jiyong Park52cd06f2019-11-11 10:14:32 +09001102 if cc.IsSharedDepTag(depTag) || cc.IsRuntimeDepTag(depTag) {
Roland Levillainf89cd092019-07-29 16:22:59 +01001103 if cc, ok := child.(*cc.Module); ok {
1104 if android.InList(cc.Name(), providedNativeSharedLibs) {
1105 // If we're using a shared library which is provided from other APEX,
1106 // don't include it in this APEX
1107 return false
Jiyong Parkac2bacd2019-02-20 21:49:26 +09001108 }
Jooyung Han671f1ce2019-12-17 12:47:13 +09001109 if !a.Host() && !android.DirectlyInApex(ctx.ModuleName(), ctx.OtherModuleName(cc)) && (cc.IsStubs() || cc.HasStubsVariants()) {
Roland Levillainf89cd092019-07-29 16:22:59 +01001110 // If the dependency is a stubs lib, don't include it in this APEX,
1111 // but make sure that the lib is installed on the device.
1112 // In case no APEX is having the lib, the lib is installed to the system
1113 // partition.
1114 //
1115 // Always include if we are a host-apex however since those won't have any
1116 // system libraries.
1117 if !android.DirectlyInAnyApex(ctx, cc.Name()) && !android.InList(cc.Name(), a.externalDeps) {
1118 a.externalDeps = append(a.externalDeps, cc.Name())
1119 }
Jooyung Hane1633032019-08-01 17:41:43 +09001120 requireNativeLibs = append(requireNativeLibs, cc.OutputFile().Path().Base())
Roland Levillainf89cd092019-07-29 16:22:59 +01001121 // Don't track further
1122 return false
1123 }
Jiyong Park1833cef2019-12-13 13:28:36 +09001124 af := apexFileForNativeLibrary(ctx, cc, handleSpecialLibs)
Jiyong Parkf653b052019-11-18 15:39:01 +09001125 af.transitiveDep = true
1126 filesInfo = append(filesInfo, af)
1127 return true // track transitive dependencies
Jiyong Park25fc6a92018-11-18 18:02:45 +09001128 }
Roland Levillainf89cd092019-07-29 16:22:59 +01001129 } else if cc.IsTestPerSrcDepTag(depTag) {
1130 if cc, ok := child.(*cc.Module); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001131 af := apexFileForExecutable(ctx, cc)
Roland Levillainf89cd092019-07-29 16:22:59 +01001132 // Handle modules created as `test_per_src` variations of a single test module:
1133 // use the name of the generated test binary (`fileToCopy`) instead of the name
1134 // of the original test module (`depName`, shared by all `test_per_src`
1135 // variations of that module).
Jiyong Parkf653b052019-11-18 15:39:01 +09001136 af.moduleName = filepath.Base(af.builtFile.String())
1137 af.transitiveDep = true
1138 filesInfo = append(filesInfo, af)
1139 return true // track transitive dependencies
Roland Levillainf89cd092019-07-29 16:22:59 +01001140 }
Jiyong Park52cd06f2019-11-11 10:14:32 +09001141 } else if java.IsJniDepTag(depTag) {
1142 // Do nothing for JNI dep. JNI libraries are always embedded in APK-in-APEX.
Jiyong Parkf653b052019-11-18 15:39:01 +09001143 return true
Jooyung Han9c80bae2019-08-20 17:30:57 +09001144 } else if am.CanHaveApexVariants() && am.IsInstallableToApex() {
Roland Levillainf89cd092019-07-29 16:22:59 +01001145 ctx.ModuleErrorf("unexpected tag %q for indirect dependency %q", depTag, depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001146 }
1147 }
1148 }
1149 return false
1150 })
1151
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001152 // Specific to the ART apex: dexpreopt artifacts for libcore Java libraries.
1153 // Build rules are generated by the dexpreopt singleton, and here we access build artifacts
1154 // via the global boot image config.
1155 if a.artApex {
1156 for arch, files := range java.DexpreoptedArtApexJars(ctx) {
1157 dirInApex := filepath.Join("javalib", arch.String())
1158 for _, f := range files {
1159 localModule := "javalib_" + arch.String() + "_" + filepath.Base(f.String())
Jiyong Park1833cef2019-12-13 13:28:36 +09001160 af := newApexFile(ctx, f, localModule, dirInApex, etc, nil)
Jiyong Parkf653b052019-11-18 15:39:01 +09001161 filesInfo = append(filesInfo, af)
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001162 }
1163 }
1164 }
1165
Jiyong Park0ca3ce82019-02-18 15:25:04 +09001166 if a.private_key_file == nil {
Jiyong Parkfa0a3732018-11-09 05:52:26 +09001167 ctx.PropertyErrorf("key", "private_key for %q could not be found", String(a.properties.Key))
1168 return
1169 }
1170
Jiyong Park8fd61922018-11-08 02:50:25 +09001171 // remove duplicates in filesInfo
1172 removeDup := func(filesInfo []apexFile) []apexFile {
Jooyung Han344d5432019-08-23 11:17:39 +09001173 encountered := make(map[string]bool)
Jiyong Park8fd61922018-11-08 02:50:25 +09001174 result := []apexFile{}
1175 for _, f := range filesInfo {
Jooyung Han344d5432019-08-23 11:17:39 +09001176 dest := filepath.Join(f.installDir, f.builtFile.Base())
1177 if !encountered[dest] {
1178 encountered[dest] = true
Jiyong Park8fd61922018-11-08 02:50:25 +09001179 result = append(result, f)
1180 }
1181 }
1182 return result
1183 }
1184 filesInfo = removeDup(filesInfo)
1185
1186 // to have consistent build rules
1187 sort.Slice(filesInfo, func(i, j int) bool {
1188 return filesInfo[i].builtFile.String() < filesInfo[j].builtFile.String()
1189 })
1190
Jiyong Park127b40b2019-09-30 16:04:35 +09001191 // check apex_available requirements
Jiyong Park3814f4d2019-12-02 13:08:53 +09001192 if !ctx.Host() && !a.testApex {
Jiyong Park583a2262019-10-08 20:55:38 +09001193 for _, fi := range filesInfo {
1194 if am, ok := fi.module.(android.ApexModule); ok {
1195 if !am.AvailableFor(ctx.ModuleName()) {
1196 ctx.ModuleErrorf("requires %q that is not available for the APEX", fi.module.Name())
Jiyong Park3814f4d2019-12-02 13:08:53 +09001197 // don't stop so that we can report other violations in the same run
Jiyong Park583a2262019-10-08 20:55:38 +09001198 }
Jiyong Park127b40b2019-09-30 16:04:35 +09001199 }
1200 }
1201 }
1202
Jiyong Park8fd61922018-11-08 02:50:25 +09001203 // prepend the name of this APEX to the module names. These names will be the names of
1204 // modules that will be defined if the APEX is flattened.
1205 for i := range filesInfo {
Jaewoong Jung1670ca02019-11-22 14:50:42 -08001206 filesInfo[i].moduleName = filesInfo[i].moduleName + "." + a.Name() + a.suffix
Jiyong Park8fd61922018-11-08 02:50:25 +09001207 }
1208
Jiyong Park8fd61922018-11-08 02:50:25 +09001209 a.installDir = android.PathForModuleInstall(ctx, "apex")
1210 a.filesInfo = filesInfo
Alex Light5098a612018-11-29 17:12:15 -08001211
Jooyung Han54aca7b2019-11-20 02:26:02 +09001212 if a.properties.ApexType != zipApex {
1213 if a.properties.File_contexts == nil {
1214 a.fileContexts = android.PathForSource(ctx, "system/sepolicy/apex", ctx.ModuleName()+"-file_contexts")
1215 } else {
1216 a.fileContexts = android.PathForModuleSrc(ctx, *a.properties.File_contexts)
1217 if a.Platform() {
1218 if matched, err := path.Match("system/sepolicy/**/*", a.fileContexts.String()); err != nil || !matched {
1219 ctx.PropertyErrorf("file_contexts", "should be under system/sepolicy, but %q", a.fileContexts)
1220 }
1221 }
1222 }
1223 if !android.ExistentPathForSource(ctx, a.fileContexts.String()).Valid() {
1224 ctx.PropertyErrorf("file_contexts", "cannot find file_contexts file: %q", a.fileContexts)
1225 return
1226 }
1227 }
1228
Jooyung Hand15aa1f2019-09-27 00:38:03 +09001229 // prepare apex_manifest.json
Jooyung Han01a3ee22019-11-02 02:52:25 +09001230 a.buildManifest(ctx, provideNativeLibs, requireNativeLibs)
1231
1232 a.setCertificateAndPrivateKey(ctx)
1233 if a.properties.ApexType == flattenedApex {
1234 a.buildFlattenedApex(ctx)
1235 } else {
1236 a.buildUnflattenedApex(ctx)
1237 }
1238
Jaewoong Jung1670ca02019-11-22 14:50:42 -08001239 apexName := proptools.StringDefault(a.properties.Apex_name, a.Name())
Jooyung Han01a3ee22019-11-02 02:52:25 +09001240 a.compatSymlinks = makeCompatSymlinks(apexName, ctx)
1241}
1242
Jooyung Han344d5432019-08-23 11:17:39 +09001243func newApexBundle() *apexBundle {
Sundong Ahnabb64432019-10-22 13:58:29 +09001244 module := &apexBundle{}
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001245 module.AddProperties(&module.properties)
Alex Light9670d332019-01-29 18:07:33 -08001246 module.AddProperties(&module.targetProperties)
Jiyong Park5d790c32019-11-15 18:40:32 +09001247 module.AddProperties(&module.overridableProperties)
Alex Light5098a612018-11-29 17:12:15 -08001248 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
Jiyong Park397e55e2018-10-24 21:09:55 +09001249 return class == android.Device && ctx.Config().DevicePrefer32BitExecutables()
1250 })
Alex Light5098a612018-11-29 17:12:15 -08001251 android.InitAndroidMultiTargetsArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001252 android.InitDefaultableModule(module)
Jiyong Parkd1063c12019-07-17 20:08:41 +09001253 android.InitSdkAwareModule(module)
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -08001254 android.InitOverridableModule(module, &module.overridableProperties.Overrides)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001255 return module
1256}
Jiyong Park30ca9372019-02-07 16:27:23 +09001257
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001258func ApexBundleFactory(testApex bool, artApex bool) android.Module {
Jooyung Han344d5432019-08-23 11:17:39 +09001259 bundle := newApexBundle()
1260 bundle.testApex = testApex
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001261 bundle.artApex = artApex
Jooyung Han344d5432019-08-23 11:17:39 +09001262 return bundle
1263}
1264
1265func testApexBundleFactory() android.Module {
1266 bundle := newApexBundle()
1267 bundle.testApex = true
1268 return bundle
1269}
1270
Jiyong Parkd1063c12019-07-17 20:08:41 +09001271func BundleFactory() android.Module {
Jooyung Han344d5432019-08-23 11:17:39 +09001272 return newApexBundle()
1273}
1274
Jiyong Park30ca9372019-02-07 16:27:23 +09001275//
1276// Defaults
1277//
1278type Defaults struct {
1279 android.ModuleBase
1280 android.DefaultsModuleBase
1281}
1282
Jiyong Park30ca9372019-02-07 16:27:23 +09001283func defaultsFactory() android.Module {
1284 return DefaultsFactory()
1285}
1286
1287func DefaultsFactory(props ...interface{}) android.Module {
1288 module := &Defaults{}
1289
1290 module.AddProperties(props...)
1291 module.AddProperties(
1292 &apexBundleProperties{},
1293 &apexTargetBundleProperties{},
Jooyung Hanf21c7972019-12-16 22:32:06 +09001294 &overridableProperties{},
Jiyong Park30ca9372019-02-07 16:27:23 +09001295 )
1296
1297 android.InitDefaultsModule(module)
1298 return module
1299}
Jiyong Park5d790c32019-11-15 18:40:32 +09001300
1301//
1302// OverrideApex
1303//
1304type OverrideApex struct {
1305 android.ModuleBase
1306 android.OverrideModuleBase
1307}
1308
1309func (o *OverrideApex) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1310 // All the overrides happen in the base module.
1311}
1312
1313// override_apex is used to create an apex module based on another apex module
1314// by overriding some of its properties.
1315func overrideApexFactory() android.Module {
1316 m := &OverrideApex{}
1317 m.AddProperties(&overridableProperties{})
1318
1319 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1320 android.InitOverrideModule(m)
1321 return m
1322}