Merge "Switch boot jars package check to using dex jars"
This commit is contained in:
@@ -87,6 +87,7 @@ func (b *bootJarsSingleton) GenerateBuildActions(ctx android.SingletonContext) {
|
|||||||
|
|
||||||
rule := android.NewRuleBuilder()
|
rule := android.NewRuleBuilder()
|
||||||
checkBootJars := rule.Command().BuiltTool(ctx, "check_boot_jars").
|
checkBootJars := rule.Command().BuiltTool(ctx, "check_boot_jars").
|
||||||
|
Input(ctx.Config().HostToolPath(ctx, "dexdump")).
|
||||||
Input(android.PathForSource(ctx, "build/soong/scripts/check_boot_jars/package_allowed_list.txt"))
|
Input(android.PathForSource(ctx, "build/soong/scripts/check_boot_jars/package_allowed_list.txt"))
|
||||||
|
|
||||||
// If this is not an unbundled build and missing dependencies are not allowed
|
// If this is not an unbundled build and missing dependencies are not allowed
|
||||||
@@ -96,14 +97,9 @@ func (b *bootJarsSingleton) GenerateBuildActions(ctx android.SingletonContext) {
|
|||||||
// Iterate over the module names on the boot classpath in order
|
// Iterate over the module names on the boot classpath in order
|
||||||
for _, name := range android.SortedStringKeys(moduleToApex) {
|
for _, name := range android.SortedStringKeys(moduleToApex) {
|
||||||
if apexVariant, ok := nameToApexVariant[name]; ok {
|
if apexVariant, ok := nameToApexVariant[name]; ok {
|
||||||
if dep, ok := apexVariant.(Dependency); ok {
|
if dep, ok := apexVariant.(interface{ DexJarBuildPath() android.Path }); ok {
|
||||||
// Add the implementation jars for the module to be checked. This uses implementation
|
// Add the dex implementation jar for the module to be checked.
|
||||||
// and resources jar as that is what the previous make based check uses.
|
checkBootJars.Input(dep.DexJarBuildPath())
|
||||||
for _, jar := range dep.ImplementationAndResourcesJars() {
|
|
||||||
checkBootJars.Input(jar)
|
|
||||||
}
|
|
||||||
} else if _, ok := apexVariant.(*DexImport); ok {
|
|
||||||
// TODO(b/171479578): ignore deximport when doing package check until boot_jars.go can check dex jars.
|
|
||||||
} else {
|
} else {
|
||||||
ctx.Errorf("module %q is of type %q which is not supported as a boot jar", name, ctx.ModuleType(apexVariant))
|
ctx.Errorf("module %q is of type %q which is not supported as a boot jar", name, ctx.ModuleType(apexVariant))
|
||||||
}
|
}
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
"""
|
"""
|
||||||
Check boot jars.
|
Check boot jars.
|
||||||
|
|
||||||
Usage: check_boot_jars.py <package_allow_list_file> <jar1> <jar2> ...
|
Usage: check_boot_jars.py <dexdump_path> <package_allow_list_file> <jar1> <jar2> ...
|
||||||
"""
|
"""
|
||||||
import logging
|
import logging
|
||||||
import os.path
|
import os.path
|
||||||
@@ -38,28 +38,44 @@ def LoadAllowList(filename):
|
|||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
# Pattern that matches the class descriptor in a "Class descriptor" line output
|
||||||
|
# by dexdump and extracts the class name - with / instead of .
|
||||||
|
CLASS_DESCRIPTOR_RE = re.compile("'L([^;]+);'")
|
||||||
|
|
||||||
def CheckJar(allow_list_path, jar):
|
def CheckDexJar(dexdump_path, allow_list_path, jar):
|
||||||
"""Check a jar file.
|
"""Check a dex jar file.
|
||||||
"""
|
"""
|
||||||
# Get the list of files inside the jar file.
|
# Get the class descriptor lines in the dexdump output. This filters out lines
|
||||||
p = subprocess.Popen(args='jar tf %s' % jar,
|
# that do not contain class descriptors to reduce the size of the data read by
|
||||||
|
# this script.
|
||||||
|
p = subprocess.Popen(args='%s %s | grep "Class descriptor "' % (dexdump_path, jar),
|
||||||
stdout=subprocess.PIPE, shell=True)
|
stdout=subprocess.PIPE, shell=True)
|
||||||
stdout, _ = p.communicate()
|
stdout, _ = p.communicate()
|
||||||
if p.returncode != 0:
|
if p.returncode != 0:
|
||||||
return False
|
return False
|
||||||
items = stdout.split()
|
# Split the output into lines
|
||||||
|
lines = stdout.split('\n')
|
||||||
classes = 0
|
classes = 0
|
||||||
for f in items:
|
for line in lines:
|
||||||
if f.endswith('.class'):
|
# The last line will be empty
|
||||||
classes += 1
|
if line == '':
|
||||||
package_name = os.path.dirname(f)
|
continue
|
||||||
package_name = package_name.replace('/', '.')
|
# Try and find the descriptor on the line. Fail immediately if it cannot be found
|
||||||
if not package_name or not allow_list_re.match(package_name):
|
# as the dexdump output has probably changed.
|
||||||
print >> sys.stderr, ('Error: %s contains class file %s, whose package name %s is empty or'
|
found = CLASS_DESCRIPTOR_RE.search(line)
|
||||||
' not in the allow list %s of packages allowed on the bootclasspath.'
|
if not found:
|
||||||
% (jar, f, package_name, allow_list_path))
|
print >> sys.stderr, ('Could not find class descriptor in line `%s`' % line)
|
||||||
return False
|
return False
|
||||||
|
# Extract the class name (using / instead of .) from the class descriptor line
|
||||||
|
f = found.group(1)
|
||||||
|
classes += 1
|
||||||
|
package_name = os.path.dirname(f)
|
||||||
|
package_name = package_name.replace('/', '.')
|
||||||
|
if not package_name or not allow_list_re.match(package_name):
|
||||||
|
print >> sys.stderr, ('Error: %s contains class file %s, whose package name "%s" is empty or'
|
||||||
|
' not in the allow list %s of packages allowed on the bootclasspath.'
|
||||||
|
% (jar, f, package_name, allow_list_path))
|
||||||
|
return False
|
||||||
if classes == 0:
|
if classes == 0:
|
||||||
print >> sys.stderr, ('Error: %s does not contain any class files.' % jar)
|
print >> sys.stderr, ('Error: %s does not contain any class files.' % jar)
|
||||||
return False
|
return False
|
||||||
@@ -67,17 +83,18 @@ def CheckJar(allow_list_path, jar):
|
|||||||
|
|
||||||
|
|
||||||
def main(argv):
|
def main(argv):
|
||||||
if len(argv) < 2:
|
if len(argv) < 3:
|
||||||
print __doc__
|
print __doc__
|
||||||
return 1
|
return 1
|
||||||
allow_list_path = argv[0]
|
dexdump_path = argv[0]
|
||||||
|
allow_list_path = argv[1]
|
||||||
|
|
||||||
if not LoadAllowList(allow_list_path):
|
if not LoadAllowList(allow_list_path):
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
passed = True
|
passed = True
|
||||||
for jar in argv[1:]:
|
for jar in argv[2:]:
|
||||||
if not CheckJar(allow_list_path, jar):
|
if not CheckDexJar(dexdump_path, allow_list_path, jar):
|
||||||
passed = False
|
passed = False
|
||||||
if not passed:
|
if not passed:
|
||||||
return 1
|
return 1
|
||||||
|
Reference in New Issue
Block a user