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