mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8275887
: jarsigner prints invalid digest/signature algorithm warnings if keysize is weak/disabled
Reviewed-by: weijun
This commit is contained in:
parent
936f7ff49e
commit
03f8c0fb93
9 changed files with 90 additions and 89 deletions
|
@ -76,10 +76,12 @@ public class SignerInfo implements DerEncoder {
|
|||
/**
|
||||
* A map containing the algorithms in this SignerInfo. This is used to
|
||||
* avoid checking algorithms to see if they are disabled more than once.
|
||||
* The key is the AlgorithmId of the algorithm, and the value is the name of
|
||||
* the field or attribute.
|
||||
* The key is the AlgorithmId of the algorithm, and the value is a record
|
||||
* containing the name of the field or attribute and whether the key
|
||||
* should also be checked (ex: if it is a signature algorithm).
|
||||
*/
|
||||
private Map<AlgorithmId, String> algorithms = new HashMap<>();
|
||||
private record AlgorithmInfo(String field, boolean checkKey) {}
|
||||
private Map<AlgorithmId, AlgorithmInfo> algorithms = new HashMap<>();
|
||||
|
||||
public SignerInfo(X500Name issuerName,
|
||||
BigInteger serial,
|
||||
|
@ -350,7 +352,8 @@ public class SignerInfo implements DerEncoder {
|
|||
}
|
||||
|
||||
String digestAlgName = digestAlgorithmId.getName();
|
||||
algorithms.put(digestAlgorithmId, "SignerInfo digestAlgorithm field");
|
||||
algorithms.put(digestAlgorithmId,
|
||||
new AlgorithmInfo("SignerInfo digestAlgorithm field", false));
|
||||
|
||||
byte[] dataSigned;
|
||||
|
||||
|
@ -421,7 +424,8 @@ public class SignerInfo implements DerEncoder {
|
|||
new AlgorithmId(ObjectIdentifier.of(oid),
|
||||
digestEncryptionAlgorithmId.getParameters());
|
||||
algorithms.put(sigAlgId,
|
||||
"SignerInfo digestEncryptionAlgorithm field");
|
||||
new AlgorithmInfo(
|
||||
"SignerInfo digestEncryptionAlgorithm field", true));
|
||||
}
|
||||
|
||||
X509Certificate cert = getCertificate(block);
|
||||
|
@ -677,7 +681,8 @@ public class SignerInfo implements DerEncoder {
|
|||
throws NoSuchAlgorithmException, SignatureException {
|
||||
|
||||
AlgorithmId digestAlgId = token.getHashAlgorithm();
|
||||
algorithms.put(digestAlgId, "TimestampToken digestAlgorithm field");
|
||||
algorithms.put(digestAlgId,
|
||||
new AlgorithmInfo("TimestampToken digestAlgorithm field", false));
|
||||
|
||||
MessageDigest md = MessageDigest.getInstance(digestAlgId.getName());
|
||||
|
||||
|
@ -734,18 +739,19 @@ public class SignerInfo implements DerEncoder {
|
|||
*/
|
||||
public static Set<String> verifyAlgorithms(SignerInfo[] infos,
|
||||
JarConstraintsParameters params, String name) throws SignatureException {
|
||||
Map<AlgorithmId, String> algorithms = new HashMap<>();
|
||||
Map<AlgorithmId, AlgorithmInfo> algorithms = new HashMap<>();
|
||||
for (SignerInfo info : infos) {
|
||||
algorithms.putAll(info.algorithms);
|
||||
}
|
||||
|
||||
Set<String> enabledAlgorithms = new HashSet<>();
|
||||
try {
|
||||
for (Map.Entry<AlgorithmId, String> algorithm : algorithms.entrySet()) {
|
||||
params.setExtendedExceptionMsg(name, algorithm.getValue());
|
||||
AlgorithmId algId = algorithm.getKey();
|
||||
for (var algEntry : algorithms.entrySet()) {
|
||||
AlgorithmInfo info = algEntry.getValue();
|
||||
params.setExtendedExceptionMsg(name, info.field());
|
||||
AlgorithmId algId = algEntry.getKey();
|
||||
JAR_DISABLED_CHECK.permits(algId.getName(),
|
||||
algId.getParameters(), params);
|
||||
algId.getParameters(), params, info.checkKey());
|
||||
enabledAlgorithms.add(algId.getName());
|
||||
}
|
||||
} catch (CertPathValidatorException e) {
|
||||
|
|
|
@ -38,7 +38,6 @@ import java.security.KeyFactory;
|
|||
import java.security.AlgorithmParameters;
|
||||
import java.security.GeneralSecurityException;
|
||||
import java.security.cert.Certificate;
|
||||
import java.security.cert.X509CRL;
|
||||
import java.security.cert.X509Certificate;
|
||||
import java.security.cert.PKIXCertPathChecker;
|
||||
import java.security.cert.TrustAnchor;
|
||||
|
@ -57,7 +56,6 @@ import sun.security.util.DisabledAlgorithmConstraints;
|
|||
import sun.security.validator.Validator;
|
||||
import sun.security.x509.AlgorithmId;
|
||||
import sun.security.x509.X509CertImpl;
|
||||
import sun.security.x509.X509CRLImpl;
|
||||
|
||||
/**
|
||||
* A {@code PKIXCertPathChecker} implementation to check whether a
|
||||
|
@ -226,13 +224,13 @@ public final class AlgorithmChecker extends PKIXCertPathChecker {
|
|||
CertPathConstraintsParameters cp =
|
||||
new CertPathConstraintsParameters(trustedPubKey, variant,
|
||||
anchor, date);
|
||||
dac.permits(trustedPubKey.getAlgorithm(), cp);
|
||||
dac.permits(trustedPubKey.getAlgorithm(), cp, true);
|
||||
}
|
||||
// Check the signature algorithm and parameters against constraints
|
||||
CertPathConstraintsParameters cp =
|
||||
new CertPathConstraintsParameters(x509Cert, variant,
|
||||
anchor, date);
|
||||
dac.permits(currSigAlg, currSigAlgParams, cp);
|
||||
dac.permits(currSigAlg, currSigAlgParams, cp, true);
|
||||
} else {
|
||||
if (prevPubKey != null) {
|
||||
if (!constraints.permits(SIGNATURE_PRIMITIVE_SET,
|
||||
|
@ -362,29 +360,6 @@ public final class AlgorithmChecker extends PKIXCertPathChecker {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check the signature algorithm with the specified public key.
|
||||
*
|
||||
* @param key the public key to verify the CRL signature
|
||||
* @param crl the target CRL
|
||||
* @param variant the Validator variant of the operation. A null value
|
||||
* passed will set it to Validator.GENERIC.
|
||||
* @param anchor the trust anchor selected to validate the CRL issuer
|
||||
*/
|
||||
static void check(PublicKey key, X509CRL crl, String variant,
|
||||
TrustAnchor anchor) throws CertPathValidatorException {
|
||||
|
||||
X509CRLImpl x509CRLImpl = null;
|
||||
try {
|
||||
x509CRLImpl = X509CRLImpl.toImpl(crl);
|
||||
} catch (CRLException ce) {
|
||||
throw new CertPathValidatorException(ce);
|
||||
}
|
||||
|
||||
AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
|
||||
check(key, algorithmId, variant, anchor);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check the signature algorithm with the specified public key.
|
||||
*
|
||||
|
@ -399,7 +374,7 @@ public final class AlgorithmChecker extends PKIXCertPathChecker {
|
|||
|
||||
DisabledAlgorithmConstraints.certPathConstraints().permits(
|
||||
algorithmId.getName(), algorithmId.getParameters(),
|
||||
new CertPathConstraintsParameters(key, variant, anchor, null));
|
||||
new CertPathConstraintsParameters(key, variant, anchor, null), true);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -653,7 +653,8 @@ public class DistributionPointFetcher {
|
|||
|
||||
// check the crl signature algorithm
|
||||
try {
|
||||
AlgorithmChecker.check(prevKey, crl, variant, anchor);
|
||||
AlgorithmChecker.check(prevKey, crlImpl.getSigAlgId(),
|
||||
variant, anchor);
|
||||
} catch (CertPathValidatorException cpve) {
|
||||
if (debug != null) {
|
||||
debug.println("CRL signature algorithm check failed: " + cpve);
|
||||
|
|
|
@ -192,9 +192,9 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints {
|
|||
}
|
||||
|
||||
public final void permits(String algorithm, AlgorithmParameters ap,
|
||||
ConstraintsParameters cp) throws CertPathValidatorException {
|
||||
|
||||
permits(algorithm, cp);
|
||||
ConstraintsParameters cp, boolean checkKey)
|
||||
throws CertPathValidatorException {
|
||||
permits(algorithm, cp, checkKey);
|
||||
if (ap != null) {
|
||||
permits(ap, cp);
|
||||
}
|
||||
|
@ -219,13 +219,13 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints {
|
|||
PSSParameterSpec pssParams =
|
||||
ap.getParameterSpec(PSSParameterSpec.class);
|
||||
String digestAlg = pssParams.getDigestAlgorithm();
|
||||
permits(digestAlg, cp);
|
||||
permits(digestAlg, cp, false);
|
||||
AlgorithmParameterSpec mgfParams = pssParams.getMGFParameters();
|
||||
if (mgfParams instanceof MGF1ParameterSpec) {
|
||||
String mgfDigestAlg =
|
||||
((MGF1ParameterSpec)mgfParams).getDigestAlgorithm();
|
||||
if (!mgfDigestAlg.equalsIgnoreCase(digestAlg)) {
|
||||
permits(mgfDigestAlg, cp);
|
||||
permits(mgfDigestAlg, cp, false);
|
||||
}
|
||||
}
|
||||
} catch (InvalidParameterSpecException ipse) {
|
||||
|
@ -233,22 +233,22 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints {
|
|||
}
|
||||
}
|
||||
|
||||
public final void permits(String algorithm, ConstraintsParameters cp)
|
||||
throws CertPathValidatorException {
|
||||
|
||||
// Check if named curves in the key are disabled.
|
||||
for (Key key : cp.getKeys()) {
|
||||
for (String curve : getNamedCurveFromKey(key)) {
|
||||
if (!checkAlgorithm(disabledAlgorithms, curve, decomposer)) {
|
||||
throw new CertPathValidatorException(
|
||||
public final void permits(String algorithm, ConstraintsParameters cp,
|
||||
boolean checkKey) throws CertPathValidatorException {
|
||||
if (checkKey) {
|
||||
// Check if named curves in the key are disabled.
|
||||
for (Key key : cp.getKeys()) {
|
||||
for (String curve : getNamedCurveFromKey(key)) {
|
||||
if (!checkAlgorithm(disabledAlgorithms, curve, decomposer)) {
|
||||
throw new CertPathValidatorException(
|
||||
"Algorithm constraints check failed on disabled " +
|
||||
"algorithm: " + curve,
|
||||
null, null, -1, BasicReason.ALGORITHM_CONSTRAINED);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
algorithmConstraints.permits(algorithm, cp);
|
||||
algorithmConstraints.permits(algorithm, cp, checkKey);
|
||||
}
|
||||
|
||||
private static List<String> getNamedCurveFromKey(Key key) {
|
||||
|
@ -481,8 +481,8 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints {
|
|||
return true;
|
||||
}
|
||||
|
||||
public void permits(String algorithm, ConstraintsParameters cp)
|
||||
throws CertPathValidatorException {
|
||||
public void permits(String algorithm, ConstraintsParameters cp,
|
||||
boolean checkKey) throws CertPathValidatorException {
|
||||
|
||||
if (debug != null) {
|
||||
debug.println("Constraints.permits(): " + algorithm + ", "
|
||||
|
@ -496,8 +496,10 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints {
|
|||
algorithms.add(algorithm);
|
||||
}
|
||||
|
||||
for (Key key : cp.getKeys()) {
|
||||
algorithms.add(key.getAlgorithm());
|
||||
if (checkKey) {
|
||||
for (Key key : cp.getKeys()) {
|
||||
algorithms.add(key.getAlgorithm());
|
||||
}
|
||||
}
|
||||
|
||||
// Check all applicable constraints
|
||||
|
@ -507,6 +509,9 @@ public class DisabledAlgorithmConstraints extends AbstractAlgorithmConstraints {
|
|||
continue;
|
||||
}
|
||||
for (Constraint constraint : list) {
|
||||
if (!checkKey && constraint instanceof KeySizeConstraint) {
|
||||
continue;
|
||||
}
|
||||
constraint.permits(cp);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -98,16 +98,11 @@ public class JarConstraintsParameters implements ConstraintsParameters {
|
|||
this.timestamp = latestTimestamp;
|
||||
}
|
||||
|
||||
public JarConstraintsParameters(List<X509Certificate> chain, Timestamp timestamp) {
|
||||
public JarConstraintsParameters(List<X509Certificate> chain, Date timestamp) {
|
||||
this.keys = new HashSet<>();
|
||||
this.certsIssuedByAnchor = new HashSet<>();
|
||||
addToCertsAndKeys(chain);
|
||||
if (timestamp != null) {
|
||||
addToCertsAndKeys(timestamp.getSignerCertPath());
|
||||
this.timestamp = timestamp.getTimestamp();
|
||||
} else {
|
||||
this.timestamp = null;
|
||||
}
|
||||
this.timestamp = timestamp;
|
||||
}
|
||||
|
||||
// extract last certificate and signer's public key from chain
|
||||
|
@ -178,7 +173,7 @@ public class JarConstraintsParameters implements ConstraintsParameters {
|
|||
|
||||
@Override
|
||||
public String extendedExceptionMsg() {
|
||||
return message;
|
||||
return message == null ? "." : message;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -217,7 +217,7 @@ public class ManifestEntryVerifier {
|
|||
params.setExtendedExceptionMsg(JarFile.MANIFEST_NAME,
|
||||
name + " entry");
|
||||
DisabledAlgorithmConstraints.jarConstraints()
|
||||
.permits(digest.getAlgorithm(), params);
|
||||
.permits(digest.getAlgorithm(), params, false);
|
||||
} catch (GeneralSecurityException e) {
|
||||
if (debug != null) {
|
||||
debug.println("Digest algorithm is restricted: " + e);
|
||||
|
|
|
@ -383,7 +383,7 @@ public class SignatureFileVerifier {
|
|||
try {
|
||||
params.setExtendedExceptionMsg(name + ".SF", key + " attribute");
|
||||
DisabledAlgorithmConstraints
|
||||
.jarConstraints().permits(algorithm, params);
|
||||
.jarConstraints().permits(algorithm, params, false);
|
||||
} catch (GeneralSecurityException e) {
|
||||
permittedAlgs.put(algorithm, Boolean.FALSE);
|
||||
permittedAlgs.put(key.toUpperCase(), Boolean.FALSE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue