1998-12-21 10:52:47 +00:00
|
|
|
/* crypto/x509/x509_vfy.c */
|
1998-12-21 10:56:39 +00:00
|
|
|
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
1998-12-21 10:52:47 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This package is an SSL implementation written
|
|
|
|
* by Eric Young (eay@cryptsoft.com).
|
|
|
|
* The implementation was written so as to conform with Netscapes SSL.
|
|
|
|
*
|
|
|
|
* This library is free for commercial and non-commercial use as long as
|
|
|
|
* the following conditions are aheared to. The following conditions
|
|
|
|
* apply to all code found in this distribution, be it the RC4, RSA,
|
|
|
|
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
|
|
|
* included with this distribution is covered by the same copyright terms
|
|
|
|
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
|
|
|
*
|
|
|
|
* Copyright remains Eric Young's, and as such any Copyright notices in
|
|
|
|
* the code are not to be removed.
|
|
|
|
* If this package is used in a product, Eric Young should be given attribution
|
|
|
|
* as the author of the parts of the library used.
|
|
|
|
* This can be in the form of a textual message at program startup or
|
|
|
|
* in documentation (online or textual) provided with the package.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* "This product includes cryptographic software written by
|
|
|
|
* Eric Young (eay@cryptsoft.com)"
|
|
|
|
* The word 'cryptographic' can be left out if the rouines from the library
|
|
|
|
* being used are not cryptographic related :-).
|
|
|
|
* 4. If you include any Windows specific code (or a derivative thereof) from
|
|
|
|
* the apps directory (application code) you must include an acknowledgement:
|
|
|
|
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* The licence and distribution terms for any publically available version or
|
|
|
|
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
|
|
|
* copied and put under another distribution licence
|
|
|
|
* [including the GNU Public Licence.]
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "cryptlib.h"
|
1999-09-11 17:54:18 +00:00
|
|
|
#include <openssl/crypto.h>
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/lhash.h>
|
|
|
|
#include <openssl/buffer.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/asn1.h>
|
|
|
|
#include <openssl/x509.h>
|
1999-11-24 01:31:49 +00:00
|
|
|
#include <openssl/x509v3.h>
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/objects.h>
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
static int null_callback(int ok,X509_STORE_CTX *e);
|
2000-09-05 17:53:58 +00:00
|
|
|
static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
|
|
|
|
static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
|
2004-11-29 11:28:08 +00:00
|
|
|
static int check_chain_extensions(X509_STORE_CTX *ctx);
|
1999-11-27 19:43:10 +00:00
|
|
|
static int check_trust(X509_STORE_CTX *ctx);
|
2001-05-07 22:52:50 +00:00
|
|
|
static int check_revocation(X509_STORE_CTX *ctx);
|
|
|
|
static int check_cert(X509_STORE_CTX *ctx);
|
2004-09-06 18:43:01 +00:00
|
|
|
static int check_policy(X509_STORE_CTX *ctx);
|
2006-09-14 17:25:02 +00:00
|
|
|
static int crl_akid_check(X509_STORE_CTX *ctx, AUTHORITY_KEYID *akid);
|
|
|
|
static int idp_check_scope(X509 *x, X509_CRL *crl);
|
1998-12-21 10:52:47 +00:00
|
|
|
static int internal_verify(X509_STORE_CTX *ctx);
|
2007-01-21 13:07:17 +00:00
|
|
|
const char X509_version[]="X.509" OPENSSL_VERSION_PTEXT;
|
1999-03-22 12:22:14 +00:00
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
static int null_callback(int ok, X509_STORE_CTX *e)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
return ok;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
1999-04-19 21:31:43 +00:00
|
|
|
static int x509_subject_cmp(X509 **a, X509 **b)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
return X509_subject_name_cmp(*a,*b);
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int X509_verify_cert(X509_STORE_CTX *ctx)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
X509 *x,*xtmp,*chain_ss=NULL;
|
|
|
|
X509_NAME *xn;
|
2004-09-06 18:43:01 +00:00
|
|
|
int bad_chain = 0;
|
|
|
|
X509_VERIFY_PARAM *param = ctx->param;
|
1998-12-21 10:52:47 +00:00
|
|
|
int depth,i,ok=0;
|
|
|
|
int num;
|
2005-04-20 21:48:06 +00:00
|
|
|
int (*cb)(int xok,X509_STORE_CTX *xctx);
|
1999-04-12 17:23:57 +00:00
|
|
|
STACK_OF(X509) *sktmp=NULL;
|
1998-12-21 10:52:47 +00:00
|
|
|
if (ctx->cert == NULL)
|
|
|
|
{
|
|
|
|
X509err(X509_F_X509_VERIFY_CERT,X509_R_NO_CERT_SET_FOR_US_TO_VERIFY);
|
2000-09-06 14:14:20 +00:00
|
|
|
return -1;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
2000-09-05 17:53:58 +00:00
|
|
|
cb=ctx->verify_cb;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
/* first we make sure the chain we are going to build is
|
|
|
|
* present and that the first entry is in place */
|
|
|
|
if (ctx->chain == NULL)
|
|
|
|
{
|
1999-05-30 22:25:19 +00:00
|
|
|
if ( ((ctx->chain=sk_X509_new_null()) == NULL) ||
|
|
|
|
(!sk_X509_push(ctx->chain,ctx->cert)))
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
CRYPTO_add(&ctx->cert->references,1,CRYPTO_LOCK_X509);
|
|
|
|
ctx->last_untrusted=1;
|
|
|
|
}
|
|
|
|
|
1999-11-17 01:20:29 +00:00
|
|
|
/* We use a temporary STACK so we can chop and hack at it */
|
1999-04-12 17:23:57 +00:00
|
|
|
if (ctx->untrusted != NULL
|
|
|
|
&& (sktmp=sk_X509_dup(ctx->untrusted)) == NULL)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
1999-05-30 22:25:19 +00:00
|
|
|
num=sk_X509_num(ctx->chain);
|
|
|
|
x=sk_X509_value(ctx->chain,num-1);
|
2004-09-06 18:43:01 +00:00
|
|
|
depth=param->depth;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
/* If we have enough, we break */
|
1999-05-11 22:05:39 +00:00
|
|
|
if (depth < num) break; /* FIXME: If this happens, we should take
|
1999-08-08 14:06:29 +00:00
|
|
|
* note of it and, if appropriate, use the
|
|
|
|
* X509_V_ERR_CERT_CHAIN_TOO_LONG error
|
|
|
|
* code later.
|
|
|
|
*/
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
/* If we are self signed, we break */
|
|
|
|
xn=X509_get_issuer_name(x);
|
2000-09-05 17:53:58 +00:00
|
|
|
if (ctx->check_issued(ctx, x,x)) break;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
/* If we were passed a cert chain, use it first */
|
|
|
|
if (ctx->untrusted != NULL)
|
|
|
|
{
|
2000-09-05 17:53:58 +00:00
|
|
|
xtmp=find_issuer(ctx, sktmp,x);
|
1998-12-21 10:52:47 +00:00
|
|
|
if (xtmp != NULL)
|
|
|
|
{
|
1999-05-30 22:25:19 +00:00
|
|
|
if (!sk_X509_push(ctx->chain,xtmp))
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
CRYPTO_add(&xtmp->references,1,CRYPTO_LOCK_X509);
|
1999-04-12 17:23:57 +00:00
|
|
|
sk_X509_delete_ptr(sktmp,xtmp);
|
1998-12-21 10:52:47 +00:00
|
|
|
ctx->last_untrusted++;
|
|
|
|
x=xtmp;
|
|
|
|
num++;
|
|
|
|
/* reparse the full chain for
|
|
|
|
* the next one */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* at this point, chain should contain a list of untrusted
|
|
|
|
* certificates. We now need to add at least one trusted one,
|
|
|
|
* if possible, otherwise we complain. */
|
|
|
|
|
2000-09-05 17:53:58 +00:00
|
|
|
/* Examine last certificate in chain and see if it
|
|
|
|
* is self signed.
|
|
|
|
*/
|
|
|
|
|
1999-05-30 22:25:19 +00:00
|
|
|
i=sk_X509_num(ctx->chain);
|
|
|
|
x=sk_X509_value(ctx->chain,i-1);
|
1999-11-17 01:20:29 +00:00
|
|
|
xn = X509_get_subject_name(x);
|
2000-09-05 17:53:58 +00:00
|
|
|
if (ctx->check_issued(ctx, x, x))
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
/* we have a self signed certificate */
|
1999-05-30 22:25:19 +00:00
|
|
|
if (sk_X509_num(ctx->chain) == 1)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
1999-11-17 01:20:29 +00:00
|
|
|
/* We have a single self signed certificate: see if
|
|
|
|
* we can find it in the store. We must have an exact
|
|
|
|
* match to avoid possible impersonation.
|
|
|
|
*/
|
2000-09-05 17:53:58 +00:00
|
|
|
ok = ctx->get_issuer(&xtmp, ctx, x);
|
|
|
|
if ((ok <= 0) || X509_cmp(x, xtmp))
|
1999-11-17 01:20:29 +00:00
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT;
|
|
|
|
ctx->current_cert=x;
|
|
|
|
ctx->error_depth=i-1;
|
2000-09-06 13:31:44 +00:00
|
|
|
if (ok == 1) X509_free(xtmp);
|
2004-09-06 18:43:01 +00:00
|
|
|
bad_chain = 1;
|
1999-11-17 01:20:29 +00:00
|
|
|
ok=cb(0,ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We have a match: replace certificate with store version
|
|
|
|
* so we get any trust settings.
|
|
|
|
*/
|
|
|
|
X509_free(x);
|
2000-09-05 17:53:58 +00:00
|
|
|
x = xtmp;
|
1999-11-17 01:20:29 +00:00
|
|
|
sk_X509_set(ctx->chain, i - 1, x);
|
|
|
|
ctx->last_untrusted=0;
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-09-05 17:53:58 +00:00
|
|
|
/* extract and save self signed certificate for later use */
|
1999-05-30 22:25:19 +00:00
|
|
|
chain_ss=sk_X509_pop(ctx->chain);
|
1998-12-21 10:52:47 +00:00
|
|
|
ctx->last_untrusted--;
|
|
|
|
num--;
|
1999-05-30 22:25:19 +00:00
|
|
|
x=sk_X509_value(ctx->chain,num-1);
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We now lookup certs from the certificate store */
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
/* If we have enough, we break */
|
1999-05-01 03:20:40 +00:00
|
|
|
if (depth < num) break;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
/* If we are self signed, we break */
|
|
|
|
xn=X509_get_issuer_name(x);
|
2000-09-05 17:53:58 +00:00
|
|
|
if (ctx->check_issued(ctx,x,x)) break;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2000-09-05 17:53:58 +00:00
|
|
|
ok = ctx->get_issuer(&xtmp, ctx, x);
|
|
|
|
|
|
|
|
if (ok < 0) return ok;
|
2000-09-06 13:31:44 +00:00
|
|
|
if (ok == 0) break;
|
2000-09-05 17:53:58 +00:00
|
|
|
|
|
|
|
x = xtmp;
|
|
|
|
if (!sk_X509_push(ctx->chain,x))
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
2000-09-05 17:53:58 +00:00
|
|
|
X509_free(xtmp);
|
1998-12-21 10:52:47 +00:00
|
|
|
X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
|
2000-09-06 14:14:20 +00:00
|
|
|
return 0;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we now have our chain, lets check it... */
|
|
|
|
xn=X509_get_issuer_name(x);
|
2000-09-05 17:53:58 +00:00
|
|
|
|
|
|
|
/* Is last certificate looked up self signed? */
|
|
|
|
if (!ctx->check_issued(ctx,x,x))
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
2000-09-05 17:53:58 +00:00
|
|
|
if ((chain_ss == NULL) || !ctx->check_issued(ctx, x, chain_ss))
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
if (ctx->last_untrusted >= num)
|
|
|
|
ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY;
|
|
|
|
else
|
|
|
|
ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT;
|
|
|
|
ctx->current_cert=x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
1999-05-30 22:25:19 +00:00
|
|
|
sk_X509_push(ctx->chain,chain_ss);
|
1998-12-21 10:52:47 +00:00
|
|
|
num++;
|
|
|
|
ctx->last_untrusted=num;
|
|
|
|
ctx->current_cert=chain_ss;
|
|
|
|
ctx->error=X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN;
|
|
|
|
chain_ss=NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->error_depth=num-1;
|
2004-09-06 18:43:01 +00:00
|
|
|
bad_chain = 1;
|
1998-12-21 10:52:47 +00:00
|
|
|
ok=cb(0,ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
|
|
|
|
1999-11-24 01:31:49 +00:00
|
|
|
/* We have the chain complete: now we need to check its purpose */
|
2004-11-29 11:28:08 +00:00
|
|
|
ok = check_chain_extensions(ctx);
|
1999-11-24 01:31:49 +00:00
|
|
|
|
2000-09-06 13:31:44 +00:00
|
|
|
if (!ok) goto end;
|
1999-11-24 01:31:49 +00:00
|
|
|
|
1999-11-27 19:43:10 +00:00
|
|
|
/* The chain extensions are OK: check trust */
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
if (param->trust > 0) ok = check_trust(ctx);
|
1999-11-27 19:43:10 +00:00
|
|
|
|
2000-09-06 13:31:44 +00:00
|
|
|
if (!ok) goto end;
|
1999-11-27 19:43:10 +00:00
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
/* We may as well copy down any DSA parameters that are required */
|
|
|
|
X509_get_pubkey_parameters(NULL,ctx->chain);
|
|
|
|
|
2001-05-07 22:52:50 +00:00
|
|
|
/* Check revocation status: we do this after copying parameters
|
|
|
|
* because they may be needed for CRL signature verification.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ok = ctx->check_revocation(ctx);
|
|
|
|
if(!ok) goto end;
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
/* At this point, we have a chain and need to verify it */
|
2000-09-05 17:53:58 +00:00
|
|
|
if (ctx->verify != NULL)
|
|
|
|
ok=ctx->verify(ctx);
|
1998-12-21 10:52:47 +00:00
|
|
|
else
|
|
|
|
ok=internal_verify(ctx);
|
2004-09-06 18:43:01 +00:00
|
|
|
if(!ok) goto end;
|
|
|
|
|
2006-12-06 13:36:48 +00:00
|
|
|
#ifndef OPENSSL_NO_RFC3779
|
2006-11-27 14:18:05 +00:00
|
|
|
/* RFC 3779 path validation, now that CRL check has been done */
|
|
|
|
ok = v3_asid_validate_path(ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
ok = v3_addr_validate_path(ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
#endif
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
/* If we get this far evaluate policies */
|
|
|
|
if (!bad_chain && (ctx->param->flags & X509_V_FLAG_POLICY_CHECK))
|
|
|
|
ok = ctx->check_policy(ctx);
|
|
|
|
if(!ok) goto end;
|
1998-12-21 11:00:56 +00:00
|
|
|
if (0)
|
|
|
|
{
|
1998-12-21 10:52:47 +00:00
|
|
|
end:
|
1998-12-21 11:00:56 +00:00
|
|
|
X509_get_pubkey_parameters(NULL,ctx->chain);
|
|
|
|
}
|
1999-04-12 17:23:57 +00:00
|
|
|
if (sktmp != NULL) sk_X509_free(sktmp);
|
1998-12-21 10:52:47 +00:00
|
|
|
if (chain_ss != NULL) X509_free(chain_ss);
|
2000-09-06 14:14:20 +00:00
|
|
|
return ok;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
2000-09-05 17:53:58 +00:00
|
|
|
|
|
|
|
/* Given a STACK_OF(X509) find the issuer of cert (if any)
|
|
|
|
*/
|
|
|
|
|
|
|
|
static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
X509 *issuer;
|
2000-09-06 13:31:44 +00:00
|
|
|
for (i = 0; i < sk_X509_num(sk); i++)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
2000-09-05 17:53:58 +00:00
|
|
|
issuer = sk_X509_value(sk, i);
|
2000-09-06 13:31:44 +00:00
|
|
|
if (ctx->check_issued(ctx, x, issuer))
|
2000-09-06 13:24:10 +00:00
|
|
|
return issuer;
|
|
|
|
}
|
2000-09-05 17:53:58 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Given a possible certificate and issuer check them */
|
|
|
|
|
|
|
|
static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ret = X509_check_issued(issuer, x);
|
2000-09-06 13:24:10 +00:00
|
|
|
if (ret == X509_V_OK)
|
|
|
|
return 1;
|
2000-09-22 21:32:08 +00:00
|
|
|
/* If we haven't asked for issuer errors don't set ctx */
|
2004-09-06 18:43:01 +00:00
|
|
|
if (!(ctx->param->flags & X509_V_FLAG_CB_ISSUER_CHECK))
|
2000-09-22 21:32:08 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
ctx->error = ret;
|
|
|
|
ctx->current_cert = x;
|
|
|
|
ctx->current_issuer = issuer;
|
2001-05-09 00:30:39 +00:00
|
|
|
return ctx->verify_cb(0, ctx);
|
2000-09-05 17:53:58 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Alternative lookup method: look from a STACK stored in other_ctx */
|
|
|
|
|
|
|
|
static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
|
|
|
|
{
|
|
|
|
*issuer = find_issuer(ctx, ctx->other_ctx, x);
|
2000-09-06 13:24:10 +00:00
|
|
|
if (*issuer)
|
|
|
|
{
|
2000-09-05 17:53:58 +00:00
|
|
|
CRYPTO_add(&(*issuer)->references,1,CRYPTO_LOCK_X509);
|
|
|
|
return 1;
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
2000-09-05 17:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-24 01:31:49 +00:00
|
|
|
/* Check a certificate chains extensions for consistency
|
|
|
|
* with the supplied purpose
|
|
|
|
*/
|
|
|
|
|
2004-11-29 11:28:08 +00:00
|
|
|
static int check_chain_extensions(X509_STORE_CTX *ctx)
|
1999-11-24 01:31:49 +00:00
|
|
|
{
|
2001-02-19 16:06:34 +00:00
|
|
|
#ifdef OPENSSL_NO_CHAIN_VERIFY
|
1999-11-24 01:31:49 +00:00
|
|
|
return 1;
|
|
|
|
#else
|
2004-11-29 11:28:08 +00:00
|
|
|
int i, ok=0, must_be_ca;
|
1999-11-24 01:31:49 +00:00
|
|
|
X509 *x;
|
2005-04-20 21:48:06 +00:00
|
|
|
int (*cb)(int xok,X509_STORE_CTX *xctx);
|
2004-12-28 00:21:35 +00:00
|
|
|
int proxy_path_length = 0;
|
2005-04-19 00:12:36 +00:00
|
|
|
int allow_proxy_certs =
|
|
|
|
!!(ctx->param->flags & X509_V_FLAG_ALLOW_PROXY_CERTS);
|
2005-04-10 23:41:09 +00:00
|
|
|
cb=ctx->verify_cb;
|
2004-11-29 11:28:08 +00:00
|
|
|
|
|
|
|
/* must_be_ca can have 1 of 3 values:
|
|
|
|
-1: we accept both CA and non-CA certificates, to allow direct
|
|
|
|
use of self-signed certificates (which are marked as CA).
|
|
|
|
0: we only accept non-CA certificates. This is currently not
|
|
|
|
used, but the possibility is present for future extensions.
|
|
|
|
1: we only accept CA certificates. This is currently used for
|
|
|
|
all certificates in the chain except the leaf certificate.
|
|
|
|
*/
|
|
|
|
must_be_ca = -1;
|
2005-04-09 16:07:12 +00:00
|
|
|
|
|
|
|
/* A hack to keep people who don't want to modify their software
|
|
|
|
happy */
|
|
|
|
if (getenv("OPENSSL_ALLOW_PROXY_CERTS"))
|
|
|
|
allow_proxy_certs = 1;
|
|
|
|
|
1999-11-24 01:31:49 +00:00
|
|
|
/* Check all untrusted certificates */
|
2000-09-06 13:31:44 +00:00
|
|
|
for (i = 0; i < ctx->last_untrusted; i++)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
2004-03-05 17:16:35 +00:00
|
|
|
int ret;
|
1999-11-24 01:31:49 +00:00
|
|
|
x = sk_X509_value(ctx->chain, i);
|
2004-09-06 18:43:01 +00:00
|
|
|
if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
|
2001-10-21 02:09:15 +00:00
|
|
|
&& (x->ex_flags & EXFLAG_CRITICAL))
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION;
|
|
|
|
ctx->error_depth = i;
|
|
|
|
ctx->current_cert = x;
|
|
|
|
ok=cb(0,ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
2005-04-09 16:07:12 +00:00
|
|
|
if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY))
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED;
|
|
|
|
ctx->error_depth = i;
|
|
|
|
ctx->current_cert = x;
|
|
|
|
ok=cb(0,ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
2004-11-29 11:28:08 +00:00
|
|
|
ret = X509_check_ca(x);
|
|
|
|
switch(must_be_ca)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
2004-11-29 11:28:08 +00:00
|
|
|
case -1:
|
|
|
|
if ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
|
|
|
|
&& (ret != 1) && (ret != 0))
|
|
|
|
{
|
|
|
|
ret = 0;
|
2000-09-06 13:24:10 +00:00
|
|
|
ctx->error = X509_V_ERR_INVALID_CA;
|
2004-11-29 11:28:08 +00:00
|
|
|
}
|
2000-09-06 13:24:10 +00:00
|
|
|
else
|
2004-11-29 11:28:08 +00:00
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
if (ret != 0)
|
|
|
|
{
|
|
|
|
ret = 0;
|
|
|
|
ctx->error = X509_V_ERR_INVALID_NON_CA;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if ((ret == 0)
|
|
|
|
|| ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
|
|
|
|
&& (ret != 1)))
|
|
|
|
{
|
|
|
|
ret = 0;
|
|
|
|
ctx->error = X509_V_ERR_INVALID_CA;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
1999-11-24 01:31:49 +00:00
|
|
|
ctx->error_depth = i;
|
|
|
|
ctx->current_cert = x;
|
|
|
|
ok=cb(0,ctx);
|
2000-09-06 13:24:10 +00:00
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
2004-11-29 11:28:08 +00:00
|
|
|
if (ctx->param->purpose > 0)
|
|
|
|
{
|
|
|
|
ret = X509_check_purpose(x, ctx->param->purpose,
|
|
|
|
must_be_ca > 0);
|
|
|
|
if ((ret == 0)
|
|
|
|
|| ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
|
|
|
|
&& (ret != 1)))
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_INVALID_PURPOSE;
|
|
|
|
ctx->error_depth = i;
|
|
|
|
ctx->current_cert = x;
|
|
|
|
ok=cb(0,ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
|
|
|
}
|
1999-11-24 01:31:49 +00:00
|
|
|
/* Check pathlen */
|
2000-09-06 13:31:44 +00:00
|
|
|
if ((i > 1) && (x->ex_pathlen != -1)
|
2004-12-28 00:21:35 +00:00
|
|
|
&& (i > (x->ex_pathlen + proxy_path_length + 1)))
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
1999-11-24 01:31:49 +00:00
|
|
|
ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED;
|
|
|
|
ctx->error_depth = i;
|
|
|
|
ctx->current_cert = x;
|
|
|
|
ok=cb(0,ctx);
|
2000-09-06 13:24:10 +00:00
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
2004-12-28 00:21:35 +00:00
|
|
|
/* If this certificate is a proxy certificate, the next
|
|
|
|
certificate must be another proxy certificate or a EE
|
|
|
|
certificate. If not, the next certificate must be a
|
|
|
|
CA certificate. */
|
|
|
|
if (x->ex_flags & EXFLAG_PROXY)
|
|
|
|
{
|
|
|
|
if (x->ex_pcpathlen != -1 && i > x->ex_pcpathlen)
|
|
|
|
{
|
|
|
|
ctx->error =
|
|
|
|
X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED;
|
|
|
|
ctx->error_depth = i;
|
|
|
|
ctx->current_cert = x;
|
|
|
|
ok=cb(0,ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
|
|
|
proxy_path_length++;
|
|
|
|
must_be_ca = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
must_be_ca = 1;
|
1999-11-24 01:31:49 +00:00
|
|
|
}
|
|
|
|
ok = 1;
|
2000-09-06 13:24:10 +00:00
|
|
|
end:
|
2000-09-06 14:14:20 +00:00
|
|
|
return ok;
|
1999-11-24 01:31:49 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-11-27 19:43:10 +00:00
|
|
|
static int check_trust(X509_STORE_CTX *ctx)
|
|
|
|
{
|
2001-02-19 16:06:34 +00:00
|
|
|
#ifdef OPENSSL_NO_CHAIN_VERIFY
|
1999-11-27 19:43:10 +00:00
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
int i, ok;
|
|
|
|
X509 *x;
|
2005-04-20 21:48:06 +00:00
|
|
|
int (*cb)(int xok,X509_STORE_CTX *xctx);
|
2000-09-05 17:53:58 +00:00
|
|
|
cb=ctx->verify_cb;
|
1999-11-27 19:43:10 +00:00
|
|
|
/* For now just check the last certificate in the chain */
|
|
|
|
i = sk_X509_num(ctx->chain) - 1;
|
|
|
|
x = sk_X509_value(ctx->chain, i);
|
2004-09-06 18:43:01 +00:00
|
|
|
ok = X509_check_trust(x, ctx->param->trust, 0);
|
2000-09-06 13:24:10 +00:00
|
|
|
if (ok == X509_TRUST_TRUSTED)
|
|
|
|
return 1;
|
2001-05-07 22:52:50 +00:00
|
|
|
ctx->error_depth = i;
|
1999-11-27 19:43:10 +00:00
|
|
|
ctx->current_cert = x;
|
2000-09-06 13:24:10 +00:00
|
|
|
if (ok == X509_TRUST_REJECTED)
|
|
|
|
ctx->error = X509_V_ERR_CERT_REJECTED;
|
|
|
|
else
|
|
|
|
ctx->error = X509_V_ERR_CERT_UNTRUSTED;
|
1999-11-27 19:43:10 +00:00
|
|
|
ok = cb(0, ctx);
|
2000-09-06 14:14:20 +00:00
|
|
|
return ok;
|
1999-11-27 19:43:10 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-05-07 22:52:50 +00:00
|
|
|
static int check_revocation(X509_STORE_CTX *ctx)
|
|
|
|
{
|
|
|
|
int i, last, ok;
|
2004-09-06 18:43:01 +00:00
|
|
|
if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
|
2001-05-07 22:52:50 +00:00
|
|
|
return 1;
|
2004-09-06 18:43:01 +00:00
|
|
|
if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
|
2001-05-07 22:52:50 +00:00
|
|
|
last = sk_X509_num(ctx->chain) - 1;
|
2003-06-04 00:40:05 +00:00
|
|
|
else
|
|
|
|
last = 0;
|
2001-05-07 22:52:50 +00:00
|
|
|
for(i = 0; i <= last; i++)
|
|
|
|
{
|
|
|
|
ctx->error_depth = i;
|
|
|
|
ok = check_cert(ctx);
|
|
|
|
if (!ok) return ok;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int check_cert(X509_STORE_CTX *ctx)
|
|
|
|
{
|
|
|
|
X509_CRL *crl = NULL;
|
|
|
|
X509 *x;
|
|
|
|
int ok, cnum;
|
|
|
|
cnum = ctx->error_depth;
|
|
|
|
x = sk_X509_value(ctx->chain, cnum);
|
|
|
|
ctx->current_cert = x;
|
|
|
|
/* Try to retrieve relevant CRL */
|
|
|
|
ok = ctx->get_crl(ctx, &crl, x);
|
|
|
|
/* If error looking up CRL, nothing we can do except
|
|
|
|
* notify callback
|
|
|
|
*/
|
|
|
|
if(!ok)
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
|
2001-05-09 00:30:39 +00:00
|
|
|
ok = ctx->verify_cb(0, ctx);
|
2001-05-07 22:52:50 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
ctx->current_crl = crl;
|
|
|
|
ok = ctx->check_crl(ctx, crl);
|
|
|
|
if (!ok) goto err;
|
|
|
|
ok = ctx->cert_crl(ctx, crl, x);
|
|
|
|
err:
|
|
|
|
ctx->current_crl = NULL;
|
|
|
|
X509_CRL_free(crl);
|
|
|
|
return ok;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2004-03-27 22:49:28 +00:00
|
|
|
/* Check CRL times against values in X509_STORE_CTX */
|
|
|
|
|
|
|
|
static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
|
|
|
|
{
|
|
|
|
time_t *ptime;
|
|
|
|
int i;
|
|
|
|
ctx->current_crl = crl;
|
2004-09-06 18:43:01 +00:00
|
|
|
if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
|
|
|
|
ptime = &ctx->param->check_time;
|
2004-03-27 22:49:28 +00:00
|
|
|
else
|
|
|
|
ptime = NULL;
|
|
|
|
|
|
|
|
i=X509_cmp_time(X509_CRL_get_lastUpdate(crl), ptime);
|
|
|
|
if (i == 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD;
|
|
|
|
if (!notify || !ctx->verify_cb(0, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_CRL_NOT_YET_VALID;
|
|
|
|
if (!notify || !ctx->verify_cb(0, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(X509_CRL_get_nextUpdate(crl))
|
|
|
|
{
|
|
|
|
i=X509_cmp_time(X509_CRL_get_nextUpdate(crl), ptime);
|
|
|
|
|
|
|
|
if (i == 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD;
|
|
|
|
if (!notify || !ctx->verify_cb(0, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_CRL_HAS_EXPIRED;
|
|
|
|
if (!notify || !ctx->verify_cb(0, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->current_crl = NULL;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-09-14 17:25:02 +00:00
|
|
|
/* Based on a set of possible CRLs decide which one is best suited
|
|
|
|
* to handle the current certificate. This is determined by a number
|
|
|
|
* of criteria. If any of the "must" criteria is not satisfied then
|
|
|
|
* the candidate CRL is rejected. If all "must" and all "should" are
|
|
|
|
* satisfied the CRL is accepted. If no CRL satisfies all criteria then
|
|
|
|
* a "best CRL" is used to provide some meaningful error information.
|
|
|
|
*
|
|
|
|
* CRL issuer name must match "nm" if not NULL.
|
|
|
|
* If IDP is present:
|
|
|
|
* a. it must be consistent.
|
|
|
|
* b. onlyuser, onlyCA, onlyAA should match certificate being checked.
|
|
|
|
* c. indirectCRL must be FALSE.
|
|
|
|
* d. onlysomereason must be absent.
|
|
|
|
* e. if name present a DP in certificate CRLDP must match.
|
|
|
|
* If AKID present it should match certificate AKID.
|
|
|
|
* Check time should fall between lastUpdate and nextUpdate.
|
2004-03-27 22:49:28 +00:00
|
|
|
*/
|
|
|
|
|
2006-09-14 17:25:02 +00:00
|
|
|
/* IDP name field matches CRLDP or IDP name not present */
|
|
|
|
#define CRL_SCORE_SCOPE 4
|
|
|
|
/* AKID present and matches cert, or AKID not present */
|
|
|
|
#define CRL_SCORE_AKID 2
|
|
|
|
/* times OK */
|
|
|
|
#define CRL_SCORE_TIME 1
|
|
|
|
|
|
|
|
#define CRL_SCORE_ALL 7
|
|
|
|
|
|
|
|
/* IDP flags which cause a CRL to be rejected */
|
|
|
|
|
|
|
|
#define IDP_REJECT (IDP_INVALID|IDP_INDIRECT|IDP_REASONS)
|
|
|
|
|
2004-03-27 22:49:28 +00:00
|
|
|
static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl,
|
|
|
|
X509_NAME *nm, STACK_OF(X509_CRL) *crls)
|
|
|
|
{
|
2006-09-14 17:25:02 +00:00
|
|
|
int i, crl_score, best_score = -1;
|
2004-03-27 22:49:28 +00:00
|
|
|
X509_CRL *crl, *best_crl = NULL;
|
|
|
|
for (i = 0; i < sk_X509_CRL_num(crls); i++)
|
|
|
|
{
|
2006-09-14 17:25:02 +00:00
|
|
|
crl_score = 0;
|
2004-03-27 22:49:28 +00:00
|
|
|
crl = sk_X509_CRL_value(crls, i);
|
2006-09-11 13:00:52 +00:00
|
|
|
if (nm && X509_NAME_cmp(nm, X509_CRL_get_issuer(crl)))
|
2004-03-27 22:49:28 +00:00
|
|
|
continue;
|
|
|
|
if (check_crl_time(ctx, crl, 0))
|
2006-09-14 17:25:02 +00:00
|
|
|
crl_score |= CRL_SCORE_TIME;
|
|
|
|
|
|
|
|
if (crl->idp_flags & IDP_PRESENT)
|
|
|
|
{
|
|
|
|
if (crl->idp_flags & IDP_REJECT)
|
|
|
|
continue;
|
|
|
|
if (idp_check_scope(ctx->current_cert, crl))
|
|
|
|
crl_score |= CRL_SCORE_SCOPE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
crl_score |= CRL_SCORE_SCOPE;
|
|
|
|
|
|
|
|
if (crl->akid)
|
|
|
|
{
|
|
|
|
if (crl_akid_check(ctx, crl->akid))
|
|
|
|
crl_score |= CRL_SCORE_AKID;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
crl_score |= CRL_SCORE_AKID;
|
|
|
|
|
|
|
|
if (crl_score == CRL_SCORE_ALL)
|
2004-03-27 22:49:28 +00:00
|
|
|
{
|
|
|
|
*pcrl = crl;
|
2006-09-10 12:38:37 +00:00
|
|
|
CRYPTO_add(&crl->references, 1, CRYPTO_LOCK_X509_CRL);
|
2004-03-27 22:49:28 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2006-09-14 17:25:02 +00:00
|
|
|
|
|
|
|
if (crl_score > best_score)
|
|
|
|
{
|
|
|
|
best_crl = crl;
|
|
|
|
best_score = crl_score;
|
|
|
|
}
|
2004-03-27 22:49:28 +00:00
|
|
|
}
|
|
|
|
if (best_crl)
|
|
|
|
{
|
|
|
|
*pcrl = best_crl;
|
|
|
|
CRYPTO_add(&best_crl->references, 1, CRYPTO_LOCK_X509);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-14 17:25:02 +00:00
|
|
|
static int crl_akid_check(X509_STORE_CTX *ctx, AUTHORITY_KEYID *akid)
|
|
|
|
{
|
|
|
|
int cidx = ctx->error_depth;
|
|
|
|
if (cidx != sk_X509_num(ctx->chain) - 1)
|
|
|
|
cidx++;
|
|
|
|
if (X509_check_akid(sk_X509_value(ctx->chain, cidx), akid) == X509_V_OK)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Check IDP name matches at least one CRLDP name */
|
|
|
|
|
|
|
|
static int idp_check_scope(X509 *x, X509_CRL *crl)
|
|
|
|
{
|
|
|
|
int i, j, k;
|
|
|
|
GENERAL_NAMES *inames, *dnames;
|
|
|
|
if (crl->idp_flags & IDP_ONLYATTR)
|
|
|
|
return 0;
|
|
|
|
if (x->ex_flags & EXFLAG_CA)
|
|
|
|
{
|
|
|
|
if (crl->idp_flags & IDP_ONLYUSER)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (crl->idp_flags & IDP_ONLYCA)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!crl->idp->distpoint)
|
|
|
|
return 1;
|
|
|
|
if (crl->idp->distpoint->type != 0)
|
|
|
|
return 1;
|
|
|
|
if (!x->crldp)
|
|
|
|
return 0;
|
|
|
|
inames = crl->idp->distpoint->name.fullname;
|
|
|
|
for (i = 0; i < sk_GENERAL_NAME_num(inames); i++)
|
|
|
|
{
|
|
|
|
GENERAL_NAME *igen = sk_GENERAL_NAME_value(inames, i);
|
|
|
|
for (j = 0; j < sk_DIST_POINT_num(x->crldp); j++)
|
|
|
|
{
|
|
|
|
DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, j);
|
|
|
|
/* We don't handle these at present */
|
|
|
|
if (dp->reasons || dp->CRLissuer)
|
|
|
|
continue;
|
|
|
|
if (!dp->distpoint || (dp->distpoint->type != 0))
|
|
|
|
continue;
|
|
|
|
dnames = dp->distpoint->name.fullname;
|
|
|
|
for (k = 0; k < sk_GENERAL_NAME_num(dnames); k++)
|
|
|
|
{
|
|
|
|
GENERAL_NAME *cgen =
|
|
|
|
sk_GENERAL_NAME_value(dnames, k);
|
|
|
|
if (!GENERAL_NAME_cmp(igen, cgen))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retrieve CRL corresponding to current certificate. Currently only
|
|
|
|
* one CRL is retrieved. Multiple CRLs may be needed if we handle
|
|
|
|
* CRLs partitioned on reason code later.
|
2001-05-07 22:52:50 +00:00
|
|
|
*/
|
2006-09-14 17:25:02 +00:00
|
|
|
|
2004-03-27 22:49:28 +00:00
|
|
|
static int get_crl(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509 *x)
|
2001-05-07 22:52:50 +00:00
|
|
|
{
|
|
|
|
int ok;
|
2004-03-27 22:49:28 +00:00
|
|
|
X509_CRL *crl = NULL;
|
2006-09-11 13:00:52 +00:00
|
|
|
STACK_OF(X509_CRL) *skcrl;
|
2004-03-27 22:49:28 +00:00
|
|
|
X509_NAME *nm;
|
|
|
|
nm = X509_get_issuer_name(x);
|
|
|
|
ok = get_crl_sk(ctx, &crl, nm, ctx->crls);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
*pcrl = crl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-09-11 13:00:52 +00:00
|
|
|
/* Lookup CRLs from store */
|
2004-03-27 22:49:28 +00:00
|
|
|
|
2006-09-11 13:00:52 +00:00
|
|
|
skcrl = ctx->lookup_crls(ctx, nm);
|
|
|
|
|
|
|
|
/* If no CRLs found and a near match from get_crl_sk use that */
|
|
|
|
if (!skcrl)
|
2004-03-27 22:49:28 +00:00
|
|
|
{
|
|
|
|
if (crl)
|
|
|
|
{
|
|
|
|
*pcrl = crl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-11 13:00:52 +00:00
|
|
|
get_crl_sk(ctx, &crl, NULL, skcrl);
|
|
|
|
|
|
|
|
sk_X509_CRL_pop_free(skcrl, X509_CRL_free);
|
|
|
|
|
|
|
|
/* If we got any kind of CRL use it and return success */
|
|
|
|
if (crl)
|
2006-07-25 17:39:38 +00:00
|
|
|
{
|
2006-09-11 13:00:52 +00:00
|
|
|
*pcrl = crl;
|
|
|
|
return 1;
|
2006-07-25 17:39:38 +00:00
|
|
|
}
|
2006-09-11 13:00:52 +00:00
|
|
|
|
|
|
|
return 0;
|
2001-05-07 22:52:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check CRL validity */
|
|
|
|
static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
|
|
|
|
{
|
|
|
|
X509 *issuer = NULL;
|
|
|
|
EVP_PKEY *ikey = NULL;
|
2004-03-27 22:49:28 +00:00
|
|
|
int ok = 0, chnum, cnum;
|
2001-05-07 22:52:50 +00:00
|
|
|
cnum = ctx->error_depth;
|
|
|
|
chnum = sk_X509_num(ctx->chain) - 1;
|
|
|
|
/* Find CRL issuer: if not last certificate then issuer
|
|
|
|
* is next certificate in chain.
|
|
|
|
*/
|
|
|
|
if(cnum < chnum)
|
|
|
|
issuer = sk_X509_value(ctx->chain, cnum + 1);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
issuer = sk_X509_value(ctx->chain, chnum);
|
|
|
|
/* If not self signed, can't check signature */
|
|
|
|
if(!ctx->check_issued(ctx, issuer, issuer))
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER;
|
2001-05-09 00:30:39 +00:00
|
|
|
ok = ctx->verify_cb(0, ctx);
|
2001-05-07 22:52:50 +00:00
|
|
|
if(!ok) goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(issuer)
|
|
|
|
{
|
2004-03-05 17:16:35 +00:00
|
|
|
/* Check for cRLSign bit if keyUsage present */
|
|
|
|
if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
|
|
|
|
!(issuer->ex_kusage & KU_CRL_SIGN))
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_KEYUSAGE_NO_CRL_SIGN;
|
|
|
|
ok = ctx->verify_cb(0, ctx);
|
|
|
|
if(!ok) goto err;
|
|
|
|
}
|
2001-05-07 22:52:50 +00:00
|
|
|
|
2006-09-14 17:25:02 +00:00
|
|
|
if (crl->idp_flags & IDP_PRESENT)
|
|
|
|
{
|
|
|
|
if (crl->idp_flags & IDP_INVALID)
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_INVALID_EXTENSION;
|
|
|
|
ok = ctx->verify_cb(0, ctx);
|
|
|
|
if(!ok) goto err;
|
|
|
|
}
|
|
|
|
if (crl->idp_flags & (IDP_REASONS|IDP_INDIRECT))
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE;
|
|
|
|
ok = ctx->verify_cb(0, ctx);
|
|
|
|
if(!ok) goto err;
|
|
|
|
}
|
|
|
|
if (!idp_check_scope(ctx->current_cert, crl))
|
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_DIFFERENT_CRL_SCOPE;
|
|
|
|
ok = ctx->verify_cb(0, ctx);
|
|
|
|
if(!ok) goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-07 22:52:50 +00:00
|
|
|
/* Attempt to get issuer certificate public key */
|
|
|
|
ikey = X509_get_pubkey(issuer);
|
|
|
|
|
|
|
|
if(!ikey)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
|
2001-05-09 00:30:39 +00:00
|
|
|
ok = ctx->verify_cb(0, ctx);
|
2001-05-07 22:52:50 +00:00
|
|
|
if (!ok) goto err;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Verify CRL signature */
|
|
|
|
if(X509_CRL_verify(crl, ikey) <= 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_CRL_SIGNATURE_FAILURE;
|
2001-05-09 00:30:39 +00:00
|
|
|
ok = ctx->verify_cb(0, ctx);
|
2001-05-07 22:52:50 +00:00
|
|
|
if (!ok) goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-27 13:19:25 +00:00
|
|
|
ok = check_crl_time(ctx, crl, 1);
|
|
|
|
if (!ok)
|
2004-03-27 22:49:28 +00:00
|
|
|
goto err;
|
2001-05-07 22:52:50 +00:00
|
|
|
|
|
|
|
ok = 1;
|
|
|
|
|
|
|
|
err:
|
|
|
|
EVP_PKEY_free(ikey);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check certificate against CRL */
|
|
|
|
static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
|
|
|
|
{
|
2006-09-21 12:42:15 +00:00
|
|
|
int ok;
|
|
|
|
/* Look for serial number of certificate in CRL
|
|
|
|
* If found assume revoked: want something cleverer than
|
2001-05-07 22:52:50 +00:00
|
|
|
* this to handle entry extensions in V2 CRLs.
|
|
|
|
*/
|
2006-09-21 12:42:15 +00:00
|
|
|
if (X509_CRL_get0_by_serial(crl, NULL, X509_get_serialNumber(x)) > 0)
|
2004-03-05 17:16:35 +00:00
|
|
|
{
|
|
|
|
ctx->error = X509_V_ERR_CERT_REVOKED;
|
|
|
|
ok = ctx->verify_cb(0, ctx);
|
2006-09-21 12:42:15 +00:00
|
|
|
if (!ok)
|
|
|
|
return 0;
|
2004-03-05 17:16:35 +00:00
|
|
|
}
|
|
|
|
|
2006-09-21 12:42:15 +00:00
|
|
|
if (crl->flags & EXFLAG_CRITICAL)
|
2004-03-05 17:16:35 +00:00
|
|
|
{
|
2006-09-21 12:42:15 +00:00
|
|
|
if (ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
|
|
|
|
return 1;
|
|
|
|
ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION;
|
|
|
|
ok = ctx->verify_cb(0, ctx);
|
|
|
|
if(!ok)
|
|
|
|
return 0;
|
2004-03-05 17:16:35 +00:00
|
|
|
}
|
2006-09-21 12:42:15 +00:00
|
|
|
|
2004-03-05 17:16:35 +00:00
|
|
|
return 1;
|
2001-05-07 22:52:50 +00:00
|
|
|
}
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
static int check_policy(X509_STORE_CTX *ctx)
|
|
|
|
{
|
|
|
|
int ret;
|
2004-10-01 11:21:53 +00:00
|
|
|
ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
|
2004-09-06 18:43:01 +00:00
|
|
|
ctx->param->policies, ctx->param->flags);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
2005-05-11 03:45:39 +00:00
|
|
|
X509err(X509_F_CHECK_POLICY,ERR_R_MALLOC_FAILURE);
|
2004-09-06 18:43:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* Invalid or inconsistent extensions */
|
|
|
|
if (ret == -1)
|
|
|
|
{
|
|
|
|
/* Locate certificates with bad extensions and notify
|
|
|
|
* callback.
|
|
|
|
*/
|
|
|
|
X509 *x;
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < sk_X509_num(ctx->chain); i++)
|
|
|
|
{
|
|
|
|
x = sk_X509_value(ctx->chain, i);
|
|
|
|
if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
|
|
|
|
continue;
|
|
|
|
ctx->current_cert = x;
|
|
|
|
ctx->error = X509_V_ERR_INVALID_POLICY_EXTENSION;
|
|
|
|
ret = ctx->verify_cb(0, ctx);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (ret == -2)
|
|
|
|
{
|
|
|
|
ctx->current_cert = NULL;
|
|
|
|
ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
|
|
|
|
return ctx->verify_cb(0, ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY)
|
|
|
|
{
|
|
|
|
ctx->current_cert = NULL;
|
|
|
|
ctx->error = X509_V_OK;
|
|
|
|
if (!ctx->verify_cb(2, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-03-27 22:49:28 +00:00
|
|
|
static int check_cert_time(X509_STORE_CTX *ctx, X509 *x)
|
|
|
|
{
|
|
|
|
time_t *ptime;
|
|
|
|
int i;
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
|
|
|
|
ptime = &ctx->param->check_time;
|
2004-03-27 22:49:28 +00:00
|
|
|
else
|
|
|
|
ptime = NULL;
|
|
|
|
|
|
|
|
i=X509_cmp_time(X509_get_notBefore(x), ptime);
|
|
|
|
if (i == 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD;
|
|
|
|
ctx->current_cert=x;
|
|
|
|
if (!ctx->verify_cb(0, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_CERT_NOT_YET_VALID;
|
|
|
|
ctx->current_cert=x;
|
|
|
|
if (!ctx->verify_cb(0, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
i=X509_cmp_time(X509_get_notAfter(x), ptime);
|
|
|
|
if (i == 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD;
|
|
|
|
ctx->current_cert=x;
|
|
|
|
if (!ctx->verify_cb(0, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_CERT_HAS_EXPIRED;
|
|
|
|
ctx->current_cert=x;
|
|
|
|
if (!ctx->verify_cb(0, ctx))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
static int internal_verify(X509_STORE_CTX *ctx)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
2004-03-27 22:49:28 +00:00
|
|
|
int ok=0,n;
|
1998-12-21 10:52:47 +00:00
|
|
|
X509 *xs,*xi;
|
|
|
|
EVP_PKEY *pkey=NULL;
|
2005-04-20 21:48:06 +00:00
|
|
|
int (*cb)(int xok,X509_STORE_CTX *xctx);
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2000-09-05 17:53:58 +00:00
|
|
|
cb=ctx->verify_cb;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-05-30 22:25:19 +00:00
|
|
|
n=sk_X509_num(ctx->chain);
|
1998-12-21 10:52:47 +00:00
|
|
|
ctx->error_depth=n-1;
|
|
|
|
n--;
|
1999-05-30 22:25:19 +00:00
|
|
|
xi=sk_X509_value(ctx->chain,n);
|
2004-03-27 22:49:28 +00:00
|
|
|
|
2000-09-05 22:30:38 +00:00
|
|
|
if (ctx->check_issued(ctx, xi, xi))
|
1998-12-21 10:52:47 +00:00
|
|
|
xs=xi;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (n <= 0)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE;
|
|
|
|
ctx->current_cert=xi;
|
|
|
|
ok=cb(0,ctx);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
n--;
|
|
|
|
ctx->error_depth=n;
|
1999-05-30 22:25:19 +00:00
|
|
|
xs=sk_X509_value(ctx->chain,n);
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ctx->error=0; not needed */
|
|
|
|
while (n >= 0)
|
|
|
|
{
|
|
|
|
ctx->error_depth=n;
|
|
|
|
if (!xs->valid)
|
|
|
|
{
|
|
|
|
if ((pkey=X509_get_pubkey(xi)) == NULL)
|
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
|
|
|
|
ctx->current_cert=xi;
|
|
|
|
ok=(*cb)(0,ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
}
|
2003-09-30 16:47:33 +00:00
|
|
|
else if (X509_verify(xs,pkey) <= 0)
|
2001-01-28 14:38:11 +00:00
|
|
|
/* XXX For the final trusted self-signed cert,
|
|
|
|
* this is a waste of time. That check should
|
|
|
|
* optional so that e.g. 'openssl x509' can be
|
|
|
|
* used to detect invalid self-signatures, but
|
|
|
|
* we don't verify again and again in SSL
|
|
|
|
* handshakes and the like once the cert has
|
|
|
|
* been declared trusted. */
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
ctx->error=X509_V_ERR_CERT_SIGNATURE_FAILURE;
|
|
|
|
ctx->current_cert=xs;
|
|
|
|
ok=(*cb)(0,ctx);
|
2000-03-02 00:37:53 +00:00
|
|
|
if (!ok)
|
|
|
|
{
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
goto end;
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
1999-01-03 01:08:33 +00:00
|
|
|
EVP_PKEY_free(pkey);
|
1998-12-21 10:52:47 +00:00
|
|
|
pkey=NULL;
|
|
|
|
}
|
|
|
|
|
2004-03-27 22:49:28 +00:00
|
|
|
xs->valid = 1;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2005-05-27 13:19:25 +00:00
|
|
|
ok = check_cert_time(ctx, xs);
|
|
|
|
if (!ok)
|
2004-03-27 22:49:28 +00:00
|
|
|
goto end;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
/* The last error (if any) is still in the error value */
|
2005-01-17 17:06:58 +00:00
|
|
|
ctx->current_issuer=xi;
|
1998-12-21 10:52:47 +00:00
|
|
|
ctx->current_cert=xs;
|
|
|
|
ok=(*cb)(1,ctx);
|
|
|
|
if (!ok) goto end;
|
|
|
|
|
|
|
|
n--;
|
|
|
|
if (n >= 0)
|
|
|
|
{
|
|
|
|
xi=xs;
|
1999-05-30 22:25:19 +00:00
|
|
|
xs=sk_X509_value(ctx->chain,n);
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ok=1;
|
|
|
|
end:
|
2000-09-06 14:14:20 +00:00
|
|
|
return ok;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
2006-12-11 22:35:51 +00:00
|
|
|
int X509_cmp_current_time(const ASN1_TIME *ctm)
|
2000-09-05 22:30:38 +00:00
|
|
|
{
|
|
|
|
return X509_cmp_time(ctm, NULL);
|
|
|
|
}
|
|
|
|
|
2006-12-11 22:35:51 +00:00
|
|
|
int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
char *str;
|
2000-07-26 01:18:37 +00:00
|
|
|
ASN1_TIME atm;
|
2002-11-18 13:04:08 +00:00
|
|
|
long offset;
|
1998-12-21 10:52:47 +00:00
|
|
|
char buff1[24],buff2[24],*p;
|
|
|
|
int i,j;
|
|
|
|
|
|
|
|
p=buff1;
|
|
|
|
i=ctm->length;
|
|
|
|
str=(char *)ctm->data;
|
2000-09-06 13:24:10 +00:00
|
|
|
if (ctm->type == V_ASN1_UTCTIME)
|
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
if ((i < 11) || (i > 17)) return 0;
|
2000-07-26 01:18:37 +00:00
|
|
|
memcpy(p,str,10);
|
|
|
|
p+=10;
|
|
|
|
str+=10;
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (i < 13) return 0;
|
2000-07-26 01:18:37 +00:00
|
|
|
memcpy(p,str,12);
|
|
|
|
p+=12;
|
|
|
|
str+=12;
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
if ((*str == 'Z') || (*str == '-') || (*str == '+'))
|
|
|
|
{ *(p++)='0'; *(p++)='0'; }
|
2000-07-26 01:18:37 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
*(p++)= *(str++);
|
|
|
|
*(p++)= *(str++);
|
|
|
|
/* Skip any fractional seconds... */
|
2000-09-06 13:24:10 +00:00
|
|
|
if (*str == '.')
|
2000-07-26 01:18:37 +00:00
|
|
|
{
|
|
|
|
str++;
|
2000-09-06 13:31:44 +00:00
|
|
|
while ((*str >= '0') && (*str <= '9')) str++;
|
2000-07-26 01:18:37 +00:00
|
|
|
}
|
2000-09-06 13:24:10 +00:00
|
|
|
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
*(p++)='Z';
|
|
|
|
*(p++)='\0';
|
|
|
|
|
|
|
|
if (*str == 'Z')
|
|
|
|
offset=0;
|
|
|
|
else
|
|
|
|
{
|
2005-06-05 21:54:48 +00:00
|
|
|
if ((*str != '+') && (*str != '-'))
|
2000-09-06 14:14:20 +00:00
|
|
|
return 0;
|
1998-12-21 10:52:47 +00:00
|
|
|
offset=((str[1]-'0')*10+(str[2]-'0'))*60;
|
|
|
|
offset+=(str[3]-'0')*10+(str[4]-'0');
|
|
|
|
if (*str == '-')
|
1998-12-21 11:00:56 +00:00
|
|
|
offset= -offset;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
2000-07-26 01:18:37 +00:00
|
|
|
atm.type=ctm->type;
|
1998-12-21 10:52:47 +00:00
|
|
|
atm.length=sizeof(buff2);
|
|
|
|
atm.data=(unsigned char *)buff2;
|
|
|
|
|
2004-12-05 01:03:15 +00:00
|
|
|
if (X509_time_adj(&atm,-offset*60, cmp_time) == NULL)
|
|
|
|
return 0;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2000-09-06 13:31:44 +00:00
|
|
|
if (ctm->type == V_ASN1_UTCTIME)
|
2000-07-26 01:18:37 +00:00
|
|
|
{
|
|
|
|
i=(buff1[0]-'0')*10+(buff1[1]-'0');
|
|
|
|
if (i < 50) i+=100; /* cf. RFC 2459 */
|
|
|
|
j=(buff2[0]-'0')*10+(buff2[1]-'0');
|
|
|
|
if (j < 50) j+=100;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2000-09-06 14:14:20 +00:00
|
|
|
if (i < j) return -1;
|
|
|
|
if (i > j) return 1;
|
2000-07-26 01:18:37 +00:00
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
i=strcmp(buff1,buff2);
|
|
|
|
if (i == 0) /* wait a second then return younger :-) */
|
2000-09-06 14:14:20 +00:00
|
|
|
return -1;
|
1998-12-21 10:52:47 +00:00
|
|
|
else
|
2000-09-06 14:14:20 +00:00
|
|
|
return i;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
2000-07-26 01:18:37 +00:00
|
|
|
ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
|
2000-09-05 22:30:38 +00:00
|
|
|
{
|
|
|
|
return X509_time_adj(s, adj, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
ASN1_TIME *X509_time_adj(ASN1_TIME *s, long adj, time_t *in_tm)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
time_t t;
|
2001-01-20 13:38:45 +00:00
|
|
|
int type = -1;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2000-09-06 13:31:44 +00:00
|
|
|
if (in_tm) t = *in_tm;
|
2000-09-05 22:30:38 +00:00
|
|
|
else time(&t);
|
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
t+=adj;
|
2001-01-20 13:38:45 +00:00
|
|
|
if (s) type = s->type;
|
|
|
|
if (type == V_ASN1_UTCTIME) return ASN1_UTCTIME_set(s,t);
|
|
|
|
if (type == V_ASN1_GENERALIZEDTIME) return ASN1_GENERALIZEDTIME_set(s, t);
|
|
|
|
return ASN1_TIME_set(s, t);
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
1999-05-30 22:25:19 +00:00
|
|
|
int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
|
|
|
EVP_PKEY *ktmp=NULL,*ktmp2;
|
|
|
|
int i,j;
|
|
|
|
|
2000-09-06 14:14:20 +00:00
|
|
|
if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey)) return 1;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-05-30 22:25:19 +00:00
|
|
|
for (i=0; i<sk_X509_num(chain); i++)
|
1998-12-21 10:52:47 +00:00
|
|
|
{
|
1999-05-30 22:25:19 +00:00
|
|
|
ktmp=X509_get_pubkey(sk_X509_value(chain,i));
|
1998-12-21 10:52:47 +00:00
|
|
|
if (ktmp == NULL)
|
|
|
|
{
|
|
|
|
X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
|
2000-09-06 14:14:20 +00:00
|
|
|
return 0;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
if (!EVP_PKEY_missing_parameters(ktmp))
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
{
|
1999-01-03 01:08:33 +00:00
|
|
|
EVP_PKEY_free(ktmp);
|
1998-12-21 10:52:47 +00:00
|
|
|
ktmp=NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ktmp == NULL)
|
|
|
|
{
|
|
|
|
X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
|
2000-09-06 14:14:20 +00:00
|
|
|
return 0;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* first, populate the other certs */
|
|
|
|
for (j=i-1; j >= 0; j--)
|
|
|
|
{
|
1999-05-30 22:25:19 +00:00
|
|
|
ktmp2=X509_get_pubkey(sk_X509_value(chain,j));
|
1998-12-21 10:52:47 +00:00
|
|
|
EVP_PKEY_copy_parameters(ktmp2,ktmp);
|
1999-01-03 01:08:33 +00:00
|
|
|
EVP_PKEY_free(ktmp2);
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
1999-01-03 01:08:33 +00:00
|
|
|
if (pkey != NULL) EVP_PKEY_copy_parameters(pkey,ktmp);
|
|
|
|
EVP_PKEY_free(ktmp);
|
2000-09-06 14:14:20 +00:00
|
|
|
return 1;
|
1998-12-21 10:52:47 +00:00
|
|
|
}
|
|
|
|
|
2000-01-23 23:41:49 +00:00
|
|
|
int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
|
|
|
|
CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
|
2000-12-15 16:40:35 +00:00
|
|
|
{
|
|
|
|
/* This function is (usually) called only once, by
|
2001-09-01 20:02:13 +00:00
|
|
|
* SSL_get_ex_data_X509_STORE_CTX_idx (ssl/ssl_cert.c). */
|
|
|
|
return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509_STORE_CTX, argl, argp,
|
|
|
|
new_func, dup_func, free_func);
|
2000-12-15 16:40:35 +00:00
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
return CRYPTO_set_ex_data(&ctx->ex_data,idx,data);
|
1998-12-21 10:56:39 +00:00
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
return CRYPTO_get_ex_data(&ctx->ex_data,idx);
|
1998-12-21 10:56:39 +00:00
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
return ctx->error;
|
1998-12-21 10:56:39 +00:00
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
|
|
|
ctx->error=err;
|
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
return ctx->error_depth;
|
1998-12-21 10:56:39 +00:00
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
return ctx->current_cert;
|
1998-12-21 10:56:39 +00:00
|
|
|
}
|
|
|
|
|
1999-05-30 22:25:19 +00:00
|
|
|
STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
2000-09-06 14:14:20 +00:00
|
|
|
return ctx->chain;
|
1998-12-21 10:56:39 +00:00
|
|
|
}
|
|
|
|
|
2000-02-26 01:55:33 +00:00
|
|
|
STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
|
2000-01-09 14:21:40 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
X509 *x;
|
|
|
|
STACK_OF(X509) *chain;
|
2000-09-06 13:31:44 +00:00
|
|
|
if (!ctx->chain || !(chain = sk_X509_dup(ctx->chain))) return NULL;
|
|
|
|
for (i = 0; i < sk_X509_num(chain); i++)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
2000-01-09 14:21:40 +00:00
|
|
|
x = sk_X509_value(chain, i);
|
|
|
|
CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
2000-09-06 14:14:20 +00:00
|
|
|
return chain;
|
2000-01-09 14:21:40 +00:00
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
|
|
|
ctx->cert=x;
|
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
|
1998-12-21 10:56:39 +00:00
|
|
|
{
|
|
|
|
ctx->untrusted=sk;
|
|
|
|
}
|
|
|
|
|
2004-03-27 22:49:28 +00:00
|
|
|
void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
|
|
|
|
{
|
|
|
|
ctx->crls=sk;
|
|
|
|
}
|
|
|
|
|
1999-11-29 01:09:25 +00:00
|
|
|
int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
|
1999-11-24 01:31:49 +00:00
|
|
|
{
|
1999-11-29 01:09:25 +00:00
|
|
|
return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
|
1999-11-24 01:31:49 +00:00
|
|
|
}
|
|
|
|
|
1999-11-29 22:35:00 +00:00
|
|
|
int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
|
1999-11-24 01:31:49 +00:00
|
|
|
{
|
1999-11-29 22:35:00 +00:00
|
|
|
return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
|
1999-11-24 01:31:49 +00:00
|
|
|
}
|
|
|
|
|
1999-11-29 01:09:25 +00:00
|
|
|
/* This function is used to set the X509_STORE_CTX purpose and trust
|
|
|
|
* values. This is intended to be used when another structure has its
|
|
|
|
* own trust and purpose values which (if set) will be inherited by
|
|
|
|
* the ctx. If they aren't set then we will usually have a default
|
|
|
|
* purpose in mind which should then be used to set the trust value.
|
|
|
|
* An example of this is SSL use: an SSL structure will have its own
|
|
|
|
* purpose and trust settings which the application can set: if they
|
|
|
|
* aren't set then we use the default of SSL client/server.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
|
|
|
|
int purpose, int trust)
|
1999-11-27 19:43:10 +00:00
|
|
|
{
|
|
|
|
int idx;
|
1999-11-29 01:09:25 +00:00
|
|
|
/* If purpose not set use default */
|
2000-09-06 13:24:10 +00:00
|
|
|
if (!purpose) purpose = def_purpose;
|
1999-11-29 01:09:25 +00:00
|
|
|
/* If we have a purpose then check it is valid */
|
2000-09-06 13:24:10 +00:00
|
|
|
if (purpose)
|
|
|
|
{
|
2000-03-07 14:04:29 +00:00
|
|
|
X509_PURPOSE *ptmp;
|
1999-11-29 01:09:25 +00:00
|
|
|
idx = X509_PURPOSE_get_by_id(purpose);
|
2000-09-06 13:31:44 +00:00
|
|
|
if (idx == -1)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
1999-11-29 01:09:25 +00:00
|
|
|
X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
|
|
|
|
X509_R_UNKNOWN_PURPOSE_ID);
|
|
|
|
return 0;
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
2000-03-07 14:04:29 +00:00
|
|
|
ptmp = X509_PURPOSE_get0(idx);
|
2000-09-06 13:31:44 +00:00
|
|
|
if (ptmp->trust == X509_TRUST_DEFAULT)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
2000-03-07 14:04:29 +00:00
|
|
|
idx = X509_PURPOSE_get_by_id(def_purpose);
|
2000-09-06 13:31:44 +00:00
|
|
|
if (idx == -1)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
2000-03-07 14:04:29 +00:00
|
|
|
X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
|
|
|
|
X509_R_UNKNOWN_PURPOSE_ID);
|
|
|
|
return 0;
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
2000-02-26 08:36:46 +00:00
|
|
|
ptmp = X509_PURPOSE_get0(idx);
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
2000-03-07 14:04:29 +00:00
|
|
|
/* If trust not set then get from purpose default */
|
2000-09-06 13:31:44 +00:00
|
|
|
if (!trust) trust = ptmp->trust;
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
2000-09-06 13:31:44 +00:00
|
|
|
if (trust)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
1999-11-29 01:09:25 +00:00
|
|
|
idx = X509_TRUST_get_by_id(trust);
|
2000-09-06 13:31:44 +00:00
|
|
|
if (idx == -1)
|
2000-09-06 13:24:10 +00:00
|
|
|
{
|
1999-11-29 01:09:25 +00:00
|
|
|
X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
|
|
|
|
X509_R_UNKNOWN_TRUST_ID);
|
|
|
|
return 0;
|
2000-09-06 13:24:10 +00:00
|
|
|
}
|
1999-11-29 01:09:25 +00:00
|
|
|
}
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
if (purpose && !ctx->param->purpose) ctx->param->purpose = purpose;
|
|
|
|
if (trust && !ctx->param->trust) ctx->param->trust = trust;
|
1999-11-27 19:43:10 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2000-09-05 17:53:58 +00:00
|
|
|
X509_STORE_CTX *X509_STORE_CTX_new(void)
|
|
|
|
{
|
|
|
|
X509_STORE_CTX *ctx;
|
|
|
|
ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX));
|
2001-09-01 20:02:13 +00:00
|
|
|
if (!ctx)
|
|
|
|
{
|
|
|
|
X509err(X509_F_X509_STORE_CTX_NEW,ERR_R_MALLOC_FAILURE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
memset(ctx, 0, sizeof(X509_STORE_CTX));
|
2000-09-05 17:53:58 +00:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
|
|
|
|
{
|
|
|
|
X509_STORE_CTX_cleanup(ctx);
|
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
|
|
|
|
2001-09-01 20:02:13 +00:00
|
|
|
int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
|
2000-09-05 17:53:58 +00:00
|
|
|
STACK_OF(X509) *chain)
|
|
|
|
{
|
2004-09-06 18:43:01 +00:00
|
|
|
int ret = 1;
|
2000-09-05 17:53:58 +00:00
|
|
|
ctx->ctx=store;
|
|
|
|
ctx->current_method=0;
|
|
|
|
ctx->cert=x509;
|
|
|
|
ctx->untrusted=chain;
|
2004-09-06 18:43:01 +00:00
|
|
|
ctx->crls = NULL;
|
2000-09-05 17:53:58 +00:00
|
|
|
ctx->last_untrusted=0;
|
2000-09-06 13:24:10 +00:00
|
|
|
ctx->other_ctx=NULL;
|
2000-09-05 17:53:58 +00:00
|
|
|
ctx->valid=0;
|
|
|
|
ctx->chain=NULL;
|
|
|
|
ctx->error=0;
|
2004-10-01 11:21:53 +00:00
|
|
|
ctx->explicit_policy=0;
|
2000-09-06 13:24:10 +00:00
|
|
|
ctx->error_depth=0;
|
2000-09-05 17:53:58 +00:00
|
|
|
ctx->current_cert=NULL;
|
|
|
|
ctx->current_issuer=NULL;
|
2004-09-06 18:43:01 +00:00
|
|
|
ctx->tree = NULL;
|
|
|
|
|
|
|
|
ctx->param = X509_VERIFY_PARAM_new();
|
|
|
|
|
|
|
|
if (!ctx->param)
|
|
|
|
{
|
|
|
|
X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
|
|
|
|
return 0;
|
|
|
|
}
|
2001-05-09 00:30:39 +00:00
|
|
|
|
|
|
|
/* Inherit callbacks and flags from X509_STORE if not set
|
|
|
|
* use defaults.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
if (store)
|
|
|
|
ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
|
|
|
|
else
|
|
|
|
ctx->param->flags |= X509_VP_FLAG_DEFAULT|X509_VP_FLAG_ONCE;
|
|
|
|
|
2002-02-23 13:50:29 +00:00
|
|
|
if (store)
|
|
|
|
{
|
2004-09-06 18:43:01 +00:00
|
|
|
ctx->verify_cb = store->verify_cb;
|
2002-02-23 13:50:29 +00:00
|
|
|
ctx->cleanup = store->cleanup;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ctx->cleanup = 0;
|
2004-09-06 18:43:01 +00:00
|
|
|
|
|
|
|
if (ret)
|
|
|
|
ret = X509_VERIFY_PARAM_inherit(ctx->param,
|
|
|
|
X509_VERIFY_PARAM_lookup("default"));
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
|
|
|
|
return 0;
|
2002-02-23 13:50:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (store && store->check_issued)
|
2001-05-09 00:30:39 +00:00
|
|
|
ctx->check_issued = store->check_issued;
|
|
|
|
else
|
|
|
|
ctx->check_issued = check_issued;
|
|
|
|
|
2002-02-23 13:50:29 +00:00
|
|
|
if (store && store->get_issuer)
|
2001-05-09 00:30:39 +00:00
|
|
|
ctx->get_issuer = store->get_issuer;
|
|
|
|
else
|
|
|
|
ctx->get_issuer = X509_STORE_CTX_get1_issuer;
|
|
|
|
|
2002-02-23 13:50:29 +00:00
|
|
|
if (store && store->verify_cb)
|
2001-05-09 00:30:39 +00:00
|
|
|
ctx->verify_cb = store->verify_cb;
|
|
|
|
else
|
|
|
|
ctx->verify_cb = null_callback;
|
|
|
|
|
2002-02-23 13:50:29 +00:00
|
|
|
if (store && store->verify)
|
2001-05-09 00:30:39 +00:00
|
|
|
ctx->verify = store->verify;
|
|
|
|
else
|
|
|
|
ctx->verify = internal_verify;
|
|
|
|
|
2002-02-23 13:50:29 +00:00
|
|
|
if (store && store->check_revocation)
|
2001-05-09 00:30:39 +00:00
|
|
|
ctx->check_revocation = store->check_revocation;
|
|
|
|
else
|
|
|
|
ctx->check_revocation = check_revocation;
|
|
|
|
|
2002-02-23 13:50:29 +00:00
|
|
|
if (store && store->get_crl)
|
2001-05-09 00:30:39 +00:00
|
|
|
ctx->get_crl = store->get_crl;
|
|
|
|
else
|
|
|
|
ctx->get_crl = get_crl;
|
|
|
|
|
2002-02-23 13:50:29 +00:00
|
|
|
if (store && store->check_crl)
|
2001-05-09 00:30:39 +00:00
|
|
|
ctx->check_crl = store->check_crl;
|
|
|
|
else
|
|
|
|
ctx->check_crl = check_crl;
|
|
|
|
|
2002-02-23 13:50:29 +00:00
|
|
|
if (store && store->cert_crl)
|
2001-05-09 00:30:39 +00:00
|
|
|
ctx->cert_crl = store->cert_crl;
|
|
|
|
else
|
|
|
|
ctx->cert_crl = cert_crl;
|
|
|
|
|
2006-09-10 12:38:37 +00:00
|
|
|
if (store && store->lookup_certs)
|
|
|
|
ctx->lookup_certs = store->lookup_certs;
|
|
|
|
else
|
2006-09-11 13:00:52 +00:00
|
|
|
ctx->lookup_certs = X509_STORE_get1_certs;
|
2006-09-10 12:38:37 +00:00
|
|
|
|
|
|
|
if (store && store->lookup_crls)
|
|
|
|
ctx->lookup_crls = store->lookup_crls;
|
|
|
|
else
|
2006-09-11 13:00:52 +00:00
|
|
|
ctx->lookup_crls = X509_STORE_get1_crls;
|
2006-09-10 12:38:37 +00:00
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
ctx->check_policy = check_policy;
|
|
|
|
|
2001-05-09 00:30:39 +00:00
|
|
|
|
2001-09-01 20:02:13 +00:00
|
|
|
/* This memset() can't make any sense anyway, so it's removed. As
|
|
|
|
* X509_STORE_CTX_cleanup does a proper "free" on the ex_data, we put a
|
|
|
|
* corresponding "new" here and remove this bogus initialisation. */
|
|
|
|
/* memset(&(ctx->ex_data),0,sizeof(CRYPTO_EX_DATA)); */
|
|
|
|
if(!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
|
|
|
|
&(ctx->ex_data)))
|
|
|
|
{
|
|
|
|
OPENSSL_free(ctx);
|
|
|
|
X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
2000-09-05 17:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set alternative lookup method: just a STACK of trusted certificates.
|
|
|
|
* This avoids X509_STORE nastiness where it isn't needed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
|
|
|
|
{
|
|
|
|
ctx->other_ctx = sk;
|
|
|
|
ctx->get_issuer = get_issuer_sk;
|
|
|
|
}
|
|
|
|
|
|
|
|
void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
|
|
|
|
{
|
2000-09-06 13:31:44 +00:00
|
|
|
if (ctx->cleanup) ctx->cleanup(ctx);
|
2007-02-07 01:42:46 +00:00
|
|
|
if (ctx->param != NULL)
|
|
|
|
{
|
|
|
|
X509_VERIFY_PARAM_free(ctx->param);
|
|
|
|
ctx->param=NULL;
|
|
|
|
}
|
|
|
|
if (ctx->tree != NULL)
|
|
|
|
{
|
2004-09-06 18:43:01 +00:00
|
|
|
X509_policy_tree_free(ctx->tree);
|
2007-02-07 01:42:46 +00:00
|
|
|
ctx->tree=NULL;
|
|
|
|
}
|
2000-09-05 17:53:58 +00:00
|
|
|
if (ctx->chain != NULL)
|
|
|
|
{
|
|
|
|
sk_X509_pop_free(ctx->chain,X509_free);
|
|
|
|
ctx->chain=NULL;
|
|
|
|
}
|
2001-09-01 20:02:13 +00:00
|
|
|
CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
|
2002-12-10 08:26:05 +00:00
|
|
|
memset(&ctx->ex_data,0,sizeof(CRYPTO_EX_DATA));
|
2000-09-05 17:53:58 +00:00
|
|
|
}
|
1999-11-29 01:09:25 +00:00
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
|
2000-09-05 22:30:38 +00:00
|
|
|
{
|
2004-09-06 18:43:01 +00:00
|
|
|
X509_VERIFY_PARAM_set_depth(ctx->param, depth);
|
2000-09-05 22:30:38 +00:00
|
|
|
}
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
|
2000-09-05 22:30:38 +00:00
|
|
|
{
|
2004-09-06 18:43:01 +00:00
|
|
|
X509_VERIFY_PARAM_set_flags(ctx->param, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags, time_t t)
|
|
|
|
{
|
|
|
|
X509_VERIFY_PARAM_set_time(ctx->param, t);
|
2000-09-05 22:30:38 +00:00
|
|
|
}
|
|
|
|
|
2001-07-30 11:50:37 +00:00
|
|
|
void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
|
|
|
|
int (*verify_cb)(int, X509_STORE_CTX *))
|
|
|
|
{
|
|
|
|
ctx->verify_cb=verify_cb;
|
|
|
|
}
|
|
|
|
|
2004-09-06 18:43:01 +00:00
|
|
|
X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx)
|
|
|
|
{
|
|
|
|
return ctx->tree;
|
|
|
|
}
|
|
|
|
|
|
|
|
int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx)
|
|
|
|
{
|
2004-10-01 11:21:53 +00:00
|
|
|
return ctx->explicit_policy;
|
2004-09-06 18:43:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
|
|
|
|
{
|
|
|
|
const X509_VERIFY_PARAM *param;
|
|
|
|
param = X509_VERIFY_PARAM_lookup(name);
|
|
|
|
if (!param)
|
|
|
|
return 0;
|
|
|
|
return X509_VERIFY_PARAM_inherit(ctx->param, param);
|
|
|
|
}
|
|
|
|
|
|
|
|
X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx)
|
|
|
|
{
|
|
|
|
return ctx->param;
|
|
|
|
}
|
|
|
|
|
|
|
|
void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
|
|
|
|
{
|
|
|
|
if (ctx->param)
|
|
|
|
X509_VERIFY_PARAM_free(ctx->param);
|
|
|
|
ctx->param = param;
|
|
|
|
}
|
|
|
|
|
1999-04-12 17:23:57 +00:00
|
|
|
IMPLEMENT_STACK_OF(X509)
|
|
|
|
IMPLEMENT_ASN1_SET_OF(X509)
|
1999-05-01 18:08:44 +00:00
|
|
|
|
1999-04-12 17:23:57 +00:00
|
|
|
IMPLEMENT_STACK_OF(X509_NAME)
|
1999-05-01 18:08:44 +00:00
|
|
|
|
1999-04-20 01:10:33 +00:00
|
|
|
IMPLEMENT_STACK_OF(X509_ATTRIBUTE)
|
1999-05-01 18:08:44 +00:00
|
|
|
IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE)
|