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