1// 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 46func hiddenAPISingletonFactory() android.Singleton { 47 return &hiddenAPISingleton{} 48} 49 50type hiddenAPISingleton struct { 51 flags, metadata android.Path 52} 53 54// hiddenAPI singleton rules 55func (h *hiddenAPISingleton) GenerateBuildActions(ctx android.SingletonContext) { 56 // 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) { 65 h.flags = flagsRule(ctx) 66 h.metadata = metadataRule(ctx) 67 } else { 68 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()) 83 } 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", 92 } 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()) && !ctx.Config().UnbundledBuildUsePrebuiltSdks() { 98 publicStubModules = append(publicStubModules, "android.test.base.stubs") 99 } 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()...) 120 if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT") { 121 publicStubModules = append(publicStubModules, "jacoco-stubs") 122 } 123 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 pathList[i] = android.PathForOutput(ctx, "missing") 163 if ctx.Config().AllowMissingDependencies() { 164 missingDeps = append(missingDeps, (*moduleList)[i]) 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(). 182 Tool(pctx.HostBinToolPath(ctx, "hiddenapi")). 183 Text("list"). 184 FlagForEachInput("--boot-dex=", bootDexJars). 185 FlagWithInputList("--public-stub-classpath=", publicStubPaths, ":"). 186 FlagWithInputList("--system-stub-classpath=", systemStubPaths, ":"). 187 FlagWithInputList("--test-stub-classpath=", testStubPaths, ":"). 188 FlagWithInputList("--core-platform-stub-classpath=", corePlatformStubPaths, ":"). 189 FlagWithOutput("--out-api-flags=", tempPath) 190 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. 198func flagsRule(ctx android.SingletonContext) android.Path { 199 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") 215 return nil 216 } 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(). 226 Tool(android.PathForSource(ctx, "frameworks/base/tools/hiddenapi/generate_hiddenapi_lists.py")). 227 FlagWithInput("--csv ", stubFlags). 228 Inputs(flagsCSV). 229 FlagWithInput("--greylist ", 230 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist.txt")). 231 FlagWithInput("--greylist-ignore-conflicts ", 232 greylistIgnoreConflicts). 233 FlagWithInput("--greylist-max-p ", 234 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-p.txt")). 235 FlagWithInput("--greylist-max-o-ignore-conflicts ", 236 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-o.txt")). 237 FlagWithInput("--blacklist ", 238 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-force-blacklist.txt")). 239 FlagWithInput("--greylist-packages ", 240 android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-packages.txt")). 241 FlagWithOutput("--output ", tempPath) 242 243 commitChangeForRestat(rule, tempPath, outputPath) 244 245 rule.Build(pctx, ctx, "hiddenAPIFlagsFile", "hiddenapi flags") 246 247 return outputPath 248} 249 250// emptyFlagsRule creates a rule to build an empty hiddenapi-flags.csv, which is needed by master-art-host builds that 251// have a partial manifest without frameworks/base but still need to build a boot image. 252func emptyFlagsRule(ctx android.SingletonContext) android.Path { 253 rule := android.NewRuleBuilder() 254 255 outputPath := hiddenAPISingletonPaths(ctx).flags 256 257 rule.Command().Text("rm").Flag("-f").Output(outputPath) 258 rule.Command().Text("touch").Output(outputPath) 259 260 rule.Build(pctx, ctx, "emptyHiddenAPIFlagsFile", "empty hiddenapi flags") 261 262 return outputPath 263} 264 265// metadataRule creates a rule to build hiddenapi-greylist.csv out of the metadata.csv files generated for boot image 266// modules. 267func metadataRule(ctx android.SingletonContext) android.Path { 268 var metadataCSV android.Paths 269 270 ctx.VisitAllModules(func(module android.Module) { 271 if h, ok := module.(hiddenAPIIntf); ok { 272 if csv := h.metadataCSV(); csv != nil { 273 metadataCSV = append(metadataCSV, csv) 274 } 275 } 276 }) 277 278 rule := android.NewRuleBuilder() 279 280 outputPath := hiddenAPISingletonPaths(ctx).metadata 281 282 rule.Command(). 283 Tool(android.PathForSource(ctx, "frameworks/base/tools/hiddenapi/merge_csv.py")). 284 Inputs(metadataCSV). 285 Text(">"). 286 Output(outputPath) 287 288 rule.Build(pctx, ctx, "hiddenAPIGreylistMetadataFile", "hiddenapi greylist metadata") 289 290 return outputPath 291} 292 293// commitChangeForRestat adds a command to a rule that updates outputPath from tempPath if they are different. It 294// also marks the rule as restat and marks the tempPath as a temporary file that should not be considered an output of 295// the rule. 296func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) { 297 rule.Restat() 298 rule.Temporary(tempPath) 299 rule.Command(). 300 Text("("). 301 Text("if"). 302 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";"). 303 Text("then"). 304 Text("rm").Input(tempPath).Text(";"). 305 Text("else"). 306 Text("mv").Input(tempPath).Output(outputPath).Text(";"). 307 Text("fi"). 308 Text(")") 309} 310