bae4749de2
By enabling these hiddenapi CSV files to be prebuilt, it becomes possible to create a split build that supports the hiddenapi encode dex step, but doesn't contain all of the java sources needed to generate the CSV files. Bug: 175048716 Test: m nothing Test: new TestHiddenAPISingletonWithPrebuiltCsvFile Test: local build without prebuilt hiddenapi Test: local build with prebuilt hiddenapi Change-Id: I805ea3ec05860d2df211a3985ec025bf36f0d775
460 lines
16 KiB
Go
460 lines
16 KiB
Go
// Copyright 2019 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package java
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"android/soong/android"
|
|
"android/soong/genrule"
|
|
)
|
|
|
|
func init() {
|
|
android.RegisterSingletonType("hiddenapi", hiddenAPISingletonFactory)
|
|
android.RegisterSingletonType("hiddenapi_index", hiddenAPIIndexSingletonFactory)
|
|
android.RegisterModuleType("hiddenapi_flags", hiddenAPIFlagsFactory)
|
|
}
|
|
|
|
type hiddenAPISingletonPathsStruct struct {
|
|
flags android.OutputPath
|
|
index android.OutputPath
|
|
metadata android.OutputPath
|
|
stubFlags android.OutputPath
|
|
}
|
|
|
|
var hiddenAPISingletonPathsKey = android.NewOnceKey("hiddenAPISingletonPathsKey")
|
|
|
|
// hiddenAPISingletonPaths creates all the paths for singleton files the first time it is called, which may be
|
|
// from a ModuleContext that needs to reference a file that will be created by a singleton rule that hasn't
|
|
// yet been created.
|
|
func hiddenAPISingletonPaths(ctx android.PathContext) hiddenAPISingletonPathsStruct {
|
|
return ctx.Config().Once(hiddenAPISingletonPathsKey, func() interface{} {
|
|
return hiddenAPISingletonPathsStruct{
|
|
flags: android.PathForOutput(ctx, "hiddenapi", "hiddenapi-flags.csv"),
|
|
index: android.PathForOutput(ctx, "hiddenapi", "hiddenapi-index.csv"),
|
|
metadata: android.PathForOutput(ctx, "hiddenapi", "hiddenapi-unsupported.csv"),
|
|
stubFlags: android.PathForOutput(ctx, "hiddenapi", "hiddenapi-stub-flags.txt"),
|
|
}
|
|
}).(hiddenAPISingletonPathsStruct)
|
|
}
|
|
|
|
func hiddenAPISingletonFactory() android.Singleton {
|
|
return &hiddenAPISingleton{}
|
|
}
|
|
|
|
type hiddenAPISingleton struct {
|
|
flags, metadata android.Path
|
|
}
|
|
|
|
// hiddenAPI singleton rules
|
|
func (h *hiddenAPISingleton) GenerateBuildActions(ctx android.SingletonContext) {
|
|
// Don't run any hiddenapi rules if UNSAFE_DISABLE_HIDDENAPI_FLAGS=true
|
|
if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
|
|
return
|
|
}
|
|
|
|
stubFlagsRule(ctx)
|
|
|
|
// If there is a prebuilt hiddenapi dir, generate rules to use the
|
|
// files within. Generally, we build the hiddenapi files from source
|
|
// during the build, ensuring consistency. It's possible, in a split
|
|
// build (framework and vendor) scenario, for the vendor build to use
|
|
// prebuilt hiddenapi files from the framework build. In this scenario,
|
|
// the framework and vendor builds must use the same source to ensure
|
|
// consistency.
|
|
|
|
if ctx.Config().PrebuiltHiddenApiDir(ctx) != "" {
|
|
h.flags = prebuiltFlagsRule(ctx)
|
|
return
|
|
}
|
|
|
|
// These rules depend on files located in frameworks/base, skip them if running in a tree that doesn't have them.
|
|
if ctx.Config().FrameworksBaseDirExists(ctx) {
|
|
h.flags = flagsRule(ctx)
|
|
h.metadata = metadataRule(ctx)
|
|
} else {
|
|
h.flags = emptyFlagsRule(ctx)
|
|
}
|
|
}
|
|
|
|
// Export paths to Make. INTERNAL_PLATFORM_HIDDENAPI_FLAGS is used by Make rules in art/ and cts/.
|
|
// Both paths are used to call dist-for-goals.
|
|
func (h *hiddenAPISingleton) MakeVars(ctx android.MakeVarsContext) {
|
|
if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
|
|
return
|
|
}
|
|
|
|
ctx.Strict("INTERNAL_PLATFORM_HIDDENAPI_FLAGS", h.flags.String())
|
|
|
|
if h.metadata != nil {
|
|
ctx.Strict("INTERNAL_PLATFORM_HIDDENAPI_GREYLIST_METADATA", h.metadata.String())
|
|
}
|
|
}
|
|
|
|
// stubFlagsRule creates the rule to build hiddenapi-stub-flags.txt out of dex jars from stub modules and boot image
|
|
// modules.
|
|
func stubFlagsRule(ctx android.SingletonContext) {
|
|
var publicStubModules []string
|
|
var systemStubModules []string
|
|
var testStubModules []string
|
|
var corePlatformStubModules []string
|
|
|
|
if ctx.Config().AlwaysUsePrebuiltSdks() {
|
|
// Build configuration mandates using prebuilt stub modules
|
|
publicStubModules = append(publicStubModules, "sdk_public_current_android")
|
|
systemStubModules = append(systemStubModules, "sdk_system_current_android")
|
|
testStubModules = append(testStubModules, "sdk_test_current_android")
|
|
} else {
|
|
// Use stub modules built from source
|
|
publicStubModules = append(publicStubModules, "android_stubs_current")
|
|
systemStubModules = append(systemStubModules, "android_system_stubs_current")
|
|
testStubModules = append(testStubModules, "android_test_stubs_current")
|
|
}
|
|
// We do not have prebuilts of the core platform api yet
|
|
corePlatformStubModules = append(corePlatformStubModules, "legacy.core.platform.api.stubs")
|
|
|
|
// Add the android.test.base to the set of stubs only if the android.test.base module is on
|
|
// the boot jars list as the runtime will only enforce hiddenapi access against modules on
|
|
// that list.
|
|
if inList("android.test.base", ctx.Config().BootJars()) {
|
|
if ctx.Config().AlwaysUsePrebuiltSdks() {
|
|
publicStubModules = append(publicStubModules, "sdk_public_current_android.test.base")
|
|
} else {
|
|
publicStubModules = append(publicStubModules, "android.test.base.stubs")
|
|
}
|
|
}
|
|
|
|
// Allow products to define their own stubs for custom product jars that apps can use.
|
|
publicStubModules = append(publicStubModules, ctx.Config().ProductHiddenAPIStubs()...)
|
|
systemStubModules = append(systemStubModules, ctx.Config().ProductHiddenAPIStubsSystem()...)
|
|
testStubModules = append(testStubModules, ctx.Config().ProductHiddenAPIStubsTest()...)
|
|
if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT") {
|
|
publicStubModules = append(publicStubModules, "jacoco-stubs")
|
|
}
|
|
|
|
publicStubPaths := make(android.Paths, len(publicStubModules))
|
|
systemStubPaths := make(android.Paths, len(systemStubModules))
|
|
testStubPaths := make(android.Paths, len(testStubModules))
|
|
corePlatformStubPaths := make(android.Paths, len(corePlatformStubModules))
|
|
|
|
moduleListToPathList := map[*[]string]android.Paths{
|
|
&publicStubModules: publicStubPaths,
|
|
&systemStubModules: systemStubPaths,
|
|
&testStubModules: testStubPaths,
|
|
&corePlatformStubModules: corePlatformStubPaths,
|
|
}
|
|
|
|
var bootDexJars android.Paths
|
|
|
|
ctx.VisitAllModules(func(module android.Module) {
|
|
// Collect dex jar paths for the modules listed above.
|
|
if j, ok := module.(Dependency); ok {
|
|
name := ctx.ModuleName(module)
|
|
for moduleList, pathList := range moduleListToPathList {
|
|
if i := android.IndexList(name, *moduleList); i != -1 {
|
|
pathList[i] = j.DexJarBuildPath()
|
|
}
|
|
}
|
|
}
|
|
|
|
// Collect dex jar paths for modules that had hiddenapi encode called on them.
|
|
if h, ok := module.(hiddenAPIIntf); ok {
|
|
if jar := h.bootDexJar(); jar != nil {
|
|
// For a java lib included in an APEX, only take the one built for
|
|
// the platform variant, and skip the variants for APEXes.
|
|
// Otherwise, the hiddenapi tool will complain about duplicated classes
|
|
apexInfo := ctx.ModuleProvider(module, android.ApexInfoProvider).(android.ApexInfo)
|
|
if !apexInfo.IsForPlatform() {
|
|
return
|
|
}
|
|
|
|
bootDexJars = append(bootDexJars, jar)
|
|
}
|
|
}
|
|
})
|
|
|
|
var missingDeps []string
|
|
// Ensure all modules were converted to paths
|
|
for moduleList, pathList := range moduleListToPathList {
|
|
for i := range pathList {
|
|
if pathList[i] == nil {
|
|
moduleName := (*moduleList)[i]
|
|
pathList[i] = android.PathForOutput(ctx, "missing/module", moduleName)
|
|
if ctx.Config().AllowMissingDependencies() {
|
|
missingDeps = append(missingDeps, moduleName)
|
|
} else {
|
|
ctx.Errorf("failed to find dex jar path for module %q",
|
|
moduleName)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Singleton rule which applies hiddenapi on all boot class path dex files.
|
|
rule := android.NewRuleBuilder(pctx, ctx)
|
|
|
|
outputPath := hiddenAPISingletonPaths(ctx).stubFlags
|
|
tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp")
|
|
|
|
rule.MissingDeps(missingDeps)
|
|
|
|
rule.Command().
|
|
Tool(ctx.Config().HostToolPath(ctx, "hiddenapi")).
|
|
Text("list").
|
|
FlagForEachInput("--boot-dex=", bootDexJars).
|
|
FlagWithInputList("--public-stub-classpath=", publicStubPaths, ":").
|
|
FlagWithInputList("--system-stub-classpath=", systemStubPaths, ":").
|
|
FlagWithInputList("--test-stub-classpath=", testStubPaths, ":").
|
|
FlagWithInputList("--core-platform-stub-classpath=", corePlatformStubPaths, ":").
|
|
FlagWithOutput("--out-api-flags=", tempPath)
|
|
|
|
commitChangeForRestat(rule, tempPath, outputPath)
|
|
|
|
rule.Build("hiddenAPIStubFlagsFile", "hiddenapi stub flags")
|
|
}
|
|
|
|
func prebuiltFlagsRule(ctx android.SingletonContext) android.Path {
|
|
outputPath := hiddenAPISingletonPaths(ctx).flags
|
|
inputPath := android.PathForSource(ctx, ctx.Config().PrebuiltHiddenApiDir(ctx), "hiddenapi-flags.csv")
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
Rule: android.Cp,
|
|
Output: outputPath,
|
|
Input: inputPath,
|
|
})
|
|
|
|
return outputPath
|
|
}
|
|
|
|
// flagsRule creates a rule to build hiddenapi-flags.csv out of flags.csv files generated for boot image modules and
|
|
// the unsupported API.
|
|
func flagsRule(ctx android.SingletonContext) android.Path {
|
|
var flagsCSV android.Paths
|
|
var combinedRemovedApis android.Path
|
|
|
|
ctx.VisitAllModules(func(module android.Module) {
|
|
if h, ok := module.(hiddenAPIIntf); ok {
|
|
if csv := h.flagsCSV(); csv != nil {
|
|
flagsCSV = append(flagsCSV, csv)
|
|
}
|
|
} else if g, ok := module.(*genrule.Module); ok {
|
|
if ctx.ModuleName(module) == "combined-removed-dex" {
|
|
if len(g.GeneratedSourceFiles()) != 1 || combinedRemovedApis != nil {
|
|
ctx.Errorf("Expected 1 combined-removed-dex module that generates 1 output file.")
|
|
}
|
|
combinedRemovedApis = g.GeneratedSourceFiles()[0]
|
|
}
|
|
}
|
|
})
|
|
|
|
if combinedRemovedApis == nil {
|
|
ctx.Errorf("Failed to find combined-removed-dex.")
|
|
}
|
|
|
|
rule := android.NewRuleBuilder(pctx, ctx)
|
|
|
|
outputPath := hiddenAPISingletonPaths(ctx).flags
|
|
tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp")
|
|
|
|
stubFlags := hiddenAPISingletonPaths(ctx).stubFlags
|
|
|
|
rule.Command().
|
|
Tool(android.PathForSource(ctx, "frameworks/base/tools/hiddenapi/generate_hiddenapi_lists.py")).
|
|
FlagWithInput("--csv ", stubFlags).
|
|
Inputs(flagsCSV).
|
|
FlagWithInput("--unsupported ",
|
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-unsupported.txt")).
|
|
FlagWithInput("--unsupported ", combinedRemovedApis).Flag("--ignore-conflicts ").FlagWithArg("--tag ", "removed").
|
|
FlagWithInput("--max-target-r ",
|
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-max-target-r-loprio.txt")).FlagWithArg("--tag ", "lo-prio").
|
|
FlagWithInput("--max-target-q ",
|
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-max-target-q.txt")).
|
|
FlagWithInput("--max-target-p ",
|
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-max-target-p.txt")).
|
|
FlagWithInput("--max-target-o ", android.PathForSource(
|
|
ctx, "frameworks/base/config/hiddenapi-max-target-o.txt")).Flag("--ignore-conflicts ").FlagWithArg("--tag ", "lo-prio").
|
|
FlagWithInput("--blocked ",
|
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-force-blocked.txt")).
|
|
FlagWithInput("--unsupported ", android.PathForSource(
|
|
ctx, "frameworks/base/config/hiddenapi-unsupported-packages.txt")).Flag("--packages ").
|
|
FlagWithOutput("--output ", tempPath)
|
|
|
|
commitChangeForRestat(rule, tempPath, outputPath)
|
|
|
|
rule.Build("hiddenAPIFlagsFile", "hiddenapi flags")
|
|
|
|
return outputPath
|
|
}
|
|
|
|
// emptyFlagsRule creates a rule to build an empty hiddenapi-flags.csv, which is needed by master-art-host builds that
|
|
// have a partial manifest without frameworks/base but still need to build a boot image.
|
|
func emptyFlagsRule(ctx android.SingletonContext) android.Path {
|
|
rule := android.NewRuleBuilder(pctx, ctx)
|
|
|
|
outputPath := hiddenAPISingletonPaths(ctx).flags
|
|
|
|
rule.Command().Text("rm").Flag("-f").Output(outputPath)
|
|
rule.Command().Text("touch").Output(outputPath)
|
|
|
|
rule.Build("emptyHiddenAPIFlagsFile", "empty hiddenapi flags")
|
|
|
|
return outputPath
|
|
}
|
|
|
|
// metadataRule creates a rule to build hiddenapi-unsupported.csv out of the metadata.csv files generated for boot image
|
|
// modules.
|
|
func metadataRule(ctx android.SingletonContext) android.Path {
|
|
var metadataCSV android.Paths
|
|
|
|
ctx.VisitAllModules(func(module android.Module) {
|
|
if h, ok := module.(hiddenAPIIntf); ok {
|
|
if csv := h.metadataCSV(); csv != nil {
|
|
metadataCSV = append(metadataCSV, csv)
|
|
}
|
|
}
|
|
})
|
|
|
|
rule := android.NewRuleBuilder(pctx, ctx)
|
|
|
|
outputPath := hiddenAPISingletonPaths(ctx).metadata
|
|
|
|
rule.Command().
|
|
BuiltTool("merge_csv").
|
|
FlagWithOutput("--output=", outputPath).
|
|
Inputs(metadataCSV)
|
|
|
|
rule.Build("hiddenAPIGreylistMetadataFile", "hiddenapi greylist metadata")
|
|
|
|
return outputPath
|
|
}
|
|
|
|
// commitChangeForRestat adds a command to a rule that updates outputPath from tempPath if they are different. It
|
|
// also marks the rule as restat and marks the tempPath as a temporary file that should not be considered an output of
|
|
// the rule.
|
|
func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) {
|
|
rule.Restat()
|
|
rule.Temporary(tempPath)
|
|
rule.Command().
|
|
Text("(").
|
|
Text("if").
|
|
Text("cmp -s").Input(tempPath).Output(outputPath).Text(";").
|
|
Text("then").
|
|
Text("rm").Input(tempPath).Text(";").
|
|
Text("else").
|
|
Text("mv").Input(tempPath).Output(outputPath).Text(";").
|
|
Text("fi").
|
|
Text(")")
|
|
}
|
|
|
|
type hiddenAPIFlagsProperties struct {
|
|
// name of the file into which the flags will be copied.
|
|
Filename *string
|
|
}
|
|
|
|
type hiddenAPIFlags struct {
|
|
android.ModuleBase
|
|
|
|
properties hiddenAPIFlagsProperties
|
|
|
|
outputFilePath android.OutputPath
|
|
}
|
|
|
|
func (h *hiddenAPIFlags) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
filename := String(h.properties.Filename)
|
|
|
|
inputPath := hiddenAPISingletonPaths(ctx).flags
|
|
h.outputFilePath = android.PathForModuleOut(ctx, filename).OutputPath
|
|
|
|
// This ensures that outputFilePath has the correct name for others to
|
|
// use, as the source file may have a different name.
|
|
ctx.Build(pctx, android.BuildParams{
|
|
Rule: android.Cp,
|
|
Output: h.outputFilePath,
|
|
Input: inputPath,
|
|
})
|
|
}
|
|
|
|
func (h *hiddenAPIFlags) OutputFiles(tag string) (android.Paths, error) {
|
|
switch tag {
|
|
case "":
|
|
return android.Paths{h.outputFilePath}, nil
|
|
default:
|
|
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
|
|
}
|
|
}
|
|
|
|
// hiddenapi-flags provides access to the hiddenapi-flags.csv file generated during the build.
|
|
func hiddenAPIFlagsFactory() android.Module {
|
|
module := &hiddenAPIFlags{}
|
|
module.AddProperties(&module.properties)
|
|
android.InitAndroidArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon)
|
|
return module
|
|
}
|
|
|
|
func hiddenAPIIndexSingletonFactory() android.Singleton {
|
|
return &hiddenAPIIndexSingleton{}
|
|
}
|
|
|
|
type hiddenAPIIndexSingleton struct {
|
|
index android.Path
|
|
}
|
|
|
|
func (h *hiddenAPIIndexSingleton) GenerateBuildActions(ctx android.SingletonContext) {
|
|
// Don't run any hiddenapi rules if UNSAFE_DISABLE_HIDDENAPI_FLAGS=true
|
|
if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
|
|
return
|
|
}
|
|
|
|
if ctx.Config().PrebuiltHiddenApiDir(ctx) != "" {
|
|
outputPath := hiddenAPISingletonPaths(ctx).index
|
|
inputPath := android.PathForSource(ctx, ctx.Config().PrebuiltHiddenApiDir(ctx), "hiddenapi-index.csv")
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
Rule: android.Cp,
|
|
Output: outputPath,
|
|
Input: inputPath,
|
|
})
|
|
|
|
h.index = outputPath
|
|
return
|
|
}
|
|
|
|
indexes := android.Paths{}
|
|
ctx.VisitAllModules(func(module android.Module) {
|
|
if h, ok := module.(hiddenAPIIntf); ok {
|
|
if h.indexCSV() != nil {
|
|
indexes = append(indexes, h.indexCSV())
|
|
}
|
|
}
|
|
})
|
|
|
|
rule := android.NewRuleBuilder(pctx, ctx)
|
|
rule.Command().
|
|
BuiltTool("merge_csv").
|
|
FlagWithArg("--header=", "signature,file,startline,startcol,endline,endcol,properties").
|
|
FlagWithOutput("--output=", hiddenAPISingletonPaths(ctx).index).
|
|
Inputs(indexes)
|
|
rule.Build("singleton-merged-hiddenapi-index", "Singleton merged Hidden API index")
|
|
|
|
h.index = hiddenAPISingletonPaths(ctx).index
|
|
}
|
|
|
|
func (h *hiddenAPIIndexSingleton) MakeVars(ctx android.MakeVarsContext) {
|
|
if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
|
|
return
|
|
}
|
|
|
|
ctx.Strict("INTERNAL_PLATFORM_HIDDENAPI_INDEX", h.index.String())
|
|
}
|