/* * This class is derived from the code of the BouncyCastle library, version 1.46. * * The original work is licensed and copyrighted by the BC: * * Copyright (c) 2000 - 2011 The Legion Of The Bouncy Castle (http://www.bouncycastle.org) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ package eu.emi.security.authn.x509.helpers.pkipath; import java.security.cert.CertPath; import java.security.cert.CertPathBuilderSpi; import java.security.cert.CertificateFactory; import java.security.cert.TrustAnchor; import java.security.cert.X509Certificate; import java.util.ArrayList; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import java.util.List; import org.bouncycastle.jcajce.PKIXExtendedBuilderParameters; import org.bouncycastle.jce.provider.AnnotatedException; import org.bouncycastle.jce.provider.BouncyCastleProvider; import org.bouncycastle.jce.provider.PKIXCertPathBuilderSpi; import eu.emi.security.authn.x509.ValidationError; import eu.emi.security.authn.x509.ValidationErrorCode; import eu.emi.security.authn.x509.helpers.pkipath.bc.CertPathValidatorUtilitiesCanl; import eu.emi.security.authn.x509.impl.CertificateUtils; import eu.emi.security.authn.x509.impl.FormatMode; /** * This class is a modified copy of BC's {@link PKIXCertPathBuilderSpi}. The * difference is that this class is building the path only, it is not further * validating it. As without validation it is possible to create many potential * CertPaths a list is returned.Additionally this class report errors as exceptions with * {@link ValidationError} inside. * * @see CertPathBuilderSpi * @see PKIXCertPathBuilderSpi */ public class NonValidatingCertPathBuilder { private ValidationErrorException certPathException; private List<CertPath> result; /** * Build a CertPath using the given parameter. * * @param pkixParams PKIXBuilderParameters object containing certificates * to build the CertPath * @param target Target certificate for the path * @param origChain original chain * @return certificate paths * @throws ValidationErrorException validation error exception */ public List<CertPath> buildPath(PKIXExtendedBuilderParameters pkixParams, X509Certificate target, X509Certificate[] origChain) throws ValidationErrorException { List<X509Certificate> certPathList = new ArrayList<X509Certificate>(); result = new ArrayList<CertPath>(); build(target, pkixParams, certPathList, origChain); if (result.size() == 0 && certPathException != null) throw certPathException; if (result.size() == 0) throw new ValidationErrorException(new ValidationError(origChain, -1, ValidationErrorCode.noTrustAnchorFound)); return result; } protected void build(X509Certificate tbvCert, PKIXExtendedBuilderParameters pkixParams, List<X509Certificate> tbvPath, final X509Certificate[] origChain) { // If tbvCert is readily present in tbvPath, it indicates having // run into a cycle in the PKI graph. if (tbvPath.contains(tbvCert)) { return; } // step out, the certificate is not allowed to appear in a // certification chain. if (pkixParams.getExcludedCerts().contains(tbvCert)) { return; } // test if certificate path exceeds maximum length if (pkixParams.getMaxPathLength() != -1) { if (tbvPath.size() - 1 > pkixParams.getMaxPathLength()) { return; } } tbvPath.add(tbvCert); CertificateFactory cFact; try { cFact = CertificateFactory.getInstance("X.509", BouncyCastleProvider.PROVIDER_NAME); } catch (Exception e) { // cannot happen throw new RuntimeException("Exception creating support classes."); } try { // check whether the issuer of <tbvCert> is a TrustAnchor TrustAnchor ta; try { ta = CertPathValidatorUtilitiesCanl.findTrustAnchorPublic(tbvCert, pkixParams.getBaseParameters().getTrustAnchors(), pkixParams.getBaseParameters().getSigProvider()); } catch (AnnotatedException e1) { throw new ValidationErrorException(new ValidationError(origChain, -1, ValidationErrorCode.noTrustAnchorFound)); } if (ta != null) { try { CertPath generated = cFact.generateCertPath(tbvPath); result.add(generated); tbvPath.remove(tbvCert); return; } catch (Exception e) { throw new ValidationErrorException(new ValidationError(origChain, -1, ValidationErrorCode.unknownMsg, "Certification path could not be constructed from certificate list: " + e)); } } else { Collection<Object> issuers = new HashSet<Object>(); // try to get the issuer certificate from one // of the stores try { issuers.addAll(CertPathValidatorUtilitiesCanl.findIssuerCerts( tbvCert, pkixParams)); } catch (org.bouncycastle.jce.provider.AnnotatedException e) { throw new ValidationErrorException(new ValidationError(origChain, -1, ValidationErrorCode.unknownMsg, "Low level error occured: Cannot find issuer certificate " + "for certificate in certification path: " + e)); } if (issuers.isEmpty()) { throw new ValidationErrorException(new ValidationError(origChain, -1, ValidationErrorCode.invalidCertificatePath, CertificateUtils.format(tbvCert, FormatMode.COMPACT_ONE_LINE))); } Iterator<?> it = issuers.iterator(); while (it.hasNext()) { X509Certificate issuer = (X509Certificate) it.next(); build(issuer, pkixParams, tbvPath, origChain); } } } catch (ValidationErrorException e) { if (certPathException == null) certPathException = new ValidationErrorException(); certPathException.addErrors(e.getErrors()); } tbvPath.remove(tbvCert); } }