os/ossrv/ssl/libcrypto/src/crypto/x509v3/v3_purp.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* v3_purp.c */
     2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
     3  * project 2001.
     4  */
     5 /* ====================================================================
     6  * Copyright (c) 1999-2004 The OpenSSL Project.  All rights reserved.
     7  *
     8  * Redistribution and use in source and binary forms, with or without
     9  * modification, are permitted provided that the following conditions
    10  * are met:
    11  *
    12  * 1. Redistributions of source code must retain the above copyright
    13  *    notice, this list of conditions and the following disclaimer. 
    14  *
    15  * 2. Redistributions in binary form must reproduce the above copyright
    16  *    notice, this list of conditions and the following disclaimer in
    17  *    the documentation and/or other materials provided with the
    18  *    distribution.
    19  *
    20  * 3. All advertising materials mentioning features or use of this
    21  *    software must display the following acknowledgment:
    22  *    "This product includes software developed by the OpenSSL Project
    23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
    24  *
    25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
    26  *    endorse or promote products derived from this software without
    27  *    prior written permission. For written permission, please contact
    28  *    licensing@OpenSSL.org.
    29  *
    30  * 5. Products derived from this software may not be called "OpenSSL"
    31  *    nor may "OpenSSL" appear in their names without prior written
    32  *    permission of the OpenSSL Project.
    33  *
    34  * 6. Redistributions of any form whatsoever must retain the following
    35  *    acknowledgment:
    36  *    "This product includes software developed by the OpenSSL Project
    37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
    38  *
    39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
    40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
    43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
    45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
    48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    50  * OF THE POSSIBILITY OF SUCH DAMAGE.
    51  * ====================================================================
    52  *
    53  * This product includes cryptographic software written by Eric Young
    54  * (eay@cryptsoft.com).  This product includes software written by Tim
    55  * Hudson (tjh@cryptsoft.com).
    56  *
    57  */
    58  
    59 /*
    60  © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
    61  */
    62 
    63 
    64 #include <stdio.h>
    65 #include "cryptlib.h"
    66 #include <openssl/x509v3.h>
    67 #include <openssl/x509_vfy.h>
    68 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
    69 #include "libcrypto_wsd_macros.h"
    70 #include "libcrypto_wsd.h"
    71 #endif
    72 
    73 static void x509v3_cache_extensions(X509 *x);
    74 
    75 static int check_ssl_ca(const X509 *x);
    76 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca);
    77 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
    78 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
    79 static int purpose_smime(const X509 *x, int ca);
    80 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
    81 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca);
    82 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
    83 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
    84 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
    85 
    86 static int xp_cmp(const X509_PURPOSE * const *a,
    87 		const X509_PURPOSE * const *b);
    88 static void xptable_free(X509_PURPOSE *p);
    89 
    90 #ifndef EMULATOR
    91 static X509_PURPOSE xstandard[] = {
    92 	{X509_PURPOSE_SSL_CLIENT, X509_TRUST_SSL_CLIENT, 0, check_purpose_ssl_client, "SSL client", "sslclient", NULL},
    93 	{X509_PURPOSE_SSL_SERVER, X509_TRUST_SSL_SERVER, 0, check_purpose_ssl_server, "SSL server", "sslserver", NULL},
    94 	{X509_PURPOSE_NS_SSL_SERVER, X509_TRUST_SSL_SERVER, 0, check_purpose_ns_ssl_server, "Netscape SSL server", "nssslserver", NULL},
    95 	{X509_PURPOSE_SMIME_SIGN, X509_TRUST_EMAIL, 0, check_purpose_smime_sign, "S/MIME signing", "smimesign", NULL},
    96 	{X509_PURPOSE_SMIME_ENCRYPT, X509_TRUST_EMAIL, 0, check_purpose_smime_encrypt, "S/MIME encryption", "smimeencrypt", NULL},
    97 	{X509_PURPOSE_CRL_SIGN, X509_TRUST_COMPAT, 0, check_purpose_crl_sign, "CRL signing", "crlsign", NULL},
    98 	{X509_PURPOSE_ANY, X509_TRUST_DEFAULT, 0, no_check, "Any Purpose", "any", NULL},
    99 	{X509_PURPOSE_OCSP_HELPER, X509_TRUST_COMPAT, 0, ocsp_helper, "OCSP helper", "ocsphelper", NULL},
   100 };
   101 #else
   102 static const X509_PURPOSE xstandard[] = {
   103 	{X509_PURPOSE_SSL_CLIENT, X509_TRUST_SSL_CLIENT, 0, check_purpose_ssl_client, "SSL client", "sslclient", NULL},
   104 	{X509_PURPOSE_SSL_SERVER, X509_TRUST_SSL_SERVER, 0, check_purpose_ssl_server, "SSL server", "sslserver", NULL},
   105 	{X509_PURPOSE_NS_SSL_SERVER, X509_TRUST_SSL_SERVER, 0, check_purpose_ns_ssl_server, "Netscape SSL server", "nssslserver", NULL},
   106 	{X509_PURPOSE_SMIME_SIGN, X509_TRUST_EMAIL, 0, check_purpose_smime_sign, "S/MIME signing", "smimesign", NULL},
   107 	{X509_PURPOSE_SMIME_ENCRYPT, X509_TRUST_EMAIL, 0, check_purpose_smime_encrypt, "S/MIME encryption", "smimeencrypt", NULL},
   108 	{X509_PURPOSE_CRL_SIGN, X509_TRUST_COMPAT, 0, check_purpose_crl_sign, "CRL signing", "crlsign", NULL},
   109 	{X509_PURPOSE_ANY, X509_TRUST_DEFAULT, 0, no_check, "Any Purpose", "any", NULL},
   110 	{X509_PURPOSE_OCSP_HELPER, X509_TRUST_COMPAT, 0, ocsp_helper, "OCSP helper", "ocsphelper", NULL},
   111 };
   112 #endif
   113 #define X509_PURPOSE_COUNT (sizeof(xstandard)/sizeof(X509_PURPOSE))
   114 
   115 IMPLEMENT_STACK_OF(X509_PURPOSE)
   116 
   117 #ifndef EMULATOR
   118 static STACK_OF(X509_PURPOSE) *xptable = NULL;
   119 #else
   120 GET_STATIC_VAR_FROM_TLS(xptable,v3_purp,STACK_OF(X509_PURPOSE)*)
   121 #define xptable (*GET_WSD_VAR_NAME(xptable,v3_purp, s)())
   122 #endif
   123 
   124 static int xp_cmp(const X509_PURPOSE * const *a,
   125 		const X509_PURPOSE * const *b)
   126 {
   127 	return (*a)->purpose - (*b)->purpose;
   128 }
   129 
   130 /* As much as I'd like to make X509_check_purpose use a "const" X509*
   131  * I really can't because it does recalculate hashes and do other non-const
   132  * things. */
   133 EXPORT_C int X509_check_purpose(X509 *x, int id, int ca)
   134 {
   135 	int idx;
   136 	const X509_PURPOSE *pt;
   137 	if(!(x->ex_flags & EXFLAG_SET)) {
   138 		CRYPTO_w_lock(CRYPTO_LOCK_X509);
   139 		x509v3_cache_extensions(x);
   140 		CRYPTO_w_unlock(CRYPTO_LOCK_X509);
   141 	}
   142 	if(id == -1) return 1;
   143 	idx = X509_PURPOSE_get_by_id(id);
   144 	if(idx == -1) return -1;
   145 	pt = X509_PURPOSE_get0(idx);
   146 	return pt->check_purpose(pt, x, ca);
   147 }
   148 
   149 EXPORT_C int X509_PURPOSE_set(int *p, int purpose)
   150 {
   151 	if(X509_PURPOSE_get_by_id(purpose) == -1) {
   152 		X509V3err(X509V3_F_X509_PURPOSE_SET, X509V3_R_INVALID_PURPOSE);
   153 		return 0;
   154 	}
   155 	*p = purpose;
   156 	return 1;
   157 }
   158 
   159 EXPORT_C int X509_PURPOSE_get_count(void)
   160 {
   161 	if(!xptable) return X509_PURPOSE_COUNT;
   162 	return sk_X509_PURPOSE_num(xptable) + X509_PURPOSE_COUNT;
   163 }
   164 
   165 EXPORT_C X509_PURPOSE * X509_PURPOSE_get0(int idx)
   166 {
   167 	if(idx < 0) return NULL;
   168 	if(idx < (int)X509_PURPOSE_COUNT) return ((X509_PURPOSE *)xstandard + idx);
   169 	return sk_X509_PURPOSE_value(xptable, idx - X509_PURPOSE_COUNT);
   170 }
   171 
   172 EXPORT_C int X509_PURPOSE_get_by_sname(char *sname)
   173 {
   174 	int i;
   175 	X509_PURPOSE *xptmp;
   176 	for(i = 0; i < X509_PURPOSE_get_count(); i++) {
   177 		xptmp = X509_PURPOSE_get0(i);
   178 		if(!strcmp(xptmp->sname, sname)) return i;
   179 	}
   180 	return -1;
   181 }
   182 
   183 EXPORT_C int X509_PURPOSE_get_by_id(int purpose)
   184 {
   185 	X509_PURPOSE tmp;
   186 	int idx;
   187 	if((purpose >= X509_PURPOSE_MIN) && (purpose <= X509_PURPOSE_MAX))
   188 		return purpose - X509_PURPOSE_MIN;
   189 	tmp.purpose = purpose;
   190 	if(!xptable) return -1;
   191 	idx = sk_X509_PURPOSE_find(xptable, &tmp);
   192 	if(idx == -1) return -1;
   193 	return idx + X509_PURPOSE_COUNT;
   194 }
   195 
   196 EXPORT_C int X509_PURPOSE_add(int id, int trust, int flags,
   197 			int (*ck)(const X509_PURPOSE *, const X509 *, int),
   198 					char *name, char *sname, void *arg)
   199 {
   200 	int idx;
   201 	X509_PURPOSE *ptmp;
   202 	/* This is set according to what we change: application can't set it */
   203 	flags &= ~X509_PURPOSE_DYNAMIC;
   204 	/* This will always be set for application modified trust entries */
   205 	flags |= X509_PURPOSE_DYNAMIC_NAME;
   206 	/* Get existing entry if any */
   207 	idx = X509_PURPOSE_get_by_id(id);
   208 	/* Need a new entry */
   209 	if(idx == -1) {
   210 		if(!(ptmp = OPENSSL_malloc(sizeof(X509_PURPOSE)))) {
   211 			X509V3err(X509V3_F_X509_PURPOSE_ADD,ERR_R_MALLOC_FAILURE);
   212 			return 0;
   213 		}
   214 		ptmp->flags = X509_PURPOSE_DYNAMIC;
   215 	} else ptmp = X509_PURPOSE_get0(idx);
   216 
   217 	/* OPENSSL_free existing name if dynamic */
   218 	if(ptmp->flags & X509_PURPOSE_DYNAMIC_NAME) {
   219 		OPENSSL_free(ptmp->name);
   220 		OPENSSL_free(ptmp->sname);
   221 	}
   222 	/* dup supplied name */
   223 	ptmp->name = BUF_strdup(name);
   224 	ptmp->sname = BUF_strdup(sname);
   225 	if(!ptmp->name || !ptmp->sname) {
   226 		X509V3err(X509V3_F_X509_PURPOSE_ADD,ERR_R_MALLOC_FAILURE);
   227 		return 0;
   228 	}
   229 	/* Keep the dynamic flag of existing entry */
   230 	ptmp->flags &= X509_PURPOSE_DYNAMIC;
   231 	/* Set all other flags */
   232 	ptmp->flags |= flags;
   233 
   234 	ptmp->purpose = id;
   235 	ptmp->trust = trust;
   236 	ptmp->check_purpose = ck;
   237 	ptmp->usr_data = arg;
   238 
   239 	/* If its a new entry manage the dynamic table */
   240 	if(idx == -1) {
   241 		if(!xptable && !(xptable = sk_X509_PURPOSE_new(xp_cmp))) {
   242 			X509V3err(X509V3_F_X509_PURPOSE_ADD,ERR_R_MALLOC_FAILURE);
   243 			return 0;
   244 		}
   245 		if (!sk_X509_PURPOSE_push(xptable, ptmp)) {
   246 			X509V3err(X509V3_F_X509_PURPOSE_ADD,ERR_R_MALLOC_FAILURE);
   247 			return 0;
   248 		}
   249 	}
   250 	return 1;
   251 }
   252 
   253 static void xptable_free(X509_PURPOSE *p)
   254 	{
   255 	if(!p) return;
   256 	if (p->flags & X509_PURPOSE_DYNAMIC) 
   257 		{
   258 		if (p->flags & X509_PURPOSE_DYNAMIC_NAME) {
   259 			OPENSSL_free(p->name);
   260 			OPENSSL_free(p->sname);
   261 		}
   262 		OPENSSL_free(p);
   263 		}
   264 	}
   265 
   266 EXPORT_C void X509_PURPOSE_cleanup(void)
   267 {
   268 	unsigned int i;
   269 	sk_X509_PURPOSE_pop_free(xptable, xptable_free);
   270 	for(i = 0; i < X509_PURPOSE_COUNT; i++) xptable_free((X509_PURPOSE *)xstandard + i);
   271 	xptable = NULL;
   272 }
   273 
   274 EXPORT_C int X509_PURPOSE_get_id(X509_PURPOSE *xp)
   275 {
   276 	return xp->purpose;
   277 }
   278 
   279 EXPORT_C char *X509_PURPOSE_get0_name(X509_PURPOSE *xp)
   280 {
   281 	return xp->name;
   282 }
   283 
   284 EXPORT_C char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp)
   285 {
   286 	return xp->sname;
   287 }
   288 
   289 EXPORT_C int X509_PURPOSE_get_trust(X509_PURPOSE *xp)
   290 {
   291 	return xp->trust;
   292 }
   293 
   294 static int nid_cmp(int *a, int *b)
   295 	{
   296 	return *a - *b;
   297 	}
   298 
   299 EXPORT_C int X509_supported_extension(X509_EXTENSION *ex)
   300 	{
   301 	/* This table is a list of the NIDs of supported extensions:
   302 	 * that is those which are used by the verify process. If
   303 	 * an extension is critical and doesn't appear in this list
   304 	 * then the verify process will normally reject the certificate.
   305 	 * The list must be kept in numerical order because it will be
   306 	 * searched using bsearch.
   307 	 */
   308 #ifndef EMULATOR
   309 	static int supported_nids[] = {
   310 		NID_netscape_cert_type, /* 71 */
   311         	NID_key_usage,		/* 83 */
   312 		NID_subject_alt_name,	/* 85 */
   313 		NID_basic_constraints,	/* 87 */
   314 		NID_certificate_policies, /* 89 */
   315         	NID_ext_key_usage,	/* 126 */
   316 		NID_proxyCertInfo	/* 661 */
   317 	};
   318 #else
   319 	static const int supported_nids[] = {
   320 		NID_netscape_cert_type, /* 71 */
   321         	NID_key_usage,		/* 83 */
   322 		NID_subject_alt_name,	/* 85 */
   323 		NID_basic_constraints,	/* 87 */
   324         	NID_ext_key_usage,	/* 126 */
   325 
   326 		NID_proxyCertInfo	/* 661 */
   327 	};
   328 #endif
   329 	int ex_nid;
   330 
   331 	ex_nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex));
   332 
   333 	if (ex_nid == NID_undef) 
   334 		return 0;
   335 
   336 	if (OBJ_bsearch((char *)&ex_nid, (char *)supported_nids,
   337 		sizeof(supported_nids)/sizeof(int), sizeof(int),
   338 		(int (*)(const void *, const void *))nid_cmp))
   339 		return 1;
   340 	return 0;
   341 	}
   342  
   343 
   344 static void x509v3_cache_extensions(X509 *x)
   345 {
   346 	BASIC_CONSTRAINTS *bs;
   347 	PROXY_CERT_INFO_EXTENSION *pci;
   348 	ASN1_BIT_STRING *usage;
   349 	ASN1_BIT_STRING *ns;
   350 	EXTENDED_KEY_USAGE *extusage;
   351 	X509_EXTENSION *ex;
   352 	
   353 	int i;
   354 	if(x->ex_flags & EXFLAG_SET) return;
   355 #ifndef OPENSSL_NO_SHA
   356 	X509_digest(x, EVP_sha1(), x->sha1_hash, NULL);
   357 #endif
   358 	/* Does subject name match issuer ? */
   359 	if(!X509_NAME_cmp(X509_get_subject_name(x), X509_get_issuer_name(x)))
   360 			 x->ex_flags |= EXFLAG_SS;
   361 	/* V1 should mean no extensions ... */
   362 	if(!X509_get_version(x)) x->ex_flags |= EXFLAG_V1;
   363 	/* Handle basic constraints */
   364 	if((bs=X509_get_ext_d2i(x, NID_basic_constraints, NULL, NULL))) {
   365 		if(bs->ca) x->ex_flags |= EXFLAG_CA;
   366 		if(bs->pathlen) {
   367 			if((bs->pathlen->type == V_ASN1_NEG_INTEGER)
   368 						|| !bs->ca) {
   369 				x->ex_flags |= EXFLAG_INVALID;
   370 				x->ex_pathlen = 0;
   371 			} else x->ex_pathlen = ASN1_INTEGER_get(bs->pathlen);
   372 		} else x->ex_pathlen = -1;
   373 		BASIC_CONSTRAINTS_free(bs);
   374 		x->ex_flags |= EXFLAG_BCONS;
   375 	}
   376 	/* Handle proxy certificates */
   377 	if((pci=X509_get_ext_d2i(x, NID_proxyCertInfo, NULL, NULL))) {
   378 		if (x->ex_flags & EXFLAG_CA
   379 		    || X509_get_ext_by_NID(x, NID_subject_alt_name, 0) >= 0
   380 		    || X509_get_ext_by_NID(x, NID_issuer_alt_name, 0) >= 0) {
   381 			x->ex_flags |= EXFLAG_INVALID;
   382 		}
   383 		if (pci->pcPathLengthConstraint) {
   384 			x->ex_pcpathlen =
   385 				ASN1_INTEGER_get(pci->pcPathLengthConstraint);
   386 		} else x->ex_pcpathlen = -1;
   387 		PROXY_CERT_INFO_EXTENSION_free(pci);
   388 		x->ex_flags |= EXFLAG_PROXY;
   389 	}
   390 	/* Handle key usage */
   391 	if((usage=X509_get_ext_d2i(x, NID_key_usage, NULL, NULL))) {
   392 		if(usage->length > 0) {
   393 			x->ex_kusage = usage->data[0];
   394 			if(usage->length > 1) 
   395 				x->ex_kusage |= usage->data[1] << 8;
   396 		} else x->ex_kusage = 0;
   397 		x->ex_flags |= EXFLAG_KUSAGE;
   398 		ASN1_BIT_STRING_free(usage);
   399 	}
   400 	x->ex_xkusage = 0;
   401 	if((extusage=X509_get_ext_d2i(x, NID_ext_key_usage, NULL, NULL))) {
   402 		x->ex_flags |= EXFLAG_XKUSAGE;
   403 		for(i = 0; i < sk_ASN1_OBJECT_num(extusage); i++) {
   404 			switch(OBJ_obj2nid(sk_ASN1_OBJECT_value(extusage,i))) {
   405 				case NID_server_auth:
   406 				x->ex_xkusage |= XKU_SSL_SERVER;
   407 				break;
   408 
   409 				case NID_client_auth:
   410 				x->ex_xkusage |= XKU_SSL_CLIENT;
   411 				break;
   412 
   413 				case NID_email_protect:
   414 				x->ex_xkusage |= XKU_SMIME;
   415 				break;
   416 
   417 				case NID_code_sign:
   418 				x->ex_xkusage |= XKU_CODE_SIGN;
   419 				break;
   420 
   421 				case NID_ms_sgc:
   422 				case NID_ns_sgc:
   423 				x->ex_xkusage |= XKU_SGC;
   424 				break;
   425 
   426 				case NID_OCSP_sign:
   427 				x->ex_xkusage |= XKU_OCSP_SIGN;
   428 				break;
   429 
   430 				case NID_time_stamp:
   431 				x->ex_xkusage |= XKU_TIMESTAMP;
   432 				break;
   433 
   434 				case NID_dvcs:
   435 				x->ex_xkusage |= XKU_DVCS;
   436 				break;
   437 			}
   438 		}
   439 		sk_ASN1_OBJECT_pop_free(extusage, ASN1_OBJECT_free);
   440 	}
   441 
   442 	if((ns=X509_get_ext_d2i(x, NID_netscape_cert_type, NULL, NULL))) {
   443 		if(ns->length > 0) x->ex_nscert = ns->data[0];
   444 		else x->ex_nscert = 0;
   445 		x->ex_flags |= EXFLAG_NSCERT;
   446 		ASN1_BIT_STRING_free(ns);
   447 	}
   448 	x->skid =X509_get_ext_d2i(x, NID_subject_key_identifier, NULL, NULL);
   449 	x->akid =X509_get_ext_d2i(x, NID_authority_key_identifier, NULL, NULL);
   450 	for (i = 0; i < X509_get_ext_count(x); i++)
   451 		{
   452 		ex = X509_get_ext(x, i);
   453 		if (!X509_EXTENSION_get_critical(ex))
   454 			continue;
   455 		if (!X509_supported_extension(ex))
   456 			{
   457 			x->ex_flags |= EXFLAG_CRITICAL;
   458 			break;
   459 			}
   460 		}
   461 	x->ex_flags |= EXFLAG_SET;
   462 }
   463 
   464 /* CA checks common to all purposes
   465  * return codes:
   466  * 0 not a CA
   467  * 1 is a CA
   468  * 2 basicConstraints absent so "maybe" a CA
   469  * 3 basicConstraints absent but self signed V1.
   470  * 4 basicConstraints absent but keyUsage present and keyCertSign asserted.
   471  */
   472 
   473 #define V1_ROOT (EXFLAG_V1|EXFLAG_SS)
   474 #define ku_reject(x, usage) \
   475 	(((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
   476 #define xku_reject(x, usage) \
   477 	(((x)->ex_flags & EXFLAG_XKUSAGE) && !((x)->ex_xkusage & (usage)))
   478 #define ns_reject(x, usage) \
   479 	(((x)->ex_flags & EXFLAG_NSCERT) && !((x)->ex_nscert & (usage)))
   480 
   481 static int check_ca(const X509 *x)
   482 {
   483 	/* keyUsage if present should allow cert signing */
   484 	if(ku_reject(x, KU_KEY_CERT_SIGN)) return 0;
   485 	if(x->ex_flags & EXFLAG_BCONS) {
   486 		if(x->ex_flags & EXFLAG_CA) return 1;
   487 		/* If basicConstraints says not a CA then say so */
   488 		else return 0;
   489 	} else {
   490 		/* we support V1 roots for...  uh, I don't really know why. */
   491 		if((x->ex_flags & V1_ROOT) == V1_ROOT) return 3;
   492 		/* If key usage present it must have certSign so tolerate it */
   493 		else if (x->ex_flags & EXFLAG_KUSAGE) return 4;
   494 		/* Older certificates could have Netscape-specific CA types */
   495 		else if (x->ex_flags & EXFLAG_NSCERT
   496 			 && x->ex_nscert & NS_ANY_CA) return 5;
   497 		/* can this still be regarded a CA certificate?  I doubt it */
   498 		return 0;
   499 	}
   500 }
   501 
   502 EXPORT_C int X509_check_ca(X509 *x)
   503 {
   504 	if(!(x->ex_flags & EXFLAG_SET)) {
   505 		CRYPTO_w_lock(CRYPTO_LOCK_X509);
   506 		x509v3_cache_extensions(x);
   507 		CRYPTO_w_unlock(CRYPTO_LOCK_X509);
   508 	}
   509 
   510 	return check_ca(x);
   511 }
   512 
   513 /* Check SSL CA: common checks for SSL client and server */
   514 static int check_ssl_ca(const X509 *x)
   515 {
   516 	int ca_ret;
   517 	ca_ret = check_ca(x);
   518 	if(!ca_ret) return 0;
   519 	/* check nsCertType if present */
   520 	if(ca_ret != 5 || x->ex_nscert & NS_SSL_CA) return ca_ret;
   521 	else return 0;
   522 }
   523 
   524 
   525 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca)
   526 {
   527 	if(xku_reject(x,XKU_SSL_CLIENT)) return 0;
   528 	if(ca) return check_ssl_ca(x);
   529 	/* We need to do digital signatures with it */
   530 	if(ku_reject(x,KU_DIGITAL_SIGNATURE)) return 0;
   531 	/* nsCertType if present should allow SSL client use */	
   532 	if(ns_reject(x, NS_SSL_CLIENT)) return 0;
   533 	return 1;
   534 }
   535 
   536 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca)
   537 {
   538 	if(xku_reject(x,XKU_SSL_SERVER|XKU_SGC)) return 0;
   539 	if(ca) return check_ssl_ca(x);
   540 
   541 	if(ns_reject(x, NS_SSL_SERVER)) return 0;
   542 	/* Now as for keyUsage: we'll at least need to sign OR encipher */
   543 	if(ku_reject(x, KU_DIGITAL_SIGNATURE|KU_KEY_ENCIPHERMENT)) return 0;
   544 	
   545 	return 1;
   546 
   547 }
   548 
   549 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca)
   550 {
   551 	int ret;
   552 	ret = check_purpose_ssl_server(xp, x, ca);
   553 	if(!ret || ca) return ret;
   554 	/* We need to encipher or Netscape complains */
   555 	if(ku_reject(x, KU_KEY_ENCIPHERMENT)) return 0;
   556 	return ret;
   557 }
   558 
   559 /* common S/MIME checks */
   560 static int purpose_smime(const X509 *x, int ca)
   561 {
   562 	if(xku_reject(x,XKU_SMIME)) return 0;
   563 	if(ca) {
   564 		int ca_ret;
   565 		ca_ret = check_ca(x);
   566 		if(!ca_ret) return 0;
   567 		/* check nsCertType if present */
   568 		if(ca_ret != 5 || x->ex_nscert & NS_SMIME_CA) return ca_ret;
   569 		else return 0;
   570 	}
   571 	if(x->ex_flags & EXFLAG_NSCERT) {
   572 		if(x->ex_nscert & NS_SMIME) return 1;
   573 		/* Workaround for some buggy certificates */
   574 		if(x->ex_nscert & NS_SSL_CLIENT) return 2;
   575 		return 0;
   576 	}
   577 	return 1;
   578 }
   579 
   580 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca)
   581 {
   582 	int ret;
   583 	ret = purpose_smime(x, ca);
   584 	if(!ret || ca) return ret;
   585 	if(ku_reject(x, KU_DIGITAL_SIGNATURE|KU_NON_REPUDIATION)) return 0;
   586 	return ret;
   587 }
   588 
   589 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca)
   590 {
   591 	int ret;
   592 	ret = purpose_smime(x, ca);
   593 	if(!ret || ca) return ret;
   594 	if(ku_reject(x, KU_KEY_ENCIPHERMENT)) return 0;
   595 	return ret;
   596 }
   597 
   598 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca)
   599 {
   600 	if(ca) {
   601 		int ca_ret;
   602 		if((ca_ret = check_ca(x)) != 2) return ca_ret;
   603 		else return 0;
   604 	}
   605 	if(ku_reject(x, KU_CRL_SIGN)) return 0;
   606 	return 1;
   607 }
   608 
   609 /* OCSP helper: this is *not* a full OCSP check. It just checks that
   610  * each CA is valid. Additional checks must be made on the chain.
   611  */
   612 
   613 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca)
   614 {
   615 	/* Must be a valid CA.  Should we really support the "I don't know"
   616 	   value (2)? */
   617 	if(ca) return check_ca(x);
   618 	/* leaf certificate is checked in OCSP_verify() */
   619 	return 1;
   620 }
   621 
   622 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca)
   623 {
   624 	return 1;
   625 }
   626 
   627 /* Various checks to see if one certificate issued the second.
   628  * This can be used to prune a set of possible issuer certificates
   629  * which have been looked up using some simple method such as by
   630  * subject name.
   631  * These are:
   632  * 1. Check issuer_name(subject) == subject_name(issuer)
   633  * 2. If akid(subject) exists check it matches issuer
   634  * 3. If key_usage(issuer) exists check it supports certificate signing
   635  * returns 0 for OK, positive for reason for mismatch, reasons match
   636  * codes for X509_verify_cert()
   637  */
   638 
   639 EXPORT_C int X509_check_issued(X509 *issuer, X509 *subject)
   640 {
   641 	if(X509_NAME_cmp(X509_get_subject_name(issuer),
   642 			X509_get_issuer_name(subject)))
   643 				return X509_V_ERR_SUBJECT_ISSUER_MISMATCH;
   644 	x509v3_cache_extensions(issuer);
   645 	x509v3_cache_extensions(subject);
   646 	if(subject->akid) {
   647 		/* Check key ids (if present) */
   648 		if(subject->akid->keyid && issuer->skid &&
   649 		 ASN1_OCTET_STRING_cmp(subject->akid->keyid, issuer->skid) )
   650 				return X509_V_ERR_AKID_SKID_MISMATCH;
   651 		/* Check serial number */
   652 		if(subject->akid->serial &&
   653 			ASN1_INTEGER_cmp(X509_get_serialNumber(issuer),
   654 						subject->akid->serial))
   655 				return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
   656 		/* Check issuer name */
   657 		if(subject->akid->issuer) {
   658 			/* Ugh, for some peculiar reason AKID includes
   659 			 * SEQUENCE OF GeneralName. So look for a DirName.
   660 			 * There may be more than one but we only take any
   661 			 * notice of the first.
   662 			 */
   663 			GENERAL_NAMES *gens;
   664 			GENERAL_NAME *gen;
   665 			X509_NAME *nm = NULL;
   666 			int i;
   667 			gens = subject->akid->issuer;
   668 			for(i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
   669 				gen = sk_GENERAL_NAME_value(gens, i);
   670 				if(gen->type == GEN_DIRNAME) {
   671 					nm = gen->d.dirn;
   672 					break;
   673 				}
   674 			}
   675 			if(nm && X509_NAME_cmp(nm, X509_get_issuer_name(issuer)))
   676 				return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
   677 		}
   678 	}
   679 	if(subject->ex_flags & EXFLAG_PROXY)
   680 		{
   681 		if(ku_reject(issuer, KU_DIGITAL_SIGNATURE))
   682 			return X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE;
   683 		}
   684 	else if(ku_reject(issuer, KU_KEY_CERT_SIGN))
   685 		return X509_V_ERR_KEYUSAGE_NO_CERTSIGN;
   686 	return X509_V_OK;
   687 }
   688