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