2019-01-17 00:15:52 +01:00
|
|
|
// 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 (
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
var hiddenAPIGenerateCSVRule = pctx.AndroidStaticRule("hiddenAPIGenerateCSV", blueprint.RuleParams{
|
2019-01-18 17:30:03 +01:00
|
|
|
Command: "${config.Class2Greylist} --stub-api-flags ${stubAPIFlags} $in $outFlag $out",
|
2019-01-17 00:15:52 +01:00
|
|
|
CommandDeps: []string{"${config.Class2Greylist}"},
|
2019-01-18 17:30:03 +01:00
|
|
|
}, "outFlag", "stubAPIFlags")
|
2019-01-17 00:15:52 +01:00
|
|
|
|
|
|
|
func hiddenAPIGenerateCSV(ctx android.ModuleContext, classesJar android.Path) {
|
|
|
|
flagsCSV := android.PathForModuleOut(ctx, "hiddenapi", "flags.csv")
|
|
|
|
metadataCSV := android.PathForModuleOut(ctx, "hiddenapi", "metadata.csv")
|
2019-01-18 17:30:03 +01:00
|
|
|
stubFlagsCSV := &bootImagePath{ctx.Config().HiddenAPIStubFlags()}
|
2019-01-17 00:15:52 +01:00
|
|
|
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: hiddenAPIGenerateCSVRule,
|
|
|
|
Description: "hiddenapi flags",
|
|
|
|
Input: classesJar,
|
|
|
|
Output: flagsCSV,
|
2019-01-18 17:30:03 +01:00
|
|
|
Implicit: stubFlagsCSV,
|
2019-01-17 00:15:52 +01:00
|
|
|
Args: map[string]string{
|
2019-01-18 17:30:03 +01:00
|
|
|
"outFlag": "--write-flags-csv",
|
|
|
|
"stubAPIFlags": stubFlagsCSV.String(),
|
2019-01-17 00:15:52 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: hiddenAPIGenerateCSVRule,
|
|
|
|
Description: "hiddenapi metadata",
|
|
|
|
Input: classesJar,
|
|
|
|
Output: metadataCSV,
|
2019-01-18 17:30:03 +01:00
|
|
|
Implicit: stubFlagsCSV,
|
2019-01-17 00:15:52 +01:00
|
|
|
Args: map[string]string{
|
2019-01-18 17:30:03 +01:00
|
|
|
"outFlag": "--write-metadata-csv",
|
|
|
|
"stubAPIFlags": stubFlagsCSV.String(),
|
2019-01-17 00:15:52 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
hiddenAPISaveCSVOutputs(ctx, flagsCSV, metadataCSV)
|
|
|
|
}
|
|
|
|
|
|
|
|
var hiddenAPIEncodeDexRule = pctx.AndroidStaticRule("hiddenAPIEncodeDex", blueprint.RuleParams{
|
|
|
|
Command: `rm -rf $tmpDir && mkdir -p $tmpDir && mkdir $tmpDir/dex-input && mkdir $tmpDir/dex-output && ` +
|
|
|
|
`unzip -o -q $in 'classes*.dex' -d $tmpDir/dex-input && ` +
|
|
|
|
`for INPUT_DEX in $$(find $tmpDir/dex-input -maxdepth 1 -name 'classes*.dex' | sort); do ` +
|
|
|
|
` echo "--input-dex=$${INPUT_DEX}"; ` +
|
|
|
|
` echo "--output-dex=$tmpDir/dex-output/$$(basename $${INPUT_DEX})"; ` +
|
|
|
|
`done | xargs ${config.HiddenAPI} encode --api-flags=$flags && ` +
|
2019-01-19 07:03:02 +01:00
|
|
|
`${config.SoongZipCmd} $soongZipFlags -o $tmpDir/dex.jar -C $tmpDir/dex-output -f "$tmpDir/dex-output/classes*.dex" && ` +
|
2019-01-17 00:15:52 +01:00
|
|
|
`${config.MergeZipsCmd} -D -zipToNotStrip $tmpDir/dex.jar -stripFile "classes*.dex" $out $tmpDir/dex.jar $in`,
|
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.HiddenAPI}",
|
|
|
|
"${config.SoongZipCmd}",
|
|
|
|
"${config.MergeZipsCmd}",
|
|
|
|
},
|
2019-01-19 07:03:02 +01:00
|
|
|
}, "flags", "tmpDir", "soongZipFlags")
|
|
|
|
|
|
|
|
func hiddenAPIEncodeDex(ctx android.ModuleContext, output android.WritablePath, dexInput android.WritablePath,
|
|
|
|
uncompressDex bool) {
|
2019-01-17 00:15:52 +01:00
|
|
|
|
|
|
|
flags := &bootImagePath{ctx.Config().HiddenAPIFlags()}
|
|
|
|
|
2019-01-19 07:03:02 +01:00
|
|
|
// The encode dex rule requires unzipping and rezipping the classes.dex files, ensure that if it was uncompressed
|
|
|
|
// in the input it stays uncompressed in the output.
|
|
|
|
soongZipFlags := ""
|
|
|
|
if uncompressDex {
|
|
|
|
soongZipFlags = "-L 0"
|
|
|
|
}
|
|
|
|
|
2019-01-17 00:15:52 +01:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: hiddenAPIEncodeDexRule,
|
|
|
|
Description: "hiddenapi encode dex",
|
|
|
|
Input: dexInput,
|
|
|
|
Output: output,
|
|
|
|
Implicit: flags,
|
|
|
|
Args: map[string]string{
|
2019-01-19 07:03:02 +01:00
|
|
|
"flags": flags.String(),
|
|
|
|
"tmpDir": android.PathForModuleOut(ctx, "hiddenapi", "dex").String(),
|
|
|
|
"soongZipFlags": soongZipFlags,
|
2019-01-17 00:15:52 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
hiddenAPISaveDexInputs(ctx, dexInput)
|
|
|
|
}
|
|
|
|
|
|
|
|
const hiddenAPIOutputsKey = "hiddenAPIOutputsKey"
|
|
|
|
|
|
|
|
var hiddenAPIOutputsLock sync.Mutex
|
|
|
|
|
|
|
|
func hiddenAPIGetOutputs(config android.Config) (*android.Paths, *android.Paths, *android.Paths) {
|
|
|
|
type threePathsPtrs [3]*android.Paths
|
|
|
|
s := config.Once(hiddenAPIOutputsKey, func() interface{} {
|
|
|
|
return threePathsPtrs{new(android.Paths), new(android.Paths), new(android.Paths)}
|
|
|
|
}).(threePathsPtrs)
|
|
|
|
return s[0], s[1], s[2]
|
|
|
|
}
|
|
|
|
|
|
|
|
func hiddenAPISaveCSVOutputs(ctx android.ModuleContext, flagsCSV, metadataCSV android.Path) {
|
|
|
|
flagsCSVList, metadataCSVList, _ := hiddenAPIGetOutputs(ctx.Config())
|
|
|
|
|
|
|
|
hiddenAPIOutputsLock.Lock()
|
|
|
|
defer hiddenAPIOutputsLock.Unlock()
|
|
|
|
|
|
|
|
*flagsCSVList = append(*flagsCSVList, flagsCSV)
|
|
|
|
*metadataCSVList = append(*metadataCSVList, metadataCSV)
|
|
|
|
}
|
|
|
|
|
|
|
|
func hiddenAPISaveDexInputs(ctx android.ModuleContext, dexInput android.Path) {
|
|
|
|
_, _, dexInputList := hiddenAPIGetOutputs(ctx.Config())
|
|
|
|
|
|
|
|
hiddenAPIOutputsLock.Lock()
|
|
|
|
defer hiddenAPIOutputsLock.Unlock()
|
|
|
|
|
|
|
|
*dexInputList = append(*dexInputList, dexInput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
android.RegisterMakeVarsProvider(pctx, hiddenAPIMakeVars)
|
|
|
|
}
|
|
|
|
|
|
|
|
func hiddenAPIMakeVars(ctx android.MakeVarsContext) {
|
|
|
|
flagsCSVList, metadataCSVList, dexInputList := hiddenAPIGetOutputs(ctx.Config())
|
|
|
|
|
|
|
|
export := func(name string, paths *android.Paths) {
|
|
|
|
s := paths.Strings()
|
|
|
|
sort.Strings(s)
|
|
|
|
ctx.Strict(name, strings.Join(s, " "))
|
|
|
|
}
|
|
|
|
|
|
|
|
export("SOONG_HIDDENAPI_FLAGS", flagsCSVList)
|
|
|
|
export("SOONG_HIDDENAPI_GREYLIST_METADATA", metadataCSVList)
|
|
|
|
export("SOONG_HIDDENAPI_DEX_INPUTS", dexInputList)
|
|
|
|
}
|