Merge "Revert "Only allow setting presigned without preprocessed on targetSdk < 30"" into main

This commit is contained in:
Karl Shaffer
2023-09-07 00:58:24 +00:00
committed by Gerrit Code Review
7 changed files with 30 additions and 81 deletions

View File

@@ -277,14 +277,6 @@ func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext
a.hideApexVariantFromMake = true a.hideApexVariantFromMake = true
} }
if Bool(a.properties.Preprocessed) {
if a.properties.Presigned != nil && !*a.properties.Presigned {
ctx.ModuleErrorf("Setting preprocessed: true implies presigned: true, so you cannot set presigned to false")
}
t := true
a.properties.Presigned = &t
}
numCertPropsSet := 0 numCertPropsSet := 0
if String(a.properties.Certificate) != "" { if String(a.properties.Certificate) != "" {
numCertPropsSet++ numCertPropsSet++
@@ -296,9 +288,11 @@ func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext
numCertPropsSet++ numCertPropsSet++
} }
if numCertPropsSet != 1 { if numCertPropsSet != 1 {
ctx.ModuleErrorf("One and only one of certficate, presigned (implied by preprocessed), and default_dev_cert properties must be set") ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
} }
_, _, certificates := collectAppDeps(ctx, a, false, false)
// TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
// TODO: LOCAL_PACKAGE_SPLITS // TODO: LOCAL_PACKAGE_SPLITS
@@ -371,7 +365,6 @@ func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext
} else if !Bool(a.properties.Presigned) { } else if !Bool(a.properties.Presigned) {
// If the certificate property is empty at this point, default_dev_cert must be set to true. // If the certificate property is empty at this point, default_dev_cert must be set to true.
// Which makes processMainCert's behavior for the empty cert string WAI. // Which makes processMainCert's behavior for the empty cert string WAI.
_, _, certificates := collectAppDeps(ctx, a, false, false)
a.certificate, certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx) a.certificate, certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
signed := android.PathForModuleOut(ctx, "signed", apkFilename) signed := android.PathForModuleOut(ctx, "signed", apkFilename)
var lineageFile android.Path var lineageFile android.Path
@@ -384,13 +377,8 @@ func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext
SignAppPackage(ctx, signed, jnisUncompressed, certificates, nil, lineageFile, rotationMinSdkVersion) SignAppPackage(ctx, signed, jnisUncompressed, certificates, nil, lineageFile, rotationMinSdkVersion)
a.outputFile = signed a.outputFile = signed
} else { } else {
// Presigned without Preprocessed shouldn't really be a thing, currently we disallow
// it for apps with targetSdk >= 30, because on those targetSdks you must be using signature
// v2 or later, and signature v2 would be wrecked by uncompressing libs / zipaligning.
// But ideally we would disallow it for all prebuilt apks, and remove the presigned property.
targetSdkCheck := a.validateTargetSdkLessThan30(ctx, srcApk)
alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename) alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
TransformZipAlign(ctx, alignedApk, jnisUncompressed, []android.Path{targetSdkCheck}) TransformZipAlign(ctx, alignedApk, jnisUncompressed)
a.outputFile = alignedApk a.outputFile = alignedApk
a.certificate = PresignedCertificate a.certificate = PresignedCertificate
} }
@@ -444,16 +432,6 @@ func (a *AndroidAppImport) validatePreprocessedApk(ctx android.ModuleContext, sr
}) })
} }
func (a *AndroidAppImport) validateTargetSdkLessThan30(ctx android.ModuleContext, srcApk android.Path) android.Path {
alignmentStamp := android.PathForModuleOut(ctx, "validated-prebuilt", "old_target_sdk.stamp")
ctx.Build(pctx, android.BuildParams{
Rule: checkBelowTargetSdk30ForNonPreprocessedApks,
Input: srcApk,
Output: alignmentStamp,
})
return alignmentStamp
}
func (a *AndroidAppImport) Prebuilt() *android.Prebuilt { func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
return &a.prebuilt return &a.prebuilt
} }

View File

