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