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