ade5985db5e320b8574fb36d4b4fd9ca0ca7ac6d
[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             /*
717              * RFC3820, 4.1.3 (b)(1) stipulates that if pCPathLengthConstraint
718              * is less than max_path_length, the former should be copied to
719              * the latter, and 4.1.4 (a) stipulates that max_path_length
720              * should be verified to be larger than zero and decrement it.
721              *
722              * Because we're checking the certs in the reverse order, we start
723              * with verifying that proxy_path_length isn't larger than pcPLC,
724              * and copy the latter to the former if it is, and finally,
725              * increment proxy_path_length.
726              */
727             if (x->ex_pcpathlen != -1) {
728                 if (proxy_path_length > x->ex_pcpathlen) {
729                     ctx->error = X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED;
730                     ctx->error_depth = i;
731                     ctx->current_cert = x;
732                     ok = cb(0, ctx);
733                     if (!ok)
734                         goto end;
735                 }
736                 proxy_path_length = x->ex_pcpathlen;
737             }
738             proxy_path_length++;
739             must_be_ca = 0;
740         } else
741             must_be_ca = 1;
742     }
743     ok = 1;
744  end:
745     return ok;
746 #endif
747 }
748
749 static int check_name_constraints(X509_STORE_CTX *ctx)
750 {
751     X509 *x;
752     int i, j, rv;
753     /* Check name constraints for all certificates */
754     for (i = sk_X509_num(ctx->chain) - 1; i >= 0; i--) {
755         x = sk_X509_value(ctx->chain, i);
756         /* Ignore self issued certs unless last in chain */
757         if (i && (x->ex_flags & EXFLAG_SI))
758             continue;
759
760         /*
761          * Proxy certificates policy has an extra constraint, where the
762          * certificate subject MUST be the issuer with a single CN entry
763          * added.
764          * (RFC 3820: 3.4, 4.1.3 (a)(4))
765          */
766         if (x->ex_flags & EXFLAG_PROXY) {
767             X509_NAME *tmpsubject = X509_get_subject_name(x);
768             X509_NAME *tmpissuer = X509_get_issuer_name(x);
769             X509_NAME_ENTRY *tmpentry = NULL;
770             int last_object_nid = 0;
771             int err = X509_V_OK;
772             int last_object_loc = X509_NAME_entry_count(tmpsubject) - 1;
773
774             /* Check that there are at least two RDNs */
775             if (last_object_loc < 1) {
776                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
777                 goto proxy_name_done;
778             }
779
780             /*
781              * Check that there is exactly one more RDN in subject as
782              * there is in issuer.
783              */
784             if (X509_NAME_entry_count(tmpsubject)
785                 != X509_NAME_entry_count(tmpissuer) + 1) {
786                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
787                 goto proxy_name_done;
788             }
789
790             /*
791              * Check that the last subject component isn't part of a
792              * multivalued RDN
793              */
794             if (X509_NAME_get_entry(tmpsubject, last_object_loc)->set
795                 == X509_NAME_get_entry(tmpsubject, last_object_loc - 1)->set) {
796                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
797                 goto proxy_name_done;
798             }
799
800             /*
801              * Check that the last subject RDN is a commonName, and that
802              * all the previous RDNs match the issuer exactly
803              */
804             tmpsubject = X509_NAME_dup(tmpsubject);
805             if (tmpsubject == NULL) {
806                 X509err(X509_F_CHECK_NAME_CONSTRAINTS, ERR_R_MALLOC_FAILURE);
807                 ctx->error = X509_V_ERR_OUT_OF_MEM;
808                 return 0;
809             }
810
811             tmpentry =
812                 X509_NAME_delete_entry(tmpsubject, last_object_loc);
813             last_object_nid =
814                 OBJ_obj2nid(X509_NAME_ENTRY_get_object(tmpentry));
815
816             if (last_object_nid != NID_commonName
817                 || X509_NAME_cmp(tmpsubject, tmpissuer) != 0) {
818                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
819             }
820
821             X509_NAME_ENTRY_free(tmpentry);
822             X509_NAME_free(tmpsubject);
823
824          proxy_name_done:
825             if (err != X509_V_OK) {
826                 ctx->error = err;
827                 ctx->error_depth = i;
828                 ctx->current_cert = x;
829                 if (!ctx->verify_cb(0, ctx))
830                     return 0;
831             }
832         }
833
834         /*
835          * Check against constraints for all certificates higher in chain
836          * including trust anchor. Trust anchor not strictly speaking needed
837          * but if it includes constraints it is to be assumed it expects them
838          * to be obeyed.
839          */
840         for (j = sk_X509_num(ctx->chain) - 1; j > i; j--) {
841             NAME_CONSTRAINTS *nc = sk_X509_value(ctx->chain, j)->nc;
842             if (nc) {
843                 rv = NAME_CONSTRAINTS_check(x, nc);
844                 switch (rv) {
845                 case X509_V_OK:
846                     continue;
847                 case X509_V_ERR_OUT_OF_MEM:
848                     ctx->error = rv;
849                     return 0;
850                 default:
851                     ctx->error = rv;
852                     ctx->error_depth = i;
853                     ctx->current_cert = x;
854                     if (!ctx->verify_cb(0, ctx))
855                         return 0;
856                     break;
857                 }
858             }
859         }
860     }
861     return 1;
862 }
863
864 static int check_id_error(X509_STORE_CTX *ctx, int errcode)
865 {
866     ctx->error = errcode;
867     ctx->current_cert = ctx->cert;
868     ctx->error_depth = 0;
869     return ctx->verify_cb(0, ctx);
870 }
871
872 static int check_hosts(X509 *x, X509_VERIFY_PARAM_ID *id)
873 {
874     int i;
875     int n = sk_OPENSSL_STRING_num(id->hosts);
876     char *name;
877
878     if (id->peername != NULL) {
879         OPENSSL_free(id->peername);
880         id->peername = NULL;
881     }
882     for (i = 0; i < n; ++i) {
883         name = sk_OPENSSL_STRING_value(id->hosts, i);
884         if (X509_check_host(x, name, 0, id->hostflags, &id->peername) > 0)
885             return 1;
886     }
887     return n == 0;
888 }
889
890 static int check_id(X509_STORE_CTX *ctx)
891 {
892     X509_VERIFY_PARAM *vpm = ctx->param;
893     X509_VERIFY_PARAM_ID *id = vpm->id;
894     X509 *x = ctx->cert;
895     if (id->hosts && check_hosts(x, id) <= 0) {
896         if (!check_id_error(ctx, X509_V_ERR_HOSTNAME_MISMATCH))
897             return 0;
898     }
899     if (id->email && X509_check_email(x, id->email, id->emaillen, 0) <= 0) {
900         if (!check_id_error(ctx, X509_V_ERR_EMAIL_MISMATCH))
901             return 0;
902     }
903     if (id->ip && X509_check_ip(x, id->ip, id->iplen, 0) <= 0) {
904         if (!check_id_error(ctx, X509_V_ERR_IP_ADDRESS_MISMATCH))
905             return 0;
906     }
907     return 1;
908 }
909
910 static int check_trust(X509_STORE_CTX *ctx)
911 {
912     int i, ok;
913     X509 *x = NULL;
914     int (*cb) (int xok, X509_STORE_CTX *xctx);
915     cb = ctx->verify_cb;
916     /* Check all trusted certificates in chain */
917     for (i = ctx->last_untrusted; i < sk_X509_num(ctx->chain); i++) {
918         x = sk_X509_value(ctx->chain, i);
919         ok = X509_check_trust(x, ctx->param->trust, 0);
920         /* If explicitly trusted return trusted */
921         if (ok == X509_TRUST_TRUSTED)
922             return X509_TRUST_TRUSTED;
923         /*
924          * If explicitly rejected notify callback and reject if not
925          * overridden.
926          */
927         if (ok == X509_TRUST_REJECTED) {
928             ctx->error_depth = i;
929             ctx->current_cert = x;
930             ctx->error = X509_V_ERR_CERT_REJECTED;
931             ok = cb(0, ctx);
932             if (!ok)
933                 return X509_TRUST_REJECTED;
934         }
935     }
936     /*
937      * If we accept partial chains and have at least one trusted certificate
938      * return success.
939      */
940     if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
941         X509 *mx;
942         if (ctx->last_untrusted < sk_X509_num(ctx->chain))
943             return X509_TRUST_TRUSTED;
944         x = sk_X509_value(ctx->chain, 0);
945         mx = lookup_cert_match(ctx, x);
946         if (mx) {
947             (void)sk_X509_set(ctx->chain, 0, mx);
948             X509_free(x);
949             ctx->last_untrusted = 0;
950             return X509_TRUST_TRUSTED;
951         }
952     }
953
954     /*
955      * If no trusted certs in chain at all return untrusted and allow
956      * standard (no issuer cert) etc errors to be indicated.
957      */
958     return X509_TRUST_UNTRUSTED;
959 }
960
961 static int check_revocation(X509_STORE_CTX *ctx)
962 {
963     int i, last, ok;
964     if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
965         return 1;
966     if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
967         last = sk_X509_num(ctx->chain) - 1;
968     else {
969         /* If checking CRL paths this isn't the EE certificate */
970         if (ctx->parent)
971             return 1;
972         last = 0;
973     }
974     for (i = 0; i <= last; i++) {
975         ctx->error_depth = i;
976         ok = check_cert(ctx);
977         if (!ok)
978             return ok;
979     }
980     return 1;
981 }
982
983 static int check_cert(X509_STORE_CTX *ctx)
984 {
985     X509_CRL *crl = NULL, *dcrl = NULL;
986     X509 *x;
987     int ok, cnum;
988     unsigned int last_reasons;
989     cnum = ctx->error_depth;
990     x = sk_X509_value(ctx->chain, cnum);
991     ctx->current_cert = x;
992     ctx->current_issuer = NULL;
993     ctx->current_crl_score = 0;
994     ctx->current_reasons = 0;
995     while (ctx->current_reasons != CRLDP_ALL_REASONS) {
996         last_reasons = ctx->current_reasons;
997         /* Try to retrieve relevant CRL */
998         if (ctx->get_crl)
999             ok = ctx->get_crl(ctx, &crl, x);
1000         else
1001             ok = get_crl_delta(ctx, &crl, &dcrl, x);
1002         /*
1003          * If error looking up CRL, nothing we can do except notify callback
1004          */
1005         if (!ok) {
1006             ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
1007             ok = ctx->verify_cb(0, ctx);
1008             goto err;
1009         }
1010         ctx->current_crl = crl;
1011         ok = ctx->check_crl(ctx, crl);
1012         if (!ok)
1013             goto err;
1014
1015         if (dcrl) {
1016             ok = ctx->check_crl(ctx, dcrl);
1017             if (!ok)
1018                 goto err;
1019             ok = ctx->cert_crl(ctx, dcrl, x);
1020             if (!ok)
1021                 goto err;
1022         } else
1023             ok = 1;
1024
1025         /* Don't look in full CRL if delta reason is removefromCRL */
1026         if (ok != 2) {
1027             ok = ctx->cert_crl(ctx, crl, x);
1028             if (!ok)
1029                 goto err;
1030         }
1031
1032         X509_CRL_free(crl);
1033         X509_CRL_free(dcrl);
1034         crl = NULL;
1035         dcrl = NULL;
1036         /*
1037          * If reasons not updated we wont get anywhere by another iteration,
1038          * so exit loop.
1039          */
1040         if (last_reasons == ctx->current_reasons) {
1041             ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
1042             ok = ctx->verify_cb(0, ctx);
1043             goto err;
1044         }
1045     }
1046  err:
1047     X509_CRL_free(crl);
1048     X509_CRL_free(dcrl);
1049
1050     ctx->current_crl = NULL;
1051     return ok;
1052
1053 }
1054
1055 /* Check CRL times against values in X509_STORE_CTX */
1056
1057 static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
1058 {
1059     time_t *ptime;
1060     int i;
1061     if (notify)
1062         ctx->current_crl = crl;
1063     if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1064         ptime = &ctx->param->check_time;
1065     else
1066         ptime = NULL;
1067
1068     i = X509_cmp_time(X509_CRL_get_lastUpdate(crl), ptime);
1069     if (i == 0) {
1070         if (!notify)
1071             return 0;
1072         ctx->error = X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD;
1073         if (!ctx->verify_cb(0, ctx))
1074             return 0;
1075     }
1076
1077     if (i > 0) {
1078         if (!notify)
1079             return 0;
1080         ctx->error = X509_V_ERR_CRL_NOT_YET_VALID;
1081         if (!ctx->verify_cb(0, ctx))
1082             return 0;
1083     }
1084
1085     if (X509_CRL_get_nextUpdate(crl)) {
1086         i = X509_cmp_time(X509_CRL_get_nextUpdate(crl), ptime);
1087
1088         if (i == 0) {
1089             if (!notify)
1090                 return 0;
1091             ctx->error = X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD;
1092             if (!ctx->verify_cb(0, ctx))
1093                 return 0;
1094         }
1095         /* Ignore expiry of base CRL is delta is valid */
1096         if ((i < 0) && !(ctx->current_crl_score & CRL_SCORE_TIME_DELTA)) {
1097             if (!notify)
1098                 return 0;
1099             ctx->error = X509_V_ERR_CRL_HAS_EXPIRED;
1100             if (!ctx->verify_cb(0, ctx))
1101                 return 0;
1102         }
1103     }
1104
1105     if (notify)
1106         ctx->current_crl = NULL;
1107
1108     return 1;
1109 }
1110
1111 static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl,
1112                       X509 **pissuer, int *pscore, unsigned int *preasons,
1113                       STACK_OF(X509_CRL) *crls)
1114 {
1115     int i, crl_score, best_score = *pscore;
1116     unsigned int reasons, best_reasons = 0;
1117     X509 *x = ctx->current_cert;
1118     X509_CRL *crl, *best_crl = NULL;
1119     X509 *crl_issuer = NULL, *best_crl_issuer = NULL;
1120
1121     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1122         crl = sk_X509_CRL_value(crls, i);
1123         reasons = *preasons;
1124         crl_score = get_crl_score(ctx, &crl_issuer, &reasons, crl, x);
1125         if (crl_score < best_score)
1126             continue;
1127         /* If current CRL is equivalent use it if it is newer */
1128         if (crl_score == best_score) {
1129             int day, sec;
1130             if (ASN1_TIME_diff(&day, &sec, X509_CRL_get_lastUpdate(best_crl),
1131                                X509_CRL_get_lastUpdate(crl)) == 0)
1132                 continue;
1133             /*
1134              * ASN1_TIME_diff never returns inconsistent signs for |day|
1135              * and |sec|.
1136              */
1137             if (day <= 0 && sec <= 0)
1138                 continue;
1139         }
1140         best_crl = crl;
1141         best_crl_issuer = crl_issuer;
1142         best_score = crl_score;
1143         best_reasons = reasons;
1144     }
1145
1146     if (best_crl) {
1147         if (*pcrl)
1148             X509_CRL_free(*pcrl);
1149         *pcrl = best_crl;
1150         *pissuer = best_crl_issuer;
1151         *pscore = best_score;
1152         *preasons = best_reasons;
1153         CRYPTO_add(&best_crl->references, 1, CRYPTO_LOCK_X509_CRL);
1154         if (*pdcrl) {
1155             X509_CRL_free(*pdcrl);
1156             *pdcrl = NULL;
1157         }
1158         get_delta_sk(ctx, pdcrl, pscore, best_crl, crls);
1159     }
1160
1161     if (best_score >= CRL_SCORE_VALID)
1162         return 1;
1163
1164     return 0;
1165 }
1166
1167 /*
1168  * Compare two CRL extensions for delta checking purposes. They should be
1169  * both present or both absent. If both present all fields must be identical.
1170  */
1171
1172 static int crl_extension_match(X509_CRL *a, X509_CRL *b, int nid)
1173 {
1174     ASN1_OCTET_STRING *exta, *extb;
1175     int i;
1176     i = X509_CRL_get_ext_by_NID(a, nid, -1);
1177     if (i >= 0) {
1178         /* Can't have multiple occurrences */
1179         if (X509_CRL_get_ext_by_NID(a, nid, i) != -1)
1180             return 0;
1181         exta = X509_EXTENSION_get_data(X509_CRL_get_ext(a, i));
1182     } else
1183         exta = NULL;
1184
1185     i = X509_CRL_get_ext_by_NID(b, nid, -1);
1186
1187     if (i >= 0) {
1188
1189         if (X509_CRL_get_ext_by_NID(b, nid, i) != -1)
1190             return 0;
1191         extb = X509_EXTENSION_get_data(X509_CRL_get_ext(b, i));
1192     } else
1193         extb = NULL;
1194
1195     if (!exta && !extb)
1196         return 1;
1197
1198     if (!exta || !extb)
1199         return 0;
1200
1201     if (ASN1_OCTET_STRING_cmp(exta, extb))
1202         return 0;
1203
1204     return 1;
1205 }
1206
1207 /* See if a base and delta are compatible */
1208
1209 static int check_delta_base(X509_CRL *delta, X509_CRL *base)
1210 {
1211     /* Delta CRL must be a delta */
1212     if (!delta->base_crl_number)
1213         return 0;
1214     /* Base must have a CRL number */
1215     if (!base->crl_number)
1216         return 0;
1217     /* Issuer names must match */
1218     if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(delta)))
1219         return 0;
1220     /* AKID and IDP must match */
1221     if (!crl_extension_match(delta, base, NID_authority_key_identifier))
1222         return 0;
1223     if (!crl_extension_match(delta, base, NID_issuing_distribution_point))
1224         return 0;
1225     /* Delta CRL base number must not exceed Full CRL number. */
1226     if (ASN1_INTEGER_cmp(delta->base_crl_number, base->crl_number) > 0)
1227         return 0;
1228     /* Delta CRL number must exceed full CRL number */
1229     if (ASN1_INTEGER_cmp(delta->crl_number, base->crl_number) > 0)
1230         return 1;
1231     return 0;
1232 }
1233
1234 /*
1235  * For a given base CRL find a delta... maybe extend to delta scoring or
1236  * retrieve a chain of deltas...
1237  */
1238
1239 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore,
1240                          X509_CRL *base, STACK_OF(X509_CRL) *crls)
1241 {
1242     X509_CRL *delta;
1243     int i;
1244     if (!(ctx->param->flags & X509_V_FLAG_USE_DELTAS))
1245         return;
1246     if (!((ctx->current_cert->ex_flags | base->flags) & EXFLAG_FRESHEST))
1247         return;
1248     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1249         delta = sk_X509_CRL_value(crls, i);
1250         if (check_delta_base(delta, base)) {
1251             if (check_crl_time(ctx, delta, 0))
1252                 *pscore |= CRL_SCORE_TIME_DELTA;
1253             CRYPTO_add(&delta->references, 1, CRYPTO_LOCK_X509_CRL);
1254             *dcrl = delta;
1255             return;
1256         }
1257     }
1258     *dcrl = NULL;
1259 }
1260
1261 /*
1262  * For a given CRL return how suitable it is for the supplied certificate
1263  * 'x'. The return value is a mask of several criteria. If the issuer is not
1264  * the certificate issuer this is returned in *pissuer. The reasons mask is
1265  * also used to determine if the CRL is suitable: if no new reasons the CRL
1266  * is rejected, otherwise reasons is updated.
1267  */
1268
1269 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
1270                          unsigned int *preasons, X509_CRL *crl, X509 *x)
1271 {
1272
1273     int crl_score = 0;
1274     unsigned int tmp_reasons = *preasons, crl_reasons;
1275
1276     /* First see if we can reject CRL straight away */
1277
1278     /* Invalid IDP cannot be processed */
1279     if (crl->idp_flags & IDP_INVALID)
1280         return 0;
1281     /* Reason codes or indirect CRLs need extended CRL support */
1282     if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT)) {
1283         if (crl->idp_flags & (IDP_INDIRECT | IDP_REASONS))
1284             return 0;
1285     } else if (crl->idp_flags & IDP_REASONS) {
1286         /* If no new reasons reject */
1287         if (!(crl->idp_reasons & ~tmp_reasons))
1288             return 0;
1289     }
1290     /* Don't process deltas at this stage */
1291     else if (crl->base_crl_number)
1292         return 0;
1293     /* If issuer name doesn't match certificate need indirect CRL */
1294     if (X509_NAME_cmp(X509_get_issuer_name(x), X509_CRL_get_issuer(crl))) {
1295         if (!(crl->idp_flags & IDP_INDIRECT))
1296             return 0;
1297     } else
1298         crl_score |= CRL_SCORE_ISSUER_NAME;
1299
1300     if (!(crl->flags & EXFLAG_CRITICAL))
1301         crl_score |= CRL_SCORE_NOCRITICAL;
1302
1303     /* Check expiry */
1304     if (check_crl_time(ctx, crl, 0))
1305         crl_score |= CRL_SCORE_TIME;
1306
1307     /* Check authority key ID and locate certificate issuer */
1308     crl_akid_check(ctx, crl, pissuer, &crl_score);
1309
1310     /* If we can't locate certificate issuer at this point forget it */
1311
1312     if (!(crl_score & CRL_SCORE_AKID))
1313         return 0;
1314
1315     /* Check cert for matching CRL distribution points */
1316
1317     if (crl_crldp_check(x, crl, crl_score, &crl_reasons)) {
1318         /* If no new reasons reject */
1319         if (!(crl_reasons & ~tmp_reasons))
1320             return 0;
1321         tmp_reasons |= crl_reasons;
1322         crl_score |= CRL_SCORE_SCOPE;
1323     }
1324
1325     *preasons = tmp_reasons;
1326
1327     return crl_score;
1328
1329 }
1330
1331 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl,
1332                            X509 **pissuer, int *pcrl_score)
1333 {
1334     X509 *crl_issuer = NULL;
1335     X509_NAME *cnm = X509_CRL_get_issuer(crl);
1336     int cidx = ctx->error_depth;
1337     int i;
1338
1339     if (cidx != sk_X509_num(ctx->chain) - 1)
1340         cidx++;
1341
1342     crl_issuer = sk_X509_value(ctx->chain, cidx);
1343
1344     if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1345         if (*pcrl_score & CRL_SCORE_ISSUER_NAME) {
1346             *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_ISSUER_CERT;
1347             *pissuer = crl_issuer;
1348             return;
1349         }
1350     }
1351
1352     for (cidx++; cidx < sk_X509_num(ctx->chain); cidx++) {
1353         crl_issuer = sk_X509_value(ctx->chain, cidx);
1354         if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1355             continue;
1356         if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1357             *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_SAME_PATH;
1358             *pissuer = crl_issuer;
1359             return;
1360         }
1361     }
1362
1363     /* Anything else needs extended CRL support */
1364
1365     if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT))
1366         return;
1367
1368     /*
1369      * Otherwise the CRL issuer is not on the path. Look for it in the set of
1370      * untrusted certificates.
1371      */
1372     for (i = 0; i < sk_X509_num(ctx->untrusted); i++) {
1373         crl_issuer = sk_X509_value(ctx->untrusted, i);
1374         if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1375             continue;
1376         if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1377             *pissuer = crl_issuer;
1378             *pcrl_score |= CRL_SCORE_AKID;
1379             return;
1380         }
1381     }
1382 }
1383
1384 /*
1385  * Check the path of a CRL issuer certificate. This creates a new
1386  * X509_STORE_CTX and populates it with most of the parameters from the
1387  * parent. This could be optimised somewhat since a lot of path checking will
1388  * be duplicated by the parent, but this will rarely be used in practice.
1389  */
1390
1391 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x)
1392 {
1393     X509_STORE_CTX crl_ctx;
1394     int ret;
1395     /* Don't allow recursive CRL path validation */
1396     if (ctx->parent)
1397         return 0;
1398     if (!X509_STORE_CTX_init(&crl_ctx, ctx->ctx, x, ctx->untrusted))
1399         return -1;
1400
1401     crl_ctx.crls = ctx->crls;
1402     /* Copy verify params across */
1403     X509_STORE_CTX_set0_param(&crl_ctx, ctx->param);
1404
1405     crl_ctx.parent = ctx;
1406     crl_ctx.verify_cb = ctx->verify_cb;
1407
1408     /* Verify CRL issuer */
1409     ret = X509_verify_cert(&crl_ctx);
1410
1411     if (ret <= 0)
1412         goto err;
1413
1414     /* Check chain is acceptable */
1415
1416     ret = check_crl_chain(ctx, ctx->chain, crl_ctx.chain);
1417  err:
1418     X509_STORE_CTX_cleanup(&crl_ctx);
1419     return ret;
1420 }
1421
1422 /*
1423  * RFC3280 says nothing about the relationship between CRL path and
1424  * certificate path, which could lead to situations where a certificate could
1425  * be revoked or validated by a CA not authorised to do so. RFC5280 is more
1426  * strict and states that the two paths must end in the same trust anchor,
1427  * though some discussions remain... until this is resolved we use the
1428  * RFC5280 version
1429  */
1430
1431 static int check_crl_chain(X509_STORE_CTX *ctx,
1432                            STACK_OF(X509) *cert_path,
1433                            STACK_OF(X509) *crl_path)
1434 {
1435     X509 *cert_ta, *crl_ta;
1436     cert_ta = sk_X509_value(cert_path, sk_X509_num(cert_path) - 1);
1437     crl_ta = sk_X509_value(crl_path, sk_X509_num(crl_path) - 1);
1438     if (!X509_cmp(cert_ta, crl_ta))
1439         return 1;
1440     return 0;
1441 }
1442
1443 /*-
1444  * Check for match between two dist point names: three separate cases.
1445  * 1. Both are relative names and compare X509_NAME types.
1446  * 2. One full, one relative. Compare X509_NAME to GENERAL_NAMES.
1447  * 3. Both are full names and compare two GENERAL_NAMES.
1448  * 4. One is NULL: automatic match.
1449  */
1450
1451 static int idp_check_dp(DIST_POINT_NAME *a, DIST_POINT_NAME *b)
1452 {
1453     X509_NAME *nm = NULL;
1454     GENERAL_NAMES *gens = NULL;
1455     GENERAL_NAME *gena, *genb;
1456     int i, j;
1457     if (!a || !b)
1458         return 1;
1459     if (a->type == 1) {
1460         if (!a->dpname)
1461             return 0;
1462         /* Case 1: two X509_NAME */
1463         if (b->type == 1) {
1464             if (!b->dpname)
1465                 return 0;
1466             if (!X509_NAME_cmp(a->dpname, b->dpname))
1467                 return 1;
1468             else
1469                 return 0;
1470         }
1471         /* Case 2: set name and GENERAL_NAMES appropriately */
1472         nm = a->dpname;
1473         gens = b->name.fullname;
1474     } else if (b->type == 1) {
1475         if (!b->dpname)
1476             return 0;
1477         /* Case 2: set name and GENERAL_NAMES appropriately */
1478         gens = a->name.fullname;
1479         nm = b->dpname;
1480     }
1481
1482     /* Handle case 2 with one GENERAL_NAMES and one X509_NAME */
1483     if (nm) {
1484         for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
1485             gena = sk_GENERAL_NAME_value(gens, i);
1486             if (gena->type != GEN_DIRNAME)
1487                 continue;
1488             if (!X509_NAME_cmp(nm, gena->d.directoryName))
1489                 return 1;
1490         }
1491         return 0;
1492     }
1493
1494     /* Else case 3: two GENERAL_NAMES */
1495
1496     for (i = 0; i < sk_GENERAL_NAME_num(a->name.fullname); i++) {
1497         gena = sk_GENERAL_NAME_value(a->name.fullname, i);
1498         for (j = 0; j < sk_GENERAL_NAME_num(b->name.fullname); j++) {
1499             genb = sk_GENERAL_NAME_value(b->name.fullname, j);
1500             if (!GENERAL_NAME_cmp(gena, genb))
1501                 return 1;
1502         }
1503     }
1504
1505     return 0;
1506
1507 }
1508
1509 static int crldp_check_crlissuer(DIST_POINT *dp, X509_CRL *crl, int crl_score)
1510 {
1511     int i;
1512     X509_NAME *nm = X509_CRL_get_issuer(crl);
1513     /* If no CRLissuer return is successful iff don't need a match */
1514     if (!dp->CRLissuer)
1515         return ! !(crl_score & CRL_SCORE_ISSUER_NAME);
1516     for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
1517         GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
1518         if (gen->type != GEN_DIRNAME)
1519             continue;
1520         if (!X509_NAME_cmp(gen->d.directoryName, nm))
1521             return 1;
1522     }
1523     return 0;
1524 }
1525
1526 /* Check CRLDP and IDP */
1527
1528 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
1529                            unsigned int *preasons)
1530 {
1531     int i;
1532     if (crl->idp_flags & IDP_ONLYATTR)
1533         return 0;
1534     if (x->ex_flags & EXFLAG_CA) {
1535         if (crl->idp_flags & IDP_ONLYUSER)
1536             return 0;
1537     } else {
1538         if (crl->idp_flags & IDP_ONLYCA)
1539             return 0;
1540     }
1541     *preasons = crl->idp_reasons;
1542     for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
1543         DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
1544         if (crldp_check_crlissuer(dp, crl, crl_score)) {
1545             if (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint)) {
1546                 *preasons &= dp->dp_reasons;
1547                 return 1;
1548             }
1549         }
1550     }
1551     if ((!crl->idp || !crl->idp->distpoint)
1552         && (crl_score & CRL_SCORE_ISSUER_NAME))
1553         return 1;
1554     return 0;
1555 }
1556
1557 /*
1558  * Retrieve CRL corresponding to current certificate. If deltas enabled try
1559  * to find a delta CRL too
1560  */
1561
1562 static int get_crl_delta(X509_STORE_CTX *ctx,
1563                          X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x)
1564 {
1565     int ok;
1566     X509 *issuer = NULL;
1567     int crl_score = 0;
1568     unsigned int reasons;
1569     X509_CRL *crl = NULL, *dcrl = NULL;
1570     STACK_OF(X509_CRL) *skcrl;
1571     X509_NAME *nm = X509_get_issuer_name(x);
1572     reasons = ctx->current_reasons;
1573     ok = get_crl_sk(ctx, &crl, &dcrl,
1574                     &issuer, &crl_score, &reasons, ctx->crls);
1575
1576     if (ok)
1577         goto done;
1578
1579     /* Lookup CRLs from store */
1580
1581     skcrl = ctx->lookup_crls(ctx, nm);
1582
1583     /* If no CRLs found and a near match from get_crl_sk use that */
1584     if (!skcrl && crl)
1585         goto done;
1586
1587     get_crl_sk(ctx, &crl, &dcrl, &issuer, &crl_score, &reasons, skcrl);
1588
1589     sk_X509_CRL_pop_free(skcrl, X509_CRL_free);
1590
1591  done:
1592
1593     /* If we got any kind of CRL use it and return success */
1594     if (crl) {
1595         ctx->current_issuer = issuer;
1596         ctx->current_crl_score = crl_score;
1597         ctx->current_reasons = reasons;
1598         *pcrl = crl;
1599         *pdcrl = dcrl;
1600         return 1;
1601     }
1602
1603     return 0;
1604 }
1605
1606 /* Check CRL validity */
1607 static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
1608 {
1609     X509 *issuer = NULL;
1610     EVP_PKEY *ikey = NULL;
1611     int ok = 0, chnum, cnum;
1612     cnum = ctx->error_depth;
1613     chnum = sk_X509_num(ctx->chain) - 1;
1614     /* if we have an alternative CRL issuer cert use that */
1615     if (ctx->current_issuer)
1616         issuer = ctx->current_issuer;
1617
1618     /*
1619      * Else find CRL issuer: if not last certificate then issuer is next
1620      * certificate in chain.
1621      */
1622     else if (cnum < chnum)
1623         issuer = sk_X509_value(ctx->chain, cnum + 1);
1624     else {
1625         issuer = sk_X509_value(ctx->chain, chnum);
1626         /* If not self signed, can't check signature */
1627         if (!ctx->check_issued(ctx, issuer, issuer)) {
1628             ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER;
1629             ok = ctx->verify_cb(0, ctx);
1630             if (!ok)
1631                 goto err;
1632         }
1633     }
1634
1635     if (issuer) {
1636         /*
1637          * Skip most tests for deltas because they have already been done
1638          */
1639         if (!crl->base_crl_number) {
1640             /* Check for cRLSign bit if keyUsage present */
1641             if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
1642                 !(issuer->ex_kusage & KU_CRL_SIGN)) {
1643                 ctx->error = X509_V_ERR_KEYUSAGE_NO_CRL_SIGN;
1644                 ok = ctx->verify_cb(0, ctx);
1645                 if (!ok)
1646                     goto err;
1647             }
1648
1649             if (!(ctx->current_crl_score & CRL_SCORE_SCOPE)) {
1650                 ctx->error = X509_V_ERR_DIFFERENT_CRL_SCOPE;
1651                 ok = ctx->verify_cb(0, ctx);
1652                 if (!ok)
1653                     goto err;
1654             }
1655
1656             if (!(ctx->current_crl_score & CRL_SCORE_SAME_PATH)) {
1657                 if (check_crl_path(ctx, ctx->current_issuer) <= 0) {
1658                     ctx->error = X509_V_ERR_CRL_PATH_VALIDATION_ERROR;
1659                     ok = ctx->verify_cb(0, ctx);
1660                     if (!ok)
1661                         goto err;
1662                 }
1663             }
1664
1665             if (crl->idp_flags & IDP_INVALID) {
1666                 ctx->error = X509_V_ERR_INVALID_EXTENSION;
1667                 ok = ctx->verify_cb(0, ctx);
1668                 if (!ok)
1669                     goto err;
1670             }
1671
1672         }
1673
1674         if (!(ctx->current_crl_score & CRL_SCORE_TIME)) {
1675             ok = check_crl_time(ctx, crl, 1);
1676             if (!ok)
1677                 goto err;
1678         }
1679
1680         /* Attempt to get issuer certificate public key */
1681         ikey = X509_get_pubkey(issuer);
1682
1683         if (!ikey) {
1684             ctx->error = X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1685             ok = ctx->verify_cb(0, ctx);
1686             if (!ok)
1687                 goto err;
1688         } else {
1689             int rv;
1690             rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags);
1691             if (rv != X509_V_OK) {
1692                 ctx->error = rv;
1693                 ok = ctx->verify_cb(0, ctx);
1694                 if (!ok)
1695                     goto err;
1696             }
1697             /* Verify CRL signature */
1698             if (X509_CRL_verify(crl, ikey) <= 0) {
1699                 ctx->error = X509_V_ERR_CRL_SIGNATURE_FAILURE;
1700                 ok = ctx->verify_cb(0, ctx);
1701                 if (!ok)
1702                     goto err;
1703             }
1704         }
1705     }
1706
1707     ok = 1;
1708
1709  err:
1710     EVP_PKEY_free(ikey);
1711     return ok;
1712 }
1713
1714 /* Check certificate against CRL */
1715 static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
1716 {
1717     int ok;
1718     X509_REVOKED *rev;
1719     /*
1720      * The rules changed for this... previously if a CRL contained unhandled
1721      * critical extensions it could still be used to indicate a certificate
1722      * was revoked. This has since been changed since critical extension can
1723      * change the meaning of CRL entries.
1724      */
1725     if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
1726         && (crl->flags & EXFLAG_CRITICAL)) {
1727         ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION;
1728         ok = ctx->verify_cb(0, ctx);
1729         if (!ok)
1730             return 0;
1731     }
1732     /*
1733      * Look for serial number of certificate in CRL If found make sure reason
1734      * is not removeFromCRL.
1735      */
1736     if (X509_CRL_get0_by_cert(crl, &rev, x)) {
1737         if (rev->reason == CRL_REASON_REMOVE_FROM_CRL)
1738             return 2;
1739         ctx->error = X509_V_ERR_CERT_REVOKED;
1740         ok = ctx->verify_cb(0, ctx);
1741         if (!ok)
1742             return 0;
1743     }
1744
1745     return 1;
1746 }
1747
1748 static int check_policy(X509_STORE_CTX *ctx)
1749 {
1750     int ret;
1751     if (ctx->parent)
1752         return 1;
1753     ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
1754                             ctx->param->policies, ctx->param->flags);
1755     if (ret == 0) {
1756         X509err(X509_F_CHECK_POLICY, ERR_R_MALLOC_FAILURE);
1757         ctx->error = X509_V_ERR_OUT_OF_MEM;
1758         return 0;
1759     }
1760     /* Invalid or inconsistent extensions */
1761     if (ret == -1) {
1762         /*
1763          * Locate certificates with bad extensions and notify callback.
1764          */
1765         X509 *x;
1766         int i;
1767         for (i = 1; i < sk_X509_num(ctx->chain); i++) {
1768             x = sk_X509_value(ctx->chain, i);
1769             if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
1770                 continue;
1771             ctx->current_cert = x;
1772             ctx->error = X509_V_ERR_INVALID_POLICY_EXTENSION;
1773             if (!ctx->verify_cb(0, ctx))
1774                 return 0;
1775         }
1776         return 1;
1777     }
1778     if (ret == -2) {
1779         ctx->current_cert = NULL;
1780         ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
1781         return ctx->verify_cb(0, ctx);
1782     }
1783
1784     if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY) {
1785         ctx->current_cert = NULL;
1786         /*
1787          * Verification errors need to be "sticky", a callback may have allowed
1788          * an SSL handshake to continue despite an error, and we must then
1789          * remain in an error state.  Therefore, we MUST NOT clear earlier
1790          * verification errors by setting the error to X509_V_OK.
1791          */
1792         if (!ctx->verify_cb(2, ctx))
1793             return 0;
1794     }
1795
1796     return 1;
1797 }
1798
1799 static int check_cert_time(X509_STORE_CTX *ctx, X509 *x)
1800 {
1801     time_t *ptime;
1802     int i;
1803
1804     if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1805         ptime = &ctx->param->check_time;
1806     else
1807         ptime = NULL;
1808
1809     i = X509_cmp_time(X509_get_notBefore(x), ptime);
1810     if (i == 0) {
1811         ctx->error = X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD;
1812         ctx->current_cert = x;
1813         if (!ctx->verify_cb(0, ctx))
1814             return 0;
1815     }
1816
1817     if (i > 0) {
1818         ctx->error = X509_V_ERR_CERT_NOT_YET_VALID;
1819         ctx->current_cert = x;
1820         if (!ctx->verify_cb(0, ctx))
1821             return 0;
1822     }
1823
1824     i = X509_cmp_time(X509_get_notAfter(x), ptime);
1825     if (i == 0) {
1826         ctx->error = X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD;
1827         ctx->current_cert = x;
1828         if (!ctx->verify_cb(0, ctx))
1829             return 0;
1830     }
1831
1832     if (i < 0) {
1833         ctx->error = X509_V_ERR_CERT_HAS_EXPIRED;
1834         ctx->current_cert = x;
1835         if (!ctx->verify_cb(0, ctx))
1836             return 0;
1837     }
1838
1839     return 1;
1840 }
1841
1842 static int internal_verify(X509_STORE_CTX *ctx)
1843 {
1844     int ok = 0, n;
1845     X509 *xs, *xi;
1846     EVP_PKEY *pkey = NULL;
1847     int (*cb) (int xok, X509_STORE_CTX *xctx);
1848
1849     cb = ctx->verify_cb;
1850
1851     n = sk_X509_num(ctx->chain);
1852     ctx->error_depth = n - 1;
1853     n--;
1854     xi = sk_X509_value(ctx->chain, n);
1855
1856     if (ctx->check_issued(ctx, xi, xi))
1857         xs = xi;
1858     else {
1859         if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
1860             xs = xi;
1861             goto check_cert;
1862         }
1863         if (n <= 0) {
1864             ctx->error = X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE;
1865             ctx->current_cert = xi;
1866             ok = cb(0, ctx);
1867             goto end;
1868         } else {
1869             n--;
1870             ctx->error_depth = n;
1871             xs = sk_X509_value(ctx->chain, n);
1872         }
1873     }
1874
1875 /*      ctx->error=0;  not needed */
1876     while (n >= 0) {
1877         ctx->error_depth = n;
1878
1879         /*
1880          * Skip signature check for self signed certificates unless
1881          * explicitly asked for. It doesn't add any security and just wastes
1882          * time.
1883          */
1884         if (!xs->valid
1885             && (xs != xi
1886                 || (ctx->param->flags & X509_V_FLAG_CHECK_SS_SIGNATURE))) {
1887             if ((pkey = X509_get_pubkey(xi)) == NULL) {
1888                 ctx->error = X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1889                 ctx->current_cert = xi;
1890                 ok = (*cb) (0, ctx);
1891                 if (!ok)
1892                     goto end;
1893             } else if (X509_verify(xs, pkey) <= 0) {
1894                 ctx->error = X509_V_ERR_CERT_SIGNATURE_FAILURE;
1895                 ctx->current_cert = xs;
1896                 ok = (*cb) (0, ctx);
1897                 if (!ok) {
1898                     EVP_PKEY_free(pkey);
1899                     goto end;
1900                 }
1901             }
1902             EVP_PKEY_free(pkey);
1903             pkey = NULL;
1904         }
1905
1906         xs->valid = 1;
1907
1908  check_cert:
1909         ok = check_cert_time(ctx, xs);
1910         if (!ok)
1911             goto end;
1912
1913         /* The last error (if any) is still in the error value */
1914         ctx->current_issuer = xi;
1915         ctx->current_cert = xs;
1916         ok = (*cb) (1, ctx);
1917         if (!ok)
1918             goto end;
1919
1920         n--;
1921         if (n >= 0) {
1922             xi = xs;
1923             xs = sk_X509_value(ctx->chain, n);
1924         }
1925     }
1926     ok = 1;
1927  end:
1928     return ok;
1929 }
1930
1931 int X509_cmp_current_time(const ASN1_TIME *ctm)
1932 {
1933     return X509_cmp_time(ctm, NULL);
1934 }
1935
1936 int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
1937 {
1938     char *str;
1939     ASN1_TIME atm;
1940     long offset;
1941     char buff1[24], buff2[24], *p;
1942     int i, j, remaining;
1943
1944     p = buff1;
1945     remaining = ctm->length;
1946     str = (char *)ctm->data;
1947     /*
1948      * Note that the following (historical) code allows much more slack in the
1949      * time format than RFC5280. In RFC5280, the representation is fixed:
1950      * UTCTime: YYMMDDHHMMSSZ
1951      * GeneralizedTime: YYYYMMDDHHMMSSZ
1952      */
1953     if (ctm->type == V_ASN1_UTCTIME) {
1954         /* YYMMDDHHMM[SS]Z or YYMMDDHHMM[SS](+-)hhmm */
1955         int min_length = sizeof("YYMMDDHHMMZ") - 1;
1956         int max_length = sizeof("YYMMDDHHMMSS+hhmm") - 1;
1957         if (remaining < min_length || remaining > max_length)
1958             return 0;
1959         memcpy(p, str, 10);
1960         p += 10;
1961         str += 10;
1962         remaining -= 10;
1963     } else {
1964         /* YYYYMMDDHHMM[SS[.fff]]Z or YYYYMMDDHHMM[SS[.f[f[f]]]](+-)hhmm */
1965         int min_length = sizeof("YYYYMMDDHHMMZ") - 1;
1966         int max_length = sizeof("YYYYMMDDHHMMSS.fff+hhmm") - 1;
1967         if (remaining < min_length || remaining > max_length)
1968             return 0;
1969         memcpy(p, str, 12);
1970         p += 12;
1971         str += 12;
1972         remaining -= 12;
1973     }
1974
1975     if ((*str == 'Z') || (*str == '-') || (*str == '+')) {
1976         *(p++) = '0';
1977         *(p++) = '0';
1978     } else {
1979         /* SS (seconds) */
1980         if (remaining < 2)
1981             return 0;
1982         *(p++) = *(str++);
1983         *(p++) = *(str++);
1984         remaining -= 2;
1985         /*
1986          * Skip any (up to three) fractional seconds...
1987          * TODO(emilia): in RFC5280, fractional seconds are forbidden.
1988          * Can we just kill them altogether?
1989          */
1990         if (remaining && *str == '.') {
1991             str++;
1992             remaining--;
1993             for (i = 0; i < 3 && remaining; i++, str++, remaining--) {
1994                 if (*str < '0' || *str > '9')
1995                     break;
1996             }
1997         }
1998
1999     }
2000     *(p++) = 'Z';
2001     *(p++) = '\0';
2002
2003     /* We now need either a terminating 'Z' or an offset. */
2004     if (!remaining)
2005         return 0;
2006     if (*str == 'Z') {
2007         if (remaining != 1)
2008             return 0;
2009         offset = 0;
2010     } else {
2011         /* (+-)HHMM */
2012         if ((*str != '+') && (*str != '-'))
2013             return 0;
2014         /* Historical behaviour: the (+-)hhmm offset is forbidden in RFC5280. */
2015         if (remaining != 5)
2016             return 0;
2017         if (str[1] < '0' || str[1] > '9' || str[2] < '0' || str[2] > '9' ||
2018             str[3] < '0' || str[3] > '9' || str[4] < '0' || str[4] > '9')
2019             return 0;
2020         offset = ((str[1] - '0') * 10 + (str[2] - '0')) * 60;
2021         offset += (str[3] - '0') * 10 + (str[4] - '0');
2022         if (*str == '-')
2023             offset = -offset;
2024     }
2025     atm.type = ctm->type;
2026     atm.flags = 0;
2027     atm.length = sizeof(buff2);
2028     atm.data = (unsigned char *)buff2;
2029
2030     if (X509_time_adj(&atm, offset * 60, cmp_time) == NULL)
2031         return 0;
2032
2033     if (ctm->type == V_ASN1_UTCTIME) {
2034         i = (buff1[0] - '0') * 10 + (buff1[1] - '0');
2035         if (i < 50)
2036             i += 100;           /* cf. RFC 2459 */
2037         j = (buff2[0] - '0') * 10 + (buff2[1] - '0');
2038         if (j < 50)
2039             j += 100;
2040
2041         if (i < j)
2042             return -1;
2043         if (i > j)
2044             return 1;
2045     }
2046     i = strcmp(buff1, buff2);
2047     if (i == 0)                 /* wait a second then return younger :-) */
2048         return -1;
2049     else
2050         return i;
2051 }
2052
2053 ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
2054 {
2055     return X509_time_adj(s, adj, NULL);
2056 }
2057
2058 ASN1_TIME *X509_time_adj(ASN1_TIME *s, long offset_sec, time_t *in_tm)
2059 {
2060     return X509_time_adj_ex(s, 0, offset_sec, in_tm);
2061 }
2062
2063 ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s,
2064                             int offset_day, long offset_sec, time_t *in_tm)
2065 {
2066     time_t t;
2067
2068     if (in_tm)
2069         t = *in_tm;
2070     else
2071         time(&t);
2072
2073     if (s && !(s->flags & ASN1_STRING_FLAG_MSTRING)) {
2074         if (s->type == V_ASN1_UTCTIME)
2075             return ASN1_UTCTIME_adj(s, t, offset_day, offset_sec);
2076         if (s->type == V_ASN1_GENERALIZEDTIME)
2077             return ASN1_GENERALIZEDTIME_adj(s, t, offset_day, offset_sec);
2078     }
2079     return ASN1_TIME_adj(s, t, offset_day, offset_sec);
2080 }
2081
2082 int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
2083 {
2084     EVP_PKEY *ktmp = NULL, *ktmp2;
2085     int i, j;
2086
2087     if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey))
2088         return 1;
2089
2090     for (i = 0; i < sk_X509_num(chain); i++) {
2091         ktmp = X509_get_pubkey(sk_X509_value(chain, i));
2092         if (ktmp == NULL) {
2093             X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
2094                     X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
2095             return 0;
2096         }
2097         if (!EVP_PKEY_missing_parameters(ktmp))
2098             break;
2099         else {
2100             EVP_PKEY_free(ktmp);
2101             ktmp = NULL;
2102         }
2103     }
2104     if (ktmp == NULL) {
2105         X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
2106                 X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
2107         return 0;
2108     }
2109
2110     /* first, populate the other certs */
2111     for (j = i - 1; j >= 0; j--) {
2112         ktmp2 = X509_get_pubkey(sk_X509_value(chain, j));
2113         EVP_PKEY_copy_parameters(ktmp2, ktmp);
2114         EVP_PKEY_free(ktmp2);
2115     }
2116
2117     if (pkey != NULL)
2118         EVP_PKEY_copy_parameters(pkey, ktmp);
2119     EVP_PKEY_free(ktmp);
2120     return 1;
2121 }
2122
2123 /* Make a delta CRL as the diff between two full CRLs */
2124
2125 X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
2126                         EVP_PKEY *skey, const EVP_MD *md, unsigned int flags)
2127 {
2128     X509_CRL *crl = NULL;
2129     int i;
2130     STACK_OF(X509_REVOKED) *revs = NULL;
2131     /* CRLs can't be delta already */
2132     if (base->base_crl_number || newer->base_crl_number) {
2133         X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_ALREADY_DELTA);
2134         return NULL;
2135     }
2136     /* Base and new CRL must have a CRL number */
2137     if (!base->crl_number || !newer->crl_number) {
2138         X509err(X509_F_X509_CRL_DIFF, X509_R_NO_CRL_NUMBER);
2139         return NULL;
2140     }
2141     /* Issuer names must match */
2142     if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(newer))) {
2143         X509err(X509_F_X509_CRL_DIFF, X509_R_ISSUER_MISMATCH);
2144         return NULL;
2145     }
2146     /* AKID and IDP must match */
2147     if (!crl_extension_match(base, newer, NID_authority_key_identifier)) {
2148         X509err(X509_F_X509_CRL_DIFF, X509_R_AKID_MISMATCH);
2149         return NULL;
2150     }
2151     if (!crl_extension_match(base, newer, NID_issuing_distribution_point)) {
2152         X509err(X509_F_X509_CRL_DIFF, X509_R_IDP_MISMATCH);
2153         return NULL;
2154     }
2155     /* Newer CRL number must exceed full CRL number */
2156     if (ASN1_INTEGER_cmp(newer->crl_number, base->crl_number) <= 0) {
2157         X509err(X509_F_X509_CRL_DIFF, X509_R_NEWER_CRL_NOT_NEWER);
2158         return NULL;
2159     }
2160     /* CRLs must verify */
2161     if (skey && (X509_CRL_verify(base, skey) <= 0 ||
2162                  X509_CRL_verify(newer, skey) <= 0)) {
2163         X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_VERIFY_FAILURE);
2164         return NULL;
2165     }
2166     /* Create new CRL */
2167     crl = X509_CRL_new();
2168     if (!crl || !X509_CRL_set_version(crl, 1))
2169         goto memerr;
2170     /* Set issuer name */
2171     if (!X509_CRL_set_issuer_name(crl, X509_CRL_get_issuer(newer)))
2172         goto memerr;
2173
2174     if (!X509_CRL_set_lastUpdate(crl, X509_CRL_get_lastUpdate(newer)))
2175         goto memerr;
2176     if (!X509_CRL_set_nextUpdate(crl, X509_CRL_get_nextUpdate(newer)))
2177         goto memerr;
2178
2179     /* Set base CRL number: must be critical */
2180
2181     if (!X509_CRL_add1_ext_i2d(crl, NID_delta_crl, base->crl_number, 1, 0))
2182         goto memerr;
2183
2184     /*
2185      * Copy extensions across from newest CRL to delta: this will set CRL
2186      * number to correct value too.
2187      */
2188
2189     for (i = 0; i < X509_CRL_get_ext_count(newer); i++) {
2190         X509_EXTENSION *ext;
2191         ext = X509_CRL_get_ext(newer, i);
2192         if (!X509_CRL_add_ext(crl, ext, -1))
2193             goto memerr;
2194     }
2195
2196     /* Go through revoked entries, copying as needed */
2197
2198     revs = X509_CRL_get_REVOKED(newer);
2199
2200     for (i = 0; i < sk_X509_REVOKED_num(revs); i++) {
2201         X509_REVOKED *rvn, *rvtmp;
2202         rvn = sk_X509_REVOKED_value(revs, i);
2203         /*
2204          * Add only if not also in base. TODO: need something cleverer here
2205          * for some more complex CRLs covering multiple CAs.
2206          */
2207         if (!X509_CRL_get0_by_serial(base, &rvtmp, rvn->serialNumber)) {
2208             rvtmp = X509_REVOKED_dup(rvn);
2209             if (!rvtmp)
2210                 goto memerr;
2211             if (!X509_CRL_add0_revoked(crl, rvtmp)) {
2212                 X509_REVOKED_free(rvtmp);
2213                 goto memerr;
2214             }
2215         }
2216     }
2217     /* TODO: optionally prune deleted entries */
2218
2219     if (skey && md && !X509_CRL_sign(crl, skey, md))
2220         goto memerr;
2221
2222     return crl;
2223
2224  memerr:
2225     X509err(X509_F_X509_CRL_DIFF, ERR_R_MALLOC_FAILURE);
2226     if (crl)
2227         X509_CRL_free(crl);
2228     return NULL;
2229 }
2230
2231 int X509_STORE_CTX_get_ex_new_index(long argl, void *argp,
2232                                     CRYPTO_EX_new *new_func,
2233                                     CRYPTO_EX_dup *dup_func,
2234                                     CRYPTO_EX_free *free_func)
2235 {
2236     /*
2237      * This function is (usually) called only once, by
2238      * SSL_get_ex_data_X509_STORE_CTX_idx (ssl/ssl_cert.c).
2239      */
2240     return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509_STORE_CTX, argl, argp,
2241                                    new_func, dup_func, free_func);
2242 }
2243
2244 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
2245 {
2246     return CRYPTO_set_ex_data(&ctx->ex_data, idx, data);
2247 }
2248
2249 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
2250 {
2251     return CRYPTO_get_ex_data(&ctx->ex_data, idx);
2252 }
2253
2254 int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
2255 {
2256     return ctx->error;
2257 }
2258
2259 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
2260 {
2261     ctx->error = err;
2262 }
2263
2264 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
2265 {
2266     return ctx->error_depth;
2267 }
2268
2269 X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
2270 {
2271     return ctx->current_cert;
2272 }
2273
2274 STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx)
2275 {
2276     return ctx->chain;
2277 }
2278
2279 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
2280 {
2281     if (!ctx->chain)
2282         return NULL;
2283     return X509_chain_up_ref(ctx->chain);
2284 }
2285
2286 X509 *X509_STORE_CTX_get0_current_issuer(X509_STORE_CTX *ctx)
2287 {
2288     return ctx->current_issuer;
2289 }
2290
2291 X509_CRL *X509_STORE_CTX_get0_current_crl(X509_STORE_CTX *ctx)
2292 {
2293     return ctx->current_crl;
2294 }
2295
2296 X509_STORE_CTX *X509_STORE_CTX_get0_parent_ctx(X509_STORE_CTX *ctx)
2297 {
2298     return ctx->parent;
2299 }
2300
2301 void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
2302 {
2303     ctx->cert = x;
2304 }
2305
2306 void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2307 {
2308     ctx->untrusted = sk;
2309 }
2310
2311 void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
2312 {
2313     ctx->crls = sk;
2314 }
2315
2316 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
2317 {
2318     return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
2319 }
2320
2321 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
2322 {
2323     return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
2324 }
2325
2326 /*
2327  * This function is used to set the X509_STORE_CTX purpose and trust values.
2328  * This is intended to be used when another structure has its own trust and
2329  * purpose values which (if set) will be inherited by the ctx. If they aren't
2330  * set then we will usually have a default purpose in mind which should then
2331  * be used to set the trust value. An example of this is SSL use: an SSL
2332  * structure will have its own purpose and trust settings which the
2333  * application can set: if they aren't set then we use the default of SSL
2334  * client/server.
2335  */
2336
2337 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
2338                                    int purpose, int trust)
2339 {
2340     int idx;
2341     /* If purpose not set use default */
2342     if (!purpose)
2343         purpose = def_purpose;
2344     /* If we have a purpose then check it is valid */
2345     if (purpose) {
2346         X509_PURPOSE *ptmp;
2347         idx = X509_PURPOSE_get_by_id(purpose);
2348         if (idx == -1) {
2349             X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2350                     X509_R_UNKNOWN_PURPOSE_ID);
2351             return 0;
2352         }
2353         ptmp = X509_PURPOSE_get0(idx);
2354         if (ptmp->trust == X509_TRUST_DEFAULT) {
2355             idx = X509_PURPOSE_get_by_id(def_purpose);
2356             if (idx == -1) {
2357                 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2358                         X509_R_UNKNOWN_PURPOSE_ID);
2359                 return 0;
2360             }
2361             ptmp = X509_PURPOSE_get0(idx);
2362         }
2363         /* If trust not set then get from purpose default */
2364         if (!trust)
2365             trust = ptmp->trust;
2366     }
2367     if (trust) {
2368         idx = X509_TRUST_get_by_id(trust);
2369         if (idx == -1) {
2370             X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2371                     X509_R_UNKNOWN_TRUST_ID);
2372             return 0;
2373         }
2374     }
2375
2376     if (purpose && !ctx->param->purpose)
2377         ctx->param->purpose = purpose;
2378     if (trust && !ctx->param->trust)
2379         ctx->param->trust = trust;
2380     return 1;
2381 }
2382
2383 X509_STORE_CTX *X509_STORE_CTX_new(void)
2384 {
2385     X509_STORE_CTX *ctx;
2386     ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX));
2387     if (!ctx) {
2388         X509err(X509_F_X509_STORE_CTX_NEW, ERR_R_MALLOC_FAILURE);
2389         return NULL;
2390     }
2391     memset(ctx, 0, sizeof(X509_STORE_CTX));
2392     return ctx;
2393 }
2394
2395 void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
2396 {
2397     if (!ctx)
2398         return;
2399     X509_STORE_CTX_cleanup(ctx);
2400     OPENSSL_free(ctx);
2401 }
2402
2403 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
2404                         STACK_OF(X509) *chain)
2405 {
2406     int ret = 1;
2407     ctx->ctx = store;
2408     ctx->current_method = 0;
2409     ctx->cert = x509;
2410     ctx->untrusted = chain;
2411     ctx->crls = NULL;
2412     ctx->last_untrusted = 0;
2413     ctx->other_ctx = NULL;
2414     ctx->valid = 0;
2415     ctx->chain = NULL;
2416     ctx->error = 0;
2417     ctx->explicit_policy = 0;
2418     ctx->error_depth = 0;
2419     ctx->current_cert = NULL;
2420     ctx->current_issuer = NULL;
2421     ctx->current_crl = NULL;
2422     ctx->current_crl_score = 0;
2423     ctx->current_reasons = 0;
2424     ctx->tree = NULL;
2425     ctx->parent = NULL;
2426     /* Zero ex_data to make sure we're cleanup-safe */
2427     memset(&ctx->ex_data, 0, sizeof(ctx->ex_data));
2428
2429     ctx->param = X509_VERIFY_PARAM_new();
2430     if (!ctx->param) {
2431         X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2432         return 0;
2433     }
2434
2435     /*
2436      * Inherit callbacks and flags from X509_STORE if not set use defaults.
2437      */
2438     if (store)
2439         ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
2440     else
2441         ctx->param->inh_flags |= X509_VP_FLAG_DEFAULT | X509_VP_FLAG_ONCE;
2442
2443     if (store) {
2444         ctx->verify_cb = store->verify_cb;
2445         /* Seems to always be 0 in OpenSSL, else must be idempotent */
2446         ctx->cleanup = store->cleanup;
2447     } else
2448         ctx->cleanup = 0;
2449
2450     if (ret)
2451         ret = X509_VERIFY_PARAM_inherit(ctx->param,
2452                                         X509_VERIFY_PARAM_lookup("default"));
2453
2454     if (ret == 0) {
2455         X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2456         goto err;
2457     }
2458
2459     if (store && store->check_issued)
2460         ctx->check_issued = store->check_issued;
2461     else
2462         ctx->check_issued = check_issued;
2463
2464     if (store && store->get_issuer)
2465         ctx->get_issuer = store->get_issuer;
2466     else
2467         ctx->get_issuer = X509_STORE_CTX_get1_issuer;
2468
2469     if (store && store->verify_cb)
2470         ctx->verify_cb = store->verify_cb;
2471     else
2472         ctx->verify_cb = null_callback;
2473
2474     if (store && store->verify)
2475         ctx->verify = store->verify;
2476     else
2477         ctx->verify = internal_verify;
2478
2479     if (store && store->check_revocation)
2480         ctx->check_revocation = store->check_revocation;
2481     else
2482         ctx->check_revocation = check_revocation;
2483
2484     if (store && store->get_crl)
2485         ctx->get_crl = store->get_crl;
2486     else
2487         ctx->get_crl = NULL;
2488
2489     if (store && store->check_crl)
2490         ctx->check_crl = store->check_crl;
2491     else
2492         ctx->check_crl = check_crl;
2493
2494     if (store && store->cert_crl)
2495         ctx->cert_crl = store->cert_crl;
2496     else
2497         ctx->cert_crl = cert_crl;
2498
2499     if (store && store->lookup_certs)
2500         ctx->lookup_certs = store->lookup_certs;
2501     else
2502         ctx->lookup_certs = X509_STORE_get1_certs;
2503
2504     if (store && store->lookup_crls)
2505         ctx->lookup_crls = store->lookup_crls;
2506     else
2507         ctx->lookup_crls = X509_STORE_get1_crls;
2508
2509     ctx->check_policy = check_policy;
2510
2511     if (CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
2512                            &ctx->ex_data))
2513         return 1;
2514     X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2515
2516  err:
2517     /*
2518      * On error clean up allocated storage, if the store context was not
2519      * allocated with X509_STORE_CTX_new() this is our last chance to do so.
2520      */
2521     X509_STORE_CTX_cleanup(ctx);
2522     return 0;
2523 }
2524
2525 /*
2526  * Set alternative lookup method: just a STACK of trusted certificates. This
2527  * avoids X509_STORE nastiness where it isn't needed.
2528  */
2529
2530 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2531 {
2532     ctx->other_ctx = sk;
2533     ctx->get_issuer = get_issuer_sk;
2534 }
2535
2536 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
2537 {
2538     /*
2539      * We need to be idempotent because, unfortunately, free() also calls
2540      * cleanup(), so the natural call sequence new(), init(), cleanup(), free()
2541      * calls cleanup() for the same object twice!  Thus we must zero the
2542      * pointers below after they're freed!
2543      */
2544     /* Seems to always be 0 in OpenSSL, do this at most once. */
2545     if (ctx->cleanup != NULL) {
2546         ctx->cleanup(ctx);
2547         ctx->cleanup = NULL;
2548     }
2549     if (ctx->param != NULL) {
2550         if (ctx->parent == NULL)
2551             X509_VERIFY_PARAM_free(ctx->param);
2552         ctx->param = NULL;
2553     }
2554     if (ctx->tree != NULL) {
2555         X509_policy_tree_free(ctx->tree);
2556         ctx->tree = NULL;
2557     }
2558     if (ctx->chain != NULL) {
2559         sk_X509_pop_free(ctx->chain, X509_free);
2560         ctx->chain = NULL;
2561     }
2562     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
2563     memset(&ctx->ex_data, 0, sizeof(CRYPTO_EX_DATA));
2564 }
2565
2566 void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
2567 {
2568     X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2569 }
2570
2571 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
2572 {
2573     X509_VERIFY_PARAM_set_flags(ctx->param, flags);
2574 }
2575
2576 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags,
2577                              time_t t)
2578 {
2579     X509_VERIFY_PARAM_set_time(ctx->param, t);
2580 }
2581
2582 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
2583                                   int (*verify_cb) (int, X509_STORE_CTX *))
2584 {
2585     ctx->verify_cb = verify_cb;
2586 }
2587
2588 X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx)
2589 {
2590     return ctx->tree;
2591 }
2592
2593 int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx)
2594 {
2595     return ctx->explicit_policy;
2596 }
2597
2598 int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
2599 {
2600     const X509_VERIFY_PARAM *param;
2601     param = X509_VERIFY_PARAM_lookup(name);
2602     if (!param)
2603         return 0;
2604     return X509_VERIFY_PARAM_inherit(ctx->param, param);
2605 }
2606
2607 X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx)
2608 {
2609     return ctx->param;
2610 }
2611
2612 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
2613 {
2614     if (ctx->param)
2615         X509_VERIFY_PARAM_free(ctx->param);
2616     ctx->param = param;
2617 }
2618
2619 IMPLEMENT_STACK_OF(X509)
2620
2621 IMPLEMENT_ASN1_SET_OF(X509)
2622
2623 IMPLEMENT_STACK_OF(X509_NAME)
2624
2625 IMPLEMENT_STACK_OF(X509_ATTRIBUTE)
2626
2627 IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE)