blob: 8340aac73ab2c8adbf480354c40ef6838711e1b7 [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 Park48ca7dc2018-10-10 14:01:00 +0900108 if am, ok := child.(android.ApexModule); ok && am.CanHaveApexVariants() {
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900109 am.BuildForApex(apexBundleName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900110 return true
111 } else {
112 return false
113 }
114 })
115 }
116}
117
118// Create apex variations if a module is included in APEX(s).
119func apexMutator(mctx android.BottomUpMutatorContext) {
120 if am, ok := mctx.Module().(android.ApexModule); ok && am.CanHaveApexVariants() {
Jiyong Park0ddfcd12018-12-11 01:35:25 +0900121 am.CreateApexVariations(mctx)
Jooyung Han54aca7b2019-11-20 02:26:02 +0900122 } else if _, ok := mctx.Module().(*apexBundle); ok {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900123 // apex bundle itself is mutated so that it and its modules have same
124 // apex variant.
125 apexBundleName := mctx.ModuleName()
126 mctx.CreateVariations(apexBundleName)
Jiyong Park5d790c32019-11-15 18:40:32 +0900127 } else if o, ok := mctx.Module().(*OverrideApex); ok {
128 apexBundleName := o.GetOverriddenModuleName()
129 if apexBundleName == "" {
130 mctx.ModuleErrorf("base property is not set")
131 return
132 }
133 mctx.CreateVariations(apexBundleName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900134 }
Jiyong Park5d790c32019-11-15 18:40:32 +0900135
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900136}
Sundong Ahne9b55722019-09-06 17:37:42 +0900137
Jooyung Han7a78a922019-10-08 21:59:58 +0900138var (
139 apexFileContextsInfosKey = android.NewOnceKey("apexFileContextsInfosKey")
140 apexFileContextsInfosMutex sync.Mutex
141)
142
143func apexFileContextsInfos(config android.Config) *[]string {
144 return config.Once(apexFileContextsInfosKey, func() interface{} {
145 return &[]string{}
146 }).(*[]string)
147}
148
Jooyung Han54aca7b2019-11-20 02:26:02 +0900149func addFlattenedFileContextsInfos(ctx android.BaseModuleContext, fileContextsInfo string) {
Jooyung Han7a78a922019-10-08 21:59:58 +0900150 apexFileContextsInfosMutex.Lock()
151 defer apexFileContextsInfosMutex.Unlock()
152 apexFileContextsInfos := apexFileContextsInfos(ctx.Config())
Jooyung Han54aca7b2019-11-20 02:26:02 +0900153 *apexFileContextsInfos = append(*apexFileContextsInfos, fileContextsInfo)
Jooyung Han7a78a922019-10-08 21:59:58 +0900154}
155
Sundong Ahne9b55722019-09-06 17:37:42 +0900156func apexFlattenedMutator(mctx android.BottomUpMutatorContext) {
Sundong Ahne8fb7242019-09-17 13:50:45 +0900157 if ab, ok := mctx.Module().(*apexBundle); ok {
Sundong Ahnabb64432019-10-22 13:58:29 +0900158 var variants []string
159 switch proptools.StringDefault(ab.properties.Payload_type, "image") {
160 case "image":
161 variants = append(variants, imageApexType, flattenedApexType)
162 case "zip":
163 variants = append(variants, zipApexType)
164 case "both":
165 variants = append(variants, imageApexType, zipApexType, flattenedApexType)
166 default:
Sundong Ahnd95aa2d2019-10-08 19:34:03 +0900167 mctx.PropertyErrorf("type", "%q is not one of \"image\", \"zip\", or \"both\".", *ab.properties.Payload_type)
Sundong Ahnabb64432019-10-22 13:58:29 +0900168 return
169 }
170
171 modules := mctx.CreateLocalVariations(variants...)
172
173 for i, v := range variants {
174 switch v {
175 case imageApexType:
176 modules[i].(*apexBundle).properties.ApexType = imageApex
177 case zipApexType:
178 modules[i].(*apexBundle).properties.ApexType = zipApex
179 case flattenedApexType:
180 modules[i].(*apexBundle).properties.ApexType = flattenedApex
Jooyung Han91df2082019-11-20 01:49:42 +0900181 if !mctx.Config().FlattenApex() && ab.Platform() {
Sundong Ahnd95aa2d2019-10-08 19:34:03 +0900182 modules[i].(*apexBundle).MakeAsSystemExt()
183 }
Sundong Ahnabb64432019-10-22 13:58:29 +0900184 }
Sundong Ahne9b55722019-09-06 17:37:42 +0900185 }
Jiyong Park5d790c32019-11-15 18:40:32 +0900186 } else if _, ok := mctx.Module().(*OverrideApex); ok {
187 mctx.CreateVariations(imageApexType, flattenedApexType)
Sundong Ahne9b55722019-09-06 17:37:42 +0900188 }
189}
190
Jooyung Han5c998b92019-06-27 11:30:33 +0900191func apexUsesMutator(mctx android.BottomUpMutatorContext) {
192 if ab, ok := mctx.Module().(*apexBundle); ok {
193 mctx.AddFarVariationDependencies(nil, usesTag, ab.properties.Uses...)
194 }
195}
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900196
Jooyung Handc782442019-11-01 03:14:38 +0900197var (
198 useVendorWhitelistKey = android.NewOnceKey("useVendorWhitelist")
199)
200
201// useVendorWhitelist returns the list of APEXes which are allowed to use_vendor.
202// When use_vendor is used, native modules are built with __ANDROID_VNDK__ and __ANDROID_APEX__,
203// which may cause compatibility issues. (e.g. libbinder)
204// Even though libbinder restricts its availability via 'apex_available' property and relies on
205// yet another macro __ANDROID_APEX_<NAME>__, we restrict usage of "use_vendor:" from other APEX modules
206// to avoid similar problems.
207func useVendorWhitelist(config android.Config) []string {
208 return config.Once(useVendorWhitelistKey, func() interface{} {
209 return []string{
210 // swcodec uses "vendor" variants for smaller size
211 "com.android.media.swcodec",
212 "test_com.android.media.swcodec",
213 }
214 }).([]string)
215}
216
217// setUseVendorWhitelistForTest overrides useVendorWhitelist and must be
218// called before the first call to useVendorWhitelist()
219func setUseVendorWhitelistForTest(config android.Config, whitelist []string) {
220 config.Once(useVendorWhitelistKey, func() interface{} {
221 return whitelist
222 })
223}
224
Alex Light9670d332019-01-29 18:07:33 -0800225type apexNativeDependencies struct {
226 // List of native libraries
227 Native_shared_libs []string
Jooyung Han344d5432019-08-23 11:17:39 +0900228
Alex Light9670d332019-01-29 18:07:33 -0800229 // List of native executables
230 Binaries []string
Jooyung Han344d5432019-08-23 11:17:39 +0900231
Roland Levillain630846d2019-06-26 12:48:34 +0100232 // List of native tests
233 Tests []string
Alex Light9670d332019-01-29 18:07:33 -0800234}
Jooyung Han344d5432019-08-23 11:17:39 +0900235
Alex Light9670d332019-01-29 18:07:33 -0800236type apexMultilibProperties struct {
237 // Native dependencies whose compile_multilib is "first"
238 First apexNativeDependencies
239
240 // Native dependencies whose compile_multilib is "both"
241 Both apexNativeDependencies
242
243 // Native dependencies whose compile_multilib is "prefer32"
244 Prefer32 apexNativeDependencies
245
246 // Native dependencies whose compile_multilib is "32"
247 Lib32 apexNativeDependencies
248
249 // Native dependencies whose compile_multilib is "64"
250 Lib64 apexNativeDependencies
251}
252
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900253type apexBundleProperties struct {
254 // Json manifest file describing meta info of this APEX bundle. Default:
Dario Freni4abb1dc2018-11-20 18:04:58 +0000255 // "apex_manifest.json"
Colin Cross27b922f2019-03-04 22:35:41 -0800256 Manifest *string `android:"path"`
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900257
Jiyong Park40e26a22019-02-08 02:53:06 +0900258 // AndroidManifest.xml file used for the zip container of this APEX bundle.
259 // If unspecified, a default one is automatically generated.
Colin Cross27b922f2019-03-04 22:35:41 -0800260 AndroidManifest *string `android:"path"`
Jiyong Park40e26a22019-02-08 02:53:06 +0900261
Roland Levillain411c5842019-09-19 16:37:20 +0100262 // Canonical name of the APEX bundle. Used to determine the path to the activated APEX on
263 // device (/apex/<apex_name>).
264 // If unspecified, defaults to the value of name.
Jiyong Park05e70dd2019-03-18 14:26:32 +0900265 Apex_name *string
266
Jiyong Parkd0a65ba2018-11-10 06:37:15 +0900267 // Determines the file contexts file for setting security context to each file in this APEX bundle.
Jooyung Han54aca7b2019-11-20 02:26:02 +0900268 // For platform APEXes, this should points to a file under /system/sepolicy
269 // Default: /system/sepolicy/apex/<module_name>_file_contexts.
270 File_contexts *string `android:"path"`
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900271
272 // List of native shared libs that are embedded inside this APEX bundle
273 Native_shared_libs []string
274
Roland Levillain630846d2019-06-26 12:48:34 +0100275 // List of executables that are embedded inside this APEX bundle
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900276 Binaries []string
277
278 // List of java libraries that are embedded inside this APEX bundle
279 Java_libs []string
280
281 // List of prebuilt files that are embedded inside this APEX bundle
282 Prebuilts []string
Jiyong Parkff1458f2018-10-12 21:49:38 +0900283
Roland Levillain630846d2019-06-26 12:48:34 +0100284 // List of tests that are embedded inside this APEX bundle
285 Tests []string
286
Jiyong Parkff1458f2018-10-12 21:49:38 +0900287 // Name of the apex_key module that provides the private key to sign APEX
288 Key *string
Jiyong Park397e55e2018-10-24 21:09:55 +0900289
Alex Light5098a612018-11-29 17:12:15 -0800290 // The type of APEX to build. Controls what the APEX payload is. Either
291 // 'image', 'zip' or 'both'. Default: 'image'.
292 Payload_type *string
293
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900294 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
295 // or an android_app_certificate module name in the form ":module".
296 Certificate *string
297
Jiyong Park92c0f9c2018-12-13 23:14:57 +0900298 // Whether this APEX is installable to one of the partitions. Default: true.
299 Installable *bool
300
Jiyong Parkda6eb592018-12-19 17:12:36 +0900301 // For native libraries and binaries, use the vendor variant instead of the core (platform) variant.
302 // Default is false.
303 Use_vendor *bool
304
Alex Lightfc0bd7c2019-01-29 18:31:59 -0800305 // For telling the apex to ignore special handling for system libraries such as bionic. Default is false.
306 Ignore_system_library_special_case *bool
307
Alex Light9670d332019-01-29 18:07:33 -0800308 Multilib apexMultilibProperties
Jiyong Park235e67c2019-02-09 11:50:56 +0900309
Jiyong Parkf97782b2019-02-13 20:28:58 +0900310 // List of sanitizer names that this APEX is enabled for
311 SanitizerNames []string `blueprint:"mutated"`
Jooyung Han5c998b92019-06-27 11:30:33 +0900312
Jiyong Parkee9a98d2019-08-09 14:44:36 +0900313 PreventInstall bool `blueprint:"mutated"`
314
315 HideFromMake bool `blueprint:"mutated"`
316
Jooyung Han5c998b92019-06-27 11:30:33 +0900317 // Indicates this APEX provides C++ shared libaries to other APEXes. Default: false.
318 Provide_cpp_shared_libs *bool
319
320 // List of providing APEXes' names so that this APEX can depend on provided shared libraries.
321 Uses []string
Nikita Ioffe5d5ae762019-08-31 14:38:05 +0100322
323 // A txt file containing list of files that are whitelisted to be included in this APEX.
324 Whitelisted_files *string
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900325
Sundong Ahnabb64432019-10-22 13:58:29 +0900326 // package format of this apex variant; could be non-flattened, flattened, or zip.
327 // imageApex, zipApex or flattened
328 ApexType apexPackaging `blueprint:"mutated"`
Sundong Ahne8fb7242019-09-17 13:50:45 +0900329
Jiyong Parkd1063c12019-07-17 20:08:41 +0900330 // List of SDKs that are used to build this APEX. A reference to an SDK should be either
331 // `name#version` or `name` which is an alias for `name#current`. If left empty, `platform#current`
332 // is implied. This value affects all modules included in this APEX. In other words, they are
333 // also built with the SDKs specified here.
334 Uses_sdks []string
Jiyong Park5d790c32019-11-15 18:40:32 +0900335
Nikita Ioffec72b5dd2019-12-07 17:30:22 +0000336 // Whenever apex_payload.img of the APEX should include dm-verity hashtree.
337 // Should be only used in tests#.
338 Test_only_no_hashtree *bool
Jooyung Han214bf372019-11-12 13:03:50 +0900339
340 // Whether this APEX should support Android10. Default is false. If this is set true, then apex_manifest.json is bundled as well
341 // because Android10 requires legacy apex_manifest.json instead of apex_manifest.pb
342 Legacy_android10_support *bool
Alex Light9670d332019-01-29 18:07:33 -0800343}
344
345type apexTargetBundleProperties struct {
346 Target struct {
347 // Multilib properties only for android.
348 Android struct {
349 Multilib apexMultilibProperties
Jiyong Park397e55e2018-10-24 21:09:55 +0900350 }
Jooyung Han344d5432019-08-23 11:17:39 +0900351
Alex Light9670d332019-01-29 18:07:33 -0800352 // Multilib properties only for host.
353 Host struct {
354 Multilib apexMultilibProperties
Jiyong Park397e55e2018-10-24 21:09:55 +0900355 }
Jooyung Han344d5432019-08-23 11:17:39 +0900356
Alex Light9670d332019-01-29 18:07:33 -0800357 // Multilib properties only for host linux_bionic.
358 Linux_bionic struct {
359 Multilib apexMultilibProperties
Jiyong Park397e55e2018-10-24 21:09:55 +0900360 }
Jooyung Han344d5432019-08-23 11:17:39 +0900361
Alex Light9670d332019-01-29 18:07:33 -0800362 // Multilib properties only for host linux_glibc.
363 Linux_glibc struct {
364 Multilib apexMultilibProperties
Jiyong Park397e55e2018-10-24 21:09:55 +0900365 }
366 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900367}
368
Jiyong Park5d790c32019-11-15 18:40:32 +0900369type overridableProperties struct {
370 // List of APKs to package inside APEX
371 Apps []string
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -0800372
373 // Names of modules to be overridden. Listed modules can only be other binaries
374 // (in Make or Soong).
375 // This does not completely prevent installation of the overridden binaries, but if both
376 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
377 // from PRODUCT_PACKAGES.
378 Overrides []string
Jiyong Park5d790c32019-11-15 18:40:32 +0900379}
380
Alex Light5098a612018-11-29 17:12:15 -0800381type apexPackaging int
382
383const (
384 imageApex apexPackaging = iota
385 zipApex
Sundong Ahnabb64432019-10-22 13:58:29 +0900386 flattenedApex
Alex Light5098a612018-11-29 17:12:15 -0800387)
388
Sundong Ahnabb64432019-10-22 13:58:29 +0900389// The suffix for the output "file", not the module
Alex Light5098a612018-11-29 17:12:15 -0800390func (a apexPackaging) suffix() string {
391 switch a {
392 case imageApex:
393 return imageApexSuffix
394 case zipApex:
395 return zipApexSuffix
Alex Light5098a612018-11-29 17:12:15 -0800396 default:
Roland Levillain4644b222019-07-31 14:09:17 +0100397 panic(fmt.Errorf("unknown APEX type %d", a))
Alex Light5098a612018-11-29 17:12:15 -0800398 }
399}
400
401func (a apexPackaging) name() string {
402 switch a {
403 case imageApex:
404 return imageApexType
405 case zipApex:
406 return zipApexType
Alex Light5098a612018-11-29 17:12:15 -0800407 default:
Roland Levillain4644b222019-07-31 14:09:17 +0100408 panic(fmt.Errorf("unknown APEX type %d", a))
Alex Light5098a612018-11-29 17:12:15 -0800409 }
410}
411
Jiyong Parkf653b052019-11-18 15:39:01 +0900412type apexFileClass int
413
414const (
415 etc apexFileClass = iota
416 nativeSharedLib
417 nativeExecutable
418 shBinary
419 pyBinary
420 goBinary
421 javaSharedLib
422 nativeTest
423 app
424)
425
Jiyong Park8fd61922018-11-08 02:50:25 +0900426func (class apexFileClass) NameInMake() string {
427 switch class {
428 case etc:
429 return "ETC"
430 case nativeSharedLib:
431 return "SHARED_LIBRARIES"
Alex Light778127a2019-02-27 14:19:50 -0800432 case nativeExecutable, shBinary, pyBinary, goBinary:
Jiyong Park8fd61922018-11-08 02:50:25 +0900433 return "EXECUTABLES"
434 case javaSharedLib:
435 return "JAVA_LIBRARIES"
Roland Levillain630846d2019-06-26 12:48:34 +0100436 case nativeTest:
437 return "NATIVE_TESTS"
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900438 case app:
Jiyong Parkf383f7c2019-10-11 20:46:25 +0900439 // b/142537672 Why isn't this APP? We want to have full control over
440 // the paths and file names of the apk file under the flattend APEX.
441 // If this is set to APP, then the paths and file names are modified
442 // by the Make build system. For example, it is installed to
443 // /system/apex/<apexname>/app/<Appname>/<apexname>.<Appname>/ instead of
444 // /system/apex/<apexname>/app/<Appname> because the build system automatically
445 // appends module name (which is <apexname>.<Appname> to the path.
446 return "ETC"
Jiyong Park8fd61922018-11-08 02:50:25 +0900447 default:
Roland Levillain4644b222019-07-31 14:09:17 +0100448 panic(fmt.Errorf("unknown class %d", class))
Jiyong Park8fd61922018-11-08 02:50:25 +0900449 }
450}
451
Jiyong Parkf653b052019-11-18 15:39:01 +0900452// apexFile represents a file in an APEX bundle
Jiyong Park8fd61922018-11-08 02:50:25 +0900453type apexFile struct {
454 builtFile android.Path
455 moduleName string
Jiyong Park8fd61922018-11-08 02:50:25 +0900456 installDir string
457 class apexFileClass
Jiyong Parka8894842018-12-19 17:36:39 +0900458 module android.Module
Jiyong Parkf653b052019-11-18 15:39:01 +0900459 // list of symlinks that will be created in installDir that point to this apexFile
460 symlinks []string
461 transitiveDep bool
Jiyong Park1833cef2019-12-13 13:28:36 +0900462 moduleDir string
Jiyong Parkf653b052019-11-18 15:39:01 +0900463}
464
Jiyong Park1833cef2019-12-13 13:28:36 +0900465func newApexFile(ctx android.BaseModuleContext, builtFile android.Path, moduleName string, installDir string, class apexFileClass, module android.Module) apexFile {
466 ret := apexFile{
Jiyong Parkf653b052019-11-18 15:39:01 +0900467 builtFile: builtFile,
468 moduleName: moduleName,
469 installDir: installDir,
470 class: class,
471 module: module,
472 }
Jiyong Park1833cef2019-12-13 13:28:36 +0900473 if module != nil {
474 ret.moduleDir = ctx.OtherModuleDir(module)
475 }
476 return ret
Jiyong Parkf653b052019-11-18 15:39:01 +0900477}
478
479func (af *apexFile) Ok() bool {
Jiyong Park479321d2019-12-16 11:47:12 +0900480 return af.builtFile != nil && af.builtFile.String() != ""
Jiyong Park8fd61922018-11-08 02:50:25 +0900481}
482
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900483type apexBundle struct {
484 android.ModuleBase
485 android.DefaultableModuleBase
Jiyong Park5d790c32019-11-15 18:40:32 +0900486 android.OverridableModuleBase
Jiyong Parkd1063c12019-07-17 20:08:41 +0900487 android.SdkBase
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900488
Jiyong Park5d790c32019-11-15 18:40:32 +0900489 properties apexBundleProperties
490 targetProperties apexTargetBundleProperties
Jiyong Park5d790c32019-11-15 18:40:32 +0900491 overridableProperties overridableProperties
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900492
Jooyung Hanf21c7972019-12-16 22:32:06 +0900493 // specific to apex_vndk modules
494 vndkProperties apexVndkProperties
495
Colin Crossa4925902018-11-16 11:36:28 -0800496 bundleModuleFile android.WritablePath
Sundong Ahnabb64432019-10-22 13:58:29 +0900497 outputFile android.WritablePath
Colin Cross70dda7e2019-10-01 22:05:35 -0700498 installDir android.InstallPath
Jiyong Park8fd61922018-11-08 02:50:25 +0900499
Jiyong Park03b68dd2019-07-26 23:20:40 +0900500 prebuiltFileToDelete string
501
Jiyong Park42cca6c2019-04-01 11:15:50 +0900502 public_key_file android.Path
503 private_key_file android.Path
Jiyong Park0ca3ce82019-02-18 15:25:04 +0900504
505 container_certificate_file android.Path
506 container_private_key_file android.Path
507
Jooyung Han54aca7b2019-11-20 02:26:02 +0900508 fileContexts android.Path
509
Jiyong Park8fd61922018-11-08 02:50:25 +0900510 // list of files to be included in this apex
511 filesInfo []apexFile
512
Jiyong Parkac2bacd2019-02-20 21:49:26 +0900513 // list of module names that this APEX is depending on
514 externalDeps []string
515
Sundong Ahnabb64432019-10-22 13:58:29 +0900516 testApex bool
517 vndkApex bool
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000518 artApex bool
Sundong Ahnabb64432019-10-22 13:58:29 +0900519 primaryApexType bool
Jooyung Hane1633032019-08-01 17:41:43 +0900520
Jooyung Han214bf372019-11-12 13:03:50 +0900521 manifestJsonOut android.WritablePath
522 manifestPbOut android.WritablePath
Jooyung Han72bd2f82019-10-23 16:46:38 +0900523
524 // list of commands to create symlinks for backward compatibility
525 // these commands will be attached as LOCAL_POST_INSTALL_CMD to
526 // apex package itself(for unflattened build) or apex_manifest.json(for flattened build)
527 // so that compat symlinks are always installed regardless of TARGET_FLATTEN_APEX setting.
528 compatSymlinks []string
Sundong Ahnabb64432019-10-22 13:58:29 +0900529
530 // Suffix of module name in Android.mk
531 // ".flattened", ".apex", ".zipapex", or ""
532 suffix string
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900533}
534
Jiyong Park397e55e2018-10-24 21:09:55 +0900535func addDependenciesForNativeModules(ctx android.BottomUpMutatorContext,
Roland Levillain630846d2019-06-26 12:48:34 +0100536 native_shared_libs []string, binaries []string, tests []string,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700537 target android.Target, imageVariation string) {
Jiyong Park397e55e2018-10-24 21:09:55 +0900538 // Use *FarVariation* to be able to depend on modules having
539 // conflicting variations with this module. This is required since
540 // arch variant of an APEX bundle is 'common' but it is 'arm' or 'arm64'
541 // for native shared libs.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700542 ctx.AddFarVariationDependencies(append(target.Variations(), []blueprint.Variation{
Jiyong Parkda6eb592018-12-19 17:12:36 +0900543 {Mutator: "image", Variation: imageVariation},
Jiyong Park397e55e2018-10-24 21:09:55 +0900544 {Mutator: "link", Variation: "shared"},
Jiyong Park28d395a2018-12-07 22:42:47 +0900545 {Mutator: "version", Variation: ""}, // "" is the non-stub variant
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700546 }...), sharedLibTag, native_shared_libs...)
Jiyong Park397e55e2018-10-24 21:09:55 +0900547
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700548 ctx.AddFarVariationDependencies(append(target.Variations(),
549 blueprint.Variation{Mutator: "image", Variation: imageVariation}),
550 executableTag, binaries...)
Roland Levillain630846d2019-06-26 12:48:34 +0100551
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700552 ctx.AddFarVariationDependencies(append(target.Variations(), []blueprint.Variation{
Roland Levillain630846d2019-06-26 12:48:34 +0100553 {Mutator: "image", Variation: imageVariation},
Roland Levillain9b5fde92019-06-28 15:41:19 +0100554 {Mutator: "test_per_src", Variation: ""}, // "" is the all-tests variant
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700555 }...), testTag, tests...)
Jiyong Park397e55e2018-10-24 21:09:55 +0900556}
557
Alex Light9670d332019-01-29 18:07:33 -0800558func (a *apexBundle) combineProperties(ctx android.BottomUpMutatorContext) {
559 if ctx.Os().Class == android.Device {
560 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Android.Multilib, nil)
561 } else {
562 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Host.Multilib, nil)
563 if ctx.Os().Bionic() {
564 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Linux_bionic.Multilib, nil)
565 } else {
566 proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Linux_glibc.Multilib, nil)
567 }
568 }
569}
570
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900571func (a *apexBundle) DepsMutator(ctx android.BottomUpMutatorContext) {
Jooyung Handc782442019-11-01 03:14:38 +0900572 if proptools.Bool(a.properties.Use_vendor) && !android.InList(a.Name(), useVendorWhitelist(ctx.Config())) {
573 ctx.PropertyErrorf("use_vendor", "not allowed to set use_vendor: true")
574 }
575
Jiyong Park397e55e2018-10-24 21:09:55 +0900576 targets := ctx.MultiTargets()
Jiyong Park7c1dc612019-01-05 11:15:24 +0900577 config := ctx.DeviceConfig()
Alex Light9670d332019-01-29 18:07:33 -0800578
579 a.combineProperties(ctx)
580
Jiyong Park397e55e2018-10-24 21:09:55 +0900581 has32BitTarget := false
582 for _, target := range targets {
583 if target.Arch.ArchType.Multilib == "lib32" {
584 has32BitTarget = true
585 }
586 }
587 for i, target := range targets {
588 // When multilib.* is omitted for native_shared_libs, it implies
589 // multilib.both.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700590 ctx.AddFarVariationDependencies(append(target.Variations(), []blueprint.Variation{
Jiyong Park7c1dc612019-01-05 11:15:24 +0900591 {Mutator: "image", Variation: a.getImageVariation(config)},
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900592 {Mutator: "link", Variation: "shared"},
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700593 }...), sharedLibTag, a.properties.Native_shared_libs...)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900594
Roland Levillain630846d2019-06-26 12:48:34 +0100595 // When multilib.* is omitted for tests, it implies
596 // multilib.both.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700597 ctx.AddFarVariationDependencies(append(target.Variations(), []blueprint.Variation{
Roland Levillain630846d2019-06-26 12:48:34 +0100598 {Mutator: "image", Variation: a.getImageVariation(config)},
Roland Levillain9b5fde92019-06-28 15:41:19 +0100599 {Mutator: "test_per_src", Variation: ""}, // "" is the all-tests variant
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700600 }...), testTag, a.properties.Tests...)
Roland Levillain630846d2019-06-26 12:48:34 +0100601
Jiyong Park397e55e2018-10-24 21:09:55 +0900602 // Add native modules targetting both ABIs
603 addDependenciesForNativeModules(ctx,
604 a.properties.Multilib.Both.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100605 a.properties.Multilib.Both.Binaries,
606 a.properties.Multilib.Both.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700607 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900608 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900609
Alex Light3d673592019-01-18 14:37:31 -0800610 isPrimaryAbi := i == 0
611 if isPrimaryAbi {
Jiyong Park397e55e2018-10-24 21:09:55 +0900612 // When multilib.* is omitted for binaries, it implies
613 // multilib.first.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700614 ctx.AddFarVariationDependencies(append(target.Variations(),
615 blueprint.Variation{Mutator: "image", Variation: a.getImageVariation(config)}),
616 executableTag, a.properties.Binaries...)
Jiyong Park397e55e2018-10-24 21:09:55 +0900617
618 // Add native modules targetting the first ABI
619 addDependenciesForNativeModules(ctx,
620 a.properties.Multilib.First.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100621 a.properties.Multilib.First.Binaries,
622 a.properties.Multilib.First.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700623 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900624 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900625 }
626
627 switch target.Arch.ArchType.Multilib {
628 case "lib32":
629 // Add native modules targetting 32-bit ABI
630 addDependenciesForNativeModules(ctx,
631 a.properties.Multilib.Lib32.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100632 a.properties.Multilib.Lib32.Binaries,
633 a.properties.Multilib.Lib32.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700634 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900635 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900636
637 addDependenciesForNativeModules(ctx,
638 a.properties.Multilib.Prefer32.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100639 a.properties.Multilib.Prefer32.Binaries,
640 a.properties.Multilib.Prefer32.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700641 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900642 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900643 case "lib64":
644 // Add native modules targetting 64-bit ABI
645 addDependenciesForNativeModules(ctx,
646 a.properties.Multilib.Lib64.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100647 a.properties.Multilib.Lib64.Binaries,
648 a.properties.Multilib.Lib64.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700649 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900650 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900651
652 if !has32BitTarget {
653 addDependenciesForNativeModules(ctx,
654 a.properties.Multilib.Prefer32.Native_shared_libs,
Roland Levillain630846d2019-06-26 12:48:34 +0100655 a.properties.Multilib.Prefer32.Binaries,
656 a.properties.Multilib.Prefer32.Tests,
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700657 target,
Jiyong Park7c1dc612019-01-05 11:15:24 +0900658 a.getImageVariation(config))
Jiyong Park397e55e2018-10-24 21:09:55 +0900659 }
Peter Collingbourne3478bb22019-04-24 14:41:12 -0700660
661 if strings.HasPrefix(ctx.ModuleName(), "com.android.runtime") && target.Os.Class == android.Device {
662 for _, sanitizer := range ctx.Config().SanitizeDevice() {
663 if sanitizer == "hwaddress" {
664 addDependenciesForNativeModules(ctx,
665 []string{"libclang_rt.hwasan-aarch64-android"},
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700666 nil, nil, target, a.getImageVariation(config))
Peter Collingbourne3478bb22019-04-24 14:41:12 -0700667 break
668 }
669 }
670 }
Jiyong Park397e55e2018-10-24 21:09:55 +0900671 }
672
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900673 }
674
Jiyong Parkce6aadc2019-11-20 13:58:28 +0900675 // For prebuilt_etc, use the first variant (64 on 64/32bit device,
676 // 32 on 32bit device) regardless of the TARGET_PREFER_* setting.
677 // b/144532908
678 archForPrebuiltEtc := config.Arches()[0]
679 for _, arch := range config.Arches() {
680 // Prefer 64-bit arch if there is any
681 if arch.ArchType.Multilib == "lib64" {
682 archForPrebuiltEtc = arch
683 break
684 }
685 }
686 ctx.AddFarVariationDependencies([]blueprint.Variation{
687 {Mutator: "os", Variation: ctx.Os().String()},
688 {Mutator: "arch", Variation: archForPrebuiltEtc.String()},
689 }, prebuiltTag, a.properties.Prebuilts...)
690
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700691 ctx.AddFarVariationDependencies(ctx.Config().AndroidCommonTarget.Variations(),
692 javaLibTag, a.properties.Java_libs...)
Jiyong Parkff1458f2018-10-12 21:49:38 +0900693
Jiyong Park23c52b02019-02-02 13:13:47 +0900694 if String(a.properties.Key) == "" {
695 ctx.ModuleErrorf("key is missing")
696 return
697 }
698 ctx.AddDependency(ctx.Module(), keyTag, String(a.properties.Key))
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900699
Jiyong Parkb2742fd2019-02-11 11:38:15 +0900700 cert := android.SrcIsModule(a.getCertString(ctx))
Jiyong Park23c52b02019-02-02 13:13:47 +0900701 if cert != "" {
702 ctx.AddDependency(ctx.Module(), certificateTag, cert)
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900703 }
Jiyong Parkd1063c12019-07-17 20:08:41 +0900704
705 // TODO(jiyong): ensure that all apexes are with non-empty uses_sdks
706 if len(a.properties.Uses_sdks) > 0 {
707 sdkRefs := []android.SdkRef{}
708 for _, str := range a.properties.Uses_sdks {
709 parsed := android.ParseSdkRef(ctx, str, "uses_sdks")
710 sdkRefs = append(sdkRefs, parsed)
711 }
712 a.BuildWithSdks(sdkRefs)
713 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900714}
715
Jiyong Park5d790c32019-11-15 18:40:32 +0900716func (a *apexBundle) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
717 ctx.AddFarVariationDependencies(ctx.Config().AndroidCommonTarget.Variations(),
718 androidAppTag, a.overridableProperties.Apps...)
719}
720
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900721func (a *apexBundle) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
722 // direct deps of an APEX bundle are all part of the APEX bundle
723 return true
724}
725
Colin Cross0ea8ba82019-06-06 14:33:29 -0700726func (a *apexBundle) getCertString(ctx android.BaseModuleContext) string {
Jiyong Parkb2742fd2019-02-11 11:38:15 +0900727 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
728 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000729 return ":" + certificate
Jiyong Parkb2742fd2019-02-11 11:38:15 +0900730 }
731 return String(a.properties.Certificate)
732}
733
Colin Cross41955e82019-05-29 14:40:35 -0700734func (a *apexBundle) OutputFiles(tag string) (android.Paths, error) {
735 switch tag {
736 case "":
Sundong Ahnabb64432019-10-22 13:58:29 +0900737 return android.Paths{a.outputFile}, nil
Colin Cross41955e82019-05-29 14:40:35 -0700738 default:
739 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
Jiyong Park5a832022018-12-20 09:54:35 +0900740 }
Jiyong Park74e240b2018-11-27 21:27:08 +0900741}
742
Jiyong Park92c0f9c2018-12-13 23:14:57 +0900743func (a *apexBundle) installable() bool {
Jiyong Parkee9a98d2019-08-09 14:44:36 +0900744 return !a.properties.PreventInstall && (a.properties.Installable == nil || proptools.Bool(a.properties.Installable))
Jiyong Park92c0f9c2018-12-13 23:14:57 +0900745}
746
Nikita Ioffec72b5dd2019-12-07 17:30:22 +0000747func (a *apexBundle) testOnlyShouldSkipHashtreeGeneration() bool {
748 return proptools.Bool(a.properties.Test_only_no_hashtree)
749}
750
Jiyong Park7c1dc612019-01-05 11:15:24 +0900751func (a *apexBundle) getImageVariation(config android.DeviceConfig) string {
Jooyung Han31c470b2019-10-18 16:26:59 +0900752 if a.vndkApex {
Colin Cross7228ecd2019-11-18 16:00:16 -0800753 return cc.VendorVariationPrefix + a.vndkVersion(config)
Jooyung Han31c470b2019-10-18 16:26:59 +0900754 }
Jiyong Park7c1dc612019-01-05 11:15:24 +0900755 if config.VndkVersion() != "" && proptools.Bool(a.properties.Use_vendor) {
Colin Cross7228ecd2019-11-18 16:00:16 -0800756 return cc.VendorVariationPrefix + config.PlatformVndkVersion()
Jiyong Parkda6eb592018-12-19 17:12:36 +0900757 } else {
Colin Cross7228ecd2019-11-18 16:00:16 -0800758 return android.CoreVariation
Jiyong Parkda6eb592018-12-19 17:12:36 +0900759 }
760}
761
Jiyong Parkf97782b2019-02-13 20:28:58 +0900762func (a *apexBundle) EnableSanitizer(sanitizerName string) {
763 if !android.InList(sanitizerName, a.properties.SanitizerNames) {
764 a.properties.SanitizerNames = append(a.properties.SanitizerNames, sanitizerName)
765 }
766}
767
Jiyong Park388ef3f2019-01-28 19:47:32 +0900768func (a *apexBundle) IsSanitizerEnabled(ctx android.BaseModuleContext, sanitizerName string) bool {
Jiyong Parkf97782b2019-02-13 20:28:58 +0900769 if android.InList(sanitizerName, a.properties.SanitizerNames) {
770 return true
Jiyong Park235e67c2019-02-09 11:50:56 +0900771 }
772
773 // Then follow the global setting
Jiyong Park388ef3f2019-01-28 19:47:32 +0900774 globalSanitizerNames := []string{}
775 if a.Host() {
776 globalSanitizerNames = ctx.Config().SanitizeHost()
777 } else {
778 arches := ctx.Config().SanitizeDeviceArch()
779 if len(arches) == 0 || android.InList(a.Arch().ArchType.Name, arches) {
780 globalSanitizerNames = ctx.Config().SanitizeDevice()
781 }
782 }
783 return android.InList(sanitizerName, globalSanitizerNames)
Jiyong Park379de2f2018-12-19 02:47:14 +0900784}
785
Jiyong Parkee9a98d2019-08-09 14:44:36 +0900786func (a *apexBundle) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
787 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
788}
789
790func (a *apexBundle) PreventInstall() {
791 a.properties.PreventInstall = true
792}
793
794func (a *apexBundle) HideFromMake() {
795 a.properties.HideFromMake = true
796}
797
Jiyong Parkf653b052019-11-18 15:39:01 +0900798// TODO(jiyong) move apexFileFor* close to the apexFile type definition
Jiyong Park1833cef2019-12-13 13:28:36 +0900799func apexFileForNativeLibrary(ctx android.BaseModuleContext, ccMod *cc.Module, handleSpecialLibs bool) apexFile {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900800 // Decide the APEX-local directory by the multilib of the library
801 // In the future, we may query this to the module.
Jiyong Parkf653b052019-11-18 15:39:01 +0900802 var dirInApex string
Martin Stjernholm279de572019-09-10 23:18:20 +0100803 switch ccMod.Arch().ArchType.Multilib {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900804 case "lib32":
805 dirInApex = "lib"
806 case "lib64":
807 dirInApex = "lib64"
808 }
Martin Stjernholm279de572019-09-10 23:18:20 +0100809 dirInApex = filepath.Join(dirInApex, ccMod.RelativeInstallPath())
Colin Cross3b19f5d2019-09-17 14:45:31 -0700810 if ccMod.Target().NativeBridge == android.NativeBridgeEnabled {
Martin Stjernholm279de572019-09-10 23:18:20 +0100811 dirInApex = filepath.Join(dirInApex, ccMod.Target().NativeBridgeRelativePath)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900812 }
Jiyong Park1833cef2019-12-13 13:28:36 +0900813 if handleSpecialLibs && cc.InstallToBootstrap(ccMod.BaseModuleName(), ctx.Config()) {
Martin Stjernholm279de572019-09-10 23:18:20 +0100814 // Special case for Bionic libs and other libs installed with them. This is
815 // to prevent those libs from being included in the search path
816 // /apex/com.android.runtime/${LIB}. This exclusion is required because
817 // those libs in the Runtime APEX are available via the legacy paths in
818 // /system/lib/. By the init process, the libs in the APEX are bind-mounted
819 // to the legacy paths and thus will be loaded into the default linker
820 // namespace (aka "platform" namespace). If the libs are directly in
821 // /apex/com.android.runtime/${LIB} then the same libs will be loaded again
822 // into the runtime linker namespace, which will result in double loading of
823 // them, which isn't supported.
824 dirInApex = filepath.Join(dirInApex, "bionic")
Jiyong Parkb0788572018-12-20 22:10:17 +0900825 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900826
Jiyong Parkf653b052019-11-18 15:39:01 +0900827 fileToCopy := ccMod.OutputFile().Path()
Jiyong Park1833cef2019-12-13 13:28:36 +0900828 return newApexFile(ctx, fileToCopy, ccMod.Name(), dirInApex, nativeSharedLib, ccMod)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900829}
830
Jiyong Park1833cef2019-12-13 13:28:36 +0900831func apexFileForExecutable(ctx android.BaseModuleContext, cc *cc.Module) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900832 dirInApex := filepath.Join("bin", cc.RelativeInstallPath())
Colin Cross3b19f5d2019-09-17 14:45:31 -0700833 if cc.Target().NativeBridge == android.NativeBridgeEnabled {
dimitry8d6dde82019-07-11 10:23:53 +0200834 dirInApex = filepath.Join(dirInApex, cc.Target().NativeBridgeRelativePath)
Jiyong Parkacbf6c72019-07-09 16:19:16 +0900835 }
Jiyong Parkf653b052019-11-18 15:39:01 +0900836 fileToCopy := cc.OutputFile().Path()
Jiyong Park1833cef2019-12-13 13:28:36 +0900837 af := newApexFile(ctx, fileToCopy, cc.Name(), dirInApex, nativeExecutable, cc)
Jiyong Parkf653b052019-11-18 15:39:01 +0900838 af.symlinks = cc.Symlinks()
839 return af
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900840}
841
Jiyong Park1833cef2019-12-13 13:28:36 +0900842func apexFileForPyBinary(ctx android.BaseModuleContext, py *python.Module) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900843 dirInApex := "bin"
844 fileToCopy := py.HostToolPath().Path()
Jiyong Park1833cef2019-12-13 13:28:36 +0900845 return newApexFile(ctx, fileToCopy, py.Name(), dirInApex, pyBinary, py)
Alex Light778127a2019-02-27 14:19:50 -0800846}
Jiyong Park1833cef2019-12-13 13:28:36 +0900847func apexFileForGoBinary(ctx android.BaseModuleContext, depName string, gb bootstrap.GoBinaryTool) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900848 dirInApex := "bin"
Alex Light778127a2019-02-27 14:19:50 -0800849 s, err := filepath.Rel(android.PathForOutput(ctx).String(), gb.InstallPath())
850 if err != nil {
851 ctx.ModuleErrorf("Unable to use compiled binary at %s", gb.InstallPath())
Jiyong Parkf653b052019-11-18 15:39:01 +0900852 return apexFile{}
Alex Light778127a2019-02-27 14:19:50 -0800853 }
Jiyong Parkf653b052019-11-18 15:39:01 +0900854 fileToCopy := android.PathForOutput(ctx, s)
855 // NB: Since go binaries are static we don't need the module for anything here, which is
856 // good since the go tool is a blueprint.Module not an android.Module like we would
857 // normally use.
Jiyong Park1833cef2019-12-13 13:28:36 +0900858 return newApexFile(ctx, fileToCopy, depName, dirInApex, goBinary, nil)
Alex Light778127a2019-02-27 14:19:50 -0800859}
860
Jiyong Park1833cef2019-12-13 13:28:36 +0900861func apexFileForShBinary(ctx android.BaseModuleContext, sh *android.ShBinary) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900862 dirInApex := filepath.Join("bin", sh.SubDir())
863 fileToCopy := sh.OutputFile()
Jiyong Park1833cef2019-12-13 13:28:36 +0900864 af := newApexFile(ctx, fileToCopy, sh.Name(), dirInApex, shBinary, sh)
Jiyong Parkf653b052019-11-18 15:39:01 +0900865 af.symlinks = sh.Symlinks()
866 return af
Jiyong Park04480cf2019-02-06 00:16:29 +0900867}
868
Jiyong Park1833cef2019-12-13 13:28:36 +0900869func apexFileForJavaLibrary(ctx android.BaseModuleContext, java *java.Library) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900870 dirInApex := "javalib"
871 fileToCopy := java.DexJarFile()
Jiyong Park1833cef2019-12-13 13:28:36 +0900872 return newApexFile(ctx, fileToCopy, java.Name(), dirInApex, javaSharedLib, java)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900873}
874
Jiyong Park1833cef2019-12-13 13:28:36 +0900875func apexFileForPrebuiltJavaLibrary(ctx android.BaseModuleContext, java *java.Import) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900876 dirInApex := "javalib"
Jiyong Park9e6c2422019-08-09 20:39:45 +0900877 // The output is only one, but for some reason, ImplementationJars returns Paths, not Path
878 implJars := java.ImplementationJars()
879 if len(implJars) != 1 {
880 panic(fmt.Errorf("java.ImplementationJars() must return single Path, but got: %s",
881 strings.Join(implJars.Strings(), ", ")))
882 }
Jiyong Parkf653b052019-11-18 15:39:01 +0900883 fileToCopy := implJars[0]
Jiyong Park1833cef2019-12-13 13:28:36 +0900884 return newApexFile(ctx, fileToCopy, java.Name(), dirInApex, javaSharedLib, java)
Jiyong Park9e6c2422019-08-09 20:39:45 +0900885}
886
Jiyong Park1833cef2019-12-13 13:28:36 +0900887func apexFileForPrebuiltEtc(ctx android.BaseModuleContext, prebuilt android.PrebuiltEtcModule, depName string) apexFile {
Jiyong Parkf653b052019-11-18 15:39:01 +0900888 dirInApex := filepath.Join("etc", prebuilt.SubDir())
889 fileToCopy := prebuilt.OutputFile()
Jiyong Park1833cef2019-12-13 13:28:36 +0900890 return newApexFile(ctx, fileToCopy, depName, dirInApex, etc, prebuilt)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900891}
892
Jiyong Park1833cef2019-12-13 13:28:36 +0900893func apexFileForAndroidApp(ctx android.BaseModuleContext, aapp interface {
Jiyong Parkf653b052019-11-18 15:39:01 +0900894 android.Module
895 Privileged() bool
896 OutputFile() android.Path
897}, pkgName string) apexFile {
Jiyong Parkf7487312019-10-17 12:54:30 +0900898 appDir := "app"
Jiyong Parkf653b052019-11-18 15:39:01 +0900899 if aapp.Privileged() {
Jiyong Parkf7487312019-10-17 12:54:30 +0900900 appDir = "priv-app"
901 }
Jiyong Parkf653b052019-11-18 15:39:01 +0900902 dirInApex := filepath.Join(appDir, pkgName)
903 fileToCopy := aapp.OutputFile()
Jiyong Park1833cef2019-12-13 13:28:36 +0900904 return newApexFile(ctx, fileToCopy, aapp.Name(), dirInApex, app, aapp)
Dario Frenicde2a032019-10-27 00:29:22 +0100905}
906
Roland Levillain935639d2019-08-13 14:55:28 +0100907// Context "decorator", overriding the InstallBypassMake method to always reply `true`.
908type flattenedApexContext struct {
909 android.ModuleContext
910}
911
912func (c *flattenedApexContext) InstallBypassMake() bool {
913 return true
914}
915
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900916func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Sundong Ahnabb64432019-10-22 13:58:29 +0900917 buildFlattenedAsDefault := ctx.Config().FlattenApex() && !ctx.Config().UnbundledBuild()
918 switch a.properties.ApexType {
919 case imageApex:
920 if buildFlattenedAsDefault {
921 a.suffix = imageApexSuffix
922 } else {
923 a.suffix = ""
924 a.primaryApexType = true
Jooyung Han3ab2c3e2019-12-05 16:27:44 +0900925
926 if ctx.Config().InstallExtraFlattenedApexes() {
927 a.externalDeps = append(a.externalDeps, a.Name()+flattenedSuffix)
928 }
Sundong Ahnabb64432019-10-22 13:58:29 +0900929 }
930 case zipApex:
931 if proptools.String(a.properties.Payload_type) == "zip" {
932 a.suffix = ""
933 a.primaryApexType = true
934 } else {
935 a.suffix = zipApexSuffix
936 }
937 case flattenedApex:
938 if buildFlattenedAsDefault {
939 a.suffix = ""
940 a.primaryApexType = true
941 } else {
942 a.suffix = flattenedSuffix
943 }
Alex Light5098a612018-11-29 17:12:15 -0800944 }
945
Roland Levillain630846d2019-06-26 12:48:34 +0100946 if len(a.properties.Tests) > 0 && !a.testApex {
947 ctx.PropertyErrorf("tests", "property not allowed in apex module type")
948 return
949 }
950
Alex Lightfc0bd7c2019-01-29 18:31:59 -0800951 handleSpecialLibs := !android.Bool(a.properties.Ignore_system_library_special_case)
952
Jooyung Hane1633032019-08-01 17:41:43 +0900953 // native lib dependencies
954 var provideNativeLibs []string
955 var requireNativeLibs []string
956
Jooyung Han5c998b92019-06-27 11:30:33 +0900957 // Check if "uses" requirements are met with dependent apexBundles
958 var providedNativeSharedLibs []string
959 useVendor := proptools.Bool(a.properties.Use_vendor)
960 ctx.VisitDirectDepsBlueprint(func(m blueprint.Module) {
961 if ctx.OtherModuleDependencyTag(m) != usesTag {
962 return
963 }
964 otherName := ctx.OtherModuleName(m)
965 other, ok := m.(*apexBundle)
966 if !ok {
967 ctx.PropertyErrorf("uses", "%q is not a provider", otherName)
968 return
969 }
970 if proptools.Bool(other.properties.Use_vendor) != useVendor {
971 ctx.PropertyErrorf("use_vendor", "%q has different value of use_vendor", otherName)
972 return
973 }
974 if !proptools.Bool(other.properties.Provide_cpp_shared_libs) {
975 ctx.PropertyErrorf("uses", "%q does not provide native_shared_libs", otherName)
976 return
977 }
978 providedNativeSharedLibs = append(providedNativeSharedLibs, other.properties.Native_shared_libs...)
979 })
980
Jiyong Parkf653b052019-11-18 15:39:01 +0900981 var filesInfo []apexFile
Alex Light778127a2019-02-27 14:19:50 -0800982 ctx.WalkDepsBlueprint(func(child, parent blueprint.Module) bool {
Roland Levillainf89cd092019-07-29 16:22:59 +0100983 depTag := ctx.OtherModuleDependencyTag(child)
984 depName := ctx.OtherModuleName(child)
Jiyong Parkf653b052019-11-18 15:39:01 +0900985 if _, isDirectDep := parent.(*apexBundle); isDirectDep {
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900986 switch depTag {
987 case sharedLibTag:
988 if cc, ok := child.(*cc.Module); ok {
Jooyung Hane1633032019-08-01 17:41:43 +0900989 if cc.HasStubsVariants() {
990 provideNativeLibs = append(provideNativeLibs, cc.OutputFile().Path().Base())
991 }
Jiyong Park1833cef2019-12-13 13:28:36 +0900992 filesInfo = append(filesInfo, apexFileForNativeLibrary(ctx, cc, handleSpecialLibs))
Jiyong Parkf653b052019-11-18 15:39:01 +0900993 return true // track transitive dependencies
Jiyong Parkff1458f2018-10-12 21:49:38 +0900994 } else {
995 ctx.PropertyErrorf("native_shared_libs", "%q is not a cc_library or cc_library_shared module", depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +0900996 }
997 case executableTag:
998 if cc, ok := child.(*cc.Module); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +0900999 filesInfo = append(filesInfo, apexFileForExecutable(ctx, cc))
Jiyong Parkf653b052019-11-18 15:39:01 +09001000 return true // track transitive dependencies
Jiyong Park04480cf2019-02-06 00:16:29 +09001001 } else if sh, ok := child.(*android.ShBinary); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001002 filesInfo = append(filesInfo, apexFileForShBinary(ctx, sh))
Alex Light778127a2019-02-27 14:19:50 -08001003 } else if py, ok := child.(*python.Module); ok && py.HostToolPath().Valid() {
Jiyong Park1833cef2019-12-13 13:28:36 +09001004 filesInfo = append(filesInfo, apexFileForPyBinary(ctx, py))
Alex Light778127a2019-02-27 14:19:50 -08001005 } else if gb, ok := child.(bootstrap.GoBinaryTool); ok && a.Host() {
Jiyong Parkf653b052019-11-18 15:39:01 +09001006 filesInfo = append(filesInfo, apexFileForGoBinary(ctx, depName, gb))
Jiyong Parkff1458f2018-10-12 21:49:38 +09001007 } else {
Alex Light778127a2019-02-27 14:19:50 -08001008 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 +09001009 }
1010 case javaLibTag:
Jiyong Park9e6c2422019-08-09 20:39:45 +09001011 if javaLib, ok := child.(*java.Library); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001012 af := apexFileForJavaLibrary(ctx, javaLib)
Jiyong Parkf653b052019-11-18 15:39:01 +09001013 if !af.Ok() {
Jiyong Park8fd61922018-11-08 02:50:25 +09001014 ctx.PropertyErrorf("java_libs", "%q is not configured to be compiled into dex", depName)
1015 } else {
Jiyong Parkf653b052019-11-18 15:39:01 +09001016 filesInfo = append(filesInfo, af)
1017 return true // track transitive dependencies
Jiyong Park9e6c2422019-08-09 20:39:45 +09001018 }
Jiyong Park9e6c2422019-08-09 20:39:45 +09001019 } else if javaLib, ok := child.(*java.Import); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001020 af := apexFileForPrebuiltJavaLibrary(ctx, javaLib)
Jiyong Parkf653b052019-11-18 15:39:01 +09001021 if !af.Ok() {
Jiyong Park9e6c2422019-08-09 20:39:45 +09001022 ctx.PropertyErrorf("java_libs", "%q does not have a jar output", depName)
1023 } else {
Jiyong Parkf653b052019-11-18 15:39:01 +09001024 filesInfo = append(filesInfo, af)
Jiyong Park8fd61922018-11-08 02:50:25 +09001025 }
Jiyong Parkff1458f2018-10-12 21:49:38 +09001026 } else {
Jiyong Park9e6c2422019-08-09 20:39:45 +09001027 ctx.PropertyErrorf("java_libs", "%q of type %q is not supported", depName, ctx.OtherModuleType(child))
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001028 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001029 case androidAppTag:
1030 pkgName := ctx.DeviceConfig().OverridePackageNameFor(depName)
1031 if ap, ok := child.(*java.AndroidApp); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001032 filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap, pkgName))
Jiyong Parkf653b052019-11-18 15:39:01 +09001033 return true // track transitive dependencies
1034 } else if ap, ok := child.(*java.AndroidAppImport); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001035 filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap, pkgName))
Jiyong Parkf653b052019-11-18 15:39:01 +09001036 } else {
1037 ctx.PropertyErrorf("apps", "%q is not an android_app module", depName)
1038 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001039 case prebuiltTag:
Jooyung Han39edb6c2019-11-06 16:53:07 +09001040 if prebuilt, ok := child.(android.PrebuiltEtcModule); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001041 filesInfo = append(filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, depName))
Jiyong Parkff1458f2018-10-12 21:49:38 +09001042 } else {
1043 ctx.PropertyErrorf("prebuilts", "%q is not a prebuilt_etc module", depName)
1044 }
Roland Levillain630846d2019-06-26 12:48:34 +01001045 case testTag:
Roland Levillainf89cd092019-07-29 16:22:59 +01001046 if ccTest, ok := child.(*cc.Module); ok {
1047 if ccTest.IsTestPerSrcAllTestsVariation() {
1048 // Multiple-output test module (where `test_per_src: true`).
1049 //
1050 // `ccTest` is the "" ("all tests") variation of a `test_per_src` module.
1051 // We do not add this variation to `filesInfo`, as it has no output;
1052 // however, we do add the other variations of this module as indirect
1053 // dependencies (see below).
1054 return true
Roland Levillain9b5fde92019-06-28 15:41:19 +01001055 } else {
Roland Levillainf89cd092019-07-29 16:22:59 +01001056 // Single-output test module (where `test_per_src: false`).
Jiyong Park1833cef2019-12-13 13:28:36 +09001057 af := apexFileForExecutable(ctx, ccTest)
Jiyong Parkf653b052019-11-18 15:39:01 +09001058 af.class = nativeTest
1059 filesInfo = append(filesInfo, af)
Roland Levillain9b5fde92019-06-28 15:41:19 +01001060 }
Roland Levillain630846d2019-06-26 12:48:34 +01001061 } else {
1062 ctx.PropertyErrorf("tests", "%q is not a cc module", depName)
1063 }
Jiyong Parkff1458f2018-10-12 21:49:38 +09001064 case keyTag:
1065 if key, ok := child.(*apexKey); ok {
Jiyong Park0ca3ce82019-02-18 15:25:04 +09001066 a.private_key_file = key.private_key_file
1067 a.public_key_file = key.public_key_file
Jiyong Parkff1458f2018-10-12 21:49:38 +09001068 } else {
1069 ctx.PropertyErrorf("key", "%q is not an apex_key module", depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001070 }
Jiyong Parkf653b052019-11-18 15:39:01 +09001071 return false
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001072 case certificateTag:
1073 if dep, ok := child.(*java.AndroidAppCertificate); ok {
Jiyong Park0ca3ce82019-02-18 15:25:04 +09001074 a.container_certificate_file = dep.Certificate.Pem
1075 a.container_private_key_file = dep.Certificate.Key
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001076 } else {
1077 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", depName)
1078 }
Jiyong Park03b68dd2019-07-26 23:20:40 +09001079 case android.PrebuiltDepTag:
1080 // If the prebuilt is force disabled, remember to delete the prebuilt file
1081 // that might have been installed in the previous builds
1082 if prebuilt, ok := child.(*Prebuilt); ok && prebuilt.isForceDisabled() {
1083 a.prebuiltFileToDelete = prebuilt.InstallFilename()
1084 }
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001085 }
Jooyung Han8aee2042019-10-29 05:08:31 +09001086 } else if !a.vndkApex {
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001087 // indirect dependencies
Jooyung Han9c80bae2019-08-20 17:30:57 +09001088 if am, ok := child.(android.ApexModule); ok {
Roland Levillainf89cd092019-07-29 16:22:59 +01001089 // We cannot use a switch statement on `depTag` here as the checked
1090 // tags used below are private (e.g. `cc.sharedDepTag`).
Jiyong Park52cd06f2019-11-11 10:14:32 +09001091 if cc.IsSharedDepTag(depTag) || cc.IsRuntimeDepTag(depTag) {
Roland Levillainf89cd092019-07-29 16:22:59 +01001092 if cc, ok := child.(*cc.Module); ok {
1093 if android.InList(cc.Name(), providedNativeSharedLibs) {
1094 // If we're using a shared library which is provided from other APEX,
1095 // don't include it in this APEX
1096 return false
Jiyong Parkac2bacd2019-02-20 21:49:26 +09001097 }
Roland Levillainf89cd092019-07-29 16:22:59 +01001098 if !a.Host() && (cc.IsStubs() || cc.HasStubsVariants()) {
1099 // If the dependency is a stubs lib, don't include it in this APEX,
1100 // but make sure that the lib is installed on the device.
1101 // In case no APEX is having the lib, the lib is installed to the system
1102 // partition.
1103 //
1104 // Always include if we are a host-apex however since those won't have any
1105 // system libraries.
1106 if !android.DirectlyInAnyApex(ctx, cc.Name()) && !android.InList(cc.Name(), a.externalDeps) {
1107 a.externalDeps = append(a.externalDeps, cc.Name())
1108 }
Jooyung Hane1633032019-08-01 17:41:43 +09001109 requireNativeLibs = append(requireNativeLibs, cc.OutputFile().Path().Base())
Roland Levillainf89cd092019-07-29 16:22:59 +01001110 // Don't track further
1111 return false
1112 }
Jiyong Park1833cef2019-12-13 13:28:36 +09001113 af := apexFileForNativeLibrary(ctx, cc, handleSpecialLibs)
Jiyong Parkf653b052019-11-18 15:39:01 +09001114 af.transitiveDep = true
1115 filesInfo = append(filesInfo, af)
1116 return true // track transitive dependencies
Jiyong Park25fc6a92018-11-18 18:02:45 +09001117 }
Roland Levillainf89cd092019-07-29 16:22:59 +01001118 } else if cc.IsTestPerSrcDepTag(depTag) {
1119 if cc, ok := child.(*cc.Module); ok {
Jiyong Park1833cef2019-12-13 13:28:36 +09001120 af := apexFileForExecutable(ctx, cc)
Roland Levillainf89cd092019-07-29 16:22:59 +01001121 // Handle modules created as `test_per_src` variations of a single test module:
1122 // use the name of the generated test binary (`fileToCopy`) instead of the name
1123 // of the original test module (`depName`, shared by all `test_per_src`
1124 // variations of that module).
Jiyong Parkf653b052019-11-18 15:39:01 +09001125 af.moduleName = filepath.Base(af.builtFile.String())
1126 af.transitiveDep = true
1127 filesInfo = append(filesInfo, af)
1128 return true // track transitive dependencies
Roland Levillainf89cd092019-07-29 16:22:59 +01001129 }
Jiyong Park52cd06f2019-11-11 10:14:32 +09001130 } else if java.IsJniDepTag(depTag) {
1131 // Do nothing for JNI dep. JNI libraries are always embedded in APK-in-APEX.
Jiyong Parkf653b052019-11-18 15:39:01 +09001132 return true
Jooyung Han9c80bae2019-08-20 17:30:57 +09001133 } else if am.CanHaveApexVariants() && am.IsInstallableToApex() {
Roland Levillainf89cd092019-07-29 16:22:59 +01001134 ctx.ModuleErrorf("unexpected tag %q for indirect dependency %q", depTag, depName)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001135 }
1136 }
1137 }
1138 return false
1139 })
1140
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001141 // Specific to the ART apex: dexpreopt artifacts for libcore Java libraries.
1142 // Build rules are generated by the dexpreopt singleton, and here we access build artifacts
1143 // via the global boot image config.
1144 if a.artApex {
1145 for arch, files := range java.DexpreoptedArtApexJars(ctx) {
1146 dirInApex := filepath.Join("javalib", arch.String())
1147 for _, f := range files {
1148 localModule := "javalib_" + arch.String() + "_" + filepath.Base(f.String())
Jiyong Park1833cef2019-12-13 13:28:36 +09001149 af := newApexFile(ctx, f, localModule, dirInApex, etc, nil)
Jiyong Parkf653b052019-11-18 15:39:01 +09001150 filesInfo = append(filesInfo, af)
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001151 }
1152 }
1153 }
1154
Jiyong Park0ca3ce82019-02-18 15:25:04 +09001155 if a.private_key_file == nil {
Jiyong Parkfa0a3732018-11-09 05:52:26 +09001156 ctx.PropertyErrorf("key", "private_key for %q could not be found", String(a.properties.Key))
1157 return
1158 }
1159
Jiyong Park8fd61922018-11-08 02:50:25 +09001160 // remove duplicates in filesInfo
1161 removeDup := func(filesInfo []apexFile) []apexFile {
Jooyung Han344d5432019-08-23 11:17:39 +09001162 encountered := make(map[string]bool)
Jiyong Park8fd61922018-11-08 02:50:25 +09001163 result := []apexFile{}
1164 for _, f := range filesInfo {
Jooyung Han344d5432019-08-23 11:17:39 +09001165 dest := filepath.Join(f.installDir, f.builtFile.Base())
1166 if !encountered[dest] {
1167 encountered[dest] = true
Jiyong Park8fd61922018-11-08 02:50:25 +09001168 result = append(result, f)
1169 }
1170 }
1171 return result
1172 }
1173 filesInfo = removeDup(filesInfo)
1174
1175 // to have consistent build rules
1176 sort.Slice(filesInfo, func(i, j int) bool {
1177 return filesInfo[i].builtFile.String() < filesInfo[j].builtFile.String()
1178 })
1179
Jiyong Park127b40b2019-09-30 16:04:35 +09001180 // check apex_available requirements
Jiyong Park3814f4d2019-12-02 13:08:53 +09001181 if !ctx.Host() && !a.testApex {
Jiyong Park583a2262019-10-08 20:55:38 +09001182 for _, fi := range filesInfo {
1183 if am, ok := fi.module.(android.ApexModule); ok {
1184 if !am.AvailableFor(ctx.ModuleName()) {
1185 ctx.ModuleErrorf("requires %q that is not available for the APEX", fi.module.Name())
Jiyong Park3814f4d2019-12-02 13:08:53 +09001186 // don't stop so that we can report other violations in the same run
Jiyong Park583a2262019-10-08 20:55:38 +09001187 }
Jiyong Park127b40b2019-09-30 16:04:35 +09001188 }
1189 }
1190 }
1191
Jiyong Park8fd61922018-11-08 02:50:25 +09001192 // prepend the name of this APEX to the module names. These names will be the names of
1193 // modules that will be defined if the APEX is flattened.
1194 for i := range filesInfo {
Jaewoong Jung1670ca02019-11-22 14:50:42 -08001195 filesInfo[i].moduleName = filesInfo[i].moduleName + "." + a.Name() + a.suffix
Jiyong Park8fd61922018-11-08 02:50:25 +09001196 }
1197
Jiyong Park8fd61922018-11-08 02:50:25 +09001198 a.installDir = android.PathForModuleInstall(ctx, "apex")
1199 a.filesInfo = filesInfo
Alex Light5098a612018-11-29 17:12:15 -08001200
Jooyung Han54aca7b2019-11-20 02:26:02 +09001201 if a.properties.ApexType != zipApex {
1202 if a.properties.File_contexts == nil {
1203 a.fileContexts = android.PathForSource(ctx, "system/sepolicy/apex", ctx.ModuleName()+"-file_contexts")
1204 } else {
1205 a.fileContexts = android.PathForModuleSrc(ctx, *a.properties.File_contexts)
1206 if a.Platform() {
1207 if matched, err := path.Match("system/sepolicy/**/*", a.fileContexts.String()); err != nil || !matched {
1208 ctx.PropertyErrorf("file_contexts", "should be under system/sepolicy, but %q", a.fileContexts)
1209 }
1210 }
1211 }
1212 if !android.ExistentPathForSource(ctx, a.fileContexts.String()).Valid() {
1213 ctx.PropertyErrorf("file_contexts", "cannot find file_contexts file: %q", a.fileContexts)
1214 return
1215 }
1216 }
1217
Jooyung Hand15aa1f2019-09-27 00:38:03 +09001218 // prepare apex_manifest.json
Jooyung Han01a3ee22019-11-02 02:52:25 +09001219 a.buildManifest(ctx, provideNativeLibs, requireNativeLibs)
1220
1221 a.setCertificateAndPrivateKey(ctx)
1222 if a.properties.ApexType == flattenedApex {
1223 a.buildFlattenedApex(ctx)
1224 } else {
1225 a.buildUnflattenedApex(ctx)
1226 }
1227
Jaewoong Jung1670ca02019-11-22 14:50:42 -08001228 apexName := proptools.StringDefault(a.properties.Apex_name, a.Name())
Jooyung Han01a3ee22019-11-02 02:52:25 +09001229 a.compatSymlinks = makeCompatSymlinks(apexName, ctx)
1230}
1231
Jooyung Han344d5432019-08-23 11:17:39 +09001232func newApexBundle() *apexBundle {
Sundong Ahnabb64432019-10-22 13:58:29 +09001233 module := &apexBundle{}
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001234 module.AddProperties(&module.properties)
Alex Light9670d332019-01-29 18:07:33 -08001235 module.AddProperties(&module.targetProperties)
Jiyong Park5d790c32019-11-15 18:40:32 +09001236 module.AddProperties(&module.overridableProperties)
Alex Light5098a612018-11-29 17:12:15 -08001237 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
Jiyong Park397e55e2018-10-24 21:09:55 +09001238 return class == android.Device && ctx.Config().DevicePrefer32BitExecutables()
1239 })
Alex Light5098a612018-11-29 17:12:15 -08001240 android.InitAndroidMultiTargetsArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001241 android.InitDefaultableModule(module)
Jiyong Parkd1063c12019-07-17 20:08:41 +09001242 android.InitSdkAwareModule(module)
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -08001243 android.InitOverridableModule(module, &module.overridableProperties.Overrides)
Jiyong Park48ca7dc2018-10-10 14:01:00 +09001244 return module
1245}
Jiyong Park30ca9372019-02-07 16:27:23 +09001246
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001247func ApexBundleFactory(testApex bool, artApex bool) android.Module {
Jooyung Han344d5432019-08-23 11:17:39 +09001248 bundle := newApexBundle()
1249 bundle.testApex = testApex
Ulyana Trafimovichde534412019-11-08 10:51:01 +00001250 bundle.artApex = artApex
Jooyung Han344d5432019-08-23 11:17:39 +09001251 return bundle
1252}
1253
1254func testApexBundleFactory() android.Module {
1255 bundle := newApexBundle()
1256 bundle.testApex = true
1257 return bundle
1258}
1259
Jiyong Parkd1063c12019-07-17 20:08:41 +09001260func BundleFactory() android.Module {
Jooyung Han344d5432019-08-23 11:17:39 +09001261 return newApexBundle()
1262}
1263
Jiyong Park30ca9372019-02-07 16:27:23 +09001264//
1265// Defaults
1266//
1267type Defaults struct {
1268 android.ModuleBase
1269 android.DefaultsModuleBase
1270}
1271
Jiyong Park30ca9372019-02-07 16:27:23 +09001272func defaultsFactory() android.Module {
1273 return DefaultsFactory()
1274}
1275
1276func DefaultsFactory(props ...interface{}) android.Module {
1277 module := &Defaults{}
1278
1279 module.AddProperties(props...)
1280 module.AddProperties(
1281 &apexBundleProperties{},
1282 &apexTargetBundleProperties{},
Jooyung Hanf21c7972019-12-16 22:32:06 +09001283 &overridableProperties{},
Jiyong Park30ca9372019-02-07 16:27:23 +09001284 )
1285
1286 android.InitDefaultsModule(module)
1287 return module
1288}
Jiyong Park5d790c32019-11-15 18:40:32 +09001289
1290//
1291// OverrideApex
1292//
1293type OverrideApex struct {
1294 android.ModuleBase
1295 android.OverrideModuleBase
1296}
1297
1298func (o *OverrideApex) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1299 // All the overrides happen in the base module.
1300}
1301
1302// override_apex is used to create an apex module based on another apex module
1303// by overriding some of its properties.
1304func overrideApexFactory() android.Module {
1305 m := &OverrideApex{}
1306 m.AddProperties(&overridableProperties{})
1307
1308 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1309 android.InitOverrideModule(m)
1310 return m
1311}