1 /* crypto/x509/x509_vfy.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
64 #include <openssl/crypto.h>
65 #include <openssl/lhash.h>
66 #include <openssl/buffer.h>
67 #include <openssl/evp.h>
68 #include <openssl/asn1.h>
69 #include <openssl/x509.h>
70 #include <openssl/x509v3.h>
71 #include <openssl/objects.h>
73 static int null_callback(int ok
,X509_STORE_CTX
*e
);
74 static int check_issued(X509_STORE_CTX
*ctx
, X509
*x
, X509
*issuer
);
75 static X509
*find_issuer(X509_STORE_CTX
*ctx
, STACK_OF(X509
) *sk
, X509
*x
);
76 static int check_chain_extensions(X509_STORE_CTX
*ctx
);
77 static int check_name_constraints(X509_STORE_CTX
*ctx
);
78 static int check_trust(X509_STORE_CTX
*ctx
);
79 static int check_revocation(X509_STORE_CTX
*ctx
);
80 static int check_cert(X509_STORE_CTX
*ctx
);
81 static int check_policy(X509_STORE_CTX
*ctx
);
82 static int crl_akid_check(X509_STORE_CTX
*ctx
, X509_CRL
*crl
, X509
**pissuer
);
83 static int idp_check_scope(X509
*x
, X509_CRL
*crl
, int *pimatch
);
84 static int check_crl_path(X509_STORE_CTX
*ctx
, X509
*x
);
85 static int check_crl_chain(X509_STORE_CTX
*ctx
,
86 STACK_OF(X509
) *cert_path
,
87 STACK_OF(X509
) *crl_path
);
88 static int internal_verify(X509_STORE_CTX
*ctx
);
89 const char X509_version
[]="X.509" OPENSSL_VERSION_PTEXT
;
92 static int null_callback(int ok
, X509_STORE_CTX
*e
)
98 static int x509_subject_cmp(X509
**a
, X509
**b
)
100 return X509_subject_name_cmp(*a
,*b
);
104 int X509_verify_cert(X509_STORE_CTX
*ctx
)
106 X509
*x
,*xtmp
,*chain_ss
=NULL
;
109 X509_VERIFY_PARAM
*param
= ctx
->param
;
112 int (*cb
)(int xok
,X509_STORE_CTX
*xctx
);
113 STACK_OF(X509
) *sktmp
=NULL
;
114 if (ctx
->cert
== NULL
)
116 X509err(X509_F_X509_VERIFY_CERT
,X509_R_NO_CERT_SET_FOR_US_TO_VERIFY
);
122 /* first we make sure the chain we are going to build is
123 * present and that the first entry is in place */
124 if (ctx
->chain
== NULL
)
126 if ( ((ctx
->chain
=sk_X509_new_null()) == NULL
) ||
127 (!sk_X509_push(ctx
->chain
,ctx
->cert
)))
129 X509err(X509_F_X509_VERIFY_CERT
,ERR_R_MALLOC_FAILURE
);
132 CRYPTO_add(&ctx
->cert
->references
,1,CRYPTO_LOCK_X509
);
133 ctx
->last_untrusted
=1;
136 /* We use a temporary STACK so we can chop and hack at it */
137 if (ctx
->untrusted
!= NULL
138 && (sktmp
=sk_X509_dup(ctx
->untrusted
)) == NULL
)
140 X509err(X509_F_X509_VERIFY_CERT
,ERR_R_MALLOC_FAILURE
);
144 num
=sk_X509_num(ctx
->chain
);
145 x
=sk_X509_value(ctx
->chain
,num
-1);
151 /* If we have enough, we break */
152 if (depth
< num
) break; /* FIXME: If this happens, we should take
153 * note of it and, if appropriate, use the
154 * X509_V_ERR_CERT_CHAIN_TOO_LONG error
158 /* If we are self signed, we break */
159 xn
=X509_get_issuer_name(x
);
160 if (ctx
->check_issued(ctx
, x
,x
)) break;
162 /* If we were passed a cert chain, use it first */
163 if (ctx
->untrusted
!= NULL
)
165 xtmp
=find_issuer(ctx
, sktmp
,x
);
168 if (!sk_X509_push(ctx
->chain
,xtmp
))
170 X509err(X509_F_X509_VERIFY_CERT
,ERR_R_MALLOC_FAILURE
);
173 CRYPTO_add(&xtmp
->references
,1,CRYPTO_LOCK_X509
);
174 (void)sk_X509_delete_ptr(sktmp
,xtmp
);
175 ctx
->last_untrusted
++;
178 /* reparse the full chain for
186 /* at this point, chain should contain a list of untrusted
187 * certificates. We now need to add at least one trusted one,
188 * if possible, otherwise we complain. */
190 /* Examine last certificate in chain and see if it
194 i
=sk_X509_num(ctx
->chain
);
195 x
=sk_X509_value(ctx
->chain
,i
-1);
196 xn
= X509_get_subject_name(x
);
197 if (ctx
->check_issued(ctx
, x
, x
))
199 /* we have a self signed certificate */
200 if (sk_X509_num(ctx
->chain
) == 1)
202 /* We have a single self signed certificate: see if
203 * we can find it in the store. We must have an exact
204 * match to avoid possible impersonation.
206 ok
= ctx
->get_issuer(&xtmp
, ctx
, x
);
207 if ((ok
<= 0) || X509_cmp(x
, xtmp
))
209 ctx
->error
=X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT
;
211 ctx
->error_depth
=i
-1;
212 if (ok
== 1) X509_free(xtmp
);
219 /* We have a match: replace certificate with store version
220 * so we get any trust settings.
224 (void)sk_X509_set(ctx
->chain
, i
- 1, x
);
225 ctx
->last_untrusted
=0;
230 /* extract and save self signed certificate for later use */
231 chain_ss
=sk_X509_pop(ctx
->chain
);
232 ctx
->last_untrusted
--;
234 x
=sk_X509_value(ctx
->chain
,num
-1);
238 /* We now lookup certs from the certificate store */
241 /* If we have enough, we break */
242 if (depth
< num
) break;
244 /* If we are self signed, we break */
245 xn
=X509_get_issuer_name(x
);
246 if (ctx
->check_issued(ctx
,x
,x
)) break;
248 ok
= ctx
->get_issuer(&xtmp
, ctx
, x
);
250 if (ok
< 0) return ok
;
254 if (!sk_X509_push(ctx
->chain
,x
))
257 X509err(X509_F_X509_VERIFY_CERT
,ERR_R_MALLOC_FAILURE
);
263 /* we now have our chain, lets check it... */
264 xn
=X509_get_issuer_name(x
);
266 /* Is last certificate looked up self signed? */
267 if (!ctx
->check_issued(ctx
,x
,x
))
269 if ((chain_ss
== NULL
) || !ctx
->check_issued(ctx
, x
, chain_ss
))
271 if (ctx
->last_untrusted
>= num
)
272 ctx
->error
=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY
;
274 ctx
->error
=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT
;
280 sk_X509_push(ctx
->chain
,chain_ss
);
282 ctx
->last_untrusted
=num
;
283 ctx
->current_cert
=chain_ss
;
284 ctx
->error
=X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN
;
288 ctx
->error_depth
=num
-1;
294 /* We have the chain complete: now we need to check its purpose */
295 ok
= check_chain_extensions(ctx
);
299 /* Check name constraints */
301 ok
= check_name_constraints(ctx
);
305 /* The chain extensions are OK: check trust */
307 if (param
->trust
> 0) ok
= check_trust(ctx
);
311 /* We may as well copy down any DSA parameters that are required */
312 X509_get_pubkey_parameters(NULL
,ctx
->chain
);
314 /* Check revocation status: we do this after copying parameters
315 * because they may be needed for CRL signature verification.
318 ok
= ctx
->check_revocation(ctx
);
321 /* At this point, we have a chain and need to verify it */
322 if (ctx
->verify
!= NULL
)
325 ok
=internal_verify(ctx
);
328 #ifndef OPENSSL_NO_RFC3779
329 /* RFC 3779 path validation, now that CRL check has been done */
330 ok
= v3_asid_validate_path(ctx
);
332 ok
= v3_addr_validate_path(ctx
);
336 /* If we get this far evaluate policies */
337 if (!bad_chain
&& (ctx
->param
->flags
& X509_V_FLAG_POLICY_CHECK
))
338 ok
= ctx
->check_policy(ctx
);
343 X509_get_pubkey_parameters(NULL
,ctx
->chain
);
345 if (sktmp
!= NULL
) sk_X509_free(sktmp
);
346 if (chain_ss
!= NULL
) X509_free(chain_ss
);
351 /* Given a STACK_OF(X509) find the issuer of cert (if any)
354 static X509
*find_issuer(X509_STORE_CTX
*ctx
, STACK_OF(X509
) *sk
, X509
*x
)
358 for (i
= 0; i
< sk_X509_num(sk
); i
++)
360 issuer
= sk_X509_value(sk
, i
);
361 if (ctx
->check_issued(ctx
, x
, issuer
))
367 /* Given a possible certificate and issuer check them */
369 static int check_issued(X509_STORE_CTX
*ctx
, X509
*x
, X509
*issuer
)
372 ret
= X509_check_issued(issuer
, x
);
373 if (ret
== X509_V_OK
)
375 /* If we haven't asked for issuer errors don't set ctx */
376 if (!(ctx
->param
->flags
& X509_V_FLAG_CB_ISSUER_CHECK
))
380 ctx
->current_cert
= x
;
381 ctx
->current_issuer
= issuer
;
382 return ctx
->verify_cb(0, ctx
);
386 /* Alternative lookup method: look from a STACK stored in other_ctx */
388 static int get_issuer_sk(X509
**issuer
, X509_STORE_CTX
*ctx
, X509
*x
)
390 *issuer
= find_issuer(ctx
, ctx
->other_ctx
, x
);
393 CRYPTO_add(&(*issuer
)->references
,1,CRYPTO_LOCK_X509
);
401 /* Check a certificate chains extensions for consistency
402 * with the supplied purpose
405 static int check_chain_extensions(X509_STORE_CTX
*ctx
)
407 #ifdef OPENSSL_NO_CHAIN_VERIFY
410 int i
, ok
=0, must_be_ca
, plen
= 0;
412 int (*cb
)(int xok
,X509_STORE_CTX
*xctx
);
413 int proxy_path_length
= 0;
415 int allow_proxy_certs
;
418 /* must_be_ca can have 1 of 3 values:
419 -1: we accept both CA and non-CA certificates, to allow direct
420 use of self-signed certificates (which are marked as CA).
421 0: we only accept non-CA certificates. This is currently not
422 used, but the possibility is present for future extensions.
423 1: we only accept CA certificates. This is currently used for
424 all certificates in the chain except the leaf certificate.
428 /* CRL path validation */
431 allow_proxy_certs
= 0;
432 purpose
= X509_PURPOSE_CRL_SIGN
;
437 !!(ctx
->param
->flags
& X509_V_FLAG_ALLOW_PROXY_CERTS
);
438 /* A hack to keep people who don't want to modify their
440 if (getenv("OPENSSL_ALLOW_PROXY_CERTS"))
441 allow_proxy_certs
= 1;
442 purpose
= ctx
->param
->purpose
;
445 /* Check all untrusted certificates */
446 for (i
= 0; i
< ctx
->last_untrusted
; i
++)
449 x
= sk_X509_value(ctx
->chain
, i
);
450 if (!(ctx
->param
->flags
& X509_V_FLAG_IGNORE_CRITICAL
)
451 && (x
->ex_flags
& EXFLAG_CRITICAL
))
453 ctx
->error
= X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION
;
454 ctx
->error_depth
= i
;
455 ctx
->current_cert
= x
;
459 if (!allow_proxy_certs
&& (x
->ex_flags
& EXFLAG_PROXY
))
461 ctx
->error
= X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED
;
462 ctx
->error_depth
= i
;
463 ctx
->current_cert
= x
;
467 ret
= X509_check_ca(x
);
471 if ((ctx
->param
->flags
& X509_V_FLAG_X509_STRICT
)
472 && (ret
!= 1) && (ret
!= 0))
475 ctx
->error
= X509_V_ERR_INVALID_CA
;
484 ctx
->error
= X509_V_ERR_INVALID_NON_CA
;
491 || ((ctx
->param
->flags
& X509_V_FLAG_X509_STRICT
)
495 ctx
->error
= X509_V_ERR_INVALID_CA
;
503 ctx
->error_depth
= i
;
504 ctx
->current_cert
= x
;
508 if (ctx
->param
->purpose
> 0)
510 ret
= X509_check_purpose(x
, purpose
, must_be_ca
> 0);
512 || ((ctx
->param
->flags
& X509_V_FLAG_X509_STRICT
)
515 ctx
->error
= X509_V_ERR_INVALID_PURPOSE
;
516 ctx
->error_depth
= i
;
517 ctx
->current_cert
= x
;
522 /* Check pathlen if not self issued */
523 if ((i
> 1) && !(x
->ex_flags
& EXFLAG_SI
)
524 && (x
->ex_pathlen
!= -1)
525 && (plen
> (x
->ex_pathlen
+ proxy_path_length
+ 1)))
527 ctx
->error
= X509_V_ERR_PATH_LENGTH_EXCEEDED
;
528 ctx
->error_depth
= i
;
529 ctx
->current_cert
= x
;
533 /* Increment path length if not self issued */
534 if (!(x
->ex_flags
& EXFLAG_SI
))
536 /* If this certificate is a proxy certificate, the next
537 certificate must be another proxy certificate or a EE
538 certificate. If not, the next certificate must be a
540 if (x
->ex_flags
& EXFLAG_PROXY
)
542 if (x
->ex_pcpathlen
!= -1 && i
> x
->ex_pcpathlen
)
545 X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED
;
546 ctx
->error_depth
= i
;
547 ctx
->current_cert
= x
;
563 static int check_name_constraints(X509_STORE_CTX
*ctx
)
567 /* Check name constraints for all certificates */
568 for (i
= sk_X509_num(ctx
->chain
) - 1; i
>= 0; i
--)
570 x
= sk_X509_value(ctx
->chain
, i
);
571 /* Ignore self issued certs unless last in chain */
572 if (i
&& (x
->ex_flags
& EXFLAG_SI
))
574 /* Check against constraints for all certificates higher in
575 * chain including trust anchor. Trust anchor not strictly
576 * speaking needed but if it includes constraints it is to be
577 * assumed it expects them to be obeyed.
579 for (j
= sk_X509_num(ctx
->chain
) - 1; j
> i
; j
--)
581 NAME_CONSTRAINTS
*nc
= sk_X509_value(ctx
->chain
, j
)->nc
;
584 rv
= NAME_CONSTRAINTS_check(x
, nc
);
588 ctx
->error_depth
= i
;
589 ctx
->current_cert
= x
;
590 if (!ctx
->verify_cb(0,ctx
))
599 static int check_trust(X509_STORE_CTX
*ctx
)
601 #ifdef OPENSSL_NO_CHAIN_VERIFY
606 int (*cb
)(int xok
,X509_STORE_CTX
*xctx
);
608 /* For now just check the last certificate in the chain */
609 i
= sk_X509_num(ctx
->chain
) - 1;
610 x
= sk_X509_value(ctx
->chain
, i
);
611 ok
= X509_check_trust(x
, ctx
->param
->trust
, 0);
612 if (ok
== X509_TRUST_TRUSTED
)
614 ctx
->error_depth
= i
;
615 ctx
->current_cert
= x
;
616 if (ok
== X509_TRUST_REJECTED
)
617 ctx
->error
= X509_V_ERR_CERT_REJECTED
;
619 ctx
->error
= X509_V_ERR_CERT_UNTRUSTED
;
625 static int check_revocation(X509_STORE_CTX
*ctx
)
628 if (!(ctx
->param
->flags
& X509_V_FLAG_CRL_CHECK
))
630 if (ctx
->param
->flags
& X509_V_FLAG_CRL_CHECK_ALL
)
631 last
= sk_X509_num(ctx
->chain
) - 1;
634 for(i
= 0; i
<= last
; i
++)
636 ctx
->error_depth
= i
;
637 ok
= check_cert(ctx
);
643 static int check_cert(X509_STORE_CTX
*ctx
)
645 X509_CRL
*crl
= NULL
;
648 cnum
= ctx
->error_depth
;
649 x
= sk_X509_value(ctx
->chain
, cnum
);
650 ctx
->current_cert
= x
;
651 ctx
->current_issuer
= NULL
;
652 /* Try to retrieve relevant CRL */
653 ok
= ctx
->get_crl(ctx
, &crl
, x
);
654 /* If error looking up CRL, nothing we can do except
659 ctx
->error
= X509_V_ERR_UNABLE_TO_GET_CRL
;
660 ok
= ctx
->verify_cb(0, ctx
);
663 ctx
->current_crl
= crl
;
664 ok
= ctx
->check_crl(ctx
, crl
);
666 ok
= ctx
->cert_crl(ctx
, crl
, x
);
668 ctx
->current_crl
= NULL
;
674 /* Check CRL times against values in X509_STORE_CTX */
676 static int check_crl_time(X509_STORE_CTX
*ctx
, X509_CRL
*crl
, int notify
)
680 ctx
->current_crl
= crl
;
681 if (ctx
->param
->flags
& X509_V_FLAG_USE_CHECK_TIME
)
682 ptime
= &ctx
->param
->check_time
;
686 i
=X509_cmp_time(X509_CRL_get_lastUpdate(crl
), ptime
);
689 ctx
->error
=X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD
;
690 if (!notify
|| !ctx
->verify_cb(0, ctx
))
696 ctx
->error
=X509_V_ERR_CRL_NOT_YET_VALID
;
697 if (!notify
|| !ctx
->verify_cb(0, ctx
))
701 if(X509_CRL_get_nextUpdate(crl
))
703 i
=X509_cmp_time(X509_CRL_get_nextUpdate(crl
), ptime
);
707 ctx
->error
=X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD
;
708 if (!notify
|| !ctx
->verify_cb(0, ctx
))
714 ctx
->error
=X509_V_ERR_CRL_HAS_EXPIRED
;
715 if (!notify
|| !ctx
->verify_cb(0, ctx
))
720 ctx
->current_crl
= NULL
;
725 /* Based on a set of possible CRLs decide which one is best suited
726 * to handle the current certificate. This is determined by a number
727 * of criteria. If any of the "must" criteria is not satisfied then
728 * the candidate CRL is rejected. If all "must" and all "should" are
729 * satisfied the CRL is accepted. If no CRL satisfies all criteria then
730 * a "best CRL" is used to provide some meaningful error information.
732 * CRL issuer name must match "nm" if not NULL.
734 * a. it must be consistent.
735 * b. onlyuser, onlyCA, onlyAA should match certificate being checked.
736 * c. indirectCRL must be FALSE.
737 * d. onlysomereason must be absent.
738 * e. if name present a DP in certificate CRLDP must match.
739 * If AKID present it should match certificate AKID.
740 * Check time should fall between lastUpdate and nextUpdate.
743 /* IDP name field matches CRLDP or IDP name not present */
744 #define CRL_SCORE_SCOPE 4
745 /* AKID present and matches cert, or AKID not present */
746 #define CRL_SCORE_AKID 2
748 #define CRL_SCORE_TIME 1
750 #define CRL_SCORE_ALL 7
752 /* IDP flags which cause a CRL to be rejected */
754 #define IDP_REJECT (IDP_INVALID|IDP_REASONS)
756 static int get_crl_sk(X509_STORE_CTX
*ctx
, X509_CRL
**pcrl
,
757 X509_NAME
*nm
, STACK_OF(X509_CRL
) *crls
)
759 int i
, crl_score
, best_score
= -1;
760 X509_CRL
*crl
, *best_crl
= NULL
;
761 X509
*crl_issuer
, *best_crl_issuer
= NULL
;
762 for (i
= 0; i
< sk_X509_CRL_num(crls
); i
++)
767 crl
= sk_X509_CRL_value(crls
, i
);
768 if (nm
&& X509_NAME_cmp(nm
, X509_CRL_get_issuer(crl
)))
770 /* Issuer name does not match: could be indirect */
771 if (!(ctx
->param
->flags
& X509_V_FLAG_EXTENDED_CRL_SUPPORT
))
773 if (!(crl
->idp_flags
& IDP_INDIRECT
))
777 if (check_crl_time(ctx
, crl
, 0))
778 crl_score
|= CRL_SCORE_TIME
;
780 if (crl
->idp_flags
& IDP_PRESENT
)
782 if (crl
->idp_flags
& IDP_REJECT
)
784 if (idp_check_scope(ctx
->current_cert
, crl
, &imatch
))
785 crl_score
|= CRL_SCORE_SCOPE
;
788 crl_score
|= CRL_SCORE_SCOPE
;
790 /* If no issuer match at this point try next CRL */
794 if (crl_akid_check(ctx
, crl
, &crl_issuer
))
795 crl_score
|= CRL_SCORE_AKID
;
796 /* If CRL matches criteria and issuer is not different use it */
797 if (crl_score
== CRL_SCORE_ALL
&& !crl_issuer
)
800 CRYPTO_add(&crl
->references
, 1, CRYPTO_LOCK_X509_CRL
);
804 if (crl_score
> best_score
)
807 best_crl_issuer
= crl_issuer
;
808 best_score
= crl_score
;
814 ctx
->current_issuer
= best_crl_issuer
;
815 CRYPTO_add(&best_crl
->references
, 1, CRYPTO_LOCK_X509
);
821 static int crl_akid_check(X509_STORE_CTX
*ctx
, X509_CRL
*crl
, X509
**pissuer
)
824 X509_NAME
*cnm
= X509_CRL_get_issuer(crl
);
825 int cidx
= ctx
->error_depth
;
829 if (cidx
!= sk_X509_num(ctx
->chain
) - 1)
831 crl_issuer
= sk_X509_value(ctx
->chain
, cidx
);
832 if (X509_check_akid(crl_issuer
, crl
->akid
) == X509_V_OK
)
834 for (cidx
++; cidx
< sk_X509_num(ctx
->chain
); cidx
++)
836 crl_issuer
= sk_X509_value(ctx
->chain
, cidx
);
837 if (X509_NAME_cmp(X509_get_subject_name(crl_issuer
), cnm
))
839 if (X509_check_akid(crl_issuer
, crl
->akid
) == X509_V_OK
)
841 *pissuer
= crl_issuer
;
846 /* Anything else needs extended CRL support */
848 if (!(ctx
->param
->flags
& X509_V_FLAG_EXTENDED_CRL_SUPPORT
))
851 /* Otherwise the CRL issuer is not on the path. Look for it in the
852 * set of untrusted certificates.
854 for (i
= 0; i
< sk_X509_num(ctx
->untrusted
); i
++)
856 crl_issuer
= sk_X509_value(ctx
->untrusted
, i
);
857 if (X509_NAME_cmp(X509_get_subject_name(crl_issuer
),
858 X509_CRL_get_issuer(crl
)))
860 if (X509_check_akid(crl_issuer
, crl
->akid
) == X509_V_OK
)
862 if (check_crl_path(ctx
, crl_issuer
))
864 *pissuer
= crl_issuer
;
873 /* Check the path of a CRL issuer certificate. This creates a new
874 * X509_STORE_CTX and populates it with most of the parameters from the
875 * parent. This could be optimised somewhat since a lot of path checking
876 * will be duplicated by the parent, but this will rarely be used in
880 static int check_crl_path(X509_STORE_CTX
*ctx
, X509
*x
)
882 X509_STORE_CTX crl_ctx
;
886 if (!X509_STORE_CTX_init(&crl_ctx
, ctx
->ctx
, x
, ctx
->untrusted
))
889 crl_ctx
.crls
= ctx
->crls
;
890 /* Copy verify params across */
891 X509_STORE_CTX_set0_param(&crl_ctx
, ctx
->param
);
893 crl_ctx
.parent
= ctx
;
894 crl_ctx
.verify_cb
= ctx
->verify_cb
;
896 /* Verify CRL issuer */
897 ret
= X509_verify_cert(&crl_ctx
);
899 /* Maybe send path check result back to parent? */
903 /* Check chain is acceptable */
905 ret
= check_crl_chain(ctx
, ctx
->chain
, crl_ctx
.chain
);
908 X509_STORE_CTX_cleanup(&crl_ctx
);
912 /* RFC3280 says nothing about the relationship between CRL path
913 * and certificate path, which could lead to situations where a
914 * certificate could be revoked or validated by a CA not authorised
915 * to do so. RFC5280 is more strict and states that the two paths must
916 * end in the same trust anchor, though some discussions remain...
917 * until this is resolved we use the RFC5280 version
920 static int check_crl_chain(X509_STORE_CTX
*ctx
,
921 STACK_OF(X509
) *cert_path
,
922 STACK_OF(X509
) *crl_path
)
924 X509
*cert_ta
, *crl_ta
;
925 cert_ta
= sk_X509_value(cert_path
, sk_X509_num(cert_path
) - 1);
926 crl_ta
= sk_X509_value(crl_path
, sk_X509_num(crl_path
) - 1);
927 if (!X509_cmp(cert_ta
, crl_ta
))
932 /* Check for match between two dist point names: three separate cases.
933 * 1. Both are relative names and compare X509_NAME types.
934 * 2. One full, one relative. Compare X509_NAME to GENERAL_NAMES.
935 * 3. Both are full names and compare two GENERAL_NAMES.
936 * 4. One is NULL: automatic match.
940 static int idp_check_dp(DIST_POINT_NAME
*a
, DIST_POINT_NAME
*b
)
942 X509_NAME
*nm
= NULL
;
943 GENERAL_NAMES
*gens
= NULL
;
944 GENERAL_NAME
*gena
, *genb
;
952 /* Case 1: two X509_NAME */
957 if (!X509_NAME_cmp(a
->dpname
, b
->dpname
))
962 /* Case 2: set name and GENERAL_NAMES appropriately */
964 gens
= b
->name
.fullname
;
966 else if (b
->type
== 1)
970 /* Case 2: set name and GENERAL_NAMES appropriately */
971 gens
= a
->name
.fullname
;
975 /* Handle case 2 with one GENERAL_NAMES and one X509_NAME */
978 for (i
= 0; i
< sk_GENERAL_NAME_num(gens
); i
++)
980 gena
= sk_GENERAL_NAME_value(gens
, i
);
981 if (gena
->type
!= GEN_DIRNAME
)
983 if (!X509_NAME_cmp(nm
, gena
->d
.directoryName
))
989 /* Else case 3: two GENERAL_NAMES */
991 for (i
= 0; i
< sk_GENERAL_NAME_num(a
->name
.fullname
); i
++)
993 gena
= sk_GENERAL_NAME_value(a
->name
.fullname
, i
);
994 for (j
= 0; j
< sk_GENERAL_NAME_num(b
->name
.fullname
); j
++)
996 genb
= sk_GENERAL_NAME_value(b
->name
.fullname
, j
);
997 if (!GENERAL_NAME_cmp(gena
, genb
))
1006 static int idp_check_crlissuer(DIST_POINT
*dp
, X509_CRL
*crl
, int *pimatch
)
1009 X509_NAME
*nm
= X509_CRL_get_issuer(crl
);
1010 /* If no CRLissuer return is successful iff don't need a match */
1013 for (i
= 0; i
< sk_GENERAL_NAME_num(dp
->CRLissuer
); i
++)
1015 GENERAL_NAME
*gen
= sk_GENERAL_NAME_value(dp
->CRLissuer
, i
);
1016 if (gen
->type
!= GEN_DIRNAME
)
1018 if (!X509_NAME_cmp(gen
->d
.directoryName
, nm
))
1027 /* Check IDP name matches at least one CRLDP name */
1029 static int idp_check_scope(X509
*x
, X509_CRL
*crl
, int *pimatch
)
1032 if (crl
->idp_flags
& IDP_ONLYATTR
)
1034 if (x
->ex_flags
& EXFLAG_CA
)
1036 if (crl
->idp_flags
& IDP_ONLYUSER
)
1041 if (crl
->idp_flags
& IDP_ONLYCA
)
1044 if (!crl
->idp
->distpoint
&& *pimatch
)
1046 for (i
= 0; i
< sk_DIST_POINT_num(x
->crldp
); i
++)
1048 DIST_POINT
*dp
= sk_DIST_POINT_value(x
->crldp
, i
);
1049 /* We don't handle these at present */
1052 if (idp_check_dp(dp
->distpoint
, crl
->idp
->distpoint
))
1054 if (idp_check_crlissuer(dp
, crl
, pimatch
))
1061 /* Retrieve CRL corresponding to current certificate. Currently only
1062 * one CRL is retrieved. Multiple CRLs may be needed if we handle
1063 * CRLs partitioned on reason code later.
1066 static int get_crl(X509_STORE_CTX
*ctx
, X509_CRL
**pcrl
, X509
*x
)
1069 X509_CRL
*crl
= NULL
;
1070 STACK_OF(X509_CRL
) *skcrl
;
1072 nm
= X509_get_issuer_name(x
);
1073 ok
= get_crl_sk(ctx
, &crl
, nm
, ctx
->crls
);
1080 /* Lookup CRLs from store */
1082 skcrl
= ctx
->lookup_crls(ctx
, nm
);
1084 /* If no CRLs found and a near match from get_crl_sk use that */
1095 get_crl_sk(ctx
, &crl
, NULL
, skcrl
);
1097 sk_X509_CRL_pop_free(skcrl
, X509_CRL_free
);
1099 /* If we got any kind of CRL use it and return success */
1109 /* Check CRL validity */
1110 static int check_crl(X509_STORE_CTX
*ctx
, X509_CRL
*crl
)
1112 X509
*issuer
= NULL
;
1113 EVP_PKEY
*ikey
= NULL
;
1114 int ok
= 0, chnum
, cnum
;
1115 cnum
= ctx
->error_depth
;
1116 chnum
= sk_X509_num(ctx
->chain
) - 1;
1117 /* if we have an alternative CRL issuer cert use that */
1118 if (ctx
->current_issuer
)
1119 issuer
= ctx
->current_issuer
;
1120 /* Else find CRL issuer: if not last certificate then issuer
1121 * is next certificate in chain.
1123 else if (cnum
< chnum
)
1124 issuer
= sk_X509_value(ctx
->chain
, cnum
+ 1);
1127 issuer
= sk_X509_value(ctx
->chain
, chnum
);
1128 /* If not self signed, can't check signature */
1129 if(!ctx
->check_issued(ctx
, issuer
, issuer
))
1131 ctx
->error
= X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER
;
1132 ok
= ctx
->verify_cb(0, ctx
);
1139 /* Check for cRLSign bit if keyUsage present */
1140 if ((issuer
->ex_flags
& EXFLAG_KUSAGE
) &&
1141 !(issuer
->ex_kusage
& KU_CRL_SIGN
))
1143 ctx
->error
= X509_V_ERR_KEYUSAGE_NO_CRL_SIGN
;
1144 ok
= ctx
->verify_cb(0, ctx
);
1148 if (crl
->idp_flags
& IDP_PRESENT
)
1151 if (crl
->idp_flags
& IDP_INVALID
)
1153 ctx
->error
= X509_V_ERR_INVALID_EXTENSION
;
1154 ok
= ctx
->verify_cb(0, ctx
);
1157 if (crl
->idp_flags
& IDP_REASONS
)
1159 ctx
->error
= X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE
;
1160 ok
= ctx
->verify_cb(0, ctx
);
1163 if (!idp_check_scope(ctx
->current_cert
, crl
, &dmy
))
1165 ctx
->error
= X509_V_ERR_DIFFERENT_CRL_SCOPE
;
1166 ok
= ctx
->verify_cb(0, ctx
);
1171 /* Attempt to get issuer certificate public key */
1172 ikey
= X509_get_pubkey(issuer
);
1176 ctx
->error
=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY
;
1177 ok
= ctx
->verify_cb(0, ctx
);
1182 /* Verify CRL signature */
1183 if(X509_CRL_verify(crl
, ikey
) <= 0)
1185 ctx
->error
=X509_V_ERR_CRL_SIGNATURE_FAILURE
;
1186 ok
= ctx
->verify_cb(0, ctx
);
1192 ok
= check_crl_time(ctx
, crl
, 1);
1199 EVP_PKEY_free(ikey
);
1203 /* Check certificate against CRL */
1204 static int cert_crl(X509_STORE_CTX
*ctx
, X509_CRL
*crl
, X509
*x
)
1207 /* Look for serial number of certificate in CRL
1208 * If found assume revoked: want something cleverer than
1209 * this to handle entry extensions in V2 CRLs.
1211 if (X509_CRL_get0_by_cert(crl
, NULL
, x
) > 0)
1213 ctx
->error
= X509_V_ERR_CERT_REVOKED
;
1214 ok
= ctx
->verify_cb(0, ctx
);
1219 if (crl
->flags
& EXFLAG_CRITICAL
)
1221 if (ctx
->param
->flags
& X509_V_FLAG_IGNORE_CRITICAL
)
1223 ctx
->error
= X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION
;
1224 ok
= ctx
->verify_cb(0, ctx
);
1232 static int check_policy(X509_STORE_CTX
*ctx
)
1237 ret
= X509_policy_check(&ctx
->tree
, &ctx
->explicit_policy
, ctx
->chain
,
1238 ctx
->param
->policies
, ctx
->param
->flags
);
1241 X509err(X509_F_CHECK_POLICY
,ERR_R_MALLOC_FAILURE
);
1244 /* Invalid or inconsistent extensions */
1247 /* Locate certificates with bad extensions and notify
1252 for (i
= 1; i
< sk_X509_num(ctx
->chain
); i
++)
1254 x
= sk_X509_value(ctx
->chain
, i
);
1255 if (!(x
->ex_flags
& EXFLAG_INVALID_POLICY
))
1257 ctx
->current_cert
= x
;
1258 ctx
->error
= X509_V_ERR_INVALID_POLICY_EXTENSION
;
1259 if(!ctx
->verify_cb(0, ctx
))
1266 ctx
->current_cert
= NULL
;
1267 ctx
->error
= X509_V_ERR_NO_EXPLICIT_POLICY
;
1268 return ctx
->verify_cb(0, ctx
);
1271 if (ctx
->param
->flags
& X509_V_FLAG_NOTIFY_POLICY
)
1273 ctx
->current_cert
= NULL
;
1274 ctx
->error
= X509_V_OK
;
1275 if (!ctx
->verify_cb(2, ctx
))
1282 static int check_cert_time(X509_STORE_CTX
*ctx
, X509
*x
)
1287 if (ctx
->param
->flags
& X509_V_FLAG_USE_CHECK_TIME
)
1288 ptime
= &ctx
->param
->check_time
;
1292 i
=X509_cmp_time(X509_get_notBefore(x
), ptime
);
1295 ctx
->error
=X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD
;
1296 ctx
->current_cert
=x
;
1297 if (!ctx
->verify_cb(0, ctx
))
1303 ctx
->error
=X509_V_ERR_CERT_NOT_YET_VALID
;
1304 ctx
->current_cert
=x
;
1305 if (!ctx
->verify_cb(0, ctx
))
1309 i
=X509_cmp_time(X509_get_notAfter(x
), ptime
);
1312 ctx
->error
=X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD
;
1313 ctx
->current_cert
=x
;
1314 if (!ctx
->verify_cb(0, ctx
))
1320 ctx
->error
=X509_V_ERR_CERT_HAS_EXPIRED
;
1321 ctx
->current_cert
=x
;
1322 if (!ctx
->verify_cb(0, ctx
))
1329 static int internal_verify(X509_STORE_CTX
*ctx
)
1333 EVP_PKEY
*pkey
=NULL
;
1334 int (*cb
)(int xok
,X509_STORE_CTX
*xctx
);
1338 n
=sk_X509_num(ctx
->chain
);
1339 ctx
->error_depth
=n
-1;
1341 xi
=sk_X509_value(ctx
->chain
,n
);
1343 if (ctx
->check_issued(ctx
, xi
, xi
))
1349 ctx
->error
=X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE
;
1350 ctx
->current_cert
=xi
;
1358 xs
=sk_X509_value(ctx
->chain
,n
);
1362 /* ctx->error=0; not needed */
1368 if ((pkey
=X509_get_pubkey(xi
)) == NULL
)
1370 ctx
->error
=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY
;
1371 ctx
->current_cert
=xi
;
1375 else if (X509_verify(xs
,pkey
) <= 0)
1376 /* XXX For the final trusted self-signed cert,
1377 * this is a waste of time. That check should
1378 * optional so that e.g. 'openssl x509' can be
1379 * used to detect invalid self-signatures, but
1380 * we don't verify again and again in SSL
1381 * handshakes and the like once the cert has
1382 * been declared trusted. */
1384 ctx
->error
=X509_V_ERR_CERT_SIGNATURE_FAILURE
;
1385 ctx
->current_cert
=xs
;
1389 EVP_PKEY_free(pkey
);
1393 EVP_PKEY_free(pkey
);
1399 ok
= check_cert_time(ctx
, xs
);
1403 /* The last error (if any) is still in the error value */
1404 ctx
->current_issuer
=xi
;
1405 ctx
->current_cert
=xs
;
1413 xs
=sk_X509_value(ctx
->chain
,n
);
1421 int X509_cmp_current_time(const ASN1_TIME
*ctm
)
1423 return X509_cmp_time(ctm
, NULL
);
1426 int X509_cmp_time(const ASN1_TIME
*ctm
, time_t *cmp_time
)
1431 char buff1
[24],buff2
[24],*p
;
1436 str
=(char *)ctm
->data
;
1437 if (ctm
->type
== V_ASN1_UTCTIME
)
1439 if ((i
< 11) || (i
> 17)) return 0;
1446 if (i
< 13) return 0;
1452 if ((*str
== 'Z') || (*str
== '-') || (*str
== '+'))
1453 { *(p
++)='0'; *(p
++)='0'; }
1458 /* Skip any fractional seconds... */
1462 while ((*str
>= '0') && (*str
<= '9')) str
++;
1473 if ((*str
!= '+') && (*str
!= '-'))
1475 offset
=((str
[1]-'0')*10+(str
[2]-'0'))*60;
1476 offset
+=(str
[3]-'0')*10+(str
[4]-'0');
1481 atm
.length
=sizeof(buff2
);
1482 atm
.data
=(unsigned char *)buff2
;
1484 if (X509_time_adj(&atm
,-offset
*60, cmp_time
) == NULL
)
1487 if (ctm
->type
== V_ASN1_UTCTIME
)
1489 i
=(buff1
[0]-'0')*10+(buff1
[1]-'0');
1490 if (i
< 50) i
+=100; /* cf. RFC 2459 */
1491 j
=(buff2
[0]-'0')*10+(buff2
[1]-'0');
1494 if (i
< j
) return -1;
1495 if (i
> j
) return 1;
1497 i
=strcmp(buff1
,buff2
);
1498 if (i
== 0) /* wait a second then return younger :-) */
1504 ASN1_TIME
*X509_gmtime_adj(ASN1_TIME
*s
, long adj
)
1506 return X509_time_adj(s
, adj
, NULL
);
1509 ASN1_TIME
*X509_time_adj(ASN1_TIME
*s
, long adj
, time_t *in_tm
)
1514 if (in_tm
) t
= *in_tm
;
1518 if (s
) type
= s
->type
;
1519 if (type
== V_ASN1_UTCTIME
) return ASN1_UTCTIME_set(s
,t
);
1520 if (type
== V_ASN1_GENERALIZEDTIME
) return ASN1_GENERALIZEDTIME_set(s
, t
);
1521 return ASN1_TIME_set(s
, t
);
1524 int X509_get_pubkey_parameters(EVP_PKEY
*pkey
, STACK_OF(X509
) *chain
)
1526 EVP_PKEY
*ktmp
=NULL
,*ktmp2
;
1529 if ((pkey
!= NULL
) && !EVP_PKEY_missing_parameters(pkey
)) return 1;
1531 for (i
=0; i
<sk_X509_num(chain
); i
++)
1533 ktmp
=X509_get_pubkey(sk_X509_value(chain
,i
));
1536 X509err(X509_F_X509_GET_PUBKEY_PARAMETERS
,X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY
);
1539 if (!EVP_PKEY_missing_parameters(ktmp
))
1543 EVP_PKEY_free(ktmp
);
1549 X509err(X509_F_X509_GET_PUBKEY_PARAMETERS
,X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN
);
1553 /* first, populate the other certs */
1554 for (j
=i
-1; j
>= 0; j
--)
1556 ktmp2
=X509_get_pubkey(sk_X509_value(chain
,j
));
1557 EVP_PKEY_copy_parameters(ktmp2
,ktmp
);
1558 EVP_PKEY_free(ktmp2
);
1561 if (pkey
!= NULL
) EVP_PKEY_copy_parameters(pkey
,ktmp
);
1562 EVP_PKEY_free(ktmp
);
1566 int X509_STORE_CTX_get_ex_new_index(long argl
, void *argp
, CRYPTO_EX_new
*new_func
,
1567 CRYPTO_EX_dup
*dup_func
, CRYPTO_EX_free
*free_func
)
1569 /* This function is (usually) called only once, by
1570 * SSL_get_ex_data_X509_STORE_CTX_idx (ssl/ssl_cert.c). */
1571 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509_STORE_CTX
, argl
, argp
,
1572 new_func
, dup_func
, free_func
);
1575 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX
*ctx
, int idx
, void *data
)
1577 return CRYPTO_set_ex_data(&ctx
->ex_data
,idx
,data
);
1580 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX
*ctx
, int idx
)
1582 return CRYPTO_get_ex_data(&ctx
->ex_data
,idx
);
1585 int X509_STORE_CTX_get_error(X509_STORE_CTX
*ctx
)
1590 void X509_STORE_CTX_set_error(X509_STORE_CTX
*ctx
, int err
)
1595 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX
*ctx
)
1597 return ctx
->error_depth
;
1600 X509
*X509_STORE_CTX_get_current_cert(X509_STORE_CTX
*ctx
)
1602 return ctx
->current_cert
;
1605 STACK_OF(X509
) *X509_STORE_CTX_get_chain(X509_STORE_CTX
*ctx
)
1610 STACK_OF(X509
) *X509_STORE_CTX_get1_chain(X509_STORE_CTX
*ctx
)
1614 STACK_OF(X509
) *chain
;
1615 if (!ctx
->chain
|| !(chain
= sk_X509_dup(ctx
->chain
))) return NULL
;
1616 for (i
= 0; i
< sk_X509_num(chain
); i
++)
1618 x
= sk_X509_value(chain
, i
);
1619 CRYPTO_add(&x
->references
, 1, CRYPTO_LOCK_X509
);
1624 void X509_STORE_CTX_set_cert(X509_STORE_CTX
*ctx
, X509
*x
)
1629 void X509_STORE_CTX_set_chain(X509_STORE_CTX
*ctx
, STACK_OF(X509
) *sk
)
1634 void X509_STORE_CTX_set0_crls(X509_STORE_CTX
*ctx
, STACK_OF(X509_CRL
) *sk
)
1639 int X509_STORE_CTX_set_purpose(X509_STORE_CTX
*ctx
, int purpose
)
1641 return X509_STORE_CTX_purpose_inherit(ctx
, 0, purpose
, 0);
1644 int X509_STORE_CTX_set_trust(X509_STORE_CTX
*ctx
, int trust
)
1646 return X509_STORE_CTX_purpose_inherit(ctx
, 0, 0, trust
);
1649 /* This function is used to set the X509_STORE_CTX purpose and trust
1650 * values. This is intended to be used when another structure has its
1651 * own trust and purpose values which (if set) will be inherited by
1652 * the ctx. If they aren't set then we will usually have a default
1653 * purpose in mind which should then be used to set the trust value.
1654 * An example of this is SSL use: an SSL structure will have its own
1655 * purpose and trust settings which the application can set: if they
1656 * aren't set then we use the default of SSL client/server.
1659 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX
*ctx
, int def_purpose
,
1660 int purpose
, int trust
)
1663 /* If purpose not set use default */
1664 if (!purpose
) purpose
= def_purpose
;
1665 /* If we have a purpose then check it is valid */
1669 idx
= X509_PURPOSE_get_by_id(purpose
);
1672 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT
,
1673 X509_R_UNKNOWN_PURPOSE_ID
);
1676 ptmp
= X509_PURPOSE_get0(idx
);
1677 if (ptmp
->trust
== X509_TRUST_DEFAULT
)
1679 idx
= X509_PURPOSE_get_by_id(def_purpose
);
1682 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT
,
1683 X509_R_UNKNOWN_PURPOSE_ID
);
1686 ptmp
= X509_PURPOSE_get0(idx
);
1688 /* If trust not set then get from purpose default */
1689 if (!trust
) trust
= ptmp
->trust
;
1693 idx
= X509_TRUST_get_by_id(trust
);
1696 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT
,
1697 X509_R_UNKNOWN_TRUST_ID
);
1702 if (purpose
&& !ctx
->param
->purpose
) ctx
->param
->purpose
= purpose
;
1703 if (trust
&& !ctx
->param
->trust
) ctx
->param
->trust
= trust
;
1707 X509_STORE_CTX
*X509_STORE_CTX_new(void)
1709 X509_STORE_CTX
*ctx
;
1710 ctx
= (X509_STORE_CTX
*)OPENSSL_malloc(sizeof(X509_STORE_CTX
));
1713 X509err(X509_F_X509_STORE_CTX_NEW
,ERR_R_MALLOC_FAILURE
);
1716 memset(ctx
, 0, sizeof(X509_STORE_CTX
));
1720 void X509_STORE_CTX_free(X509_STORE_CTX
*ctx
)
1722 X509_STORE_CTX_cleanup(ctx
);
1726 int X509_STORE_CTX_init(X509_STORE_CTX
*ctx
, X509_STORE
*store
, X509
*x509
,
1727 STACK_OF(X509
) *chain
)
1731 ctx
->current_method
=0;
1733 ctx
->untrusted
=chain
;
1735 ctx
->last_untrusted
=0;
1736 ctx
->other_ctx
=NULL
;
1740 ctx
->explicit_policy
=0;
1742 ctx
->current_cert
=NULL
;
1743 ctx
->current_issuer
=NULL
;
1747 ctx
->param
= X509_VERIFY_PARAM_new();
1751 X509err(X509_F_X509_STORE_CTX_INIT
,ERR_R_MALLOC_FAILURE
);
1755 /* Inherit callbacks and flags from X509_STORE if not set
1761 ret
= X509_VERIFY_PARAM_inherit(ctx
->param
, store
->param
);
1763 ctx
->param
->flags
|= X509_VP_FLAG_DEFAULT
|X509_VP_FLAG_ONCE
;
1767 ctx
->verify_cb
= store
->verify_cb
;
1768 ctx
->cleanup
= store
->cleanup
;
1774 ret
= X509_VERIFY_PARAM_inherit(ctx
->param
,
1775 X509_VERIFY_PARAM_lookup("default"));
1779 X509err(X509_F_X509_STORE_CTX_INIT
,ERR_R_MALLOC_FAILURE
);
1783 if (store
&& store
->check_issued
)
1784 ctx
->check_issued
= store
->check_issued
;
1786 ctx
->check_issued
= check_issued
;
1788 if (store
&& store
->get_issuer
)
1789 ctx
->get_issuer
= store
->get_issuer
;
1791 ctx
->get_issuer
= X509_STORE_CTX_get1_issuer
;
1793 if (store
&& store
->verify_cb
)
1794 ctx
->verify_cb
= store
->verify_cb
;
1796 ctx
->verify_cb
= null_callback
;
1798 if (store
&& store
->verify
)
1799 ctx
->verify
= store
->verify
;
1801 ctx
->verify
= internal_verify
;
1803 if (store
&& store
->check_revocation
)
1804 ctx
->check_revocation
= store
->check_revocation
;
1806 ctx
->check_revocation
= check_revocation
;
1808 if (store
&& store
->get_crl
)
1809 ctx
->get_crl
= store
->get_crl
;
1811 ctx
->get_crl
= get_crl
;
1813 if (store
&& store
->check_crl
)
1814 ctx
->check_crl
= store
->check_crl
;
1816 ctx
->check_crl
= check_crl
;
1818 if (store
&& store
->cert_crl
)
1819 ctx
->cert_crl
= store
->cert_crl
;
1821 ctx
->cert_crl
= cert_crl
;
1823 if (store
&& store
->lookup_certs
)
1824 ctx
->lookup_certs
= store
->lookup_certs
;
1826 ctx
->lookup_certs
= X509_STORE_get1_certs
;
1828 if (store
&& store
->lookup_crls
)
1829 ctx
->lookup_crls
= store
->lookup_crls
;
1831 ctx
->lookup_crls
= X509_STORE_get1_crls
;
1833 ctx
->check_policy
= check_policy
;
1836 /* This memset() can't make any sense anyway, so it's removed. As
1837 * X509_STORE_CTX_cleanup does a proper "free" on the ex_data, we put a
1838 * corresponding "new" here and remove this bogus initialisation. */
1839 /* memset(&(ctx->ex_data),0,sizeof(CRYPTO_EX_DATA)); */
1840 if(!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX
, ctx
,
1844 X509err(X509_F_X509_STORE_CTX_INIT
,ERR_R_MALLOC_FAILURE
);
1850 /* Set alternative lookup method: just a STACK of trusted certificates.
1851 * This avoids X509_STORE nastiness where it isn't needed.
1854 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX
*ctx
, STACK_OF(X509
) *sk
)
1856 ctx
->other_ctx
= sk
;
1857 ctx
->get_issuer
= get_issuer_sk
;
1860 void X509_STORE_CTX_cleanup(X509_STORE_CTX
*ctx
)
1862 if (ctx
->cleanup
) ctx
->cleanup(ctx
);
1863 if (ctx
->param
!= NULL
)
1865 if (ctx
->parent
== NULL
)
1866 X509_VERIFY_PARAM_free(ctx
->param
);
1869 if (ctx
->tree
!= NULL
)
1871 X509_policy_tree_free(ctx
->tree
);
1874 if (ctx
->chain
!= NULL
)
1876 sk_X509_pop_free(ctx
->chain
,X509_free
);
1879 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX
, ctx
, &(ctx
->ex_data
));
1880 memset(&ctx
->ex_data
,0,sizeof(CRYPTO_EX_DATA
));
1883 void X509_STORE_CTX_set_depth(X509_STORE_CTX
*ctx
, int depth
)
1885 X509_VERIFY_PARAM_set_depth(ctx
->param
, depth
);
1888 void X509_STORE_CTX_set_flags(X509_STORE_CTX
*ctx
, unsigned long flags
)
1890 X509_VERIFY_PARAM_set_flags(ctx
->param
, flags
);
1893 void X509_STORE_CTX_set_time(X509_STORE_CTX
*ctx
, unsigned long flags
, time_t t
)
1895 X509_VERIFY_PARAM_set_time(ctx
->param
, t
);
1898 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX
*ctx
,
1899 int (*verify_cb
)(int, X509_STORE_CTX
*))
1901 ctx
->verify_cb
=verify_cb
;
1904 X509_POLICY_TREE
*X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX
*ctx
)
1909 int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX
*ctx
)
1911 return ctx
->explicit_policy
;
1914 int X509_STORE_CTX_set_default(X509_STORE_CTX
*ctx
, const char *name
)
1916 const X509_VERIFY_PARAM
*param
;
1917 param
= X509_VERIFY_PARAM_lookup(name
);
1920 return X509_VERIFY_PARAM_inherit(ctx
->param
, param
);
1923 X509_VERIFY_PARAM
*X509_STORE_CTX_get0_param(X509_STORE_CTX
*ctx
)
1928 void X509_STORE_CTX_set0_param(X509_STORE_CTX
*ctx
, X509_VERIFY_PARAM
*param
)
1931 X509_VERIFY_PARAM_free(ctx
->param
);
1935 IMPLEMENT_STACK_OF(X509
)
1936 IMPLEMENT_ASN1_SET_OF(X509
)
1938 IMPLEMENT_STACK_OF(X509_NAME
)
1940 IMPLEMENT_STACK_OF(X509_ATTRIBUTE
)
1941 IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE
)