Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 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 | |
| 15 | package java |
| 16 | |
| 17 | import ( |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 18 | "github.com/google/blueprint" |
| 19 | |
| 20 | "android/soong/android" |
| 21 | ) |
| 22 | |
Cole Faust | a5f64f0 | 2023-02-14 17:50:31 -0800 | [diff] [blame] | 23 | var ( |
| 24 | hiddenAPIGenerateCSVRule = pctx.AndroidStaticRule("hiddenAPIGenerateCSV", blueprint.RuleParams{ |
| 25 | Command: "${config.Class2NonSdkList} --stub-api-flags ${stubAPIFlags} $in $outFlag $out", |
| 26 | CommandDeps: []string{"${config.Class2NonSdkList}"}, |
| 27 | }, "outFlag", "stubAPIFlags") |
| 28 | |
| 29 | hiddenAPIGenerateIndexRule = pctx.AndroidStaticRule("hiddenAPIGenerateIndex", blueprint.RuleParams{ |
| 30 | Command: "${config.MergeCsvCommand} --zip_input --key_field signature --output=$out $in", |
| 31 | CommandDeps: []string{"${config.MergeCsvCommand}"}, |
| 32 | }) |
| 33 | ) |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 34 | |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 35 | type hiddenAPI struct { |
Paul Duffin | f75e527 | 2021-02-09 14:34:25 +0000 | [diff] [blame] | 36 | // True if the module containing this structure contributes to the hiddenapi information or has |
| 37 | // that information encoded within it. |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 38 | active bool |
| 39 | |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 40 | // The path to the dex jar that is in the boot class path. If this is unset then the associated |
Paul Duffin | ff774a0 | 2021-01-29 12:53:15 +0000 | [diff] [blame] | 41 | // module is not a boot jar, but could be one of the <x>-hiddenapi modules that provide additional |
| 42 | // annotations for the <x> boot dex jar but which do not actually provide a boot dex jar |
| 43 | // themselves. |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 44 | // |
| 45 | // This must be the path to the unencoded dex jar as the encoded dex jar indirectly depends on |
| 46 | // this file so using the encoded dex jar here would result in a cycle in the ninja rules. |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 47 | bootDexJarPath OptionalDexJarPath |
Paul Duffin | ff774a0 | 2021-01-29 12:53:15 +0000 | [diff] [blame] | 48 | |
Paul Duffin | 36187b2 | 2021-04-22 16:43:06 +0100 | [diff] [blame] | 49 | // The paths to the classes jars that contain classes and class members annotated with |
| 50 | // the UnsupportedAppUsage annotation that need to be extracted as part of the hidden API |
| 51 | // processing. |
| 52 | classesJarPaths android.Paths |
Paul Duffin | 1bbd062 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 53 | |
| 54 | // The compressed state of the dex file being encoded. This is used to ensure that the encoded |
| 55 | // dex file has the same state. |
| 56 | uncompressDexState *bool |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 57 | } |
| 58 | |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 59 | func (h *hiddenAPI) bootDexJar() OptionalDexJarPath { |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 60 | return h.bootDexJarPath |
| 61 | } |
| 62 | |
Paul Duffin | 36187b2 | 2021-04-22 16:43:06 +0100 | [diff] [blame] | 63 | func (h *hiddenAPI) classesJars() android.Paths { |
| 64 | return h.classesJarPaths |
| 65 | } |
| 66 | |
Paul Duffin | 1bbd062 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 67 | func (h *hiddenAPI) uncompressDex() *bool { |
| 68 | return h.uncompressDexState |
| 69 | } |
| 70 | |
Paul Duffin | 537ea3d | 2021-05-14 10:38:00 +0100 | [diff] [blame] | 71 | // hiddenAPIModule is the interface a module that embeds the hiddenAPI structure must implement. |
| 72 | type hiddenAPIModule interface { |
| 73 | android.Module |
| 74 | hiddenAPIIntf |
Paul Duffin | 09817d6 | 2022-04-28 17:45:11 +0100 | [diff] [blame] | 75 | |
Spandan Das | 8c9ae7e | 2023-03-03 21:20:36 +0000 | [diff] [blame] | 76 | MinSdkVersion(ctx android.EarlyModuleContext) android.ApiLevel |
Paul Duffin | 537ea3d | 2021-05-14 10:38:00 +0100 | [diff] [blame] | 77 | } |
| 78 | |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 79 | type hiddenAPIIntf interface { |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 80 | bootDexJar() OptionalDexJarPath |
Paul Duffin | 36187b2 | 2021-04-22 16:43:06 +0100 | [diff] [blame] | 81 | classesJars() android.Paths |
Paul Duffin | 1bbd062 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 82 | uncompressDex() *bool |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | var _ hiddenAPIIntf = (*hiddenAPI)(nil) |
| 86 | |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 87 | // Initialize the hiddenapi structure |
Paul Duffin | 1bbd062 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 88 | // |
| 89 | // uncompressedDexState should be nil when the module is a prebuilt and so does not require hidden |
| 90 | // API encoding. |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 91 | func (h *hiddenAPI) initHiddenAPI(ctx android.ModuleContext, dexJar OptionalDexJarPath, classesJar android.Path, uncompressedDexState *bool) { |
Paul Duffin | 74d18d1 | 2021-05-14 14:18:47 +0100 | [diff] [blame] | 92 | |
| 93 | // Save the classes jars even if this is not active as they may be used by modular hidden API |
| 94 | // processing. |
| 95 | classesJars := android.Paths{classesJar} |
| 96 | ctx.VisitDirectDepsWithTag(hiddenApiAnnotationsTag, func(dep android.Module) { |
| 97 | javaInfo := ctx.OtherModuleProvider(dep, JavaInfoProvider).(JavaInfo) |
| 98 | classesJars = append(classesJars, javaInfo.ImplementationJars...) |
| 99 | }) |
| 100 | h.classesJarPaths = classesJars |
| 101 | |
| 102 | // Save the unencoded dex jar so it can be used when generating the |
| 103 | // hiddenAPISingletonPathsStruct.stubFlags file. |
| 104 | h.bootDexJarPath = dexJar |
| 105 | |
Paul Duffin | 1bbd062 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 106 | h.uncompressDexState = uncompressedDexState |
| 107 | |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 108 | // If hiddenapi processing is disabled treat this as inactive. |
Pratyush | faec4db | 2023-07-20 11:19:04 +0000 | [diff] [blame] | 109 | if ctx.Config().DisableHiddenApiChecks() { |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 110 | return |
| 111 | } |
| 112 | |
Paul Duffin | 74d18d1 | 2021-05-14 14:18:47 +0100 | [diff] [blame] | 113 | // The context module must implement hiddenAPIModule. |
| 114 | module := ctx.Module().(hiddenAPIModule) |
| 115 | |
Paul Duffin | b6f53c0 | 2021-05-14 07:52:42 +0100 | [diff] [blame] | 116 | // If the frameworks/base directories does not exist and no prebuilt hidden API flag files have |
| 117 | // been configured then it is not possible to do hidden API encoding. |
| 118 | if !ctx.Config().FrameworksBaseDirExists(ctx) && ctx.Config().PrebuiltHiddenApiDir(ctx) == "" { |
| 119 | return |
| 120 | } |
| 121 | |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 122 | // It is important that hiddenapi information is only gathered for/from modules that are actually |
| 123 | // on the boot jars list because the runtime only enforces access to the hidden API for the |
| 124 | // bootclassloader. If information is gathered for modules not on the list then that will cause |
| 125 | // failures in the CtsHiddenApiBlocklist... tests. |
Paul Duffin | 82b3fcf | 2021-02-12 15:42:46 +0000 | [diff] [blame] | 126 | h.active = isModuleInBootClassPath(ctx, module) |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Paul Duffin | 82b3fcf | 2021-02-12 15:42:46 +0000 | [diff] [blame] | 129 | func isModuleInBootClassPath(ctx android.BaseModuleContext, module android.Module) bool { |
satayev | d604b21 | 2021-07-21 14:23:52 +0100 | [diff] [blame] | 130 | // Get the configured platform and apex boot jars. |
| 131 | nonApexBootJars := ctx.Config().NonApexBootJars() |
| 132 | apexBootJars := ctx.Config().ApexBootJars() |
| 133 | active := isModuleInConfiguredList(ctx, module, nonApexBootJars) || |
| 134 | isModuleInConfiguredList(ctx, module, apexBootJars) |
Paul Duffin | 82b3fcf | 2021-02-12 15:42:46 +0000 | [diff] [blame] | 135 | return active |
| 136 | } |
| 137 | |
Paul Duffin | afaa47c | 2021-05-14 13:04:04 +0100 | [diff] [blame] | 138 | // hiddenAPIEncodeDex is called by any module that needs to encode dex files. |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 139 | // |
| 140 | // It ignores any module that has not had initHiddenApi() called on it and which is not in the boot |
Paul Duffin | afaa47c | 2021-05-14 13:04:04 +0100 | [diff] [blame] | 141 | // jar list. In that case it simply returns the supplied dex jar path. |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 142 | // |
Paul Duffin | afaa47c | 2021-05-14 13:04:04 +0100 | [diff] [blame] | 143 | // Otherwise, it creates a copy of the supplied dex file into which it has encoded the hiddenapi |
| 144 | // flags and returns this instead of the supplied dex jar. |
Paul Duffin | 1bbd062 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 145 | func (h *hiddenAPI) hiddenAPIEncodeDex(ctx android.ModuleContext, dexJar android.OutputPath) android.OutputPath { |
Paul Duffin | 001e606 | 2021-05-14 01:13:55 +0100 | [diff] [blame] | 146 | |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 147 | if !h.active { |
| 148 | return dexJar |
| 149 | } |
Paul Duffin | d2aceca | 2019-02-28 16:13:20 +0000 | [diff] [blame] | 150 | |
Paul Duffin | 1bbd062 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 151 | // A nil uncompressDexState prevents the dex file from being encoded. |
| 152 | if h.uncompressDexState == nil { |
| 153 | ctx.ModuleErrorf("cannot encode dex file %s when uncompressDexState is nil", dexJar) |
| 154 | } |
| 155 | uncompressDex := *h.uncompressDexState |
| 156 | |
Paul Duffin | f8f4af8 | 2021-02-12 15:42:20 +0000 | [diff] [blame] | 157 | // Create a copy of the dex jar which has been encoded with hiddenapi flags. |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 158 | flagsCSV := hiddenAPISingletonPaths(ctx).flags |
| 159 | outputDir := android.PathForModuleOut(ctx, "hiddenapi").OutputPath |
Spandan Das | 8c9ae7e | 2023-03-03 21:20:36 +0000 | [diff] [blame] | 160 | encodedDex := hiddenAPIEncodeDex(ctx, dexJar, flagsCSV, uncompressDex, android.NoneApiLevel, outputDir) |
Paul Duffin | 4103e92 | 2021-02-01 19:01:34 +0000 | [diff] [blame] | 161 | |
Paul Duffin | f8f4af8 | 2021-02-12 15:42:20 +0000 | [diff] [blame] | 162 | // Use the encoded dex jar from here onwards. |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 163 | return encodedDex |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 164 | } |
| 165 | |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 166 | // buildRuleToGenerateAnnotationFlags builds a ninja rule to generate the annotation-flags.csv file |
| 167 | // from the classes jars and stub-flags.csv files. |
Paul Duffin | afaa47c | 2021-05-14 13:04:04 +0100 | [diff] [blame] | 168 | // |
| 169 | // The annotation-flags.csv file contains mappings from Java signature to various flags derived from |
| 170 | // annotations in the source, e.g. whether it is public or the sdk version above which it can no |
| 171 | // longer be used. |
| 172 | // |
| 173 | // It is created by the Class2NonSdkList tool which processes the .class files in the class |
| 174 | // implementation jar looking for UnsupportedAppUsage and CovariantReturnType annotations. The |
| 175 | // tool also consumes the hiddenAPISingletonPathsStruct.stubFlags file in order to perform |
| 176 | // consistency checks on the information in the annotations and to filter out bridge methods |
| 177 | // that are already part of the public API. |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 178 | func buildRuleToGenerateAnnotationFlags(ctx android.ModuleContext, desc string, classesJars android.Paths, stubFlagsCSV android.Path, outputPath android.WritablePath) { |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 179 | ctx.Build(pctx, android.BuildParams{ |
| 180 | Rule: hiddenAPIGenerateCSVRule, |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 181 | Description: desc, |
Paul Duffin | 031d869 | 2021-02-12 11:46:42 +0000 | [diff] [blame] | 182 | Inputs: classesJars, |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 183 | Output: outputPath, |
David Brazdil | 0f670a2 | 2019-01-18 16:30:03 +0000 | [diff] [blame] | 184 | Implicit: stubFlagsCSV, |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 185 | Args: map[string]string{ |
David Brazdil | 0f670a2 | 2019-01-18 16:30:03 +0000 | [diff] [blame] | 186 | "outFlag": "--write-flags-csv", |
| 187 | "stubAPIFlags": stubFlagsCSV.String(), |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 188 | }, |
| 189 | }) |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 190 | } |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 191 | |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 192 | // buildRuleToGenerateMetadata builds a ninja rule to generate the metadata.csv file from |
| 193 | // the classes jars and stub-flags.csv files. |
Paul Duffin | afaa47c | 2021-05-14 13:04:04 +0100 | [diff] [blame] | 194 | // |
| 195 | // The metadata.csv file contains mappings from Java signature to the value of properties specified |
| 196 | // on UnsupportedAppUsage annotations in the source. |
| 197 | // |
| 198 | // Like the annotation-flags.csv file this is also created by the Class2NonSdkList in the same way. |
| 199 | // Although the two files could potentially be created in a single invocation of the |
| 200 | // Class2NonSdkList at the moment they are created using their own invocation, with the behavior |
| 201 | // being determined by the property that is used. |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 202 | func buildRuleToGenerateMetadata(ctx android.ModuleContext, desc string, classesJars android.Paths, stubFlagsCSV android.Path, metadataCSV android.WritablePath) { |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 203 | ctx.Build(pctx, android.BuildParams{ |
| 204 | Rule: hiddenAPIGenerateCSVRule, |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 205 | Description: desc, |
Paul Duffin | 031d869 | 2021-02-12 11:46:42 +0000 | [diff] [blame] | 206 | Inputs: classesJars, |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 207 | Output: metadataCSV, |
David Brazdil | 0f670a2 | 2019-01-18 16:30:03 +0000 | [diff] [blame] | 208 | Implicit: stubFlagsCSV, |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 209 | Args: map[string]string{ |
David Brazdil | 0f670a2 | 2019-01-18 16:30:03 +0000 | [diff] [blame] | 210 | "outFlag": "--write-metadata-csv", |
| 211 | "stubAPIFlags": stubFlagsCSV.String(), |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 212 | }, |
| 213 | }) |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 214 | } |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 215 | |
Paul Duffin | afaa47c | 2021-05-14 13:04:04 +0100 | [diff] [blame] | 216 | // buildRuleToGenerateIndex builds a ninja rule to generate the index.csv file from the classes |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 217 | // jars. |
Paul Duffin | afaa47c | 2021-05-14 13:04:04 +0100 | [diff] [blame] | 218 | // |
| 219 | // The index.csv file contains mappings from Java signature to source location information. |
| 220 | // |
| 221 | // It is created by the merge_csv tool which processes the class implementation jar, extracting |
| 222 | // all the files ending in .uau (which are CSV files) and merges them together. The .uau files are |
| 223 | // created by the unsupported app usage annotation processor during compilation of the class |
| 224 | // implementation jar. |
Paul Duffin | 850e61f | 2021-05-14 09:58:48 +0100 | [diff] [blame] | 225 | func buildRuleToGenerateIndex(ctx android.ModuleContext, desc string, classesJars android.Paths, indexCSV android.WritablePath) { |
Cole Faust | a5f64f0 | 2023-02-14 17:50:31 -0800 | [diff] [blame] | 226 | ctx.Build(pctx, android.BuildParams{ |
| 227 | Rule: hiddenAPIGenerateIndexRule, |
| 228 | Description: desc, |
| 229 | Inputs: classesJars, |
| 230 | Output: indexCSV, |
| 231 | }) |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | var hiddenAPIEncodeDexRule = pctx.AndroidStaticRule("hiddenAPIEncodeDex", blueprint.RuleParams{ |
Artur Satayev | b5df8a0 | 2020-02-19 16:39:59 +0000 | [diff] [blame] | 235 | Command: `rm -rf $tmpDir && mkdir -p $tmpDir && mkdir $tmpDir/dex-input && mkdir $tmpDir/dex-output && |
Colin Cross | d783bbb | 2020-07-11 22:30:45 -0700 | [diff] [blame] | 236 | unzip -qoDD $in 'classes*.dex' -d $tmpDir/dex-input && |
Artur Satayev | b5df8a0 | 2020-02-19 16:39:59 +0000 | [diff] [blame] | 237 | for INPUT_DEX in $$(find $tmpDir/dex-input -maxdepth 1 -name 'classes*.dex' | sort); do |
| 238 | echo "--input-dex=$${INPUT_DEX}"; |
| 239 | echo "--output-dex=$tmpDir/dex-output/$$(basename $${INPUT_DEX})"; |
| 240 | done | xargs ${config.HiddenAPI} encode --api-flags=$flagsCsv $hiddenapiFlags && |
| 241 | ${config.SoongZipCmd} $soongZipFlags -o $tmpDir/dex.jar -C $tmpDir/dex-output -f "$tmpDir/dex-output/classes*.dex" && |
Paul Duffin | 4de9450 | 2021-05-16 05:21:16 +0100 | [diff] [blame] | 242 | ${config.MergeZipsCmd} -j -D -zipToNotStrip $tmpDir/dex.jar -stripFile "classes*.dex" -stripFile "**/*.uau" $out $tmpDir/dex.jar $in`, |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 243 | CommandDeps: []string{ |
| 244 | "${config.HiddenAPI}", |
| 245 | "${config.SoongZipCmd}", |
| 246 | "${config.MergeZipsCmd}", |
| 247 | }, |
David Brazdil | 91b4e3e | 2019-01-23 21:04:05 +0000 | [diff] [blame] | 248 | }, "flagsCsv", "hiddenapiFlags", "tmpDir", "soongZipFlags") |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 249 | |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 250 | // hiddenAPIEncodeDex generates the build rule that will encode the supplied dex jar and place the |
| 251 | // encoded dex jar in a file of the same name in the output directory. |
| 252 | // |
| 253 | // The encode dex rule requires unzipping, encoding and rezipping the classes.dex files along with |
| 254 | // all the resources from the input jar. It also ensures that if it was uncompressed in the input |
| 255 | // it stays uncompressed in the output. |
Spandan Das | 8c9ae7e | 2023-03-03 21:20:36 +0000 | [diff] [blame] | 256 | func hiddenAPIEncodeDex(ctx android.ModuleContext, dexInput, flagsCSV android.Path, uncompressDex bool, minSdkVersion android.ApiLevel, outputDir android.OutputPath) android.OutputPath { |
Colin Cross | cd964b3 | 2019-01-18 22:03:02 -0800 | [diff] [blame] | 257 | |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 258 | // The output file has the same name as the input file and is in the output directory. |
| 259 | output := outputDir.Join(ctx, dexInput.Base()) |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 260 | |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 261 | // Create a jar specific temporary directory in which to do the work just in case this is called |
| 262 | // with the same output directory for multiple modules. |
| 263 | tmpDir := outputDir.Join(ctx, dexInput.Base()+"-tmp") |
| 264 | |
| 265 | // If the input is uncompressed then generate the output of the encode rule to an intermediate |
| 266 | // file as the final output will need further processing after encoding. |
Colin Cross | cd964b3 | 2019-01-18 22:03:02 -0800 | [diff] [blame] | 267 | soongZipFlags := "" |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 268 | encodeRuleOutput := output |
Colin Cross | cd964b3 | 2019-01-18 22:03:02 -0800 | [diff] [blame] | 269 | if uncompressDex { |
| 270 | soongZipFlags = "-L 0" |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 271 | encodeRuleOutput = outputDir.Join(ctx, "unaligned", dexInput.Base()) |
Colin Cross | cd964b3 | 2019-01-18 22:03:02 -0800 | [diff] [blame] | 272 | } |
Jiyong Park | 93e57a0 | 2020-02-21 16:04:53 +0900 | [diff] [blame] | 273 | |
Jiyong Park | 93e57a0 | 2020-02-21 16:04:53 +0900 | [diff] [blame] | 274 | // b/149353192: when a module is instrumented, jacoco adds synthetic members |
| 275 | // $jacocoData and $jacocoInit. Since they don't exist when building the hidden API flags, |
| 276 | // don't complain when we don't find hidden API flags for the synthetic members. |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 277 | hiddenapiFlags := "" |
Paul Duffin | c495d2b | 2020-05-19 21:07:52 +0100 | [diff] [blame] | 278 | if j, ok := ctx.Module().(interface { |
| 279 | shouldInstrument(android.BaseModuleContext) bool |
| 280 | }); ok && j.shouldInstrument(ctx) { |
David Brazdil | 91b4e3e | 2019-01-23 21:04:05 +0000 | [diff] [blame] | 281 | hiddenapiFlags = "--no-force-assign-all" |
| 282 | } |
Colin Cross | cd964b3 | 2019-01-18 22:03:02 -0800 | [diff] [blame] | 283 | |
Paul Duffin | 09817d6 | 2022-04-28 17:45:11 +0100 | [diff] [blame] | 284 | // If the library is targeted for Q and/or R then make sure that they do not |
| 285 | // have any S+ flags encoded as that will break the runtime. |
Spandan Das | 8c9ae7e | 2023-03-03 21:20:36 +0000 | [diff] [blame] | 286 | minApiLevel := minSdkVersion |
Paul Duffin | 09817d6 | 2022-04-28 17:45:11 +0100 | [diff] [blame] | 287 | if !minApiLevel.IsNone() { |
| 288 | if minApiLevel.LessThanOrEqualTo(android.ApiLevelOrPanic(ctx, "R")) { |
| 289 | hiddenapiFlags = hiddenapiFlags + " --max-hiddenapi-level=max-target-r" |
| 290 | } |
| 291 | } |
| 292 | |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 293 | ctx.Build(pctx, android.BuildParams{ |
| 294 | Rule: hiddenAPIEncodeDexRule, |
| 295 | Description: "hiddenapi encode dex", |
| 296 | Input: dexInput, |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 297 | Output: encodeRuleOutput, |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 298 | Implicit: flagsCSV, |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 299 | Args: map[string]string{ |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 300 | "flagsCsv": flagsCSV.String(), |
David Brazdil | 91b4e3e | 2019-01-23 21:04:05 +0000 | [diff] [blame] | 301 | "tmpDir": tmpDir.String(), |
| 302 | "soongZipFlags": soongZipFlags, |
| 303 | "hiddenapiFlags": hiddenapiFlags, |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 304 | }, |
| 305 | }) |
| 306 | |
Nicolas Geoffray | 65fd8ba | 2019-01-21 23:20:23 +0000 | [diff] [blame] | 307 | if uncompressDex { |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 308 | TransformZipAlign(ctx, output, encodeRuleOutput) |
Nicolas Geoffray | 65fd8ba | 2019-01-21 23:20:23 +0000 | [diff] [blame] | 309 | } |
Paul Duffin | 0916595 | 2021-05-16 23:32:52 +0100 | [diff] [blame] | 310 | |
| 311 | return output |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 312 | } |
Paul Duffin | 031d869 | 2021-02-12 11:46:42 +0000 | [diff] [blame] | 313 | |
| 314 | type hiddenApiAnnotationsDependencyTag struct { |
| 315 | blueprint.BaseDependencyTag |
Colin Cross | ce56425 | 2022-01-12 11:13:32 -0800 | [diff] [blame] | 316 | android.LicenseAnnotationSharedDependencyTag |
Paul Duffin | 031d869 | 2021-02-12 11:46:42 +0000 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | // Tag used to mark dependencies on java_library instances that contains Java source files whose |
| 320 | // sole purpose is to provide additional hiddenapi annotations. |
| 321 | var hiddenApiAnnotationsTag hiddenApiAnnotationsDependencyTag |
| 322 | |
| 323 | // Mark this tag so dependencies that use it are excluded from APEX contents. |
| 324 | func (t hiddenApiAnnotationsDependencyTag) ExcludeFromApexContents() {} |
| 325 | |
| 326 | var _ android.ExcludeFromApexContentsTag = hiddenApiAnnotationsTag |