blob: 37a9ff5a12265575010081865cc218dc867d06ed [file] [log] [blame]
Jiyong Park09d77522019-11-18 11:16:27 +09001// Copyright (C) 2019 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"
Paul Duffinc30aea22021-06-15 19:10:11 +010019 "io"
Colin Cross6340ea52021-11-04 12:01:18 -070020 "path/filepath"
Jaewoong Jungfa00c062020-05-14 14:15:24 -070021 "strconv"
Jiyong Park09d77522019-11-18 11:16:27 +090022 "strings"
23
24 "android/soong/android"
Spandan Das2069c3f2023-12-06 19:40:24 +000025 "android/soong/dexpreopt"
Jaewoong Jungfa00c062020-05-14 14:15:24 -070026 "android/soong/java"
Wei Li340ee8e2022-03-18 17:33:24 -070027 "android/soong/provenance"
Anton Hansson805e0a52022-11-25 14:06:46 +000028
Jaewoong Jungfa00c062020-05-14 14:15:24 -070029 "github.com/google/blueprint"
Jiyong Park09d77522019-11-18 11:16:27 +090030 "github.com/google/blueprint/proptools"
31)
32
Jaewoong Jungfa00c062020-05-14 14:15:24 -070033var (
34 extractMatchingApex = pctx.StaticRule(
35 "extractMatchingApex",
36 blueprint.RuleParams{
37 Command: `rm -rf "$out" && ` +
38 `${extract_apks} -o "${out}" -allow-prereleased=${allow-prereleased} ` +
Pranav Gupta51645ff2023-03-20 16:19:53 -070039 `-sdk-version=${sdk-version} -skip-sdk-check=${skip-sdk-check} -abis=${abis} ` +
40 `-screen-densities=all -extract-single ` +
Jaewoong Jungfa00c062020-05-14 14:15:24 -070041 `${in}`,
42 CommandDeps: []string{"${extract_apks}"},
43 },
Pranav Gupta51645ff2023-03-20 16:19:53 -070044 "abis", "allow-prereleased", "sdk-version", "skip-sdk-check")
Jaewoong Jungfa00c062020-05-14 14:15:24 -070045)
46
Jiyong Park10e926b2020-07-16 21:38:56 +090047type prebuilt interface {
48 isForceDisabled() bool
49 InstallFilename() string
50}
51
52type prebuiltCommon struct {
Paul Duffinef6b6952021-06-15 11:34:01 +010053 android.ModuleBase
Spandan Das2069c3f2023-12-06 19:40:24 +000054 java.Dexpreopter
Paul Duffinbb0dc132021-05-05 16:58:08 +010055 prebuilt android.Prebuilt
Paul Duffindfd33262021-04-06 17:02:08 +010056
Paul Duffinbb0dc132021-05-05 16:58:08 +010057 // Properties common to both prebuilt_apex and apex_set.
Paul Duffinef6b6952021-06-15 11:34:01 +010058 prebuiltCommonProperties *PrebuiltCommonProperties
59
60 installDir android.InstallPath
61 installFilename string
Colin Cross6340ea52021-11-04 12:01:18 -070062 installedFile android.InstallPath
Paul Duffinef6b6952021-06-15 11:34:01 +010063 outputApex android.WritablePath
64
Jooyung Han286957d2023-10-30 16:17:56 +090065 // fragment for this apex for apexkeys.txt
66 apexKeysPath android.WritablePath
67
Paul Duffinc30aea22021-06-15 19:10:11 +010068 // A list of apexFile objects created in prebuiltCommon.initApexFilesForAndroidMk which are used
69 // to create make modules in prebuiltCommon.AndroidMkEntries.
70 apexFilesForAndroidMk []apexFile
71
Colin Cross6340ea52021-11-04 12:01:18 -070072 // Installed locations of symlinks for backward compatibility.
73 compatSymlinks android.InstallPaths
Paul Duffinef6b6952021-06-15 11:34:01 +010074
Jiakai Zhange6e90db2022-01-28 14:58:56 +000075 hostRequired []string
76 requiredModuleNames []string
Jiyong Park10e926b2020-07-16 21:38:56 +090077}
78
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -070079type sanitizedPrebuilt interface {
80 hasSanitizedSource(sanitizer string) bool
81}
82
Paul Duffinef6b6952021-06-15 11:34:01 +010083type PrebuiltCommonProperties struct {
Paul Duffinbb0dc132021-05-05 16:58:08 +010084 SelectedApexProperties
85
Martin Stjernholmd8da28e2021-06-24 14:37:13 +010086 // Canonical name of this APEX. Used to determine the path to the activated APEX on
87 // device (/apex/<apex_name>). If unspecified, follows the name property.
88 Apex_name *string
89
Jiyong Park10e926b2020-07-16 21:38:56 +090090 ForceDisable bool `blueprint:"mutated"`
Paul Duffin3bae0682021-05-05 18:03:47 +010091
Paul Duffinef6b6952021-06-15 11:34:01 +010092 // whether the extracted apex file is installable.
93 Installable *bool
94
95 // optional name for the installed apex. If unspecified, name of the
96 // module is used as the file name
97 Filename *string
98
99 // names of modules to be overridden. Listed modules can only be other binaries
100 // (in Make or Soong).
101 // This does not completely prevent installation of the overridden binaries, but if both
102 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
103 // from PRODUCT_PACKAGES.
104 Overrides []string
105
Paul Duffin3bae0682021-05-05 18:03:47 +0100106 // List of java libraries that are embedded inside this prebuilt APEX bundle and for which this
107 // APEX bundle will create an APEX variant and provide dex implementation jars for use by
108 // dexpreopt and boot jars package check.
109 Exported_java_libs []string
110
111 // List of bootclasspath fragments inside this prebuilt APEX bundle and for which this APEX
112 // bundle will create an APEX variant.
113 Exported_bootclasspath_fragments []string
Jiakai Zhang774dd302021-09-26 03:54:25 +0000114
115 // List of systemserverclasspath fragments inside this prebuilt APEX bundle and for which this
116 // APEX bundle will create an APEX variant.
117 Exported_systemserverclasspath_fragments []string
Jiyong Park10e926b2020-07-16 21:38:56 +0900118}
119
Paul Duffinef6b6952021-06-15 11:34:01 +0100120// initPrebuiltCommon initializes the prebuiltCommon structure and performs initialization of the
121// module that is common to Prebuilt and ApexSet.
122func (p *prebuiltCommon) initPrebuiltCommon(module android.Module, properties *PrebuiltCommonProperties) {
123 p.prebuiltCommonProperties = properties
124 android.InitSingleSourcePrebuiltModule(module.(android.PrebuiltInterface), properties, "Selected_apex")
125 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
126}
127
Martin Stjernholmd8da28e2021-06-24 14:37:13 +0100128func (p *prebuiltCommon) ApexVariationName() string {
129 return proptools.StringDefault(p.prebuiltCommonProperties.Apex_name, p.ModuleBase.BaseModuleName())
130}
131
Jiyong Park10e926b2020-07-16 21:38:56 +0900132func (p *prebuiltCommon) Prebuilt() *android.Prebuilt {
133 return &p.prebuilt
134}
135
136func (p *prebuiltCommon) isForceDisabled() bool {
Paul Duffinbb0dc132021-05-05 16:58:08 +0100137 return p.prebuiltCommonProperties.ForceDisable
Jiyong Park10e926b2020-07-16 21:38:56 +0900138}
139
140func (p *prebuiltCommon) checkForceDisable(ctx android.ModuleContext) bool {
Jooyung Haneec1b3f2023-06-20 16:25:59 +0900141 forceDisable := false
Jiyong Park10e926b2020-07-16 21:38:56 +0900142
143 // Force disable the prebuilts when we are doing unbundled build. We do unbundled build
144 // to build the prebuilts themselves.
145 forceDisable = forceDisable || ctx.Config().UnbundledBuild()
146
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -0700147 // b/137216042 don't use prebuilts when address sanitizer is on, unless the prebuilt has a sanitized source
148 sanitized := ctx.Module().(sanitizedPrebuilt)
149 forceDisable = forceDisable || (android.InList("address", ctx.Config().SanitizeDevice()) && !sanitized.hasSanitizedSource("address"))
150 forceDisable = forceDisable || (android.InList("hwaddress", ctx.Config().SanitizeDevice()) && !sanitized.hasSanitizedSource("hwaddress"))
Jiyong Park10e926b2020-07-16 21:38:56 +0900151
152 if forceDisable && p.prebuilt.SourceExists() {
Paul Duffinbb0dc132021-05-05 16:58:08 +0100153 p.prebuiltCommonProperties.ForceDisable = true
Jiyong Park10e926b2020-07-16 21:38:56 +0900154 return true
155 }
156 return false
157}
158
Paul Duffinef6b6952021-06-15 11:34:01 +0100159func (p *prebuiltCommon) InstallFilename() string {
160 return proptools.StringDefault(p.prebuiltCommonProperties.Filename, p.BaseModuleName()+imageApexSuffix)
161}
162
163func (p *prebuiltCommon) Name() string {
164 return p.prebuilt.Name(p.ModuleBase.Name())
165}
166
167func (p *prebuiltCommon) Overrides() []string {
168 return p.prebuiltCommonProperties.Overrides
169}
170
171func (p *prebuiltCommon) installable() bool {
172 return proptools.BoolDefault(p.prebuiltCommonProperties.Installable, true)
173}
174
Spandan Das2069c3f2023-12-06 19:40:24 +0000175// To satisfy java.DexpreopterInterface
176func (p *prebuiltCommon) IsInstallable() bool {
177 return p.installable()
178}
179
180// initApexFilesForAndroidMk initializes the prebuiltCommon.requiredModuleNames field with the install only deps of the prebuilt apex
Paul Duffinc30aea22021-06-15 19:10:11 +0100181func (p *prebuiltCommon) initApexFilesForAndroidMk(ctx android.ModuleContext) {
Spandan Das2069c3f2023-12-06 19:40:24 +0000182 // If this apex contains a system server jar, then the dexpreopt artifacts should be added as required
183 for _, install := range p.Dexpreopter.DexpreoptBuiltInstalledForApex() {
184 p.requiredModuleNames = append(p.requiredModuleNames, install.FullModuleName())
185 }
186}
Paul Duffinc30aea22021-06-15 19:10:11 +0100187
Spandan Das2069c3f2023-12-06 19:40:24 +0000188// If this prebuilt has system server jar, create the rules to dexpreopt it and install it alongside the prebuilt apex
189func (p *prebuiltCommon) dexpreoptSystemServerJars(ctx android.ModuleContext) {
190 // If this apex does not export anything, return
191 if !p.hasExportedDeps() {
192 return
193 }
194 // Use apex_name to determine the api domain of this prebuilt apex
195 apexName := p.ApexVariationName()
Spandan Dasfae468e2023-12-12 23:23:53 +0000196 di, err := android.FindDeapexerProviderForModule(ctx)
197 if err != nil {
198 ctx.ModuleErrorf(err.Error())
199 }
Spandan Das2069c3f2023-12-06 19:40:24 +0000200 dc := dexpreopt.GetGlobalConfig(ctx)
201 systemServerJarList := dc.AllApexSystemServerJars(ctx)
202
203 for i := 0; i < systemServerJarList.Len(); i++ {
204 sscpApex := systemServerJarList.Apex(i)
205 sscpJar := systemServerJarList.Jar(i)
206 if apexName != sscpApex {
207 continue
Paul Duffinc30aea22021-06-15 19:10:11 +0100208 }
Spandan Das2069c3f2023-12-06 19:40:24 +0000209 p.Dexpreopter.DexpreoptPrebuiltApexSystemServerJars(ctx, sscpJar, di)
210 }
Paul Duffinc30aea22021-06-15 19:10:11 +0100211}
212
Jiakai Zhang204356f2021-09-09 08:12:46 +0000213func (p *prebuiltCommon) addRequiredModules(entries *android.AndroidMkEntries) {
214 for _, fi := range p.apexFilesForAndroidMk {
215 entries.AddStrings("LOCAL_REQUIRED_MODULES", fi.requiredModuleNames...)
216 entries.AddStrings("LOCAL_TARGET_REQUIRED_MODULES", fi.targetRequiredModuleNames...)
217 entries.AddStrings("LOCAL_HOST_REQUIRED_MODULES", fi.hostRequiredModuleNames...)
218 }
Jiakai Zhange6e90db2022-01-28 14:58:56 +0000219 entries.AddStrings("LOCAL_REQUIRED_MODULES", p.requiredModuleNames...)
Jiakai Zhang204356f2021-09-09 08:12:46 +0000220}
221
Paul Duffinef6b6952021-06-15 11:34:01 +0100222func (p *prebuiltCommon) AndroidMkEntries() []android.AndroidMkEntries {
Paul Duffinc30aea22021-06-15 19:10:11 +0100223 entriesList := []android.AndroidMkEntries{
Paul Duffinef6b6952021-06-15 11:34:01 +0100224 {
225 Class: "ETC",
226 OutputFile: android.OptionalPathForPath(p.outputApex),
227 Include: "$(BUILD_PREBUILT)",
228 Host_required: p.hostRequired,
229 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
230 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Crossc68db4b2021-11-11 18:59:15 -0800231 entries.SetString("LOCAL_MODULE_PATH", p.installDir.String())
Paul Duffinef6b6952021-06-15 11:34:01 +0100232 entries.SetString("LOCAL_MODULE_STEM", p.installFilename)
Colin Cross6340ea52021-11-04 12:01:18 -0700233 entries.SetPath("LOCAL_SOONG_INSTALLED_MODULE", p.installedFile)
234 entries.SetString("LOCAL_SOONG_INSTALL_PAIRS", p.outputApex.String()+":"+p.installedFile.String())
Cole Faustd22afe92023-08-18 16:05:44 -0700235 entries.AddStrings("LOCAL_SOONG_INSTALL_SYMLINKS", p.compatSymlinks.Strings()...)
Paul Duffinef6b6952021-06-15 11:34:01 +0100236 entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", !p.installable())
237 entries.AddStrings("LOCAL_OVERRIDES_MODULES", p.prebuiltCommonProperties.Overrides...)
Jooyung Han286957d2023-10-30 16:17:56 +0900238 entries.SetString("LOCAL_APEX_KEY_PATH", p.apexKeysPath.String())
Jiakai Zhang204356f2021-09-09 08:12:46 +0000239 p.addRequiredModules(entries)
Paul Duffinef6b6952021-06-15 11:34:01 +0100240 },
241 },
242 },
243 }
Paul Duffinc30aea22021-06-15 19:10:11 +0100244
Spandan Das2069c3f2023-12-06 19:40:24 +0000245 // Add the dexpreopt artifacts to androidmk
246 for _, install := range p.Dexpreopter.DexpreoptBuiltInstalledForApex() {
247 entriesList = append(entriesList, install.ToMakeEntries())
248 }
249
Paul Duffinc30aea22021-06-15 19:10:11 +0100250 // Iterate over the apexFilesForAndroidMk list and create an AndroidMkEntries struct for each
251 // file. This provides similar behavior to that provided in apexBundle.AndroidMk() as it makes the
252 // apex specific variants of the exported java modules available for use from within make.
253 apexName := p.BaseModuleName()
254 for _, fi := range p.apexFilesForAndroidMk {
Paul Duffin9dc8c542021-06-17 13:33:09 +0100255 entries := p.createEntriesForApexFile(fi, apexName)
Paul Duffinc30aea22021-06-15 19:10:11 +0100256 entriesList = append(entriesList, entries)
257 }
258
259 return entriesList
Paul Duffinef6b6952021-06-15 11:34:01 +0100260}
261
Paul Duffin9dc8c542021-06-17 13:33:09 +0100262// createEntriesForApexFile creates an AndroidMkEntries for the supplied apexFile
263func (p *prebuiltCommon) createEntriesForApexFile(fi apexFile, apexName string) android.AndroidMkEntries {
264 moduleName := fi.androidMkModuleName + "." + apexName
265 entries := android.AndroidMkEntries{
266 Class: fi.class.nameInMake(),
267 OverrideName: moduleName,
268 OutputFile: android.OptionalPathForPath(fi.builtFile),
269 Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
270 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
271 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Crossc68db4b2021-11-11 18:59:15 -0800272 entries.SetString("LOCAL_MODULE_PATH", p.installDir.String())
Martin Stjernholmae44fd82021-11-23 23:17:33 +0000273 entries.SetString("LOCAL_SOONG_INSTALLED_MODULE", filepath.Join(p.installDir.String(), fi.stem()))
274 entries.SetString("LOCAL_SOONG_INSTALL_PAIRS",
Colin Cross6340ea52021-11-04 12:01:18 -0700275 fi.builtFile.String()+":"+filepath.Join(p.installDir.String(), fi.stem()))
Paul Duffin9dc8c542021-06-17 13:33:09 +0100276
277 // soong_java_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .jar Therefore
278 // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise
279 // we will have foo.jar.jar
280 entries.SetString("LOCAL_MODULE_STEM", strings.TrimSuffix(fi.stem(), ".jar"))
Paul Duffin9dc8c542021-06-17 13:33:09 +0100281 entries.SetString("LOCAL_SOONG_DEX_JAR", fi.builtFile.String())
282 entries.SetString("LOCAL_DEX_PREOPT", "false")
283 },
284 },
285 ExtraFooters: []android.AndroidMkExtraFootersFunc{
286 func(w io.Writer, name, prefix, moduleDir string) {
287 // m <module_name> will build <module_name>.<apex_name> as well.
288 if fi.androidMkModuleName != moduleName {
289 fmt.Fprintf(w, ".PHONY: %s\n", fi.androidMkModuleName)
290 fmt.Fprintf(w, "%s: %s\n", fi.androidMkModuleName, moduleName)
291 }
292 },
293 },
294 }
295 return entries
296}
297
Paul Duffin5dda3e32021-05-05 14:13:27 +0100298// prebuiltApexModuleCreator defines the methods that need to be implemented by prebuilt_apex and
299// apex_set in order to create the modules needed to provide access to the prebuilt .apex file.
300type prebuiltApexModuleCreator interface {
301 createPrebuiltApexModules(ctx android.TopDownMutatorContext)
302}
303
304// prebuiltApexModuleCreatorMutator is the mutator responsible for invoking the
305// prebuiltApexModuleCreator's createPrebuiltApexModules method.
306//
307// It is registered as a pre-arch mutator as it must run after the ComponentDepsMutator because it
308// will need to access dependencies added by that (exported modules) but must run before the
309// DepsMutator so that the deapexer module it creates can add dependencies onto itself from the
310// exported modules.
311func prebuiltApexModuleCreatorMutator(ctx android.TopDownMutatorContext) {
312 module := ctx.Module()
313 if creator, ok := module.(prebuiltApexModuleCreator); ok {
314 creator.createPrebuiltApexModules(ctx)
315 }
316}
317
Liz Kammer2dc72442023-04-20 10:10:48 -0400318func (p *prebuiltCommon) hasExportedDeps() bool {
319 return len(p.prebuiltCommonProperties.Exported_java_libs) > 0 ||
320 len(p.prebuiltCommonProperties.Exported_bootclasspath_fragments) > 0 ||
321 len(p.prebuiltCommonProperties.Exported_systemserverclasspath_fragments) > 0
Jiakai Zhang774dd302021-09-26 03:54:25 +0000322}
323
Paul Duffin57f83592021-05-05 15:09:44 +0100324// prebuiltApexContentsDeps adds dependencies onto the prebuilt apex module's contents.
325func (p *prebuiltCommon) prebuiltApexContentsDeps(ctx android.BottomUpMutatorContext) {
326 module := ctx.Module()
Paul Duffin023dba02021-04-22 01:45:29 +0100327
Liz Kammer2dc72442023-04-20 10:10:48 -0400328 for _, dep := range p.prebuiltCommonProperties.Exported_java_libs {
Jiakai Zhang774dd302021-09-26 03:54:25 +0000329 prebuiltDep := android.PrebuiltNameFromSource(dep)
Liz Kammer2dc72442023-04-20 10:10:48 -0400330 ctx.AddDependency(module, exportedJavaLibTag, prebuiltDep)
331 }
332
333 for _, dep := range p.prebuiltCommonProperties.Exported_bootclasspath_fragments {
334 prebuiltDep := android.PrebuiltNameFromSource(dep)
335 ctx.AddDependency(module, exportedBootclasspathFragmentTag, prebuiltDep)
336 }
337
338 for _, dep := range p.prebuiltCommonProperties.Exported_systemserverclasspath_fragments {
339 prebuiltDep := android.PrebuiltNameFromSource(dep)
340 ctx.AddDependency(module, exportedSystemserverclasspathFragmentTag, prebuiltDep)
Paul Duffin023dba02021-04-22 01:45:29 +0100341 }
Paul Duffindfd33262021-04-06 17:02:08 +0100342}
343
Paul Duffinb17d0442021-05-05 12:07:00 +0100344// Implements android.DepInInSameApex
345func (p *prebuiltCommon) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
346 tag := ctx.OtherModuleDependencyTag(dep)
347 _, ok := tag.(exportedDependencyTag)
348 return ok
349}
350
Paul Duffindfd33262021-04-06 17:02:08 +0100351// apexInfoMutator marks any modules for which this apex exports a file as requiring an apex
352// specific variant and checks that they are supported.
353//
354// The apexMutator will ensure that the ApexInfo objects passed to BuildForApex(ApexInfo) are
355// associated with the apex specific variant using the ApexInfoProvider for later retrieval.
356//
357// Unlike the source apex module type the prebuilt_apex module type cannot share compatible variants
358// across prebuilt_apex modules. That is because there is no way to determine whether two
359// prebuilt_apex modules that export files for the same module are compatible. e.g. they could have
360// been built from different source at different times or they could have been built with different
361// build options that affect the libraries.
362//
363// While it may be possible to provide sufficient information to determine whether two prebuilt_apex
364// modules were compatible it would be a lot of work and would not provide much benefit for a couple
365// of reasons:
Colin Crossd079e0b2022-08-16 10:27:33 -0700366// - The number of prebuilt_apex modules that will be exporting files for the same module will be
367// low as the prebuilt_apex only exports files for the direct dependencies that require it and
368// very few modules are direct dependencies of multiple prebuilt_apex modules, e.g. there are a
369// few com.android.art* apex files that contain the same contents and could export files for the
370// same modules but only one of them needs to do so. Contrast that with source apex modules which
371// need apex specific variants for every module that contributes code to the apex, whether direct
372// or indirect.
373// - The build cost of a prebuilt_apex variant is generally low as at worst it will involve some
374// extra copying of files. Contrast that with source apex modules that has to build each variant
375// from source.
Paul Duffindfd33262021-04-06 17:02:08 +0100376func (p *prebuiltCommon) apexInfoMutator(mctx android.TopDownMutatorContext) {
377
378 // Collect direct dependencies into contents.
379 contents := make(map[string]android.ApexMembership)
380
381 // Collect the list of dependencies.
382 var dependencies []android.ApexModule
Paul Duffinb17d0442021-05-05 12:07:00 +0100383 mctx.WalkDeps(func(child, parent android.Module) bool {
384 // If the child is not in the same apex as the parent then exit immediately and do not visit
385 // any of the child's dependencies.
386 if !android.IsDepInSameApex(mctx, parent, child) {
387 return false
388 }
389
390 tag := mctx.OtherModuleDependencyTag(child)
391 depName := mctx.OtherModuleName(child)
Paul Duffin023dba02021-04-22 01:45:29 +0100392 if exportedTag, ok := tag.(exportedDependencyTag); ok {
393 propertyName := exportedTag.name
Paul Duffindfd33262021-04-06 17:02:08 +0100394
395 // It is an error if the other module is not a prebuilt.
Paul Duffinb17d0442021-05-05 12:07:00 +0100396 if !android.IsModulePrebuilt(child) {
Paul Duffin023dba02021-04-22 01:45:29 +0100397 mctx.PropertyErrorf(propertyName, "%q is not a prebuilt module", depName)
Paul Duffinb17d0442021-05-05 12:07:00 +0100398 return false
Paul Duffindfd33262021-04-06 17:02:08 +0100399 }
400
401 // It is an error if the other module is not an ApexModule.
Paul Duffinb17d0442021-05-05 12:07:00 +0100402 if _, ok := child.(android.ApexModule); !ok {
Paul Duffin023dba02021-04-22 01:45:29 +0100403 mctx.PropertyErrorf(propertyName, "%q is not usable within an apex", depName)
Paul Duffinb17d0442021-05-05 12:07:00 +0100404 return false
Paul Duffindfd33262021-04-06 17:02:08 +0100405 }
Paul Duffindfd33262021-04-06 17:02:08 +0100406 }
Paul Duffinb17d0442021-05-05 12:07:00 +0100407
Paul Duffinfee8cf32021-06-29 18:38:38 +0100408 // Ignore any modules that do not implement ApexModule as they cannot have an APEX specific
409 // variant.
410 if _, ok := child.(android.ApexModule); !ok {
411 return false
412 }
413
Paul Duffinb17d0442021-05-05 12:07:00 +0100414 // Strip off the prebuilt_ prefix if present before storing content to ensure consistent
415 // behavior whether there is a corresponding source module present or not.
416 depName = android.RemoveOptionalPrebuiltPrefix(depName)
417
418 // Remember if this module was added as a direct dependency.
419 direct := parent == mctx.Module()
420 contents[depName] = contents[depName].Add(direct)
421
422 // Add the module to the list of dependencies that need to have an APEX variant.
423 dependencies = append(dependencies, child.(android.ApexModule))
424
425 return true
Paul Duffindfd33262021-04-06 17:02:08 +0100426 })
427
428 // Create contents for the prebuilt_apex and store it away for later use.
429 apexContents := android.NewApexContents(contents)
Colin Cross40213022023-12-13 15:19:49 -0800430 android.SetProvider(mctx, ApexBundleInfoProvider, ApexBundleInfo{
Paul Duffindfd33262021-04-06 17:02:08 +0100431 Contents: apexContents,
432 })
433
434 // Create an ApexInfo for the prebuilt_apex.
Martin Stjernholmd8da28e2021-06-24 14:37:13 +0100435 apexVariationName := p.ApexVariationName()
Paul Duffindfd33262021-04-06 17:02:08 +0100436 apexInfo := android.ApexInfo{
Martin Stjernholmc4f4ced2021-05-27 11:17:00 +0000437 ApexVariationName: apexVariationName,
438 InApexVariants: []string{apexVariationName},
Martin Stjernholmd8da28e2021-06-24 14:37:13 +0100439 InApexModules: []string{p.ModuleBase.BaseModuleName()}, // BaseModuleName() to avoid the prebuilt_ prefix.
Paul Duffindfd33262021-04-06 17:02:08 +0100440 ApexContents: []*android.ApexContents{apexContents},
441 ForPrebuiltApex: true,
442 }
443
444 // Mark the dependencies of this module as requiring a variant for this module.
445 for _, am := range dependencies {
446 am.BuildForApex(apexInfo)
447 }
448}
449
Paul Duffin11216db2021-03-01 14:14:52 +0000450// prebuiltApexSelectorModule is a private module type that is only created by the prebuilt_apex
451// module. It selects the apex to use and makes it available for use by prebuilt_apex and the
452// deapexer.
453type prebuiltApexSelectorModule struct {
454 android.ModuleBase
455
456 apexFileProperties ApexFileProperties
457
458 inputApex android.Path
459}
460
461func privateApexSelectorModuleFactory() android.Module {
462 module := &prebuiltApexSelectorModule{}
463 module.AddProperties(
464 &module.apexFileProperties,
465 )
466 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
467 return module
468}
469
470func (p *prebuiltApexSelectorModule) Srcs() android.Paths {
471 return android.Paths{p.inputApex}
472}
473
474func (p *prebuiltApexSelectorModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
475 p.inputApex = android.SingleSourcePathFromSupplier(ctx, p.apexFileProperties.prebuiltApexSelector, "src")
476}
477
Jiyong Park09d77522019-11-18 11:16:27 +0900478type Prebuilt struct {
Jiyong Park10e926b2020-07-16 21:38:56 +0900479 prebuiltCommon
Jiyong Park09d77522019-11-18 11:16:27 +0900480
Paul Duffinbb0dc132021-05-05 16:58:08 +0100481 properties PrebuiltProperties
Jiyong Park09d77522019-11-18 11:16:27 +0900482
Paul Duffinef6b6952021-06-15 11:34:01 +0100483 inputApex android.Path
Wei Li340ee8e2022-03-18 17:33:24 -0700484
485 provenanceMetaDataFile android.OutputPath
Jiyong Park09d77522019-11-18 11:16:27 +0900486}
487
Paul Duffin851f3992021-01-13 17:03:51 +0000488type ApexFileProperties struct {
Jiyong Park09d77522019-11-18 11:16:27 +0900489 // the path to the prebuilt .apex file to import.
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000490 //
491 // This cannot be marked as `android:"arch_variant"` because the `prebuilt_apex` is only mutated
492 // for android_common. That is so that it will have the same arch variant as, and so be compatible
493 // with, the source `apex` module type that it replaces.
Paul Duffin11216db2021-03-01 14:14:52 +0000494 Src *string `android:"path"`
Jiyong Park09d77522019-11-18 11:16:27 +0900495 Arch struct {
496 Arm struct {
Paul Duffin11216db2021-03-01 14:14:52 +0000497 Src *string `android:"path"`
Jiyong Park09d77522019-11-18 11:16:27 +0900498 }
499 Arm64 struct {
Paul Duffin11216db2021-03-01 14:14:52 +0000500 Src *string `android:"path"`
Jiyong Park09d77522019-11-18 11:16:27 +0900501 }
Chen Guoyin401f2982022-10-12 19:28:48 +0800502 Riscv64 struct {
503 Src *string `android:"path"`
504 }
Jiyong Park09d77522019-11-18 11:16:27 +0900505 X86 struct {
Paul Duffin11216db2021-03-01 14:14:52 +0000506 Src *string `android:"path"`
Jiyong Park09d77522019-11-18 11:16:27 +0900507 }
508 X86_64 struct {
Paul Duffin11216db2021-03-01 14:14:52 +0000509 Src *string `android:"path"`
Jiyong Park09d77522019-11-18 11:16:27 +0900510 }
511 }
Paul Duffin851f3992021-01-13 17:03:51 +0000512}
513
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000514// prebuiltApexSelector selects the correct prebuilt APEX file for the build target.
515//
516// The ctx parameter can be for any module not just the prebuilt module so care must be taken not
517// to use methods on it that are specific to the current module.
518//
519// See the ApexFileProperties.Src property.
520func (p *ApexFileProperties) prebuiltApexSelector(ctx android.BaseModuleContext, prebuilt android.Module) []string {
521 multiTargets := prebuilt.MultiTargets()
522 if len(multiTargets) != 1 {
523 ctx.OtherModuleErrorf(prebuilt, "compile_multilib shouldn't be \"both\" for prebuilt_apex")
524 return nil
Paul Duffin851f3992021-01-13 17:03:51 +0000525 }
526 var src string
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000527 switch multiTargets[0].Arch.ArchType {
Paul Duffin851f3992021-01-13 17:03:51 +0000528 case android.Arm:
529 src = String(p.Arch.Arm.Src)
530 case android.Arm64:
531 src = String(p.Arch.Arm64.Src)
Chen Guoyin401f2982022-10-12 19:28:48 +0800532 case android.Riscv64:
533 src = String(p.Arch.Riscv64.Src)
Colin Crossabacbe82022-11-01 09:26:51 -0700534 // HACK: fall back to arm64 prebuilts, the riscv64 ones don't exist yet.
535 if src == "" {
536 src = String(p.Arch.Arm64.Src)
537 }
Paul Duffin851f3992021-01-13 17:03:51 +0000538 case android.X86:
539 src = String(p.Arch.X86.Src)
540 case android.X86_64:
541 src = String(p.Arch.X86_64.Src)
Paul Duffin851f3992021-01-13 17:03:51 +0000542 }
543 if src == "" {
544 src = String(p.Src)
545 }
Paul Duffin851f3992021-01-13 17:03:51 +0000546
Paul Duffinc0609c62021-03-01 17:27:16 +0000547 if src == "" {
Colin Cross553a31b2022-10-03 22:02:09 -0700548 if ctx.Config().AllowMissingDependencies() {
549 ctx.AddMissingDependencies([]string{ctx.OtherModuleName(prebuilt)})
550 } else {
551 ctx.OtherModuleErrorf(prebuilt, "prebuilt_apex does not support %q", multiTargets[0].Arch.String())
552 }
Paul Duffinc0609c62021-03-01 17:27:16 +0000553 // Drop through to return an empty string as the src (instead of nil) to avoid the prebuilt
554 // logic from reporting a more general, less useful message.
555 }
556
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000557 return []string{src}
Paul Duffin851f3992021-01-13 17:03:51 +0000558}
559
560type PrebuiltProperties struct {
561 ApexFileProperties
Jiyong Park09d77522019-11-18 11:16:27 +0900562
Paul Duffinef6b6952021-06-15 11:34:01 +0100563 PrebuiltCommonProperties
Jiyong Park09d77522019-11-18 11:16:27 +0900564}
565
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -0700566func (a *Prebuilt) hasSanitizedSource(sanitizer string) bool {
567 return false
568}
569
Jiyong Park09d77522019-11-18 11:16:27 +0900570func (p *Prebuilt) OutputFiles(tag string) (android.Paths, error) {
571 switch tag {
572 case "":
573 return android.Paths{p.outputApex}, nil
574 default:
575 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
576 }
577}
578
Jiyong Park09d77522019-11-18 11:16:27 +0900579// prebuilt_apex imports an `.apex` file into the build graph as if it was built with apex.
580func PrebuiltFactory() android.Module {
581 module := &Prebuilt{}
Paul Duffinef6b6952021-06-15 11:34:01 +0100582 module.AddProperties(&module.properties)
583 module.initPrebuiltCommon(module, &module.properties.PrebuiltCommonProperties)
Paul Duffin064b70c2020-11-02 17:32:38 +0000584
Jiyong Park09d77522019-11-18 11:16:27 +0900585 return module
586}
587
Paul Duffin5dda3e32021-05-05 14:13:27 +0100588func createApexSelectorModule(ctx android.TopDownMutatorContext, name string, apexFileProperties *ApexFileProperties) {
Paul Duffin11216db2021-03-01 14:14:52 +0000589 props := struct {
590 Name *string
591 }{
592 Name: proptools.StringPtr(name),
593 }
594
595 ctx.CreateModule(privateApexSelectorModuleFactory,
596 &props,
597 apexFileProperties,
598 )
599}
600
Paul Duffin5dda3e32021-05-05 14:13:27 +0100601// createDeapexerModuleIfNeeded will create a deapexer module if it is needed.
602//
Paul Duffin57f83592021-05-05 15:09:44 +0100603// A deapexer module is only needed when the prebuilt apex specifies one or more modules in either
604// the `exported_java_libs` or `exported_bootclasspath_fragments` properties as that indicates that
605// the listed modules need access to files from within the prebuilt .apex file.
Jiakai Zhang774dd302021-09-26 03:54:25 +0000606func (p *prebuiltCommon) createDeapexerModuleIfNeeded(ctx android.TopDownMutatorContext, deapexerName string, apexFileSource string) {
Paul Duffin5dda3e32021-05-05 14:13:27 +0100607 // Only create the deapexer module if it is needed.
Liz Kammer2dc72442023-04-20 10:10:48 -0400608 if !p.hasExportedDeps() {
Paul Duffin5dda3e32021-05-05 14:13:27 +0100609 return
610 }
611
Paul Duffin57f83592021-05-05 15:09:44 +0100612 // Compute the deapexer properties from the transitive dependencies of this module.
Paul Duffinb5084052021-06-07 10:25:31 +0100613 commonModules := []string{}
Paul Duffin034196d2021-06-17 15:59:07 +0100614 exportedFiles := []string{}
Paul Duffin57f83592021-05-05 15:09:44 +0100615 ctx.WalkDeps(func(child, parent android.Module) bool {
616 tag := ctx.OtherModuleDependencyTag(child)
617
Paul Duffin7db57e02021-06-17 14:56:05 +0100618 // If the child is not in the same apex as the parent then ignore it and all its children.
619 if !android.IsDepInSameApex(ctx, parent, child) {
620 return false
621 }
622
Paul Duffin57f83592021-05-05 15:09:44 +0100623 name := android.RemoveOptionalPrebuiltPrefix(ctx.OtherModuleName(child))
Paul Duffin7db57e02021-06-17 14:56:05 +0100624 if _, ok := tag.(android.RequiresFilesFromPrebuiltApexTag); ok {
Paul Duffinb5084052021-06-07 10:25:31 +0100625 commonModules = append(commonModules, name)
626
627 requiredFiles := child.(android.RequiredFilesFromPrebuiltApex).RequiredFilesFromPrebuiltApex(ctx)
Paul Duffin034196d2021-06-17 15:59:07 +0100628 exportedFiles = append(exportedFiles, requiredFiles...)
Paul Duffinb5084052021-06-07 10:25:31 +0100629
Paul Duffin7db57e02021-06-17 14:56:05 +0100630 // Visit the dependencies of this module just in case they also require files from the
631 // prebuilt apex.
Paul Duffin57f83592021-05-05 15:09:44 +0100632 return true
633 }
634
635 return false
636 })
637
Paul Duffin3bae0682021-05-05 18:03:47 +0100638 // Create properties for deapexer module.
639 deapexerProperties := &DeapexerProperties{
Paul Duffinb5084052021-06-07 10:25:31 +0100640 // Remove any duplicates from the common modules lists as a module may be included via a direct
Paul Duffin3bae0682021-05-05 18:03:47 +0100641 // dependency as well as transitive ones.
Paul Duffinb5084052021-06-07 10:25:31 +0100642 CommonModules: android.SortedUniqueStrings(commonModules),
Paul Duffin3bae0682021-05-05 18:03:47 +0100643 }
644
645 // Populate the exported files property in a fixed order.
Paul Duffin034196d2021-06-17 15:59:07 +0100646 deapexerProperties.ExportedFiles = android.SortedUniqueStrings(exportedFiles)
Paul Duffin57f83592021-05-05 15:09:44 +0100647
Paul Duffin11216db2021-03-01 14:14:52 +0000648 props := struct {
649 Name *string
650 Selected_apex *string
651 }{
652 Name: proptools.StringPtr(deapexerName),
653 Selected_apex: proptools.StringPtr(apexFileSource),
654 }
655 ctx.CreateModule(privateDeapexerFactory,
656 &props,
657 deapexerProperties,
658 )
659}
660
Paul Duffin11216db2021-03-01 14:14:52 +0000661func apexSelectorModuleName(baseModuleName string) string {
662 return baseModuleName + ".apex.selector"
663}
664
Paul Duffin064b70c2020-11-02 17:32:38 +0000665func prebuiltApexExportedModuleName(ctx android.BottomUpMutatorContext, name string) string {
666 // The prebuilt_apex should be depending on prebuilt modules but as this runs after
667 // prebuilt_rename the prebuilt module may or may not be using the prebuilt_ prefixed named. So,
668 // check to see if the prefixed name is in use first, if it is then use that, otherwise assume
669 // the unprefixed name is the one to use. If the unprefixed one turns out to be a source module
670 // and not a renamed prebuilt module then that will be detected and reported as an error when
671 // processing the dependency in ApexInfoMutator().
Paul Duffin864116c2021-04-02 10:24:13 +0100672 prebuiltName := android.PrebuiltNameFromSource(name)
Paul Duffin064b70c2020-11-02 17:32:38 +0000673 if ctx.OtherModuleExists(prebuiltName) {
674 name = prebuiltName
675 }
676 return name
677}
678
Paul Duffina7139422021-02-08 11:01:58 +0000679type exportedDependencyTag struct {
680 blueprint.BaseDependencyTag
681 name string
682}
683
684// Mark this tag so dependencies that use it are excluded from visibility enforcement.
685//
686// This does allow any prebuilt_apex to reference any module which does open up a small window for
687// restricted visibility modules to be referenced from the wrong prebuilt_apex. However, doing so
688// avoids opening up a much bigger window by widening the visibility of modules that need files
689// provided by the prebuilt_apex to include all the possible locations they may be defined, which
690// could include everything below vendor/.
691//
692// A prebuilt_apex that references a module via this tag will have to contain the appropriate files
693// corresponding to that module, otherwise it will fail when attempting to retrieve the files from
694// the .apex file. It will also have to be included in the module's apex_available property too.
695// That makes it highly unlikely that a prebuilt_apex would reference a restricted module
696// incorrectly.
697func (t exportedDependencyTag) ExcludeFromVisibilityEnforcement() {}
698
Paul Duffin7db57e02021-06-17 14:56:05 +0100699func (t exportedDependencyTag) RequiresFilesFromPrebuiltApex() {}
700
701var _ android.RequiresFilesFromPrebuiltApexTag = exportedDependencyTag{}
702
Paul Duffina7139422021-02-08 11:01:58 +0000703var (
Jiakai Zhang774dd302021-09-26 03:54:25 +0000704 exportedJavaLibTag = exportedDependencyTag{name: "exported_java_libs"}
705 exportedBootclasspathFragmentTag = exportedDependencyTag{name: "exported_bootclasspath_fragments"}
706 exportedSystemserverclasspathFragmentTag = exportedDependencyTag{name: "exported_systemserverclasspath_fragments"}
Paul Duffina7139422021-02-08 11:01:58 +0000707)
708
Paul Duffin5dda3e32021-05-05 14:13:27 +0100709var _ prebuiltApexModuleCreator = (*Prebuilt)(nil)
710
711// createPrebuiltApexModules creates modules necessary to export files from the prebuilt apex to the
712// build.
713//
714// If this needs to make files from within a `.apex` file available for use by other Soong modules,
715// e.g. make dex implementation jars available for java_import modules listed in exported_java_libs,
716// it does so as follows:
717//
Colin Crossd079e0b2022-08-16 10:27:33 -0700718// 1. It creates a `deapexer` module that actually extracts the files from the `.apex` file and
719// makes them available for use by other modules, at both Soong and ninja levels.
Paul Duffin5dda3e32021-05-05 14:13:27 +0100720//
Colin Crossd079e0b2022-08-16 10:27:33 -0700721// 2. It adds a dependency onto those modules and creates an apex specific variant similar to what
722// an `apex` module does. That ensures that code which looks for specific apex variant, e.g.
723// dexpreopt, will work the same way from source and prebuilt.
Paul Duffin5dda3e32021-05-05 14:13:27 +0100724//
Colin Crossd079e0b2022-08-16 10:27:33 -0700725// 3. The `deapexer` module adds a dependency from the modules that require the exported files onto
726// itself so that they can retrieve the file paths to those files.
Paul Duffin5dda3e32021-05-05 14:13:27 +0100727//
728// It also creates a child module `selector` that is responsible for selecting the appropriate
729// input apex for both the prebuilt_apex and the deapexer. That is needed for a couple of reasons:
Paul Duffin5dda3e32021-05-05 14:13:27 +0100730//
Colin Crossd079e0b2022-08-16 10:27:33 -0700731// 1. To dedup the selection logic so it only runs in one module.
Paul Duffin5dda3e32021-05-05 14:13:27 +0100732//
Colin Crossd079e0b2022-08-16 10:27:33 -0700733// 2. To allow the deapexer to be wired up to a different source for the input apex, e.g. an
734// `apex_set`.
735//
736// prebuilt_apex
737// / | \
738// / | \
739// V V V
740// selector <--- deapexer <--- exported java lib
Paul Duffin5dda3e32021-05-05 14:13:27 +0100741func (p *Prebuilt) createPrebuiltApexModules(ctx android.TopDownMutatorContext) {
742 baseModuleName := p.BaseModuleName()
743
744 apexSelectorModuleName := apexSelectorModuleName(baseModuleName)
745 createApexSelectorModule(ctx, apexSelectorModuleName, &p.properties.ApexFileProperties)
746
747 apexFileSource := ":" + apexSelectorModuleName
Jiakai Zhang774dd302021-09-26 03:54:25 +0000748 p.createDeapexerModuleIfNeeded(ctx, deapexerModuleName(baseModuleName), apexFileSource)
Paul Duffin5dda3e32021-05-05 14:13:27 +0100749
750 // Add a source reference to retrieve the selected apex from the selector module.
Paul Duffinbb0dc132021-05-05 16:58:08 +0100751 p.prebuiltCommonProperties.Selected_apex = proptools.StringPtr(apexFileSource)
Paul Duffin5dda3e32021-05-05 14:13:27 +0100752}
753
Paul Duffin57f83592021-05-05 15:09:44 +0100754func (p *Prebuilt) ComponentDepsMutator(ctx android.BottomUpMutatorContext) {
755 p.prebuiltApexContentsDeps(ctx)
Paul Duffin064b70c2020-11-02 17:32:38 +0000756}
757
Spandan Das2069c3f2023-12-06 19:40:24 +0000758func (p *prebuiltCommon) DepsMutator(ctx android.BottomUpMutatorContext) {
759 if p.hasExportedDeps() {
760 // Create a dependency from the prebuilt apex (prebuilt_apex/apex_set) to the internal deapexer module
761 // The deapexer will return a provider that will be bubbled up to the rdeps of apexes (e.g. dex_bootjars)
762 ctx.AddDependency(ctx.Module(), android.DeapexerTag, deapexerModuleName(p.BaseModuleName()))
763 }
764}
765
Paul Duffin064b70c2020-11-02 17:32:38 +0000766var _ ApexInfoMutator = (*Prebuilt)(nil)
767
Paul Duffin064b70c2020-11-02 17:32:38 +0000768func (p *Prebuilt) ApexInfoMutator(mctx android.TopDownMutatorContext) {
Paul Duffindfd33262021-04-06 17:02:08 +0100769 p.apexInfoMutator(mctx)
Jiyong Park09d77522019-11-18 11:16:27 +0900770}
771
Spandan Dasda739a32023-12-13 00:06:32 +0000772// Set a provider containing information about the jars and .prof provided by the apex
773// Apexes built from prebuilts retrieve this information by visiting its internal deapexer module
774// Used by dex_bootjars to generate the boot image
775func (p *prebuiltCommon) provideApexExportsInfo(ctx android.ModuleContext) {
776 if !p.hasExportedDeps() {
777 // nothing to do
778 return
779 }
780 if di, err := android.FindDeapexerProviderForModule(ctx); err == nil {
781 exports := android.ApexExportsInfo{
782 ApexName: p.ApexVariationName(),
783 ProfilePathOnHost: di.PrebuiltExportPath(java.ProfileInstallPathInApex),
784 }
785 ctx.SetProvider(android.ApexExportsInfoProvider, exports)
786 } else {
787 ctx.ModuleErrorf(err.Error())
788 }
789}
790
Jiyong Park09d77522019-11-18 11:16:27 +0900791func (p *Prebuilt) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jooyung Han286957d2023-10-30 16:17:56 +0900792 p.apexKeysPath = writeApexKeys(ctx, p)
Jiyong Park09d77522019-11-18 11:16:27 +0900793 // TODO(jungjw): Check the key validity.
Paul Duffinbb0dc132021-05-05 16:58:08 +0100794 p.inputApex = android.OptionalPathForModuleSrc(ctx, p.prebuiltCommonProperties.Selected_apex).Path()
Jiyong Park09d77522019-11-18 11:16:27 +0900795 p.installDir = android.PathForModuleInstall(ctx, "apex")
796 p.installFilename = p.InstallFilename()
797 if !strings.HasSuffix(p.installFilename, imageApexSuffix) {
798 ctx.ModuleErrorf("filename should end in %s for prebuilt_apex", imageApexSuffix)
799 }
800 p.outputApex = android.PathForModuleOut(ctx, p.installFilename)
801 ctx.Build(pctx, android.BuildParams{
802 Rule: android.Cp,
803 Input: p.inputApex,
804 Output: p.outputApex,
805 })
Jiyong Park10e926b2020-07-16 21:38:56 +0900806
807 if p.prebuiltCommon.checkForceDisable(ctx) {
Colin Crossa9c8c9f2020-12-16 10:20:23 -0800808 p.HideFromMake()
Jiyong Park10e926b2020-07-16 21:38:56 +0900809 return
810 }
811
Spandan Das2069c3f2023-12-06 19:40:24 +0000812 // dexpreopt any system server jars if present
813 p.dexpreoptSystemServerJars(ctx)
814
Spandan Dasda739a32023-12-13 00:06:32 +0000815 // provide info used for generating the boot image
816 p.provideApexExportsInfo(ctx)
817
Paul Duffinc30aea22021-06-15 19:10:11 +0100818 // Save the files that need to be made available to Make.
819 p.initApexFilesForAndroidMk(ctx)
820
Colin Crossccba23d2021-11-12 19:01:29 +0000821 // in case that prebuilt_apex replaces source apex (using prefer: prop)
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900822 p.compatSymlinks = makeCompatSymlinks(p.BaseModuleName(), ctx)
Colin Crossccba23d2021-11-12 19:01:29 +0000823 // or that prebuilt_apex overrides other apexes (using overrides: prop)
824 for _, overridden := range p.prebuiltCommonProperties.Overrides {
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900825 p.compatSymlinks = append(p.compatSymlinks, makeCompatSymlinks(overridden, ctx)...)
Colin Cross6340ea52021-11-04 12:01:18 -0700826 }
827
828 if p.installable() {
Colin Cross09ad3a62023-11-15 12:29:33 -0800829 p.installedFile = ctx.InstallFile(p.installDir, p.installFilename, p.inputApex, p.compatSymlinks...)
Wei Li340ee8e2022-03-18 17:33:24 -0700830 p.provenanceMetaDataFile = provenance.GenerateArtifactProvenanceMetaData(ctx, p.inputApex, p.installedFile)
Jooyung Han002ab682020-01-08 01:57:58 +0900831 }
Jiyong Park09d77522019-11-18 11:16:27 +0900832}
833
Wei Li340ee8e2022-03-18 17:33:24 -0700834func (p *Prebuilt) ProvenanceMetaDataFile() android.OutputPath {
835 return p.provenanceMetaDataFile
836}
837
Paul Duffin24704672021-04-06 16:09:30 +0100838// prebuiltApexExtractorModule is a private module type that is only created by the prebuilt_apex
839// module. It extracts the correct apex to use and makes it available for use by apex_set.
840type prebuiltApexExtractorModule struct {
841 android.ModuleBase
842
843 properties ApexExtractorProperties
844
845 extractedApex android.WritablePath
846}
847
848func privateApexExtractorModuleFactory() android.Module {
849 module := &prebuiltApexExtractorModule{}
850 module.AddProperties(
851 &module.properties,
852 )
853 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
854 return module
855}
856
857func (p *prebuiltApexExtractorModule) Srcs() android.Paths {
858 return android.Paths{p.extractedApex}
859}
860
861func (p *prebuiltApexExtractorModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
862 srcsSupplier := func(ctx android.BaseModuleContext, prebuilt android.Module) []string {
863 return p.properties.prebuiltSrcs(ctx)
864 }
Paul Duffin76fdd672022-12-12 18:00:47 +0000865 defaultAllowPrerelease := ctx.Config().IsEnvTrue("SOONG_ALLOW_PRERELEASE_APEXES")
Paul Duffin24704672021-04-06 16:09:30 +0100866 apexSet := android.SingleSourcePathFromSupplier(ctx, srcsSupplier, "set")
867 p.extractedApex = android.PathForModuleOut(ctx, "extracted", apexSet.Base())
Anton Hansson805e0a52022-11-25 14:06:46 +0000868 // Filter out NativeBridge archs (b/260115309)
869 abis := java.SupportedAbis(ctx, true)
Paul Duffin24704672021-04-06 16:09:30 +0100870 ctx.Build(pctx,
871 android.BuildParams{
872 Rule: extractMatchingApex,
873 Description: "Extract an apex from an apex set",
874 Inputs: android.Paths{apexSet},
875 Output: p.extractedApex,
876 Args: map[string]string{
Anton Hansson805e0a52022-11-25 14:06:46 +0000877 "abis": strings.Join(abis, ","),
Paul Duffin76fdd672022-12-12 18:00:47 +0000878 "allow-prereleased": strconv.FormatBool(proptools.BoolDefault(p.properties.Prerelease, defaultAllowPrerelease)),
Paul Duffin24704672021-04-06 16:09:30 +0100879 "sdk-version": ctx.Config().PlatformSdkVersion().String(),
Pranav Gupta51645ff2023-03-20 16:19:53 -0700880 "skip-sdk-check": strconv.FormatBool(ctx.Config().IsEnvTrue("SOONG_SKIP_APPSET_SDK_CHECK")),
Paul Duffin24704672021-04-06 16:09:30 +0100881 },
882 })
883}
884
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700885type ApexSet struct {
Jiyong Park10e926b2020-07-16 21:38:56 +0900886 prebuiltCommon
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700887
888 properties ApexSetProperties
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700889}
890
Paul Duffin24704672021-04-06 16:09:30 +0100891type ApexExtractorProperties struct {
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700892 // the .apks file path that contains prebuilt apex files to be extracted.
Pranav Guptaeba03b02022-09-27 00:27:08 +0000893 Set *string `android:"path"`
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700894
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -0700895 Sanitized struct {
896 None struct {
Pranav Guptaeba03b02022-09-27 00:27:08 +0000897 Set *string `android:"path"`
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -0700898 }
899 Address struct {
Pranav Guptaeba03b02022-09-27 00:27:08 +0000900 Set *string `android:"path"`
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -0700901 }
902 Hwaddress struct {
Pranav Guptaeba03b02022-09-27 00:27:08 +0000903 Set *string `android:"path"`
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -0700904 }
905 }
906
Paul Duffin24704672021-04-06 16:09:30 +0100907 // apexes in this set use prerelease SDK version
908 Prerelease *bool
909}
910
911func (e *ApexExtractorProperties) prebuiltSrcs(ctx android.BaseModuleContext) []string {
912 var srcs []string
913 if e.Set != nil {
914 srcs = append(srcs, *e.Set)
915 }
916
Jooyung Han8d4a1f02023-08-23 13:54:08 +0900917 sanitizers := ctx.Config().SanitizeDevice()
Paul Duffin24704672021-04-06 16:09:30 +0100918
919 if android.InList("address", sanitizers) && e.Sanitized.Address.Set != nil {
920 srcs = append(srcs, *e.Sanitized.Address.Set)
921 } else if android.InList("hwaddress", sanitizers) && e.Sanitized.Hwaddress.Set != nil {
922 srcs = append(srcs, *e.Sanitized.Hwaddress.Set)
923 } else if e.Sanitized.None.Set != nil {
924 srcs = append(srcs, *e.Sanitized.None.Set)
925 }
926
927 return srcs
928}
929
930type ApexSetProperties struct {
931 ApexExtractorProperties
932
Paul Duffinef6b6952021-06-15 11:34:01 +0100933 PrebuiltCommonProperties
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -0700934}
935
936func (a *ApexSet) hasSanitizedSource(sanitizer string) bool {
937 if sanitizer == "address" {
938 return a.properties.Sanitized.Address.Set != nil
939 }
940 if sanitizer == "hwaddress" {
941 return a.properties.Sanitized.Hwaddress.Set != nil
942 }
943
944 return false
945}
946
Paul Duffin4f2282c2022-12-12 17:44:33 +0000947func (a *ApexSet) OutputFiles(tag string) (android.Paths, error) {
948 switch tag {
949 case "":
950 return android.Paths{a.outputApex}, nil
951 default:
952 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
953 }
954}
955
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700956// prebuilt_apex imports an `.apex` file into the build graph as if it was built with apex.
957func apexSetFactory() android.Module {
958 module := &ApexSet{}
Paul Duffinef6b6952021-06-15 11:34:01 +0100959 module.AddProperties(&module.properties)
960 module.initPrebuiltCommon(module, &module.properties.PrebuiltCommonProperties)
Paul Duffin24704672021-04-06 16:09:30 +0100961
Paul Duffin24704672021-04-06 16:09:30 +0100962 return module
963}
964
Paul Duffin5dda3e32021-05-05 14:13:27 +0100965func createApexExtractorModule(ctx android.TopDownMutatorContext, name string, apexExtractorProperties *ApexExtractorProperties) {
Paul Duffin24704672021-04-06 16:09:30 +0100966 props := struct {
967 Name *string
968 }{
969 Name: proptools.StringPtr(name),
Evgenii Stepanov2080bfe2020-07-24 15:35:40 -0700970 }
971
Paul Duffin24704672021-04-06 16:09:30 +0100972 ctx.CreateModule(privateApexExtractorModuleFactory,
973 &props,
974 apexExtractorProperties,
975 )
976}
977
978func apexExtractorModuleName(baseModuleName string) string {
979 return baseModuleName + ".apex.extractor"
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700980}
981
Paul Duffin5dda3e32021-05-05 14:13:27 +0100982var _ prebuiltApexModuleCreator = (*ApexSet)(nil)
983
984// createPrebuiltApexModules creates modules necessary to export files from the apex set to other
985// modules.
986//
987// This effectively does for apex_set what Prebuilt.createPrebuiltApexModules does for a
988// prebuilt_apex except that instead of creating a selector module which selects one .apex file
989// from those provided this creates an extractor module which extracts the appropriate .apex file
990// from the zip file containing them.
991func (a *ApexSet) createPrebuiltApexModules(ctx android.TopDownMutatorContext) {
992 baseModuleName := a.BaseModuleName()
993
994 apexExtractorModuleName := apexExtractorModuleName(baseModuleName)
995 createApexExtractorModule(ctx, apexExtractorModuleName, &a.properties.ApexExtractorProperties)
996
997 apexFileSource := ":" + apexExtractorModuleName
Jiakai Zhang774dd302021-09-26 03:54:25 +0000998 a.createDeapexerModuleIfNeeded(ctx, deapexerModuleName(baseModuleName), apexFileSource)
Paul Duffin5dda3e32021-05-05 14:13:27 +0100999
1000 // After passing the arch specific src properties to the creating the apex selector module
Paul Duffinbb0dc132021-05-05 16:58:08 +01001001 a.prebuiltCommonProperties.Selected_apex = proptools.StringPtr(apexFileSource)
Paul Duffin5dda3e32021-05-05 14:13:27 +01001002}
1003
Paul Duffin57f83592021-05-05 15:09:44 +01001004func (a *ApexSet) ComponentDepsMutator(ctx android.BottomUpMutatorContext) {
1005 a.prebuiltApexContentsDeps(ctx)
Paul Duffinf58fd9a2021-04-06 16:00:22 +01001006}
1007
1008var _ ApexInfoMutator = (*ApexSet)(nil)
1009
1010func (a *ApexSet) ApexInfoMutator(mctx android.TopDownMutatorContext) {
1011 a.apexInfoMutator(mctx)
1012}
1013
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001014func (a *ApexSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jooyung Han286957d2023-10-30 16:17:56 +09001015 a.apexKeysPath = writeApexKeys(ctx, a)
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001016 a.installFilename = a.InstallFilename()
Samiul Islam7c02e262021-09-08 17:48:28 +01001017 if !strings.HasSuffix(a.installFilename, imageApexSuffix) && !strings.HasSuffix(a.installFilename, imageCapexSuffix) {
1018 ctx.ModuleErrorf("filename should end in %s or %s for apex_set", imageApexSuffix, imageCapexSuffix)
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001019 }
1020
Paul Duffinbb0dc132021-05-05 16:58:08 +01001021 inputApex := android.OptionalPathForModuleSrc(ctx, a.prebuiltCommonProperties.Selected_apex).Path()
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001022 a.outputApex = android.PathForModuleOut(ctx, a.installFilename)
Paul Duffin24704672021-04-06 16:09:30 +01001023 ctx.Build(pctx, android.BuildParams{
1024 Rule: android.Cp,
1025 Input: inputApex,
1026 Output: a.outputApex,
1027 })
Jiyong Park10e926b2020-07-16 21:38:56 +09001028
1029 if a.prebuiltCommon.checkForceDisable(ctx) {
Colin Crossa9c8c9f2020-12-16 10:20:23 -08001030 a.HideFromMake()
Jiyong Park10e926b2020-07-16 21:38:56 +09001031 return
1032 }
1033
Spandan Das2069c3f2023-12-06 19:40:24 +00001034 // dexpreopt any system server jars if present
1035 a.dexpreoptSystemServerJars(ctx)
1036
Spandan Dasda739a32023-12-13 00:06:32 +00001037 // provide info used for generating the boot image
1038 a.provideApexExportsInfo(ctx)
1039
Paul Duffinc30aea22021-06-15 19:10:11 +01001040 // Save the files that need to be made available to Make.
1041 a.initApexFilesForAndroidMk(ctx)
1042
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001043 a.installDir = android.PathForModuleInstall(ctx, "apex")
1044 if a.installable() {
Colin Cross730e3f62021-12-08 21:09:04 -08001045 a.installedFile = ctx.InstallFile(a.installDir, a.installFilename, a.outputApex)
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001046 }
1047
1048 // in case that apex_set replaces source apex (using prefer: prop)
Jooyung Han06a8a1c2023-08-23 11:11:43 +09001049 a.compatSymlinks = makeCompatSymlinks(a.BaseModuleName(), ctx)
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001050 // or that apex_set overrides other apexes (using overrides: prop)
Paul Duffinef6b6952021-06-15 11:34:01 +01001051 for _, overridden := range a.prebuiltCommonProperties.Overrides {
Jooyung Han06a8a1c2023-08-23 11:11:43 +09001052 a.compatSymlinks = append(a.compatSymlinks, makeCompatSymlinks(overridden, ctx)...)
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001053 }
1054}
1055
Paul Duffinef6b6952021-06-15 11:34:01 +01001056type systemExtContext struct {
1057 android.ModuleContext
1058}
1059
1060func (*systemExtContext) SystemExtSpecific() bool {
1061 return true
Jaewoong Jungfa00c062020-05-14 14:15:24 -07001062}