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