Commit 2b5e5c3d authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Revert incompatible OCSP_basic_verify changes.

Make partial chain chekcing work with EE certificates only.
Remove unneeded -trust_other option from tocsp.
(Backport from HEAD)
parent 708454f0
Loading
Loading
Loading
Loading
+7 −65
Original line number Diff line number Diff line
@@ -77,10 +77,8 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,
	{
	X509 *signer, *x;
	STACK_OF(X509) *chain = NULL;
	STACK_OF(X509) *tmpchain = NULL;
	X509_STORE *tmpstore = NULL;
	X509_STORE_CTX ctx;
	int i, ret;
	int i, ret = 0;
	ret = ocsp_find_signer(&signer, bs, certs, st, flags);
	if (!ret)
		{
@@ -88,7 +86,7 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,
		goto end;
		}
	if ((ret == 2) && (flags & OCSP_TRUSTOTHER))
		chain = certs;
		flags |= OCSP_NOVERIFY;
	if (!(flags & OCSP_NOSIGS))
		{
		EVP_PKEY *skey;
@@ -104,59 +102,6 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,
	if (!(flags & OCSP_NOVERIFY))
		{
		int init_res;

		/* If we trust the signer, we don't need to build a chain.
		 * (If the signer is a root certificate, X509_verify_cert()
		 * would fail anyway!)
		 */
		if (chain && chain == certs) goto verified_chain;

		/* If we trust some "other" certificates, allow partial
		 * chains (because some of them might be
		 * Intermediate CA Certificates), put them in a store and
		 * attempt to build a trusted chain.
		 */
		if ((flags & OCSP_TRUSTOTHER) && (certs != NULL))
			{
			tmpstore = X509_STORE_new();
			if (!tmpstore)
				{
				ret = -1;
				OCSPerr(OCSP_F_OCSP_BASIC_VERIFY, ERR_R_MALLOC_FAILURE);
				goto end;
				}
			for (i = 0; i < sk_X509_num(certs); i++)
				{
				X509 *xother = sk_X509_value(certs, i);
				if (!X509_STORE_add_cert(tmpstore, xother))
					{
					ret = -1;
					goto end;
					}
				}

			init_res = X509_STORE_CTX_init(&ctx, tmpstore, signer, NULL);
			if (!init_res)
				{
				ret = -1;
				OCSPerr(OCSP_F_OCSP_BASIC_VERIFY,ERR_R_X509_LIB);
				goto end;
				}
			X509_STORE_CTX_set_purpose(&ctx, X509_PURPOSE_OCSP_HELPER);
			X509_STORE_CTX_set_flags(&ctx, X509_V_FLAG_PARTIAL_CHAIN);
			ret = X509_verify_cert(&ctx);
			if (ret == 1)
				{
				chain = tmpchain = X509_STORE_CTX_get1_chain(&ctx);
				X509_STORE_CTX_cleanup(&ctx);
				goto verified_chain;
				}
			X509_STORE_CTX_cleanup(&ctx);
			}

		/* Attempt to build a chain up to a Root Certificate in the
		 * trust store provided by the caller.
		 */
		if(flags & OCSP_NOCHAIN)
			init_res = X509_STORE_CTX_init(&ctx, st, signer, NULL);
		else
@@ -170,7 +115,7 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,

		X509_STORE_CTX_set_purpose(&ctx, X509_PURPOSE_OCSP_HELPER);
		ret = X509_verify_cert(&ctx);
		chain = tmpchain = X509_STORE_CTX_get1_chain(&ctx);
		chain = X509_STORE_CTX_get1_chain(&ctx);
		X509_STORE_CTX_cleanup(&ctx);
                if (ret <= 0)
			{
@@ -180,8 +125,6 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,
					X509_verify_cert_error_string(i));
                        goto end;
                	}

	verified_chain:
		if(flags & OCSP_NOCHECKS)
			{
			ret = 1;
@@ -212,8 +155,7 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,


	end:
	if(tmpchain) sk_X509_pop_free(tmpchain, X509_free);
	if(tmpstore) X509_STORE_free(tmpstore);
	if(chain) sk_X509_pop_free(chain, X509_free);
	return ret;
	}

+41 −0
Original line number Diff line number Diff line
@@ -151,6 +151,32 @@ static int x509_subject_cmp(X509 **a, X509 **b)
	}
#endif

/* Given a certificate try and find an exact match in the store */

static X509 *lookup_cert_match(X509_STORE_CTX *ctx, X509 *x)
	{
	STACK_OF(X509) *certs;
	X509 *xtmp;
	int i;
	/* Lookup all certs with matching subject name */
	certs = ctx->lookup_certs(ctx, X509_get_subject_name(x));
	if (certs == NULL)
		return NULL;
	/* Look for exact match */
	for (i = 0; i < sk_X509_num(certs); i++)
		{
		xtmp = sk_X509_value(certs, i);
		if (!X509_cmp(xtmp, x))
			break;
		}
	if (i < sk_X509_num(certs))
		CRYPTO_add(&xtmp->references,1,CRYPTO_LOCK_X509);
	else
		xtmp = NULL;
	sk_X509_pop_free(certs, X509_free);
	return xtmp;
	}

int X509_verify_cert(X509_STORE_CTX *ctx)
	{
	X509 *x,*xtmp,*chain_ss=NULL;
@@ -724,6 +750,19 @@ static int check_trust(X509_STORE_CTX *ctx)
		{
		if (ctx->last_untrusted < sk_X509_num(ctx->chain))
			return X509_TRUST_TRUSTED;
		if (sk_X509_num(ctx->chain) == 1)
			{
			X509 *mx;
			x = sk_X509_value(ctx->chain, 0);
			mx = lookup_cert_match(ctx, x);
			if (mx)
				{
				(void)sk_X509_set(ctx->chain, 0, mx);
				X509_free(x);
				ctx->last_untrusted = 0;
				return X509_TRUST_TRUSTED;
				}
			}
		}

	/* If no trusted certs in chain at all return untrusted and
@@ -1657,6 +1696,8 @@ static int internal_verify(X509_STORE_CTX *ctx)
		xs=xi;
	else
		{
		if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN && n == 0)
			return check_cert_time(ctx, xi);
		if (n <= 0)
			{
			ctx->error=X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE;
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ check_time="-attime 1355875200"
test_ocsp () {

	$cmd base64 -d -in $ocspdir/$1 | \
		$cmd ocsp -respin - -partial_chain -trust_other $check_time \
		$cmd ocsp -respin - -partial_chain $check_time \
		-CAfile $ocspdir/$2 -verify_other $ocspdir/$2 -CApath /dev/null
	[ $? != $3 ] && exit 1
}