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