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