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