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