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