jdk/src/share/classes/sun/security/provider/certpath/ForwardBuilder.java
author mullan
Thu, 11 Sep 2008 14:05:16 -0400
changeset 1238 6d1f4b722acd
parent 792 214933bde360
child 3225 023603ebeb1f
permissions -rw-r--r--
6465942: Add problem identification facility to the CertPathValidator framework Summary: Add support to the java.security.cert APIs for determining the reason that a certification path is invalid. Reviewed-by: vinnie
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
792
214933bde360 6714842: CertPathBuilder returns incorrect CertPath for BasicConstraints in builderParams
mullan
parents: 2
diff changeset
     2
 * Copyright 2000-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.provider.certpath;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.GeneralSecurityException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.security.InvalidKeyException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.security.cert.CertificateException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.cert.CertPathValidatorException;
1238
6d1f4b722acd 6465942: Add problem identification facility to the CertPathValidator framework
mullan
parents: 792
diff changeset
    35
import java.security.cert.PKIXReason;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.cert.CertStore;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.security.cert.CertStoreException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.security.cert.PKIXBuilderParameters;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.security.cert.PKIXCertPathChecker;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.security.cert.TrustAnchor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.security.cert.X509Certificate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.security.cert.X509CertSelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import javax.security.auth.x500.X500Principal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import sun.security.util.Debug;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import sun.security.x509.AccessDescription;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import sun.security.x509.AuthorityInfoAccessExtension;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import sun.security.x509.PKIXExtensions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import sun.security.x509.PolicyMappingsExtension;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import sun.security.x509.X500Name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import sun.security.x509.X509CertImpl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * This class represents a forward builder, which is able to retrieve
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * matching certificates from CertStores and verify a particular certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * against a ForwardState.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * @since       1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * @author      Yassir Elley
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * @author      Sean Mullan
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
class ForwardBuilder extends Builder {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private static final Debug debug = Debug.getInstance("certpath");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    private final Set<X509Certificate> trustedCerts;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private final Set<X500Principal> trustedSubjectDNs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    private final Set<TrustAnchor> trustAnchors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private X509CertSelector eeSelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private X509CertSelector caSelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private X509CertSelector caTargetSelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    TrustAnchor trustAnchor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    private Comparator<X509Certificate> comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    private boolean searchAllCertStores = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * Initialize the builder with the input parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * @param params the parameter set used to build a certification path
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    ForwardBuilder(PKIXBuilderParameters buildParams,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        X500Principal targetSubjectDN, boolean searchAllCertStores)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        super(buildParams, targetSubjectDN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        // populate sets of trusted certificates and subject DNs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        trustAnchors = buildParams.getTrustAnchors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        trustedCerts = new HashSet<X509Certificate>(trustAnchors.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        trustedSubjectDNs = new HashSet<X500Principal>(trustAnchors.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        for (TrustAnchor anchor : trustAnchors) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            X509Certificate trustedCert = anchor.getTrustedCert();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            if (trustedCert != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                trustedCerts.add(trustedCert);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                trustedSubjectDNs.add(trustedCert.getSubjectX500Principal());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                trustedSubjectDNs.add(anchor.getCA());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        comparator = new PKIXCertComparator(trustedSubjectDNs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        this.searchAllCertStores = searchAllCertStores;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * Retrieves all certs from the specified CertStores that satisfy the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * requirements specified in the parameters and the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * PKIX state (name constraints, policy constraints, etc).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * @param currentState the current state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *        Must be an instance of <code>ForwardState</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * @param certStores list of CertStores
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    Collection<X509Certificate> getMatchingCerts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        (State currentState, List<CertStore> certStores)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        throws CertStoreException, CertificateException, IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            debug.println("ForwardBuilder.getMatchingCerts()...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        ForwardState currState = (ForwardState) currentState;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
         * We store certs in a Set because we don't want duplicates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
         * As each cert is added, it is sorted based on the PKIXCertComparator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
         * algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        Set<X509Certificate> certs = new TreeSet<X509Certificate>(comparator);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
         * Only look for EE certs if search has just started.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        if (currState.isInitial()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            getMatchingEECerts(currState, certStores, certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        getMatchingCACerts(currState, certStores, certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        return certs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * Retrieves all end-entity certificates which satisfy constraints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * and requirements specified in the parameters and PKIX state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    private void getMatchingEECerts(ForwardState currentState,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        List<CertStore> certStores, Collection<X509Certificate> eeCerts)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            debug.println("ForwardBuilder.getMatchingEECerts()...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
         * Compose a certificate matching rule to filter out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
         * certs which don't satisfy constraints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
         * First, retrieve clone of current target cert constraints,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
         * and then add more selection criteria based on current validation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
         * state. Since selector never changes, cache local copy & reuse.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        if (eeSelector == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            eeSelector = (X509CertSelector) targetCertConstraints.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
             * Match on certificate validity date
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            eeSelector.setCertificateValid(date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
             * Policy processing optimizations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            if (buildParams.isExplicitPolicyRequired()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                eeSelector.setPolicy(getMatchingPolicies());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
             * Require EE certs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            eeSelector.setBasicConstraints(-2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        /* Retrieve matching EE certs from CertStores */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        addMatchingCerts(eeSelector, certStores, eeCerts, searchAllCertStores);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * Retrieves all CA certificates which satisfy constraints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * and requirements specified in the parameters and PKIX state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    private void getMatchingCACerts(ForwardState currentState,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        List<CertStore> certStores, Collection<X509Certificate> caCerts)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            debug.println("ForwardBuilder.getMatchingCACerts()...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        int initialSize = caCerts.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
         * Compose a CertSelector to filter out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
         * certs which do not satisfy requirements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        X509CertSelector sel = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        if (currentState.isInitial()) {
792
214933bde360 6714842: CertPathBuilder returns incorrect CertPath for BasicConstraints in builderParams
mullan
parents: 2
diff changeset
   202
            if (targetCertConstraints.getBasicConstraints() == -2) {
214933bde360 6714842: CertPathBuilder returns incorrect CertPath for BasicConstraints in builderParams
mullan
parents: 2
diff changeset
   203
                // no need to continue: this means we never can match a CA cert
214933bde360 6714842: CertPathBuilder returns incorrect CertPath for BasicConstraints in builderParams
mullan
parents: 2
diff changeset
   204
                return;
214933bde360 6714842: CertPathBuilder returns incorrect CertPath for BasicConstraints in builderParams
mullan
parents: 2
diff changeset
   205
            }
214933bde360 6714842: CertPathBuilder returns incorrect CertPath for BasicConstraints in builderParams
mullan
parents: 2
diff changeset
   206
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            /* This means a CA is the target, so match on same stuff as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
             * getMatchingEECerts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
                debug.println("ForwardBuilder.getMatchingCACerts(): ca is target");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            if (caTargetSelector == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                caTargetSelector = (X509CertSelector)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                    targetCertConstraints.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                 * Match on certificate validity date
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                caTargetSelector.setCertificateValid(date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                 * Policy processing optimizations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                if (buildParams.isExplicitPolicyRequired())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                    caTargetSelector.setPolicy(getMatchingPolicies());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
             * Require CA certs with a pathLenConstraint that allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
             * at least as many CA certs that have already been traversed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            caTargetSelector.setBasicConstraints(currentState.traversedCACerts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            sel = caTargetSelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            if (caSelector == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
                caSelector = new X509CertSelector();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                 * Match on certificate validity date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                caSelector.setCertificateValid(date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                 * Policy processing optimizations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                if (buildParams.isExplicitPolicyRequired())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                    caSelector.setPolicy(getMatchingPolicies());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
             * Match on subject (issuer of previous cert)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            caSelector.setSubject(currentState.issuerDN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
             * Match on subjectNamesTraversed (both DNs and AltNames)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
             * (checks that current cert's name constraints permit it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
             * to certify all the DNs and AltNames that have been traversed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            CertPathHelper.setPathToNames
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                (caSelector, currentState.subjectNamesTraversed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
             * Require CA certs with a pathLenConstraint that allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
             * at least as many CA certs that have already been traversed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            caSelector.setBasicConstraints(currentState.traversedCACerts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            sel = caSelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
         * Check if any of the trusted certs could be a match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
         * Since we are not validating the trusted cert, we can't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
         * re-use the selector we've built up (sel) - we need
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
         * to use a new selector (trustedSel)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        X509CertSelector trustedSel = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        if (currentState.isInitial()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            trustedSel = targetCertConstraints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
            trustedSel = new X509CertSelector();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            trustedSel.setSubject(currentState.issuerDN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        boolean foundMatchingCert = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        for (X509Certificate trustedCert : trustedCerts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            if (trustedSel.match(trustedCert)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                    debug.println("ForwardBuilder.getMatchingCACerts: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                        + "found matching trust anchor");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                if (caCerts.add(trustedCert) && !searchAllCertStores) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
         * If we have already traversed as many CA certs as the maxPathLength
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
         * will allow us to, then we don't bother looking through these
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
         * certificate pairs. If maxPathLength has a value of -1, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
         * means it is unconstrained, so we always look through the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
         * certificate pairs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        if (currentState.isInitial() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
           (buildParams.getMaxPathLength() == -1) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
           (buildParams.getMaxPathLength() > currentState.traversedCACerts))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
            if (addMatchingCerts(sel, certStores, caCerts, searchAllCertStores)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
                && !searchAllCertStores) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        if (!currentState.isInitial() && Builder.USE_AIA) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            // check for AuthorityInformationAccess extension
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            AuthorityInfoAccessExtension aiaExt =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                currentState.cert.getAuthorityInfoAccessExtension();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            if (aiaExt != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                getCerts(aiaExt, caCerts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            int numCerts = caCerts.size() - initialSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
            debug.println("ForwardBuilder.getMatchingCACerts: found " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                numCerts + " CA certs");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * Download Certificates from the given AIA and add them to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * specified Collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    private boolean getCerts(AuthorityInfoAccessExtension aiaExt,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        Collection<X509Certificate> certs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        if (Builder.USE_AIA == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        List<AccessDescription> adList = aiaExt.getAccessDescriptions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        if (adList == null || adList.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        boolean add = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        for (AccessDescription ad : adList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            CertStore cs = URICertStore.getInstance(ad);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                if (certs.addAll((Collection<X509Certificate>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                    cs.getCertificates(caSelector))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
                    add = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                    if (!searchAllCertStores) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
            } catch (CertStoreException cse) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                    debug.println("exception getting certs from CertStore:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                    cse.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        return add;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * This inner class compares 2 PKIX certificates according to which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * should be tried first when building a path from the target.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * The preference order is as follows:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * Given trusted certificate(s):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *    Subject:ou=D,ou=C,o=B,c=A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * Preference order for current cert:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * 1) Issuer matches a trusted subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *    Issuer: ou=D,ou=C,o=B,c=A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * 2) Issuer is a descendant of a trusted subject (in order of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *    number of links to the trusted subject)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     *    a) Issuer: ou=E,ou=D,ou=C,o=B,c=A        [links=1]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     *    b) Issuer: ou=F,ou=E,ou=D,ou=C,ou=B,c=A  [links=2]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * 3) Issuer is an ancestor of a trusted subject (in order of number of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *    links to the trusted subject)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *    a) Issuer: ou=C,o=B,c=A [links=1]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     *    b) Issuer: o=B,c=A      [links=2]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * 4) Issuer is in the same namespace as a trusted subject (in order of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     *    number of links to the trusted subject)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     *    a) Issuer: ou=G,ou=C,o=B,c=A  [links=2]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     *    b) Issuer: ou=H,o=B,c=A       [links=3]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * 5) Issuer is an ancestor of certificate subject (in order of number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *    of links to the certificate subject)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *    a) Issuer:  ou=K,o=J,c=A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     *       Subject: ou=L,ou=K,o=J,c=A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     *    b) Issuer:  o=J,c=A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *       Subject: ou=L,ou=K,0=J,c=A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * 6) Any other certificates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    static class PKIXCertComparator implements Comparator<X509Certificate> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        final static String METHOD_NME = "PKIXCertComparator.compare()";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        private final Set<X500Principal> trustedSubjectDNs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        PKIXCertComparator(Set<X500Principal> trustedSubjectDNs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            this.trustedSubjectDNs = trustedSubjectDNs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
         * @param oCert1 First X509Certificate to be compared
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
         * @param oCert2 Second X509Certificate to be compared
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
         * @return -1 if oCert1 is preferable to oCert2, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
         *            if oCert1 and oCert2 are equally preferable (in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
         *            case it doesn't matter which is preferable, but we don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
         *            return 0 because the comparator would behave strangely
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
         *            when used in a SortedSet).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
         *          1 if oCert2 is preferable to oCert1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
         *          0 if oCert1.equals(oCert2). We only return 0 if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
         *          certs are equal so that this comparator behaves
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
         *          correctly when used in a SortedSet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
         * @throws ClassCastException if either argument is not of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
         * X509Certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        public int compare(X509Certificate oCert1, X509Certificate oCert2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
            // if certs are the same, return 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            if (oCert1.equals(oCert2)) return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            X500Principal cIssuer1 = oCert1.getIssuerX500Principal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            X500Principal cIssuer2 = oCert2.getIssuerX500Principal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            X500Name cIssuer1Name = X500Name.asX500Name(cIssuer1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            X500Name cIssuer2Name = X500Name.asX500Name(cIssuer2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                debug.println(METHOD_NME + " o1 Issuer:  " + cIssuer1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                debug.println(METHOD_NME + " o2 Issuer:  " + cIssuer2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
            /* If one cert's issuer matches a trusted subject, then it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
             * preferable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                debug.println(METHOD_NME + " MATCH TRUSTED SUBJECT TEST...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            boolean m1 = trustedSubjectDNs.contains(cIssuer1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
            boolean m2 = trustedSubjectDNs.contains(cIssuer2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                debug.println(METHOD_NME + " m1: " + m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
                debug.println(METHOD_NME + " m2: " + m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
            if (m1 && m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            } else if (m1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            } else if (m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            /* If one cert's issuer is a naming descendant of a trusted subject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
             * then it is preferable, in order of increasing naming distance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
                debug.println(METHOD_NME + " NAMING DESCENDANT TEST...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
            for (X500Principal tSubject : trustedSubjectDNs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
                X500Name tSubjectName = X500Name.asX500Name(tSubject);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                int distanceTto1 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
                    Builder.distance(tSubjectName, cIssuer1Name, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
                int distanceTto2 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
                    Builder.distance(tSubjectName, cIssuer2Name, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
                    debug.println(METHOD_NME +" distanceTto1: " + distanceTto1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                    debug.println(METHOD_NME +" distanceTto2: " + distanceTto2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
                if (distanceTto1 > 0 || distanceTto2 > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
                    if (distanceTto1 == distanceTto2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
                        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
                    } else if (distanceTto1 > 0 && distanceTto2 <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
                        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                    } else if (distanceTto1 <= 0 && distanceTto2 > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
                        return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                    } else if (distanceTto1 < distanceTto2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                    } else {    // distanceTto1 > distanceTto2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                        return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
            /* If one cert's issuer is a naming ancestor of a trusted subject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
             * then it is preferable, in order of increasing naming distance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                debug.println(METHOD_NME + " NAMING ANCESTOR TEST...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            for (X500Principal tSubject : trustedSubjectDNs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
                X500Name tSubjectName = X500Name.asX500Name(tSubject);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                int distanceTto1 = Builder.distance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                    (tSubjectName, cIssuer1Name, Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                int distanceTto2 = Builder.distance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                    (tSubjectName, cIssuer2Name, Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                    debug.println(METHOD_NME +" distanceTto1: " + distanceTto1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                    debug.println(METHOD_NME +" distanceTto2: " + distanceTto2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                if (distanceTto1 < 0 || distanceTto2 < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                    if (distanceTto1 == distanceTto2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                    } else if (distanceTto1 < 0 && distanceTto2 >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                    } else if (distanceTto1 >= 0 && distanceTto2 < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                        return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                    } else if (distanceTto1 > distanceTto2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                        return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
            /* If one cert's issuer is in the same namespace as a trusted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
             * subject, then it is preferable, in order of increasing naming
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
             * distance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                debug.println(METHOD_NME +" SAME NAMESPACE AS TRUSTED TEST...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            for (X500Principal tSubject : trustedSubjectDNs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                X500Name tSubjectName = X500Name.asX500Name(tSubject);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                X500Name tAo1 = tSubjectName.commonAncestor(cIssuer1Name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                X500Name tAo2 = tSubjectName.commonAncestor(cIssuer2Name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                    debug.println(METHOD_NME +" tAo1: " + String.valueOf(tAo1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                    debug.println(METHOD_NME +" tAo2: " + String.valueOf(tAo2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                if (tAo1 != null || tAo2 != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
                    if (tAo1 != null && tAo2 != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                        int hopsTto1 = Builder.hops
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                            (tSubjectName, cIssuer1Name, Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                        int hopsTto2 = Builder.hops
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                            (tSubjectName, cIssuer2Name, Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                            debug.println(METHOD_NME +" hopsTto1: " + hopsTto1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                            debug.println(METHOD_NME +" hopsTto2: " + hopsTto2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                        if (hopsTto1 == hopsTto2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                        } else if (hopsTto1 > hopsTto2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                            return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                        } else {  // hopsTto1 < hopsTto2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
                            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                    } else if (tAo1 == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                        return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
            /* If one cert's issuer is an ancestor of that cert's subject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
             * then it is preferable, in order of increasing naming distance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                debug.println(METHOD_NME+" CERT ISSUER/SUBJECT COMPARISON TEST...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
            X500Principal cSubject1 = oCert1.getSubjectX500Principal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
            X500Principal cSubject2 = oCert2.getSubjectX500Principal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
            X500Name cSubject1Name = X500Name.asX500Name(cSubject1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
            X500Name cSubject2Name = X500Name.asX500Name(cSubject2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                debug.println(METHOD_NME + " o1 Subject: " + cSubject1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                debug.println(METHOD_NME + " o2 Subject: " + cSubject2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            int distanceStoI1 = Builder.distance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                (cSubject1Name, cIssuer1Name, Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            int distanceStoI2 = Builder.distance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                (cSubject2Name, cIssuer2Name, Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                debug.println(METHOD_NME + " distanceStoI1: " + distanceStoI1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                debug.println(METHOD_NME + " distanceStoI2: " + distanceStoI2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
            if (distanceStoI2 > distanceStoI1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
            } else if (distanceStoI2 < distanceStoI1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            /* Otherwise, certs are equally preferable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                debug.println(METHOD_NME + " no tests matched; RETURN 0");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * Verifies a matching certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * This method executes the validation steps in the PKIX path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * validation algorithm <draft-ietf-pkix-new-part1-08.txt> which were
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * not satisfied by the selection criteria used by getCertificates()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * to find the certs and only the steps that can be executed in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * forward direction (target to trust anchor). Those steps that can
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * only be executed in a reverse direction are deferred until the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * complete path has been built.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     * Trust anchor certs are not validated, but are used to verify the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * signature and revocation status of the previous cert.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * If the last certificate is being verified (the one whose subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * matches the target subject, then steps in 6.1.4 of the PKIX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * Certification Path Validation algorithm are NOT executed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * regardless of whether or not the last cert is an end-entity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * cert or not. This allows callers to certify CA certs as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * well as EE certs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * @param cert the certificate to be verified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * @param currentState the current state against which the cert is verified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * @param certPathList the certPathList generated thus far
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    void verifyCert(X509Certificate cert, State currentState,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        List<X509Certificate> certPathList) throws GeneralSecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            debug.println("ForwardBuilder.verifyCert(SN: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                + Debug.toHexString(cert.getSerialNumber())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                + "\n  Issuer: " + cert.getIssuerX500Principal() + ")"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                + "\n  Subject: " + cert.getSubjectX500Principal() + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        ForwardState currState = (ForwardState) currentState;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
         * check for looping - abort a loop if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
         * ((we encounter the same certificate twice) AND
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
         * ((policyMappingInhibited = true) OR (no policy mapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
         * extensions can be found between the occurences of the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
         * certificate)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        if (certPathList != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
            boolean policyMappingFound = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            for (X509Certificate cpListCert : certPathList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                X509CertImpl cpListCertImpl = X509CertImpl.toImpl(cpListCert);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
                PolicyMappingsExtension policyMappingsExt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
                    = cpListCertImpl.getPolicyMappingsExtension();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
                if (policyMappingsExt != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
                    policyMappingFound = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
                    debug.println("policyMappingFound = " + policyMappingFound);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                if (cert.equals(cpListCert)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                    if ((buildParams.isPolicyMappingInhibited()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
                        (!policyMappingFound)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
                            debug.println("loop detected!!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
                        throw new CertPathValidatorException("loop detected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        /* check if trusted cert */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        boolean isTrustedCert = trustedCerts.contains(cert);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        /* we don't perform any validation of the trusted cert */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        if (!isTrustedCert) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
             * Check CRITICAL private extensions for user checkers that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
             * support forward checking (forwardCheckers) and remove
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
             * ones we know how to check.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
            Set<String> unresCritExts = cert.getCriticalExtensionOIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
            if (unresCritExts == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
                unresCritExts = Collections.<String>emptySet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
            for (PKIXCertPathChecker checker : currState.forwardCheckers) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                checker.check(cert, unresCritExts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
             * Remove extensions from user checkers that don't support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
             * forward checking. After this step, we will have removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
             * all extensions that all user checkers are capable of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
             * processing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
            for (PKIXCertPathChecker checker : buildParams.getCertPathCheckers()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
                if (!checker.isForwardCheckingSupported()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                    Set<String> supportedExts = checker.getSupportedExtensions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                    if (supportedExts != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                        unresCritExts.removeAll(supportedExts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
             * Look at the remaining extensions and remove any ones we know how
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
             * to check. If there are any left, throw an exception!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
            if (!unresCritExts.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                unresCritExts.remove(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                    PKIXExtensions.BasicConstraints_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                unresCritExts.remove(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                    PKIXExtensions.NameConstraints_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                unresCritExts.remove(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                    PKIXExtensions.CertificatePolicies_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
                unresCritExts.remove(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                    PKIXExtensions.PolicyMappings_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
                unresCritExts.remove(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                    PKIXExtensions.PolicyConstraints_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                unresCritExts.remove(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
                    PKIXExtensions.InhibitAnyPolicy_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
                unresCritExts.remove(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
                    PKIXExtensions.SubjectAlternativeName_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
                unresCritExts.remove(PKIXExtensions.KeyUsage_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
                unresCritExts.remove(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
                    PKIXExtensions.ExtendedKeyUsage_Id.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
                if (!unresCritExts.isEmpty())
1238
6d1f4b722acd 6465942: Add problem identification facility to the CertPathValidator framework
mullan
parents: 792
diff changeset
   736
                    throw new CertPathValidatorException
6d1f4b722acd 6465942: Add problem identification facility to the CertPathValidator framework
mullan
parents: 792
diff changeset
   737
                        ("Unrecognized critical extension(s)", null, null, -1,
6d1f4b722acd 6465942: Add problem identification facility to the CertPathValidator framework
mullan
parents: 792
diff changeset
   738
                         PKIXReason.UNRECOGNIZED_CRIT_EXT);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
         * if this is the target certificate (init=true), then we are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
         * not able to do any more verification, so just return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        if (currState.isInitial()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        /* we don't perform any validation of the trusted cert */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        if (!isTrustedCert) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
            /* Make sure this is a CA cert */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
            if (cert.getBasicConstraints() == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                throw new CertificateException("cert is NOT a CA cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
             * Check keyUsage extension
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
            KeyChecker.verifyCAKeyUsage(cert);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
         * the following checks are performed even when the cert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
         * is a trusted cert, since we are only extracting the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
         * subjectDN, and publicKey from the cert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
         * in order to verify a previous cert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
         * Check revocation for the previous cert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        if (buildParams.isRevocationEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
            // first off, see if this cert can authorize revocation...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
            if (CrlRevocationChecker.certCanSignCrl(cert)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                // And then check to be sure no key requiring key parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
                // has been encountered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
                if (!currState.keyParamsNeeded())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                    // If all that checks out, we can check the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
                    // revocation status of the cert. Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                    // we'll just wait until the end.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
                    currState.crlChecker.check(currState.cert,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
                                               cert.getPublicKey(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
                                               true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
         * Check signature only if no key requiring key parameters has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
         * encountered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        if (!currState.keyParamsNeeded()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
            (currState.cert).verify(cert.getPublicKey(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                                    buildParams.getSigProvider());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     * Verifies whether the input certificate completes the path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     * Checks the cert against each trust anchor that was specified, in order,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     * and returns true as soon as it finds a valid anchor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     * Returns true if the cert matches a trust anchor specified as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     * certificate or if the cert verifies with a trust anchor that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * was specified as a trusted {pubkey, caname} pair. Returns false if none
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     * of the trust anchors are valid for this cert.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
     * @param cert the certificate to test
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * @return a boolean value indicating whether the cert completes the path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    boolean isPathCompleted(X509Certificate cert) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        for (TrustAnchor anchor : trustAnchors) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
            if (anchor.getTrustedCert() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
                if (cert.equals(anchor.getTrustedCert())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                    this.trustAnchor = anchor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
            X500Principal trustedCAName = anchor.getCA();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
            /* Check subject/issuer name chaining */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            if (!trustedCAName.equals(cert.getIssuerX500Principal())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            /* Check revocation if it is enabled */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            if (buildParams.isRevocationEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
                    CrlRevocationChecker crlChecker =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
                        new CrlRevocationChecker(anchor, buildParams);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
                    crlChecker.check(cert, anchor.getCAPublicKey(), true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
                } catch (CertPathValidatorException cpve) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                    if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
                        debug.println("ForwardBuilder.isPathCompleted() cpve");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
                        cpve.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
             * Check signature
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                // NOTE: the DSA public key in the buildParams may lack
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                // parameters, yet there is no key to inherit the parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                // from.  This is probably such a rare case that it is not worth
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                // trying to detect the situation earlier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                cert.verify(anchor.getCAPublicKey(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                            buildParams.getSigProvider());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
            } catch (InvalidKeyException ike) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                    debug.println("ForwardBuilder.isPathCompleted() invalid "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                        + "DSA key found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
            } catch (Exception e){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                    debug.println("ForwardBuilder.isPathCompleted() " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                        "unexpected exception");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                    e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
            this.trustAnchor = anchor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
    /** Adds the certificate to the certPathList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * @param cert the certificate to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * @param certPathList the certification path list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
    void addCertToPath(X509Certificate cert,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
        LinkedList<X509Certificate> certPathList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
        certPathList.addFirst(cert);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
    /** Removes final certificate from the certPathList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * @param certPathList the certification path list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    void removeFinalCertFromPath(LinkedList<X509Certificate> certPathList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
        certPathList.removeFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
}