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