@@ -629,10 +629,19 @@ func TestAndroidTestImport_Preprocessed(t *testing.T) {
presigned: true, presigned: true,
preprocessed: true, preprocessed: true,
} }
android_test_import {
name: "foo_cert",
apk: "prebuilts/apk/app.apk",
certificate: "cert/new_cert",
preprocessed: true,
}
`) `)
apkName := "foo.apk" testModules := []string{"foo", "foo_cert"}
variant := ctx.ModuleForTests("foo", "android_common") for _, m := range testModules {
apkName := m + ".apk"
variant := ctx.ModuleForTests(m, "android_common")
jniRule := variant.Output("jnis-uncompressed/" + apkName).BuildParams.Rule.String() jniRule := variant.Output("jnis-uncompressed/" + apkName).BuildParams.Rule.String()
if jniRule != android.Cp.String() { if jniRule != android.Cp.String() {
t.Errorf("Unexpected JNI uncompress rule: " + jniRule) t.Errorf("Unexpected JNI uncompress rule: " + jniRule)
@@ -646,6 +655,7 @@ func TestAndroidTestImport_Preprocessed(t *testing.T) {
t.Errorf("aligning rule shouldn't be for preprocessed") t.Errorf("aligning rule shouldn't be for preprocessed")
} }
} }
}
func TestAndroidAppImport_Preprocessed(t *testing.T) { func TestAndroidAppImport_Preprocessed(t *testing.T) {
ctx, _ := testJava(t, ` ctx, _ := testJava(t, `

View File

@@ -1608,7 +1608,7 @@ func (j *Module) compile(ctx android.ModuleContext, extraSrcJars, extraClasspath
false, nil, nil) false, nil, nil)
if *j.dexProperties.Uncompress_dex { if *j.dexProperties.Uncompress_dex {
combinedAlignedJar := android.PathForModuleOut(ctx, "dex-withres-aligned", jarName).OutputPath combinedAlignedJar := android.PathForModuleOut(ctx, "dex-withres-aligned", jarName).OutputPath
TransformZipAlign(ctx, combinedAlignedJar, combinedJar, nil) TransformZipAlign(ctx, combinedAlignedJar, combinedJar)
dexOutputFile = combinedAlignedJar dexOutputFile = combinedAlignedJar
} else { } else {
dexOutputFile = combinedJar dexOutputFile = combinedJar

View File

@@ -277,14 +277,6 @@ var (
Command: `${config.Zip2ZipCmd} -i ${in} -o ${out} -x 'META-INF/services/**/*'`, Command: `${config.Zip2ZipCmd} -i ${in} -o ${out} -x 'META-INF/services/**/*'`,
CommandDeps: []string{"${config.Zip2ZipCmd}"}, CommandDeps: []string{"${config.Zip2ZipCmd}"},
}) })
checkBelowTargetSdk30ForNonPreprocessedApks = pctx.AndroidStaticRule("checkBelowTargetSdk30ForNonPreprocessedApks",
blueprint.RuleParams{
Command: "build/soong/scripts/check_target_sdk_less_than_30.py ${config.Aapt2Cmd} $in $out",
CommandDeps: []string{"build/soong/scripts/check_target_sdk_less_than_30.py", "${config.Aapt2Cmd}"},
Description: "Check prebuilt target sdk version",
},
)
) )
func init() { func init() {
@@ -697,13 +689,12 @@ func GenerateMainClassManifest(ctx android.ModuleContext, outputFile android.Wri
android.WriteFileRule(ctx, outputFile, "Main-Class: "+mainClass+"\n") android.WriteFileRule(ctx, outputFile, "Main-Class: "+mainClass+"\n")
} }
func TransformZipAlign(ctx android.ModuleContext, outputFile android.WritablePath, inputFile android.Path, validations android.Paths) { func TransformZipAlign(ctx android.ModuleContext, outputFile android.WritablePath, inputFile android.Path) {
ctx.Build(pctx, android.BuildParams{ ctx.Build(pctx, android.BuildParams{
Rule: zipalign, Rule: zipalign,
Description: "align", Description: "align",
Input: inputFile, Input: inputFile,
Output: outputFile, Output: outputFile,
Validations: validations,
}) })
} }

View File

@@ -450,7 +450,7 @@ func (d *dexer) compileDex(ctx android.ModuleContext, dexParams *compileDexParam
} }
if proptools.Bool(d.dexProperties.Uncompress_dex) { if proptools.Bool(d.dexProperties.Uncompress_dex) {
alignedJavalibJar := android.PathForModuleOut(ctx, "aligned", dexParams.jarName).OutputPath alignedJavalibJar := android.PathForModuleOut(ctx, "aligned", dexParams.jarName).OutputPath
TransformZipAlign(ctx, alignedJavalibJar, javalibJar, nil) TransformZipAlign(ctx, alignedJavalibJar, javalibJar)
javalibJar = alignedJavalibJar javalibJar = alignedJavalibJar
} }

View File

@@ -305,7 +305,7 @@ func hiddenAPIEncodeDex(ctx android.ModuleContext, dexInput, flagsCSV android.Pa
}) })
if uncompressDex { if uncompressDex {
TransformZipAlign(ctx, output, encodeRuleOutput, nil) TransformZipAlign(ctx, output, encodeRuleOutput)
} }
return output return output

View File

@@ -1,30 +0,0 @@
#!/usr/bin/env python3
import subprocess
import argparse
import re
import sys
def main():
parser = argparse.ArgumentParser()
parser.add_argument('aapt2', help = "the path to the aapt2 executable")
parser.add_argument('apk', help = "the apk to check")
parser.add_argument('stampfile', help = "a file to touch if successful")
args = parser.parse_args()
regex = re.compile(r"targetSdkVersion: *'([0-9]+)'")
output = subprocess.check_output([args.aapt2, "dump", "badging", args.apk], text=True)
targetSdkVersion = None
for line in output.splitlines():
match = regex.fullmatch(line.strip())
if match:
targetSdkVersion = int(match.group(1))
break
if targetSdkVersion is None or targetSdkVersion >= 30:
sys.exit(args.apk + ": Prebuilt, presigned apks with targetSdkVersion >= 30 (or a codename targetSdkVersion) must set preprocessed: true in the Android.bp definition (because they must be signed with signature v2, and the build system would wreck that signature otherwise)")
subprocess.check_call(["touch", args.stampfile])
if __name__ == "__main__":
main()