3da2490fea29934f4acb37e8355b31c7b48c3bd8
[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 internal_verify(X509_STORE_CTX *ctx);
82 const char *X509_version="X.509" OPENSSL_VERSION_PTEXT;
83
84
85 static int null_callback(int ok, X509_STORE_CTX *e)
86         {
87         return ok;
88         }
89
90 #if 0
91 static int x509_subject_cmp(X509 **a, X509 **b)
92         {
93         return X509_subject_name_cmp(*a,*b);
94         }
95 #endif
96
97 int X509_verify_cert(X509_STORE_CTX *ctx)
98         {
99         X509 *x,*xtmp,*chain_ss=NULL;
100         X509_NAME *xn;
101         int bad_chain = 0;
102         X509_VERIFY_PARAM *param = ctx->param;
103         int depth,i,ok=0;
104         int num;
105         int (*cb)(int ok,X509_STORE_CTX *ctx);
106         STACK_OF(X509) *sktmp=NULL;
107         if (ctx->cert == NULL)
108                 {
109                 X509err(X509_F_X509_VERIFY_CERT,X509_R_NO_CERT_SET_FOR_US_TO_VERIFY);
110                 return -1;
111                 }
112
113         cb=ctx->verify_cb;
114
115         /* first we make sure the chain we are going to build is
116          * present and that the first entry is in place */
117         if (ctx->chain == NULL)
118                 {
119                 if (    ((ctx->chain=sk_X509_new_null()) == NULL) ||
120                         (!sk_X509_push(ctx->chain,ctx->cert)))
121                         {
122                         X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
123                         goto end;
124                         }
125                 CRYPTO_add(&ctx->cert->references,1,CRYPTO_LOCK_X509);
126                 ctx->last_untrusted=1;
127                 }
128
129         /* We use a temporary STACK so we can chop and hack at it */
130         if (ctx->untrusted != NULL
131             && (sktmp=sk_X509_dup(ctx->untrusted)) == NULL)
132                 {
133                 X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
134                 goto end;
135                 }
136
137         num=sk_X509_num(ctx->chain);
138         x=sk_X509_value(ctx->chain,num-1);
139         depth=param->depth;
140
141
142         for (;;)
143                 {
144                 /* If we have enough, we break */
145                 if (depth < num) break; /* FIXME: If this happens, we should take
146                                          * note of it and, if appropriate, use the
147                                          * X509_V_ERR_CERT_CHAIN_TOO_LONG error
148                                          * code later.
149                                          */
150
151                 /* If we are self signed, we break */
152                 xn=X509_get_issuer_name(x);
153                 if (ctx->check_issued(ctx, x,x)) break;
154
155                 /* If we were passed a cert chain, use it first */
156                 if (ctx->untrusted != NULL)
157                         {
158                         xtmp=find_issuer(ctx, sktmp,x);
159                         if (xtmp != NULL)
160                                 {
161                                 if (!sk_X509_push(ctx->chain,xtmp))
162                                         {
163                                         X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
164                                         goto end;
165                                         }
166                                 CRYPTO_add(&xtmp->references,1,CRYPTO_LOCK_X509);
167                                 sk_X509_delete_ptr(sktmp,xtmp);
168                                 ctx->last_untrusted++;
169                                 x=xtmp;
170                                 num++;
171                                 /* reparse the full chain for
172                                  * the next one */
173                                 continue;
174                                 }
175                         }
176                 break;
177                 }
178
179         /* at this point, chain should contain a list of untrusted
180          * certificates.  We now need to add at least one trusted one,
181          * if possible, otherwise we complain. */
182
183         /* Examine last certificate in chain and see if it
184          * is self signed.
185          */
186
187         i=sk_X509_num(ctx->chain);
188         x=sk_X509_value(ctx->chain,i-1);
189         xn = X509_get_subject_name(x);
190         if (ctx->check_issued(ctx, x, x))
191                 {
192                 /* we have a self signed certificate */
193                 if (sk_X509_num(ctx->chain) == 1)
194                         {
195                         /* We have a single self signed certificate: see if
196                          * we can find it in the store. We must have an exact
197                          * match to avoid possible impersonation.
198                          */
199                         ok = ctx->get_issuer(&xtmp, ctx, x);
200                         if ((ok <= 0) || X509_cmp(x, xtmp)) 
201                                 {
202                                 ctx->error=X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT;
203                                 ctx->current_cert=x;
204                                 ctx->error_depth=i-1;
205                                 if (ok == 1) X509_free(xtmp);
206                                 bad_chain = 1;
207                                 ok=cb(0,ctx);
208                                 if (!ok) goto end;
209                                 }
210                         else 
211                                 {
212                                 /* We have a match: replace certificate with store version
213                                  * so we get any trust settings.
214                                  */
215                                 X509_free(x);
216                                 x = xtmp;
217                                 sk_X509_set(ctx->chain, i - 1, x);
218                                 ctx->last_untrusted=0;
219                                 }
220                         }
221                 else
222                         {
223                         /* extract and save self signed certificate for later use */
224                         chain_ss=sk_X509_pop(ctx->chain);
225                         ctx->last_untrusted--;
226                         num--;
227                         x=sk_X509_value(ctx->chain,num-1);
228                         }
229                 }
230
231         /* We now lookup certs from the certificate store */
232         for (;;)
233                 {
234                 /* If we have enough, we break */
235                 if (depth < num) break;
236
237                 /* If we are self signed, we break */
238                 xn=X509_get_issuer_name(x);
239                 if (ctx->check_issued(ctx,x,x)) break;
240
241                 ok = ctx->get_issuer(&xtmp, ctx, x);
242
243                 if (ok < 0) return ok;
244                 if (ok == 0) break;
245
246                 x = xtmp;
247                 if (!sk_X509_push(ctx->chain,x))
248                         {
249                         X509_free(xtmp);
250                         X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
251                         return 0;
252                         }
253                 num++;
254                 }
255
256         /* we now have our chain, lets check it... */
257         xn=X509_get_issuer_name(x);
258
259         /* Is last certificate looked up self signed? */
260         if (!ctx->check_issued(ctx,x,x))
261                 {
262                 if ((chain_ss == NULL) || !ctx->check_issued(ctx, x, chain_ss))
263                         {
264                         if (ctx->last_untrusted >= num)
265                                 ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY;
266                         else
267                                 ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT;
268                         ctx->current_cert=x;
269                         }
270                 else
271                         {
272
273                         sk_X509_push(ctx->chain,chain_ss);
274                         num++;
275                         ctx->last_untrusted=num;
276                         ctx->current_cert=chain_ss;
277                         ctx->error=X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN;
278                         chain_ss=NULL;
279                         }
280
281                 ctx->error_depth=num-1;
282                 bad_chain = 1;
283                 ok=cb(0,ctx);
284                 if (!ok) goto end;
285                 }
286
287         /* We have the chain complete: now we need to check its purpose */
288         ok = check_chain_extensions(ctx);
289
290         if (!ok) goto end;
291
292         /* The chain extensions are OK: check trust */
293
294         if (param->trust > 0) ok = check_trust(ctx);
295
296         if (!ok) goto end;
297
298         /* We may as well copy down any DSA parameters that are required */
299         X509_get_pubkey_parameters(NULL,ctx->chain);
300
301         /* Check revocation status: we do this after copying parameters
302          * because they may be needed for CRL signature verification.
303          */
304
305         ok = ctx->check_revocation(ctx);
306         if(!ok) goto end;
307
308         /* At this point, we have a chain and need to verify it */
309         if (ctx->verify != NULL)
310                 ok=ctx->verify(ctx);
311         else
312                 ok=internal_verify(ctx);
313         if(!ok) goto end;
314
315         /* If we get this far evaluate policies */
316         if (!bad_chain && (ctx->param->flags & X509_V_FLAG_POLICY_CHECK))
317                 ok = ctx->check_policy(ctx);
318         if(!ok) goto end;
319         if (0)
320                 {
321 end:
322                 X509_get_pubkey_parameters(NULL,ctx->chain);
323                 }
324         if (sktmp != NULL) sk_X509_free(sktmp);
325         if (chain_ss != NULL) X509_free(chain_ss);
326         return ok;
327         }
328
329
330 /* Given a STACK_OF(X509) find the issuer of cert (if any)
331  */
332
333 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
334 {
335         int i;
336         X509 *issuer;
337         for (i = 0; i < sk_X509_num(sk); i++)
338                 {
339                 issuer = sk_X509_value(sk, i);
340                 if (ctx->check_issued(ctx, x, issuer))
341                         return issuer;
342                 }
343         return NULL;
344 }
345
346 /* Given a possible certificate and issuer check them */
347
348 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
349 {
350         int ret;
351         ret = X509_check_issued(issuer, x);
352         if (ret == X509_V_OK)
353                 return 1;
354         /* If we haven't asked for issuer errors don't set ctx */
355         if (!(ctx->param->flags & X509_V_FLAG_CB_ISSUER_CHECK))
356                 return 0;
357
358         ctx->error = ret;
359         ctx->current_cert = x;
360         ctx->current_issuer = issuer;
361         return ctx->verify_cb(0, ctx);
362         return 0;
363 }
364
365 /* Alternative lookup method: look from a STACK stored in other_ctx */
366
367 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
368 {
369         *issuer = find_issuer(ctx, ctx->other_ctx, x);
370         if (*issuer)
371                 {
372                 CRYPTO_add(&(*issuer)->references,1,CRYPTO_LOCK_X509);
373                 return 1;
374                 }
375         else
376                 return 0;
377 }
378         
379
380 /* Check a certificate chains extensions for consistency
381  * with the supplied purpose
382  */
383
384 static int check_chain_extensions(X509_STORE_CTX *ctx)
385 {
386 #ifdef OPENSSL_NO_CHAIN_VERIFY
387         return 1;
388 #else
389         int i, ok=0, must_be_ca;
390         X509 *x;
391         int (*cb)(int ok,X509_STORE_CTX *ctx);
392         int proxy_path_length = 0;
393         cb=ctx->verify_cb;
394         int allow_proxy_certs = !!(ctx->flags & X509_V_FLAG_ALLOW_PROXY_CERTS);
395
396         /* must_be_ca can have 1 of 3 values:
397            -1: we accept both CA and non-CA certificates, to allow direct
398                use of self-signed certificates (which are marked as CA).
399            0:  we only accept non-CA certificates.  This is currently not
400                used, but the possibility is present for future extensions.
401            1:  we only accept CA certificates.  This is currently used for
402                all certificates in the chain except the leaf certificate.
403         */
404         must_be_ca = -1;
405
406         /* A hack to keep people who don't want to modify their software
407            happy */
408         if (getenv("OPENSSL_ALLOW_PROXY_CERTS"))
409                 allow_proxy_certs = 1;
410
411         /* Check all untrusted certificates */
412         for (i = 0; i < ctx->last_untrusted; i++)
413                 {
414                 int ret;
415                 x = sk_X509_value(ctx->chain, i);
416                 if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
417                         && (x->ex_flags & EXFLAG_CRITICAL))
418                         {
419                         ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION;
420                         ctx->error_depth = i;
421                         ctx->current_cert = x;
422                         ok=cb(0,ctx);
423                         if (!ok) goto end;
424                         }
425                 if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY))
426                         {
427                         ctx->error = X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED;
428                         ctx->error_depth = i;
429                         ctx->current_cert = x;
430                         ok=cb(0,ctx);
431                         if (!ok) goto end;
432                         }
433                 ret = X509_check_ca(x);
434                 switch(must_be_ca)
435                         {
436                 case -1:
437                         if ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
438                                 && (ret != 1) && (ret != 0))
439                                 {
440                                 ret = 0;
441                                 ctx->error = X509_V_ERR_INVALID_CA;
442                                 }
443                         else
444                                 ret = 1;
445                         break;
446                 case 0:
447                         if (ret != 0)
448                                 {
449                                 ret = 0;
450                                 ctx->error = X509_V_ERR_INVALID_NON_CA;
451                                 }
452                         else
453                                 ret = 1;
454                         break;
455                 default:
456                         if ((ret == 0)
457                                 || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
458                                         && (ret != 1)))
459                                 {
460                                 ret = 0;
461                                 ctx->error = X509_V_ERR_INVALID_CA;
462                                 }
463                         else
464                                 ret = 1;
465                         break;
466                         }
467                 if (ret == 0)
468                         {
469                         ctx->error_depth = i;
470                         ctx->current_cert = x;
471                         ok=cb(0,ctx);
472                         if (!ok) goto end;
473                         }
474                 if (ctx->param->purpose > 0)
475                         {
476                         ret = X509_check_purpose(x, ctx->param->purpose,
477                                 must_be_ca > 0);
478                         if ((ret == 0)
479                                 || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
480                                         && (ret != 1)))
481                                 {
482                                 ctx->error = X509_V_ERR_INVALID_PURPOSE;
483                                 ctx->error_depth = i;
484                                 ctx->current_cert = x;
485                                 ok=cb(0,ctx);
486                                 if (!ok) goto end;
487                                 }
488                         }
489                 /* Check pathlen */
490                 if ((i > 1) && (x->ex_pathlen != -1)
491                            && (i > (x->ex_pathlen + proxy_path_length + 1)))
492                         {
493                         ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED;
494                         ctx->error_depth = i;
495                         ctx->current_cert = x;
496                         ok=cb(0,ctx);
497                         if (!ok) goto end;
498                         }
499                 /* If this certificate is a proxy certificate, the next
500                    certificate must be another proxy certificate or a EE
501                    certificate.  If not, the next certificate must be a
502                    CA certificate.  */
503                 if (x->ex_flags & EXFLAG_PROXY)
504                         {
505                         if (x->ex_pcpathlen != -1 && i > x->ex_pcpathlen)
506                                 {
507                                 ctx->error =
508                                         X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED;
509                                 ctx->error_depth = i;
510                                 ctx->current_cert = x;
511                                 ok=cb(0,ctx);
512                                 if (!ok) goto end;
513                                 }
514                         proxy_path_length++;
515                         must_be_ca = 0;
516                         }
517                 else
518                         must_be_ca = 1;
519                 }
520         ok = 1;
521  end:
522         return ok;
523 #endif
524 }
525
526 static int check_trust(X509_STORE_CTX *ctx)
527 {
528 #ifdef OPENSSL_NO_CHAIN_VERIFY
529         return 1;
530 #else
531         int i, ok;
532         X509 *x;
533         int (*cb)(int ok,X509_STORE_CTX *ctx);
534         cb=ctx->verify_cb;
535 /* For now just check the last certificate in the chain */
536         i = sk_X509_num(ctx->chain) - 1;
537         x = sk_X509_value(ctx->chain, i);
538         ok = X509_check_trust(x, ctx->param->trust, 0);
539         if (ok == X509_TRUST_TRUSTED)
540                 return 1;
541         ctx->error_depth = i;
542         ctx->current_cert = x;
543         if (ok == X509_TRUST_REJECTED)
544                 ctx->error = X509_V_ERR_CERT_REJECTED;
545         else
546                 ctx->error = X509_V_ERR_CERT_UNTRUSTED;
547         ok = cb(0, ctx);
548         return ok;
549 #endif
550 }
551
552 static int check_revocation(X509_STORE_CTX *ctx)
553         {
554         int i, last, ok;
555         if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
556                 return 1;
557         if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
558                 last = sk_X509_num(ctx->chain) - 1;
559         else
560                 last = 0;
561         for(i = 0; i <= last; i++)
562                 {
563                 ctx->error_depth = i;
564                 ok = check_cert(ctx);
565                 if (!ok) return ok;
566                 }
567         return 1;
568         }
569
570 static int check_cert(X509_STORE_CTX *ctx)
571         {
572         X509_CRL *crl = NULL;
573         X509 *x;
574         int ok, cnum;
575         cnum = ctx->error_depth;
576         x = sk_X509_value(ctx->chain, cnum);
577         ctx->current_cert = x;
578         /* Try to retrieve relevant CRL */
579         ok = ctx->get_crl(ctx, &crl, x);
580         /* If error looking up CRL, nothing we can do except
581          * notify callback
582          */
583         if(!ok)
584                 {
585                 ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
586                 ok = ctx->verify_cb(0, ctx);
587                 goto err;
588                 }
589         ctx->current_crl = crl;
590         ok = ctx->check_crl(ctx, crl);
591         if (!ok) goto err;
592         ok = ctx->cert_crl(ctx, crl, x);
593         err:
594         ctx->current_crl = NULL;
595         X509_CRL_free(crl);
596         return ok;
597
598         }
599
600 /* Check CRL times against values in X509_STORE_CTX */
601
602 static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
603         {
604         time_t *ptime;
605         int i;
606         ctx->current_crl = crl;
607         if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
608                 ptime = &ctx->param->check_time;
609         else
610                 ptime = NULL;
611
612         i=X509_cmp_time(X509_CRL_get_lastUpdate(crl), ptime);
613         if (i == 0)
614                 {
615                 ctx->error=X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD;
616                 if (!notify || !ctx->verify_cb(0, ctx))
617                         return 0;
618                 }
619
620         if (i > 0)
621                 {
622                 ctx->error=X509_V_ERR_CRL_NOT_YET_VALID;
623                 if (!notify || !ctx->verify_cb(0, ctx))
624                         return 0;
625                 }
626
627         if(X509_CRL_get_nextUpdate(crl))
628                 {
629                 i=X509_cmp_time(X509_CRL_get_nextUpdate(crl), ptime);
630
631                 if (i == 0)
632                         {
633                         ctx->error=X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD;
634                         if (!notify || !ctx->verify_cb(0, ctx))
635                                 return 0;
636                         }
637
638                 if (i < 0)
639                         {
640                         ctx->error=X509_V_ERR_CRL_HAS_EXPIRED;
641                         if (!notify || !ctx->verify_cb(0, ctx))
642                                 return 0;
643                         }
644                 }
645
646         ctx->current_crl = NULL;
647
648         return 1;
649         }
650
651 /* Lookup CRLs from the supplied list. Look for matching isser name
652  * and validity. If we can't find a valid CRL return the last one
653  * with matching name. This gives more meaningful error codes. Otherwise
654  * we'd get a CRL not found error if a CRL existed with matching name but
655  * was invalid.
656  */
657
658 static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl,
659                         X509_NAME *nm, STACK_OF(X509_CRL) *crls)
660         {
661         int i;
662         X509_CRL *crl, *best_crl = NULL;
663         for (i = 0; i < sk_X509_CRL_num(crls); i++)
664                 {
665                 crl = sk_X509_CRL_value(crls, i);
666                 if (X509_NAME_cmp(nm, X509_CRL_get_issuer(crl)))
667                         continue;
668                 if (check_crl_time(ctx, crl, 0))
669                         {
670                         *pcrl = crl;
671                         CRYPTO_add(&crl->references, 1, CRYPTO_LOCK_X509);
672                         return 1;
673                         }
674                 best_crl = crl;
675                 }
676         if (best_crl)
677                 {
678                 *pcrl = best_crl;
679                 CRYPTO_add(&best_crl->references, 1, CRYPTO_LOCK_X509);
680                 }
681                 
682         return 0;
683         }
684
685 /* Retrieve CRL corresponding to certificate: currently just a
686  * subject lookup: maybe use AKID later...
687  */
688 static int get_crl(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509 *x)
689         {
690         int ok;
691         X509_CRL *crl = NULL;
692         X509_OBJECT xobj;
693         X509_NAME *nm;
694         nm = X509_get_issuer_name(x);
695         ok = get_crl_sk(ctx, &crl, nm, ctx->crls);
696         if (ok)
697                 {
698                 *pcrl = crl;
699                 return 1;
700                 }
701
702         ok = X509_STORE_get_by_subject(ctx, X509_LU_CRL, nm, &xobj);
703
704         if (!ok)
705                 {
706                 /* If we got a near match from get_crl_sk use that */
707                 if (crl)
708                         {
709                         *pcrl = crl;
710                         return 1;
711                         }
712                 return 0;
713                 }
714
715         *pcrl = xobj.data.crl;
716         if (crl)
717                 X509_CRL_free(crl);
718         return 1;
719         }
720
721 /* Check CRL validity */
722 static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
723         {
724         X509 *issuer = NULL;
725         EVP_PKEY *ikey = NULL;
726         int ok = 0, chnum, cnum;
727         cnum = ctx->error_depth;
728         chnum = sk_X509_num(ctx->chain) - 1;
729         /* Find CRL issuer: if not last certificate then issuer
730          * is next certificate in chain.
731          */
732         if(cnum < chnum)
733                 issuer = sk_X509_value(ctx->chain, cnum + 1);
734         else
735                 {
736                 issuer = sk_X509_value(ctx->chain, chnum);
737                 /* If not self signed, can't check signature */
738                 if(!ctx->check_issued(ctx, issuer, issuer))
739                         {
740                         ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER;
741                         ok = ctx->verify_cb(0, ctx);
742                         if(!ok) goto err;
743                         }
744                 }
745
746         if(issuer)
747                 {
748                 /* Check for cRLSign bit if keyUsage present */
749                 if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
750                         !(issuer->ex_kusage & KU_CRL_SIGN))
751                         {
752                         ctx->error = X509_V_ERR_KEYUSAGE_NO_CRL_SIGN;
753                         ok = ctx->verify_cb(0, ctx);
754                         if(!ok) goto err;
755                         }
756
757                 /* Attempt to get issuer certificate public key */
758                 ikey = X509_get_pubkey(issuer);
759
760                 if(!ikey)
761                         {
762                         ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
763                         ok = ctx->verify_cb(0, ctx);
764                         if (!ok) goto err;
765                         }
766                 else
767                         {
768                         /* Verify CRL signature */
769                         if(X509_CRL_verify(crl, ikey) <= 0)
770                                 {
771                                 ctx->error=X509_V_ERR_CRL_SIGNATURE_FAILURE;
772                                 ok = ctx->verify_cb(0, ctx);
773                                 if (!ok) goto err;
774                                 }
775                         }
776                 }
777
778         if (!check_crl_time(ctx, crl, 1))
779                 goto err;
780
781         ok = 1;
782
783         err:
784         EVP_PKEY_free(ikey);
785         return ok;
786         }
787
788 /* Check certificate against CRL */
789 static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
790         {
791         int idx, ok;
792         X509_REVOKED rtmp;
793         STACK_OF(X509_EXTENSION) *exts;
794         X509_EXTENSION *ext;
795         /* Look for serial number of certificate in CRL */
796         rtmp.serialNumber = X509_get_serialNumber(x);
797         /* Sort revoked into serial number order if not already sorted.
798          * Do this under a lock to avoid race condition.
799          */
800         if (!sk_X509_REVOKED_is_sorted(crl->crl->revoked))
801                 {
802                 CRYPTO_w_lock(CRYPTO_LOCK_X509_CRL);
803                 sk_X509_REVOKED_sort(crl->crl->revoked);
804                 CRYPTO_w_unlock(CRYPTO_LOCK_X509_CRL);
805                 }
806         idx = sk_X509_REVOKED_find(crl->crl->revoked, &rtmp);
807         /* If found assume revoked: want something cleverer than
808          * this to handle entry extensions in V2 CRLs.
809          */
810         if(idx >= 0)
811                 {
812                 ctx->error = X509_V_ERR_CERT_REVOKED;
813                 ok = ctx->verify_cb(0, ctx);
814                 if (!ok) return 0;
815                 }
816
817         if (ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
818                 return 1;
819
820         /* See if we have any critical CRL extensions: since we
821          * currently don't handle any CRL extensions the CRL must be
822          * rejected. 
823          * This code accesses the X509_CRL structure directly: applications
824          * shouldn't do this.
825          */
826
827         exts = crl->crl->extensions;
828
829         for (idx = 0; idx < sk_X509_EXTENSION_num(exts); idx++)
830                 {
831                 ext = sk_X509_EXTENSION_value(exts, idx);
832                 if (ext->critical > 0)
833                         {
834                         ctx->error =
835                                 X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION;
836                         ok = ctx->verify_cb(0, ctx);
837                         if(!ok) return 0;
838                         break;
839                         }
840                 }
841         return 1;
842         }
843
844 static int check_policy(X509_STORE_CTX *ctx)
845         {
846         int ret;
847         ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
848                                 ctx->param->policies, ctx->param->flags);
849         if (ret == 0)
850                 {
851                 X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE);
852                 return 0;
853                 }
854         /* Invalid or inconsistent extensions */
855         if (ret == -1)
856                 {
857                 /* Locate certificates with bad extensions and notify
858                  * callback.
859                  */
860                 X509 *x;
861                 int i;
862                 for (i = 1; i < sk_X509_num(ctx->chain); i++)
863                         {
864                         x = sk_X509_value(ctx->chain, i);
865                         if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
866                                 continue;
867                         ctx->current_cert = x;
868                         ctx->error = X509_V_ERR_INVALID_POLICY_EXTENSION;
869                         ret = ctx->verify_cb(0, ctx);
870                         }
871                 return 1;
872                 }
873         if (ret == -2)
874                 {
875                 ctx->current_cert = NULL;
876                 ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
877                 return ctx->verify_cb(0, ctx);
878                 }
879
880         if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY)
881                 {
882                 ctx->current_cert = NULL;
883                 ctx->error = X509_V_OK;
884                 if (!ctx->verify_cb(2, ctx))
885                         return 0;
886                 }
887
888         return 1;
889         }
890
891 static int check_cert_time(X509_STORE_CTX *ctx, X509 *x)
892         {
893         time_t *ptime;
894         int i;
895
896         if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
897                 ptime = &ctx->param->check_time;
898         else
899                 ptime = NULL;
900
901         i=X509_cmp_time(X509_get_notBefore(x), ptime);
902         if (i == 0)
903                 {
904                 ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD;
905                 ctx->current_cert=x;
906                 if (!ctx->verify_cb(0, ctx))
907                         return 0;
908                 }
909
910         if (i > 0)
911                 {
912                 ctx->error=X509_V_ERR_CERT_NOT_YET_VALID;
913                 ctx->current_cert=x;
914                 if (!ctx->verify_cb(0, ctx))
915                         return 0;
916                 }
917
918         i=X509_cmp_time(X509_get_notAfter(x), ptime);
919         if (i == 0)
920                 {
921                 ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD;
922                 ctx->current_cert=x;
923                 if (!ctx->verify_cb(0, ctx))
924                         return 0;
925                 }
926
927         if (i < 0)
928                 {
929                 ctx->error=X509_V_ERR_CERT_HAS_EXPIRED;
930                 ctx->current_cert=x;
931                 if (!ctx->verify_cb(0, ctx))
932                         return 0;
933                 }
934
935         return 1;
936         }
937
938 static int internal_verify(X509_STORE_CTX *ctx)
939         {
940         int ok=0,n;
941         X509 *xs,*xi;
942         EVP_PKEY *pkey=NULL;
943         int (*cb)(int ok,X509_STORE_CTX *ctx);
944
945         cb=ctx->verify_cb;
946
947         n=sk_X509_num(ctx->chain);
948         ctx->error_depth=n-1;
949         n--;
950         xi=sk_X509_value(ctx->chain,n);
951
952         if (ctx->check_issued(ctx, xi, xi))
953                 xs=xi;
954         else
955                 {
956                 if (n <= 0)
957                         {
958                         ctx->error=X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE;
959                         ctx->current_cert=xi;
960                         ok=cb(0,ctx);
961                         goto end;
962                         }
963                 else
964                         {
965                         n--;
966                         ctx->error_depth=n;
967                         xs=sk_X509_value(ctx->chain,n);
968                         }
969                 }
970
971 /*      ctx->error=0;  not needed */
972         while (n >= 0)
973                 {
974                 ctx->error_depth=n;
975                 if (!xs->valid)
976                         {
977                         if ((pkey=X509_get_pubkey(xi)) == NULL)
978                                 {
979                                 ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
980                                 ctx->current_cert=xi;
981                                 ok=(*cb)(0,ctx);
982                                 if (!ok) goto end;
983                                 }
984                         else if (X509_verify(xs,pkey) <= 0)
985                                 /* XXX  For the final trusted self-signed cert,
986                                  * this is a waste of time.  That check should
987                                  * optional so that e.g. 'openssl x509' can be
988                                  * used to detect invalid self-signatures, but
989                                  * we don't verify again and again in SSL
990                                  * handshakes and the like once the cert has
991                                  * been declared trusted. */
992                                 {
993                                 ctx->error=X509_V_ERR_CERT_SIGNATURE_FAILURE;
994                                 ctx->current_cert=xs;
995                                 ok=(*cb)(0,ctx);
996                                 if (!ok)
997                                         {
998                                         EVP_PKEY_free(pkey);
999                                         goto end;
1000                                         }
1001                                 }
1002                         EVP_PKEY_free(pkey);
1003                         pkey=NULL;
1004                         }
1005
1006                 xs->valid = 1;
1007
1008                 if (!check_cert_time(ctx, xs))
1009                         goto end;
1010
1011                 /* The last error (if any) is still in the error value */
1012                 ctx->current_issuer=xi;
1013                 ctx->current_cert=xs;
1014                 ok=(*cb)(1,ctx);
1015                 if (!ok) goto end;
1016
1017                 n--;
1018                 if (n >= 0)
1019                         {
1020                         xi=xs;
1021                         xs=sk_X509_value(ctx->chain,n);
1022                         }
1023                 }
1024         ok=1;
1025 end:
1026         return ok;
1027         }
1028
1029 int X509_cmp_current_time(ASN1_TIME *ctm)
1030 {
1031         return X509_cmp_time(ctm, NULL);
1032 }
1033
1034 int X509_cmp_time(ASN1_TIME *ctm, time_t *cmp_time)
1035         {
1036         char *str;
1037         ASN1_TIME atm;
1038         long offset;
1039         char buff1[24],buff2[24],*p;
1040         int i,j;
1041
1042         p=buff1;
1043         i=ctm->length;
1044         str=(char *)ctm->data;
1045         if (ctm->type == V_ASN1_UTCTIME)
1046                 {
1047                 if ((i < 11) || (i > 17)) return 0;
1048                 memcpy(p,str,10);
1049                 p+=10;
1050                 str+=10;
1051                 }
1052         else
1053                 {
1054                 if (i < 13) return 0;
1055                 memcpy(p,str,12);
1056                 p+=12;
1057                 str+=12;
1058                 }
1059
1060         if ((*str == 'Z') || (*str == '-') || (*str == '+'))
1061                 { *(p++)='0'; *(p++)='0'; }
1062         else
1063                 { 
1064                 *(p++)= *(str++);
1065                 *(p++)= *(str++);
1066                 /* Skip any fractional seconds... */
1067                 if (*str == '.')
1068                         {
1069                         str++;
1070                         while ((*str >= '0') && (*str <= '9')) str++;
1071                         }
1072                 
1073                 }
1074         *(p++)='Z';
1075         *(p++)='\0';
1076
1077         if (*str == 'Z')
1078                 offset=0;
1079         else
1080                 {
1081                 if ((*str != '+') && (str[5] != '-'))
1082                         return 0;
1083                 offset=((str[1]-'0')*10+(str[2]-'0'))*60;
1084                 offset+=(str[3]-'0')*10+(str[4]-'0');
1085                 if (*str == '-')
1086                         offset= -offset;
1087                 }
1088         atm.type=ctm->type;
1089         atm.length=sizeof(buff2);
1090         atm.data=(unsigned char *)buff2;
1091
1092         if (X509_time_adj(&atm,-offset*60, cmp_time) == NULL)
1093                 return 0;
1094
1095         if (ctm->type == V_ASN1_UTCTIME)
1096                 {
1097                 i=(buff1[0]-'0')*10+(buff1[1]-'0');
1098                 if (i < 50) i+=100; /* cf. RFC 2459 */
1099                 j=(buff2[0]-'0')*10+(buff2[1]-'0');
1100                 if (j < 50) j+=100;
1101
1102                 if (i < j) return -1;
1103                 if (i > j) return 1;
1104                 }
1105         i=strcmp(buff1,buff2);
1106         if (i == 0) /* wait a second then return younger :-) */
1107                 return -1;
1108         else
1109                 return i;
1110         }
1111
1112 ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
1113 {
1114         return X509_time_adj(s, adj, NULL);
1115 }
1116
1117 ASN1_TIME *X509_time_adj(ASN1_TIME *s, long adj, time_t *in_tm)
1118         {
1119         time_t t;
1120         int type = -1;
1121
1122         if (in_tm) t = *in_tm;
1123         else time(&t);
1124
1125         t+=adj;
1126         if (s) type = s->type;
1127         if (type == V_ASN1_UTCTIME) return ASN1_UTCTIME_set(s,t);
1128         if (type == V_ASN1_GENERALIZEDTIME) return ASN1_GENERALIZEDTIME_set(s, t);
1129         return ASN1_TIME_set(s, t);
1130         }
1131
1132 int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
1133         {
1134         EVP_PKEY *ktmp=NULL,*ktmp2;
1135         int i,j;
1136
1137         if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey)) return 1;
1138
1139         for (i=0; i<sk_X509_num(chain); i++)
1140                 {
1141                 ktmp=X509_get_pubkey(sk_X509_value(chain,i));
1142                 if (ktmp == NULL)
1143                         {
1144                         X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
1145                         return 0;
1146                         }
1147                 if (!EVP_PKEY_missing_parameters(ktmp))
1148                         break;
1149                 else
1150                         {
1151                         EVP_PKEY_free(ktmp);
1152                         ktmp=NULL;
1153                         }
1154                 }
1155         if (ktmp == NULL)
1156                 {
1157                 X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
1158                 return 0;
1159                 }
1160
1161         /* first, populate the other certs */
1162         for (j=i-1; j >= 0; j--)
1163                 {
1164                 ktmp2=X509_get_pubkey(sk_X509_value(chain,j));
1165                 EVP_PKEY_copy_parameters(ktmp2,ktmp);
1166                 EVP_PKEY_free(ktmp2);
1167                 }
1168         
1169         if (pkey != NULL) EVP_PKEY_copy_parameters(pkey,ktmp);
1170         EVP_PKEY_free(ktmp);
1171         return 1;
1172         }
1173
1174 int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
1175              CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
1176         {
1177         /* This function is (usually) called only once, by
1178          * SSL_get_ex_data_X509_STORE_CTX_idx (ssl/ssl_cert.c). */
1179         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509_STORE_CTX, argl, argp,
1180                         new_func, dup_func, free_func);
1181         }
1182
1183 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
1184         {
1185         return CRYPTO_set_ex_data(&ctx->ex_data,idx,data);
1186         }
1187
1188 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
1189         {
1190         return CRYPTO_get_ex_data(&ctx->ex_data,idx);
1191         }
1192
1193 int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
1194         {
1195         return ctx->error;
1196         }
1197
1198 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
1199         {
1200         ctx->error=err;
1201         }
1202
1203 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
1204         {
1205         return ctx->error_depth;
1206         }
1207
1208 X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
1209         {
1210         return ctx->current_cert;
1211         }
1212
1213 STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx)
1214         {
1215         return ctx->chain;
1216         }
1217
1218 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
1219         {
1220         int i;
1221         X509 *x;
1222         STACK_OF(X509) *chain;
1223         if (!ctx->chain || !(chain = sk_X509_dup(ctx->chain))) return NULL;
1224         for (i = 0; i < sk_X509_num(chain); i++)
1225                 {
1226                 x = sk_X509_value(chain, i);
1227                 CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
1228                 }
1229         return chain;
1230         }
1231
1232 void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
1233         {
1234         ctx->cert=x;
1235         }
1236
1237 void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
1238         {
1239         ctx->untrusted=sk;
1240         }
1241
1242 void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
1243         {
1244         ctx->crls=sk;
1245         }
1246
1247 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
1248         {
1249         return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
1250         }
1251
1252 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
1253         {
1254         return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
1255         }
1256
1257 /* This function is used to set the X509_STORE_CTX purpose and trust
1258  * values. This is intended to be used when another structure has its
1259  * own trust and purpose values which (if set) will be inherited by
1260  * the ctx. If they aren't set then we will usually have a default
1261  * purpose in mind which should then be used to set the trust value.
1262  * An example of this is SSL use: an SSL structure will have its own
1263  * purpose and trust settings which the application can set: if they
1264  * aren't set then we use the default of SSL client/server.
1265  */
1266
1267 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
1268                                 int purpose, int trust)
1269 {
1270         int idx;
1271         /* If purpose not set use default */
1272         if (!purpose) purpose = def_purpose;
1273         /* If we have a purpose then check it is valid */
1274         if (purpose)
1275                 {
1276                 X509_PURPOSE *ptmp;
1277                 idx = X509_PURPOSE_get_by_id(purpose);
1278                 if (idx == -1)
1279                         {
1280                         X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1281                                                 X509_R_UNKNOWN_PURPOSE_ID);
1282                         return 0;
1283                         }
1284                 ptmp = X509_PURPOSE_get0(idx);
1285                 if (ptmp->trust == X509_TRUST_DEFAULT)
1286                         {
1287                         idx = X509_PURPOSE_get_by_id(def_purpose);
1288                         if (idx == -1)
1289                                 {
1290                                 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1291                                                 X509_R_UNKNOWN_PURPOSE_ID);
1292                                 return 0;
1293                                 }
1294                         ptmp = X509_PURPOSE_get0(idx);
1295                         }
1296                 /* If trust not set then get from purpose default */
1297                 if (!trust) trust = ptmp->trust;
1298                 }
1299         if (trust)
1300                 {
1301                 idx = X509_TRUST_get_by_id(trust);
1302                 if (idx == -1)
1303                         {
1304                         X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
1305                                                 X509_R_UNKNOWN_TRUST_ID);
1306                         return 0;
1307                         }
1308                 }
1309
1310         if (purpose && !ctx->param->purpose) ctx->param->purpose = purpose;
1311         if (trust && !ctx->param->trust) ctx->param->trust = trust;
1312         return 1;
1313 }
1314
1315 X509_STORE_CTX *X509_STORE_CTX_new(void)
1316 {
1317         X509_STORE_CTX *ctx;
1318         ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX));
1319         if (!ctx)
1320                 {
1321                 X509err(X509_F_X509_STORE_CTX_NEW,ERR_R_MALLOC_FAILURE);
1322                 return NULL;
1323                 }
1324         memset(ctx, 0, sizeof(X509_STORE_CTX));
1325         return ctx;
1326 }
1327
1328 void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
1329 {
1330         X509_STORE_CTX_cleanup(ctx);
1331         OPENSSL_free(ctx);
1332 }
1333
1334 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
1335              STACK_OF(X509) *chain)
1336         {
1337         int ret = 1;
1338         ctx->ctx=store;
1339         ctx->current_method=0;
1340         ctx->cert=x509;
1341         ctx->untrusted=chain;
1342         ctx->crls = NULL;
1343         ctx->last_untrusted=0;
1344         ctx->other_ctx=NULL;
1345         ctx->valid=0;
1346         ctx->chain=NULL;
1347         ctx->error=0;
1348         ctx->explicit_policy=0;
1349         ctx->error_depth=0;
1350         ctx->current_cert=NULL;
1351         ctx->current_issuer=NULL;
1352         ctx->tree = NULL;
1353
1354         ctx->param = X509_VERIFY_PARAM_new();
1355
1356         if (!ctx->param)
1357                 {
1358                 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
1359                 return 0;
1360                 }
1361
1362         /* Inherit callbacks and flags from X509_STORE if not set
1363          * use defaults.
1364          */
1365
1366
1367         if (store)
1368                 ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
1369         else
1370                 ctx->param->flags |= X509_VP_FLAG_DEFAULT|X509_VP_FLAG_ONCE;
1371
1372         if (store)
1373                 {
1374                 ctx->verify_cb = store->verify_cb;
1375                 ctx->cleanup = store->cleanup;
1376                 }
1377         else
1378                 ctx->cleanup = 0;
1379
1380         if (ret)
1381                 ret = X509_VERIFY_PARAM_inherit(ctx->param,
1382                                         X509_VERIFY_PARAM_lookup("default"));
1383
1384         if (ret == 0)
1385                 {
1386                 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
1387                 return 0;
1388                 }
1389
1390         if (store && store->check_issued)
1391                 ctx->check_issued = store->check_issued;
1392         else
1393                 ctx->check_issued = check_issued;
1394
1395         if (store && store->get_issuer)
1396                 ctx->get_issuer = store->get_issuer;
1397         else
1398                 ctx->get_issuer = X509_STORE_CTX_get1_issuer;
1399
1400         if (store && store->verify_cb)
1401                 ctx->verify_cb = store->verify_cb;
1402         else
1403                 ctx->verify_cb = null_callback;
1404
1405         if (store && store->verify)
1406                 ctx->verify = store->verify;
1407         else
1408                 ctx->verify = internal_verify;
1409
1410         if (store && store->check_revocation)
1411                 ctx->check_revocation = store->check_revocation;
1412         else
1413                 ctx->check_revocation = check_revocation;
1414
1415         if (store && store->get_crl)
1416                 ctx->get_crl = store->get_crl;
1417         else
1418                 ctx->get_crl = get_crl;
1419
1420         if (store && store->check_crl)
1421                 ctx->check_crl = store->check_crl;
1422         else
1423                 ctx->check_crl = check_crl;
1424
1425         if (store && store->cert_crl)
1426                 ctx->cert_crl = store->cert_crl;
1427         else
1428                 ctx->cert_crl = cert_crl;
1429
1430         ctx->check_policy = check_policy;
1431
1432
1433         /* This memset() can't make any sense anyway, so it's removed. As
1434          * X509_STORE_CTX_cleanup does a proper "free" on the ex_data, we put a
1435          * corresponding "new" here and remove this bogus initialisation. */
1436         /* memset(&(ctx->ex_data),0,sizeof(CRYPTO_EX_DATA)); */
1437         if(!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
1438                                 &(ctx->ex_data)))
1439                 {
1440                 OPENSSL_free(ctx);
1441                 X509err(X509_F_X509_STORE_CTX_INIT,ERR_R_MALLOC_FAILURE);
1442                 return 0;
1443                 }
1444         return 1;
1445         }
1446
1447 /* Set alternative lookup method: just a STACK of trusted certificates.
1448  * This avoids X509_STORE nastiness where it isn't needed.
1449  */
1450
1451 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
1452 {
1453         ctx->other_ctx = sk;
1454         ctx->get_issuer = get_issuer_sk;
1455 }
1456
1457 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
1458         {
1459         if (ctx->cleanup) ctx->cleanup(ctx);
1460         X509_VERIFY_PARAM_free(ctx->param);
1461         if (ctx->tree)
1462                 X509_policy_tree_free(ctx->tree);
1463         if (ctx->chain != NULL)
1464                 {
1465                 sk_X509_pop_free(ctx->chain,X509_free);
1466                 ctx->chain=NULL;
1467                 }
1468         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
1469         memset(&ctx->ex_data,0,sizeof(CRYPTO_EX_DATA));
1470         }
1471
1472 void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
1473         {
1474         X509_VERIFY_PARAM_set_depth(ctx->param, depth);
1475         }
1476
1477 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
1478         {
1479         X509_VERIFY_PARAM_set_flags(ctx->param, flags);
1480         }
1481
1482 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags, time_t t)
1483         {
1484         X509_VERIFY_PARAM_set_time(ctx->param, t);
1485         }
1486
1487 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
1488                                   int (*verify_cb)(int, X509_STORE_CTX *))
1489         {
1490         ctx->verify_cb=verify_cb;
1491         }
1492
1493 X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx)
1494         {
1495         return ctx->tree;
1496         }
1497
1498 int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx)
1499         {
1500         return ctx->explicit_policy;
1501         }
1502
1503 int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
1504         {
1505         const X509_VERIFY_PARAM *param;
1506         param = X509_VERIFY_PARAM_lookup(name);
1507         if (!param)
1508                 return 0;
1509         return X509_VERIFY_PARAM_inherit(ctx->param, param);
1510         }
1511
1512 X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx)
1513         {
1514         return ctx->param;
1515         }
1516
1517 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
1518         {
1519         if (ctx->param)
1520                 X509_VERIFY_PARAM_free(ctx->param);
1521         ctx->param = param;
1522         }
1523
1524 IMPLEMENT_STACK_OF(X509)
1525 IMPLEMENT_ASN1_SET_OF(X509)
1526
1527 IMPLEMENT_STACK_OF(X509_NAME)
1528
1529 IMPLEMENT_STACK_OF(X509_ATTRIBUTE)
1530 IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE)