blob: 86531ebc72a40762ad10793bfbb745fefc2aac9f [file] [log] [blame]
Colin Crossf24a22a2019-01-31 14:12:44 -08001// Copyright 2019 Google Inc. All rights reserved.
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 java
16
17import (
18 "android/soong/android"
19)
20
21func init() {
22 android.RegisterSingletonType("hiddenapi", hiddenAPISingletonFactory)
23}
24
25type hiddenAPISingletonPathsStruct struct {
26 stubFlags android.OutputPath
27 flags android.OutputPath
28 metadata android.OutputPath
29}
30
31var hiddenAPISingletonPathsKey = android.NewOnceKey("hiddenAPISingletonPathsKey")
32
33// hiddenAPISingletonPaths creates all the paths for singleton files the first time it is called, which may be
34// from a ModuleContext that needs to reference a file that will be created by a singleton rule that hasn't
35// yet been created.
36func hiddenAPISingletonPaths(ctx android.PathContext) hiddenAPISingletonPathsStruct {
37 return ctx.Config().Once(hiddenAPISingletonPathsKey, func() interface{} {
38 return hiddenAPISingletonPathsStruct{
39 stubFlags: android.PathForOutput(ctx, "hiddenapi", "hiddenapi-stub-flags.txt"),
40 flags: android.PathForOutput(ctx, "hiddenapi", "hiddenapi-flags.csv"),
41 metadata: android.PathForOutput(ctx, "hiddenapi", "hiddenapi-greylist.csv"),
42 }
43 }).(hiddenAPISingletonPathsStruct)
44}
45
Colin Crossf24a22a2019-01-31 14:12:44 -080046func hiddenAPISingletonFactory() android.Singleton {
Colin Crossed023ec2019-02-19 12:38:45 -080047 return &hiddenAPISingleton{}
Colin Crossf24a22a2019-01-31 14:12:44 -080048}
49
Colin Crossed023ec2019-02-19 12:38:45 -080050type hiddenAPISingleton struct {
51 flags, metadata android.Path
52}
Colin Crossf24a22a2019-01-31 14:12:44 -080053
54// hiddenAPI singleton rules
Colin Crossed023ec2019-02-19 12:38:45 -080055func (h *hiddenAPISingleton) GenerateBuildActions(ctx android.SingletonContext) {
Colin Crossf24a22a2019-01-31 14:12:44 -080056 // Don't run any hiddenapi rules if UNSAFE_DISABLE_HIDDENAPI_FLAGS=true
57 if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
58 return
59 }
60
61 stubFlagsRule(ctx)
62
63 // These rules depend on files located in frameworks/base, skip them if running in a tree that doesn't have them.
64 if ctx.Config().FrameworksBaseDirExists(ctx) {
Colin Crossed023ec2019-02-19 12:38:45 -080065 h.flags = flagsRule(ctx)
66 h.metadata = metadataRule(ctx)
Colin Crossf24a22a2019-01-31 14:12:44 -080067 } else {
Colin Crossed023ec2019-02-19 12:38:45 -080068 h.flags = emptyFlagsRule(ctx)
69 }
70}
71
72// Export paths to Make. INTERNAL_PLATFORM_HIDDENAPI_FLAGS is used by Make rules in art/ and cts/.
73// Both paths are used to call dist-for-goals.
74func (h *hiddenAPISingleton) MakeVars(ctx android.MakeVarsContext) {
75 if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
76 return
77 }
78
79 ctx.Strict("INTERNAL_PLATFORM_HIDDENAPI_FLAGS", h.flags.String())
80
81 if h.metadata != nil {
82 ctx.Strict("INTERNAL_PLATFORM_HIDDENAPI_GREYLIST_METADATA", h.metadata.String())
Colin Crossf24a22a2019-01-31 14:12:44 -080083 }
84}
85
86// stubFlagsRule creates the rule to build hiddenapi-stub-flags.txt out of dex jars from stub modules and boot image
87// modules.
88func stubFlagsRule(ctx android.SingletonContext) {
89 // Public API stubs
90 publicStubModules := []string{
91 "android_stubs_current",
Paul Duffin719fed42019-02-28 16:15:44 +000092 }
93
94 // Add the android.test.base to the set of stubs only if the android.test.base module is on
95 // the boot jars list as the runtime will only enforce hiddenapi access against modules on
96 // that list.
97 if inList("android.test.base", ctx.Config().BootJars()) {
98 publicStubModules = append(publicStubModules, "android.test.base.stubs")
Colin Crossf24a22a2019-01-31 14:12:44 -080099 }
100
101 // System API stubs
102 systemStubModules := []string{
103 "android_system_stubs_current",
104 }
105
106 // Test API stubs
107 testStubModules := []string{
108 "android_test_stubs_current",
109 }
110
111 // Core Platform API stubs
112 corePlatformStubModules := []string{
113 "core.platform.api.stubs",
114 }
115
116 // Allow products to define their own stubs for custom product jars that apps can use.
117 publicStubModules = append(publicStubModules, ctx.Config().ProductHiddenAPIStubs()...)
118 systemStubModules = append(systemStubModules, ctx.Config().ProductHiddenAPIStubsSystem()...)
119 testStubModules = append(testStubModules, ctx.Config().ProductHiddenAPIStubsTest()...)
Allen Hairde816cf2019-02-25 16:37:42 -0800120 if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT") {
121 publicStubModules = append(publicStubModules, "jacoco-stubs")
122 }
Colin Crossf24a22a2019-01-31 14:12:44 -0800123
124 publicStubPaths := make(android.Paths, len(publicStubModules))
125 systemStubPaths := make(android.Paths, len(systemStubModules))
126 testStubPaths := make(android.Paths, len(testStubModules))
127 corePlatformStubPaths := make(android.Paths, len(corePlatformStubModules))
128
129 moduleListToPathList := map[*[]string]android.Paths{
130 &publicStubModules: publicStubPaths,
131 &systemStubModules: systemStubPaths,
132 &testStubModules: testStubPaths,
133 &corePlatformStubModules: corePlatformStubPaths,
134 }
135
136 var bootDexJars android.Paths
137
138 ctx.VisitAllModules(func(module android.Module) {
139 // Collect dex jar paths for the modules listed above.
140 if j, ok := module.(Dependency); ok {
141 name := ctx.ModuleName(module)
142 for moduleList, pathList := range moduleListToPathList {
143 if i := android.IndexList(name, *moduleList); i != -1 {
144 pathList[i] = j.DexJar()
145 }
146 }
147 }
148
149 // Collect dex jar paths for modules that had hiddenapi encode called on them.
150 if h, ok := module.(hiddenAPIIntf); ok {
151 if jar := h.bootDexJar(); jar != nil {
152 bootDexJars = append(bootDexJars, jar)
153 }
154 }
155 })
156
157 var missingDeps []string
158 // Ensure all modules were converted to paths
159 for moduleList, pathList := range moduleListToPathList {
160 for i := range pathList {
161 if pathList[i] == nil {
162 if ctx.Config().AllowMissingDependencies() {
163 missingDeps = append(missingDeps, (*moduleList)[i])
164 pathList[i] = android.PathForOutput(ctx, "missing")
165 } else {
166 ctx.Errorf("failed to find dex jar path for module %q",
167 (*moduleList)[i])
168 }
169 }
170 }
171 }
172
173 // Singleton rule which applies hiddenapi on all boot class path dex files.
174 rule := android.NewRuleBuilder()
175
176 outputPath := hiddenAPISingletonPaths(ctx).stubFlags
177 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp")
178
179 rule.MissingDeps(missingDeps)
180
181 rule.Command().
Colin Cross69f59a32019-02-15 10:39:37 -0800182 Tool(pctx.HostBinToolPath(ctx, "hiddenapi")).
Colin Crossf24a22a2019-01-31 14:12:44 -0800183 Text("list").
Colin Cross69f59a32019-02-15 10:39:37 -0800184 FlagForEachInput("--boot-dex=", bootDexJars).
185 FlagWithInputList("--public-stub-classpath=", publicStubPaths, ":").
Andrei Oneae04da072019-03-01 17:44:13 +0000186 FlagWithInputList("--system-stub-classpath=", systemStubPaths, ":").
187 FlagWithInputList("--test-stub-classpath=", testStubPaths, ":").
Colin Cross69f59a32019-02-15 10:39:37 -0800188 FlagWithInputList("--core-platform-stub-classpath=", corePlatformStubPaths, ":").
189 FlagWithOutput("--out-api-flags=", tempPath)
Colin Crossf24a22a2019-01-31 14:12:44 -0800190
191 commitChangeForRestat(rule, tempPath, outputPath)
192
193 rule.Build(pctx, ctx, "hiddenAPIStubFlagsFile", "hiddenapi stub flags")
194}
195
196// flagsRule creates a rule to build hiddenapi-flags.csv out of flags.csv files generated for boot image modules and
197// the greylists.
Colin Crossed023ec2019-02-19 12:38:45 -0800198func flagsRule(ctx android.SingletonContext) android.Path {
Colin Crossf24a22a2019-01-31 14:12:44 -0800199 var flagsCSV android.Paths
200
201 var greylistIgnoreConflicts android.Path
202
203 ctx.VisitAllModules(func(module android.Module) {
204 if h, ok := module.(hiddenAPIIntf); ok {
205 if csv := h.flagsCSV(); csv != nil {
206 flagsCSV = append(flagsCSV, csv)
207 }
208 } else if ds, ok := module.(*Droidstubs); ok && ctx.ModuleName(module) == "hiddenapi-lists-docs" {
209 greylistIgnoreConflicts = ds.removedDexApiFile
210 }
211 })
212
213 if greylistIgnoreConflicts == nil {
214 ctx.Errorf("failed to find removed_dex_api_filename from hiddenapi-lists-docs module")
Colin Crossed023ec2019-02-19 12:38:45 -0800215 return nil
Colin Crossf24a22a2019-01-31 14:12:44 -0800216 }
217
218 rule := android.NewRuleBuilder()
219
220 outputPath := hiddenAPISingletonPaths(ctx).flags
221 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp")
222
223 stubFlags := hiddenAPISingletonPaths(ctx).stubFlags
224
225 rule.Command().
Colin Cross69f59a32019-02-15 10:39:37 -0800226 Tool(android.PathForSource(ctx, "frameworks/base/tools/hiddenapi/generate_hiddenapi_lists.py")).
227 FlagWithInput("--csv ", stubFlags).
228 Inputs(flagsCSV).
Colin Crossf24a22a2019-01-31 14:12:44 -0800229 FlagWithInput("--greylist ",
Colin Cross69f59a32019-02-15 10:39:37 -0800230 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist.txt")).
Colin Crossf24a22a2019-01-31 14:12:44 -0800231 FlagWithInput("--greylist-ignore-conflicts ",
Colin Cross69f59a32019-02-15 10:39:37 -0800232 greylistIgnoreConflicts).
Colin Crossf24a22a2019-01-31 14:12:44 -0800233 FlagWithInput("--greylist-max-p ",
Colin Cross69f59a32019-02-15 10:39:37 -0800234 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-p.txt")).
Colin Crossf24a22a2019-01-31 14:12:44 -0800235 FlagWithInput("--greylist-max-o-ignore-conflicts ",
Colin Cross69f59a32019-02-15 10:39:37 -0800236 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-o.txt")).
Colin Crossf24a22a2019-01-31 14:12:44 -0800237 FlagWithInput("--blacklist ",
Colin Cross69f59a32019-02-15 10:39:37 -0800238 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-force-blacklist.txt")).
239 FlagWithOutput("--output ", tempPath)
Colin Crossf24a22a2019-01-31 14:12:44 -0800240
241 commitChangeForRestat(rule, tempPath, outputPath)
242
243 rule.Build(pctx, ctx, "hiddenAPIFlagsFile", "hiddenapi flags")
Colin Crossed023ec2019-02-19 12:38:45 -0800244
245 return outputPath
Colin Crossf24a22a2019-01-31 14:12:44 -0800246}
247
248// emptyFlagsRule creates a rule to build an empty hiddenapi-flags.csv, which is needed by master-art-host builds that
249// have a partial manifest without frameworks/base but still need to build a boot image.
Colin Crossed023ec2019-02-19 12:38:45 -0800250func emptyFlagsRule(ctx android.SingletonContext) android.Path {
Colin Crossf24a22a2019-01-31 14:12:44 -0800251 rule := android.NewRuleBuilder()
252
253 outputPath := hiddenAPISingletonPaths(ctx).flags
254
Colin Cross69f59a32019-02-15 10:39:37 -0800255 rule.Command().Text("rm").Flag("-f").Output(outputPath)
256 rule.Command().Text("touch").Output(outputPath)
Colin Crossf24a22a2019-01-31 14:12:44 -0800257
258 rule.Build(pctx, ctx, "emptyHiddenAPIFlagsFile", "empty hiddenapi flags")
Colin Crossed023ec2019-02-19 12:38:45 -0800259
260 return outputPath
Colin Crossf24a22a2019-01-31 14:12:44 -0800261}
262
263// metadataRule creates a rule to build hiddenapi-greylist.csv out of the metadata.csv files generated for boot image
264// modules.
Colin Crossed023ec2019-02-19 12:38:45 -0800265func metadataRule(ctx android.SingletonContext) android.Path {
Colin Crossf24a22a2019-01-31 14:12:44 -0800266 var metadataCSV android.Paths
267
268 ctx.VisitAllModules(func(module android.Module) {
269 if h, ok := module.(hiddenAPIIntf); ok {
270 if csv := h.metadataCSV(); csv != nil {
271 metadataCSV = append(metadataCSV, csv)
272 }
273 }
274 })
275
276 rule := android.NewRuleBuilder()
277
278 outputPath := hiddenAPISingletonPaths(ctx).metadata
279
280 rule.Command().
Colin Cross69f59a32019-02-15 10:39:37 -0800281 Tool(android.PathForSource(ctx, "frameworks/base/tools/hiddenapi/merge_csv.py")).
282 Inputs(metadataCSV).
Colin Crossf24a22a2019-01-31 14:12:44 -0800283 Text(">").
Colin Cross69f59a32019-02-15 10:39:37 -0800284 Output(outputPath)
Colin Crossf24a22a2019-01-31 14:12:44 -0800285
286 rule.Build(pctx, ctx, "hiddenAPIGreylistMetadataFile", "hiddenapi greylist metadata")
Colin Crossed023ec2019-02-19 12:38:45 -0800287
288 return outputPath
Colin Crossf24a22a2019-01-31 14:12:44 -0800289}
290
291// commitChangeForRestat adds a command to a rule that updates outputPath from tempPath if they are different. It
292// also marks the rule as restat and marks the tempPath as a temporary file that should not be considered an output of
293// the rule.
294func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) {
295 rule.Restat()
Colin Cross69f59a32019-02-15 10:39:37 -0800296 rule.Temporary(tempPath)
Colin Crossf24a22a2019-01-31 14:12:44 -0800297 rule.Command().
298 Text("(").
299 Text("if").
Colin Cross69f59a32019-02-15 10:39:37 -0800300 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";").
Colin Crossf24a22a2019-01-31 14:12:44 -0800301 Text("then").
Colin Cross69f59a32019-02-15 10:39:37 -0800302 Text("rm").Input(tempPath).Text(";").
Colin Crossf24a22a2019-01-31 14:12:44 -0800303 Text("else").
Colin Cross69f59a32019-02-15 10:39:37 -0800304 Text("mv").Input(tempPath).Output(outputPath).Text(";").
Colin Crossf24a22a2019-01-31 14:12:44 -0800305 Text("fi").
306 Text(")")
307}