]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/x509/x509_vfy.c
mark all block comments that need format preserving so that
[thirdparty/openssl.git] / crypto / x509 / x509_vfy.c
1 /* crypto/x509/x509_vfy.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
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.
8 *
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).
15 *
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.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
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)"
40 *
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
51 * SUCH DAMAGE.
52 *
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.]
57 */
58
59 #include <stdio.h>
60 #include <time.h>
61 #include <errno.h>
62
63 #include "cryptlib.h"
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>
72
73 /* CRL score values */
74
75 /* No unhandled critical extensions */
76
77 #define CRL_SCORE_NOCRITICAL 0x100
78
79 /* certificate is within CRL scope */
80
81 #define CRL_SCORE_SCOPE 0x080
82
83 /* CRL times valid */
84
85 #define CRL_SCORE_TIME 0x040
86
87 /* Issuer name matches certificate */
88
89 #define CRL_SCORE_ISSUER_NAME 0x020
90
91 /* If this score or above CRL is probably valid */
92
93 #define CRL_SCORE_VALID (CRL_SCORE_NOCRITICAL|CRL_SCORE_TIME|CRL_SCORE_SCOPE)
94
95 /* CRL issuer is certificate issuer */
96
97 #define CRL_SCORE_ISSUER_CERT 0x018
98
99 /* CRL issuer is on certificate path */
100
101 #define CRL_SCORE_SAME_PATH 0x008
102
103 /* CRL issuer matches CRL AKID */
104
105 #define CRL_SCORE_AKID 0x004
106
107 /* Have a delta CRL with valid times */
108
109 #define CRL_SCORE_TIME_DELTA 0x002
110
111 static int null_callback(int ok,X509_STORE_CTX *e);
112 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
113 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
114 static int check_chain_extensions(X509_STORE_CTX *ctx);
115 static int check_name_constraints(X509_STORE_CTX *ctx);
116 static int check_trust(X509_STORE_CTX *ctx);
117 static int check_revocation(X509_STORE_CTX *ctx);
118 static int check_cert(X509_STORE_CTX *ctx);
119 static int check_policy(X509_STORE_CTX *ctx);
120
121 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
122 unsigned int *preasons,
123 X509_CRL *crl, X509 *x);
124 static int get_crl_delta(X509_STORE_CTX *ctx,
125 X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x);
126 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pcrl_score,
127 X509_CRL *base, STACK_OF(X509_CRL) *crls);
128 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl,
129 X509 **pissuer, int *pcrl_score);
130 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
131 unsigned int *preasons);
132 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x);
133 static int check_crl_chain(X509_STORE_CTX *ctx,
134 STACK_OF(X509) *cert_path,
135 STACK_OF(X509) *crl_path);
136
137 static int internal_verify(X509_STORE_CTX *ctx);
138 const char X509_version[]="X.509" OPENSSL_VERSION_PTEXT;
139
140
141 static int null_callback(int ok, X509_STORE_CTX *e)
142 {
143 return ok;
144 }
145
146 #if 0
147 static int x509_subject_cmp(X509 **a, X509 **b)
148 {
149 return X509_subject_name_cmp(*a,*b);
150 }
151 #endif
152
153 int X509_verify_cert(X509_STORE_CTX *ctx)
154 {
155 X509 *x,*xtmp,*chain_ss=NULL;
156 int bad_chain = 0;
157 X509_VERIFY_PARAM *param = ctx->param;
158 int depth,i,ok=0;
159 int num;
160 int (*cb)(int xok,X509_STORE_CTX *xctx);
161 STACK_OF(X509) *sktmp=NULL;
162 if (ctx->cert == NULL)
163 {
164 X509err(X509_F_X509_VERIFY_CERT,X509_R_NO_CERT_SET_FOR_US_TO_VERIFY);
165 return -1;
166 }
167
168 cb=ctx->verify_cb;
169
170 /* first we make sure the chain we are going to build is
171 * present and that the first entry is in place */
172 if (ctx->chain == NULL)
173 {
174 if ( ((ctx->chain=sk_X509_new_null()) == NULL) ||
175 (!sk_X509_push(ctx->chain,ctx->cert)))
176 {
177 X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
178 goto end;
179 }
180 CRYPTO_add(&ctx->cert->references,1,CRYPTO_LOCK_X509);
181 ctx->last_untrusted=1;
182 }
183
184 /* We use a temporary STACK so we can chop and hack at it */
185 if (ctx->untrusted != NULL
186 && (sktmp=sk_X509_dup(ctx->untrusted)) == NULL)
187 {
188 X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
189 goto end;
190 }
191
192 num=sk_X509_num(ctx->chain);
193 x=sk_X509_value(ctx->chain,num-1);
194 depth=param->depth;
195
196
197 for (;;)
198 {
199 /* If we have enough, we break */
200 if (depth < num) break; /* FIXME: If this happens, we should take
201 * note of it and, if appropriate, use the
202 * X509_V_ERR_CERT_CHAIN_TOO_LONG error
203 * code later.
204 */
205
206 /* If we are self signed, we break */
207 if (ctx->check_issued(ctx, x,x)) break;
208
209 /* If we were passed a cert chain, use it first */
210 if (ctx->untrusted != NULL)
211 {
212 xtmp=find_issuer(ctx, sktmp,x);
213 if (xtmp != NULL)
214 {
215 if (!sk_X509_push(ctx->chain,xtmp))
216 {
217 X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
218 goto end;
219 }
220 CRYPTO_add(&xtmp->references,1,CRYPTO_LOCK_X509);
221 (void)sk_X509_delete_ptr(sktmp,xtmp);
222 ctx->last_untrusted++;
223 x=xtmp;
224 num++;
225 /* reparse the full chain for
226 * the next one */
227 continue;
228 }
229 }
230 break;
231 }
232
233 /* at this point, chain should contain a list of untrusted
234 * certificates. We now need to add at least one trusted one,
235 * if possible, otherwise we complain. */
236
237 /* Examine last certificate in chain and see if it
238 * is self signed.
239 */
240
241 i=sk_X509_num(ctx->chain);
242 x=sk_X509_value(ctx->chain,i-1);
243 if (ctx->check_issued(ctx, x, x))
244 {
245 /* we have a self signed certificate */
246 if (sk_X509_num(ctx->chain) == 1)
247 {
248 /* We have a single self signed certificate: see if
249 * we can find it in the store. We must have an exact
250 * match to avoid possible impersonation.
251 */
252 ok = ctx->get_issuer(&xtmp, ctx, x);
253 if ((ok <= 0) || X509_cmp(x, xtmp))
254 {
255 ctx->error=X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT;
256 ctx->current_cert=x;
257 ctx->error_depth=i-1;
258 if (ok == 1) X509_free(xtmp);
259 bad_chain = 1;
260 ok=cb(0,ctx);
261 if (!ok) goto end;
262 }
263 else
264 {
265 /* We have a match: replace certificate with store version
266 * so we get any trust settings.
267 */
268 X509_free(x);
269 x = xtmp;
270 (void)sk_X509_set(ctx->chain, i - 1, x);
271 ctx->last_untrusted=0;
272 }
273 }
274 else
275 {
276 /* extract and save self signed certificate for later use */
277 chain_ss=sk_X509_pop(ctx->chain);
278 ctx->last_untrusted--;
279 num--;
280 x=sk_X509_value(ctx->chain,num-1);
281 }
282 }
283
284 /* We now lookup certs from the certificate store */
285 for (;;)
286 {
287 /* If we have enough, we break */
288 if (depth < num) break;
289
290 /* If we are self signed, we break */
291 if (ctx->check_issued(ctx,x,x)) break;
292
293 ok = ctx->get_issuer(&xtmp, ctx, x);
294
295 if (ok < 0) return ok;
296 if (ok == 0) break;
297
298 x = xtmp;
299 if (!sk_X509_push(ctx->chain,x))
300 {
301 X509_free(xtmp);
302 X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
303 return 0;
304 }
305 num++;
306 }
307
308 /* we now have our chain, lets check it... */
309
310 /* Is last certificate looked up self signed? */
311 if (!ctx->check_issued(ctx,x,x))
312 {
313 if ((chain_ss == NULL) || !ctx->check_issued(ctx, x, chain_ss))
314 {
315 if (ctx->last_untrusted >= num)
316 ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY;
317 else
318 ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT;
319 ctx->current_cert=x;
320 }
321 else
322 {
323
324 sk_X509_push(ctx->chain,chain_ss);
325 num++;
326 ctx->last_untrusted=num;
327 ctx->current_cert=chain_ss;
328 ctx->error=X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN;
329 chain_ss=NULL;
330 }
331
332 ctx->error_depth=num-1;
333 bad_chain = 1;
334 ok=cb(0,ctx);
335 if (!ok) goto end;
336 }
337
338 /* We have the chain complete: now we need to check its purpose */
339 ok = check_chain_extensions(ctx);
340
341 if (!ok) goto end;
342
343 /* Check name constraints */
344
345 ok = check_name_constraints(ctx);
346
347 if (!ok) goto end;
348
349 /* The chain extensions are OK: check trust */
350
351 if (param->trust > 0) ok = check_trust(ctx);
352
353 if (!ok) goto end;
354
355 /* We may as well copy down any DSA parameters that are required */
356 X509_get_pubkey_parameters(NULL,ctx->chain);
357
358 /* Check revocation status: we do this after copying parameters
359 * because they may be needed for CRL signature verification.
360 */
361
362 ok = ctx->check_revocation(ctx);
363 if(!ok) goto end;
364
365 /* At this point, we have a chain and need to verify it */
366 if (ctx->verify != NULL)
367 ok=ctx->verify(ctx);
368 else
369 ok=internal_verify(ctx);
370 if(!ok) goto end;
371
372 #ifndef OPENSSL_NO_RFC3779
373 /* RFC 3779 path validation, now that CRL check has been done */
374 ok = v3_asid_validate_path(ctx);
375 if (!ok) goto end;
376 ok = v3_addr_validate_path(ctx);
377 if (!ok) goto end;
378 #endif
379
380 /* If we get this far evaluate policies */
381 if (!bad_chain && (ctx->param->flags & X509_V_FLAG_POLICY_CHECK))
382 ok = ctx->check_policy(ctx);
383 if(!ok) goto end;
384 if (0)
385 {
386 end:
387 X509_get_pubkey_parameters(NULL,ctx->chain);
388 }
389 if (sktmp != NULL) sk_X509_free(sktmp);
390 if (chain_ss != NULL) X509_free(chain_ss);
391 return ok;
392 }
393
394
395 /* Given a STACK_OF(X509) find the issuer of cert (if any)
396 */
397
398 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
399 {
400 int i;
401 X509 *issuer;
402 for (i = 0; i < sk_X509_num(sk); i++)
403 {
404 issuer = sk_X509_value(sk, i);
405 if (ctx->check_issued(ctx, x, issuer))
406 return issuer;
407 }
408 return NULL;
409 }
410
411 /* Given a possible certificate and issuer check them */
412
413 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
414 {
415 int ret;
416 ret = X509_check_issued(issuer, x);
417 if (ret == X509_V_OK)
418 return 1;
419 /* If we haven't asked for issuer errors don't set ctx */
420 if (!(ctx->param->flags & X509_V_FLAG_CB_ISSUER_CHECK))
421 return 0;
422
423 ctx->error = ret;
424 ctx->current_cert = x;
425 ctx->current_issuer = issuer;
426 return ctx->verify_cb(0, ctx);
427 return 0;
428 }
429
430 /* Alternative lookup method: look from a STACK stored in other_ctx */
431
432 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
433 {
434 *issuer = find_issuer(ctx, ctx->other_ctx, x);
435 if (*issuer)
436 {
437 CRYPTO_add(&(*issuer)->references,1,CRYPTO_LOCK_X509);
438 return 1;
439 }
440 else
441 return 0;
442 }
443
444
445 /* Check a certificate chains extensions for consistency
446 * with the supplied purpose
447 */
448
449 static int check_chain_extensions(X509_STORE_CTX *ctx)
450 {
451 #ifdef OPENSSL_NO_CHAIN_VERIFY
452 return 1;
453 #else
454 int i, ok=0, must_be_ca, plen = 0;
455 X509 *x;
456 int (*cb)(int xok,X509_STORE_CTX *xctx);
457 int proxy_path_length = 0;
458 int purpose;
459 int allow_proxy_certs;
460 cb=ctx->verify_cb;
461
462 /* must_be_ca can have 1 of 3 values:
463 -1: we accept both CA and non-CA certificates, to allow direct
464 use of self-signed certificates (which are marked as CA).
465 0: we only accept non-CA certificates. This is currently not
466 used, but the possibility is present for future extensions.
467 1: we only accept CA certificates. This is currently used for
468 all certificates in the chain except the leaf certificate.
469 */
470 must_be_ca = -1;
471
472 /* CRL path validation */
473 if (ctx->parent)
474 {
475 allow_proxy_certs = 0;
476 purpose = X509_PURPOSE_CRL_SIGN;
477 }
478 else
479 {
480 allow_proxy_certs =
481 !!(ctx->param->flags & X509_V_FLAG_ALLOW_PROXY_CERTS);
482 /* A hack to keep people who don't want to modify their
483 software happy */
484 if (getenv("OPENSSL_ALLOW_PROXY_CERTS"))
485 allow_proxy_certs = 1;
486 purpose = ctx->param->purpose;
487 }
488
489 /* Check all untrusted certificates */
490 for (i = 0; i < ctx->last_untrusted; i++)
491 {
492 int ret;
493 x = sk_X509_value(ctx->chain, i);
494 if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
495 && (x->ex_flags & EXFLAG_CRITICAL))
496 {
497 ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION;
498 ctx->error_depth = i;
499 ctx->current_cert = x;
500 ok=cb(0,ctx);
501 if (!ok) goto end;
502 }
503 if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY))
504 {
505 ctx->error = X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED;
506 ctx->error_depth = i;
507 ctx->current_cert = x;
508 ok=cb(0,ctx);
509 if (!ok) goto end;
510 }
511 ret = X509_check_ca(x);
512 switch(must_be_ca)
513 {
514 case -1:
515 if ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
516 && (ret != 1) && (ret != 0))
517 {
518 ret = 0;
519 ctx->error = X509_V_ERR_INVALID_CA;
520 }
521 else
522 ret = 1;
523 break;
524 case 0:
525 if (ret != 0)
526 {
527 ret = 0;
528 ctx->error = X509_V_ERR_INVALID_NON_CA;
529 }
530 else
531 ret = 1;
532 break;
533 default:
534 if ((ret == 0)
535 || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
536 && (ret != 1)))
537 {
538 ret = 0;
539 ctx->error = X509_V_ERR_INVALID_CA;
540 }
541 else
542 ret = 1;
543 break;
544 }
545 if (ret == 0)
546 {
547 ctx->error_depth = i;
548 ctx->current_cert = x;
549 ok=cb(0,ctx);
550 if (!ok) goto end;
551 }
552 if (ctx->param->purpose > 0)
553 {
554 ret = X509_check_purpose(x, purpose, must_be_ca > 0);
555 if ((ret == 0)
556 || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
557 && (ret != 1)))
558 {
559 ctx->error = X509_V_ERR_INVALID_PURPOSE;
560 ctx->error_depth = i;
561 ctx->current_cert = x;
562 ok=cb(0,ctx);
563 if (!ok) goto end;
564 }
565 }
566 /* Check pathlen if not self issued */
567 if ((i > 1) && !(x->ex_flags & EXFLAG_SI)
568 && (x->ex_pathlen != -1)
569 && (plen > (x->ex_pathlen + proxy_path_length + 1)))
570 {
571 ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED;
572 ctx->error_depth = i;
573 ctx->current_cert = x;
574 ok=cb(0,ctx);
575 if (!ok) goto end;
576 }
577 /* Increment path length if not self issued */
578 if (!(x->ex_flags & EXFLAG_SI))
579 plen++;
580 /* If this certificate is a proxy certificate, the next
581 certificate must be another proxy certificate or a EE
582 certificate. If not, the next certificate must be a
583 CA certificate. */
584 if (x->ex_flags & EXFLAG_PROXY)
585 {
586 if (x->ex_pcpathlen != -1 && i > x->ex_pcpathlen)
587 {
588 ctx->error =
589 X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED;
590 ctx->error_depth = i;
591 ctx->current_cert = x;
592 ok=cb(0,ctx);
593 if (!ok) goto end;
594 }
595 proxy_path_length++;
596 must_be_ca = 0;
597 }
598 else
599 must_be_ca = 1;
600 }
601 ok = 1;
602 end:
603 return ok;
604 #endif
605 }
606
607 static int check_name_constraints(X509_STORE_CTX *ctx)
608 {
609 X509 *x;
610 int i, j, rv;
611 /* Check name constraints for all certificates */
612 for (i = sk_X509_num(ctx->chain) - 1; i >= 0; i--)
613 {
614 x = sk_X509_value(ctx->chain, i);
615 /* Ignore self issued certs unless last in chain */
616 if (i && (x->ex_flags & EXFLAG_SI))
617 continue;
618 /* Check against constraints for all certificates higher in
619 * chain including trust anchor. Trust anchor not strictly
620 * speaking needed but if it includes constraints it is to be
621 * assumed it expects them to be obeyed.
622 */
623 for (j = sk_X509_num(ctx->chain) - 1; j > i; j--)
624 {
625 NAME_CONSTRAINTS *nc = sk_X509_value(ctx->chain, j)->nc;
626 if (nc)
627 {
628 rv = NAME_CONSTRAINTS_check(x, nc);
629 if (rv != X509_V_OK)
630 {
631 ctx->error = rv;
632 ctx->error_depth = i;
633 ctx->current_cert = x;
634 if (!ctx->verify_cb(0,ctx))
635 return 0;
636 }
637 }
638 }
639 }
640 return 1;
641 }
642
643 static int check_trust(X509_STORE_CTX *ctx)
644 {
645 #ifdef OPENSSL_NO_CHAIN_VERIFY
646 return 1;
647 #else
648 int i, ok;
649 X509 *x;
650 int (*cb)(int xok,X509_STORE_CTX *xctx);
651 cb=ctx->verify_cb;
652 /* For now just check the last certificate in the chain */
653 i = sk_X509_num(ctx->chain) - 1;
654 x = sk_X509_value(ctx->chain, i);
655 ok = X509_check_trust(x, ctx->param->trust, 0);
656 if (ok == X509_TRUST_TRUSTED)
657 return 1;
658 ctx->error_depth = i;
659 ctx->current_cert = x;
660 if (ok == X509_TRUST_REJECTED)
661 ctx->error = X509_V_ERR_CERT_REJECTED;
662 else
663 ctx->error = X509_V_ERR_CERT_UNTRUSTED;
664 ok = cb(0, ctx);
665 return ok;
666 #endif
667 }
668
669 static int check_revocation(X509_STORE_CTX *ctx)
670 {
671 int i, last, ok;
672 if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
673 return 1;
674 if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
675 last = sk_X509_num(ctx->chain) - 1;
676 else
677 {
678 /* If checking CRL paths this isn't the EE certificate */
679 if (ctx->parent)
680 return 1;
681 last = 0;
682 }
683 for(i = 0; i <= last; i++)
684 {
685 ctx->error_depth = i;
686 ok = check_cert(ctx);
687 if (!ok) return ok;
688 }
689 return 1;
690 }
691
692 static int check_cert(X509_STORE_CTX *ctx)
693 {
694 X509_CRL *crl = NULL, *dcrl = NULL;
695 X509 *x;
696 int ok, cnum;
697 unsigned int last_reasons;
698 cnum = ctx->error_depth;
699 x = sk_X509_value(ctx->chain, cnum);
700 ctx->current_cert = x;
701 ctx->current_issuer = NULL;
702 ctx->current_crl_score = 0;
703 ctx->current_reasons = 0;
704 while (ctx->current_reasons != CRLDP_ALL_REASONS)
705 {
706 last_reasons = ctx->current_reasons;
707 /* Try to retrieve relevant CRL */
708 if (ctx->get_crl)
709 ok = ctx->get_crl(ctx, &crl, x);
710 else
711 ok = get_crl_delta(ctx, &crl, &dcrl, x);
712 /* If error looking up CRL, nothing we can do except
713 * notify callback
714 */
715 if(!ok)
716 {
717 ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
718 ok = ctx->verify_cb(0, ctx);
719 goto err;
720 }
721 ctx->current_crl = crl;
722 ok = ctx->check_crl(ctx, crl);
723 if (!ok)
724 goto err;
725
726 if (dcrl)
727 {
728 ok = ctx->check_crl(ctx, dcrl);
729 if (!ok)
730 goto err;
731 ok = ctx->cert_crl(ctx, dcrl, x);
732 if (!ok)
733 goto err;
734 }
735 else
736 ok = 1;
737
738 /* Don't look in full CRL if delta reason is removefromCRL */
739 if (ok != 2)
740 {
741 ok = ctx->cert_crl(ctx, crl, x);
742 if (!ok)
743 goto err;
744 }
745
746 X509_CRL_free(crl);
747 X509_CRL_free(dcrl);
748 crl = NULL;
749 dcrl = NULL;
750 /* If reasons not updated we wont get anywhere by
751 * another iteration, so exit loop.
752 */
753 if (last_reasons == ctx->current_reasons)
754 {
755 ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
756 ok = ctx->verify_cb(0, ctx);
757 goto err;
758 }
759 }
760 err:
761 X509_CRL_free(crl);
762 X509_CRL_free(dcrl);
763
764 ctx->current_crl = NULL;
765 return ok;
766
767 }
768
769 /* Check CRL times against values in X509_STORE_CTX */
770
771 static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
772 {
773 time_t *ptime;
774 int i;
775 if (notify)
776 ctx->current_crl = crl;
777 if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
778 ptime = &ctx->param->check_time;
779 else
780 ptime = NULL;
781
782 i=X509_cmp_time(X509_CRL_get_lastUpdate(crl), ptime);
783 if (i == 0)
784 {
785 if (!notify)
786 return 0;
787 ctx->error=X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD;
788 if (!ctx->verify_cb(0, ctx))
789 return 0;
790 }
791
792 if (i > 0)
793 {
794 if (!notify)
795 return 0;
796 ctx->error=X509_V_ERR_CRL_NOT_YET_VALID;
797 if (!ctx->verify_cb(0, ctx))
798 return 0;
799 }
800
801 if(X509_CRL_get_nextUpdate(crl))
802 {
803 i=X509_cmp_time(X509_CRL_get_nextUpdate(crl), ptime);
804
805 if (i == 0)
806 {
807 if (!notify)
808 return 0;
809 ctx->error=X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD;
810 if (!ctx->verify_cb(0, ctx))
811 return 0;
812 }
813 /* Ignore expiry of base CRL is delta is valid */
814 if ((i < 0) && !(ctx->current_crl_score & CRL_SCORE_TIME_DELTA))
815 {
816 if (!notify)
817 return 0;
818 ctx->error=X509_V_ERR_CRL_HAS_EXPIRED;
819 if (!ctx->verify_cb(0, ctx))
820 return 0;
821 }
822 }
823
824 if (notify)
825 ctx->current_crl = NULL;
826
827 return 1;
828 }
829
830 static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl,
831 X509 **pissuer, int *pscore, unsigned int *preasons,
832 STACK_OF(X509_CRL) *crls)
833 {
834 int i, crl_score, best_score = *pscore;
835 unsigned int reasons, best_reasons = 0;
836 X509 *x = ctx->current_cert;
837 X509_CRL *crl, *best_crl = NULL;
838 X509 *crl_issuer = NULL, *best_crl_issuer = NULL;
839
840 for (i = 0; i < sk_X509_CRL_num(crls); i++)
841 {
842 crl = sk_X509_CRL_value(crls, i);
843 reasons = *preasons;
844 crl_score = get_crl_score(ctx, &crl_issuer, &reasons, crl, x);
845
846 if (crl_score > best_score)
847 {
848 best_crl = crl;
849 best_crl_issuer = crl_issuer;
850 best_score = crl_score;
851 best_reasons = reasons;
852 }
853 }
854
855 if (best_crl)
856 {
857 if (*pcrl)
858 X509_CRL_free(*pcrl);
859 *pcrl = best_crl;
860 *pissuer = best_crl_issuer;
861 *pscore = best_score;
862 *preasons = best_reasons;
863 CRYPTO_add(&best_crl->references, 1, CRYPTO_LOCK_X509_CRL);
864 if (*pdcrl)
865 {
866 X509_CRL_free(*pdcrl);
867 *pdcrl = NULL;
868 }
869 get_delta_sk(ctx, pdcrl, pscore, best_crl, crls);
870 }
871
872 if (best_score >= CRL_SCORE_VALID)
873 return 1;
874
875 return 0;
876 }
877
878 /* Compare two CRL extensions for delta checking purposes. They should be
879 * both present or both absent. If both present all fields must be identical.
880 */
881
882 static int crl_extension_match(X509_CRL *a, X509_CRL *b, int nid)
883 {
884 ASN1_OCTET_STRING *exta, *extb;
885 int i;
886 i = X509_CRL_get_ext_by_NID(a, nid, -1);
887 if (i >= 0)
888 {
889 /* Can't have multiple occurrences */
890 if (X509_CRL_get_ext_by_NID(a, nid, i) != -1)
891 return 0;
892 exta = X509_EXTENSION_get_data(X509_CRL_get_ext(a, i));
893 }
894 else
895 exta = NULL;
896
897 i = X509_CRL_get_ext_by_NID(b, nid, -1);
898
899 if (i >= 0)
900 {
901
902 if (X509_CRL_get_ext_by_NID(b, nid, i) != -1)
903 return 0;
904 extb = X509_EXTENSION_get_data(X509_CRL_get_ext(b, i));
905 }
906 else
907 extb = NULL;
908
909 if (!exta && !extb)
910 return 1;
911
912 if (!exta || !extb)
913 return 0;
914
915
916 if (ASN1_OCTET_STRING_cmp(exta, extb))
917 return 0;
918
919 return 1;
920 }
921
922 /* See if a base and delta are compatible */
923
924 static int check_delta_base(X509_CRL *delta, X509_CRL *base)
925 {
926 /* Delta CRL must be a delta */
927 if (!delta->base_crl_number)
928 return 0;
929 /* Base must have a CRL number */
930 if (!base->crl_number)
931 return 0;
932 /* Issuer names must match */
933 if (X509_NAME_cmp(X509_CRL_get_issuer(base),
934 X509_CRL_get_issuer(delta)))
935 return 0;
936 /* AKID and IDP must match */
937 if (!crl_extension_match(delta, base, NID_authority_key_identifier))
938 return 0;
939 if (!crl_extension_match(delta, base, NID_issuing_distribution_point))
940 return 0;
941 /* Delta CRL base number must not exceed Full CRL number. */
942 if (ASN1_INTEGER_cmp(delta->base_crl_number, base->crl_number) > 0)
943 return 0;
944 /* Delta CRL number must exceed full CRL number */
945 if (ASN1_INTEGER_cmp(delta->crl_number, base->crl_number) > 0)
946 return 1;
947 return 0;
948 }
949
950 /* For a given base CRL find a delta... maybe extend to delta scoring
951 * or retrieve a chain of deltas...
952 */
953
954 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore,
955 X509_CRL *base, STACK_OF(X509_CRL) *crls)
956 {
957 X509_CRL *delta;
958 int i;
959 if (!(ctx->param->flags & X509_V_FLAG_USE_DELTAS))
960 return;
961 if (!((ctx->current_cert->ex_flags | base->flags) & EXFLAG_FRESHEST))
962 return;
963 for (i = 0; i < sk_X509_CRL_num(crls); i++)
964 {
965 delta = sk_X509_CRL_value(crls, i);
966 if (check_delta_base(delta, base))
967 {
968 if (check_crl_time(ctx, delta, 0))
969 *pscore |= CRL_SCORE_TIME_DELTA;
970 CRYPTO_add(&delta->references, 1, CRYPTO_LOCK_X509_CRL);
971 *dcrl = delta;
972 return;
973 }
974 }
975 *dcrl = NULL;
976 }
977
978 /* For a given CRL return how suitable it is for the supplied certificate 'x'.
979 * The return value is a mask of several criteria.
980 * If the issuer is not the certificate issuer this is returned in *pissuer.
981 * The reasons mask is also used to determine if the CRL is suitable: if
982 * no new reasons the CRL is rejected, otherwise reasons is updated.
983 */
984
985 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
986 unsigned int *preasons,
987 X509_CRL *crl, X509 *x)
988 {
989
990 int crl_score = 0;
991 unsigned int tmp_reasons = *preasons, crl_reasons;
992
993 /* First see if we can reject CRL straight away */
994
995 /* Invalid IDP cannot be processed */
996 if (crl->idp_flags & IDP_INVALID)
997 return 0;
998 /* Reason codes or indirect CRLs need extended CRL support */
999 if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT))
1000 {
1001 if (crl->idp_flags & (IDP_INDIRECT | IDP_REASONS))
1002 return 0;
1003 }
1004 else if (crl->idp_flags & IDP_REASONS)
1005 {
1006 /* If no new reasons reject */
1007 if (!(crl->idp_reasons & ~tmp_reasons))
1008 return 0;
1009 }
1010 /* Don't process deltas at this stage */
1011 else if (crl->base_crl_number)
1012 return 0;
1013 /* If issuer name doesn't match certificate need indirect CRL */
1014 if (X509_NAME_cmp(X509_get_issuer_name(x), X509_CRL_get_issuer(crl)))
1015 {
1016 if (!(crl->idp_flags & IDP_INDIRECT))
1017 return 0;
1018 }
1019 else
1020 crl_score |= CRL_SCORE_ISSUER_NAME;
1021
1022 if (!(crl->flags & EXFLAG_CRITICAL))
1023 crl_score |= CRL_SCORE_NOCRITICAL;
1024
1025 /* Check expiry */
1026 if (check_crl_time(ctx, crl, 0))
1027 crl_score |= CRL_SCORE_TIME;
1028
1029 /* Check authority key ID and locate certificate issuer */
1030 crl_akid_check(ctx, crl, pissuer, &crl_score);
1031
1032 /* If we can't locate certificate issuer at this point forget it */
1033
1034 if (!(crl_score & CRL_SCORE_AKID))
1035 return 0;
1036
1037 /* Check cert for matching CRL distribution points */
1038
1039 if (crl_crldp_check(x, crl, crl_score, &crl_reasons))
1040 {
1041 /* If no new reasons reject */
1042 if (!(crl_reasons & ~tmp_reasons))
1043 return 0;
1044 tmp_reasons |= crl_reasons;
1045 crl_score |= CRL_SCORE_SCOPE;
1046 }
1047
1048 *preasons = tmp_reasons;
1049
1050 return crl_score;
1051
1052 }
1053
1054 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl,
1055 X509 **pissuer, int *pcrl_score)
1056 {
1057 X509 *crl_issuer = NULL;
1058 X509_NAME *cnm = X509_CRL_get_issuer(crl);
1059 int cidx = ctx->error_depth;
1060 int i;
1061
1062 if (cidx != sk_X509_num(ctx->chain) - 1)
1063 cidx++;
1064
1065 crl_issuer = sk_X509_value(ctx->chain, cidx);
1066
1067 if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK)
1068 {
1069 if (*pcrl_score & CRL_SCORE_ISSUER_NAME)
1070 {
1071 *pcrl_score |= CRL_SCORE_AKID|CRL_SCORE_ISSUER_CERT;
1072 *pissuer = crl_issuer;
1073 return;
1074 }
1075 }
1076
1077 for (cidx++; cidx < sk_X509_num(ctx->chain); cidx++)
1078 {
1079 crl_issuer = sk_X509_value(ctx->chain, cidx);
1080 if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1081 continue;
1082 if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK)
1083 {
1084 *pcrl_score |= CRL_SCORE_AKID|CRL_SCORE_SAME_PATH;
1085 *pissuer = crl_issuer;
1086 return;
1087 }
1088 }
1089
1090 /* Anything else needs extended CRL support */
1091
1092 if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT))
1093 return;
1094
1095 /* Otherwise the CRL issuer is not on the path. Look for it in the
1096 * set of untrusted certificates.
1097 */
1098 for (i = 0; i < sk_X509_num(ctx->untrusted); i++)
1099 {
1100 crl_issuer = sk_X509_value(ctx->untrusted, i);
1101 if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1102 continue;
1103 if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK)
1104 {
1105 *pissuer = crl_issuer;
1106 *pcrl_score |= CRL_SCORE_AKID;
1107 return;
1108 }
1109 }
1110 }
1111
1112 /* Check the path of a CRL issuer certificate. This creates a new
1113 * X509_STORE_CTX and populates it with most of the parameters from the
1114 * parent. This could be optimised somewhat since a lot of path checking
1115 * will be duplicated by the parent, but this will rarely be used in
1116 * practice.
1117 */
1118
1119 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x)
1120 {
1121 X509_STORE_CTX crl_ctx;
1122 int ret;
1123 /* Don't allow recursive CRL path validation */
1124 if (ctx->parent)
1125 return 0;
1126 if (!X509_STORE_CTX_init(&crl_ctx, ctx->ctx, x, ctx->untrusted))
1127 return -1;
1128
1129 crl_ctx.crls = ctx->crls;
1130 /* Copy verify params across */
1131 X509_STORE_CTX_set0_param(&crl_ctx, ctx->param);
1132
1133 crl_ctx.parent = ctx;
1134 crl_ctx.verify_cb = ctx->verify_cb;
1135
1136 /* Verify CRL issuer */
1137 ret = X509_verify_cert(&crl_ctx);
1138
1139 if (ret <= 0)
1140 goto err;
1141
1142 /* Check chain is acceptable */
1143
1144 ret = check_crl_chain(ctx, ctx->chain, crl_ctx.chain);
1145 err:
1146 X509_STORE_CTX_cleanup(&crl_ctx);
1147 return ret;
1148 }
1149
1150 /* RFC3280 says nothing about the relationship between CRL path
1151 * and certificate path, which could lead to situations where a
1152 * certificate could be revoked or validated by a CA not authorised
1153 * to do so. RFC5280 is more strict and states that the two paths must
1154 * end in the same trust anchor, though some discussions remain...
1155 * until this is resolved we use the RFC5280 version
1156 */
1157
1158 static int check_crl_chain(X509_STORE_CTX *ctx,
1159 STACK_OF(X509) *cert_path,
1160 STACK_OF(X509) *crl_path)
1161 {
1162 X509 *cert_ta, *crl_ta;
1163 cert_ta = sk_X509_value(cert_path, sk_X509_num(cert_path) - 1);
1164 crl_ta = sk_X509_value(crl_path, sk_X509_num(crl_path) - 1);
1165 if (!X509_cmp(cert_ta, crl_ta))
1166 return 1;
1167 return 0;
1168 }
1169
1170 /*-
1171 * Check for match between two dist point names: three separate cases.
1172 * 1. Both are relative names and compare X509_NAME types.
1173 * 2. One full, one relative. Compare X509_NAME to GENERAL_NAMES.
1174 * 3. Both are full names and compare two GENERAL_NAMES.
1175 * 4. One is NULL: automatic match.
1176 */
1177
1178
1179 static int idp_check_dp(DIST_POINT_NAME *a, DIST_POINT_NAME *b)
1180 {
1181 X509_NAME *nm = NULL;
1182 GENERAL_NAMES *gens = NULL;
1183 GENERAL_NAME *gena, *genb;
1184 int i, j;
1185 if (!a || !b)
1186 return 1;
1187 if (a->type == 1)
1188 {
1189 if (!a->dpname)
1190 return 0;
1191 /* Case 1: two X509_NAME */
1192 if (b->type == 1)
1193 {
1194 if (!b->dpname)
1195 return 0;
1196 if (!X509_NAME_cmp(a->dpname, b->dpname))
1197 return 1;
1198 else
1199 return 0;
1200 }
1201 /* Case 2: set name and GENERAL_NAMES appropriately */
1202 nm = a->dpname;
1203 gens = b->name.fullname;
1204 }
1205 else if (b->type == 1)
1206 {
1207 if (!b->dpname)
1208 return 0;
1209 /* Case 2: set name and GENERAL_NAMES appropriately */
1210 gens = a->name.fullname;
1211 nm = b->dpname;
1212 }
1213
1214 /* Handle case 2 with one GENERAL_NAMES and one X509_NAME */
1215 if (nm)
1216 {
1217 for (i = 0; i < sk_GENERAL_NAME_num(gens); i++)
1218 {
1219 gena = sk_GENERAL_NAME_value(gens, i);
1220 if (gena->type != GEN_DIRNAME)
1221 continue;
1222 if (!X509_NAME_cmp(nm, gena->d.directoryName))
1223 return 1;
1224 }
1225 return 0;
1226 }
1227
1228 /* Else case 3: two GENERAL_NAMES */
1229
1230 for (i = 0; i < sk_GENERAL_NAME_num(a->name.fullname); i++)
1231 {
1232 gena = sk_GENERAL_NAME_value(a->name.fullname, i);
1233 for (j = 0; j < sk_GENERAL_NAME_num(b->name.fullname); j++)
1234 {
1235 genb = sk_GENERAL_NAME_value(b->name.fullname, j);
1236 if (!GENERAL_NAME_cmp(gena, genb))
1237 return 1;
1238 }
1239 }
1240
1241 return 0;
1242
1243 }
1244
1245 static int crldp_check_crlissuer(DIST_POINT *dp, X509_CRL *crl, int crl_score)
1246 {
1247 int i;
1248 X509_NAME *nm = X509_CRL_get_issuer(crl);
1249 /* If no CRLissuer return is successful iff don't need a match */
1250 if (!dp->CRLissuer)
1251 return !!(crl_score & CRL_SCORE_ISSUER_NAME);
1252 for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++)
1253 {
1254 GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
1255 if (gen->type != GEN_DIRNAME)
1256 continue;
1257 if (!X509_NAME_cmp(gen->d.directoryName, nm))
1258 return 1;
1259 }
1260 return 0;
1261 }
1262
1263 /* Check CRLDP and IDP */
1264
1265 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
1266 unsigned int *preasons)
1267 {
1268 int i;
1269 if (crl->idp_flags & IDP_ONLYATTR)
1270 return 0;
1271 if (x->ex_flags & EXFLAG_CA)
1272 {
1273 if (crl->idp_flags & IDP_ONLYUSER)
1274 return 0;
1275 }
1276 else
1277 {
1278 if (crl->idp_flags & IDP_ONLYCA)
1279 return 0;
1280 }
1281 *preasons = crl->idp_reasons;
1282 for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++)
1283 {
1284 DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
1285 if (crldp_check_crlissuer(dp, crl, crl_score))
1286 {
1287 if (!crl->idp ||
1288 idp_check_dp(dp->distpoint, crl->idp->distpoint))
1289 {
1290 *preasons &= dp->dp_reasons;
1291 return 1;
1292 }
1293 }
1294 }
1295 if ((!crl->idp || !crl->idp->distpoint) && (crl_score & CRL_SCORE_ISSUER_NAME))
1296 return 1;
1297 return 0;
1298 }
1299
1300 /* Retrieve CRL corresponding to current certificate.
1301 * If deltas enabled try to find a delta CRL too
1302 */
1303
1304 static int get_crl_delta(X509_STORE_CTX *ctx,
1305 X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x)
1306 {
1307 int ok;
1308 X509 *issuer = NULL;
1309 int crl_score = 0;
1310 unsigned int reasons;
1311 X509_CRL *crl = NULL, *dcrl = NULL;
1312 STACK_OF(X509_CRL) *skcrl;
1313 X509_NAME *nm = X509_get_issuer_name(x);
1314 reasons = ctx->current_reasons;
1315 ok = get_crl_sk(ctx, &crl, &dcrl,
1316 &issuer, &crl_score, &reasons, ctx->crls);
1317
1318 if (ok)
1319 goto done;
1320
1321 /* Lookup CRLs from store */
1322
1323 skcrl = ctx->lookup_crls(ctx, nm);
1324
1325 /* If no CRLs found and a near match from get_crl_sk use that */
1326 if (!skcrl && crl)
1327 goto done;
1328
1329 get_crl_sk(ctx, &crl, &dcrl, &issuer, &crl_score, &reasons, skcrl);
1330
1331 sk_X509_CRL_pop_free(skcrl, X509_CRL_free);
1332
1333 done:
1334
1335 /* If we got any kind of CRL use it and return success */
1336 if (crl)
1337 {
1338 ctx->current_issuer = issuer;
1339 ctx->current_crl_score = crl_score;
1340 ctx->current_reasons = reasons;
1341 *pcrl = crl;
1342 *pdcrl = dcrl;
1343 return 1;
1344 }
1345
1346 return 0;
1347 }
1348
1349 /* Check CRL validity */
1350 static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
1351 {
1352 X509 *issuer = NULL;
1353 EVP_PKEY *ikey = NULL;
1354 int ok = 0, chnum, cnum;
1355 cnum = ctx->error_depth;
1356 chnum = sk_X509_num(ctx->chain) - 1;
1357 /* if we have an alternative CRL issuer cert use that */
1358 if (ctx->current_issuer)
1359 issuer = ctx->current_issuer;
1360
1361 /* Else find CRL issuer: if not last certificate then issuer
1362 * is next certificate in chain.
1363 */
1364 else if (cnum < chnum)
1365 issuer = sk_X509_value(ctx->chain, cnum + 1);
1366 else
1367 {
1368 issuer = sk_X509_value(ctx->chain, chnum);
1369 /* If not self signed, can't check signature */
1370 if(!ctx->check_issued(ctx, issuer, issuer))
1371 {
1372 ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER;
1373 ok = ctx->verify_cb(0, ctx);
1374 if(!ok) goto err;
1375 }
1376 }
1377
1378 if(issuer)
1379 {
1380 /* Skip most tests for deltas because they have already
1381 * been done
1382 */
1383 if (!crl->base_crl_number)
1384 {
1385 /* Check for cRLSign bit if keyUsage present */
1386 if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
1387 !(issuer->ex_kusage & KU_CRL_SIGN))
1388 {
1389 ctx->error = X509_V_ERR_KEYUSAGE_NO_CRL_SIGN;
1390 ok = ctx->verify_cb(0, ctx);
1391 if(!ok) goto err;
1392 }
1393
1394 if (!(ctx->current_crl_score & CRL_SCORE_SCOPE))
1395 {
1396 ctx->error = X509_V_ERR_DIFFERENT_CRL_SCOPE;
1397 ok = ctx->verify_cb(0, ctx);
1398 if(!ok) goto err;
1399 }
1400
1401 if (!(ctx->current_crl_score & CRL_SCORE_SAME_PATH))
1402 {
1403 if (check_crl_path(ctx, ctx->current_issuer) <= 0)
1404 {
1405 ctx->error = X509_V_ERR_CRL_PATH_VALIDATION_ERROR;
1406 ok = ctx->verify_cb(0, ctx);
1407 if(!ok) goto err;
1408 }
1409 }
1410
1411 if (crl->idp_flags & IDP_INVALID)
1412 {
1413 ctx->error = X509_V_ERR_INVALID_EXTENSION;
1414 ok = ctx->verify_cb(0, ctx);
1415 if(!ok) goto err;
1416 }
1417
1418
1419 }
1420
1421 if (!(ctx->current_crl_score & CRL_SCORE_TIME))
1422 {
1423 ok = check_crl_time(ctx, crl, 1);
1424 if (!ok)
1425 goto err;
1426 }
1427
1428 /* Attempt to get issuer certificate public key */
1429 ikey = X509_get_pubkey(issuer);
1430
1431 if(!ikey)
1432 {
1433 ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1434 ok = ctx->verify_cb(0, ctx);
1435 if (!ok) goto err;
1436 }
1437 else
1438 {
1439 /* Verify CRL signature */
1440 if(X509_CRL_verify(crl, ikey) <= 0)
1441 {
1442 ctx->error=X509_V_ERR_CRL_SIGNATURE_FAILURE;
1443 ok = ctx->verify_cb(0, ctx);
1444 if (!ok) goto err;
1445 }
1446 }
1447 }
1448
1449 ok = 1;
1450
1451 err:
1452 EVP_PKEY_free(ikey);
1453 return ok;
1454 }
1455
1456 /* Check certificate against CRL */
1457 static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
1458 {
1459 int ok;
1460 X509_REVOKED *rev;
1461 /* The rules changed for this... previously if a CRL contained
1462 * unhandled critical extensions it could still be used to indicate
1463 * a certificate was revoked. This has since been changed since
1464 * critical extension can change the meaning of CRL entries.
1465 */
1466 if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
1467 && (crl->flags & EXFLAG_CRITICAL))
1468 {
1469 ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION;
1470 ok = ctx->verify_cb(0, ctx);
1471 if(!ok)
1472 return 0;
1473 }
1474 /* Look for serial number of certificate in CRL
1475 * If found make sure reason is not removeFromCRL.
1476 */
1477 if (X509_CRL_get0_by_cert(crl, &rev, x))
1478 {
1479 if (rev->reason == CRL_REASON_REMOVE_FROM_CRL)
1480 return 2;
1481 ctx->error = X509_V_ERR_CERT_REVOKED;
1482 ok = ctx->verify_cb(0, ctx);
1483 if (!ok)
1484 return 0;
1485 }
1486
1487 return 1;
1488 }
1489
1490 static int check_policy(X509_STORE_CTX *ctx)
1491 {
1492 int ret;
1493 if (ctx->parent)
1494 return 1;
1495 ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
1496 ctx->param->policies, ctx->param->flags);
1497 if (ret == 0)
1498 {
1499 X509err(X509_F_CHECK_POLICY,ERR_R_MALLOC_FAILURE);
1500 return 0;
1501 }
1502 /* Invalid or inconsistent extensions */
1503 if (ret == -1)
1504 {
1505 /* Locate certificates with bad extensions and notify
1506 * callback.
1507 */
1508 X509 *x;
1509 int i;
1510 for (i = 1; i < sk_X509_num(ctx->chain); i++)
1511 {
1512 x = sk_X509_value(ctx->chain, i);
1513 if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
1514 continue;
1515 ctx->current_cert = x;
1516 ctx->error = X509_V_ERR_INVALID_POLICY_EXTENSION;
1517 if(!ctx->verify_cb(0, ctx))
1518 return 0;
1519 }
1520 return 1;
1521 }
1522 if (ret == -2)
1523 {
1524 ctx->current_cert = NULL;
1525 ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
1526 return ctx->verify_cb(0, ctx);
1527 }
1528
1529 if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY)
1530 {
1531 ctx->current_cert = NULL;
1532 ctx->error = X509_V_OK;
1533 if (!ctx->verify_cb(2, ctx))
1534 return 0;
1535 }
1536
1537 return 1;
1538 }
1539
1540 static int check_cert_time(X509_STORE_CTX *ctx, X509 *x)
1541 {
1542 time_t *ptime;
1543 int i;
1544
1545 if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1546 ptime = &ctx->param->check_time;
1547 else
1548 ptime = NULL;
1549
1550 i=X509_cmp_time(X509_get_notBefore(x), ptime);
1551 if (i == 0)
1552 {
1553 ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD;
1554 ctx->current_cert=x;
1555 if (!ctx->verify_cb(0, ctx))
1556 return 0;
1557 }
1558
1559 if (i > 0)
1560 {
1561 ctx->error=X509_V_ERR_CERT_NOT_YET_VALID;
1562 ctx->current_cert=x;
1563 if (!ctx->verify_cb(0, ctx))
1564 return 0;
1565 }
1566
1567 i=X509_cmp_time(X509_get_notAfter(x), ptime);
1568 if (i == 0)
1569 {
1570 ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD;
1571 ctx->current_cert=x;
1572 if (!ctx->verify_cb(0, ctx))
1573 return 0;
1574 }
1575
1576 if (i < 0)
1577 {
1578 ctx->error=X509_V_ERR_CERT_HAS_EXPIRED;
1579 ctx->current_cert=x;
1580 if (!ctx->verify_cb(0, ctx))
1581 return 0;
1582 }
1583
1584 return 1;
1585 }
1586
1587 static int internal_verify(X509_STORE_CTX *ctx)
1588 {
1589 int ok=0,n;
1590 X509 *xs,*xi;
1591 EVP_PKEY *pkey=NULL;
1592 int (*cb)(int xok,X509_STORE_CTX *xctx);
1593
1594 cb=ctx->verify_cb;
1595
1596 n=sk_X509_num(ctx->chain);
1597 ctx->error_depth=n-1;
1598 n--;
1599 xi=sk_X509_value(ctx->chain,n);
1600
1601 if (ctx->check_issued(ctx, xi, xi))
1602 xs=xi;
1603 else
1604 {
1605 if (n <= 0)
1606 {
1607 ctx->error=X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE;
1608 ctx->current_cert=xi;
1609 ok=cb(0,ctx);
1610 goto end;
1611 }
1612 else
1613 {
1614 n--;
1615 ctx->error_depth=n;
1616 xs=sk_X509_value(ctx->chain,n);
1617 }
1618 }
1619
1620 /* ctx->error=0; not needed */
1621 while (n >= 0)
1622 {
1623 ctx->error_depth=n;
1624
1625 /* Skip signature check for self signed certificates unless
1626 * explicitly asked for. It doesn't add any security and
1627 * just wastes time.
1628 */
1629 if (!xs->valid && (xs != xi || (ctx->param->flags & X509_V_FLAG_CHECK_SS_SIGNATURE)))
1630 {
1631 if ((pkey=X509_get_pubkey(xi)) == NULL)
1632 {
1633 ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1634 ctx->current_cert=xi;
1635 ok=(*cb)(0,ctx);
1636 if (!ok) goto end;
1637 }
1638 else if (X509_verify(xs,pkey) <= 0)
1639 {
1640 ctx->error=X509_V_ERR_CERT_SIGNATURE_FAILURE;
1641 ctx->current_cert=xs;
1642 ok=(*cb)(0,ctx);
1643 if (!ok)
1644 {
1645 EVP_PKEY_free(pkey);
1646 goto end;
1647 }
1648 }
1649 EVP_PKEY_free(pkey);
1650 pkey=NULL;
1651 }
1652
1653 xs->valid = 1;
1654
1655 ok = check_cert_time(ctx, xs);
1656 if (!ok)
1657 goto end;
1658
1659 /* The last error (if any) is still in the error value */
1660 ctx->current_issuer=xi;
1661 ctx->current_cert=xs;
1662 ok=(*cb)(1,ctx);
1663 if (!ok) goto end;
1664
1665 n--;
1666 if (n >= 0)
1667 {
1668 xi=xs;
1669 xs=sk_X509_value(ctx->chain,n);
1670 }
1671 }
1672 ok=1;
1673 end:
1674 return ok;
1675 }
1676
1677 int X509_cmp_current_time(const ASN1_TIME *ctm)
1678 {
1679 return X509_cmp_time(ctm, NULL);
1680 }
1681
1682 int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
1683 {
1684 char *str;
1685 ASN1_TIME atm;
1686 long offset;
1687 char buff1[24],buff2[24],*p;
1688 int i,j;
1689
1690 p=buff1;
1691 i=ctm->length;
1692 str=(char *)ctm->data;
1693 if (ctm->type == V_ASN1_UTCTIME)
1694 {
1695 if ((i < 11) || (i > 17)) return 0;
1696 memcpy(p,str,10);
1697 p+=10;
1698 str+=10;
1699 }
1700 else
1701 {
1702 if (i < 13) return 0;
1703 memcpy(p,str,12);
1704 p+=12;
1705 str+=12;
1706 }
1707
1708 if ((*str == 'Z') || (*str == '-') || (*str == '+'))
1709 { *(p++)='0'; *(p++)='0'; }
1710 else
1711 {
1712 *(p++)= *(str++);
1713 *(p++)= *(str++);
1714 /* Skip any fractional seconds... */
1715 if (*str == '.')
1716 {
1717 str++;
1718 while ((*str >= '0') && (*str <= '9')) str++;
1719 }
1720
1721 }
1722 *(p++)='Z';
1723 *(p++)='\0';
1724
1725 if (*str == 'Z')
1726 offset=0;
1727 else
1728 {
1729 if ((*str != '+') && (*str != '-'))
1730 return 0;
1731 offset=((str[1]-'0')*10+(str[2]-'0'))*60;
1732 offset+=(str[3]-'0')*10+(str[4]-'0');
1733 if (*str == '-')
1734 offset= -offset;
1735 }
1736 atm.type=ctm->type;
1737 atm.flags = 0;
1738 atm.length=sizeof(buff2);
1739 atm.data=(unsigned char *)buff2;
1740
1741 if (X509_time_adj(&atm, offset*60, cmp_time) == NULL)
1742 return 0;
1743
1744 if (ctm->type == V_ASN1_UTCTIME)
1745 {
1746 i=(buff1[0]-'0')*10+(buff1[1]-'0');
1747 if (i < 50) i+=100; /* cf. RFC 2459 */
1748 j=(buff2[0]-'0')*10+(buff2[1]-'0');
1749 if (j < 50) j+=100;
1750
1751 if (i < j) return -1;
1752 if (i > j) return 1;
1753 }
1754 i=strcmp(buff1,buff2);
1755 if (i == 0) /* wait a second then return younger :-) */
1756 return -1;
1757 else
1758 return i;
1759 }
1760
1761 ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
1762 {
1763 return X509_time_adj(s, adj, NULL);
1764 }
1765
1766 ASN1_TIME *X509_time_adj(ASN1_TIME *s, long offset_sec, time_t *in_tm)
1767 {
1768 return X509_time_adj_ex(s, 0, offset_sec, in_tm);
1769 }
1770
1771 ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s,
1772 int offset_day, long offset_sec, time_t *in_tm)
1773 {
1774 time_t t;
1775
1776 if (in_tm) t = *in_tm;
1777 else time(&t);
1778
1779 if (s && !(s->flags & ASN1_STRING_FLAG_MSTRING))
1780 {
1781 if (s->type == V_ASN1_UTCTIME)
1782 return ASN1_UTCTIME_adj(s,t, offset_day, offset_sec);
1783 if (s->type == V_ASN1_GENERALIZEDTIME)
1784 return ASN1_GENERALIZEDTIME_adj(s, t, offset_day,
1785 offset_sec);
1786 }
1787 return ASN1_TIME_adj(s, t, offset_day, offset_sec);
1788 }
1789
1790 int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
1791 {
1792 EVP_PKEY *ktmp=NULL,*ktmp2;
1793 int i,j;
1794
1795 if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey)) return 1;
1796
1797 for (i=0; i<sk_X509_num(chain); i++)
1798 {
1799 ktmp=X509_get_pubkey(sk_X509_value(chain,i));
1800 if (ktmp == NULL)
1801 {
1802 X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
1803 return 0;
1804 }
1805 if (!EVP_PKEY_missing_parameters(ktmp))
1806 break;
1807 else
1808 {
1809 EVP_PKEY_free(ktmp);
1810 ktmp=NULL;
1811 }
1812 }
1813 if (ktmp == NULL)
1814 {
1815 X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
1816 return 0;
1817 }
1818
1819 /* first, populate the other certs */
1820 for (j=i-1; j >= 0; j--)
1821 {
1822 ktmp2=X509_get_pubkey(sk_X509_value(chain,j));
1823 EVP_PKEY_copy_parameters(ktmp2,ktmp);
1824 EVP_PKEY_free(ktmp2);
1825 }
1826
1827 if (pkey != NULL) EVP_PKEY_copy_parameters(pkey,ktmp);
1828 EVP_PKEY_free(ktmp);
1829 return 1;
1830 }
1831
1832 int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
1833 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
1834 {
1835 /* This function is (usually) called only once, by
1836 * SSL_get_ex_data_X509_STORE_CTX_idx (ssl/ssl_cert.c). */
1837 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509_STORE_CTX, argl, argp,
1838 new_func, dup_func, free_func);
1839 }
1840
1841 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
1842 {
1843 return CRYPTO_set_ex_data(&ctx->ex_data,idx,data);
1844 }
1845
1846 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
1847 {
1848 return CRYPTO_get_ex_data(&ctx->ex_data,idx);
1849 }
1850
1851 int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
1852 {
1853 return ctx->error;
1854 }
1855
1856 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
1857 {
1858 ctx->error=err;
1859 }
1860
1861 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
1862 {
1863 return ctx->error_depth;
1864 }
1865
1866 X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
1867 {
1868 return ctx->current_cert;
1869 }
1870
1871 STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx)
1872 {
1873 return ctx->chain;
1874 }
1875
1876 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
1877 {
1878 int i;
1879 X509 *x;
1880 STACK_OF(X509) *chain;
1881 if (!ctx->chain || !(chain = sk_X509_dup(ctx->chain))) return NULL;
1882 for (i = 0; i < sk_X509_num(chain); i++)
1883 {
1884 x = sk_X509_value(chain, i);
1885 CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
1886 }
1887 return chain;
1888 }
1889
1890 X509 *X509_STORE_CTX_get0_current_issuer(X509_STORE_CTX *ctx)
1891 {
1892 return ctx->current_issuer;
1893 }
1894
1895 X509_CRL *X509_STORE_CTX_get0_current_crl(X509_STORE_CTX *ctx)
1896 {
1897 return ctx->current_crl;
1898 }
1899
1900 X509_STORE_CTX *X509_STORE_CTX_get0_parent_ctx(X509_STORE_CTX *ctx)
1901 {
1902 return ctx->parent;
1903 }
1904
1905 void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
1906 {
1907 ctx->cert=x;
1908 }
1909
1910 void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
1911 {
1912 ctx->untrusted=sk;
1913 }
1914
1915 void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
1916 {
1917 ctx->crls=sk;
1918 }
1919
1920 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
1921 {
1922 return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
1923 }
1924
1925 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
1926 {
1927 return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
1928 }
1929
1930 /* This function is used to set the X509_STORE_CTX purpose and trust
1931 * values. This is intended to be used when another structure has its
1932 * own trust and purpose values which (if set) will be inherited by
1933 * the ctx. If they aren't set then we will usually have a default
1934 * purpose in mind which should then be used to set the trust value.
1935 * An example of this is SSL use: an SSL structure will have its own
1936 * purpose and trust settings which the application can set: if they
1937 * aren't set then we use the default of SSL client/server.
1938 */
1939
1940 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
1941 int purpose, int trust)
1942 {
1943 int idx;
1944 /* If purpose not set use default */
1945 if (!purpose) purpose = def_purpose;
1946 /* If we have a purpose then check it is valid */
1947 if (purpose)
1948 {
1949 X509_PURPOSE *ptmp;
1950 idx = X509_PURPOSE_get_by_id(purpose);
1951 if (idx == -1)
1952 {
1953 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1954 X509_R_UNKNOWN_PURPOSE_ID);
1955 return 0;
1956 }
1957 ptmp = X509_PURPOSE_get0(idx);
1958 if (ptmp->trust == X509_TRUST_DEFAULT)
1959 {
1960 idx = X509_PURPOSE_get_by_id(def_purpose);
1961 if (idx == -1)
1962 {
1963 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1964 X509_R_UNKNOWN_PURPOSE_ID);
1965 return 0;
1966 }
1967 ptmp = X509_PURPOSE_get0(idx);
1968 }
1969 /* If trust not set then get from purpose default */
1970 if (!trust) trust = ptmp->trust;
1971 }
1972 if (trust)
1973 {
1974 idx = X509_TRUST_get_by_id(trust);
1975 if (idx == -1)
1976 {
1977 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1978 X509_R_UNKNOWN_TRUST_ID);
1979 return 0;
1980 }
1981 }
1982
1983 if (purpose && !ctx->param->purpose) ctx->param->purpose = purpose;
1984 if (trust && !ctx->param->trust) ctx->param->trust = trust;
1985 return 1;
1986 }
1987
1988 X509_STORE_CTX *X509_STORE_CTX_new(void)
1989 {
1990 X509_STORE_CTX *ctx;
1991 ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX));
1992 if (!ctx)
1993 {
1994 X509err(X509_F_X509_STORE_CTX_NEW,ERR_R_MALLOC_FAILURE);
1995 return NULL;
1996 }
1997 memset(ctx, 0, sizeof(X509_STORE_CTX));
1998 return ctx;
1999 }
2000
2001 void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
2002 {
2003 X509_STORE_CTX_cleanup(ctx);
2004 OPENSSL_free(ctx);
2005 }
2006
2007 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
2008 STACK_OF(X509) *chain)
2009 {
2010 int ret = 1;
2011 ctx->ctx=store;
2012 ctx->current_method=0;
2013 ctx->cert=x509;
2014 ctx->untrusted=chain;
2015 ctx->crls = NULL;
2016 ctx->last_untrusted=0;
2017 ctx->other_ctx=NULL;
2018 ctx->valid=0;
2019 ctx->chain=NULL;
2020 ctx->error=0;
2021 ctx->explicit_policy=0;
2022 ctx->error_depth=0;
2023 ctx->current_cert=NULL;
2024 ctx->current_issuer=NULL;
2025 ctx->current_crl=NULL;
2026 ctx->current_crl_score=0;
2027 ctx->current_reasons=0;
2028 ctx->tree = NULL;
2029 ctx->parent = NULL;
2030
2031 ctx->param = X509_VERIFY_PARAM_new();
2032
2033 if (!ctx->param)
2034 {
2035 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
2036 return 0;
2037 }
2038
2039 /* Inherit callbacks and flags from X509_STORE if not set
2040 * use defaults.
2041 */
2042
2043
2044 if (store)
2045 ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
2046 else
2047 ctx->param->inh_flags |= X509_VP_FLAG_DEFAULT|X509_VP_FLAG_ONCE;
2048
2049 if (store)
2050 {
2051 ctx->verify_cb = store->verify_cb;
2052 ctx->cleanup = store->cleanup;
2053 }
2054 else
2055 ctx->cleanup = 0;
2056
2057 if (ret)
2058 ret = X509_VERIFY_PARAM_inherit(ctx->param,
2059 X509_VERIFY_PARAM_lookup("default"));
2060
2061 if (ret == 0)
2062 {
2063 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
2064 return 0;
2065 }
2066
2067 if (store && store->check_issued)
2068 ctx->check_issued = store->check_issued;
2069 else
2070 ctx->check_issued = check_issued;
2071
2072 if (store && store->get_issuer)
2073 ctx->get_issuer = store->get_issuer;
2074 else
2075 ctx->get_issuer = X509_STORE_CTX_get1_issuer;
2076
2077 if (store && store->verify_cb)
2078 ctx->verify_cb = store->verify_cb;
2079 else
2080 ctx->verify_cb = null_callback;
2081
2082 if (store && store->verify)
2083 ctx->verify = store->verify;
2084 else
2085 ctx->verify = internal_verify;
2086
2087 if (store && store->check_revocation)
2088 ctx->check_revocation = store->check_revocation;
2089 else
2090 ctx->check_revocation = check_revocation;
2091
2092 if (store && store->get_crl)
2093 ctx->get_crl = store->get_crl;
2094 else
2095 ctx->get_crl = NULL;
2096
2097 if (store && store->check_crl)
2098 ctx->check_crl = store->check_crl;
2099 else
2100 ctx->check_crl = check_crl;
2101
2102 if (store && store->cert_crl)
2103 ctx->cert_crl = store->cert_crl;
2104 else
2105 ctx->cert_crl = cert_crl;
2106
2107 if (store && store->lookup_certs)
2108 ctx->lookup_certs = store->lookup_certs;
2109 else
2110 ctx->lookup_certs = X509_STORE_get1_certs;
2111
2112 if (store && store->lookup_crls)
2113 ctx->lookup_crls = store->lookup_crls;
2114 else
2115 ctx->lookup_crls = X509_STORE_get1_crls;
2116
2117 ctx->check_policy = check_policy;
2118
2119
2120 /* This memset() can't make any sense anyway, so it's removed. As
2121 * X509_STORE_CTX_cleanup does a proper "free" on the ex_data, we put a
2122 * corresponding "new" here and remove this bogus initialisation. */
2123 /* memset(&(ctx->ex_data),0,sizeof(CRYPTO_EX_DATA)); */
2124 if(!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
2125 &(ctx->ex_data)))
2126 {
2127 OPENSSL_free(ctx);
2128 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
2129 return 0;
2130 }
2131 return 1;
2132 }
2133
2134 /* Set alternative lookup method: just a STACK of trusted certificates.
2135 * This avoids X509_STORE nastiness where it isn't needed.
2136 */
2137
2138 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2139 {
2140 ctx->other_ctx = sk;
2141 ctx->get_issuer = get_issuer_sk;
2142 }
2143
2144 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
2145 {
2146 if (ctx->cleanup) ctx->cleanup(ctx);
2147 if (ctx->param != NULL)
2148 {
2149 if (ctx->parent == NULL)
2150 X509_VERIFY_PARAM_free(ctx->param);
2151 ctx->param=NULL;
2152 }
2153 if (ctx->tree != NULL)
2154 {
2155 X509_policy_tree_free(ctx->tree);
2156 ctx->tree=NULL;
2157 }
2158 if (ctx->chain != NULL)
2159 {
2160 sk_X509_pop_free(ctx->chain,X509_free);
2161 ctx->chain=NULL;
2162 }
2163 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
2164 memset(&ctx->ex_data,0,sizeof(CRYPTO_EX_DATA));
2165 }
2166
2167 void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
2168 {
2169 X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2170 }
2171
2172 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
2173 {
2174 X509_VERIFY_PARAM_set_flags(ctx->param, flags);
2175 }
2176
2177 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags, time_t t)
2178 {
2179 X509_VERIFY_PARAM_set_time(ctx->param, t);
2180 }
2181
2182 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
2183 int (*verify_cb)(int, X509_STORE_CTX *))
2184 {
2185 ctx->verify_cb=verify_cb;
2186 }
2187
2188 X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx)
2189 {
2190 return ctx->tree;
2191 }
2192
2193 int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx)
2194 {
2195 return ctx->explicit_policy;
2196 }
2197
2198 int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
2199 {
2200 const X509_VERIFY_PARAM *param;
2201 param = X509_VERIFY_PARAM_lookup(name);
2202 if (!param)
2203 return 0;
2204 return X509_VERIFY_PARAM_inherit(ctx->param, param);
2205 }
2206
2207 X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx)
2208 {
2209 return ctx->param;
2210 }
2211
2212 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
2213 {
2214 if (ctx->param)
2215 X509_VERIFY_PARAM_free(ctx->param);
2216 ctx->param = param;
2217 }
2218
2219 IMPLEMENT_STACK_OF(X509)
2220 IMPLEMENT_ASN1_SET_OF(X509)
2221
2222 IMPLEMENT_STACK_OF(X509_NAME)
2223
2224 IMPLEMENT_STACK_OF(X509_ATTRIBUTE)
2225 IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE)