Fix issue 1418 by moving check of KU_KEY_CERT_SIGN and weakening check_issued()
[openssl.git] / crypto / x509 / x509_vfy.c
1 /*
2  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include <time.h>
12 #include <errno.h>
13 #include <limits.h>
14
15 #include "crypto/ctype.h"
16 #include "internal/cryptlib.h"
17 #include <openssl/crypto.h>
18 #include <openssl/buffer.h>
19 #include <openssl/evp.h>
20 #include <openssl/asn1.h>
21 #include <openssl/x509.h>
22 #include <openssl/x509v3.h>
23 #include <openssl/objects.h>
24 #include "internal/dane.h"
25 #include "crypto/x509.h"
26 #include "x509_local.h"
27
28 DEFINE_STACK_OF(X509)
29 DEFINE_STACK_OF(X509_REVOKED)
30 DEFINE_STACK_OF(GENERAL_NAME)
31 DEFINE_STACK_OF(X509_CRL)
32 DEFINE_STACK_OF(DIST_POINT)
33 DEFINE_STACK_OF_STRING()
34
35 /* CRL score values */
36
37 /* No unhandled critical extensions */
38
39 #define CRL_SCORE_NOCRITICAL    0x100
40
41 /* certificate is within CRL scope */
42
43 #define CRL_SCORE_SCOPE         0x080
44
45 /* CRL times valid */
46
47 #define CRL_SCORE_TIME          0x040
48
49 /* Issuer name matches certificate */
50
51 #define CRL_SCORE_ISSUER_NAME   0x020
52
53 /* If this score or above CRL is probably valid */
54
55 #define CRL_SCORE_VALID (CRL_SCORE_NOCRITICAL|CRL_SCORE_TIME|CRL_SCORE_SCOPE)
56
57 /* CRL issuer is certificate issuer */
58
59 #define CRL_SCORE_ISSUER_CERT   0x018
60
61 /* CRL issuer is on certificate path */
62
63 #define CRL_SCORE_SAME_PATH     0x008
64
65 /* CRL issuer matches CRL AKID */
66
67 #define CRL_SCORE_AKID          0x004
68
69 /* Have a delta CRL with valid times */
70
71 #define CRL_SCORE_TIME_DELTA    0x002
72
73 static int build_chain(X509_STORE_CTX *ctx);
74 static int verify_chain(X509_STORE_CTX *ctx);
75 static int dane_verify(X509_STORE_CTX *ctx);
76 static int null_callback(int ok, X509_STORE_CTX *e);
77 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
78 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
79 static int check_chain_extensions(X509_STORE_CTX *ctx);
80 static int check_name_constraints(X509_STORE_CTX *ctx);
81 static int check_id(X509_STORE_CTX *ctx);
82 static int check_trust(X509_STORE_CTX *ctx, int num_untrusted);
83 static int check_revocation(X509_STORE_CTX *ctx);
84 static int check_cert(X509_STORE_CTX *ctx);
85 static int check_policy(X509_STORE_CTX *ctx);
86 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x);
87 static int check_dane_issuer(X509_STORE_CTX *ctx, int depth);
88 static int check_key_level(X509_STORE_CTX *ctx, X509 *cert);
89 static int check_sig_level(X509_STORE_CTX *ctx, X509 *cert);
90
91 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
92                          unsigned int *preasons, X509_CRL *crl, X509 *x);
93 static int get_crl_delta(X509_STORE_CTX *ctx,
94                          X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x);
95 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl,
96                          int *pcrl_score, X509_CRL *base,
97                          STACK_OF(X509_CRL) *crls);
98 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl, X509 **pissuer,
99                            int *pcrl_score);
100 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
101                            unsigned int *preasons);
102 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x);
103 static int check_crl_chain(X509_STORE_CTX *ctx,
104                            STACK_OF(X509) *cert_path,
105                            STACK_OF(X509) *crl_path);
106
107 static int internal_verify(X509_STORE_CTX *ctx);
108
109 static int null_callback(int ok, X509_STORE_CTX *e)
110 {
111     return ok;
112 }
113
114 /*
115  * Return 1 if given cert is considered self-signed, 0 if not, or -1 on error.
116  * This does not verify self-signedness but relies on x509v3_cache_extensions()
117  * matching issuer and subject names (i.e., the cert being self-issued) and any
118  * present authority key identifier matching the subject key identifier, etc.
119  */
120 static int cert_self_signed(X509_STORE_CTX *ctx, X509 *x)
121 {
122     if (!X509v3_cache_extensions(x, ctx->libctx, ctx->propq))
123         return -1;
124
125     if (x->ex_flags & EXFLAG_SS)
126         return 1;
127     else
128         return 0;
129 }
130
131 /* Given a certificate try and find an exact match in the store */
132
133 static X509 *lookup_cert_match(X509_STORE_CTX *ctx, X509 *x)
134 {
135     STACK_OF(X509) *certs;
136     X509 *xtmp = NULL;
137     int i;
138     /* Lookup all certs with matching subject name */
139     certs = ctx->lookup_certs(ctx, X509_get_subject_name(x));
140     if (certs == NULL)
141         return NULL;
142     /* Look for exact match */
143     for (i = 0; i < sk_X509_num(certs); i++) {
144         xtmp = sk_X509_value(certs, i);
145         if (!X509_cmp(xtmp, x))
146             break;
147         xtmp = NULL;
148     }
149     if (xtmp != NULL && !X509_up_ref(xtmp))
150         xtmp = NULL;
151     sk_X509_pop_free(certs, X509_free);
152     return xtmp;
153 }
154
155 /*-
156  * Inform the verify callback of an error.
157  * If B<x> is not NULL it is the error cert, otherwise use the chain cert at
158  * B<depth>.
159  * If B<err> is not X509_V_OK, that's the error value, otherwise leave
160  * unchanged (presumably set by the caller).
161  *
162  * Returns 0 to abort verification with an error, non-zero to continue.
163  */
164 static int verify_cb_cert(X509_STORE_CTX *ctx, X509 *x, int depth, int err)
165 {
166     ctx->error_depth = depth;
167     ctx->current_cert = (x != NULL) ? x : sk_X509_value(ctx->chain, depth);
168     if (err != X509_V_OK)
169         ctx->error = err;
170     return ctx->verify_cb(0, ctx);
171 }
172
173 /*-
174  * Inform the verify callback of an error, CRL-specific variant.  Here, the
175  * error depth and certificate are already set, we just specify the error
176  * number.
177  *
178  * Returns 0 to abort verification with an error, non-zero to continue.
179  */
180 static int verify_cb_crl(X509_STORE_CTX *ctx, int err)
181 {
182     ctx->error = err;
183     return ctx->verify_cb(0, ctx);
184 }
185
186 static int check_auth_level(X509_STORE_CTX *ctx)
187 {
188     int i;
189     int num = sk_X509_num(ctx->chain);
190
191     if (ctx->param->auth_level <= 0)
192         return 1;
193
194     for (i = 0; i < num; ++i) {
195         X509 *cert = sk_X509_value(ctx->chain, i);
196
197         /*
198          * We've already checked the security of the leaf key, so here we only
199          * check the security of issuer keys.
200          */
201         if (i > 0 && !check_key_level(ctx, cert) &&
202             verify_cb_cert(ctx, cert, i, X509_V_ERR_CA_KEY_TOO_SMALL) == 0)
203             return 0;
204         /*
205          * We also check the signature algorithm security of all certificates
206          * except those of the trust anchor at index num-1.
207          */
208         if (i < num - 1 && !check_sig_level(ctx, cert) &&
209             verify_cb_cert(ctx, cert, i, X509_V_ERR_CA_MD_TOO_WEAK) == 0)
210             return 0;
211     }
212     return 1;
213 }
214
215 static int verify_chain(X509_STORE_CTX *ctx)
216 {
217     int err;
218     int ok;
219
220     /*
221      * Before either returning with an error, or continuing with CRL checks,
222      * instantiate chain public key parameters.
223      */
224     if ((ok = build_chain(ctx)) == 0 ||
225         (ok = check_chain_extensions(ctx)) == 0 ||
226         (ok = check_auth_level(ctx)) == 0 ||
227         (ok = check_id(ctx)) == 0 || 1)
228         X509_get_pubkey_parameters(NULL, ctx->chain);
229     if (ok == 0 || (ok = ctx->check_revocation(ctx)) == 0)
230         return ok;
231
232     err = X509_chain_check_suiteb(&ctx->error_depth, NULL, ctx->chain,
233                                   ctx->param->flags);
234     if (err != X509_V_OK) {
235         if ((ok = verify_cb_cert(ctx, NULL, ctx->error_depth, err)) == 0)
236             return ok;
237     }
238
239     /* Verify chain signatures and expiration times */
240     ok = (ctx->verify != NULL) ? ctx->verify(ctx) : internal_verify(ctx);
241     if (!ok)
242         return ok;
243
244     if ((ok = check_name_constraints(ctx)) == 0)
245         return ok;
246
247 #ifndef OPENSSL_NO_RFC3779
248     /* RFC 3779 path validation, now that CRL check has been done */
249     if ((ok = X509v3_asid_validate_path(ctx)) == 0)
250         return ok;
251     if ((ok = X509v3_addr_validate_path(ctx)) == 0)
252         return ok;
253 #endif
254
255     /* If we get this far evaluate policies */
256     if (ctx->param->flags & X509_V_FLAG_POLICY_CHECK)
257         ok = ctx->check_policy(ctx);
258     return ok;
259 }
260
261 int X509_verify_cert(X509_STORE_CTX *ctx)
262 {
263     SSL_DANE *dane = ctx->dane;
264     int ret;
265
266     if (ctx->cert == NULL) {
267         X509err(X509_F_X509_VERIFY_CERT, X509_R_NO_CERT_SET_FOR_US_TO_VERIFY);
268         ctx->error = X509_V_ERR_INVALID_CALL;
269         return -1;
270     }
271
272     if (ctx->chain != NULL) {
273         /*
274          * This X509_STORE_CTX has already been used to verify a cert. We
275          * cannot do another one.
276          */
277         X509err(X509_F_X509_VERIFY_CERT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
278         ctx->error = X509_V_ERR_INVALID_CALL;
279         return -1;
280     }
281
282     if (!X509_up_ref(ctx->cert)) {
283         X509err(X509_F_X509_VERIFY_CERT, ERR_R_INTERNAL_ERROR);
284         ctx->error = X509_V_ERR_UNSPECIFIED;
285         return -1;
286     }
287
288     /*
289      * first we make sure the chain we are going to build is present and that
290      * the first entry is in place
291      */
292     if ((ctx->chain = sk_X509_new_null()) == NULL
293             || !sk_X509_push(ctx->chain, ctx->cert)) {
294         X509_free(ctx->cert);
295         X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
296         ctx->error = X509_V_ERR_OUT_OF_MEM;
297         return -1;
298     }
299
300     ctx->num_untrusted = 1;
301
302     /* If the peer's public key is too weak, we can stop early. */
303     if (!check_key_level(ctx, ctx->cert) &&
304         !verify_cb_cert(ctx, ctx->cert, 0, X509_V_ERR_EE_KEY_TOO_SMALL))
305         return 0;
306
307     if (DANETLS_ENABLED(dane))
308         ret = dane_verify(ctx);
309     else
310         ret = verify_chain(ctx);
311
312     /*
313      * Safety-net.  If we are returning an error, we must also set ctx->error,
314      * so that the chain is not considered verified should the error be ignored
315      * (e.g. TLS with SSL_VERIFY_NONE).
316      */
317     if (ret <= 0 && ctx->error == X509_V_OK)
318         ctx->error = X509_V_ERR_UNSPECIFIED;
319     return ret;
320 }
321
322 /*
323  * Given a STACK_OF(X509) find the issuer of cert (if any)
324  */
325 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
326 {
327     int i;
328     X509 *issuer, *rv = NULL;
329
330     for (i = 0; i < sk_X509_num(sk); i++) {
331         issuer = sk_X509_value(sk, i);
332         /*
333          * Below check 'issuer != x' is an optimization and safety precaution:
334          * Candidate issuer cert cannot be the same as the subject cert 'x'.
335          */
336         if (issuer != x && ctx->check_issued(ctx, x, issuer)) {
337             rv = issuer;
338             if (x509_check_cert_time(ctx, rv, -1))
339                 break;
340         }
341     }
342     return rv;
343 }
344
345 /*
346  * Check that the given certificate 'x' is issued by the certificate 'issuer'
347  * and the issuer is not yet in ctx->chain, where the exceptional case
348  * that 'x' is self-issued and ctx->chain has just one element is allowed.
349  */
350 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
351 {
352     if (x509_likely_issued(issuer, x, ctx->libctx, ctx->propq) != X509_V_OK)
353         return 0;
354     if ((x->ex_flags & EXFLAG_SI) == 0 || sk_X509_num(ctx->chain) != 1) {
355         int i;
356         X509 *ch;
357
358         for (i = 0; i < sk_X509_num(ctx->chain); i++) {
359             ch = sk_X509_value(ctx->chain, i);
360             if (ch == issuer || X509_cmp(ch, issuer) == 0)
361                 return 0;
362         }
363     }
364     return 1;
365 }
366
367 /* Alternative lookup method: look from a STACK stored in other_ctx */
368
369 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
370 {
371     *issuer = find_issuer(ctx, ctx->other_ctx, x);
372
373     if (*issuer == NULL || !X509_up_ref(*issuer))
374         goto err;
375
376     return 1;
377
378  err:
379     *issuer = NULL;
380     return 0;
381 }
382
383 static STACK_OF(X509) *lookup_certs_sk(X509_STORE_CTX *ctx,
384                                        const X509_NAME *nm)
385 {
386     STACK_OF(X509) *sk = NULL;
387     X509 *x;
388     int i;
389
390     for (i = 0; i < sk_X509_num(ctx->other_ctx); i++) {
391         x = sk_X509_value(ctx->other_ctx, i);
392         if (X509_NAME_cmp(nm, X509_get_subject_name(x)) == 0) {
393             if (!X509_up_ref(x)) {
394                 sk_X509_pop_free(sk, X509_free);
395                 X509err(X509_F_LOOKUP_CERTS_SK, ERR_R_INTERNAL_ERROR);
396                 ctx->error = X509_V_ERR_UNSPECIFIED;
397                 return NULL;
398             }
399             if (sk == NULL)
400                 sk = sk_X509_new_null();
401             if (sk == NULL || !sk_X509_push(sk, x)) {
402                 X509_free(x);
403                 sk_X509_pop_free(sk, X509_free);
404                 X509err(X509_F_LOOKUP_CERTS_SK, ERR_R_MALLOC_FAILURE);
405                 ctx->error = X509_V_ERR_OUT_OF_MEM;
406                 return NULL;
407             }
408         }
409     }
410     return sk;
411 }
412
413 /*
414  * Check EE or CA certificate purpose.  For trusted certificates explicit local
415  * auxiliary trust can be used to override EKU-restrictions.
416  */
417 static int check_purpose(X509_STORE_CTX *ctx, X509 *x, int purpose, int depth,
418                          int must_be_ca)
419 {
420     int tr_ok = X509_TRUST_UNTRUSTED;
421
422     /*
423      * For trusted certificates we want to see whether any auxiliary trust
424      * settings trump the purpose constraints.
425      *
426      * This is complicated by the fact that the trust ordinals in
427      * ctx->param->trust are entirely independent of the purpose ordinals in
428      * ctx->param->purpose!
429      *
430      * What connects them is their mutual initialization via calls from
431      * X509_STORE_CTX_set_default() into X509_VERIFY_PARAM_lookup() which sets
432      * related values of both param->trust and param->purpose.  It is however
433      * typically possible to infer associated trust values from a purpose value
434      * via the X509_PURPOSE API.
435      *
436      * Therefore, we can only check for trust overrides when the purpose we're
437      * checking is the same as ctx->param->purpose and ctx->param->trust is
438      * also set.
439      */
440     if (depth >= ctx->num_untrusted && purpose == ctx->param->purpose)
441         tr_ok = X509_check_trust(x, ctx->param->trust, X509_TRUST_NO_SS_COMPAT);
442
443     switch (tr_ok) {
444     case X509_TRUST_TRUSTED:
445         return 1;
446     case X509_TRUST_REJECTED:
447         break;
448     default:
449         switch (X509_check_purpose(x, purpose, must_be_ca > 0)) {
450         case 1:
451             return 1;
452         case 0:
453             break;
454         default:
455             if ((ctx->param->flags & X509_V_FLAG_X509_STRICT) == 0)
456                 return 1;
457         }
458         break;
459     }
460
461     return verify_cb_cert(ctx, x, depth, X509_V_ERR_INVALID_PURPOSE);
462 }
463
464 /*
465  * Check a certificate chains extensions for consistency with the supplied
466  * purpose
467  */
468
469 static int check_chain_extensions(X509_STORE_CTX *ctx)
470 {
471     int i, must_be_ca, plen = 0;
472     X509 *x;
473     int proxy_path_length = 0;
474     int purpose;
475     int allow_proxy_certs;
476     int num = sk_X509_num(ctx->chain);
477
478     /*-
479      *  must_be_ca can have 1 of 3 values:
480      * -1: we accept both CA and non-CA certificates, to allow direct
481      *     use of self-signed certificates (which are marked as CA).
482      * 0:  we only accept non-CA certificates.  This is currently not
483      *     used, but the possibility is present for future extensions.
484      * 1:  we only accept CA certificates.  This is currently used for
485      *     all certificates in the chain except the leaf certificate.
486      */
487     must_be_ca = -1;
488
489     /* CRL path validation */
490     if (ctx->parent) {
491         allow_proxy_certs = 0;
492         purpose = X509_PURPOSE_CRL_SIGN;
493     } else {
494         allow_proxy_certs =
495             ! !(ctx->param->flags & X509_V_FLAG_ALLOW_PROXY_CERTS);
496         purpose = ctx->param->purpose;
497     }
498
499     for (i = 0; i < num; i++) {
500         int ret;
501         x = sk_X509_value(ctx->chain, i);
502         if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
503             && (x->ex_flags & EXFLAG_CRITICAL)) {
504             if (!verify_cb_cert(ctx, x, i,
505                                 X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION))
506                 return 0;
507         }
508         if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY)) {
509             if (!verify_cb_cert(ctx, x, i,
510                                 X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED))
511                 return 0;
512         }
513         ret = X509_check_ca(x);
514         switch (must_be_ca) {
515         case -1:
516             if ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
517                 && (ret != 1) && (ret != 0)) {
518                 ret = 0;
519                 ctx->error = X509_V_ERR_INVALID_CA;
520             } else
521                 ret = 1;
522             break;
523         case 0:
524             if (ret != 0) {
525                 ret = 0;
526                 ctx->error = X509_V_ERR_INVALID_NON_CA;
527             } else
528                 ret = 1;
529             break;
530         default:
531             /* X509_V_FLAG_X509_STRICT is implicit for intermediate CAs */
532             if ((ret == 0)
533                 || ((i + 1 < num || ctx->param->flags & X509_V_FLAG_X509_STRICT)
534                     && (ret != 1))) {
535                 ret = 0;
536                 ctx->error = X509_V_ERR_INVALID_CA;
537             } else
538                 ret = 1;
539             break;
540         }
541         if ((x->ex_flags & EXFLAG_CA) == 0
542             && x->ex_pathlen != -1
543             && (ctx->param->flags & X509_V_FLAG_X509_STRICT)) {
544             ctx->error = X509_V_ERR_INVALID_EXTENSION;
545             ret = 0;
546         }
547         if (ret == 0 && !verify_cb_cert(ctx, x, i, X509_V_OK))
548             return 0;
549         /* check_purpose() makes the callback as needed */
550         if (purpose > 0 && !check_purpose(ctx, x, purpose, i, must_be_ca))
551             return 0;
552         /* Check pathlen */
553         if ((i > 1) && (x->ex_pathlen != -1)
554             && (plen > (x->ex_pathlen + proxy_path_length))) {
555             if (!verify_cb_cert(ctx, x, i, X509_V_ERR_PATH_LENGTH_EXCEEDED))
556                 return 0;
557         }
558         /* Increment path length if not a self-issued intermediate CA */
559         if (i > 0 && (x->ex_flags & EXFLAG_SI) == 0)
560             plen++;
561         /*
562          * If this certificate is a proxy certificate, the next certificate
563          * must be another proxy certificate or a EE certificate.  If not,
564          * the next certificate must be a CA certificate.
565          */
566         if (x->ex_flags & EXFLAG_PROXY) {
567             /*
568              * RFC3820, 4.1.3 (b)(1) stipulates that if pCPathLengthConstraint
569              * is less than max_path_length, the former should be copied to
570              * the latter, and 4.1.4 (a) stipulates that max_path_length
571              * should be verified to be larger than zero and decrement it.
572              *
573              * Because we're checking the certs in the reverse order, we start
574              * with verifying that proxy_path_length isn't larger than pcPLC,
575              * and copy the latter to the former if it is, and finally,
576              * increment proxy_path_length.
577              */
578             if (x->ex_pcpathlen != -1) {
579                 if (proxy_path_length > x->ex_pcpathlen) {
580                     if (!verify_cb_cert(ctx, x, i,
581                                         X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED))
582                         return 0;
583                 }
584                 proxy_path_length = x->ex_pcpathlen;
585             }
586             proxy_path_length++;
587             must_be_ca = 0;
588         } else
589             must_be_ca = 1;
590     }
591     return 1;
592 }
593
594 static int has_san_id(X509 *x, int gtype)
595 {
596     int i;
597     int ret = 0;
598     GENERAL_NAMES *gs = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL);
599
600     if (gs == NULL)
601         return 0;
602
603     for (i = 0; i < sk_GENERAL_NAME_num(gs); i++) {
604         GENERAL_NAME *g = sk_GENERAL_NAME_value(gs, i);
605
606         if (g->type == gtype) {
607             ret = 1;
608             break;
609         }
610     }
611     GENERAL_NAMES_free(gs);
612     return ret;
613 }
614
615 static int check_name_constraints(X509_STORE_CTX *ctx)
616 {
617     int i;
618
619     /* Check name constraints for all certificates */
620     for (i = sk_X509_num(ctx->chain) - 1; i >= 0; i--) {
621         X509 *x = sk_X509_value(ctx->chain, i);
622         int j;
623
624         /* Ignore self-issued certs unless last in chain */
625         if (i && (x->ex_flags & EXFLAG_SI))
626             continue;
627
628         /*
629          * Proxy certificates policy has an extra constraint, where the
630          * certificate subject MUST be the issuer with a single CN entry
631          * added.
632          * (RFC 3820: 3.4, 4.1.3 (a)(4))
633          */
634         if (x->ex_flags & EXFLAG_PROXY) {
635             X509_NAME *tmpsubject = X509_get_subject_name(x);
636             X509_NAME *tmpissuer = X509_get_issuer_name(x);
637             X509_NAME_ENTRY *tmpentry = NULL;
638             int last_object_nid = 0;
639             int err = X509_V_OK;
640             int last_object_loc = X509_NAME_entry_count(tmpsubject) - 1;
641
642             /* Check that there are at least two RDNs */
643             if (last_object_loc < 1) {
644                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
645                 goto proxy_name_done;
646             }
647
648             /*
649              * Check that there is exactly one more RDN in subject as
650              * there is in issuer.
651              */
652             if (X509_NAME_entry_count(tmpsubject)
653                 != X509_NAME_entry_count(tmpissuer) + 1) {
654                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
655                 goto proxy_name_done;
656             }
657
658             /*
659              * Check that the last subject component isn't part of a
660              * multivalued RDN
661              */
662             if (X509_NAME_ENTRY_set(X509_NAME_get_entry(tmpsubject,
663                                                         last_object_loc))
664                 == X509_NAME_ENTRY_set(X509_NAME_get_entry(tmpsubject,
665                                                            last_object_loc - 1))) {
666                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
667                 goto proxy_name_done;
668             }
669
670             /*
671              * Check that the last subject RDN is a commonName, and that
672              * all the previous RDNs match the issuer exactly
673              */
674             tmpsubject = X509_NAME_dup(tmpsubject);
675             if (tmpsubject == NULL) {
676                 X509err(X509_F_CHECK_NAME_CONSTRAINTS, ERR_R_MALLOC_FAILURE);
677                 ctx->error = X509_V_ERR_OUT_OF_MEM;
678                 return 0;
679             }
680
681             tmpentry =
682                 X509_NAME_delete_entry(tmpsubject, last_object_loc);
683             last_object_nid =
684                 OBJ_obj2nid(X509_NAME_ENTRY_get_object(tmpentry));
685
686             if (last_object_nid != NID_commonName
687                 || X509_NAME_cmp(tmpsubject, tmpissuer) != 0) {
688                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
689             }
690
691             X509_NAME_ENTRY_free(tmpentry);
692             X509_NAME_free(tmpsubject);
693
694          proxy_name_done:
695             if (err != X509_V_OK
696                 && !verify_cb_cert(ctx, x, i, err))
697                 return 0;
698         }
699
700         /*
701          * Check against constraints for all certificates higher in chain
702          * including trust anchor. Trust anchor not strictly speaking needed
703          * but if it includes constraints it is to be assumed it expects them
704          * to be obeyed.
705          */
706         for (j = sk_X509_num(ctx->chain) - 1; j > i; j--) {
707             NAME_CONSTRAINTS *nc = sk_X509_value(ctx->chain, j)->nc;
708
709             if (nc) {
710                 int rv = NAME_CONSTRAINTS_check(x, nc);
711
712                 /* If EE certificate check commonName too */
713                 if (rv == X509_V_OK && i == 0
714                     && (ctx->param->hostflags
715                         & X509_CHECK_FLAG_NEVER_CHECK_SUBJECT) == 0
716                     && ((ctx->param->hostflags
717                          & X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT) != 0
718                         || !has_san_id(x, GEN_DNS)))
719                     rv = NAME_CONSTRAINTS_check_CN(x, nc);
720
721                 switch (rv) {
722                 case X509_V_OK:
723                     break;
724                 case X509_V_ERR_OUT_OF_MEM:
725                     return 0;
726                 default:
727                     if (!verify_cb_cert(ctx, x, i, rv))
728                         return 0;
729                     break;
730                 }
731             }
732         }
733     }
734     return 1;
735 }
736
737 static int check_id_error(X509_STORE_CTX *ctx, int errcode)
738 {
739     return verify_cb_cert(ctx, ctx->cert, 0, errcode);
740 }
741
742 static int check_hosts(X509 *x, X509_VERIFY_PARAM *vpm)
743 {
744     int i;
745     int n = sk_OPENSSL_STRING_num(vpm->hosts);
746     char *name;
747
748     if (vpm->peername != NULL) {
749         OPENSSL_free(vpm->peername);
750         vpm->peername = NULL;
751     }
752     for (i = 0; i < n; ++i) {
753         name = sk_OPENSSL_STRING_value(vpm->hosts, i);
754         if (X509_check_host(x, name, 0, vpm->hostflags, &vpm->peername) > 0)
755             return 1;
756     }
757     return n == 0;
758 }
759
760 static int check_id(X509_STORE_CTX *ctx)
761 {
762     X509_VERIFY_PARAM *vpm = ctx->param;
763     X509 *x = ctx->cert;
764     if (vpm->hosts && check_hosts(x, vpm) <= 0) {
765         if (!check_id_error(ctx, X509_V_ERR_HOSTNAME_MISMATCH))
766             return 0;
767     }
768     if (vpm->email && X509_check_email(x, vpm->email, vpm->emaillen, 0) <= 0) {
769         if (!check_id_error(ctx, X509_V_ERR_EMAIL_MISMATCH))
770             return 0;
771     }
772     if (vpm->ip && X509_check_ip(x, vpm->ip, vpm->iplen, 0) <= 0) {
773         if (!check_id_error(ctx, X509_V_ERR_IP_ADDRESS_MISMATCH))
774             return 0;
775     }
776     return 1;
777 }
778
779 static int check_trust(X509_STORE_CTX *ctx, int num_untrusted)
780 {
781     int i;
782     X509 *x = NULL;
783     X509 *mx;
784     SSL_DANE *dane = ctx->dane;
785     int num = sk_X509_num(ctx->chain);
786     int trust;
787
788     /*
789      * Check for a DANE issuer at depth 1 or greater, if it is a DANE-TA(2)
790      * match, we're done, otherwise we'll merely record the match depth.
791      */
792     if (DANETLS_HAS_TA(dane) && num_untrusted > 0 && num_untrusted < num) {
793         switch (trust = check_dane_issuer(ctx, num_untrusted)) {
794         case X509_TRUST_TRUSTED:
795         case X509_TRUST_REJECTED:
796             return trust;
797         }
798     }
799
800     /*
801      * Check trusted certificates in chain at depth num_untrusted and up.
802      * Note, that depths 0..num_untrusted-1 may also contain trusted
803      * certificates, but the caller is expected to have already checked those,
804      * and wants to incrementally check just any added since.
805      */
806     for (i = num_untrusted; i < num; i++) {
807         x = sk_X509_value(ctx->chain, i);
808         trust = X509_check_trust(x, ctx->param->trust, 0);
809         /* If explicitly trusted return trusted */
810         if (trust == X509_TRUST_TRUSTED)
811             goto trusted;
812         if (trust == X509_TRUST_REJECTED)
813             goto rejected;
814     }
815
816     /*
817      * If we are looking at a trusted certificate, and accept partial chains,
818      * the chain is PKIX trusted.
819      */
820     if (num_untrusted < num) {
821         if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN)
822             goto trusted;
823         return X509_TRUST_UNTRUSTED;
824     }
825
826     if (num_untrusted == num && ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
827         /*
828          * Last-resort call with no new trusted certificates, check the leaf
829          * for a direct trust store match.
830          */
831         i = 0;
832         x = sk_X509_value(ctx->chain, i);
833         mx = lookup_cert_match(ctx, x);
834         if (!mx)
835             return X509_TRUST_UNTRUSTED;
836
837         /*
838          * Check explicit auxiliary trust/reject settings.  If none are set,
839          * we'll accept X509_TRUST_UNTRUSTED when not self-signed.
840          */
841         trust = X509_check_trust(mx, ctx->param->trust, 0);
842         if (trust == X509_TRUST_REJECTED) {
843             X509_free(mx);
844             goto rejected;
845         }
846
847         /* Replace leaf with trusted match */
848         (void) sk_X509_set(ctx->chain, 0, mx);
849         X509_free(x);
850         ctx->num_untrusted = 0;
851         goto trusted;
852     }
853
854     /*
855      * If no trusted certs in chain at all return untrusted and allow
856      * standard (no issuer cert) etc errors to be indicated.
857      */
858     return X509_TRUST_UNTRUSTED;
859
860  rejected:
861     if (!verify_cb_cert(ctx, x, i, X509_V_ERR_CERT_REJECTED))
862         return X509_TRUST_REJECTED;
863     return X509_TRUST_UNTRUSTED;
864
865  trusted:
866     if (!DANETLS_ENABLED(dane))
867         return X509_TRUST_TRUSTED;
868     if (dane->pdpth < 0)
869         dane->pdpth = num_untrusted;
870     /* With DANE, PKIX alone is not trusted until we have both */
871     if (dane->mdpth >= 0)
872         return X509_TRUST_TRUSTED;
873     return X509_TRUST_UNTRUSTED;
874 }
875
876 static int check_revocation(X509_STORE_CTX *ctx)
877 {
878     int i = 0, last = 0, ok = 0;
879     if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
880         return 1;
881     if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
882         last = sk_X509_num(ctx->chain) - 1;
883     else {
884         /* If checking CRL paths this isn't the EE certificate */
885         if (ctx->parent)
886             return 1;
887         last = 0;
888     }
889     for (i = 0; i <= last; i++) {
890         ctx->error_depth = i;
891         ok = check_cert(ctx);
892         if (!ok)
893             return ok;
894     }
895     return 1;
896 }
897
898 static int check_cert(X509_STORE_CTX *ctx)
899 {
900     X509_CRL *crl = NULL, *dcrl = NULL;
901     int ok = 0;
902     int cnum = ctx->error_depth;
903     X509 *x = sk_X509_value(ctx->chain, cnum);
904
905     ctx->current_cert = x;
906     ctx->current_issuer = NULL;
907     ctx->current_crl_score = 0;
908     ctx->current_reasons = 0;
909
910     if (x->ex_flags & EXFLAG_PROXY)
911         return 1;
912
913     while (ctx->current_reasons != CRLDP_ALL_REASONS) {
914         unsigned int last_reasons = ctx->current_reasons;
915
916         /* Try to retrieve relevant CRL */
917         if (ctx->get_crl)
918             ok = ctx->get_crl(ctx, &crl, x);
919         else
920             ok = get_crl_delta(ctx, &crl, &dcrl, x);
921         /*
922          * If error looking up CRL, nothing we can do except notify callback
923          */
924         if (!ok) {
925             ok = verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_GET_CRL);
926             goto done;
927         }
928         ctx->current_crl = crl;
929         ok = ctx->check_crl(ctx, crl);
930         if (!ok)
931             goto done;
932
933         if (dcrl) {
934             ok = ctx->check_crl(ctx, dcrl);
935             if (!ok)
936                 goto done;
937             ok = ctx->cert_crl(ctx, dcrl, x);
938             if (!ok)
939                 goto done;
940         } else
941             ok = 1;
942
943         /* Don't look in full CRL if delta reason is removefromCRL */
944         if (ok != 2) {
945             ok = ctx->cert_crl(ctx, crl, x);
946             if (!ok)
947                 goto done;
948         }
949
950         X509_CRL_free(crl);
951         X509_CRL_free(dcrl);
952         crl = NULL;
953         dcrl = NULL;
954         /*
955          * If reasons not updated we won't get anywhere by another iteration,
956          * so exit loop.
957          */
958         if (last_reasons == ctx->current_reasons) {
959             ok = verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_GET_CRL);
960             goto done;
961         }
962     }
963  done:
964     X509_CRL_free(crl);
965     X509_CRL_free(dcrl);
966
967     ctx->current_crl = NULL;
968     return ok;
969 }
970
971 /* Check CRL times against values in X509_STORE_CTX */
972
973 static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
974 {
975     time_t *ptime;
976     int i;
977
978     if (notify)
979         ctx->current_crl = crl;
980     if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
981         ptime = &ctx->param->check_time;
982     else if (ctx->param->flags & X509_V_FLAG_NO_CHECK_TIME)
983         return 1;
984     else
985         ptime = NULL;
986
987     i = X509_cmp_time(X509_CRL_get0_lastUpdate(crl), ptime);
988     if (i == 0) {
989         if (!notify)
990             return 0;
991         if (!verify_cb_crl(ctx, X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD))
992             return 0;
993     }
994
995     if (i > 0) {
996         if (!notify)
997             return 0;
998         if (!verify_cb_crl(ctx, X509_V_ERR_CRL_NOT_YET_VALID))
999             return 0;
1000     }
1001
1002     if (X509_CRL_get0_nextUpdate(crl)) {
1003         i = X509_cmp_time(X509_CRL_get0_nextUpdate(crl), ptime);
1004
1005         if (i == 0) {
1006             if (!notify)
1007                 return 0;
1008             if (!verify_cb_crl(ctx, X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD))
1009                 return 0;
1010         }
1011         /* Ignore expiry of base CRL is delta is valid */
1012         if ((i < 0) && !(ctx->current_crl_score & CRL_SCORE_TIME_DELTA)) {
1013             if (!notify)
1014                 return 0;
1015             if (!verify_cb_crl(ctx, X509_V_ERR_CRL_HAS_EXPIRED))
1016                 return 0;
1017         }
1018     }
1019
1020     if (notify)
1021         ctx->current_crl = NULL;
1022
1023     return 1;
1024 }
1025
1026 static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl,
1027                       X509 **pissuer, int *pscore, unsigned int *preasons,
1028                       STACK_OF(X509_CRL) *crls)
1029 {
1030     int i, crl_score, best_score = *pscore;
1031     unsigned int reasons, best_reasons = 0;
1032     X509 *x = ctx->current_cert;
1033     X509_CRL *crl, *best_crl = NULL;
1034     X509 *crl_issuer = NULL, *best_crl_issuer = NULL;
1035
1036     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1037         crl = sk_X509_CRL_value(crls, i);
1038         reasons = *preasons;
1039         crl_score = get_crl_score(ctx, &crl_issuer, &reasons, crl, x);
1040         if (crl_score < best_score || crl_score == 0)
1041             continue;
1042         /* If current CRL is equivalent use it if it is newer */
1043         if (crl_score == best_score && best_crl != NULL) {
1044             int day, sec;
1045             if (ASN1_TIME_diff(&day, &sec, X509_CRL_get0_lastUpdate(best_crl),
1046                                X509_CRL_get0_lastUpdate(crl)) == 0)
1047                 continue;
1048             /*
1049              * ASN1_TIME_diff never returns inconsistent signs for |day|
1050              * and |sec|.
1051              */
1052             if (day <= 0 && sec <= 0)
1053                 continue;
1054         }
1055         best_crl = crl;
1056         best_crl_issuer = crl_issuer;
1057         best_score = crl_score;
1058         best_reasons = reasons;
1059     }
1060
1061     if (best_crl) {
1062         X509_CRL_free(*pcrl);
1063         *pcrl = best_crl;
1064         *pissuer = best_crl_issuer;
1065         *pscore = best_score;
1066         *preasons = best_reasons;
1067         X509_CRL_up_ref(best_crl);
1068         X509_CRL_free(*pdcrl);
1069         *pdcrl = NULL;
1070         get_delta_sk(ctx, pdcrl, pscore, best_crl, crls);
1071     }
1072
1073     if (best_score >= CRL_SCORE_VALID)
1074         return 1;
1075
1076     return 0;
1077 }
1078
1079 /*
1080  * Compare two CRL extensions for delta checking purposes. They should be
1081  * both present or both absent. If both present all fields must be identical.
1082  */
1083
1084 static int crl_extension_match(X509_CRL *a, X509_CRL *b, int nid)
1085 {
1086     ASN1_OCTET_STRING *exta, *extb;
1087     int i;
1088     i = X509_CRL_get_ext_by_NID(a, nid, -1);
1089     if (i >= 0) {
1090         /* Can't have multiple occurrences */
1091         if (X509_CRL_get_ext_by_NID(a, nid, i) != -1)
1092             return 0;
1093         exta = X509_EXTENSION_get_data(X509_CRL_get_ext(a, i));
1094     } else
1095         exta = NULL;
1096
1097     i = X509_CRL_get_ext_by_NID(b, nid, -1);
1098
1099     if (i >= 0) {
1100
1101         if (X509_CRL_get_ext_by_NID(b, nid, i) != -1)
1102             return 0;
1103         extb = X509_EXTENSION_get_data(X509_CRL_get_ext(b, i));
1104     } else
1105         extb = NULL;
1106
1107     if (!exta && !extb)
1108         return 1;
1109
1110     if (!exta || !extb)
1111         return 0;
1112
1113     if (ASN1_OCTET_STRING_cmp(exta, extb))
1114         return 0;
1115
1116     return 1;
1117 }
1118
1119 /* See if a base and delta are compatible */
1120
1121 static int check_delta_base(X509_CRL *delta, X509_CRL *base)
1122 {
1123     /* Delta CRL must be a delta */
1124     if (!delta->base_crl_number)
1125         return 0;
1126     /* Base must have a CRL number */
1127     if (!base->crl_number)
1128         return 0;
1129     /* Issuer names must match */
1130     if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(delta)))
1131         return 0;
1132     /* AKID and IDP must match */
1133     if (!crl_extension_match(delta, base, NID_authority_key_identifier))
1134         return 0;
1135     if (!crl_extension_match(delta, base, NID_issuing_distribution_point))
1136         return 0;
1137     /* Delta CRL base number must not exceed Full CRL number. */
1138     if (ASN1_INTEGER_cmp(delta->base_crl_number, base->crl_number) > 0)
1139         return 0;
1140     /* Delta CRL number must exceed full CRL number */
1141     if (ASN1_INTEGER_cmp(delta->crl_number, base->crl_number) > 0)
1142         return 1;
1143     return 0;
1144 }
1145
1146 /*
1147  * For a given base CRL find a delta... maybe extend to delta scoring or
1148  * retrieve a chain of deltas...
1149  */
1150
1151 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore,
1152                          X509_CRL *base, STACK_OF(X509_CRL) *crls)
1153 {
1154     X509_CRL *delta;
1155     int i;
1156     if (!(ctx->param->flags & X509_V_FLAG_USE_DELTAS))
1157         return;
1158     if (!((ctx->current_cert->ex_flags | base->flags) & EXFLAG_FRESHEST))
1159         return;
1160     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1161         delta = sk_X509_CRL_value(crls, i);
1162         if (check_delta_base(delta, base)) {
1163             if (check_crl_time(ctx, delta, 0))
1164                 *pscore |= CRL_SCORE_TIME_DELTA;
1165             X509_CRL_up_ref(delta);
1166             *dcrl = delta;
1167             return;
1168         }
1169     }
1170     *dcrl = NULL;
1171 }
1172
1173 /*
1174  * For a given CRL return how suitable it is for the supplied certificate
1175  * 'x'. The return value is a mask of several criteria. If the issuer is not
1176  * the certificate issuer this is returned in *pissuer. The reasons mask is
1177  * also used to determine if the CRL is suitable: if no new reasons the CRL
1178  * is rejected, otherwise reasons is updated.
1179  */
1180
1181 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
1182                          unsigned int *preasons, X509_CRL *crl, X509 *x)
1183 {
1184
1185     int crl_score = 0;
1186     unsigned int tmp_reasons = *preasons, crl_reasons;
1187
1188     /* First see if we can reject CRL straight away */
1189
1190     /* Invalid IDP cannot be processed */
1191     if (crl->idp_flags & IDP_INVALID)
1192         return 0;
1193     /* Reason codes or indirect CRLs need extended CRL support */
1194     if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT)) {
1195         if (crl->idp_flags & (IDP_INDIRECT | IDP_REASONS))
1196             return 0;
1197     } else if (crl->idp_flags & IDP_REASONS) {
1198         /* If no new reasons reject */
1199         if (!(crl->idp_reasons & ~tmp_reasons))
1200             return 0;
1201     }
1202     /* Don't process deltas at this stage */
1203     else if (crl->base_crl_number)
1204         return 0;
1205     /* If issuer name doesn't match certificate need indirect CRL */
1206     if (X509_NAME_cmp(X509_get_issuer_name(x), X509_CRL_get_issuer(crl))) {
1207         if (!(crl->idp_flags & IDP_INDIRECT))
1208             return 0;
1209     } else
1210         crl_score |= CRL_SCORE_ISSUER_NAME;
1211
1212     if (!(crl->flags & EXFLAG_CRITICAL))
1213         crl_score |= CRL_SCORE_NOCRITICAL;
1214
1215     /* Check expiry */
1216     if (check_crl_time(ctx, crl, 0))
1217         crl_score |= CRL_SCORE_TIME;
1218
1219     /* Check authority key ID and locate certificate issuer */
1220     crl_akid_check(ctx, crl, pissuer, &crl_score);
1221
1222     /* If we can't locate certificate issuer at this point forget it */
1223
1224     if (!(crl_score & CRL_SCORE_AKID))
1225         return 0;
1226
1227     /* Check cert for matching CRL distribution points */
1228
1229     if (crl_crldp_check(x, crl, crl_score, &crl_reasons)) {
1230         /* If no new reasons reject */
1231         if (!(crl_reasons & ~tmp_reasons))
1232             return 0;
1233         tmp_reasons |= crl_reasons;
1234         crl_score |= CRL_SCORE_SCOPE;
1235     }
1236
1237     *preasons = tmp_reasons;
1238
1239     return crl_score;
1240
1241 }
1242
1243 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl,
1244                            X509 **pissuer, int *pcrl_score)
1245 {
1246     X509 *crl_issuer = NULL;
1247     const X509_NAME *cnm = X509_CRL_get_issuer(crl);
1248     int cidx = ctx->error_depth;
1249     int i;
1250
1251     if (cidx != sk_X509_num(ctx->chain) - 1)
1252         cidx++;
1253
1254     crl_issuer = sk_X509_value(ctx->chain, cidx);
1255
1256     if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1257         if (*pcrl_score & CRL_SCORE_ISSUER_NAME) {
1258             *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_ISSUER_CERT;
1259             *pissuer = crl_issuer;
1260             return;
1261         }
1262     }
1263
1264     for (cidx++; cidx < sk_X509_num(ctx->chain); cidx++) {
1265         crl_issuer = sk_X509_value(ctx->chain, cidx);
1266         if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1267             continue;
1268         if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1269             *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_SAME_PATH;
1270             *pissuer = crl_issuer;
1271             return;
1272         }
1273     }
1274
1275     /* Anything else needs extended CRL support */
1276
1277     if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT))
1278         return;
1279
1280     /*
1281      * Otherwise the CRL issuer is not on the path. Look for it in the set of
1282      * untrusted certificates.
1283      */
1284     for (i = 0; i < sk_X509_num(ctx->untrusted); i++) {
1285         crl_issuer = sk_X509_value(ctx->untrusted, i);
1286         if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1287             continue;
1288         if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1289             *pissuer = crl_issuer;
1290             *pcrl_score |= CRL_SCORE_AKID;
1291             return;
1292         }
1293     }
1294 }
1295
1296 /*
1297  * Check the path of a CRL issuer certificate. This creates a new
1298  * X509_STORE_CTX and populates it with most of the parameters from the
1299  * parent. This could be optimised somewhat since a lot of path checking will
1300  * be duplicated by the parent, but this will rarely be used in practice.
1301  */
1302
1303 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x)
1304 {
1305     X509_STORE_CTX crl_ctx;
1306     int ret;
1307
1308     /* Don't allow recursive CRL path validation */
1309     if (ctx->parent)
1310         return 0;
1311     if (!X509_STORE_CTX_init(&crl_ctx, ctx->store, x, ctx->untrusted))
1312         return -1;
1313
1314     crl_ctx.crls = ctx->crls;
1315     /* Copy verify params across */
1316     X509_STORE_CTX_set0_param(&crl_ctx, ctx->param);
1317
1318     crl_ctx.parent = ctx;
1319     crl_ctx.verify_cb = ctx->verify_cb;
1320
1321     /* Verify CRL issuer */
1322     ret = X509_verify_cert(&crl_ctx);
1323     if (ret <= 0)
1324         goto err;
1325
1326     /* Check chain is acceptable */
1327     ret = check_crl_chain(ctx, ctx->chain, crl_ctx.chain);
1328  err:
1329     X509_STORE_CTX_cleanup(&crl_ctx);
1330     return ret;
1331 }
1332
1333 /*
1334  * RFC3280 says nothing about the relationship between CRL path and
1335  * certificate path, which could lead to situations where a certificate could
1336  * be revoked or validated by a CA not authorised to do so. RFC5280 is more
1337  * strict and states that the two paths must end in the same trust anchor,
1338  * though some discussions remain... until this is resolved we use the
1339  * RFC5280 version
1340  */
1341
1342 static int check_crl_chain(X509_STORE_CTX *ctx,
1343                            STACK_OF(X509) *cert_path,
1344                            STACK_OF(X509) *crl_path)
1345 {
1346     X509 *cert_ta, *crl_ta;
1347     cert_ta = sk_X509_value(cert_path, sk_X509_num(cert_path) - 1);
1348     crl_ta = sk_X509_value(crl_path, sk_X509_num(crl_path) - 1);
1349     if (!X509_cmp(cert_ta, crl_ta))
1350         return 1;
1351     return 0;
1352 }
1353
1354 /*-
1355  * Check for match between two dist point names: three separate cases.
1356  * 1. Both are relative names and compare X509_NAME types.
1357  * 2. One full, one relative. Compare X509_NAME to GENERAL_NAMES.
1358  * 3. Both are full names and compare two GENERAL_NAMES.
1359  * 4. One is NULL: automatic match.
1360  */
1361
1362 static int idp_check_dp(DIST_POINT_NAME *a, DIST_POINT_NAME *b)
1363 {
1364     X509_NAME *nm = NULL;
1365     GENERAL_NAMES *gens = NULL;
1366     GENERAL_NAME *gena, *genb;
1367     int i, j;
1368     if (!a || !b)
1369         return 1;
1370     if (a->type == 1) {
1371         if (!a->dpname)
1372             return 0;
1373         /* Case 1: two X509_NAME */
1374         if (b->type == 1) {
1375             if (!b->dpname)
1376                 return 0;
1377             if (!X509_NAME_cmp(a->dpname, b->dpname))
1378                 return 1;
1379             else
1380                 return 0;
1381         }
1382         /* Case 2: set name and GENERAL_NAMES appropriately */
1383         nm = a->dpname;
1384         gens = b->name.fullname;
1385     } else if (b->type == 1) {
1386         if (!b->dpname)
1387             return 0;
1388         /* Case 2: set name and GENERAL_NAMES appropriately */
1389         gens = a->name.fullname;
1390         nm = b->dpname;
1391     }
1392
1393     /* Handle case 2 with one GENERAL_NAMES and one X509_NAME */
1394     if (nm) {
1395         for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
1396             gena = sk_GENERAL_NAME_value(gens, i);
1397             if (gena->type != GEN_DIRNAME)
1398                 continue;
1399             if (!X509_NAME_cmp(nm, gena->d.directoryName))
1400                 return 1;
1401         }
1402         return 0;
1403     }
1404
1405     /* Else case 3: two GENERAL_NAMES */
1406
1407     for (i = 0; i < sk_GENERAL_NAME_num(a->name.fullname); i++) {
1408         gena = sk_GENERAL_NAME_value(a->name.fullname, i);
1409         for (j = 0; j < sk_GENERAL_NAME_num(b->name.fullname); j++) {
1410             genb = sk_GENERAL_NAME_value(b->name.fullname, j);
1411             if (!GENERAL_NAME_cmp(gena, genb))
1412                 return 1;
1413         }
1414     }
1415
1416     return 0;
1417
1418 }
1419
1420 static int crldp_check_crlissuer(DIST_POINT *dp, X509_CRL *crl, int crl_score)
1421 {
1422     int i;
1423     const X509_NAME *nm = X509_CRL_get_issuer(crl);
1424     /* If no CRLissuer return is successful iff don't need a match */
1425     if (!dp->CRLissuer)
1426         return ! !(crl_score & CRL_SCORE_ISSUER_NAME);
1427     for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
1428         GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
1429         if (gen->type != GEN_DIRNAME)
1430             continue;
1431         if (!X509_NAME_cmp(gen->d.directoryName, nm))
1432             return 1;
1433     }
1434     return 0;
1435 }
1436
1437 /* Check CRLDP and IDP */
1438
1439 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
1440                            unsigned int *preasons)
1441 {
1442     int i;
1443     if (crl->idp_flags & IDP_ONLYATTR)
1444         return 0;
1445     if (x->ex_flags & EXFLAG_CA) {
1446         if (crl->idp_flags & IDP_ONLYUSER)
1447             return 0;
1448     } else {
1449         if (crl->idp_flags & IDP_ONLYCA)
1450             return 0;
1451     }
1452     *preasons = crl->idp_reasons;
1453     for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
1454         DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
1455         if (crldp_check_crlissuer(dp, crl, crl_score)) {
1456             if (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint)) {
1457                 *preasons &= dp->dp_reasons;
1458                 return 1;
1459             }
1460         }
1461     }
1462     if ((!crl->idp || !crl->idp->distpoint)
1463         && (crl_score & CRL_SCORE_ISSUER_NAME))
1464         return 1;
1465     return 0;
1466 }
1467
1468 /*
1469  * Retrieve CRL corresponding to current certificate. If deltas enabled try
1470  * to find a delta CRL too
1471  */
1472
1473 static int get_crl_delta(X509_STORE_CTX *ctx,
1474                          X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x)
1475 {
1476     int ok;
1477     X509 *issuer = NULL;
1478     int crl_score = 0;
1479     unsigned int reasons;
1480     X509_CRL *crl = NULL, *dcrl = NULL;
1481     STACK_OF(X509_CRL) *skcrl;
1482     const X509_NAME *nm = X509_get_issuer_name(x);
1483
1484     reasons = ctx->current_reasons;
1485     ok = get_crl_sk(ctx, &crl, &dcrl,
1486                     &issuer, &crl_score, &reasons, ctx->crls);
1487     if (ok)
1488         goto done;
1489
1490     /* Lookup CRLs from store */
1491
1492     skcrl = ctx->lookup_crls(ctx, nm);
1493
1494     /* If no CRLs found and a near match from get_crl_sk use that */
1495     if (!skcrl && crl)
1496         goto done;
1497
1498     get_crl_sk(ctx, &crl, &dcrl, &issuer, &crl_score, &reasons, skcrl);
1499
1500     sk_X509_CRL_pop_free(skcrl, X509_CRL_free);
1501
1502  done:
1503     /* If we got any kind of CRL use it and return success */
1504     if (crl) {
1505         ctx->current_issuer = issuer;
1506         ctx->current_crl_score = crl_score;
1507         ctx->current_reasons = reasons;
1508         *pcrl = crl;
1509         *pdcrl = dcrl;
1510         return 1;
1511     }
1512     return 0;
1513 }
1514
1515 /* Check CRL validity */
1516 static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
1517 {
1518     X509 *issuer = NULL;
1519     EVP_PKEY *ikey = NULL;
1520     int cnum = ctx->error_depth;
1521     int chnum = sk_X509_num(ctx->chain) - 1;
1522
1523     /* If we have an alternative CRL issuer cert use that */
1524     if (ctx->current_issuer)
1525         issuer = ctx->current_issuer;
1526     /*
1527      * Else find CRL issuer: if not last certificate then issuer is next
1528      * certificate in chain.
1529      */
1530     else if (cnum < chnum)
1531         issuer = sk_X509_value(ctx->chain, cnum + 1);
1532     else {
1533         issuer = sk_X509_value(ctx->chain, chnum);
1534         /* If not self-issued, can't check signature */
1535         if (!ctx->check_issued(ctx, issuer, issuer) &&
1536             !verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER))
1537             return 0;
1538     }
1539
1540     if (issuer == NULL)
1541         return 1;
1542
1543     /*
1544      * Skip most tests for deltas because they have already been done
1545      */
1546     if (!crl->base_crl_number) {
1547         /* Check for cRLSign bit if keyUsage present */
1548         if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
1549             !(issuer->ex_kusage & KU_CRL_SIGN) &&
1550             !verify_cb_crl(ctx, X509_V_ERR_KEYUSAGE_NO_CRL_SIGN))
1551             return 0;
1552
1553         if (!(ctx->current_crl_score & CRL_SCORE_SCOPE) &&
1554             !verify_cb_crl(ctx, X509_V_ERR_DIFFERENT_CRL_SCOPE))
1555             return 0;
1556
1557         if (!(ctx->current_crl_score & CRL_SCORE_SAME_PATH) &&
1558             check_crl_path(ctx, ctx->current_issuer) <= 0 &&
1559             !verify_cb_crl(ctx, X509_V_ERR_CRL_PATH_VALIDATION_ERROR))
1560             return 0;
1561
1562         if ((crl->idp_flags & IDP_INVALID) &&
1563             !verify_cb_crl(ctx, X509_V_ERR_INVALID_EXTENSION))
1564             return 0;
1565     }
1566
1567     if (!(ctx->current_crl_score & CRL_SCORE_TIME) &&
1568         !check_crl_time(ctx, crl, 1))
1569         return 0;
1570
1571     /* Attempt to get issuer certificate public key */
1572     ikey = X509_get0_pubkey(issuer);
1573
1574     if (!ikey &&
1575         !verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY))
1576         return 0;
1577
1578     if (ikey) {
1579         int rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags);
1580
1581         if (rv != X509_V_OK && !verify_cb_crl(ctx, rv))
1582             return 0;
1583         /* Verify CRL signature */
1584         if (X509_CRL_verify(crl, ikey) <= 0 &&
1585             !verify_cb_crl(ctx, X509_V_ERR_CRL_SIGNATURE_FAILURE))
1586             return 0;
1587     }
1588     return 1;
1589 }
1590
1591 /* Check certificate against CRL */
1592 static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
1593 {
1594     X509_REVOKED *rev;
1595
1596     /*
1597      * The rules changed for this... previously if a CRL contained unhandled
1598      * critical extensions it could still be used to indicate a certificate
1599      * was revoked. This has since been changed since critical extensions can
1600      * change the meaning of CRL entries.
1601      */
1602     if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
1603         && (crl->flags & EXFLAG_CRITICAL) &&
1604         !verify_cb_crl(ctx, X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION))
1605         return 0;
1606     /*
1607      * Look for serial number of certificate in CRL.  If found, make sure
1608      * reason is not removeFromCRL.
1609      */
1610     if (X509_CRL_get0_by_cert(crl, &rev, x)) {
1611         if (rev->reason == CRL_REASON_REMOVE_FROM_CRL)
1612             return 2;
1613         if (!verify_cb_crl(ctx, X509_V_ERR_CERT_REVOKED))
1614             return 0;
1615     }
1616
1617     return 1;
1618 }
1619
1620 static int check_policy(X509_STORE_CTX *ctx)
1621 {
1622     int ret;
1623
1624     if (ctx->parent)
1625         return 1;
1626     /*
1627      * With DANE, the trust anchor might be a bare public key, not a
1628      * certificate!  In that case our chain does not have the trust anchor
1629      * certificate as a top-most element.  This comports well with RFC5280
1630      * chain verification, since there too, the trust anchor is not part of the
1631      * chain to be verified.  In particular, X509_policy_check() does not look
1632      * at the TA cert, but assumes that it is present as the top-most chain
1633      * element.  We therefore temporarily push a NULL cert onto the chain if it
1634      * was verified via a bare public key, and pop it off right after the
1635      * X509_policy_check() call.
1636      */
1637     if (ctx->bare_ta_signed && !sk_X509_push(ctx->chain, NULL)) {
1638         X509err(X509_F_CHECK_POLICY, ERR_R_MALLOC_FAILURE);
1639         ctx->error = X509_V_ERR_OUT_OF_MEM;
1640         return 0;
1641     }
1642     ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
1643                             ctx->param->policies, ctx->param->flags);
1644     if (ctx->bare_ta_signed)
1645         sk_X509_pop(ctx->chain);
1646
1647     if (ret == X509_PCY_TREE_INTERNAL) {
1648         X509err(X509_F_CHECK_POLICY, ERR_R_MALLOC_FAILURE);
1649         ctx->error = X509_V_ERR_OUT_OF_MEM;
1650         return 0;
1651     }
1652     /* Invalid or inconsistent extensions */
1653     if (ret == X509_PCY_TREE_INVALID) {
1654         int i;
1655
1656         /* Locate certificates with bad extensions and notify callback. */
1657         for (i = 1; i < sk_X509_num(ctx->chain); i++) {
1658             X509 *x = sk_X509_value(ctx->chain, i);
1659
1660             if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
1661                 continue;
1662             if (!verify_cb_cert(ctx, x, i,
1663                                 X509_V_ERR_INVALID_POLICY_EXTENSION))
1664                 return 0;
1665         }
1666         return 1;
1667     }
1668     if (ret == X509_PCY_TREE_FAILURE) {
1669         ctx->current_cert = NULL;
1670         ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
1671         return ctx->verify_cb(0, ctx);
1672     }
1673     if (ret != X509_PCY_TREE_VALID) {
1674         X509err(X509_F_CHECK_POLICY, ERR_R_INTERNAL_ERROR);
1675         return 0;
1676     }
1677
1678     if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY) {
1679         ctx->current_cert = NULL;
1680         /*
1681          * Verification errors need to be "sticky", a callback may have allowed
1682          * an SSL handshake to continue despite an error, and we must then
1683          * remain in an error state.  Therefore, we MUST NOT clear earlier
1684          * verification errors by setting the error to X509_V_OK.
1685          */
1686         if (!ctx->verify_cb(2, ctx))
1687             return 0;
1688     }
1689
1690     return 1;
1691 }
1692
1693 /*-
1694  * Check certificate validity times.
1695  * If depth >= 0, invoke verification callbacks on error, otherwise just return
1696  * the validation status.
1697  *
1698  * Return 1 on success, 0 otherwise.
1699  */
1700 int x509_check_cert_time(X509_STORE_CTX *ctx, X509 *x, int depth)
1701 {
1702     time_t *ptime;
1703     int i;
1704
1705     if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1706         ptime = &ctx->param->check_time;
1707     else if (ctx->param->flags & X509_V_FLAG_NO_CHECK_TIME)
1708         return 1;
1709     else
1710         ptime = NULL;
1711
1712     i = X509_cmp_time(X509_get0_notBefore(x), ptime);
1713     if (i >= 0 && depth < 0)
1714         return 0;
1715     if (i == 0 && !verify_cb_cert(ctx, x, depth,
1716                                   X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD))
1717         return 0;
1718     if (i > 0 && !verify_cb_cert(ctx, x, depth, X509_V_ERR_CERT_NOT_YET_VALID))
1719         return 0;
1720
1721     i = X509_cmp_time(X509_get0_notAfter(x), ptime);
1722     if (i <= 0 && depth < 0)
1723         return 0;
1724     if (i == 0 && !verify_cb_cert(ctx, x, depth,
1725                                   X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD))
1726         return 0;
1727     if (i < 0 && !verify_cb_cert(ctx, x, depth, X509_V_ERR_CERT_HAS_EXPIRED))
1728         return 0;
1729     return 1;
1730 }
1731
1732 static int internal_verify(X509_STORE_CTX *ctx)
1733 {
1734     int n = sk_X509_num(ctx->chain) - 1;
1735     X509 *xi = sk_X509_value(ctx->chain, n);
1736     X509 *xs;
1737
1738     /*
1739      * With DANE-verified bare public key TA signatures, it remains only to
1740      * check the timestamps of the top certificate.  We report the issuer as
1741      * NULL, since all we have is a bare key.
1742      */
1743     if (ctx->bare_ta_signed) {
1744         xs = xi;
1745         xi = NULL;
1746         goto check_cert;
1747     }
1748
1749     if (ctx->check_issued(ctx, xi, xi)) /* the last cert appears self-signed */
1750         xs = xi;
1751     else {
1752         if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
1753             xs = xi;
1754             goto check_cert;
1755         }
1756         if (n <= 0)
1757             return verify_cb_cert(ctx, xi, 0,
1758                                   X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE);
1759         n--;
1760         ctx->error_depth = n;
1761         xs = sk_X509_value(ctx->chain, n);
1762     }
1763
1764     /*
1765      * Do not clear ctx->error=0, it must be "sticky", only the user's callback
1766      * is allowed to reset errors (at its own peril).
1767      */
1768     while (n >= 0) {
1769         /*
1770          * Skip signature check for self-signed certificates unless explicitly
1771          * asked for because it does not add any security and just wastes time.
1772          * If the issuer's public key is not available or its key usage does
1773          * not support issuing the subject cert, report the issuer certificate
1774          * and its depth (rather than the depth of the subject).
1775          */
1776         if (xs != xi || (ctx->param->flags & X509_V_FLAG_CHECK_SS_SIGNATURE)) {
1777             EVP_PKEY *pkey;
1778             int issuer_depth = n + (xi == xs ? 0 : 1);
1779             int ret = x509_signing_allowed(xi, xs);
1780
1781             if (ret != X509_V_OK && !verify_cb_cert(ctx, xi, issuer_depth, ret))
1782                 return 0;
1783             if ((pkey = X509_get0_pubkey(xi)) == NULL) {
1784                 if (!verify_cb_cert(ctx, xi, issuer_depth,
1785                                     X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY))
1786                     return 0;
1787             } else if (X509_verify_ex(xs, pkey, ctx->libctx, ctx->propq) <= 0) {
1788                 if (!verify_cb_cert(ctx, xs, n,
1789                                     X509_V_ERR_CERT_SIGNATURE_FAILURE))
1790                     return 0;
1791             }
1792         }
1793
1794  check_cert:
1795         /* Calls verify callback as needed */
1796         if (!x509_check_cert_time(ctx, xs, n))
1797             return 0;
1798
1799         /*
1800          * Signal success at this depth.  However, the previous error (if any)
1801          * is retained.
1802          */
1803         ctx->current_issuer = xi;
1804         ctx->current_cert = xs;
1805         ctx->error_depth = n;
1806         if (!ctx->verify_cb(1, ctx))
1807             return 0;
1808
1809         if (--n >= 0) {
1810             xi = xs;
1811             xs = sk_X509_value(ctx->chain, n);
1812         }
1813     }
1814     return 1;
1815 }
1816
1817 int X509_cmp_current_time(const ASN1_TIME *ctm)
1818 {
1819     return X509_cmp_time(ctm, NULL);
1820 }
1821
1822 int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
1823 {
1824     static const size_t utctime_length = sizeof("YYMMDDHHMMSSZ") - 1;
1825     static const size_t generalizedtime_length = sizeof("YYYYMMDDHHMMSSZ") - 1;
1826     ASN1_TIME *asn1_cmp_time = NULL;
1827     int i, day, sec, ret = 0;
1828 #ifdef CHARSET_EBCDIC
1829     const char upper_z = 0x5A;
1830 #else
1831     const char upper_z = 'Z';
1832 #endif
1833     /*
1834      * Note that ASN.1 allows much more slack in the time format than RFC5280.
1835      * In RFC5280, the representation is fixed:
1836      * UTCTime: YYMMDDHHMMSSZ
1837      * GeneralizedTime: YYYYMMDDHHMMSSZ
1838      *
1839      * We do NOT currently enforce the following RFC 5280 requirement:
1840      * "CAs conforming to this profile MUST always encode certificate
1841      *  validity dates through the year 2049 as UTCTime; certificate validity
1842      *  dates in 2050 or later MUST be encoded as GeneralizedTime."
1843      */
1844     switch (ctm->type) {
1845     case V_ASN1_UTCTIME:
1846         if (ctm->length != (int)(utctime_length))
1847             return 0;
1848         break;
1849     case V_ASN1_GENERALIZEDTIME:
1850         if (ctm->length != (int)(generalizedtime_length))
1851             return 0;
1852         break;
1853     default:
1854         return 0;
1855     }
1856
1857     /**
1858      * Verify the format: the ASN.1 functions we use below allow a more
1859      * flexible format than what's mandated by RFC 5280.
1860      * Digit and date ranges will be verified in the conversion methods.
1861      */
1862     for (i = 0; i < ctm->length - 1; i++) {
1863         if (!ascii_isdigit(ctm->data[i]))
1864             return 0;
1865     }
1866     if (ctm->data[ctm->length - 1] != upper_z)
1867         return 0;
1868
1869     /*
1870      * There is ASN1_UTCTIME_cmp_time_t but no
1871      * ASN1_GENERALIZEDTIME_cmp_time_t or ASN1_TIME_cmp_time_t,
1872      * so we go through ASN.1
1873      */
1874     asn1_cmp_time = X509_time_adj(NULL, 0, cmp_time);
1875     if (asn1_cmp_time == NULL)
1876         goto err;
1877     if (!ASN1_TIME_diff(&day, &sec, ctm, asn1_cmp_time))
1878         goto err;
1879
1880     /*
1881      * X509_cmp_time comparison is <=.
1882      * The return value 0 is reserved for errors.
1883      */
1884     ret = (day >= 0 && sec >= 0) ? -1 : 1;
1885
1886  err:
1887     ASN1_TIME_free(asn1_cmp_time);
1888     return ret;
1889 }
1890
1891 /*
1892  * Return 0 if time should not be checked or reference time is in range,
1893  * or else 1 if it is past the end, or -1 if it is before the start
1894  */
1895 int X509_cmp_timeframe(const X509_VERIFY_PARAM *vpm,
1896                        const ASN1_TIME *start, const ASN1_TIME *end)
1897 {
1898     time_t ref_time;
1899     time_t *time = NULL;
1900     unsigned long flags = vpm == NULL ? 0 : X509_VERIFY_PARAM_get_flags(vpm);
1901
1902     if ((flags & X509_V_FLAG_USE_CHECK_TIME) != 0) {
1903         ref_time = X509_VERIFY_PARAM_get_time(vpm);
1904         time = &ref_time;
1905     } else if ((flags & X509_V_FLAG_NO_CHECK_TIME) != 0) {
1906         return 0; /* this means ok */
1907     } /* else reference time is the current time */
1908
1909     if (end != NULL && X509_cmp_time(end, time) < 0)
1910         return 1;
1911     if (start != NULL && X509_cmp_time(start, time) > 0)
1912         return -1;
1913     return 0;
1914 }
1915
1916 ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
1917 {
1918     return X509_time_adj(s, adj, NULL);
1919 }
1920
1921 ASN1_TIME *X509_time_adj(ASN1_TIME *s, long offset_sec, time_t *in_tm)
1922 {
1923     return X509_time_adj_ex(s, 0, offset_sec, in_tm);
1924 }
1925
1926 ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s,
1927                             int offset_day, long offset_sec, time_t *in_tm)
1928 {
1929     time_t t;
1930
1931     if (in_tm)
1932         t = *in_tm;
1933     else
1934         time(&t);
1935
1936     if (s && !(s->flags & ASN1_STRING_FLAG_MSTRING)) {
1937         if (s->type == V_ASN1_UTCTIME)
1938             return ASN1_UTCTIME_adj(s, t, offset_day, offset_sec);
1939         if (s->type == V_ASN1_GENERALIZEDTIME)
1940             return ASN1_GENERALIZEDTIME_adj(s, t, offset_day, offset_sec);
1941     }
1942     return ASN1_TIME_adj(s, t, offset_day, offset_sec);
1943 }
1944
1945 int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
1946 {
1947     EVP_PKEY *ktmp = NULL, *ktmp2;
1948     int i, j;
1949
1950     if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey))
1951         return 1;
1952
1953     for (i = 0; i < sk_X509_num(chain); i++) {
1954         ktmp = X509_get0_pubkey(sk_X509_value(chain, i));
1955         if (ktmp == NULL) {
1956             X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
1957                     X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
1958             return 0;
1959         }
1960         if (!EVP_PKEY_missing_parameters(ktmp))
1961             break;
1962     }
1963     if (ktmp == NULL) {
1964         X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
1965                 X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
1966         return 0;
1967     }
1968
1969     /* first, populate the other certs */
1970     for (j = i - 1; j >= 0; j--) {
1971         ktmp2 = X509_get0_pubkey(sk_X509_value(chain, j));
1972         EVP_PKEY_copy_parameters(ktmp2, ktmp);
1973     }
1974
1975     if (pkey != NULL)
1976         EVP_PKEY_copy_parameters(pkey, ktmp);
1977     return 1;
1978 }
1979
1980 /* Make a delta CRL as the diff between two full CRLs */
1981
1982 X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
1983                         EVP_PKEY *skey, const EVP_MD *md, unsigned int flags)
1984 {
1985     X509_CRL *crl = NULL;
1986     int i;
1987     STACK_OF(X509_REVOKED) *revs = NULL;
1988     /* CRLs can't be delta already */
1989     if (base->base_crl_number || newer->base_crl_number) {
1990         X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_ALREADY_DELTA);
1991         return NULL;
1992     }
1993     /* Base and new CRL must have a CRL number */
1994     if (!base->crl_number || !newer->crl_number) {
1995         X509err(X509_F_X509_CRL_DIFF, X509_R_NO_CRL_NUMBER);
1996         return NULL;
1997     }
1998     /* Issuer names must match */
1999     if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(newer))) {
2000         X509err(X509_F_X509_CRL_DIFF, X509_R_ISSUER_MISMATCH);
2001         return NULL;
2002     }
2003     /* AKID and IDP must match */
2004     if (!crl_extension_match(base, newer, NID_authority_key_identifier)) {
2005         X509err(X509_F_X509_CRL_DIFF, X509_R_AKID_MISMATCH);
2006         return NULL;
2007     }
2008     if (!crl_extension_match(base, newer, NID_issuing_distribution_point)) {
2009         X509err(X509_F_X509_CRL_DIFF, X509_R_IDP_MISMATCH);
2010         return NULL;
2011     }
2012     /* Newer CRL number must exceed full CRL number */
2013     if (ASN1_INTEGER_cmp(newer->crl_number, base->crl_number) <= 0) {
2014         X509err(X509_F_X509_CRL_DIFF, X509_R_NEWER_CRL_NOT_NEWER);
2015         return NULL;
2016     }
2017     /* CRLs must verify */
2018     if (skey && (X509_CRL_verify(base, skey) <= 0 ||
2019                  X509_CRL_verify(newer, skey) <= 0)) {
2020         X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_VERIFY_FAILURE);
2021         return NULL;
2022     }
2023     /* Create new CRL */
2024     crl = X509_CRL_new();
2025     if (crl == NULL || !X509_CRL_set_version(crl, 1))
2026         goto memerr;
2027     /* Set issuer name */
2028     if (!X509_CRL_set_issuer_name(crl, X509_CRL_get_issuer(newer)))
2029         goto memerr;
2030
2031     if (!X509_CRL_set1_lastUpdate(crl, X509_CRL_get0_lastUpdate(newer)))
2032         goto memerr;
2033     if (!X509_CRL_set1_nextUpdate(crl, X509_CRL_get0_nextUpdate(newer)))
2034         goto memerr;
2035
2036     /* Set base CRL number: must be critical */
2037
2038     if (!X509_CRL_add1_ext_i2d(crl, NID_delta_crl, base->crl_number, 1, 0))
2039         goto memerr;
2040
2041     /*
2042      * Copy extensions across from newest CRL to delta: this will set CRL
2043      * number to correct value too.
2044      */
2045
2046     for (i = 0; i < X509_CRL_get_ext_count(newer); i++) {
2047         X509_EXTENSION *ext;
2048         ext = X509_CRL_get_ext(newer, i);
2049         if (!X509_CRL_add_ext(crl, ext, -1))
2050             goto memerr;
2051     }
2052
2053     /* Go through revoked entries, copying as needed */
2054
2055     revs = X509_CRL_get_REVOKED(newer);
2056
2057     for (i = 0; i < sk_X509_REVOKED_num(revs); i++) {
2058         X509_REVOKED *rvn, *rvtmp;
2059         rvn = sk_X509_REVOKED_value(revs, i);
2060         /*
2061          * Add only if not also in base. TODO: need something cleverer here
2062          * for some more complex CRLs covering multiple CAs.
2063          */
2064         if (!X509_CRL_get0_by_serial(base, &rvtmp, &rvn->serialNumber)) {
2065             rvtmp = X509_REVOKED_dup(rvn);
2066             if (!rvtmp)
2067                 goto memerr;
2068             if (!X509_CRL_add0_revoked(crl, rvtmp)) {
2069                 X509_REVOKED_free(rvtmp);
2070                 goto memerr;
2071             }
2072         }
2073     }
2074     /* TODO: optionally prune deleted entries */
2075
2076     if (skey && md && !X509_CRL_sign(crl, skey, md))
2077         goto memerr;
2078
2079     return crl;
2080
2081  memerr:
2082     X509err(X509_F_X509_CRL_DIFF, ERR_R_MALLOC_FAILURE);
2083     X509_CRL_free(crl);
2084     return NULL;
2085 }
2086
2087 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
2088 {
2089     return CRYPTO_set_ex_data(&ctx->ex_data, idx, data);
2090 }
2091
2092 void *X509_STORE_CTX_get_ex_data(const X509_STORE_CTX *ctx, int idx)
2093 {
2094     return CRYPTO_get_ex_data(&ctx->ex_data, idx);
2095 }
2096
2097 int X509_STORE_CTX_get_error(const X509_STORE_CTX *ctx)
2098 {
2099     return ctx->error;
2100 }
2101
2102 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
2103 {
2104     ctx->error = err;
2105 }
2106
2107 int X509_STORE_CTX_get_error_depth(const X509_STORE_CTX *ctx)
2108 {
2109     return ctx->error_depth;
2110 }
2111
2112 void X509_STORE_CTX_set_error_depth(X509_STORE_CTX *ctx, int depth)
2113 {
2114     ctx->error_depth = depth;
2115 }
2116
2117 X509 *X509_STORE_CTX_get_current_cert(const X509_STORE_CTX *ctx)
2118 {
2119     return ctx->current_cert;
2120 }
2121
2122 void X509_STORE_CTX_set_current_cert(X509_STORE_CTX *ctx, X509 *x)
2123 {
2124     ctx->current_cert = x;
2125 }
2126
2127 STACK_OF(X509) *X509_STORE_CTX_get0_chain(const X509_STORE_CTX *ctx)
2128 {
2129     return ctx->chain;
2130 }
2131
2132 STACK_OF(X509) *X509_STORE_CTX_get1_chain(const X509_STORE_CTX *ctx)
2133 {
2134     if (!ctx->chain)
2135         return NULL;
2136     return X509_chain_up_ref(ctx->chain);
2137 }
2138
2139 X509 *X509_STORE_CTX_get0_current_issuer(const X509_STORE_CTX *ctx)
2140 {
2141     return ctx->current_issuer;
2142 }
2143
2144 X509_CRL *X509_STORE_CTX_get0_current_crl(const X509_STORE_CTX *ctx)
2145 {
2146     return ctx->current_crl;
2147 }
2148
2149 X509_STORE_CTX *X509_STORE_CTX_get0_parent_ctx(const X509_STORE_CTX *ctx)
2150 {
2151     return ctx->parent;
2152 }
2153
2154 void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
2155 {
2156     ctx->cert = x;
2157 }
2158
2159 void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
2160 {
2161     ctx->crls = sk;
2162 }
2163
2164 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
2165 {
2166     /*
2167      * XXX: Why isn't this function always used to set the associated trust?
2168      * Should there even be a VPM->trust field at all?  Or should the trust
2169      * always be inferred from the purpose by X509_STORE_CTX_init().
2170      */
2171     return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
2172 }
2173
2174 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
2175 {
2176     /*
2177      * XXX: See above, this function would only be needed when the default
2178      * trust for the purpose needs an override in a corner case.
2179      */
2180     return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
2181 }
2182
2183 /*
2184  * This function is used to set the X509_STORE_CTX purpose and trust values.
2185  * This is intended to be used when another structure has its own trust and
2186  * purpose values which (if set) will be inherited by the ctx. If they aren't
2187  * set then we will usually have a default purpose in mind which should then
2188  * be used to set the trust value. An example of this is SSL use: an SSL
2189  * structure will have its own purpose and trust settings which the
2190  * application can set: if they aren't set then we use the default of SSL
2191  * client/server.
2192  */
2193
2194 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
2195                                    int purpose, int trust)
2196 {
2197     int idx;
2198     /* If purpose not set use default */
2199     if (purpose == 0)
2200         purpose = def_purpose;
2201     /* If we have a purpose then check it is valid */
2202     if (purpose != 0) {
2203         X509_PURPOSE *ptmp;
2204         idx = X509_PURPOSE_get_by_id(purpose);
2205         if (idx == -1) {
2206             X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2207                     X509_R_UNKNOWN_PURPOSE_ID);
2208             return 0;
2209         }
2210         ptmp = X509_PURPOSE_get0(idx);
2211         if (ptmp->trust == X509_TRUST_DEFAULT) {
2212             idx = X509_PURPOSE_get_by_id(def_purpose);
2213             /*
2214              * XXX: In the two callers above def_purpose is always 0, which is
2215              * not a known value, so idx will always be -1.  How is the
2216              * X509_TRUST_DEFAULT case actually supposed to be handled?
2217              */
2218             if (idx == -1) {
2219                 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2220                         X509_R_UNKNOWN_PURPOSE_ID);
2221                 return 0;
2222             }
2223             ptmp = X509_PURPOSE_get0(idx);
2224         }
2225         /* If trust not set then get from purpose default */
2226         if (!trust)
2227             trust = ptmp->trust;
2228     }
2229     if (trust) {
2230         idx = X509_TRUST_get_by_id(trust);
2231         if (idx == -1) {
2232             X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2233                     X509_R_UNKNOWN_TRUST_ID);
2234             return 0;
2235         }
2236     }
2237
2238     if (purpose && !ctx->param->purpose)
2239         ctx->param->purpose = purpose;
2240     if (trust && !ctx->param->trust)
2241         ctx->param->trust = trust;
2242     return 1;
2243 }
2244
2245 X509_STORE_CTX *X509_STORE_CTX_new_with_libctx(OPENSSL_CTX *libctx,
2246                                                const char *propq)
2247 {
2248     X509_STORE_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
2249
2250     if (ctx == NULL) {
2251         X509err(0, ERR_R_MALLOC_FAILURE);
2252         return NULL;
2253     }
2254
2255     ctx->libctx = libctx;
2256     if (propq != NULL) {
2257         ctx->propq = OPENSSL_strdup(propq);
2258         if (ctx->propq == NULL) {
2259             OPENSSL_free(ctx);
2260             X509err(0, ERR_R_MALLOC_FAILURE);
2261             return NULL;
2262         }
2263     }
2264
2265     return ctx;
2266 }
2267
2268 X509_STORE_CTX *X509_STORE_CTX_new(void)
2269 {
2270     return X509_STORE_CTX_new_with_libctx(NULL, NULL);
2271 }
2272
2273
2274 void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
2275 {
2276     if (ctx == NULL)
2277         return;
2278
2279     X509_STORE_CTX_cleanup(ctx);
2280
2281     /* libctx and propq survive X509_STORE_CTX_cleanup() */
2282     OPENSSL_free(ctx->propq);
2283
2284     OPENSSL_free(ctx);
2285 }
2286
2287 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
2288                         STACK_OF(X509) *chain)
2289 {
2290     int ret = 1;
2291
2292     ctx->store = store;
2293     ctx->cert = x509;
2294     ctx->untrusted = chain;
2295     ctx->crls = NULL;
2296     ctx->num_untrusted = 0;
2297     ctx->other_ctx = NULL;
2298     ctx->valid = 0;
2299     ctx->chain = NULL;
2300     ctx->error = 0;
2301     ctx->explicit_policy = 0;
2302     ctx->error_depth = 0;
2303     ctx->current_cert = NULL;
2304     ctx->current_issuer = NULL;
2305     ctx->current_crl = NULL;
2306     ctx->current_crl_score = 0;
2307     ctx->current_reasons = 0;
2308     ctx->tree = NULL;
2309     ctx->parent = NULL;
2310     ctx->dane = NULL;
2311     ctx->bare_ta_signed = 0;
2312     /* Zero ex_data to make sure we're cleanup-safe */
2313     memset(&ctx->ex_data, 0, sizeof(ctx->ex_data));
2314
2315     /* store->cleanup is always 0 in OpenSSL, if set must be idempotent */
2316     if (store)
2317         ctx->cleanup = store->cleanup;
2318     else
2319         ctx->cleanup = 0;
2320
2321     if (store && store->check_issued)
2322         ctx->check_issued = store->check_issued;
2323     else
2324         ctx->check_issued = check_issued;
2325
2326     if (store && store->get_issuer)
2327         ctx->get_issuer = store->get_issuer;
2328     else
2329         ctx->get_issuer = X509_STORE_CTX_get1_issuer;
2330
2331     if (store && store->verify_cb)
2332         ctx->verify_cb = store->verify_cb;
2333     else
2334         ctx->verify_cb = null_callback;
2335
2336     if (store && store->verify)
2337         ctx->verify = store->verify;
2338     else
2339         ctx->verify = internal_verify;
2340
2341     if (store && store->check_revocation)
2342         ctx->check_revocation = store->check_revocation;
2343     else
2344         ctx->check_revocation = check_revocation;
2345
2346     if (store && store->get_crl)
2347         ctx->get_crl = store->get_crl;
2348     else
2349         ctx->get_crl = NULL;
2350
2351     if (store && store->check_crl)
2352         ctx->check_crl = store->check_crl;
2353     else
2354         ctx->check_crl = check_crl;
2355
2356     if (store && store->cert_crl)
2357         ctx->cert_crl = store->cert_crl;
2358     else
2359         ctx->cert_crl = cert_crl;
2360
2361     if (store && store->check_policy)
2362         ctx->check_policy = store->check_policy;
2363     else
2364         ctx->check_policy = check_policy;
2365
2366     if (store && store->lookup_certs)
2367         ctx->lookup_certs = store->lookup_certs;
2368     else
2369         ctx->lookup_certs = X509_STORE_CTX_get1_certs;
2370
2371     if (store && store->lookup_crls)
2372         ctx->lookup_crls = store->lookup_crls;
2373     else
2374         ctx->lookup_crls = X509_STORE_CTX_get1_crls;
2375
2376     ctx->param = X509_VERIFY_PARAM_new();
2377     if (ctx->param == NULL) {
2378         X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2379         goto err;
2380     }
2381
2382     /*
2383      * Inherit callbacks and flags from X509_STORE if not set use defaults.
2384      */
2385     if (store)
2386         ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
2387     else
2388         ctx->param->inh_flags |= X509_VP_FLAG_DEFAULT | X509_VP_FLAG_ONCE;
2389
2390     if (ret)
2391         ret = X509_VERIFY_PARAM_inherit(ctx->param,
2392                                         X509_VERIFY_PARAM_lookup("default"));
2393
2394     if (ret == 0) {
2395         X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2396         goto err;
2397     }
2398
2399     /*
2400      * XXX: For now, continue to inherit trust from VPM, but infer from the
2401      * purpose if this still yields the default value.
2402      */
2403     if (ctx->param->trust == X509_TRUST_DEFAULT) {
2404         int idx = X509_PURPOSE_get_by_id(ctx->param->purpose);
2405         X509_PURPOSE *xp = X509_PURPOSE_get0(idx);
2406
2407         if (xp != NULL)
2408             ctx->param->trust = X509_PURPOSE_get_trust(xp);
2409     }
2410
2411     if (CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
2412                            &ctx->ex_data))
2413         return 1;
2414     X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2415
2416  err:
2417     /*
2418      * On error clean up allocated storage, if the store context was not
2419      * allocated with X509_STORE_CTX_new() this is our last chance to do so.
2420      */
2421     X509_STORE_CTX_cleanup(ctx);
2422     return 0;
2423 }
2424
2425 /*
2426  * Set alternative lookup method: just a STACK of trusted certificates. This
2427  * avoids X509_STORE nastiness where it isn't needed.
2428  */
2429 void X509_STORE_CTX_set0_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2430 {
2431     ctx->other_ctx = sk;
2432     ctx->get_issuer = get_issuer_sk;
2433     ctx->lookup_certs = lookup_certs_sk;
2434 }
2435
2436 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
2437 {
2438     /*
2439      * We need to be idempotent because, unfortunately, free() also calls
2440      * cleanup(), so the natural call sequence new(), init(), cleanup(), free()
2441      * calls cleanup() for the same object twice!  Thus we must zero the
2442      * pointers below after they're freed!
2443      */
2444     /* Seems to always be 0 in OpenSSL, do this at most once. */
2445     if (ctx->cleanup != NULL) {
2446         ctx->cleanup(ctx);
2447         ctx->cleanup = NULL;
2448     }
2449     if (ctx->param != NULL) {
2450         if (ctx->parent == NULL)
2451             X509_VERIFY_PARAM_free(ctx->param);
2452         ctx->param = NULL;
2453     }
2454     X509_policy_tree_free(ctx->tree);
2455     ctx->tree = NULL;
2456     sk_X509_pop_free(ctx->chain, X509_free);
2457     ctx->chain = NULL;
2458     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
2459     memset(&ctx->ex_data, 0, sizeof(ctx->ex_data));
2460 }
2461
2462 void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
2463 {
2464     X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2465 }
2466
2467 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
2468 {
2469     X509_VERIFY_PARAM_set_flags(ctx->param, flags);
2470 }
2471
2472 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags,
2473                              time_t t)
2474 {
2475     X509_VERIFY_PARAM_set_time(ctx->param, t);
2476 }
2477
2478 X509 *X509_STORE_CTX_get0_cert(const X509_STORE_CTX *ctx)
2479 {
2480     return ctx->cert;
2481 }
2482
2483 STACK_OF(X509) *X509_STORE_CTX_get0_untrusted(const X509_STORE_CTX *ctx)
2484 {
2485     return ctx->untrusted;
2486 }
2487
2488 void X509_STORE_CTX_set0_untrusted(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2489 {
2490     ctx->untrusted = sk;
2491 }
2492
2493 void X509_STORE_CTX_set0_verified_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2494 {
2495     sk_X509_pop_free(ctx->chain, X509_free);
2496     ctx->chain = sk;
2497 }
2498
2499 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
2500                                   X509_STORE_CTX_verify_cb verify_cb)
2501 {
2502     ctx->verify_cb = verify_cb;
2503 }
2504
2505 X509_STORE_CTX_verify_cb X509_STORE_CTX_get_verify_cb(const X509_STORE_CTX *ctx)
2506 {
2507     return ctx->verify_cb;
2508 }
2509
2510 void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx,
2511                                X509_STORE_CTX_verify_fn verify)
2512 {
2513     ctx->verify = verify;
2514 }
2515
2516 X509_STORE_CTX_verify_fn X509_STORE_CTX_get_verify(const X509_STORE_CTX *ctx)
2517 {
2518     return ctx->verify;
2519 }
2520
2521 X509_STORE_CTX_get_issuer_fn X509_STORE_CTX_get_get_issuer(const X509_STORE_CTX *ctx)
2522 {
2523     return ctx->get_issuer;
2524 }
2525
2526 X509_STORE_CTX_check_issued_fn
2527    X509_STORE_CTX_get_check_issued(const X509_STORE_CTX *ctx)
2528 {
2529     return ctx->check_issued;
2530 }
2531
2532 X509_STORE_CTX_check_revocation_fn
2533     X509_STORE_CTX_get_check_revocation(const X509_STORE_CTX *ctx)
2534 {
2535     return ctx->check_revocation;
2536 }
2537
2538 X509_STORE_CTX_get_crl_fn X509_STORE_CTX_get_get_crl(const X509_STORE_CTX *ctx)
2539 {
2540     return ctx->get_crl;
2541 }
2542
2543 X509_STORE_CTX_check_crl_fn X509_STORE_CTX_get_check_crl(const X509_STORE_CTX *ctx)
2544 {
2545     return ctx->check_crl;
2546 }
2547
2548 X509_STORE_CTX_cert_crl_fn X509_STORE_CTX_get_cert_crl(const X509_STORE_CTX *ctx)
2549 {
2550     return ctx->cert_crl;
2551 }
2552
2553 X509_STORE_CTX_check_policy_fn
2554     X509_STORE_CTX_get_check_policy(const X509_STORE_CTX *ctx)
2555 {
2556     return ctx->check_policy;
2557 }
2558
2559 X509_STORE_CTX_lookup_certs_fn
2560     X509_STORE_CTX_get_lookup_certs(const X509_STORE_CTX *ctx)
2561 {
2562     return ctx->lookup_certs;
2563 }
2564
2565 X509_STORE_CTX_lookup_crls_fn
2566     X509_STORE_CTX_get_lookup_crls(const X509_STORE_CTX *ctx)
2567 {
2568     return ctx->lookup_crls;
2569 }
2570
2571 X509_STORE_CTX_cleanup_fn X509_STORE_CTX_get_cleanup(const X509_STORE_CTX *ctx)
2572 {
2573     return ctx->cleanup;
2574 }
2575
2576 X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(const X509_STORE_CTX *ctx)
2577 {
2578     return ctx->tree;
2579 }
2580
2581 int X509_STORE_CTX_get_explicit_policy(const X509_STORE_CTX *ctx)
2582 {
2583     return ctx->explicit_policy;
2584 }
2585
2586 int X509_STORE_CTX_get_num_untrusted(const X509_STORE_CTX *ctx)
2587 {
2588     return ctx->num_untrusted;
2589 }
2590
2591 int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
2592 {
2593     const X509_VERIFY_PARAM *param;
2594
2595     param = X509_VERIFY_PARAM_lookup(name);
2596     if (param == NULL)
2597         return 0;
2598     return X509_VERIFY_PARAM_inherit(ctx->param, param);
2599 }
2600
2601 X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(const X509_STORE_CTX *ctx)
2602 {
2603     return ctx->param;
2604 }
2605
2606 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
2607 {
2608     X509_VERIFY_PARAM_free(ctx->param);
2609     ctx->param = param;
2610 }
2611
2612 void X509_STORE_CTX_set0_dane(X509_STORE_CTX *ctx, SSL_DANE *dane)
2613 {
2614     ctx->dane = dane;
2615 }
2616
2617 static unsigned char *dane_i2d(
2618     X509 *cert,
2619     uint8_t selector,
2620     unsigned int *i2dlen)
2621 {
2622     unsigned char *buf = NULL;
2623     int len;
2624
2625     /*
2626      * Extract ASN.1 DER form of certificate or public key.
2627      */
2628     switch (selector) {
2629     case DANETLS_SELECTOR_CERT:
2630         len = i2d_X509(cert, &buf);
2631         break;
2632     case DANETLS_SELECTOR_SPKI:
2633         len = i2d_X509_PUBKEY(X509_get_X509_PUBKEY(cert), &buf);
2634         break;
2635     default:
2636         X509err(X509_F_DANE_I2D, X509_R_BAD_SELECTOR);
2637         return NULL;
2638     }
2639
2640     if (len < 0 || buf == NULL) {
2641         X509err(X509_F_DANE_I2D, ERR_R_MALLOC_FAILURE);
2642         return NULL;
2643     }
2644
2645     *i2dlen = (unsigned int)len;
2646     return buf;
2647 }
2648
2649 #define DANETLS_NONE 256        /* impossible uint8_t */
2650
2651 static int dane_match(X509_STORE_CTX *ctx, X509 *cert, int depth)
2652 {
2653     SSL_DANE *dane = ctx->dane;
2654     unsigned usage = DANETLS_NONE;
2655     unsigned selector = DANETLS_NONE;
2656     unsigned ordinal = DANETLS_NONE;
2657     unsigned mtype = DANETLS_NONE;
2658     unsigned char *i2dbuf = NULL;
2659     unsigned int i2dlen = 0;
2660     unsigned char mdbuf[EVP_MAX_MD_SIZE];
2661     unsigned char *cmpbuf = NULL;
2662     unsigned int cmplen = 0;
2663     int i;
2664     int recnum;
2665     int matched = 0;
2666     danetls_record *t = NULL;
2667     uint32_t mask;
2668
2669     mask = (depth == 0) ? DANETLS_EE_MASK : DANETLS_TA_MASK;
2670
2671     /*
2672      * The trust store is not applicable with DANE-TA(2)
2673      */
2674     if (depth >= ctx->num_untrusted)
2675         mask &= DANETLS_PKIX_MASK;
2676
2677     /*
2678      * If we've previously matched a PKIX-?? record, no need to test any
2679      * further PKIX-?? records, it remains to just build the PKIX chain.
2680      * Had the match been a DANE-?? record, we'd be done already.
2681      */
2682     if (dane->mdpth >= 0)
2683         mask &= ~DANETLS_PKIX_MASK;
2684
2685     /*-
2686      * https://tools.ietf.org/html/rfc7671#section-5.1
2687      * https://tools.ietf.org/html/rfc7671#section-5.2
2688      * https://tools.ietf.org/html/rfc7671#section-5.3
2689      * https://tools.ietf.org/html/rfc7671#section-5.4
2690      *
2691      * We handle DANE-EE(3) records first as they require no chain building
2692      * and no expiration or hostname checks.  We also process digests with
2693      * higher ordinals first and ignore lower priorities except Full(0) which
2694      * is always processed (last).  If none match, we then process PKIX-EE(1).
2695      *
2696      * NOTE: This relies on DANE usages sorting before the corresponding PKIX
2697      * usages in SSL_dane_tlsa_add(), and also on descending sorting of digest
2698      * priorities.  See twin comment in ssl/ssl_lib.c.
2699      *
2700      * We expect that most TLSA RRsets will have just a single usage, so we
2701      * don't go out of our way to cache multiple selector-specific i2d buffers
2702      * across usages, but if the selector happens to remain the same as switch
2703      * usages, that's OK.  Thus, a set of "3 1 1", "3 0 1", "1 1 1", "1 0 1",
2704      * records would result in us generating each of the certificate and public
2705      * key DER forms twice, but more typically we'd just see multiple "3 1 1"
2706      * or multiple "3 0 1" records.
2707      *
2708      * As soon as we find a match at any given depth, we stop, because either
2709      * we've matched a DANE-?? record and the peer is authenticated, or, after
2710      * exhausting all DANE-?? records, we've matched a PKIX-?? record, which is
2711      * sufficient for DANE, and what remains to do is ordinary PKIX validation.
2712      */
2713     recnum = (dane->umask & mask) ? sk_danetls_record_num(dane->trecs) : 0;
2714     for (i = 0; matched == 0 && i < recnum; ++i) {
2715         t = sk_danetls_record_value(dane->trecs, i);
2716         if ((DANETLS_USAGE_BIT(t->usage) & mask) == 0)
2717             continue;
2718         if (t->usage != usage) {
2719             usage = t->usage;
2720
2721             /* Reset digest agility for each usage/selector pair */
2722             mtype = DANETLS_NONE;
2723             ordinal = dane->dctx->mdord[t->mtype];
2724         }
2725         if (t->selector != selector) {
2726             selector = t->selector;
2727
2728             /* Update per-selector state */
2729             OPENSSL_free(i2dbuf);
2730             i2dbuf = dane_i2d(cert, selector, &i2dlen);
2731             if (i2dbuf == NULL)
2732                 return -1;
2733
2734             /* Reset digest agility for each usage/selector pair */
2735             mtype = DANETLS_NONE;
2736             ordinal = dane->dctx->mdord[t->mtype];
2737         } else if (t->mtype != DANETLS_MATCHING_FULL) {
2738             /*-
2739              * Digest agility:
2740              *
2741              *     <https://tools.ietf.org/html/rfc7671#section-9>
2742              *
2743              * For a fixed selector, after processing all records with the
2744              * highest mtype ordinal, ignore all mtypes with lower ordinals
2745              * other than "Full".
2746              */
2747             if (dane->dctx->mdord[t->mtype] < ordinal)
2748                 continue;
2749         }
2750
2751         /*
2752          * Each time we hit a (new selector or) mtype, re-compute the relevant
2753          * digest, more complex caching is not worth the code space.
2754          */
2755         if (t->mtype != mtype) {
2756             const EVP_MD *md = dane->dctx->mdevp[mtype = t->mtype];
2757             cmpbuf = i2dbuf;
2758             cmplen = i2dlen;
2759
2760             if (md != NULL) {
2761                 cmpbuf = mdbuf;
2762                 if (!EVP_Digest(i2dbuf, i2dlen, cmpbuf, &cmplen, md, 0)) {
2763                     matched = -1;
2764                     break;
2765                 }
2766             }
2767         }
2768
2769         /*
2770          * Squirrel away the certificate and depth if we have a match.  Any
2771          * DANE match is dispositive, but with PKIX we still need to build a
2772          * full chain.
2773          */
2774         if (cmplen == t->dlen &&
2775             memcmp(cmpbuf, t->data, cmplen) == 0) {
2776             if (DANETLS_USAGE_BIT(usage) & DANETLS_DANE_MASK)
2777                 matched = 1;
2778             if (matched || dane->mdpth < 0) {
2779                 dane->mdpth = depth;
2780                 dane->mtlsa = t;
2781                 OPENSSL_free(dane->mcert);
2782                 dane->mcert = cert;
2783                 X509_up_ref(cert);
2784             }
2785             break;
2786         }
2787     }
2788
2789     /* Clear the one-element DER cache */
2790     OPENSSL_free(i2dbuf);
2791     return matched;
2792 }
2793
2794 static int check_dane_issuer(X509_STORE_CTX *ctx, int depth)
2795 {
2796     SSL_DANE *dane = ctx->dane;
2797     int matched = 0;
2798     X509 *cert;
2799
2800     if (!DANETLS_HAS_TA(dane) || depth == 0)
2801         return  X509_TRUST_UNTRUSTED;
2802
2803     /*
2804      * Record any DANE trust anchor matches, for the first depth to test, if
2805      * there's one at that depth. (This'll be false for length 1 chains looking
2806      * for an exact match for the leaf certificate).
2807      */
2808     cert = sk_X509_value(ctx->chain, depth);
2809     if (cert != NULL && (matched = dane_match(ctx, cert, depth)) < 0)
2810         return  X509_TRUST_REJECTED;
2811     if (matched > 0) {
2812         ctx->num_untrusted = depth - 1;
2813         return  X509_TRUST_TRUSTED;
2814     }
2815
2816     return  X509_TRUST_UNTRUSTED;
2817 }
2818
2819 static int check_dane_pkeys(X509_STORE_CTX *ctx)
2820 {
2821     SSL_DANE *dane = ctx->dane;
2822     danetls_record *t;
2823     int num = ctx->num_untrusted;
2824     X509 *cert = sk_X509_value(ctx->chain, num - 1);
2825     int recnum = sk_danetls_record_num(dane->trecs);
2826     int i;
2827
2828     for (i = 0; i < recnum; ++i) {
2829         t = sk_danetls_record_value(dane->trecs, i);
2830         if (t->usage != DANETLS_USAGE_DANE_TA ||
2831             t->selector != DANETLS_SELECTOR_SPKI ||
2832             t->mtype != DANETLS_MATCHING_FULL ||
2833             X509_verify_ex(cert, t->spki, ctx->libctx, ctx->propq) <= 0)
2834             continue;
2835
2836         /* Clear any PKIX-?? matches that failed to extend to a full chain */
2837         X509_free(dane->mcert);
2838         dane->mcert = NULL;
2839
2840         /* Record match via a bare TA public key */
2841         ctx->bare_ta_signed = 1;
2842         dane->mdpth = num - 1;
2843         dane->mtlsa = t;
2844
2845         /* Prune any excess chain certificates */
2846         num = sk_X509_num(ctx->chain);
2847         for (; num > ctx->num_untrusted; --num)
2848             X509_free(sk_X509_pop(ctx->chain));
2849
2850         return X509_TRUST_TRUSTED;
2851     }
2852
2853     return X509_TRUST_UNTRUSTED;
2854 }
2855
2856 static void dane_reset(SSL_DANE *dane)
2857 {
2858     /*
2859      * Reset state to verify another chain, or clear after failure.
2860      */
2861     X509_free(dane->mcert);
2862     dane->mcert = NULL;
2863     dane->mtlsa = NULL;
2864     dane->mdpth = -1;
2865     dane->pdpth = -1;
2866 }
2867
2868 static int check_leaf_suiteb(X509_STORE_CTX *ctx, X509 *cert)
2869 {
2870     int err = X509_chain_check_suiteb(NULL, cert, NULL, ctx->param->flags);
2871
2872     if (err == X509_V_OK)
2873         return 1;
2874     return verify_cb_cert(ctx, cert, 0, err);
2875 }
2876
2877 static int dane_verify(X509_STORE_CTX *ctx)
2878 {
2879     X509 *cert = ctx->cert;
2880     SSL_DANE *dane = ctx->dane;
2881     int matched;
2882     int done;
2883
2884     dane_reset(dane);
2885
2886     /*-
2887      * When testing the leaf certificate, if we match a DANE-EE(3) record,
2888      * dane_match() returns 1 and we're done.  If however we match a PKIX-EE(1)
2889      * record, the match depth and matching TLSA record are recorded, but the
2890      * return value is 0, because we still need to find a PKIX trust anchor.
2891      * Therefore, when DANE authentication is enabled (required), we're done
2892      * if:
2893      *   + matched < 0, internal error.
2894      *   + matched == 1, we matched a DANE-EE(3) record
2895      *   + matched == 0, mdepth < 0 (no PKIX-EE match) and there are no
2896      *     DANE-TA(2) or PKIX-TA(0) to test.
2897      */
2898     matched = dane_match(ctx, ctx->cert, 0);
2899     done = matched != 0 || (!DANETLS_HAS_TA(dane) && dane->mdpth < 0);
2900
2901     if (done)
2902         X509_get_pubkey_parameters(NULL, ctx->chain);
2903
2904     if (matched > 0) {
2905         /* Callback invoked as needed */
2906         if (!check_leaf_suiteb(ctx, cert))
2907             return 0;
2908         /* Callback invoked as needed */
2909         if ((dane->flags & DANE_FLAG_NO_DANE_EE_NAMECHECKS) == 0 &&
2910             !check_id(ctx))
2911             return 0;
2912         /* Bypass internal_verify(), issue depth 0 success callback */
2913         ctx->error_depth = 0;
2914         ctx->current_cert = cert;
2915         return ctx->verify_cb(1, ctx);
2916     }
2917
2918     if (matched < 0) {
2919         ctx->error_depth = 0;
2920         ctx->current_cert = cert;
2921         ctx->error = X509_V_ERR_OUT_OF_MEM;
2922         return -1;
2923     }
2924
2925     if (done) {
2926         /* Fail early, TA-based success is not possible */
2927         if (!check_leaf_suiteb(ctx, cert))
2928             return 0;
2929         return verify_cb_cert(ctx, cert, 0, X509_V_ERR_DANE_NO_MATCH);
2930     }
2931
2932     /*
2933      * Chain verification for usages 0/1/2.  TLSA record matching of depth > 0
2934      * certificates happens in-line with building the rest of the chain.
2935      */
2936     return verify_chain(ctx);
2937 }
2938
2939 /* Get issuer, without duplicate suppression */
2940 static int get_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *cert)
2941 {
2942     STACK_OF(X509) *saved_chain = ctx->chain;
2943     int ok;
2944
2945     ctx->chain = NULL;
2946     ok = ctx->get_issuer(issuer, ctx, cert);
2947     ctx->chain = saved_chain;
2948
2949     return ok;
2950 }
2951
2952 static int build_chain(X509_STORE_CTX *ctx)
2953 {
2954     SSL_DANE *dane = ctx->dane;
2955     int num = sk_X509_num(ctx->chain);
2956     X509 *cert = sk_X509_value(ctx->chain, num - 1);
2957     int self_signed = cert_self_signed(ctx, cert);
2958     STACK_OF(X509) *sktmp = NULL;
2959     unsigned int search;
2960     int may_trusted = 0;
2961     int may_alternate = 0;
2962     int trust = X509_TRUST_UNTRUSTED;
2963     int alt_untrusted = 0;
2964     int depth;
2965     int ok = 0;
2966     int i;
2967
2968     /* Our chain starts with a single untrusted element. */
2969     if (!ossl_assert(num == 1 && ctx->num_untrusted == num))  {
2970         X509err(X509_F_BUILD_CHAIN, ERR_R_INTERNAL_ERROR);
2971         ctx->error = X509_V_ERR_UNSPECIFIED;
2972         return 0;
2973     }
2974
2975     self_signed = cert_self_signed(ctx, cert);
2976     if (self_signed < 0) {
2977         ctx->error = X509_V_ERR_UNSPECIFIED;
2978         return 0;
2979     }
2980
2981 #define S_DOUNTRUSTED      (1 << 0)     /* Search untrusted chain */
2982 #define S_DOTRUSTED        (1 << 1)     /* Search trusted store */
2983 #define S_DOALTERNATE      (1 << 2)     /* Retry with pruned alternate chain */
2984     /*
2985      * Set up search policy, untrusted if possible, trusted-first if enabled.
2986      * If we're doing DANE and not doing PKIX-TA/PKIX-EE, we never look in the
2987      * trust_store, otherwise we might look there first.  If not trusted-first,
2988      * and alternate chains are not disabled, try building an alternate chain
2989      * if no luck with untrusted first.
2990      */
2991     search = (ctx->untrusted != NULL) ? S_DOUNTRUSTED : 0;
2992     if (DANETLS_HAS_PKIX(dane) || !DANETLS_HAS_DANE(dane)) {
2993         if (search == 0 || ctx->param->flags & X509_V_FLAG_TRUSTED_FIRST)
2994             search |= S_DOTRUSTED;
2995         else if (!(ctx->param->flags & X509_V_FLAG_NO_ALT_CHAINS))
2996             may_alternate = 1;
2997         may_trusted = 1;
2998     }
2999
3000     /*
3001      * Shallow-copy the stack of untrusted certificates (with TLS, this is
3002      * typically the content of the peer's certificate message) so can make
3003      * multiple passes over it, while free to remove elements as we go.
3004      */
3005     if (ctx->untrusted && (sktmp = sk_X509_dup(ctx->untrusted)) == NULL) {
3006         X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
3007         ctx->error = X509_V_ERR_OUT_OF_MEM;
3008         return 0;
3009     }
3010
3011     /*
3012      * If we got any "DANE-TA(2) Cert(0) Full(0)" trust anchors from DNS, add
3013      * them to our working copy of the untrusted certificate stack.  Since the
3014      * caller of X509_STORE_CTX_init() may have provided only a leaf cert with
3015      * no corresponding stack of untrusted certificates, we may need to create
3016      * an empty stack first.  [ At present only the ssl library provides DANE
3017      * support, and ssl_verify_cert_chain() always provides a non-null stack
3018      * containing at least the leaf certificate, but we must be prepared for
3019      * this to change. ]
3020      */
3021     if (DANETLS_ENABLED(dane) && dane->certs != NULL) {
3022         if (sktmp == NULL && (sktmp = sk_X509_new_null()) == NULL) {
3023             X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
3024             ctx->error = X509_V_ERR_OUT_OF_MEM;
3025             return 0;
3026         }
3027         for (i = 0; i < sk_X509_num(dane->certs); ++i) {
3028             if (!sk_X509_push(sktmp, sk_X509_value(dane->certs, i))) {
3029                 sk_X509_free(sktmp);
3030                 X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
3031                 ctx->error = X509_V_ERR_OUT_OF_MEM;
3032                 return 0;
3033             }
3034         }
3035     }
3036
3037     /*
3038      * Still absurdly large, but arithmetically safe, a lower hard upper bound
3039      * might be reasonable.
3040      */
3041     if (ctx->param->depth > INT_MAX/2)
3042         ctx->param->depth = INT_MAX/2;
3043
3044     /*
3045      * Try to extend the chain until we reach an ultimately trusted issuer.
3046      * Build chains up to one longer the limit, later fail if we hit the limit,
3047      * with an X509_V_ERR_CERT_CHAIN_TOO_LONG error code.
3048      */
3049     depth = ctx->param->depth + 1;
3050
3051     while (search != 0) {
3052         X509 *x;
3053         X509 *xtmp = NULL;
3054
3055         /*
3056          * Look in the trust store if enabled for first lookup, or we've run
3057          * out of untrusted issuers and search here is not disabled.  When we
3058          * reach the depth limit, we stop extending the chain, if by that point
3059          * we've not found a trust anchor, any trusted chain would be too long.
3060          *
3061          * The error reported to the application verify callback is at the
3062          * maximal valid depth with the current certificate equal to the last
3063          * not ultimately-trusted issuer.  For example, with verify_depth = 0,
3064          * the callback will report errors at depth=1 when the immediate issuer
3065          * of the leaf certificate is not a trust anchor.  No attempt will be
3066          * made to locate an issuer for that certificate, since such a chain
3067          * would be a-priori too long.
3068          */
3069         if ((search & S_DOTRUSTED) != 0) {
3070             i = num = sk_X509_num(ctx->chain);
3071             if ((search & S_DOALTERNATE) != 0) {
3072                 /*
3073                  * As high up the chain as we can, look for an alternative
3074                  * trusted issuer of an untrusted certificate that currently
3075                  * has an untrusted issuer.  We use the alt_untrusted variable
3076                  * to track how far up the chain we find the first match.  It
3077                  * is only if and when we find a match, that we prune the chain
3078                  * and reset ctx->num_untrusted to the reduced count of
3079                  * untrusted certificates.  While we're searching for such a
3080                  * match (which may never be found), it is neither safe nor
3081                  * wise to preemptively modify either the chain or
3082                  * ctx->num_untrusted.
3083                  *
3084                  * Note, like ctx->num_untrusted, alt_untrusted is a count of
3085                  * untrusted certificates, not a "depth".
3086                  */
3087                 i = alt_untrusted;
3088             }
3089             x = sk_X509_value(ctx->chain, i-1);
3090
3091             ok = (depth < num) ? 0 : get_issuer(&xtmp, ctx, x);
3092
3093             if (ok < 0) {
3094                 trust = X509_TRUST_REJECTED;
3095                 ctx->error = X509_V_ERR_STORE_LOOKUP;
3096                 search = 0;
3097                 continue;
3098             }
3099
3100             if (ok > 0) {
3101                 /*
3102                  * Alternative trusted issuer for a mid-chain untrusted cert?
3103                  * Pop the untrusted cert's successors and retry.  We might now
3104                  * be able to complete a valid chain via the trust store.  Note
3105                  * that despite the current trust store match we might still
3106                  * fail complete the chain to a suitable trust anchor, in which
3107                  * case we may prune some more untrusted certificates and try
3108                  * again.  Thus the S_DOALTERNATE bit may yet be turned on
3109                  * again with an even shorter untrusted chain!
3110                  *
3111                  * If in the process we threw away our matching PKIX-TA trust
3112                  * anchor, reset DANE trust.  We might find a suitable trusted
3113                  * certificate among the ones from the trust store.
3114                  */
3115                 if ((search & S_DOALTERNATE) != 0) {
3116                     if (!ossl_assert(num > i && i > 0 && !self_signed)) {
3117                         X509err(X509_F_BUILD_CHAIN, ERR_R_INTERNAL_ERROR);
3118                         X509_free(xtmp);
3119                         trust = X509_TRUST_REJECTED;
3120                         ctx->error = X509_V_ERR_UNSPECIFIED;
3121                         search = 0;
3122                         continue;
3123                     }
3124                     search &= ~S_DOALTERNATE;
3125                     for (; num > i; --num)
3126                         X509_free(sk_X509_pop(ctx->chain));
3127                     ctx->num_untrusted = num;
3128
3129                     if (DANETLS_ENABLED(dane) &&
3130                         dane->mdpth >= ctx->num_untrusted) {
3131                         dane->mdpth = -1;
3132                         X509_free(dane->mcert);
3133                         dane->mcert = NULL;
3134                     }
3135                     if (DANETLS_ENABLED(dane) &&
3136                         dane->pdpth >= ctx->num_untrusted)
3137                         dane->pdpth = -1;
3138                 }
3139
3140                 /*
3141                  * Self-signed untrusted certificates get replaced by their
3142                  * trusted matching issuer.  Otherwise, grow the chain.
3143                  */
3144                 if (!self_signed) {
3145                     if (!sk_X509_push(ctx->chain, x = xtmp)) {
3146                         X509_free(xtmp);
3147                         X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
3148                         trust = X509_TRUST_REJECTED;
3149                         ctx->error = X509_V_ERR_OUT_OF_MEM;
3150                         search = 0;
3151                         continue;
3152                     }
3153                     self_signed = cert_self_signed(ctx, x);
3154                     if (self_signed < 0) {
3155                         ctx->error = X509_V_ERR_UNSPECIFIED;
3156                         return 0;
3157                     }
3158                 } else if (num == ctx->num_untrusted) {
3159                     /*
3160                      * We have a self-signed certificate that has the same
3161                      * subject name (and perhaps keyid and/or serial number) as
3162                      * a trust anchor.  We must have an exact match to avoid
3163                      * possible impersonation via key substitution etc.
3164                      */
3165                     if (X509_cmp(x, xtmp) != 0) {
3166                         /* Self-signed untrusted mimic. */
3167                         X509_free(xtmp);
3168                         ok = 0;
3169                     } else {
3170                         X509_free(x);
3171                         ctx->num_untrusted = --num;
3172                         (void) sk_X509_set(ctx->chain, num, x = xtmp);
3173                     }
3174                 }
3175
3176                 /*
3177                  * We've added a new trusted certificate to the chain, recheck
3178                  * trust.  If not done, and not self-signed look deeper.
3179                  * Whether or not we're doing "trusted first", we no longer
3180                  * look for untrusted certificates from the peer's chain.
3181                  *
3182                  * At this point ctx->num_trusted and num must reflect the
3183                  * correct number of untrusted certificates, since the DANE
3184                  * logic in check_trust() depends on distinguishing CAs from
3185                  * "the wire" from CAs from the trust store.  In particular, the
3186                  * certificate at depth "num" should be the new trusted
3187                  * certificate with ctx->num_untrusted <= num.
3188                  */
3189                 if (ok) {
3190                     if (!ossl_assert(ctx->num_untrusted <= num)) {
3191                         X509err(X509_F_BUILD_CHAIN, ERR_R_INTERNAL_ERROR);
3192                         trust = X509_TRUST_REJECTED;
3193                         ctx->error = X509_V_ERR_UNSPECIFIED;
3194                         search = 0;
3195                         continue;
3196                     }
3197                     search &= ~S_DOUNTRUSTED;
3198                     switch (trust = check_trust(ctx, num)) {
3199                     case X509_TRUST_TRUSTED:
3200                     case X509_TRUST_REJECTED:
3201                         search = 0;
3202                         continue;
3203                     }
3204                     if (!self_signed)
3205                         continue;
3206                 }
3207             }
3208
3209             /*
3210              * No dispositive decision, and either self-signed or no match, if
3211              * we were doing untrusted-first, and alt-chains are not disabled,
3212              * do that, by repeatedly losing one untrusted element at a time,
3213              * and trying to extend the shorted chain.
3214              */
3215             if ((search & S_DOUNTRUSTED) == 0) {
3216                 /* Continue search for a trusted issuer of a shorter chain? */
3217                 if ((search & S_DOALTERNATE) != 0 && --alt_untrusted > 0)
3218                     continue;
3219                 /* Still no luck and no fallbacks left? */
3220                 if (!may_alternate || (search & S_DOALTERNATE) != 0 ||
3221                     ctx->num_untrusted < 2)
3222                     break;
3223                 /* Search for a trusted issuer of a shorter chain */
3224                 search |= S_DOALTERNATE;
3225                 alt_untrusted = ctx->num_untrusted - 1;
3226                 self_signed = 0;
3227             }
3228         }
3229
3230         /*
3231          * Extend chain with peer-provided certificates
3232          */
3233         if ((search & S_DOUNTRUSTED) != 0) {
3234             num = sk_X509_num(ctx->chain);
3235             if (!ossl_assert(num == ctx->num_untrusted)) {
3236                 X509err(X509_F_BUILD_CHAIN, ERR_R_INTERNAL_ERROR);
3237                 trust = X509_TRUST_REJECTED;
3238                 ctx->error = X509_V_ERR_UNSPECIFIED;
3239                 search = 0;
3240                 continue;
3241             }
3242             x = sk_X509_value(ctx->chain, num-1);
3243
3244             /*
3245              * Once we run out of untrusted issuers, we stop looking for more
3246              * and start looking only in the trust store if enabled.
3247              */
3248             xtmp = (self_signed || depth < num) ? NULL
3249                                                 : find_issuer(ctx, sktmp, x);
3250             if (xtmp == NULL) {
3251                 search &= ~S_DOUNTRUSTED;
3252                 if (may_trusted)
3253                     search |= S_DOTRUSTED;
3254                 continue;
3255             }
3256
3257             /* Drop this issuer from future consideration */
3258             (void) sk_X509_delete_ptr(sktmp, xtmp);
3259
3260             if (!X509_up_ref(xtmp)) {
3261                 X509err(X509_F_BUILD_CHAIN, ERR_R_INTERNAL_ERROR);
3262                 trust = X509_TRUST_REJECTED;
3263                 ctx->error = X509_V_ERR_UNSPECIFIED;
3264                 search = 0;
3265                 continue;
3266             }
3267
3268             if (!sk_X509_push(ctx->chain, xtmp)) {
3269                 X509_free(xtmp);
3270                 X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
3271                 trust = X509_TRUST_REJECTED;
3272                 ctx->error = X509_V_ERR_OUT_OF_MEM;
3273                 search = 0;
3274                 continue;
3275             }
3276
3277             x = xtmp;
3278             ++ctx->num_untrusted;
3279             self_signed = cert_self_signed(ctx, xtmp);
3280             if (self_signed < 0) {
3281                 sk_X509_free(sktmp);
3282                 ctx->error = X509_V_ERR_UNSPECIFIED;
3283                 return 0;
3284             }
3285
3286             /*
3287              * Check for DANE-TA trust of the topmost untrusted certificate.
3288              */
3289             switch (trust = check_dane_issuer(ctx, ctx->num_untrusted - 1)) {
3290             case X509_TRUST_TRUSTED:
3291             case X509_TRUST_REJECTED:
3292                 search = 0;
3293                 continue;
3294             }
3295         }
3296     }
3297     sk_X509_free(sktmp);
3298
3299     /*
3300      * Last chance to make a trusted chain, either bare DANE-TA public-key
3301      * signers, or else direct leaf PKIX trust.
3302      */
3303     num = sk_X509_num(ctx->chain);
3304     if (num <= depth) {
3305         if (trust == X509_TRUST_UNTRUSTED && DANETLS_HAS_DANE_TA(dane))
3306             trust = check_dane_pkeys(ctx);
3307         if (trust == X509_TRUST_UNTRUSTED && num == ctx->num_untrusted)
3308             trust = check_trust(ctx, num);
3309     }
3310
3311     switch (trust) {
3312     case X509_TRUST_TRUSTED:
3313         return 1;
3314     case X509_TRUST_REJECTED:
3315         /* Callback already issued */
3316         return 0;
3317     case X509_TRUST_UNTRUSTED:
3318     default:
3319         num = sk_X509_num(ctx->chain);
3320         if (num > depth)
3321             return verify_cb_cert(ctx, NULL, num-1,
3322                                   X509_V_ERR_CERT_CHAIN_TOO_LONG);
3323         if (DANETLS_ENABLED(dane) &&
3324             (!DANETLS_HAS_PKIX(dane) || dane->pdpth >= 0))
3325             return verify_cb_cert(ctx, NULL, num-1, X509_V_ERR_DANE_NO_MATCH);
3326         if (self_signed && sk_X509_num(ctx->chain) == 1)
3327             return verify_cb_cert(ctx, NULL, num-1,
3328                                   X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT);
3329         if (self_signed)
3330             return verify_cb_cert(ctx, NULL, num-1,
3331                                   X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN);
3332         if (ctx->num_untrusted < num)
3333             return verify_cb_cert(ctx, NULL, num-1,
3334                                   X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT);
3335         return verify_cb_cert(ctx, NULL, num-1,
3336                               X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY);
3337     }
3338 }
3339
3340 static const int minbits_table[] = { 80, 112, 128, 192, 256 };
3341 static const int NUM_AUTH_LEVELS = OSSL_NELEM(minbits_table);
3342
3343 /*
3344  * Check whether the public key of ``cert`` meets the security level of
3345  * ``ctx``.
3346  *
3347  * Returns 1 on success, 0 otherwise.
3348  */
3349 static int check_key_level(X509_STORE_CTX *ctx, X509 *cert)
3350 {
3351     EVP_PKEY *pkey = X509_get0_pubkey(cert);
3352     int level = ctx->param->auth_level;
3353
3354     /*
3355      * At security level zero, return without checking for a supported public
3356      * key type.  Some engines support key types not understood outside the
3357      * engine, and we only need to understand the key when enforcing a security
3358      * floor.
3359      */
3360     if (level <= 0)
3361         return 1;
3362
3363     /* Unsupported or malformed keys are not secure */
3364     if (pkey == NULL)
3365         return 0;
3366
3367     if (level > NUM_AUTH_LEVELS)
3368         level = NUM_AUTH_LEVELS;
3369
3370     return EVP_PKEY_security_bits(pkey) >= minbits_table[level - 1];
3371 }
3372
3373 /*
3374  * Check whether the signature digest algorithm of ``cert`` meets the security
3375  * level of ``ctx``.  Should not be checked for trust anchors (whether
3376  * self-signed or otherwise).
3377  *
3378  * Returns 1 on success, 0 otherwise.
3379  */
3380 static int check_sig_level(X509_STORE_CTX *ctx, X509 *cert)
3381 {
3382     int secbits = -1;
3383     int level = ctx->param->auth_level;
3384
3385     if (level <= 0)
3386         return 1;
3387     if (level > NUM_AUTH_LEVELS)
3388         level = NUM_AUTH_LEVELS;
3389
3390     if (!X509_get_signature_info(cert, NULL, NULL, &secbits, NULL))
3391         return 0;
3392
3393     return secbits >= minbits_table[level - 1];
3394 }