22d520b88a3e0e4c8d5face4a107741439b1060f
[oweals/openssl.git] / crypto / x509 / x509_vfy.c
1 /* crypto/x509/x509_vfy.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include <time.h>
61 #include <errno.h>
62
63 #include "cryptlib.h"
64 #include <openssl/crypto.h>
65 #include <openssl/lhash.h>
66 #include <openssl/buffer.h>
67 #include <openssl/evp.h>
68 #include <openssl/asn1.h>
69 #include <openssl/x509.h>
70 #include <openssl/x509v3.h>
71 #include <openssl/objects.h>
72
73 static int null_callback(int ok,X509_STORE_CTX *e);
74 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
75 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
76 static int check_chain_extensions(X509_STORE_CTX *ctx);
77 static int check_trust(X509_STORE_CTX *ctx);
78 static int check_revocation(X509_STORE_CTX *ctx);
79 static int check_cert(X509_STORE_CTX *ctx);
80 static int check_policy(X509_STORE_CTX *ctx);
81 static int crl_akid_check(X509_STORE_CTX *ctx, AUTHORITY_KEYID *akid);
82 static int idp_check_scope(X509 *x, X509_CRL *crl);
83 static int internal_verify(X509_STORE_CTX *ctx);
84 const char X509_version[]="X.509" OPENSSL_VERSION_PTEXT;
85
86
87 static int null_callback(int ok, X509_STORE_CTX *e)
88         {
89         return ok;
90         }
91
92 #if 0
93 static int x509_subject_cmp(X509 **a, X509 **b)
94         {
95         return X509_subject_name_cmp(*a,*b);
96         }
97 #endif
98
99 int X509_verify_cert(X509_STORE_CTX *ctx)
100         {
101         X509 *x,*xtmp,*chain_ss=NULL;
102         X509_NAME *xn;
103         int bad_chain = 0;
104         X509_VERIFY_PARAM *param = ctx->param;
105         int depth,i,ok=0;
106         int num;
107         int (*cb)(int xok,X509_STORE_CTX *xctx);
108         STACK_OF(X509) *sktmp=NULL;
109         if (ctx->cert == NULL)
110                 {
111                 X509err(X509_F_X509_VERIFY_CERT,X509_R_NO_CERT_SET_FOR_US_TO_VERIFY);
112                 return -1;
113                 }
114
115         cb=ctx->verify_cb;
116
117         /* first we make sure the chain we are going to build is
118          * present and that the first entry is in place */
119         if (ctx->chain == NULL)
120                 {
121                 if (    ((ctx->chain=sk_X509_new_null()) == NULL) ||
122                         (!sk_X509_push(ctx->chain,ctx->cert)))
123                         {
124                         X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
125                         goto end;
126                         }
127                 CRYPTO_add(&ctx->cert->references,1,CRYPTO_LOCK_X509);
128                 ctx->last_untrusted=1;
129                 }
130
131         /* We use a temporary STACK so we can chop and hack at it */
132         if (ctx->untrusted != NULL
133             && (sktmp=sk_X509_dup(ctx->untrusted)) == NULL)
134                 {
135                 X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
136                 goto end;
137                 }
138
139         num=sk_X509_num(ctx->chain);
140         x=sk_X509_value(ctx->chain,num-1);
141         depth=param->depth;
142
143
144         for (;;)
145                 {
146                 /* If we have enough, we break */
147                 if (depth < num) break; /* FIXME: If this happens, we should take
148                                          * note of it and, if appropriate, use the
149                                          * X509_V_ERR_CERT_CHAIN_TOO_LONG error
150                                          * code later.
151                                          */
152
153                 /* If we are self signed, we break */
154                 xn=X509_get_issuer_name(x);
155                 if (ctx->check_issued(ctx, x,x)) break;
156
157                 /* If we were passed a cert chain, use it first */
158                 if (ctx->untrusted != NULL)
159                         {
160                         xtmp=find_issuer(ctx, sktmp,x);
161                         if (xtmp != NULL)
162                                 {
163                                 if (!sk_X509_push(ctx->chain,xtmp))
164                                         {
165                                         X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
166                                         goto end;
167                                         }
168                                 CRYPTO_add(&xtmp->references,1,CRYPTO_LOCK_X509);
169                                 (void)sk_X509_delete_ptr(sktmp,xtmp);
170                                 ctx->last_untrusted++;
171                                 x=xtmp;
172                                 num++;
173                                 /* reparse the full chain for
174                                  * the next one */
175                                 continue;
176                                 }
177                         }
178                 break;
179                 }
180
181         /* at this point, chain should contain a list of untrusted
182          * certificates.  We now need to add at least one trusted one,
183          * if possible, otherwise we complain. */
184
185         /* Examine last certificate in chain and see if it
186          * is self signed.
187          */
188
189         i=sk_X509_num(ctx->chain);
190         x=sk_X509_value(ctx->chain,i-1);
191         xn = X509_get_subject_name(x);
192         if (ctx->check_issued(ctx, x, x))
193                 {
194                 /* we have a self signed certificate */
195                 if (sk_X509_num(ctx->chain) == 1)
196                         {
197                         /* We have a single self signed certificate: see if
198                          * we can find it in the store. We must have an exact
199                          * match to avoid possible impersonation.
200                          */
201                         ok = ctx->get_issuer(&xtmp, ctx, x);
202                         if ((ok <= 0) || X509_cmp(x, xtmp)) 
203                                 {
204                                 ctx->error=X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT;
205                                 ctx->current_cert=x;
206                                 ctx->error_depth=i-1;
207                                 if (ok == 1) X509_free(xtmp);
208                                 bad_chain = 1;
209                                 ok=cb(0,ctx);
210                                 if (!ok) goto end;
211                                 }
212                         else 
213                                 {
214                                 /* We have a match: replace certificate with store version
215                                  * so we get any trust settings.
216                                  */
217                                 X509_free(x);
218                                 x = xtmp;
219                                 (void)sk_X509_set(ctx->chain, i - 1, x);
220                                 ctx->last_untrusted=0;
221                                 }
222                         }
223                 else
224                         {
225                         /* extract and save self signed certificate for later use */
226                         chain_ss=sk_X509_pop(ctx->chain);
227                         ctx->last_untrusted--;
228                         num--;
229                         x=sk_X509_value(ctx->chain,num-1);
230                         }
231                 }
232
233         /* We now lookup certs from the certificate store */
234         for (;;)
235                 {
236                 /* If we have enough, we break */
237                 if (depth < num) break;
238
239                 /* If we are self signed, we break */
240                 xn=X509_get_issuer_name(x);
241                 if (ctx->check_issued(ctx,x,x)) break;
242
243                 ok = ctx->get_issuer(&xtmp, ctx, x);
244
245                 if (ok < 0) return ok;
246                 if (ok == 0) break;
247
248                 x = xtmp;
249                 if (!sk_X509_push(ctx->chain,x))
250                         {
251                         X509_free(xtmp);
252                         X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
253                         return 0;
254                         }
255                 num++;
256                 }
257
258         /* we now have our chain, lets check it... */
259         xn=X509_get_issuer_name(x);
260
261         /* Is last certificate looked up self signed? */
262         if (!ctx->check_issued(ctx,x,x))
263                 {
264                 if ((chain_ss == NULL) || !ctx->check_issued(ctx, x, chain_ss))
265                         {
266                         if (ctx->last_untrusted >= num)
267                                 ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY;
268                         else
269                                 ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT;
270                         ctx->current_cert=x;
271                         }
272                 else
273                         {
274
275                         sk_X509_push(ctx->chain,chain_ss);
276                         num++;
277                         ctx->last_untrusted=num;
278                         ctx->current_cert=chain_ss;
279                         ctx->error=X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN;
280                         chain_ss=NULL;
281                         }
282
283                 ctx->error_depth=num-1;
284                 bad_chain = 1;
285                 ok=cb(0,ctx);
286                 if (!ok) goto end;
287                 }
288
289         /* We have the chain complete: now we need to check its purpose */
290         ok = check_chain_extensions(ctx);
291
292         if (!ok) goto end;
293
294         /* The chain extensions are OK: check trust */
295
296         if (param->trust > 0) ok = check_trust(ctx);
297
298         if (!ok) goto end;
299
300         /* We may as well copy down any DSA parameters that are required */
301         X509_get_pubkey_parameters(NULL,ctx->chain);
302
303         /* Check revocation status: we do this after copying parameters
304          * because they may be needed for CRL signature verification.
305          */
306
307         ok = ctx->check_revocation(ctx);
308         if(!ok) goto end;
309
310         /* At this point, we have a chain and need to verify it */
311         if (ctx->verify != NULL)
312                 ok=ctx->verify(ctx);
313         else
314                 ok=internal_verify(ctx);
315         if(!ok) goto end;
316
317 #ifndef OPENSSL_NO_RFC3779
318         /* RFC 3779 path validation, now that CRL check has been done */
319         ok = v3_asid_validate_path(ctx);
320         if (!ok) goto end;
321         ok = v3_addr_validate_path(ctx);
322         if (!ok) goto end;
323 #endif
324
325         /* If we get this far evaluate policies */
326         if (!bad_chain && (ctx->param->flags & X509_V_FLAG_POLICY_CHECK))
327                 ok = ctx->check_policy(ctx);
328         if(!ok) goto end;
329         if (0)
330                 {
331 end:
332                 X509_get_pubkey_parameters(NULL,ctx->chain);
333                 }
334         if (sktmp != NULL) sk_X509_free(sktmp);
335         if (chain_ss != NULL) X509_free(chain_ss);
336         return ok;
337         }
338
339
340 /* Given a STACK_OF(X509) find the issuer of cert (if any)
341  */
342
343 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
344 {
345         int i;
346         X509 *issuer;
347         for (i = 0; i < sk_X509_num(sk); i++)
348                 {
349                 issuer = sk_X509_value(sk, i);
350                 if (ctx->check_issued(ctx, x, issuer))
351                         return issuer;
352                 }
353         return NULL;
354 }
355
356 /* Given a possible certificate and issuer check them */
357
358 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
359 {
360         int ret;
361         ret = X509_check_issued(issuer, x);
362         if (ret == X509_V_OK)
363                 return 1;
364         /* If we haven't asked for issuer errors don't set ctx */
365         if (!(ctx->param->flags & X509_V_FLAG_CB_ISSUER_CHECK))
366                 return 0;
367
368         ctx->error = ret;
369         ctx->current_cert = x;
370         ctx->current_issuer = issuer;
371         return ctx->verify_cb(0, ctx);
372         return 0;
373 }
374
375 /* Alternative lookup method: look from a STACK stored in other_ctx */
376
377 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
378 {
379         *issuer = find_issuer(ctx, ctx->other_ctx, x);
380         if (*issuer)
381                 {
382                 CRYPTO_add(&(*issuer)->references,1,CRYPTO_LOCK_X509);
383                 return 1;
384                 }
385         else
386                 return 0;
387 }
388         
389
390 /* Check a certificate chains extensions for consistency
391  * with the supplied purpose
392  */
393
394 static int check_chain_extensions(X509_STORE_CTX *ctx)
395 {
396 #ifdef OPENSSL_NO_CHAIN_VERIFY
397         return 1;
398 #else
399         int i, ok=0, must_be_ca, plen = 0;
400         X509 *x;
401         int (*cb)(int xok,X509_STORE_CTX *xctx);
402         int proxy_path_length = 0;
403         int allow_proxy_certs =
404                 !!(ctx->param->flags & X509_V_FLAG_ALLOW_PROXY_CERTS);
405         cb=ctx->verify_cb;
406
407         /* must_be_ca can have 1 of 3 values:
408            -1: we accept both CA and non-CA certificates, to allow direct
409                use of self-signed certificates (which are marked as CA).
410            0:  we only accept non-CA certificates.  This is currently not
411                used, but the possibility is present for future extensions.
412            1:  we only accept CA certificates.  This is currently used for
413                all certificates in the chain except the leaf certificate.
414         */
415         must_be_ca = -1;
416
417         /* A hack to keep people who don't want to modify their software
418            happy */
419         if (getenv("OPENSSL_ALLOW_PROXY_CERTS"))
420                 allow_proxy_certs = 1;
421
422         /* Check all untrusted certificates */
423         for (i = 0; i < ctx->last_untrusted; i++)
424                 {
425                 int ret;
426                 x = sk_X509_value(ctx->chain, i);
427                 if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
428                         && (x->ex_flags & EXFLAG_CRITICAL))
429                         {
430                         ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION;
431                         ctx->error_depth = i;
432                         ctx->current_cert = x;
433                         ok=cb(0,ctx);
434                         if (!ok) goto end;
435                         }
436                 if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY))
437                         {
438                         ctx->error = X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED;
439                         ctx->error_depth = i;
440                         ctx->current_cert = x;
441                         ok=cb(0,ctx);
442                         if (!ok) goto end;
443                         }
444                 ret = X509_check_ca(x);
445                 switch(must_be_ca)
446                         {
447                 case -1:
448                         if ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
449                                 && (ret != 1) && (ret != 0))
450                                 {
451                                 ret = 0;
452                                 ctx->error = X509_V_ERR_INVALID_CA;
453                                 }
454                         else
455                                 ret = 1;
456                         break;
457                 case 0:
458                         if (ret != 0)
459                                 {
460                                 ret = 0;
461                                 ctx->error = X509_V_ERR_INVALID_NON_CA;
462                                 }
463                         else
464                                 ret = 1;
465                         break;
466                 default:
467                         if ((ret == 0)
468                                 || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
469                                         && (ret != 1)))
470                                 {
471                                 ret = 0;
472                                 ctx->error = X509_V_ERR_INVALID_CA;
473                                 }
474                         else
475                                 ret = 1;
476                         break;
477                         }
478                 if (ret == 0)
479                         {
480                         ctx->error_depth = i;
481                         ctx->current_cert = x;
482                         ok=cb(0,ctx);
483                         if (!ok) goto end;
484                         }
485                 if (ctx->param->purpose > 0)
486                         {
487                         ret = X509_check_purpose(x, ctx->param->purpose,
488                                 must_be_ca > 0);
489                         if ((ret == 0)
490                                 || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
491                                         && (ret != 1)))
492                                 {
493                                 ctx->error = X509_V_ERR_INVALID_PURPOSE;
494                                 ctx->error_depth = i;
495                                 ctx->current_cert = x;
496                                 ok=cb(0,ctx);
497                                 if (!ok) goto end;
498                                 }
499                         }
500                 /* Check pathlen if not self issued */
501                 if ((i > 1) && !(x->ex_flags & EXFLAG_SI)
502                            && (x->ex_pathlen != -1)
503                            && (plen > (x->ex_pathlen + proxy_path_length + 1)))
504                         {
505                         ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED;
506                         ctx->error_depth = i;
507                         ctx->current_cert = x;
508                         ok=cb(0,ctx);
509                         if (!ok) goto end;
510                         }
511                 /* Increment path length if not self issued */
512                 if (!(x->ex_flags & EXFLAG_SI))
513                         plen++;
514                 /* If this certificate is a proxy certificate, the next
515                    certificate must be another proxy certificate or a EE
516                    certificate.  If not, the next certificate must be a
517                    CA certificate.  */
518                 if (x->ex_flags & EXFLAG_PROXY)
519                         {
520                         if (x->ex_pcpathlen != -1 && i > x->ex_pcpathlen)
521                                 {
522                                 ctx->error =
523                                         X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED;
524                                 ctx->error_depth = i;
525                                 ctx->current_cert = x;
526                                 ok=cb(0,ctx);
527                                 if (!ok) goto end;
528                                 }
529                         proxy_path_length++;
530                         must_be_ca = 0;
531                         }
532                 else
533                         must_be_ca = 1;
534                 }
535         ok = 1;
536  end:
537         return ok;
538 #endif
539 }
540
541 static int check_trust(X509_STORE_CTX *ctx)
542 {
543 #ifdef OPENSSL_NO_CHAIN_VERIFY
544         return 1;
545 #else
546         int i, ok;
547         X509 *x;
548         int (*cb)(int xok,X509_STORE_CTX *xctx);
549         cb=ctx->verify_cb;
550 /* For now just check the last certificate in the chain */
551         i = sk_X509_num(ctx->chain) - 1;
552         x = sk_X509_value(ctx->chain, i);
553         ok = X509_check_trust(x, ctx->param->trust, 0);
554         if (ok == X509_TRUST_TRUSTED)
555                 return 1;
556         ctx->error_depth = i;
557         ctx->current_cert = x;
558         if (ok == X509_TRUST_REJECTED)
559                 ctx->error = X509_V_ERR_CERT_REJECTED;
560         else
561                 ctx->error = X509_V_ERR_CERT_UNTRUSTED;
562         ok = cb(0, ctx);
563         return ok;
564 #endif
565 }
566
567 static int check_revocation(X509_STORE_CTX *ctx)
568         {
569         int i, last, ok;
570         if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
571                 return 1;
572         if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
573                 last = sk_X509_num(ctx->chain) - 1;
574         else
575                 last = 0;
576         for(i = 0; i <= last; i++)
577                 {
578                 ctx->error_depth = i;
579                 ok = check_cert(ctx);
580                 if (!ok) return ok;
581                 }
582         return 1;
583         }
584
585 static int check_cert(X509_STORE_CTX *ctx)
586         {
587         X509_CRL *crl = NULL;
588         X509 *x;
589         int ok, cnum;
590         cnum = ctx->error_depth;
591         x = sk_X509_value(ctx->chain, cnum);
592         ctx->current_cert = x;
593         /* Try to retrieve relevant CRL */
594         ok = ctx->get_crl(ctx, &crl, x);
595         /* If error looking up CRL, nothing we can do except
596          * notify callback
597          */
598         if(!ok)
599                 {
600                 ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
601                 ok = ctx->verify_cb(0, ctx);
602                 goto err;
603                 }
604         ctx->current_crl = crl;
605         ok = ctx->check_crl(ctx, crl);
606         if (!ok) goto err;
607         ok = ctx->cert_crl(ctx, crl, x);
608         err:
609         ctx->current_crl = NULL;
610         X509_CRL_free(crl);
611         return ok;
612
613         }
614
615 /* Check CRL times against values in X509_STORE_CTX */
616
617 static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
618         {
619         time_t *ptime;
620         int i;
621         ctx->current_crl = crl;
622         if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
623                 ptime = &ctx->param->check_time;
624         else
625                 ptime = NULL;
626
627         i=X509_cmp_time(X509_CRL_get_lastUpdate(crl), ptime);
628         if (i == 0)
629                 {
630                 ctx->error=X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD;
631                 if (!notify || !ctx->verify_cb(0, ctx))
632                         return 0;
633                 }
634
635         if (i > 0)
636                 {
637                 ctx->error=X509_V_ERR_CRL_NOT_YET_VALID;
638                 if (!notify || !ctx->verify_cb(0, ctx))
639                         return 0;
640                 }
641
642         if(X509_CRL_get_nextUpdate(crl))
643                 {
644                 i=X509_cmp_time(X509_CRL_get_nextUpdate(crl), ptime);
645
646                 if (i == 0)
647                         {
648                         ctx->error=X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD;
649                         if (!notify || !ctx->verify_cb(0, ctx))
650                                 return 0;
651                         }
652
653                 if (i < 0)
654                         {
655                         ctx->error=X509_V_ERR_CRL_HAS_EXPIRED;
656                         if (!notify || !ctx->verify_cb(0, ctx))
657                                 return 0;
658                         }
659                 }
660
661         ctx->current_crl = NULL;
662
663         return 1;
664         }
665
666 /* Based on a set of possible CRLs decide which one is best suited
667  * to handle the current certificate. This is determined by a number
668  * of criteria. If any of the "must" criteria is not satisfied then
669  * the candidate CRL is rejected. If all "must" and all "should" are
670  * satisfied the CRL is accepted. If no CRL satisfies all criteria then
671  * a "best CRL" is used to provide some meaningful error information.
672  *
673  * CRL issuer name must match "nm" if not NULL.
674  * If IDP is present:
675  *   a. it must be consistent.
676  *   b. onlyuser, onlyCA, onlyAA should match certificate being checked.
677  *   c. indirectCRL must be FALSE.
678  *   d. onlysomereason must be absent.
679  *   e. if name present a DP in certificate CRLDP must match.
680  * If AKID present it should match certificate AKID.
681  * Check time should fall between lastUpdate and nextUpdate.
682  */
683
684 /* IDP name field matches CRLDP or IDP name not present */
685 #define CRL_SCORE_SCOPE         4
686 /* AKID present and matches cert, or AKID not present */
687 #define CRL_SCORE_AKID          2
688 /* times OK */
689 #define CRL_SCORE_TIME          1
690
691 #define CRL_SCORE_ALL           7
692
693 /* IDP flags which cause a CRL to be rejected */
694
695 #define IDP_REJECT      (IDP_INVALID|IDP_INDIRECT|IDP_REASONS)
696
697 static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl,
698                         X509_NAME *nm, STACK_OF(X509_CRL) *crls)
699         {
700         int i, crl_score, best_score = -1;
701         X509_CRL *crl, *best_crl = NULL;
702         for (i = 0; i < sk_X509_CRL_num(crls); i++)
703                 {
704                 crl_score = 0;
705                 crl = sk_X509_CRL_value(crls, i);
706                 if (nm && X509_NAME_cmp(nm, X509_CRL_get_issuer(crl)))
707                         continue;
708                 if (check_crl_time(ctx, crl, 0))
709                         crl_score |= CRL_SCORE_TIME;
710
711                 if (crl->idp_flags & IDP_PRESENT)
712                         {
713                         if (crl->idp_flags & IDP_REJECT)
714                                 continue;
715                         if (idp_check_scope(ctx->current_cert, crl))
716                                 crl_score |= CRL_SCORE_SCOPE;
717                         }
718                 else
719                         crl_score |= CRL_SCORE_SCOPE;
720
721                 if (crl->akid)
722                         {
723                         if (crl_akid_check(ctx, crl->akid))
724                                 crl_score |= CRL_SCORE_AKID;
725                         }
726                 else
727                         crl_score |= CRL_SCORE_AKID;
728
729                 if (crl_score == CRL_SCORE_ALL)
730                         {
731                         *pcrl = crl;
732                         CRYPTO_add(&crl->references, 1, CRYPTO_LOCK_X509_CRL);
733                         return 1;
734                         }
735
736                 if (crl_score > best_score)
737                         {
738                         best_crl = crl;
739                         best_score = crl_score;
740                         }
741                 }
742         if (best_crl)
743                 {
744                 *pcrl = best_crl;
745                 CRYPTO_add(&best_crl->references, 1, CRYPTO_LOCK_X509);
746                 }
747                 
748         return 0;
749         }
750
751 static int crl_akid_check(X509_STORE_CTX *ctx, AUTHORITY_KEYID *akid)
752         {
753         int cidx = ctx->error_depth;
754         if (cidx != sk_X509_num(ctx->chain) - 1)
755                 cidx++;
756         if (X509_check_akid(sk_X509_value(ctx->chain, cidx), akid) == X509_V_OK)
757                 return 1;
758         return 0;
759         }
760
761
762 /* Check IDP name matches at least one CRLDP name */
763
764 static int idp_check_scope(X509 *x, X509_CRL *crl)
765         {
766         int i, j, k;
767         GENERAL_NAMES *inames, *dnames;
768         if (crl->idp_flags & IDP_ONLYATTR)
769                 return 0;
770         if (x->ex_flags & EXFLAG_CA)
771                 {
772                 if (crl->idp_flags & IDP_ONLYUSER)
773                         return 0;
774                 }
775         else
776                 {
777                 if (crl->idp_flags & IDP_ONLYCA)
778                         return 0;
779                 }
780         if (!crl->idp->distpoint)
781                 return 1;
782         if (crl->idp->distpoint->type != 0)
783                 return 1;
784         if (!x->crldp)
785                 return 0;
786         inames = crl->idp->distpoint->name.fullname;
787         for (i = 0; i < sk_GENERAL_NAME_num(inames); i++)
788                 {
789                 GENERAL_NAME *igen = sk_GENERAL_NAME_value(inames, i);
790                 for (j = 0; j < sk_DIST_POINT_num(x->crldp); j++)
791                         {
792                         DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, j);
793                         /* We don't handle these at present */
794                         if (dp->reasons || dp->CRLissuer)
795                                 continue;
796                         if (!dp->distpoint || (dp->distpoint->type != 0))
797                                 continue;
798                         dnames = dp->distpoint->name.fullname;
799                         for (k = 0; k < sk_GENERAL_NAME_num(dnames); k++)
800                                 {
801                                 GENERAL_NAME *cgen =
802                                         sk_GENERAL_NAME_value(dnames, k);
803                                 if (!GENERAL_NAME_cmp(igen, cgen))
804                                         return 1;
805                                 }
806                         }
807                 }
808         return 0;
809         }
810
811 /* Retrieve CRL corresponding to current certificate. Currently only
812  * one CRL is retrieved. Multiple CRLs may be needed if we handle
813  * CRLs partitioned on reason code later.
814  */
815         
816 static int get_crl(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509 *x)
817         {
818         int ok;
819         X509_CRL *crl = NULL;
820         STACK_OF(X509_CRL) *skcrl;
821         X509_NAME *nm;
822         nm = X509_get_issuer_name(x);
823         ok = get_crl_sk(ctx, &crl, nm, ctx->crls);
824         if (ok)
825                 {
826                 *pcrl = crl;
827                 return 1;
828                 }
829
830         /* Lookup CRLs from store */
831
832         skcrl = ctx->lookup_crls(ctx, nm);
833
834         /* If no CRLs found and a near match from get_crl_sk use that */
835         if (!skcrl)
836                 {
837                 if (crl)
838                         {
839                         *pcrl = crl;
840                         return 1;
841                         }
842                 return 0;
843                 }
844
845         get_crl_sk(ctx, &crl, NULL, skcrl);
846
847         sk_X509_CRL_pop_free(skcrl, X509_CRL_free);
848
849         /* If we got any kind of CRL use it and return success */
850         if (crl)
851                 {
852                 *pcrl = crl;
853                 return 1;
854                 }
855
856         return 0;
857         }
858
859 /* Check CRL validity */
860 static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
861         {
862         X509 *issuer = NULL;
863         EVP_PKEY *ikey = NULL;
864         int ok = 0, chnum, cnum;
865         cnum = ctx->error_depth;
866         chnum = sk_X509_num(ctx->chain) - 1;
867         /* Find CRL issuer: if not last certificate then issuer
868          * is next certificate in chain.
869          */
870         if(cnum < chnum)
871                 issuer = sk_X509_value(ctx->chain, cnum + 1);
872         else
873                 {
874                 issuer = sk_X509_value(ctx->chain, chnum);
875                 /* If not self signed, can't check signature */
876                 if(!ctx->check_issued(ctx, issuer, issuer))
877                         {
878                         ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER;
879                         ok = ctx->verify_cb(0, ctx);
880                         if(!ok) goto err;
881                         }
882                 }
883
884         if(issuer)
885                 {
886                 /* Check for cRLSign bit if keyUsage present */
887                 if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
888                         !(issuer->ex_kusage & KU_CRL_SIGN))
889                         {
890                         ctx->error = X509_V_ERR_KEYUSAGE_NO_CRL_SIGN;
891                         ok = ctx->verify_cb(0, ctx);
892                         if(!ok) goto err;
893                         }
894
895                 if (crl->idp_flags & IDP_PRESENT)
896                         {
897                         if (crl->idp_flags & IDP_INVALID)
898                                 {
899                                 ctx->error = X509_V_ERR_INVALID_EXTENSION;
900                                 ok = ctx->verify_cb(0, ctx);
901                                 if(!ok) goto err;
902                                 }
903                         if (crl->idp_flags & (IDP_REASONS|IDP_INDIRECT))
904                                 {
905                                 ctx->error = X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE;
906                                 ok = ctx->verify_cb(0, ctx);
907                                 if(!ok) goto err;
908                                 }
909                         if (!idp_check_scope(ctx->current_cert, crl))
910                                 {
911                                 ctx->error = X509_V_ERR_DIFFERENT_CRL_SCOPE;
912                                 ok = ctx->verify_cb(0, ctx);
913                                 if(!ok) goto err;
914                                 }
915                         }
916
917                 /* Attempt to get issuer certificate public key */
918                 ikey = X509_get_pubkey(issuer);
919
920                 if(!ikey)
921                         {
922                         ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
923                         ok = ctx->verify_cb(0, ctx);
924                         if (!ok) goto err;
925                         }
926                 else
927                         {
928                         /* Verify CRL signature */
929                         if(X509_CRL_verify(crl, ikey) <= 0)
930                                 {
931                                 ctx->error=X509_V_ERR_CRL_SIGNATURE_FAILURE;
932                                 ok = ctx->verify_cb(0, ctx);
933                                 if (!ok) goto err;
934                                 }
935                         }
936                 }
937
938         ok = check_crl_time(ctx, crl, 1);
939         if (!ok)
940                 goto err;
941
942         ok = 1;
943
944         err:
945         EVP_PKEY_free(ikey);
946         return ok;
947         }
948
949 /* Check certificate against CRL */
950 static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
951         {
952         int ok;
953         /* Look for serial number of certificate in CRL
954          * If found assume revoked: want something cleverer than
955          * this to handle entry extensions in V2 CRLs.
956          */
957         if (X509_CRL_get0_by_serial(crl, NULL, X509_get_serialNumber(x)) > 0)
958                 {
959                 ctx->error = X509_V_ERR_CERT_REVOKED;
960                 ok = ctx->verify_cb(0, ctx);
961                 if (!ok)
962                         return 0;
963                 }
964
965         if (crl->flags & EXFLAG_CRITICAL)
966                 {
967                 if (ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
968                         return 1;
969                 ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION;
970                 ok = ctx->verify_cb(0, ctx);
971                 if(!ok)
972                         return 0;
973                 }
974
975         return 1;
976         }
977
978 static int check_policy(X509_STORE_CTX *ctx)
979         {
980         int ret;
981         ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
982                                 ctx->param->policies, ctx->param->flags);
983         if (ret == 0)
984                 {
985                 X509err(X509_F_CHECK_POLICY,ERR_R_MALLOC_FAILURE);
986                 return 0;
987                 }
988         /* Invalid or inconsistent extensions */
989         if (ret == -1)
990                 {
991                 /* Locate certificates with bad extensions and notify
992                  * callback.
993                  */
994                 X509 *x;
995                 int i;
996                 for (i = 1; i < sk_X509_num(ctx->chain); i++)
997                         {
998                         x = sk_X509_value(ctx->chain, i);
999                         if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
1000                                 continue;
1001                         ctx->current_cert = x;
1002                         ctx->error = X509_V_ERR_INVALID_POLICY_EXTENSION;
1003                         ret = ctx->verify_cb(0, ctx);
1004                         }
1005                 return 1;
1006                 }
1007         if (ret == -2)
1008                 {
1009                 ctx->current_cert = NULL;
1010                 ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
1011                 return ctx->verify_cb(0, ctx);
1012                 }
1013
1014         if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY)
1015                 {
1016                 ctx->current_cert = NULL;
1017                 ctx->error = X509_V_OK;
1018                 if (!ctx->verify_cb(2, ctx))
1019                         return 0;
1020                 }
1021
1022         return 1;
1023         }
1024
1025 static int check_cert_time(X509_STORE_CTX *ctx, X509 *x)
1026         {
1027         time_t *ptime;
1028         int i;
1029
1030         if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1031                 ptime = &ctx->param->check_time;
1032         else
1033                 ptime = NULL;
1034
1035         i=X509_cmp_time(X509_get_notBefore(x), ptime);
1036         if (i == 0)
1037                 {
1038                 ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD;
1039                 ctx->current_cert=x;
1040                 if (!ctx->verify_cb(0, ctx))
1041                         return 0;
1042                 }
1043
1044         if (i > 0)
1045                 {
1046                 ctx->error=X509_V_ERR_CERT_NOT_YET_VALID;
1047                 ctx->current_cert=x;
1048                 if (!ctx->verify_cb(0, ctx))
1049                         return 0;
1050                 }
1051
1052         i=X509_cmp_time(X509_get_notAfter(x), ptime);
1053         if (i == 0)
1054                 {
1055                 ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD;
1056                 ctx->current_cert=x;
1057                 if (!ctx->verify_cb(0, ctx))
1058                         return 0;
1059                 }
1060
1061         if (i < 0)
1062                 {
1063                 ctx->error=X509_V_ERR_CERT_HAS_EXPIRED;
1064                 ctx->current_cert=x;
1065                 if (!ctx->verify_cb(0, ctx))
1066                         return 0;
1067                 }
1068
1069         return 1;
1070         }
1071
1072 static int internal_verify(X509_STORE_CTX *ctx)
1073         {
1074         int ok=0,n;
1075         X509 *xs,*xi;
1076         EVP_PKEY *pkey=NULL;
1077         int (*cb)(int xok,X509_STORE_CTX *xctx);
1078
1079         cb=ctx->verify_cb;
1080
1081         n=sk_X509_num(ctx->chain);
1082         ctx->error_depth=n-1;
1083         n--;
1084         xi=sk_X509_value(ctx->chain,n);
1085
1086         if (ctx->check_issued(ctx, xi, xi))
1087                 xs=xi;
1088         else
1089                 {
1090                 if (n <= 0)
1091                         {
1092                         ctx->error=X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE;
1093                         ctx->current_cert=xi;
1094                         ok=cb(0,ctx);
1095                         goto end;
1096                         }
1097                 else
1098                         {
1099                         n--;
1100                         ctx->error_depth=n;
1101                         xs=sk_X509_value(ctx->chain,n);
1102                         }
1103                 }
1104
1105 /*      ctx->error=0;  not needed */
1106         while (n >= 0)
1107                 {
1108                 ctx->error_depth=n;
1109                 if (!xs->valid)
1110                         {
1111                         if ((pkey=X509_get_pubkey(xi)) == NULL)
1112                                 {
1113                                 ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1114                                 ctx->current_cert=xi;
1115                                 ok=(*cb)(0,ctx);
1116                                 if (!ok) goto end;
1117                                 }
1118                         else if (X509_verify(xs,pkey) <= 0)
1119                                 /* XXX  For the final trusted self-signed cert,
1120                                  * this is a waste of time.  That check should
1121                                  * optional so that e.g. 'openssl x509' can be
1122                                  * used to detect invalid self-signatures, but
1123                                  * we don't verify again and again in SSL
1124                                  * handshakes and the like once the cert has
1125                                  * been declared trusted. */
1126                                 {
1127                                 ctx->error=X509_V_ERR_CERT_SIGNATURE_FAILURE;
1128                                 ctx->current_cert=xs;
1129                                 ok=(*cb)(0,ctx);
1130                                 if (!ok)
1131                                         {
1132                                         EVP_PKEY_free(pkey);
1133                                         goto end;
1134                                         }
1135                                 }
1136                         EVP_PKEY_free(pkey);
1137                         pkey=NULL;
1138                         }
1139
1140                 xs->valid = 1;
1141
1142                 ok = check_cert_time(ctx, xs);
1143                 if (!ok)
1144                         goto end;
1145
1146                 /* The last error (if any) is still in the error value */
1147                 ctx->current_issuer=xi;
1148                 ctx->current_cert=xs;
1149                 ok=(*cb)(1,ctx);
1150                 if (!ok) goto end;
1151
1152                 n--;
1153                 if (n >= 0)
1154                         {
1155                         xi=xs;
1156                         xs=sk_X509_value(ctx->chain,n);
1157                         }
1158                 }
1159         ok=1;
1160 end:
1161         return ok;
1162         }
1163
1164 int X509_cmp_current_time(const ASN1_TIME *ctm)
1165 {
1166         return X509_cmp_time(ctm, NULL);
1167 }
1168
1169 int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
1170         {
1171         char *str;
1172         ASN1_TIME atm;
1173         long offset;
1174         char buff1[24],buff2[24],*p;
1175         int i,j;
1176
1177         p=buff1;
1178         i=ctm->length;
1179         str=(char *)ctm->data;
1180         if (ctm->type == V_ASN1_UTCTIME)
1181                 {
1182                 if ((i < 11) || (i > 17)) return 0;
1183                 memcpy(p,str,10);
1184                 p+=10;
1185                 str+=10;
1186                 }
1187         else
1188                 {
1189                 if (i < 13) return 0;
1190                 memcpy(p,str,12);
1191                 p+=12;
1192                 str+=12;
1193                 }
1194
1195         if ((*str == 'Z') || (*str == '-') || (*str == '+'))
1196                 { *(p++)='0'; *(p++)='0'; }
1197         else
1198                 { 
1199                 *(p++)= *(str++);
1200                 *(p++)= *(str++);
1201                 /* Skip any fractional seconds... */
1202                 if (*str == '.')
1203                         {
1204                         str++;
1205                         while ((*str >= '0') && (*str <= '9')) str++;
1206                         }
1207                 
1208                 }
1209         *(p++)='Z';
1210         *(p++)='\0';
1211
1212         if (*str == 'Z')
1213                 offset=0;
1214         else
1215                 {
1216                 if ((*str != '+') && (*str != '-'))
1217                         return 0;
1218                 offset=((str[1]-'0')*10+(str[2]-'0'))*60;
1219                 offset+=(str[3]-'0')*10+(str[4]-'0');
1220                 if (*str == '-')
1221                         offset= -offset;
1222                 }
1223         atm.type=ctm->type;
1224         atm.length=sizeof(buff2);
1225         atm.data=(unsigned char *)buff2;
1226
1227         if (X509_time_adj(&atm,-offset*60, cmp_time) == NULL)
1228                 return 0;
1229
1230         if (ctm->type == V_ASN1_UTCTIME)
1231                 {
1232                 i=(buff1[0]-'0')*10+(buff1[1]-'0');
1233                 if (i < 50) i+=100; /* cf. RFC 2459 */
1234                 j=(buff2[0]-'0')*10+(buff2[1]-'0');
1235                 if (j < 50) j+=100;
1236
1237                 if (i < j) return -1;
1238                 if (i > j) return 1;
1239                 }
1240         i=strcmp(buff1,buff2);
1241         if (i == 0) /* wait a second then return younger :-) */
1242                 return -1;
1243         else
1244                 return i;
1245         }
1246
1247 ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
1248 {
1249         return X509_time_adj(s, adj, NULL);
1250 }
1251
1252 ASN1_TIME *X509_time_adj(ASN1_TIME *s, long adj, time_t *in_tm)
1253         {
1254         time_t t;
1255         int type = -1;
1256
1257         if (in_tm) t = *in_tm;
1258         else time(&t);
1259
1260         t+=adj;
1261         if (s) type = s->type;
1262         if (type == V_ASN1_UTCTIME) return ASN1_UTCTIME_set(s,t);
1263         if (type == V_ASN1_GENERALIZEDTIME) return ASN1_GENERALIZEDTIME_set(s, t);
1264         return ASN1_TIME_set(s, t);
1265         }
1266
1267 int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
1268         {
1269         EVP_PKEY *ktmp=NULL,*ktmp2;
1270         int i,j;
1271
1272         if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey)) return 1;
1273
1274         for (i=0; i<sk_X509_num(chain); i++)
1275                 {
1276                 ktmp=X509_get_pubkey(sk_X509_value(chain,i));
1277                 if (ktmp == NULL)
1278                         {
1279                         X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
1280                         return 0;
1281                         }
1282                 if (!EVP_PKEY_missing_parameters(ktmp))
1283                         break;
1284                 else
1285                         {
1286                         EVP_PKEY_free(ktmp);
1287                         ktmp=NULL;
1288                         }
1289                 }
1290         if (ktmp == NULL)
1291                 {
1292                 X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
1293                 return 0;
1294                 }
1295
1296         /* first, populate the other certs */
1297         for (j=i-1; j >= 0; j--)
1298                 {
1299                 ktmp2=X509_get_pubkey(sk_X509_value(chain,j));
1300                 EVP_PKEY_copy_parameters(ktmp2,ktmp);
1301                 EVP_PKEY_free(ktmp2);
1302                 }
1303         
1304         if (pkey != NULL) EVP_PKEY_copy_parameters(pkey,ktmp);
1305         EVP_PKEY_free(ktmp);
1306         return 1;
1307         }
1308
1309 int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
1310              CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
1311         {
1312         /* This function is (usually) called only once, by
1313          * SSL_get_ex_data_X509_STORE_CTX_idx (ssl/ssl_cert.c). */
1314         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509_STORE_CTX, argl, argp,
1315                         new_func, dup_func, free_func);
1316         }
1317
1318 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
1319         {
1320         return CRYPTO_set_ex_data(&ctx->ex_data,idx,data);
1321         }
1322
1323 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
1324         {
1325         return CRYPTO_get_ex_data(&ctx->ex_data,idx);
1326         }
1327
1328 int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
1329         {
1330         return ctx->error;
1331         }
1332
1333 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
1334         {
1335         ctx->error=err;
1336         }
1337
1338 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
1339         {
1340         return ctx->error_depth;
1341         }
1342
1343 X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
1344         {
1345         return ctx->current_cert;
1346         }
1347
1348 STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx)
1349         {
1350         return ctx->chain;
1351         }
1352
1353 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
1354         {
1355         int i;
1356         X509 *x;
1357         STACK_OF(X509) *chain;
1358         if (!ctx->chain || !(chain = sk_X509_dup(ctx->chain))) return NULL;
1359         for (i = 0; i < sk_X509_num(chain); i++)
1360                 {
1361                 x = sk_X509_value(chain, i);
1362                 CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
1363                 }
1364         return chain;
1365         }
1366
1367 void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
1368         {
1369         ctx->cert=x;
1370         }
1371
1372 void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
1373         {
1374         ctx->untrusted=sk;
1375         }
1376
1377 void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
1378         {
1379         ctx->crls=sk;
1380         }
1381
1382 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
1383         {
1384         return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
1385         }
1386
1387 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
1388         {
1389         return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
1390         }
1391
1392 /* This function is used to set the X509_STORE_CTX purpose and trust
1393  * values. This is intended to be used when another structure has its
1394  * own trust and purpose values which (if set) will be inherited by
1395  * the ctx. If they aren't set then we will usually have a default
1396  * purpose in mind which should then be used to set the trust value.
1397  * An example of this is SSL use: an SSL structure will have its own
1398  * purpose and trust settings which the application can set: if they
1399  * aren't set then we use the default of SSL client/server.
1400  */
1401
1402 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
1403                                 int purpose, int trust)
1404 {
1405         int idx;
1406         /* If purpose not set use default */
1407         if (!purpose) purpose = def_purpose;
1408         /* If we have a purpose then check it is valid */
1409         if (purpose)
1410                 {
1411                 X509_PURPOSE *ptmp;
1412                 idx = X509_PURPOSE_get_by_id(purpose);
1413                 if (idx == -1)
1414                         {
1415                         X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1416                                                 X509_R_UNKNOWN_PURPOSE_ID);
1417                         return 0;
1418                         }
1419                 ptmp = X509_PURPOSE_get0(idx);
1420                 if (ptmp->trust == X509_TRUST_DEFAULT)
1421                         {
1422                         idx = X509_PURPOSE_get_by_id(def_purpose);
1423                         if (idx == -1)
1424                                 {
1425                                 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1426                                                 X509_R_UNKNOWN_PURPOSE_ID);
1427                                 return 0;
1428                                 }
1429                         ptmp = X509_PURPOSE_get0(idx);
1430                         }
1431                 /* If trust not set then get from purpose default */
1432                 if (!trust) trust = ptmp->trust;
1433                 }
1434         if (trust)
1435                 {
1436                 idx = X509_TRUST_get_by_id(trust);
1437                 if (idx == -1)
1438                         {
1439                         X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1440                                                 X509_R_UNKNOWN_TRUST_ID);
1441                         return 0;
1442                         }
1443                 }
1444
1445         if (purpose && !ctx->param->purpose) ctx->param->purpose = purpose;
1446         if (trust && !ctx->param->trust) ctx->param->trust = trust;
1447         return 1;
1448 }
1449
1450 X509_STORE_CTX *X509_STORE_CTX_new(void)
1451 {
1452         X509_STORE_CTX *ctx;
1453         ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX));
1454         if (!ctx)
1455                 {
1456                 X509err(X509_F_X509_STORE_CTX_NEW,ERR_R_MALLOC_FAILURE);
1457                 return NULL;
1458                 }
1459         memset(ctx, 0, sizeof(X509_STORE_CTX));
1460         return ctx;
1461 }
1462
1463 void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
1464 {
1465         X509_STORE_CTX_cleanup(ctx);
1466         OPENSSL_free(ctx);
1467 }
1468
1469 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
1470              STACK_OF(X509) *chain)
1471         {
1472         int ret = 1;
1473         ctx->ctx=store;
1474         ctx->current_method=0;
1475         ctx->cert=x509;
1476         ctx->untrusted=chain;
1477         ctx->crls = NULL;
1478         ctx->last_untrusted=0;
1479         ctx->other_ctx=NULL;
1480         ctx->valid=0;
1481         ctx->chain=NULL;
1482         ctx->error=0;
1483         ctx->explicit_policy=0;
1484         ctx->error_depth=0;
1485         ctx->current_cert=NULL;
1486         ctx->current_issuer=NULL;
1487         ctx->tree = NULL;
1488
1489         ctx->param = X509_VERIFY_PARAM_new();
1490
1491         if (!ctx->param)
1492                 {
1493                 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
1494                 return 0;
1495                 }
1496
1497         /* Inherit callbacks and flags from X509_STORE if not set
1498          * use defaults.
1499          */
1500
1501
1502         if (store)
1503                 ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
1504         else
1505                 ctx->param->flags |= X509_VP_FLAG_DEFAULT|X509_VP_FLAG_ONCE;
1506
1507         if (store)
1508                 {
1509                 ctx->verify_cb = store->verify_cb;
1510                 ctx->cleanup = store->cleanup;
1511                 }
1512         else
1513                 ctx->cleanup = 0;
1514
1515         if (ret)
1516                 ret = X509_VERIFY_PARAM_inherit(ctx->param,
1517                                         X509_VERIFY_PARAM_lookup("default"));
1518
1519         if (ret == 0)
1520                 {
1521                 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
1522                 return 0;
1523                 }
1524
1525         if (store && store->check_issued)
1526                 ctx->check_issued = store->check_issued;
1527         else
1528                 ctx->check_issued = check_issued;
1529
1530         if (store && store->get_issuer)
1531                 ctx->get_issuer = store->get_issuer;
1532         else
1533                 ctx->get_issuer = X509_STORE_CTX_get1_issuer;
1534
1535         if (store && store->verify_cb)
1536                 ctx->verify_cb = store->verify_cb;
1537         else
1538                 ctx->verify_cb = null_callback;
1539
1540         if (store && store->verify)
1541                 ctx->verify = store->verify;
1542         else
1543                 ctx->verify = internal_verify;
1544
1545         if (store && store->check_revocation)
1546                 ctx->check_revocation = store->check_revocation;
1547         else
1548                 ctx->check_revocation = check_revocation;
1549
1550         if (store && store->get_crl)
1551                 ctx->get_crl = store->get_crl;
1552         else
1553                 ctx->get_crl = get_crl;
1554
1555         if (store && store->check_crl)
1556                 ctx->check_crl = store->check_crl;
1557         else
1558                 ctx->check_crl = check_crl;
1559
1560         if (store && store->cert_crl)
1561                 ctx->cert_crl = store->cert_crl;
1562         else
1563                 ctx->cert_crl = cert_crl;
1564
1565         if (store && store->lookup_certs)
1566                 ctx->lookup_certs = store->lookup_certs;
1567         else
1568                 ctx->lookup_certs = X509_STORE_get1_certs;
1569
1570         if (store && store->lookup_crls)
1571                 ctx->lookup_crls = store->lookup_crls;
1572         else
1573                 ctx->lookup_crls = X509_STORE_get1_crls;
1574
1575         ctx->check_policy = check_policy;
1576
1577
1578         /* This memset() can't make any sense anyway, so it's removed. As
1579          * X509_STORE_CTX_cleanup does a proper "free" on the ex_data, we put a
1580          * corresponding "new" here and remove this bogus initialisation. */
1581         /* memset(&(ctx->ex_data),0,sizeof(CRYPTO_EX_DATA)); */
1582         if(!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
1583                                 &(ctx->ex_data)))
1584                 {
1585                 OPENSSL_free(ctx);
1586                 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
1587                 return 0;
1588                 }
1589         return 1;
1590         }
1591
1592 /* Set alternative lookup method: just a STACK of trusted certificates.
1593  * This avoids X509_STORE nastiness where it isn't needed.
1594  */
1595
1596 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
1597 {
1598         ctx->other_ctx = sk;
1599         ctx->get_issuer = get_issuer_sk;
1600 }
1601
1602 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
1603         {
1604         if (ctx->cleanup) ctx->cleanup(ctx);
1605         if (ctx->param != NULL)
1606                 {
1607                 X509_VERIFY_PARAM_free(ctx->param);
1608                 ctx->param=NULL;
1609                 }
1610         if (ctx->tree != NULL)
1611                 {
1612                 X509_policy_tree_free(ctx->tree);
1613                 ctx->tree=NULL;
1614                 }
1615         if (ctx->chain != NULL)
1616                 {
1617                 sk_X509_pop_free(ctx->chain,X509_free);
1618                 ctx->chain=NULL;
1619                 }
1620         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
1621         memset(&ctx->ex_data,0,sizeof(CRYPTO_EX_DATA));
1622         }
1623
1624 void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
1625         {
1626         X509_VERIFY_PARAM_set_depth(ctx->param, depth);
1627         }
1628
1629 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
1630         {
1631         X509_VERIFY_PARAM_set_flags(ctx->param, flags);
1632         }
1633
1634 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags, time_t t)
1635         {
1636         X509_VERIFY_PARAM_set_time(ctx->param, t);
1637         }
1638
1639 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
1640                                   int (*verify_cb)(int, X509_STORE_CTX *))
1641         {
1642         ctx->verify_cb=verify_cb;
1643         }
1644
1645 X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx)
1646         {
1647         return ctx->tree;
1648         }
1649
1650 int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx)
1651         {
1652         return ctx->explicit_policy;
1653         }
1654
1655 int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
1656         {
1657         const X509_VERIFY_PARAM *param;
1658         param = X509_VERIFY_PARAM_lookup(name);
1659         if (!param)
1660                 return 0;
1661         return X509_VERIFY_PARAM_inherit(ctx->param, param);
1662         }
1663
1664 X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx)
1665         {
1666         return ctx->param;
1667         }
1668
1669 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
1670         {
1671         if (ctx->param)
1672                 X509_VERIFY_PARAM_free(ctx->param);
1673         ctx->param = param;
1674         }
1675
1676 IMPLEMENT_STACK_OF(X509)
1677 IMPLEMENT_ASN1_SET_OF(X509)
1678
1679 IMPLEMENT_STACK_OF(X509_NAME)
1680
1681 IMPLEMENT_STACK_OF(X509_ATTRIBUTE)
1682 IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE)