3 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
6 /* ====================================================================
7 * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * licensing@OpenSSL.org.
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
54 * This product includes cryptographic software written by Eric Young
55 * (eay@cryptsoft.com). This product includes software written by Tim
56 * Hudson (tjh@cryptsoft.com).
61 #include "internal/cryptlib.h"
62 #include "internal/numbers.h"
63 #include <openssl/x509v3.h>
64 #include <openssl/x509_vfy.h>
66 static void x509v3_cache_extensions(X509 *x);
68 static int check_ssl_ca(const X509 *x);
69 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
71 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
73 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
75 static int purpose_smime(const X509 *x, int ca);
76 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
78 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
80 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
82 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
84 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
85 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
87 static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b);
88 static void xptable_free(X509_PURPOSE *p);
90 static X509_PURPOSE xstandard[] = {
91 {X509_PURPOSE_SSL_CLIENT, X509_TRUST_SSL_CLIENT, 0,
92 check_purpose_ssl_client, "SSL client", "sslclient", NULL},
93 {X509_PURPOSE_SSL_SERVER, X509_TRUST_SSL_SERVER, 0,
94 check_purpose_ssl_server, "SSL server", "sslserver", NULL},
95 {X509_PURPOSE_NS_SSL_SERVER, X509_TRUST_SSL_SERVER, 0,
96 check_purpose_ns_ssl_server, "Netscape SSL server", "nssslserver", NULL},
97 {X509_PURPOSE_SMIME_SIGN, X509_TRUST_EMAIL, 0, check_purpose_smime_sign,
98 "S/MIME signing", "smimesign", NULL},
99 {X509_PURPOSE_SMIME_ENCRYPT, X509_TRUST_EMAIL, 0,
100 check_purpose_smime_encrypt, "S/MIME encryption", "smimeencrypt", NULL},
101 {X509_PURPOSE_CRL_SIGN, X509_TRUST_COMPAT, 0, check_purpose_crl_sign,
102 "CRL signing", "crlsign", NULL},
103 {X509_PURPOSE_ANY, X509_TRUST_DEFAULT, 0, no_check, "Any Purpose", "any",
105 {X509_PURPOSE_OCSP_HELPER, X509_TRUST_COMPAT, 0, ocsp_helper,
106 "OCSP helper", "ocsphelper", NULL},
107 {X509_PURPOSE_TIMESTAMP_SIGN, X509_TRUST_TSA, 0,
108 check_purpose_timestamp_sign, "Time Stamp signing", "timestampsign",
112 #define X509_PURPOSE_COUNT OSSL_NELEM(xstandard)
114 static STACK_OF(X509_PURPOSE) *xptable = NULL;
116 static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b)
118 return (*a)->purpose - (*b)->purpose;
122 * As much as I'd like to make X509_check_purpose use a "const" X509* I
123 * really can't because it does recalculate hashes and do other non-const
126 int X509_check_purpose(X509 *x, int id, int ca)
129 const X509_PURPOSE *pt;
130 if (!(x->ex_flags & EXFLAG_SET)) {
131 CRYPTO_w_lock(CRYPTO_LOCK_X509);
132 x509v3_cache_extensions(x);
133 CRYPTO_w_unlock(CRYPTO_LOCK_X509);
137 idx = X509_PURPOSE_get_by_id(id);
140 pt = X509_PURPOSE_get0(idx);
141 return pt->check_purpose(pt, x, ca);
144 int X509_PURPOSE_set(int *p, int purpose)
146 if (X509_PURPOSE_get_by_id(purpose) == -1) {
147 X509V3err(X509V3_F_X509_PURPOSE_SET, X509V3_R_INVALID_PURPOSE);
154 int X509_PURPOSE_get_count(void)
157 return X509_PURPOSE_COUNT;
158 return sk_X509_PURPOSE_num(xptable) + X509_PURPOSE_COUNT;
161 X509_PURPOSE *X509_PURPOSE_get0(int idx)
165 if (idx < (int)X509_PURPOSE_COUNT)
166 return xstandard + idx;
167 return sk_X509_PURPOSE_value(xptable, idx - X509_PURPOSE_COUNT);
170 int X509_PURPOSE_get_by_sname(char *sname)
174 for (i = 0; i < X509_PURPOSE_get_count(); i++) {
175 xptmp = X509_PURPOSE_get0(i);
176 if (strcmp(xptmp->sname, sname) == 0)
182 int X509_PURPOSE_get_by_id(int purpose)
186 if ((purpose >= X509_PURPOSE_MIN) && (purpose <= X509_PURPOSE_MAX))
187 return purpose - X509_PURPOSE_MIN;
188 tmp.purpose = purpose;
191 idx = sk_X509_PURPOSE_find(xptable, &tmp);
194 return idx + X509_PURPOSE_COUNT;
197 int X509_PURPOSE_add(int id, int trust, int flags,
198 int (*ck) (const X509_PURPOSE *, const X509 *, int),
199 char *name, char *sname, void *arg)
204 * This is set according to what we change: application can't set it
206 flags &= ~X509_PURPOSE_DYNAMIC;
207 /* This will always be set for application modified trust entries */
208 flags |= X509_PURPOSE_DYNAMIC_NAME;
209 /* Get existing entry if any */
210 idx = X509_PURPOSE_get_by_id(id);
211 /* Need a new entry */
213 if ((ptmp = OPENSSL_malloc(sizeof(*ptmp))) == NULL) {
214 X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
217 ptmp->flags = X509_PURPOSE_DYNAMIC;
219 ptmp = X509_PURPOSE_get0(idx);
221 /* OPENSSL_free existing name if dynamic */
222 if (ptmp->flags & X509_PURPOSE_DYNAMIC_NAME) {
223 OPENSSL_free(ptmp->name);
224 OPENSSL_free(ptmp->sname);
226 /* dup supplied name */
227 ptmp->name = BUF_strdup(name);
228 ptmp->sname = BUF_strdup(sname);
229 if (!ptmp->name || !ptmp->sname) {
230 X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
233 /* Keep the dynamic flag of existing entry */
234 ptmp->flags &= X509_PURPOSE_DYNAMIC;
235 /* Set all other flags */
236 ptmp->flags |= flags;
240 ptmp->check_purpose = ck;
241 ptmp->usr_data = arg;
243 /* If its a new entry manage the dynamic table */
246 && (xptable = sk_X509_PURPOSE_new(xp_cmp)) == NULL) {
247 X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
250 if (!sk_X509_PURPOSE_push(xptable, ptmp)) {
251 X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
258 static void xptable_free(X509_PURPOSE *p)
262 if (p->flags & X509_PURPOSE_DYNAMIC) {
263 if (p->flags & X509_PURPOSE_DYNAMIC_NAME) {
264 OPENSSL_free(p->name);
265 OPENSSL_free(p->sname);
271 void X509_PURPOSE_cleanup(void)
274 sk_X509_PURPOSE_pop_free(xptable, xptable_free);
275 for (i = 0; i < X509_PURPOSE_COUNT; i++)
276 xptable_free(xstandard + i);
280 int X509_PURPOSE_get_id(X509_PURPOSE *xp)
285 char *X509_PURPOSE_get0_name(X509_PURPOSE *xp)
290 char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp)
295 int X509_PURPOSE_get_trust(X509_PURPOSE *xp)
300 static int nid_cmp(const int *a, const int *b)
305 DECLARE_OBJ_BSEARCH_CMP_FN(int, int, nid);
306 IMPLEMENT_OBJ_BSEARCH_CMP_FN(int, int, nid);
308 int X509_supported_extension(X509_EXTENSION *ex)
311 * This table is a list of the NIDs of supported extensions: that is
312 * those which are used by the verify process. If an extension is
313 * critical and doesn't appear in this list then the verify process will
314 * normally reject the certificate. The list must be kept in numerical
315 * order because it will be searched using bsearch.
318 static const int supported_nids[] = {
319 NID_netscape_cert_type, /* 71 */
320 NID_key_usage, /* 83 */
321 NID_subject_alt_name, /* 85 */
322 NID_basic_constraints, /* 87 */
323 NID_certificate_policies, /* 89 */
324 NID_ext_key_usage, /* 126 */
325 NID_sbgp_ipAddrBlock, /* 290 */
326 NID_sbgp_autonomousSysNum, /* 291 */
327 NID_policy_constraints, /* 401 */
328 NID_proxyCertInfo, /* 663 */
329 NID_name_constraints, /* 666 */
330 NID_policy_mappings, /* 747 */
331 NID_inhibit_any_policy /* 748 */
334 int ex_nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex));
336 if (ex_nid == NID_undef)
339 if (OBJ_bsearch_nid(&ex_nid, supported_nids, OSSL_NELEM(supported_nids)))
344 static void setup_dp(X509 *x, DIST_POINT *dp)
346 X509_NAME *iname = NULL;
349 if (dp->reasons->length > 0)
350 dp->dp_reasons = dp->reasons->data[0];
351 if (dp->reasons->length > 1)
352 dp->dp_reasons |= (dp->reasons->data[1] << 8);
353 dp->dp_reasons &= CRLDP_ALL_REASONS;
355 dp->dp_reasons = CRLDP_ALL_REASONS;
356 if (!dp->distpoint || (dp->distpoint->type != 1))
358 for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
359 GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
360 if (gen->type == GEN_DIRNAME) {
361 iname = gen->d.directoryName;
366 iname = X509_get_issuer_name(x);
368 DIST_POINT_set_dpname(dp->distpoint, iname);
372 static void setup_crldp(X509 *x)
375 x->crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
376 for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++)
377 setup_dp(x, sk_DIST_POINT_value(x->crldp, i));
380 static void x509v3_cache_extensions(X509 *x)
382 BASIC_CONSTRAINTS *bs;
383 PROXY_CERT_INFO_EXTENSION *pci;
384 ASN1_BIT_STRING *usage;
386 EXTENDED_KEY_USAGE *extusage;
390 if (x->ex_flags & EXFLAG_SET)
392 X509_digest(x, EVP_sha1(), x->sha1_hash, NULL);
393 /* V1 should mean no extensions ... */
394 if (!X509_get_version(x))
395 x->ex_flags |= EXFLAG_V1;
396 /* Handle basic constraints */
397 if ((bs = X509_get_ext_d2i(x, NID_basic_constraints, NULL, NULL))) {
399 x->ex_flags |= EXFLAG_CA;
401 if ((bs->pathlen->type == V_ASN1_NEG_INTEGER)
403 x->ex_flags |= EXFLAG_INVALID;
406 x->ex_pathlen = ASN1_INTEGER_get(bs->pathlen);
409 BASIC_CONSTRAINTS_free(bs);
410 x->ex_flags |= EXFLAG_BCONS;
412 /* Handle proxy certificates */
413 if ((pci = X509_get_ext_d2i(x, NID_proxyCertInfo, NULL, NULL))) {
414 if (x->ex_flags & EXFLAG_CA
415 || X509_get_ext_by_NID(x, NID_subject_alt_name, -1) >= 0
416 || X509_get_ext_by_NID(x, NID_issuer_alt_name, -1) >= 0) {
417 x->ex_flags |= EXFLAG_INVALID;
419 if (pci->pcPathLengthConstraint) {
420 x->ex_pcpathlen = ASN1_INTEGER_get(pci->pcPathLengthConstraint);
422 x->ex_pcpathlen = -1;
423 PROXY_CERT_INFO_EXTENSION_free(pci);
424 x->ex_flags |= EXFLAG_PROXY;
426 /* Handle key usage */
427 if ((usage = X509_get_ext_d2i(x, NID_key_usage, NULL, NULL))) {
428 if (usage->length > 0) {
429 x->ex_kusage = usage->data[0];
430 if (usage->length > 1)
431 x->ex_kusage |= usage->data[1] << 8;
434 x->ex_flags |= EXFLAG_KUSAGE;
435 ASN1_BIT_STRING_free(usage);
438 if ((extusage = X509_get_ext_d2i(x, NID_ext_key_usage, NULL, NULL))) {
439 x->ex_flags |= EXFLAG_XKUSAGE;
440 for (i = 0; i < sk_ASN1_OBJECT_num(extusage); i++) {
441 switch (OBJ_obj2nid(sk_ASN1_OBJECT_value(extusage, i))) {
442 case NID_server_auth:
443 x->ex_xkusage |= XKU_SSL_SERVER;
446 case NID_client_auth:
447 x->ex_xkusage |= XKU_SSL_CLIENT;
450 case NID_email_protect:
451 x->ex_xkusage |= XKU_SMIME;
455 x->ex_xkusage |= XKU_CODE_SIGN;
460 x->ex_xkusage |= XKU_SGC;
464 x->ex_xkusage |= XKU_OCSP_SIGN;
468 x->ex_xkusage |= XKU_TIMESTAMP;
472 x->ex_xkusage |= XKU_DVCS;
475 case NID_anyExtendedKeyUsage:
476 x->ex_xkusage |= XKU_ANYEKU;
480 sk_ASN1_OBJECT_pop_free(extusage, ASN1_OBJECT_free);
483 if ((ns = X509_get_ext_d2i(x, NID_netscape_cert_type, NULL, NULL))) {
485 x->ex_nscert = ns->data[0];
488 x->ex_flags |= EXFLAG_NSCERT;
489 ASN1_BIT_STRING_free(ns);
491 x->skid = X509_get_ext_d2i(x, NID_subject_key_identifier, NULL, NULL);
492 x->akid = X509_get_ext_d2i(x, NID_authority_key_identifier, NULL, NULL);
493 /* Does subject name match issuer ? */
494 if (!X509_NAME_cmp(X509_get_subject_name(x), X509_get_issuer_name(x))) {
495 x->ex_flags |= EXFLAG_SI;
496 /* If SKID matches AKID also indicate self signed */
497 if (X509_check_akid(x, x->akid) == X509_V_OK)
498 x->ex_flags |= EXFLAG_SS;
500 x->altname = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL);
501 x->nc = X509_get_ext_d2i(x, NID_name_constraints, &i, NULL);
502 if (!x->nc && (i != -1))
503 x->ex_flags |= EXFLAG_INVALID;
506 x->rfc3779_addr = X509_get_ext_d2i(x, NID_sbgp_ipAddrBlock, NULL, NULL);
507 x->rfc3779_asid = X509_get_ext_d2i(x, NID_sbgp_autonomousSysNum,
509 for (i = 0; i < X509_get_ext_count(x); i++) {
510 ex = X509_get_ext(x, i);
511 if (OBJ_obj2nid(X509_EXTENSION_get_object(ex))
513 x->ex_flags |= EXFLAG_FRESHEST;
514 if (!X509_EXTENSION_get_critical(ex))
516 if (!X509_supported_extension(ex)) {
517 x->ex_flags |= EXFLAG_CRITICAL;
521 x->ex_flags |= EXFLAG_SET;
525 * CA checks common to all purposes
529 * 2 basicConstraints absent so "maybe" a CA
530 * 3 basicConstraints absent but self signed V1.
531 * 4 basicConstraints absent but keyUsage present and keyCertSign asserted.
534 #define V1_ROOT (EXFLAG_V1|EXFLAG_SS)
535 #define ku_reject(x, usage) \
536 (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
537 #define xku_reject(x, usage) \
538 (((x)->ex_flags & EXFLAG_XKUSAGE) && !((x)->ex_xkusage & (usage)))
539 #define ns_reject(x, usage) \
540 (((x)->ex_flags & EXFLAG_NSCERT) && !((x)->ex_nscert & (usage)))
542 static int check_ca(const X509 *x)
544 /* keyUsage if present should allow cert signing */
545 if (ku_reject(x, KU_KEY_CERT_SIGN))
547 if (x->ex_flags & EXFLAG_BCONS) {
548 if (x->ex_flags & EXFLAG_CA)
550 /* If basicConstraints says not a CA then say so */
554 /* we support V1 roots for... uh, I don't really know why. */
555 if ((x->ex_flags & V1_ROOT) == V1_ROOT)
558 * If key usage present it must have certSign so tolerate it
560 else if (x->ex_flags & EXFLAG_KUSAGE)
562 /* Older certificates could have Netscape-specific CA types */
563 else if (x->ex_flags & EXFLAG_NSCERT && x->ex_nscert & NS_ANY_CA)
565 /* can this still be regarded a CA certificate? I doubt it */
570 int X509_check_ca(X509 *x)
572 if (!(x->ex_flags & EXFLAG_SET)) {
573 CRYPTO_w_lock(CRYPTO_LOCK_X509);
574 x509v3_cache_extensions(x);
575 CRYPTO_w_unlock(CRYPTO_LOCK_X509);
581 /* Check SSL CA: common checks for SSL client and server */
582 static int check_ssl_ca(const X509 *x)
585 ca_ret = check_ca(x);
588 /* check nsCertType if present */
589 if (ca_ret != 5 || x->ex_nscert & NS_SSL_CA)
595 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
598 if (xku_reject(x, XKU_SSL_CLIENT))
601 return check_ssl_ca(x);
602 /* We need to do digital signatures or key agreement */
603 if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_KEY_AGREEMENT))
605 /* nsCertType if present should allow SSL client use */
606 if (ns_reject(x, NS_SSL_CLIENT))
612 * Key usage needed for TLS/SSL server: digital signature, encipherment or
613 * key agreement. The ssl code can check this more thoroughly for individual
617 KU_DIGITAL_SIGNATURE|KU_KEY_ENCIPHERMENT|KU_KEY_AGREEMENT
619 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
622 if (xku_reject(x, XKU_SSL_SERVER | XKU_SGC))
625 return check_ssl_ca(x);
627 if (ns_reject(x, NS_SSL_SERVER))
629 if (ku_reject(x, KU_TLS))
636 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
640 ret = check_purpose_ssl_server(xp, x, ca);
643 /* We need to encipher or Netscape complains */
644 if (ku_reject(x, KU_KEY_ENCIPHERMENT))
649 /* common S/MIME checks */
650 static int purpose_smime(const X509 *x, int ca)
652 if (xku_reject(x, XKU_SMIME))
656 ca_ret = check_ca(x);
659 /* check nsCertType if present */
660 if (ca_ret != 5 || x->ex_nscert & NS_SMIME_CA)
665 if (x->ex_flags & EXFLAG_NSCERT) {
666 if (x->ex_nscert & NS_SMIME)
668 /* Workaround for some buggy certificates */
669 if (x->ex_nscert & NS_SSL_CLIENT)
676 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
680 ret = purpose_smime(x, ca);
683 if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_NON_REPUDIATION))
688 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
692 ret = purpose_smime(x, ca);
695 if (ku_reject(x, KU_KEY_ENCIPHERMENT))
700 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
705 if ((ca_ret = check_ca(x)) != 2)
710 if (ku_reject(x, KU_CRL_SIGN))
716 * OCSP helper: this is *not* a full OCSP check. It just checks that each CA
717 * is valid. Additional checks must be made on the chain.
720 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca)
723 * Must be a valid CA. Should we really support the "I don't know" value
728 /* leaf certificate is checked in OCSP_verify() */
732 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
737 /* If ca is true we must return if this is a valid CA certificate. */
742 * Check the optional key usage field:
743 * if Key Usage is present, it must be one of digitalSignature
744 * and/or nonRepudiation (other values are not consistent and shall
747 if ((x->ex_flags & EXFLAG_KUSAGE)
748 && ((x->ex_kusage & ~(KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE)) ||
749 !(x->ex_kusage & (KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE))))
752 /* Only time stamp key usage is permitted and it's required. */
753 if (!(x->ex_flags & EXFLAG_XKUSAGE) || x->ex_xkusage != XKU_TIMESTAMP)
756 /* Extended Key Usage MUST be critical */
757 i_ext = X509_get_ext_by_NID((X509 *)x, NID_ext_key_usage, -1);
759 X509_EXTENSION *ext = X509_get_ext((X509 *)x, i_ext);
760 if (!X509_EXTENSION_get_critical(ext))
767 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca)
773 * Various checks to see if one certificate issued the second.
774 * This can be used to prune a set of possible issuer certificates
775 * which have been looked up using some simple method such as by
778 * 1. Check issuer_name(subject) == subject_name(issuer)
779 * 2. If akid(subject) exists check it matches issuer
780 * 3. If key_usage(issuer) exists check it supports certificate signing
781 * returns 0 for OK, positive for reason for mismatch, reasons match
782 * codes for X509_verify_cert()
785 int X509_check_issued(X509 *issuer, X509 *subject)
787 if (X509_NAME_cmp(X509_get_subject_name(issuer),
788 X509_get_issuer_name(subject)))
789 return X509_V_ERR_SUBJECT_ISSUER_MISMATCH;
790 x509v3_cache_extensions(issuer);
791 x509v3_cache_extensions(subject);
794 int ret = X509_check_akid(issuer, subject->akid);
795 if (ret != X509_V_OK)
799 if (subject->ex_flags & EXFLAG_PROXY) {
800 if (ku_reject(issuer, KU_DIGITAL_SIGNATURE))
801 return X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE;
802 } else if (ku_reject(issuer, KU_KEY_CERT_SIGN))
803 return X509_V_ERR_KEYUSAGE_NO_CERTSIGN;
807 int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid)
813 /* Check key ids (if present) */
814 if (akid->keyid && issuer->skid &&
815 ASN1_OCTET_STRING_cmp(akid->keyid, issuer->skid))
816 return X509_V_ERR_AKID_SKID_MISMATCH;
817 /* Check serial number */
819 ASN1_INTEGER_cmp(X509_get_serialNumber(issuer), akid->serial))
820 return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
821 /* Check issuer name */
824 * Ugh, for some peculiar reason AKID includes SEQUENCE OF
825 * GeneralName. So look for a DirName. There may be more than one but
826 * we only take any notice of the first.
830 X509_NAME *nm = NULL;
833 for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
834 gen = sk_GENERAL_NAME_value(gens, i);
835 if (gen->type == GEN_DIRNAME) {
840 if (nm && X509_NAME_cmp(nm, X509_get_issuer_name(issuer)))
841 return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
846 uint32_t X509_get_extension_flags(X509 *x)
848 X509_check_purpose(x, -1, -1);
852 uint32_t X509_get_key_usage(X509 *x)
854 X509_check_purpose(x, -1, -1);
855 if (x->ex_flags & EXFLAG_KUSAGE)
860 uint32_t X509_get_extended_key_usage(X509 *x)
862 X509_check_purpose(x, -1, -1);
863 if (x->ex_flags & EXFLAG_XKUSAGE)
864 return x->ex_xkusage;