Ensure verify error is set when X509_verify_cert() fails
[oweals/openssl.git] / crypto / x509 / x509_vfy.c
1 /* crypto/x509/x509_vfy.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include <time.h>
61 #include <errno.h>
62
63 #include "cryptlib.h"
64 #include <openssl/crypto.h>
65 #include <openssl/lhash.h>
66 #include <openssl/buffer.h>
67 #include <openssl/evp.h>
68 #include <openssl/asn1.h>
69 #include <openssl/x509.h>
70 #include <openssl/x509v3.h>
71 #include <openssl/objects.h>
72 #include "vpm_int.h"
73
74 /* CRL score values */
75
76 /* No unhandled critical extensions */
77
78 #define CRL_SCORE_NOCRITICAL    0x100
79
80 /* certificate is within CRL scope */
81
82 #define CRL_SCORE_SCOPE         0x080
83
84 /* CRL times valid */
85
86 #define CRL_SCORE_TIME          0x040
87
88 /* Issuer name matches certificate */
89
90 #define CRL_SCORE_ISSUER_NAME   0x020
91
92 /* If this score or above CRL is probably valid */
93
94 #define CRL_SCORE_VALID (CRL_SCORE_NOCRITICAL|CRL_SCORE_TIME|CRL_SCORE_SCOPE)
95
96 /* CRL issuer is certificate issuer */
97
98 #define CRL_SCORE_ISSUER_CERT   0x018
99
100 /* CRL issuer is on certificate path */
101
102 #define CRL_SCORE_SAME_PATH     0x008
103
104 /* CRL issuer matches CRL AKID */
105
106 #define CRL_SCORE_AKID          0x004
107
108 /* Have a delta CRL with valid times */
109
110 #define CRL_SCORE_TIME_DELTA    0x002
111
112 static int null_callback(int ok, X509_STORE_CTX *e);
113 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
114 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
115 static int check_chain_extensions(X509_STORE_CTX *ctx);
116 static int check_name_constraints(X509_STORE_CTX *ctx);
117 static int check_id(X509_STORE_CTX *ctx);
118 static int check_trust(X509_STORE_CTX *ctx);
119 static int check_revocation(X509_STORE_CTX *ctx);
120 static int check_cert(X509_STORE_CTX *ctx);
121 static int check_policy(X509_STORE_CTX *ctx);
122
123 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
124                          unsigned int *preasons, X509_CRL *crl, X509 *x);
125 static int get_crl_delta(X509_STORE_CTX *ctx,
126                          X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x);
127 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl,
128                          int *pcrl_score, X509_CRL *base,
129                          STACK_OF(X509_CRL) *crls);
130 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl, X509 **pissuer,
131                            int *pcrl_score);
132 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
133                            unsigned int *preasons);
134 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x);
135 static int check_crl_chain(X509_STORE_CTX *ctx,
136                            STACK_OF(X509) *cert_path,
137                            STACK_OF(X509) *crl_path);
138
139 static int internal_verify(X509_STORE_CTX *ctx);
140 const char X509_version[] = "X.509" OPENSSL_VERSION_PTEXT;
141
142 static int null_callback(int ok, X509_STORE_CTX *e)
143 {
144     return ok;
145 }
146
147 #if 0
148 static int x509_subject_cmp(X509 **a, X509 **b)
149 {
150     return X509_subject_name_cmp(*a, *b);
151 }
152 #endif
153 /* Return 1 is a certificate is self signed */
154 static int cert_self_signed(X509 *x)
155 {
156     X509_check_purpose(x, -1, 0);
157     if (x->ex_flags & EXFLAG_SS)
158         return 1;
159     else
160         return 0;
161 }
162
163 /* Given a certificate try and find an exact match in the store */
164
165 static X509 *lookup_cert_match(X509_STORE_CTX *ctx, X509 *x)
166 {
167     STACK_OF(X509) *certs;
168     X509 *xtmp = NULL;
169     int i;
170     /* Lookup all certs with matching subject name */
171     certs = ctx->lookup_certs(ctx, X509_get_subject_name(x));
172     if (certs == NULL)
173         return NULL;
174     /* Look for exact match */
175     for (i = 0; i < sk_X509_num(certs); i++) {
176         xtmp = sk_X509_value(certs, i);
177         if (!X509_cmp(xtmp, x))
178             break;
179     }
180     if (i < sk_X509_num(certs))
181         CRYPTO_add(&xtmp->references, 1, CRYPTO_LOCK_X509);
182     else
183         xtmp = NULL;
184     sk_X509_pop_free(certs, X509_free);
185     return xtmp;
186 }
187
188 int X509_verify_cert(X509_STORE_CTX *ctx)
189 {
190     X509 *x, *xtmp, *xtmp2, *chain_ss = NULL;
191     int bad_chain = 0;
192     X509_VERIFY_PARAM *param = ctx->param;
193     int depth, i, ok = 0;
194     int num, j, retry;
195     int (*cb) (int xok, X509_STORE_CTX *xctx);
196     STACK_OF(X509) *sktmp = NULL;
197     int trust = X509_TRUST_UNTRUSTED;
198     int err;
199
200     if (ctx->cert == NULL) {
201         X509err(X509_F_X509_VERIFY_CERT, X509_R_NO_CERT_SET_FOR_US_TO_VERIFY);
202         ctx->error = X509_V_ERR_INVALID_CALL;
203         return -1;
204     }
205     if (ctx->chain != NULL) {
206         /*
207          * This X509_STORE_CTX has already been used to verify a cert. We
208          * cannot do another one.
209          */
210         X509err(X509_F_X509_VERIFY_CERT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
211         ctx->error = X509_V_ERR_INVALID_CALL;
212         return -1;
213     }
214
215     cb = ctx->verify_cb;
216
217     /*
218      * first we make sure the chain we are going to build is present and that
219      * the first entry is in place
220      */
221     if (((ctx->chain = sk_X509_new_null()) == NULL) ||
222         (!sk_X509_push(ctx->chain, ctx->cert))) {
223         X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
224         ctx->error = X509_V_ERR_OUT_OF_MEM;
225         ok = -1;
226         goto err;
227     }
228     CRYPTO_add(&ctx->cert->references, 1, CRYPTO_LOCK_X509);
229     ctx->last_untrusted = 1;
230
231     /* We use a temporary STACK so we can chop and hack at it */
232     if (ctx->untrusted != NULL
233         && (sktmp = sk_X509_dup(ctx->untrusted)) == NULL) {
234         X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
235         ctx->error = X509_V_ERR_OUT_OF_MEM;
236         ok = -1;
237         goto err;
238     }
239
240     num = sk_X509_num(ctx->chain);
241     x = sk_X509_value(ctx->chain, num - 1);
242     depth = param->depth;
243
244     for (;;) {
245         /* If we have enough, we break */
246         if (depth < num)
247             break;              /* FIXME: If this happens, we should take
248                                  * note of it and, if appropriate, use the
249                                  * X509_V_ERR_CERT_CHAIN_TOO_LONG error code
250                                  * later. */
251
252         /* If we are self signed, we break */
253         if (cert_self_signed(x))
254             break;
255         /*
256          * If asked see if we can find issuer in trusted store first
257          */
258         if (ctx->param->flags & X509_V_FLAG_TRUSTED_FIRST) {
259             ok = ctx->get_issuer(&xtmp, ctx, x);
260             if (ok < 0) {
261                 ctx->error = X509_V_ERR_STORE_LOOKUP;
262                 goto err;
263             }
264             /*
265              * If successful for now free up cert so it will be picked up
266              * again later.
267              */
268             if (ok > 0) {
269                 X509_free(xtmp);
270                 break;
271             }
272         }
273
274         /* If we were passed a cert chain, use it first */
275         if (ctx->untrusted != NULL) {
276             xtmp = find_issuer(ctx, sktmp, x);
277             if (xtmp != NULL) {
278                 if (!sk_X509_push(ctx->chain, xtmp)) {
279                     X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
280                     ctx->error = X509_V_ERR_OUT_OF_MEM;
281                     ok = -1;
282                     goto err;
283                 }
284                 CRYPTO_add(&xtmp->references, 1, CRYPTO_LOCK_X509);
285                 (void)sk_X509_delete_ptr(sktmp, xtmp);
286                 ctx->last_untrusted++;
287                 x = xtmp;
288                 num++;
289                 /*
290                  * reparse the full chain for the next one
291                  */
292                 continue;
293             }
294         }
295         break;
296     }
297
298     /* Remember how many untrusted certs we have */
299     j = num;
300     /*
301      * at this point, chain should contain a list of untrusted certificates.
302      * We now need to add at least one trusted one, if possible, otherwise we
303      * complain.
304      */
305
306     do {
307         /*
308          * Examine last certificate in chain and see if it is self signed.
309          */
310         i = sk_X509_num(ctx->chain);
311         x = sk_X509_value(ctx->chain, i - 1);
312         if (cert_self_signed(x)) {
313             /* we have a self signed certificate */
314             if (sk_X509_num(ctx->chain) == 1) {
315                 /*
316                  * We have a single self signed certificate: see if we can
317                  * find it in the store. We must have an exact match to avoid
318                  * possible impersonation.
319                  */
320                 ok = ctx->get_issuer(&xtmp, ctx, x);
321                 if ((ok <= 0) || X509_cmp(x, xtmp)) {
322                     ctx->error = X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT;
323                     ctx->current_cert = x;
324                     ctx->error_depth = i - 1;
325                     if (ok == 1)
326                         X509_free(xtmp);
327                     bad_chain = 1;
328                     ok = cb(0, ctx);
329                     if (!ok)
330                         goto err;
331                 } else {
332                     /*
333                      * We have a match: replace certificate with store
334                      * version so we get any trust settings.
335                      */
336                     X509_free(x);
337                     x = xtmp;
338                     (void)sk_X509_set(ctx->chain, i - 1, x);
339                     ctx->last_untrusted = 0;
340                 }
341             } else {
342                 /*
343                  * extract and save self signed certificate for later use
344                  */
345                 chain_ss = sk_X509_pop(ctx->chain);
346                 ctx->last_untrusted--;
347                 num--;
348                 j--;
349                 x = sk_X509_value(ctx->chain, num - 1);
350             }
351         }
352         /* We now lookup certs from the certificate store */
353         for (;;) {
354             /* If we have enough, we break */
355             if (depth < num)
356                 break;
357             /* If we are self signed, we break */
358             if (cert_self_signed(x))
359                 break;
360             ok = ctx->get_issuer(&xtmp, ctx, x);
361
362             if (ok < 0) {
363                 ctx->error = X509_V_ERR_STORE_LOOKUP;
364                 goto err;
365             }
366             if (ok == 0)
367                 break;
368             x = xtmp;
369             if (!sk_X509_push(ctx->chain, x)) {
370                 X509_free(xtmp);
371                 X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
372                 ctx->error = X509_V_ERR_OUT_OF_MEM;
373                 ok = -1;
374                 goto err;
375             }
376             num++;
377         }
378
379         /* we now have our chain, lets check it... */
380         if ((trust = check_trust(ctx)) == X509_TRUST_REJECTED) {
381             /* Callback already issued */
382             ok = 0;
383             goto err;
384         }
385
386         /*
387          * If it's not explicitly trusted then check if there is an alternative
388          * chain that could be used. We only do this if we haven't already
389          * checked via TRUSTED_FIRST and the user hasn't switched off alternate
390          * chain checking
391          */
392         retry = 0;
393         if (trust != X509_TRUST_TRUSTED
394             && !(ctx->param->flags & X509_V_FLAG_TRUSTED_FIRST)
395             && !(ctx->param->flags & X509_V_FLAG_NO_ALT_CHAINS)) {
396             while (j-- > 1) {
397                 xtmp2 = sk_X509_value(ctx->chain, j - 1);
398                 ok = ctx->get_issuer(&xtmp, ctx, xtmp2);
399                 if (ok < 0) {
400                     ctx->error = X509_V_ERR_STORE_LOOKUP;
401                     goto err;
402                 }
403                 /* Check if we found an alternate chain */
404                 if (ok > 0) {
405                     /*
406                      * Free up the found cert we'll add it again later
407                      */
408                     X509_free(xtmp);
409
410                     /*
411                      * Dump all the certs above this point - we've found an
412                      * alternate chain
413                      */
414                     while (num > j) {
415                         xtmp = sk_X509_pop(ctx->chain);
416                         X509_free(xtmp);
417                         num--;
418                     }
419                     ctx->last_untrusted = sk_X509_num(ctx->chain);
420                     retry = 1;
421                     break;
422                 }
423             }
424         }
425     } while (retry);
426
427     /*
428      * If not explicitly trusted then indicate error unless it's a single
429      * self signed certificate in which case we've indicated an error already
430      * and set bad_chain == 1
431      */
432     if (trust != X509_TRUST_TRUSTED && !bad_chain) {
433         if ((chain_ss == NULL) || !ctx->check_issued(ctx, x, chain_ss)) {
434             if (ctx->last_untrusted >= num)
435                 ctx->error = X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY;
436             else
437                 ctx->error = X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT;
438             ctx->current_cert = x;
439         } else {
440
441             sk_X509_push(ctx->chain, chain_ss);
442             num++;
443             ctx->last_untrusted = num;
444             ctx->current_cert = chain_ss;
445             ctx->error = X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN;
446             chain_ss = NULL;
447         }
448
449         ctx->error_depth = num - 1;
450         bad_chain = 1;
451         ok = cb(0, ctx);
452         if (!ok)
453             goto err;
454     }
455
456     /* We have the chain complete: now we need to check its purpose */
457     ok = check_chain_extensions(ctx);
458
459     if (!ok)
460         goto err;
461
462     /* Check name constraints */
463
464     ok = check_name_constraints(ctx);
465
466     if (!ok)
467         goto err;
468
469     ok = check_id(ctx);
470
471     if (!ok)
472         goto err;
473
474     /* We may as well copy down any DSA parameters that are required */
475     X509_get_pubkey_parameters(NULL, ctx->chain);
476
477     /*
478      * Check revocation status: we do this after copying parameters because
479      * they may be needed for CRL signature verification.
480      */
481
482     ok = ctx->check_revocation(ctx);
483     if (!ok)
484         goto err;
485
486     err = X509_chain_check_suiteb(&ctx->error_depth, NULL, ctx->chain,
487                                   ctx->param->flags);
488     if (err != X509_V_OK) {
489         ctx->error = err;
490         ctx->current_cert = sk_X509_value(ctx->chain, ctx->error_depth);
491         ok = cb(0, ctx);
492         if (!ok)
493             goto err;
494     }
495
496     /* At this point, we have a chain and need to verify it */
497     if (ctx->verify != NULL)
498         ok = ctx->verify(ctx);
499     else
500         ok = internal_verify(ctx);
501     if (!ok)
502         goto err;
503
504 #ifndef OPENSSL_NO_RFC3779
505     /* RFC 3779 path validation, now that CRL check has been done */
506     ok = v3_asid_validate_path(ctx);
507     if (!ok)
508         goto err;
509     ok = v3_addr_validate_path(ctx);
510     if (!ok)
511         goto err;
512 #endif
513
514     /* If we get this far evaluate policies */
515     if (!bad_chain && (ctx->param->flags & X509_V_FLAG_POLICY_CHECK))
516         ok = ctx->check_policy(ctx);
517     if (!ok)
518         goto err;
519     if (0) {
520  err:
521         /* Ensure we return an error */
522         if (ok > 0)
523             ok = 0;
524         X509_get_pubkey_parameters(NULL, ctx->chain);
525     }
526     if (sktmp != NULL)
527         sk_X509_free(sktmp);
528     if (chain_ss != NULL)
529         X509_free(chain_ss);
530
531     /* Safety net, error returns must set ctx->error */
532     if (ok <= 0 && ctx->error == X509_V_OK)
533         ctx->error = X509_V_ERR_UNSPECIFIED;
534     return ok;
535 }
536
537 /*
538  * Given a STACK_OF(X509) find the issuer of cert (if any)
539  */
540
541 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
542 {
543     int i;
544     X509 *issuer;
545     for (i = 0; i < sk_X509_num(sk); i++) {
546         issuer = sk_X509_value(sk, i);
547         if (ctx->check_issued(ctx, x, issuer))
548             return issuer;
549     }
550     return NULL;
551 }
552
553 /* Given a possible certificate and issuer check them */
554
555 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
556 {
557     int ret;
558     ret = X509_check_issued(issuer, x);
559     if (ret == X509_V_OK)
560         return 1;
561     /* If we haven't asked for issuer errors don't set ctx */
562     if (!(ctx->param->flags & X509_V_FLAG_CB_ISSUER_CHECK))
563         return 0;
564
565     ctx->error = ret;
566     ctx->current_cert = x;
567     ctx->current_issuer = issuer;
568     return ctx->verify_cb(0, ctx);
569 }
570
571 /* Alternative lookup method: look from a STACK stored in other_ctx */
572
573 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
574 {
575     *issuer = find_issuer(ctx, ctx->other_ctx, x);
576     if (*issuer) {
577         CRYPTO_add(&(*issuer)->references, 1, CRYPTO_LOCK_X509);
578         return 1;
579     } else
580         return 0;
581 }
582
583 /*
584  * Check a certificate chains extensions for consistency with the supplied
585  * purpose
586  */
587
588 static int check_chain_extensions(X509_STORE_CTX *ctx)
589 {
590 #ifdef OPENSSL_NO_CHAIN_VERIFY
591     return 1;
592 #else
593     int i, ok = 0, must_be_ca, plen = 0;
594     X509 *x;
595     int (*cb) (int xok, X509_STORE_CTX *xctx);
596     int proxy_path_length = 0;
597     int purpose;
598     int allow_proxy_certs;
599     cb = ctx->verify_cb;
600
601     /*-
602      *  must_be_ca can have 1 of 3 values:
603      * -1: we accept both CA and non-CA certificates, to allow direct
604      *     use of self-signed certificates (which are marked as CA).
605      * 0:  we only accept non-CA certificates.  This is currently not
606      *     used, but the possibility is present for future extensions.
607      * 1:  we only accept CA certificates.  This is currently used for
608      *     all certificates in the chain except the leaf certificate.
609      */
610     must_be_ca = -1;
611
612     /* CRL path validation */
613     if (ctx->parent) {
614         allow_proxy_certs = 0;
615         purpose = X509_PURPOSE_CRL_SIGN;
616     } else {
617         allow_proxy_certs =
618             ! !(ctx->param->flags & X509_V_FLAG_ALLOW_PROXY_CERTS);
619         /*
620          * A hack to keep people who don't want to modify their software
621          * happy
622          */
623         if (getenv("OPENSSL_ALLOW_PROXY_CERTS"))
624             allow_proxy_certs = 1;
625         purpose = ctx->param->purpose;
626     }
627
628     /* Check all untrusted certificates */
629     for (i = 0; i < ctx->last_untrusted; i++) {
630         int ret;
631         x = sk_X509_value(ctx->chain, i);
632         if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
633             && (x->ex_flags & EXFLAG_CRITICAL)) {
634             ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION;
635             ctx->error_depth = i;
636             ctx->current_cert = x;
637             ok = cb(0, ctx);
638             if (!ok)
639                 goto end;
640         }
641         if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY)) {
642             ctx->error = X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED;
643             ctx->error_depth = i;
644             ctx->current_cert = x;
645             ok = cb(0, ctx);
646             if (!ok)
647                 goto end;
648         }
649         ret = X509_check_ca(x);
650         switch (must_be_ca) {
651         case -1:
652             if ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
653                 && (ret != 1) && (ret != 0)) {
654                 ret = 0;
655                 ctx->error = X509_V_ERR_INVALID_CA;
656             } else
657                 ret = 1;
658             break;
659         case 0:
660             if (ret != 0) {
661                 ret = 0;
662                 ctx->error = X509_V_ERR_INVALID_NON_CA;
663             } else
664                 ret = 1;
665             break;
666         default:
667             if ((ret == 0)
668                 || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
669                     && (ret != 1))) {
670                 ret = 0;
671                 ctx->error = X509_V_ERR_INVALID_CA;
672             } else
673                 ret = 1;
674             break;
675         }
676         if (ret == 0) {
677             ctx->error_depth = i;
678             ctx->current_cert = x;
679             ok = cb(0, ctx);
680             if (!ok)
681                 goto end;
682         }
683         if (ctx->param->purpose > 0) {
684             ret = X509_check_purpose(x, purpose, must_be_ca > 0);
685             if ((ret == 0)
686                 || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
687                     && (ret != 1))) {
688                 ctx->error = X509_V_ERR_INVALID_PURPOSE;
689                 ctx->error_depth = i;
690                 ctx->current_cert = x;
691                 ok = cb(0, ctx);
692                 if (!ok)
693                     goto end;
694             }
695         }
696         /* Check pathlen if not self issued */
697         if ((i > 1) && !(x->ex_flags & EXFLAG_SI)
698             && (x->ex_pathlen != -1)
699             && (plen > (x->ex_pathlen + proxy_path_length + 1))) {
700             ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED;
701             ctx->error_depth = i;
702             ctx->current_cert = x;
703             ok = cb(0, ctx);
704             if (!ok)
705                 goto end;
706         }
707         /* Increment path length if not self issued */
708         if (!(x->ex_flags & EXFLAG_SI))
709             plen++;
710         /*
711          * If this certificate is a proxy certificate, the next certificate
712          * must be another proxy certificate or a EE certificate.  If not,
713          * the next certificate must be a CA certificate.
714          */
715         if (x->ex_flags & EXFLAG_PROXY) {
716             if (x->ex_pcpathlen != -1 && i > x->ex_pcpathlen) {
717                 ctx->error = X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED;
718                 ctx->error_depth = i;
719                 ctx->current_cert = x;
720                 ok = cb(0, ctx);
721                 if (!ok)
722                     goto end;
723             }
724             proxy_path_length++;
725             must_be_ca = 0;
726         } else
727             must_be_ca = 1;
728     }
729     ok = 1;
730  end:
731     return ok;
732 #endif
733 }
734
735 static int check_name_constraints(X509_STORE_CTX *ctx)
736 {
737     X509 *x;
738     int i, j, rv;
739     /* Check name constraints for all certificates */
740     for (i = sk_X509_num(ctx->chain) - 1; i >= 0; i--) {
741         x = sk_X509_value(ctx->chain, i);
742         /* Ignore self issued certs unless last in chain */
743         if (i && (x->ex_flags & EXFLAG_SI))
744             continue;
745         /*
746          * Check against constraints for all certificates higher in chain
747          * including trust anchor. Trust anchor not strictly speaking needed
748          * but if it includes constraints it is to be assumed it expects them
749          * to be obeyed.
750          */
751         for (j = sk_X509_num(ctx->chain) - 1; j > i; j--) {
752             NAME_CONSTRAINTS *nc = sk_X509_value(ctx->chain, j)->nc;
753             if (nc) {
754                 rv = NAME_CONSTRAINTS_check(x, nc);
755                 switch (rv) {
756                 case X509_V_OK:
757                     continue;
758                 case X509_V_ERR_OUT_OF_MEM:
759                     ctx->error = rv;
760                     return 0;
761                 default:
762                     ctx->error = rv;
763                     ctx->error_depth = i;
764                     ctx->current_cert = x;
765                     if (!ctx->verify_cb(0, ctx))
766                         return 0;
767                     break;
768                 }
769             }
770         }
771     }
772     return 1;
773 }
774
775 static int check_id_error(X509_STORE_CTX *ctx, int errcode)
776 {
777     ctx->error = errcode;
778     ctx->current_cert = ctx->cert;
779     ctx->error_depth = 0;
780     return ctx->verify_cb(0, ctx);
781 }
782
783 static int check_hosts(X509 *x, X509_VERIFY_PARAM_ID *id)
784 {
785     int i;
786     int n = sk_OPENSSL_STRING_num(id->hosts);
787     char *name;
788
789     if (id->peername != NULL) {
790         OPENSSL_free(id->peername);
791         id->peername = NULL;
792     }
793     for (i = 0; i < n; ++i) {
794         name = sk_OPENSSL_STRING_value(id->hosts, i);
795         if (X509_check_host(x, name, 0, id->hostflags, &id->peername) > 0)
796             return 1;
797     }
798     return n == 0;
799 }
800
801 static int check_id(X509_STORE_CTX *ctx)
802 {
803     X509_VERIFY_PARAM *vpm = ctx->param;
804     X509_VERIFY_PARAM_ID *id = vpm->id;
805     X509 *x = ctx->cert;
806     if (id->hosts && check_hosts(x, id) <= 0) {
807         if (!check_id_error(ctx, X509_V_ERR_HOSTNAME_MISMATCH))
808             return 0;
809     }
810     if (id->email && X509_check_email(x, id->email, id->emaillen, 0) <= 0) {
811         if (!check_id_error(ctx, X509_V_ERR_EMAIL_MISMATCH))
812             return 0;
813     }
814     if (id->ip && X509_check_ip(x, id->ip, id->iplen, 0) <= 0) {
815         if (!check_id_error(ctx, X509_V_ERR_IP_ADDRESS_MISMATCH))
816             return 0;
817     }
818     return 1;
819 }
820
821 static int check_trust(X509_STORE_CTX *ctx)
822 {
823     int i, ok;
824     X509 *x = NULL;
825     int (*cb) (int xok, X509_STORE_CTX *xctx);
826     cb = ctx->verify_cb;
827     /* Check all trusted certificates in chain */
828     for (i = ctx->last_untrusted; i < sk_X509_num(ctx->chain); i++) {
829         x = sk_X509_value(ctx->chain, i);
830         ok = X509_check_trust(x, ctx->param->trust, 0);
831         /* If explicitly trusted return trusted */
832         if (ok == X509_TRUST_TRUSTED)
833             return X509_TRUST_TRUSTED;
834         /*
835          * If explicitly rejected notify callback and reject if not
836          * overridden.
837          */
838         if (ok == X509_TRUST_REJECTED) {
839             ctx->error_depth = i;
840             ctx->current_cert = x;
841             ctx->error = X509_V_ERR_CERT_REJECTED;
842             ok = cb(0, ctx);
843             if (!ok)
844                 return X509_TRUST_REJECTED;
845         }
846     }
847     /*
848      * If we accept partial chains and have at least one trusted certificate
849      * return success.
850      */
851     if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
852         X509 *mx;
853         if (ctx->last_untrusted < sk_X509_num(ctx->chain))
854             return X509_TRUST_TRUSTED;
855         x = sk_X509_value(ctx->chain, 0);
856         mx = lookup_cert_match(ctx, x);
857         if (mx) {
858             (void)sk_X509_set(ctx->chain, 0, mx);
859             X509_free(x);
860             ctx->last_untrusted = 0;
861             return X509_TRUST_TRUSTED;
862         }
863     }
864
865     /*
866      * If no trusted certs in chain at all return untrusted and allow
867      * standard (no issuer cert) etc errors to be indicated.
868      */
869     return X509_TRUST_UNTRUSTED;
870 }
871
872 static int check_revocation(X509_STORE_CTX *ctx)
873 {
874     int i, last, ok;
875     if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
876         return 1;
877     if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
878         last = sk_X509_num(ctx->chain) - 1;
879     else {
880         /* If checking CRL paths this isn't the EE certificate */
881         if (ctx->parent)
882             return 1;
883         last = 0;
884     }
885     for (i = 0; i <= last; i++) {
886         ctx->error_depth = i;
887         ok = check_cert(ctx);
888         if (!ok)
889             return ok;
890     }
891     return 1;
892 }
893
894 static int check_cert(X509_STORE_CTX *ctx)
895 {
896     X509_CRL *crl = NULL, *dcrl = NULL;
897     X509 *x;
898     int ok, cnum;
899     unsigned int last_reasons;
900     cnum = ctx->error_depth;
901     x = sk_X509_value(ctx->chain, cnum);
902     ctx->current_cert = x;
903     ctx->current_issuer = NULL;
904     ctx->current_crl_score = 0;
905     ctx->current_reasons = 0;
906     while (ctx->current_reasons != CRLDP_ALL_REASONS) {
907         last_reasons = ctx->current_reasons;
908         /* Try to retrieve relevant CRL */
909         if (ctx->get_crl)
910             ok = ctx->get_crl(ctx, &crl, x);
911         else
912             ok = get_crl_delta(ctx, &crl, &dcrl, x);
913         /*
914          * If error looking up CRL, nothing we can do except notify callback
915          */
916         if (!ok) {
917             ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
918             ok = ctx->verify_cb(0, ctx);
919             goto err;
920         }
921         ctx->current_crl = crl;
922         ok = ctx->check_crl(ctx, crl);
923         if (!ok)
924             goto err;
925
926         if (dcrl) {
927             ok = ctx->check_crl(ctx, dcrl);
928             if (!ok)
929                 goto err;
930             ok = ctx->cert_crl(ctx, dcrl, x);
931             if (!ok)
932                 goto err;
933         } else
934             ok = 1;
935
936         /* Don't look in full CRL if delta reason is removefromCRL */
937         if (ok != 2) {
938             ok = ctx->cert_crl(ctx, crl, x);
939             if (!ok)
940                 goto err;
941         }
942
943         X509_CRL_free(crl);
944         X509_CRL_free(dcrl);
945         crl = NULL;
946         dcrl = NULL;
947         /*
948          * If reasons not updated we wont get anywhere by another iteration,
949          * so exit loop.
950          */
951         if (last_reasons == ctx->current_reasons) {
952             ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
953             ok = ctx->verify_cb(0, ctx);
954             goto err;
955         }
956     }
957  err:
958     X509_CRL_free(crl);
959     X509_CRL_free(dcrl);
960
961     ctx->current_crl = NULL;
962     return ok;
963
964 }
965
966 /* Check CRL times against values in X509_STORE_CTX */
967
968 static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
969 {
970     time_t *ptime;
971     int i;
972     if (notify)
973         ctx->current_crl = crl;
974     if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
975         ptime = &ctx->param->check_time;
976     else
977         ptime = NULL;
978
979     i = X509_cmp_time(X509_CRL_get_lastUpdate(crl), ptime);
980     if (i == 0) {
981         if (!notify)
982             return 0;
983         ctx->error = X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD;
984         if (!ctx->verify_cb(0, ctx))
985             return 0;
986     }
987
988     if (i > 0) {
989         if (!notify)
990             return 0;
991         ctx->error = X509_V_ERR_CRL_NOT_YET_VALID;
992         if (!ctx->verify_cb(0, ctx))
993             return 0;
994     }
995
996     if (X509_CRL_get_nextUpdate(crl)) {
997         i = X509_cmp_time(X509_CRL_get_nextUpdate(crl), ptime);
998
999         if (i == 0) {
1000             if (!notify)
1001                 return 0;
1002             ctx->error = X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD;
1003             if (!ctx->verify_cb(0, ctx))
1004                 return 0;
1005         }
1006         /* Ignore expiry of base CRL is delta is valid */
1007         if ((i < 0) && !(ctx->current_crl_score & CRL_SCORE_TIME_DELTA)) {
1008             if (!notify)
1009                 return 0;
1010             ctx->error = X509_V_ERR_CRL_HAS_EXPIRED;
1011             if (!ctx->verify_cb(0, ctx))
1012                 return 0;
1013         }
1014     }
1015
1016     if (notify)
1017         ctx->current_crl = NULL;
1018
1019     return 1;
1020 }
1021
1022 static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl,
1023                       X509 **pissuer, int *pscore, unsigned int *preasons,
1024                       STACK_OF(X509_CRL) *crls)
1025 {
1026     int i, crl_score, best_score = *pscore;
1027     unsigned int reasons, best_reasons = 0;
1028     X509 *x = ctx->current_cert;
1029     X509_CRL *crl, *best_crl = NULL;
1030     X509 *crl_issuer = NULL, *best_crl_issuer = NULL;
1031
1032     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1033         crl = sk_X509_CRL_value(crls, i);
1034         reasons = *preasons;
1035         crl_score = get_crl_score(ctx, &crl_issuer, &reasons, crl, x);
1036
1037         if (crl_score > best_score) {
1038             best_crl = crl;
1039             best_crl_issuer = crl_issuer;
1040             best_score = crl_score;
1041             best_reasons = reasons;
1042         }
1043     }
1044
1045     if (best_crl) {
1046         if (*pcrl)
1047             X509_CRL_free(*pcrl);
1048         *pcrl = best_crl;
1049         *pissuer = best_crl_issuer;
1050         *pscore = best_score;
1051         *preasons = best_reasons;
1052         CRYPTO_add(&best_crl->references, 1, CRYPTO_LOCK_X509_CRL);
1053         if (*pdcrl) {
1054             X509_CRL_free(*pdcrl);
1055             *pdcrl = NULL;
1056         }
1057         get_delta_sk(ctx, pdcrl, pscore, best_crl, crls);
1058     }
1059
1060     if (best_score >= CRL_SCORE_VALID)
1061         return 1;
1062
1063     return 0;
1064 }
1065
1066 /*
1067  * Compare two CRL extensions for delta checking purposes. They should be
1068  * both present or both absent. If both present all fields must be identical.
1069  */
1070
1071 static int crl_extension_match(X509_CRL *a, X509_CRL *b, int nid)
1072 {
1073     ASN1_OCTET_STRING *exta, *extb;
1074     int i;
1075     i = X509_CRL_get_ext_by_NID(a, nid, -1);
1076     if (i >= 0) {
1077         /* Can't have multiple occurrences */
1078         if (X509_CRL_get_ext_by_NID(a, nid, i) != -1)
1079             return 0;
1080         exta = X509_EXTENSION_get_data(X509_CRL_get_ext(a, i));
1081     } else
1082         exta = NULL;
1083
1084     i = X509_CRL_get_ext_by_NID(b, nid, -1);
1085
1086     if (i >= 0) {
1087
1088         if (X509_CRL_get_ext_by_NID(b, nid, i) != -1)
1089             return 0;
1090         extb = X509_EXTENSION_get_data(X509_CRL_get_ext(b, i));
1091     } else
1092         extb = NULL;
1093
1094     if (!exta && !extb)
1095         return 1;
1096
1097     if (!exta || !extb)
1098         return 0;
1099
1100     if (ASN1_OCTET_STRING_cmp(exta, extb))
1101         return 0;
1102
1103     return 1;
1104 }
1105
1106 /* See if a base and delta are compatible */
1107
1108 static int check_delta_base(X509_CRL *delta, X509_CRL *base)
1109 {
1110     /* Delta CRL must be a delta */
1111     if (!delta->base_crl_number)
1112         return 0;
1113     /* Base must have a CRL number */
1114     if (!base->crl_number)
1115         return 0;
1116     /* Issuer names must match */
1117     if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(delta)))
1118         return 0;
1119     /* AKID and IDP must match */
1120     if (!crl_extension_match(delta, base, NID_authority_key_identifier))
1121         return 0;
1122     if (!crl_extension_match(delta, base, NID_issuing_distribution_point))
1123         return 0;
1124     /* Delta CRL base number must not exceed Full CRL number. */
1125     if (ASN1_INTEGER_cmp(delta->base_crl_number, base->crl_number) > 0)
1126         return 0;
1127     /* Delta CRL number must exceed full CRL number */
1128     if (ASN1_INTEGER_cmp(delta->crl_number, base->crl_number) > 0)
1129         return 1;
1130     return 0;
1131 }
1132
1133 /*
1134  * For a given base CRL find a delta... maybe extend to delta scoring or
1135  * retrieve a chain of deltas...
1136  */
1137
1138 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore,
1139                          X509_CRL *base, STACK_OF(X509_CRL) *crls)
1140 {
1141     X509_CRL *delta;
1142     int i;
1143     if (!(ctx->param->flags & X509_V_FLAG_USE_DELTAS))
1144         return;
1145     if (!((ctx->current_cert->ex_flags | base->flags) & EXFLAG_FRESHEST))
1146         return;
1147     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1148         delta = sk_X509_CRL_value(crls, i);
1149         if (check_delta_base(delta, base)) {
1150             if (check_crl_time(ctx, delta, 0))
1151                 *pscore |= CRL_SCORE_TIME_DELTA;
1152             CRYPTO_add(&delta->references, 1, CRYPTO_LOCK_X509_CRL);
1153             *dcrl = delta;
1154             return;
1155         }
1156     }
1157     *dcrl = NULL;
1158 }
1159
1160 /*
1161  * For a given CRL return how suitable it is for the supplied certificate
1162  * 'x'. The return value is a mask of several criteria. If the issuer is not
1163  * the certificate issuer this is returned in *pissuer. The reasons mask is
1164  * also used to determine if the CRL is suitable: if no new reasons the CRL
1165  * is rejected, otherwise reasons is updated.
1166  */
1167
1168 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
1169                          unsigned int *preasons, X509_CRL *crl, X509 *x)
1170 {
1171
1172     int crl_score = 0;
1173     unsigned int tmp_reasons = *preasons, crl_reasons;
1174
1175     /* First see if we can reject CRL straight away */
1176
1177     /* Invalid IDP cannot be processed */
1178     if (crl->idp_flags & IDP_INVALID)
1179         return 0;
1180     /* Reason codes or indirect CRLs need extended CRL support */
1181     if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT)) {
1182         if (crl->idp_flags & (IDP_INDIRECT | IDP_REASONS))
1183             return 0;
1184     } else if (crl->idp_flags & IDP_REASONS) {
1185         /* If no new reasons reject */
1186         if (!(crl->idp_reasons & ~tmp_reasons))
1187             return 0;
1188     }
1189     /* Don't process deltas at this stage */
1190     else if (crl->base_crl_number)
1191         return 0;
1192     /* If issuer name doesn't match certificate need indirect CRL */
1193     if (X509_NAME_cmp(X509_get_issuer_name(x), X509_CRL_get_issuer(crl))) {
1194         if (!(crl->idp_flags & IDP_INDIRECT))
1195             return 0;
1196     } else
1197         crl_score |= CRL_SCORE_ISSUER_NAME;
1198
1199     if (!(crl->flags & EXFLAG_CRITICAL))
1200         crl_score |= CRL_SCORE_NOCRITICAL;
1201
1202     /* Check expiry */
1203     if (check_crl_time(ctx, crl, 0))
1204         crl_score |= CRL_SCORE_TIME;
1205
1206     /* Check authority key ID and locate certificate issuer */
1207     crl_akid_check(ctx, crl, pissuer, &crl_score);
1208
1209     /* If we can't locate certificate issuer at this point forget it */
1210
1211     if (!(crl_score & CRL_SCORE_AKID))
1212         return 0;
1213
1214     /* Check cert for matching CRL distribution points */
1215
1216     if (crl_crldp_check(x, crl, crl_score, &crl_reasons)) {
1217         /* If no new reasons reject */
1218         if (!(crl_reasons & ~tmp_reasons))
1219             return 0;
1220         tmp_reasons |= crl_reasons;
1221         crl_score |= CRL_SCORE_SCOPE;
1222     }
1223
1224     *preasons = tmp_reasons;
1225
1226     return crl_score;
1227
1228 }
1229
1230 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl,
1231                            X509 **pissuer, int *pcrl_score)
1232 {
1233     X509 *crl_issuer = NULL;
1234     X509_NAME *cnm = X509_CRL_get_issuer(crl);
1235     int cidx = ctx->error_depth;
1236     int i;
1237
1238     if (cidx != sk_X509_num(ctx->chain) - 1)
1239         cidx++;
1240
1241     crl_issuer = sk_X509_value(ctx->chain, cidx);
1242
1243     if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1244         if (*pcrl_score & CRL_SCORE_ISSUER_NAME) {
1245             *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_ISSUER_CERT;
1246             *pissuer = crl_issuer;
1247             return;
1248         }
1249     }
1250
1251     for (cidx++; cidx < sk_X509_num(ctx->chain); cidx++) {
1252         crl_issuer = sk_X509_value(ctx->chain, cidx);
1253         if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1254             continue;
1255         if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1256             *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_SAME_PATH;
1257             *pissuer = crl_issuer;
1258             return;
1259         }
1260     }
1261
1262     /* Anything else needs extended CRL support */
1263
1264     if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT))
1265         return;
1266
1267     /*
1268      * Otherwise the CRL issuer is not on the path. Look for it in the set of
1269      * untrusted certificates.
1270      */
1271     for (i = 0; i < sk_X509_num(ctx->untrusted); i++) {
1272         crl_issuer = sk_X509_value(ctx->untrusted, i);
1273         if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1274             continue;
1275         if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1276             *pissuer = crl_issuer;
1277             *pcrl_score |= CRL_SCORE_AKID;
1278             return;
1279         }
1280     }
1281 }
1282
1283 /*
1284  * Check the path of a CRL issuer certificate. This creates a new
1285  * X509_STORE_CTX and populates it with most of the parameters from the
1286  * parent. This could be optimised somewhat since a lot of path checking will
1287  * be duplicated by the parent, but this will rarely be used in practice.
1288  */
1289
1290 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x)
1291 {
1292     X509_STORE_CTX crl_ctx;
1293     int ret;
1294     /* Don't allow recursive CRL path validation */
1295     if (ctx->parent)
1296         return 0;
1297     if (!X509_STORE_CTX_init(&crl_ctx, ctx->ctx, x, ctx->untrusted))
1298         return -1;
1299
1300     crl_ctx.crls = ctx->crls;
1301     /* Copy verify params across */
1302     X509_STORE_CTX_set0_param(&crl_ctx, ctx->param);
1303
1304     crl_ctx.parent = ctx;
1305     crl_ctx.verify_cb = ctx->verify_cb;
1306
1307     /* Verify CRL issuer */
1308     ret = X509_verify_cert(&crl_ctx);
1309
1310     if (ret <= 0)
1311         goto err;
1312
1313     /* Check chain is acceptable */
1314
1315     ret = check_crl_chain(ctx, ctx->chain, crl_ctx.chain);
1316  err:
1317     X509_STORE_CTX_cleanup(&crl_ctx);
1318     return ret;
1319 }
1320
1321 /*
1322  * RFC3280 says nothing about the relationship between CRL path and
1323  * certificate path, which could lead to situations where a certificate could
1324  * be revoked or validated by a CA not authorised to do so. RFC5280 is more
1325  * strict and states that the two paths must end in the same trust anchor,
1326  * though some discussions remain... until this is resolved we use the
1327  * RFC5280 version
1328  */
1329
1330 static int check_crl_chain(X509_STORE_CTX *ctx,
1331                            STACK_OF(X509) *cert_path,
1332                            STACK_OF(X509) *crl_path)
1333 {
1334     X509 *cert_ta, *crl_ta;
1335     cert_ta = sk_X509_value(cert_path, sk_X509_num(cert_path) - 1);
1336     crl_ta = sk_X509_value(crl_path, sk_X509_num(crl_path) - 1);
1337     if (!X509_cmp(cert_ta, crl_ta))
1338         return 1;
1339     return 0;
1340 }
1341
1342 /*-
1343  * Check for match between two dist point names: three separate cases.
1344  * 1. Both are relative names and compare X509_NAME types.
1345  * 2. One full, one relative. Compare X509_NAME to GENERAL_NAMES.
1346  * 3. Both are full names and compare two GENERAL_NAMES.
1347  * 4. One is NULL: automatic match.
1348  */
1349
1350 static int idp_check_dp(DIST_POINT_NAME *a, DIST_POINT_NAME *b)
1351 {
1352     X509_NAME *nm = NULL;
1353     GENERAL_NAMES *gens = NULL;
1354     GENERAL_NAME *gena, *genb;
1355     int i, j;
1356     if (!a || !b)
1357         return 1;
1358     if (a->type == 1) {
1359         if (!a->dpname)
1360             return 0;
1361         /* Case 1: two X509_NAME */
1362         if (b->type == 1) {
1363             if (!b->dpname)
1364                 return 0;
1365             if (!X509_NAME_cmp(a->dpname, b->dpname))
1366                 return 1;
1367             else
1368                 return 0;
1369         }
1370         /* Case 2: set name and GENERAL_NAMES appropriately */
1371         nm = a->dpname;
1372         gens = b->name.fullname;
1373     } else if (b->type == 1) {
1374         if (!b->dpname)
1375             return 0;
1376         /* Case 2: set name and GENERAL_NAMES appropriately */
1377         gens = a->name.fullname;
1378         nm = b->dpname;
1379     }
1380
1381     /* Handle case 2 with one GENERAL_NAMES and one X509_NAME */
1382     if (nm) {
1383         for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
1384             gena = sk_GENERAL_NAME_value(gens, i);
1385             if (gena->type != GEN_DIRNAME)
1386                 continue;
1387             if (!X509_NAME_cmp(nm, gena->d.directoryName))
1388                 return 1;
1389         }
1390         return 0;
1391     }
1392
1393     /* Else case 3: two GENERAL_NAMES */
1394
1395     for (i = 0; i < sk_GENERAL_NAME_num(a->name.fullname); i++) {
1396         gena = sk_GENERAL_NAME_value(a->name.fullname, i);
1397         for (j = 0; j < sk_GENERAL_NAME_num(b->name.fullname); j++) {
1398             genb = sk_GENERAL_NAME_value(b->name.fullname, j);
1399             if (!GENERAL_NAME_cmp(gena, genb))
1400                 return 1;
1401         }
1402     }
1403
1404     return 0;
1405
1406 }
1407
1408 static int crldp_check_crlissuer(DIST_POINT *dp, X509_CRL *crl, int crl_score)
1409 {
1410     int i;
1411     X509_NAME *nm = X509_CRL_get_issuer(crl);
1412     /* If no CRLissuer return is successful iff don't need a match */
1413     if (!dp->CRLissuer)
1414         return ! !(crl_score & CRL_SCORE_ISSUER_NAME);
1415     for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
1416         GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
1417         if (gen->type != GEN_DIRNAME)
1418             continue;
1419         if (!X509_NAME_cmp(gen->d.directoryName, nm))
1420             return 1;
1421     }
1422     return 0;
1423 }
1424
1425 /* Check CRLDP and IDP */
1426
1427 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
1428                            unsigned int *preasons)
1429 {
1430     int i;
1431     if (crl->idp_flags & IDP_ONLYATTR)
1432         return 0;
1433     if (x->ex_flags & EXFLAG_CA) {
1434         if (crl->idp_flags & IDP_ONLYUSER)
1435             return 0;
1436     } else {
1437         if (crl->idp_flags & IDP_ONLYCA)
1438             return 0;
1439     }
1440     *preasons = crl->idp_reasons;
1441     for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
1442         DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
1443         if (crldp_check_crlissuer(dp, crl, crl_score)) {
1444             if (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint)) {
1445                 *preasons &= dp->dp_reasons;
1446                 return 1;
1447             }
1448         }
1449     }
1450     if ((!crl->idp || !crl->idp->distpoint)
1451         && (crl_score & CRL_SCORE_ISSUER_NAME))
1452         return 1;
1453     return 0;
1454 }
1455
1456 /*
1457  * Retrieve CRL corresponding to current certificate. If deltas enabled try
1458  * to find a delta CRL too
1459  */
1460
1461 static int get_crl_delta(X509_STORE_CTX *ctx,
1462                          X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x)
1463 {
1464     int ok;
1465     X509 *issuer = NULL;
1466     int crl_score = 0;
1467     unsigned int reasons;
1468     X509_CRL *crl = NULL, *dcrl = NULL;
1469     STACK_OF(X509_CRL) *skcrl;
1470     X509_NAME *nm = X509_get_issuer_name(x);
1471     reasons = ctx->current_reasons;
1472     ok = get_crl_sk(ctx, &crl, &dcrl,
1473                     &issuer, &crl_score, &reasons, ctx->crls);
1474
1475     if (ok)
1476         goto done;
1477
1478     /* Lookup CRLs from store */
1479
1480     skcrl = ctx->lookup_crls(ctx, nm);
1481
1482     /* If no CRLs found and a near match from get_crl_sk use that */
1483     if (!skcrl && crl)
1484         goto done;
1485
1486     get_crl_sk(ctx, &crl, &dcrl, &issuer, &crl_score, &reasons, skcrl);
1487
1488     sk_X509_CRL_pop_free(skcrl, X509_CRL_free);
1489
1490  done:
1491
1492     /* If we got any kind of CRL use it and return success */
1493     if (crl) {
1494         ctx->current_issuer = issuer;
1495         ctx->current_crl_score = crl_score;
1496         ctx->current_reasons = reasons;
1497         *pcrl = crl;
1498         *pdcrl = dcrl;
1499         return 1;
1500     }
1501
1502     return 0;
1503 }
1504
1505 /* Check CRL validity */
1506 static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
1507 {
1508     X509 *issuer = NULL;
1509     EVP_PKEY *ikey = NULL;
1510     int ok = 0, chnum, cnum;
1511     cnum = ctx->error_depth;
1512     chnum = sk_X509_num(ctx->chain) - 1;
1513     /* if we have an alternative CRL issuer cert use that */
1514     if (ctx->current_issuer)
1515         issuer = ctx->current_issuer;
1516
1517     /*
1518      * Else find CRL issuer: if not last certificate then issuer is next
1519      * certificate in chain.
1520      */
1521     else if (cnum < chnum)
1522         issuer = sk_X509_value(ctx->chain, cnum + 1);
1523     else {
1524         issuer = sk_X509_value(ctx->chain, chnum);
1525         /* If not self signed, can't check signature */
1526         if (!ctx->check_issued(ctx, issuer, issuer)) {
1527             ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER;
1528             ok = ctx->verify_cb(0, ctx);
1529             if (!ok)
1530                 goto err;
1531         }
1532     }
1533
1534     if (issuer) {
1535         /*
1536          * Skip most tests for deltas because they have already been done
1537          */
1538         if (!crl->base_crl_number) {
1539             /* Check for cRLSign bit if keyUsage present */
1540             if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
1541                 !(issuer->ex_kusage & KU_CRL_SIGN)) {
1542                 ctx->error = X509_V_ERR_KEYUSAGE_NO_CRL_SIGN;
1543                 ok = ctx->verify_cb(0, ctx);
1544                 if (!ok)
1545                     goto err;
1546             }
1547
1548             if (!(ctx->current_crl_score & CRL_SCORE_SCOPE)) {
1549                 ctx->error = X509_V_ERR_DIFFERENT_CRL_SCOPE;
1550                 ok = ctx->verify_cb(0, ctx);
1551                 if (!ok)
1552                     goto err;
1553             }
1554
1555             if (!(ctx->current_crl_score & CRL_SCORE_SAME_PATH)) {
1556                 if (check_crl_path(ctx, ctx->current_issuer) <= 0) {
1557                     ctx->error = X509_V_ERR_CRL_PATH_VALIDATION_ERROR;
1558                     ok = ctx->verify_cb(0, ctx);
1559                     if (!ok)
1560                         goto err;
1561                 }
1562             }
1563
1564             if (crl->idp_flags & IDP_INVALID) {
1565                 ctx->error = X509_V_ERR_INVALID_EXTENSION;
1566                 ok = ctx->verify_cb(0, ctx);
1567                 if (!ok)
1568                     goto err;
1569             }
1570
1571         }
1572
1573         if (!(ctx->current_crl_score & CRL_SCORE_TIME)) {
1574             ok = check_crl_time(ctx, crl, 1);
1575             if (!ok)
1576                 goto err;
1577         }
1578
1579         /* Attempt to get issuer certificate public key */
1580         ikey = X509_get_pubkey(issuer);
1581
1582         if (!ikey) {
1583             ctx->error = X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1584             ok = ctx->verify_cb(0, ctx);
1585             if (!ok)
1586                 goto err;
1587         } else {
1588             int rv;
1589             rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags);
1590             if (rv != X509_V_OK) {
1591                 ctx->error = rv;
1592                 ok = ctx->verify_cb(0, ctx);
1593                 if (!ok)
1594                     goto err;
1595             }
1596             /* Verify CRL signature */
1597             if (X509_CRL_verify(crl, ikey) <= 0) {
1598                 ctx->error = X509_V_ERR_CRL_SIGNATURE_FAILURE;
1599                 ok = ctx->verify_cb(0, ctx);
1600                 if (!ok)
1601                     goto err;
1602             }
1603         }
1604     }
1605
1606     ok = 1;
1607
1608  err:
1609     EVP_PKEY_free(ikey);
1610     return ok;
1611 }
1612
1613 /* Check certificate against CRL */
1614 static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
1615 {
1616     int ok;
1617     X509_REVOKED *rev;
1618     /*
1619      * The rules changed for this... previously if a CRL contained unhandled
1620      * critical extensions it could still be used to indicate a certificate
1621      * was revoked. This has since been changed since critical extension can
1622      * change the meaning of CRL entries.
1623      */
1624     if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
1625         && (crl->flags & EXFLAG_CRITICAL)) {
1626         ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION;
1627         ok = ctx->verify_cb(0, ctx);
1628         if (!ok)
1629             return 0;
1630     }
1631     /*
1632      * Look for serial number of certificate in CRL If found make sure reason
1633      * is not removeFromCRL.
1634      */
1635     if (X509_CRL_get0_by_cert(crl, &rev, x)) {
1636         if (rev->reason == CRL_REASON_REMOVE_FROM_CRL)
1637             return 2;
1638         ctx->error = X509_V_ERR_CERT_REVOKED;
1639         ok = ctx->verify_cb(0, ctx);
1640         if (!ok)
1641             return 0;
1642     }
1643
1644     return 1;
1645 }
1646
1647 static int check_policy(X509_STORE_CTX *ctx)
1648 {
1649     int ret;
1650     if (ctx->parent)
1651         return 1;
1652     ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
1653                             ctx->param->policies, ctx->param->flags);
1654     if (ret == 0) {
1655         X509err(X509_F_CHECK_POLICY, ERR_R_MALLOC_FAILURE);
1656         ctx->error = X509_V_ERR_OUT_OF_MEM;
1657         return 0;
1658     }
1659     /* Invalid or inconsistent extensions */
1660     if (ret == -1) {
1661         /*
1662          * Locate certificates with bad extensions and notify callback.
1663          */
1664         X509 *x;
1665         int i;
1666         for (i = 1; i < sk_X509_num(ctx->chain); i++) {
1667             x = sk_X509_value(ctx->chain, i);
1668             if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
1669                 continue;
1670             ctx->current_cert = x;
1671             ctx->error = X509_V_ERR_INVALID_POLICY_EXTENSION;
1672             if (!ctx->verify_cb(0, ctx))
1673                 return 0;
1674         }
1675         return 1;
1676     }
1677     if (ret == -2) {
1678         ctx->current_cert = NULL;
1679         ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
1680         return ctx->verify_cb(0, ctx);
1681     }
1682
1683     if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY) {
1684         ctx->current_cert = NULL;
1685         /*
1686          * Verification errors need to be "sticky", a callback may have allowed
1687          * an SSL handshake to continue despite an error, and we must then
1688          * remain in an error state.  Therefore, we MUST NOT clear earlier
1689          * verification errors by setting the error to X509_V_OK.
1690          */
1691         if (!ctx->verify_cb(2, ctx))
1692             return 0;
1693     }
1694
1695     return 1;
1696 }
1697
1698 static int check_cert_time(X509_STORE_CTX *ctx, X509 *x)
1699 {
1700     time_t *ptime;
1701     int i;
1702
1703     if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1704         ptime = &ctx->param->check_time;
1705     else
1706         ptime = NULL;
1707
1708     i = X509_cmp_time(X509_get_notBefore(x), ptime);
1709     if (i == 0) {
1710         ctx->error = X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD;
1711         ctx->current_cert = x;
1712         if (!ctx->verify_cb(0, ctx))
1713             return 0;
1714     }
1715
1716     if (i > 0) {
1717         ctx->error = X509_V_ERR_CERT_NOT_YET_VALID;
1718         ctx->current_cert = x;
1719         if (!ctx->verify_cb(0, ctx))
1720             return 0;
1721     }
1722
1723     i = X509_cmp_time(X509_get_notAfter(x), ptime);
1724     if (i == 0) {
1725         ctx->error = X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD;
1726         ctx->current_cert = x;
1727         if (!ctx->verify_cb(0, ctx))
1728             return 0;
1729     }
1730
1731     if (i < 0) {
1732         ctx->error = X509_V_ERR_CERT_HAS_EXPIRED;
1733         ctx->current_cert = x;
1734         if (!ctx->verify_cb(0, ctx))
1735             return 0;
1736     }
1737
1738     return 1;
1739 }
1740
1741 static int internal_verify(X509_STORE_CTX *ctx)
1742 {
1743     int ok = 0, n;
1744     X509 *xs, *xi;
1745     EVP_PKEY *pkey = NULL;
1746     int (*cb) (int xok, X509_STORE_CTX *xctx);
1747
1748     cb = ctx->verify_cb;
1749
1750     n = sk_X509_num(ctx->chain);
1751     ctx->error_depth = n - 1;
1752     n--;
1753     xi = sk_X509_value(ctx->chain, n);
1754
1755     if (ctx->check_issued(ctx, xi, xi))
1756         xs = xi;
1757     else {
1758         if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
1759             xs = xi;
1760             goto check_cert;
1761         }
1762         if (n <= 0) {
1763             ctx->error = X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE;
1764             ctx->current_cert = xi;
1765             ok = cb(0, ctx);
1766             goto end;
1767         } else {
1768             n--;
1769             ctx->error_depth = n;
1770             xs = sk_X509_value(ctx->chain, n);
1771         }
1772     }
1773
1774 /*      ctx->error=0;  not needed */
1775     while (n >= 0) {
1776         ctx->error_depth = n;
1777
1778         /*
1779          * Skip signature check for self signed certificates unless
1780          * explicitly asked for. It doesn't add any security and just wastes
1781          * time.
1782          */
1783         if (!xs->valid
1784             && (xs != xi
1785                 || (ctx->param->flags & X509_V_FLAG_CHECK_SS_SIGNATURE))) {
1786             if ((pkey = X509_get_pubkey(xi)) == NULL) {
1787                 ctx->error = X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1788                 ctx->current_cert = xi;
1789                 ok = (*cb) (0, ctx);
1790                 if (!ok)
1791                     goto end;
1792             } else if (X509_verify(xs, pkey) <= 0) {
1793                 ctx->error = X509_V_ERR_CERT_SIGNATURE_FAILURE;
1794                 ctx->current_cert = xs;
1795                 ok = (*cb) (0, ctx);
1796                 if (!ok) {
1797                     EVP_PKEY_free(pkey);
1798                     goto end;
1799                 }
1800             }
1801             EVP_PKEY_free(pkey);
1802             pkey = NULL;
1803         }
1804
1805         xs->valid = 1;
1806
1807  check_cert:
1808         ok = check_cert_time(ctx, xs);
1809         if (!ok)
1810             goto end;
1811
1812         /* The last error (if any) is still in the error value */
1813         ctx->current_issuer = xi;
1814         ctx->current_cert = xs;
1815         ok = (*cb) (1, ctx);
1816         if (!ok)
1817             goto end;
1818
1819         n--;
1820         if (n >= 0) {
1821             xi = xs;
1822             xs = sk_X509_value(ctx->chain, n);
1823         }
1824     }
1825     ok = 1;
1826  end:
1827     return ok;
1828 }
1829
1830 int X509_cmp_current_time(const ASN1_TIME *ctm)
1831 {
1832     return X509_cmp_time(ctm, NULL);
1833 }
1834
1835 int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
1836 {
1837     char *str;
1838     ASN1_TIME atm;
1839     long offset;
1840     char buff1[24], buff2[24], *p;
1841     int i, j, remaining;
1842
1843     p = buff1;
1844     remaining = ctm->length;
1845     str = (char *)ctm->data;
1846     /*
1847      * Note that the following (historical) code allows much more slack in the
1848      * time format than RFC5280. In RFC5280, the representation is fixed:
1849      * UTCTime: YYMMDDHHMMSSZ
1850      * GeneralizedTime: YYYYMMDDHHMMSSZ
1851      */
1852     if (ctm->type == V_ASN1_UTCTIME) {
1853         /* YYMMDDHHMM[SS]Z or YYMMDDHHMM[SS](+-)hhmm */
1854         int min_length = sizeof("YYMMDDHHMMZ") - 1;
1855         int max_length = sizeof("YYMMDDHHMMSS+hhmm") - 1;
1856         if (remaining < min_length || remaining > max_length)
1857             return 0;
1858         memcpy(p, str, 10);
1859         p += 10;
1860         str += 10;
1861         remaining -= 10;
1862     } else {
1863         /* YYYYMMDDHHMM[SS[.fff]]Z or YYYYMMDDHHMM[SS[.f[f[f]]]](+-)hhmm */
1864         int min_length = sizeof("YYYYMMDDHHMMZ") - 1;
1865         int max_length = sizeof("YYYYMMDDHHMMSS.fff+hhmm") - 1;
1866         if (remaining < min_length || remaining > max_length)
1867             return 0;
1868         memcpy(p, str, 12);
1869         p += 12;
1870         str += 12;
1871         remaining -= 12;
1872     }
1873
1874     if ((*str == 'Z') || (*str == '-') || (*str == '+')) {
1875         *(p++) = '0';
1876         *(p++) = '0';
1877     } else {
1878         /* SS (seconds) */
1879         if (remaining < 2)
1880             return 0;
1881         *(p++) = *(str++);
1882         *(p++) = *(str++);
1883         remaining -= 2;
1884         /*
1885          * Skip any (up to three) fractional seconds...
1886          * TODO(emilia): in RFC5280, fractional seconds are forbidden.
1887          * Can we just kill them altogether?
1888          */
1889         if (remaining && *str == '.') {
1890             str++;
1891             remaining--;
1892             for (i = 0; i < 3 && remaining; i++, str++, remaining--) {
1893                 if (*str < '0' || *str > '9')
1894                     break;
1895             }
1896         }
1897
1898     }
1899     *(p++) = 'Z';
1900     *(p++) = '\0';
1901
1902     /* We now need either a terminating 'Z' or an offset. */
1903     if (!remaining)
1904         return 0;
1905     if (*str == 'Z') {
1906         if (remaining != 1)
1907             return 0;
1908         offset = 0;
1909     } else {
1910         /* (+-)HHMM */
1911         if ((*str != '+') && (*str != '-'))
1912             return 0;
1913         /* Historical behaviour: the (+-)hhmm offset is forbidden in RFC5280. */
1914         if (remaining != 5)
1915             return 0;
1916         if (str[1] < '0' || str[1] > '9' || str[2] < '0' || str[2] > '9' ||
1917             str[3] < '0' || str[3] > '9' || str[4] < '0' || str[4] > '9')
1918             return 0;
1919         offset = ((str[1] - '0') * 10 + (str[2] - '0')) * 60;
1920         offset += (str[3] - '0') * 10 + (str[4] - '0');
1921         if (*str == '-')
1922             offset = -offset;
1923     }
1924     atm.type = ctm->type;
1925     atm.flags = 0;
1926     atm.length = sizeof(buff2);
1927     atm.data = (unsigned char *)buff2;
1928
1929     if (X509_time_adj(&atm, offset * 60, cmp_time) == NULL)
1930         return 0;
1931
1932     if (ctm->type == V_ASN1_UTCTIME) {
1933         i = (buff1[0] - '0') * 10 + (buff1[1] - '0');
1934         if (i < 50)
1935             i += 100;           /* cf. RFC 2459 */
1936         j = (buff2[0] - '0') * 10 + (buff2[1] - '0');
1937         if (j < 50)
1938             j += 100;
1939
1940         if (i < j)
1941             return -1;
1942         if (i > j)
1943             return 1;
1944     }
1945     i = strcmp(buff1, buff2);
1946     if (i == 0)                 /* wait a second then return younger :-) */
1947         return -1;
1948     else
1949         return i;
1950 }
1951
1952 ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
1953 {
1954     return X509_time_adj(s, adj, NULL);
1955 }
1956
1957 ASN1_TIME *X509_time_adj(ASN1_TIME *s, long offset_sec, time_t *in_tm)
1958 {
1959     return X509_time_adj_ex(s, 0, offset_sec, in_tm);
1960 }
1961
1962 ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s,
1963                             int offset_day, long offset_sec, time_t *in_tm)
1964 {
1965     time_t t;
1966
1967     if (in_tm)
1968         t = *in_tm;
1969     else
1970         time(&t);
1971
1972     if (s && !(s->flags & ASN1_STRING_FLAG_MSTRING)) {
1973         if (s->type == V_ASN1_UTCTIME)
1974             return ASN1_UTCTIME_adj(s, t, offset_day, offset_sec);
1975         if (s->type == V_ASN1_GENERALIZEDTIME)
1976             return ASN1_GENERALIZEDTIME_adj(s, t, offset_day, offset_sec);
1977     }
1978     return ASN1_TIME_adj(s, t, offset_day, offset_sec);
1979 }
1980
1981 int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
1982 {
1983     EVP_PKEY *ktmp = NULL, *ktmp2;
1984     int i, j;
1985
1986     if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey))
1987         return 1;
1988
1989     for (i = 0; i < sk_X509_num(chain); i++) {
1990         ktmp = X509_get_pubkey(sk_X509_value(chain, i));
1991         if (ktmp == NULL) {
1992             X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
1993                     X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
1994             return 0;
1995         }
1996         if (!EVP_PKEY_missing_parameters(ktmp))
1997             break;
1998         else {
1999             EVP_PKEY_free(ktmp);
2000             ktmp = NULL;
2001         }
2002     }
2003     if (ktmp == NULL) {
2004         X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
2005                 X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
2006         return 0;
2007     }
2008
2009     /* first, populate the other certs */
2010     for (j = i - 1; j >= 0; j--) {
2011         ktmp2 = X509_get_pubkey(sk_X509_value(chain, j));
2012         EVP_PKEY_copy_parameters(ktmp2, ktmp);
2013         EVP_PKEY_free(ktmp2);
2014     }
2015
2016     if (pkey != NULL)
2017         EVP_PKEY_copy_parameters(pkey, ktmp);
2018     EVP_PKEY_free(ktmp);
2019     return 1;
2020 }
2021
2022 /* Make a delta CRL as the diff between two full CRLs */
2023
2024 X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
2025                         EVP_PKEY *skey, const EVP_MD *md, unsigned int flags)
2026 {
2027     X509_CRL *crl = NULL;
2028     int i;
2029     STACK_OF(X509_REVOKED) *revs = NULL;
2030     /* CRLs can't be delta already */
2031     if (base->base_crl_number || newer->base_crl_number) {
2032         X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_ALREADY_DELTA);
2033         return NULL;
2034     }
2035     /* Base and new CRL must have a CRL number */
2036     if (!base->crl_number || !newer->crl_number) {
2037         X509err(X509_F_X509_CRL_DIFF, X509_R_NO_CRL_NUMBER);
2038         return NULL;
2039     }
2040     /* Issuer names must match */
2041     if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(newer))) {
2042         X509err(X509_F_X509_CRL_DIFF, X509_R_ISSUER_MISMATCH);
2043         return NULL;
2044     }
2045     /* AKID and IDP must match */
2046     if (!crl_extension_match(base, newer, NID_authority_key_identifier)) {
2047         X509err(X509_F_X509_CRL_DIFF, X509_R_AKID_MISMATCH);
2048         return NULL;
2049     }
2050     if (!crl_extension_match(base, newer, NID_issuing_distribution_point)) {
2051         X509err(X509_F_X509_CRL_DIFF, X509_R_IDP_MISMATCH);
2052         return NULL;
2053     }
2054     /* Newer CRL number must exceed full CRL number */
2055     if (ASN1_INTEGER_cmp(newer->crl_number, base->crl_number) <= 0) {
2056         X509err(X509_F_X509_CRL_DIFF, X509_R_NEWER_CRL_NOT_NEWER);
2057         return NULL;
2058     }
2059     /* CRLs must verify */
2060     if (skey && (X509_CRL_verify(base, skey) <= 0 ||
2061                  X509_CRL_verify(newer, skey) <= 0)) {
2062         X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_VERIFY_FAILURE);
2063         return NULL;
2064     }
2065     /* Create new CRL */
2066     crl = X509_CRL_new();
2067     if (!crl || !X509_CRL_set_version(crl, 1))
2068         goto memerr;
2069     /* Set issuer name */
2070     if (!X509_CRL_set_issuer_name(crl, X509_CRL_get_issuer(newer)))
2071         goto memerr;
2072
2073     if (!X509_CRL_set_lastUpdate(crl, X509_CRL_get_lastUpdate(newer)))
2074         goto memerr;
2075     if (!X509_CRL_set_nextUpdate(crl, X509_CRL_get_nextUpdate(newer)))
2076         goto memerr;
2077
2078     /* Set base CRL number: must be critical */
2079
2080     if (!X509_CRL_add1_ext_i2d(crl, NID_delta_crl, base->crl_number, 1, 0))
2081         goto memerr;
2082
2083     /*
2084      * Copy extensions across from newest CRL to delta: this will set CRL
2085      * number to correct value too.
2086      */
2087
2088     for (i = 0; i < X509_CRL_get_ext_count(newer); i++) {
2089         X509_EXTENSION *ext;
2090         ext = X509_CRL_get_ext(newer, i);
2091         if (!X509_CRL_add_ext(crl, ext, -1))
2092             goto memerr;
2093     }
2094
2095     /* Go through revoked entries, copying as needed */
2096
2097     revs = X509_CRL_get_REVOKED(newer);
2098
2099     for (i = 0; i < sk_X509_REVOKED_num(revs); i++) {
2100         X509_REVOKED *rvn, *rvtmp;
2101         rvn = sk_X509_REVOKED_value(revs, i);
2102         /*
2103          * Add only if not also in base. TODO: need something cleverer here
2104          * for some more complex CRLs covering multiple CAs.
2105          */
2106         if (!X509_CRL_get0_by_serial(base, &rvtmp, rvn->serialNumber)) {
2107             rvtmp = X509_REVOKED_dup(rvn);
2108             if (!rvtmp)
2109                 goto memerr;
2110             if (!X509_CRL_add0_revoked(crl, rvtmp)) {
2111                 X509_REVOKED_free(rvtmp);
2112                 goto memerr;
2113             }
2114         }
2115     }
2116     /* TODO: optionally prune deleted entries */
2117
2118     if (skey && md && !X509_CRL_sign(crl, skey, md))
2119         goto memerr;
2120
2121     return crl;
2122
2123  memerr:
2124     X509err(X509_F_X509_CRL_DIFF, ERR_R_MALLOC_FAILURE);
2125     if (crl)
2126         X509_CRL_free(crl);
2127     return NULL;
2128 }
2129
2130 int X509_STORE_CTX_get_ex_new_index(long argl, void *argp,
2131                                     CRYPTO_EX_new *new_func,
2132                                     CRYPTO_EX_dup *dup_func,
2133                                     CRYPTO_EX_free *free_func)
2134 {
2135     /*
2136      * This function is (usually) called only once, by
2137      * SSL_get_ex_data_X509_STORE_CTX_idx (ssl/ssl_cert.c).
2138      */
2139     return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509_STORE_CTX, argl, argp,
2140                                    new_func, dup_func, free_func);
2141 }
2142
2143 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
2144 {
2145     return CRYPTO_set_ex_data(&ctx->ex_data, idx, data);
2146 }
2147
2148 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
2149 {
2150     return CRYPTO_get_ex_data(&ctx->ex_data, idx);
2151 }
2152
2153 int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
2154 {
2155     return ctx->error;
2156 }
2157
2158 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
2159 {
2160     ctx->error = err;
2161 }
2162
2163 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
2164 {
2165     return ctx->error_depth;
2166 }
2167
2168 X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
2169 {
2170     return ctx->current_cert;
2171 }
2172
2173 STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx)
2174 {
2175     return ctx->chain;
2176 }
2177
2178 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
2179 {
2180     if (!ctx->chain)
2181         return NULL;
2182     return X509_chain_up_ref(ctx->chain);
2183 }
2184
2185 X509 *X509_STORE_CTX_get0_current_issuer(X509_STORE_CTX *ctx)
2186 {
2187     return ctx->current_issuer;
2188 }
2189
2190 X509_CRL *X509_STORE_CTX_get0_current_crl(X509_STORE_CTX *ctx)
2191 {
2192     return ctx->current_crl;
2193 }
2194
2195 X509_STORE_CTX *X509_STORE_CTX_get0_parent_ctx(X509_STORE_CTX *ctx)
2196 {
2197     return ctx->parent;
2198 }
2199
2200 void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
2201 {
2202     ctx->cert = x;
2203 }
2204
2205 void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2206 {
2207     ctx->untrusted = sk;
2208 }
2209
2210 void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
2211 {
2212     ctx->crls = sk;
2213 }
2214
2215 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
2216 {
2217     return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
2218 }
2219
2220 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
2221 {
2222     return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
2223 }
2224
2225 /*
2226  * This function is used to set the X509_STORE_CTX purpose and trust values.
2227  * This is intended to be used when another structure has its own trust and
2228  * purpose values which (if set) will be inherited by the ctx. If they aren't
2229  * set then we will usually have a default purpose in mind which should then
2230  * be used to set the trust value. An example of this is SSL use: an SSL
2231  * structure will have its own purpose and trust settings which the
2232  * application can set: if they aren't set then we use the default of SSL
2233  * client/server.
2234  */
2235
2236 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
2237                                    int purpose, int trust)
2238 {
2239     int idx;
2240     /* If purpose not set use default */
2241     if (!purpose)
2242         purpose = def_purpose;
2243     /* If we have a purpose then check it is valid */
2244     if (purpose) {
2245         X509_PURPOSE *ptmp;
2246         idx = X509_PURPOSE_get_by_id(purpose);
2247         if (idx == -1) {
2248             X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2249                     X509_R_UNKNOWN_PURPOSE_ID);
2250             return 0;
2251         }
2252         ptmp = X509_PURPOSE_get0(idx);
2253         if (ptmp->trust == X509_TRUST_DEFAULT) {
2254             idx = X509_PURPOSE_get_by_id(def_purpose);
2255             if (idx == -1) {
2256                 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2257                         X509_R_UNKNOWN_PURPOSE_ID);
2258                 return 0;
2259             }
2260             ptmp = X509_PURPOSE_get0(idx);
2261         }
2262         /* If trust not set then get from purpose default */
2263         if (!trust)
2264             trust = ptmp->trust;
2265     }
2266     if (trust) {
2267         idx = X509_TRUST_get_by_id(trust);
2268         if (idx == -1) {
2269             X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2270                     X509_R_UNKNOWN_TRUST_ID);
2271             return 0;
2272         }
2273     }
2274
2275     if (purpose && !ctx->param->purpose)
2276         ctx->param->purpose = purpose;
2277     if (trust && !ctx->param->trust)
2278         ctx->param->trust = trust;
2279     return 1;
2280 }
2281
2282 X509_STORE_CTX *X509_STORE_CTX_new(void)
2283 {
2284     X509_STORE_CTX *ctx;
2285     ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX));
2286     if (!ctx) {
2287         X509err(X509_F_X509_STORE_CTX_NEW, ERR_R_MALLOC_FAILURE);
2288         return NULL;
2289     }
2290     memset(ctx, 0, sizeof(X509_STORE_CTX));
2291     return ctx;
2292 }
2293
2294 void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
2295 {
2296     if (!ctx)
2297         return;
2298     X509_STORE_CTX_cleanup(ctx);
2299     OPENSSL_free(ctx);
2300 }
2301
2302 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
2303                         STACK_OF(X509) *chain)
2304 {
2305     int ret = 1;
2306     ctx->ctx = store;
2307     ctx->current_method = 0;
2308     ctx->cert = x509;
2309     ctx->untrusted = chain;
2310     ctx->crls = NULL;
2311     ctx->last_untrusted = 0;
2312     ctx->other_ctx = NULL;
2313     ctx->valid = 0;
2314     ctx->chain = NULL;
2315     ctx->error = 0;
2316     ctx->explicit_policy = 0;
2317     ctx->error_depth = 0;
2318     ctx->current_cert = NULL;
2319     ctx->current_issuer = NULL;
2320     ctx->current_crl = NULL;
2321     ctx->current_crl_score = 0;
2322     ctx->current_reasons = 0;
2323     ctx->tree = NULL;
2324     ctx->parent = NULL;
2325     /* Zero ex_data to make sure we're cleanup-safe */
2326     memset(&ctx->ex_data, 0, sizeof(ctx->ex_data));
2327
2328     ctx->param = X509_VERIFY_PARAM_new();
2329     if (!ctx->param) {
2330         X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2331         return 0;
2332     }
2333
2334     /*
2335      * Inherit callbacks and flags from X509_STORE if not set use defaults.
2336      */
2337     if (store)
2338         ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
2339     else
2340         ctx->param->inh_flags |= X509_VP_FLAG_DEFAULT | X509_VP_FLAG_ONCE;
2341
2342     if (store) {
2343         ctx->verify_cb = store->verify_cb;
2344         /* Seems to always be 0 in OpenSSL, else must be idempotent */
2345         ctx->cleanup = store->cleanup;
2346     } else
2347         ctx->cleanup = 0;
2348
2349     if (ret)
2350         ret = X509_VERIFY_PARAM_inherit(ctx->param,
2351                                         X509_VERIFY_PARAM_lookup("default"));
2352
2353     if (ret == 0) {
2354         X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2355         goto err;
2356     }
2357
2358     if (store && store->check_issued)
2359         ctx->check_issued = store->check_issued;
2360     else
2361         ctx->check_issued = check_issued;
2362
2363     if (store && store->get_issuer)
2364         ctx->get_issuer = store->get_issuer;
2365     else
2366         ctx->get_issuer = X509_STORE_CTX_get1_issuer;
2367
2368     if (store && store->verify_cb)
2369         ctx->verify_cb = store->verify_cb;
2370     else
2371         ctx->verify_cb = null_callback;
2372
2373     if (store && store->verify)
2374         ctx->verify = store->verify;
2375     else
2376         ctx->verify = internal_verify;
2377
2378     if (store && store->check_revocation)
2379         ctx->check_revocation = store->check_revocation;
2380     else
2381         ctx->check_revocation = check_revocation;
2382
2383     if (store && store->get_crl)
2384         ctx->get_crl = store->get_crl;
2385     else
2386         ctx->get_crl = NULL;
2387
2388     if (store && store->check_crl)
2389         ctx->check_crl = store->check_crl;
2390     else
2391         ctx->check_crl = check_crl;
2392
2393     if (store && store->cert_crl)
2394         ctx->cert_crl = store->cert_crl;
2395     else
2396         ctx->cert_crl = cert_crl;
2397
2398     if (store && store->lookup_certs)
2399         ctx->lookup_certs = store->lookup_certs;
2400     else
2401         ctx->lookup_certs = X509_STORE_get1_certs;
2402
2403     if (store && store->lookup_crls)
2404         ctx->lookup_crls = store->lookup_crls;
2405     else
2406         ctx->lookup_crls = X509_STORE_get1_crls;
2407
2408     ctx->check_policy = check_policy;
2409
2410     if (CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
2411                            &ctx->ex_data))
2412         return 1;
2413     X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2414
2415  err:
2416     /*
2417      * On error clean up allocated storage, if the store context was not
2418      * allocated with X509_STORE_CTX_new() this is our last chance to do so.
2419      */
2420     X509_STORE_CTX_cleanup(ctx);
2421     return 0;
2422 }
2423
2424 /*
2425  * Set alternative lookup method: just a STACK of trusted certificates. This
2426  * avoids X509_STORE nastiness where it isn't needed.
2427  */
2428
2429 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2430 {
2431     ctx->other_ctx = sk;
2432     ctx->get_issuer = get_issuer_sk;
2433 }
2434
2435 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
2436 {
2437     /*
2438      * We need to be idempotent because, unfortunately, free() also calls
2439      * cleanup(), so the natural call sequence new(), init(), cleanup(), free()
2440      * calls cleanup() for the same object twice!  Thus we must zero the
2441      * pointers below after they're freed!
2442      */
2443     /* Seems to always be 0 in OpenSSL, do this at most once. */
2444     if (ctx->cleanup != NULL) {
2445         ctx->cleanup(ctx);
2446         ctx->cleanup = NULL;
2447     }
2448     if (ctx->param != NULL) {
2449         if (ctx->parent == NULL)
2450             X509_VERIFY_PARAM_free(ctx->param);
2451         ctx->param = NULL;
2452     }
2453     if (ctx->tree != NULL) {
2454         X509_policy_tree_free(ctx->tree);
2455         ctx->tree = NULL;
2456     }
2457     if (ctx->chain != NULL) {
2458         sk_X509_pop_free(ctx->chain, X509_free);
2459         ctx->chain = NULL;
2460     }
2461     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
2462     memset(&ctx->ex_data, 0, sizeof(CRYPTO_EX_DATA));
2463 }
2464
2465 void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
2466 {
2467     X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2468 }
2469
2470 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
2471 {
2472     X509_VERIFY_PARAM_set_flags(ctx->param, flags);
2473 }
2474
2475 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags,
2476                              time_t t)
2477 {
2478     X509_VERIFY_PARAM_set_time(ctx->param, t);
2479 }
2480
2481 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
2482                                   int (*verify_cb) (int, X509_STORE_CTX *))
2483 {
2484     ctx->verify_cb = verify_cb;
2485 }
2486
2487 X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx)
2488 {
2489     return ctx->tree;
2490 }
2491
2492 int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx)
2493 {
2494     return ctx->explicit_policy;
2495 }
2496
2497 int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
2498 {
2499     const X509_VERIFY_PARAM *param;
2500     param = X509_VERIFY_PARAM_lookup(name);
2501     if (!param)
2502         return 0;
2503     return X509_VERIFY_PARAM_inherit(ctx->param, param);
2504 }
2505
2506 X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx)
2507 {
2508     return ctx->param;
2509 }
2510
2511 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
2512 {
2513     if (ctx->param)
2514         X509_VERIFY_PARAM_free(ctx->param);
2515     ctx->param = param;
2516 }
2517
2518 IMPLEMENT_STACK_OF(X509)
2519
2520 IMPLEMENT_ASN1_SET_OF(X509)
2521
2522 IMPLEMENT_STACK_OF(X509_NAME)
2523
2524 IMPLEMENT_STACK_OF(X509_ATTRIBUTE)
2525
2526 IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE)