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